Skip to content

Commit f159906

Browse files
Merge pull request #61 from webdevnerdstuff/vuetify-v4
Vuetify v4
2 parents 0a717b6 + 8e7b37e commit f159906

51 files changed

Lines changed: 4766 additions & 3234 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/bootstrap/ssr
2+
/node_modules
3+
/node_server/node_modules
4+
/node_server/logs/*
5+
6+
/docs
7+
8+
/auth.json
9+
/.claude
10+
/.history
11+
/.fleet
12+
/.idea
13+
/.nova
14+
/.knit
15+
/.zed
16+
/.worktrees
17+
knit.lock
18+
.stylelintcache
19+
120
# Logs
221
logs
322
*.log
@@ -7,13 +26,12 @@ yarn-error.log*
726
pnpm-debug.log*
827
lerna-debug.log*
928

10-
node_modules
11-
docs
29+
30+
1231
dist-ssr
1332
*.local
1433

1534
# Editor directories and files
16-
.vscode/*
1735
.history/*
1836
!.vscode/extensions.json
1937
.idea
@@ -23,6 +41,12 @@ dist-ssr
2341
*.njsproj
2442
*.sln
2543
*.sw?
44+
.claude/*
2645

2746

2847
src/plugin/**/*.bk.*
48+
49+
# Temp files and directories
50+
*__TEMP.*
51+
*.TEMP.*
52+
*__TEMP/

.husky/pre-commit

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/usr/bin/env sh
22

3-
npx lint-staged && npm run test:build
3+
# npx lint-staged && pnpm test:build
4+
npx lint-staged

.vscode/extensions.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
{
2-
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
2+
"recommendations": [
3+
"vuetifyjs.vuetify-vscode",
4+
"vue.volar",
5+
"Vue.vscode-typescript-vue-plugin"
6+
]
37
}

.vscode/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"explorer.fileNesting.enabled": true,
3+
"explorer.fileNesting.patterns": {
4+
"*.ts": "${capture}.js, ${capture}.js.map, ${capture}.d.ts",
5+
".env": ".env.*, .envrc",
6+
".prettierrc.js": ".prettierrc.*, .prettier*",
7+
".eslintrc.js": ".eslintrc-auto-import.json, .prettierrc.*, .prettier*",
8+
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, .npmrc, .nvmrc, .node-version",
9+
"stylelint.config.js": "postcss.config.js",
10+
"tsconfig.json": "tsconfig.*.json",
11+
"vite.config.mts": "vite.build.config.mts, vitest.config.mts",
12+
}
13+
}

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,27 @@ npm i @wdns/vuetify-inline-fields
4242

4343
## Dependencies
4444

45-
[Vuetify v3](https://vuetifyjs.com/)
45+
[Vuetify v4](https://vuetifyjs.com/)
4646
[Vue 3](https://vuejs.org/)
4747
[VueUse](https://vueuse.org/)
4848

4949

50+
## Versions
51+
52+
| Version | Branch |
53+
|---|---|
54+
| Vuetify v4 | [main](https://github.com/webdevnerdstuff/vuetify-inline-fields) |
55+
| Vuetify v3 | [vuetify-v3](https://github.com/webdevnerdstuff/vuetify-inline-fields/tree/vuetify-v3) |
56+
57+
5058
## Change Log
5159

5260
[CHANGELOG](https://github.com/webdevnerdstuff/vuetify-inline-fields/blob/main/CHANGELOG.md)
5361

5462

5563
## License
5664

57-
Copyright (c) 2023 WebDevNerdStuff
65+
Copyright (c) 2026 WebDevNerdStuff
5866
Licensed under the [MIT license](https://github.com/webdevnerdstuff/vuetify-inline-fields/blob/main/LICENSE.md).
5967

6068

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { VInlineCheckbox as o } from "./vuetify-inline-fields.es.js";
44
* @version 1.0.9
55
* @description Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications.
66
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <webdevnerdstuff@gmail.com> (https://webdevnerdstuff.com)
7-
* @copyright Copyright 2024, WebDevNerdStuff
7+
* @copyright Copyright 2026, WebDevNerdStuff
88
* @homepage https://webdevnerdstuff.github.io/vuetify-inline-fields/
99
* @repository https://github.com/webdevnerdstuff/vuetify-inline-fields
1010
* @license MIT License
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @version 1.0.9
44
* @description Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications.
55
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <webdevnerdstuff@gmail.com> (https://webdevnerdstuff.com)
6-
* @copyright Copyright 2024, WebDevNerdStuff
6+
* @copyright Copyright 2026, WebDevNerdStuff
77
* @homepage https://webdevnerdstuff.github.io/vuetify-inline-fields/
88
* @repository https://github.com/webdevnerdstuff/vuetify-inline-fields
99
* @license MIT License
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { VInlineCustomField as o } from "./vuetify-inline-fields.es.js";
44
* @version 1.0.9
55
* @description Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications.
66
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <webdevnerdstuff@gmail.com> (https://webdevnerdstuff.com)
7-
* @copyright Copyright 2024, WebDevNerdStuff
7+
* @copyright Copyright 2026, WebDevNerdStuff
88
* @homepage https://webdevnerdstuff.github.io/vuetify-inline-fields/
99
* @repository https://github.com/webdevnerdstuff/vuetify-inline-fields
1010
* @license MIT License
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @version 1.0.9
44
* @description Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications.
55
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <webdevnerdstuff@gmail.com> (https://webdevnerdstuff.com)
6-
* @copyright Copyright 2024, WebDevNerdStuff
6+
* @copyright Copyright 2026, WebDevNerdStuff
77
* @homepage https://webdevnerdstuff.github.io/vuetify-inline-fields/
88
* @repository https://github.com/webdevnerdstuff/vuetify-inline-fields
99
* @license MIT License
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { VInlineSwitch as t } from "./vuetify-inline-fields.es.js";
44
* @version 1.0.9
55
* @description Vuetify Inline Fields Component Library offers a comprehensive collection of reusable UI components to create elegant and efficient inline form fields within your applications.
66
* @author WebDevNerdStuff & Bunnies... lots and lots of bunnies! <webdevnerdstuff@gmail.com> (https://webdevnerdstuff.com)
7-
* @copyright Copyright 2024, WebDevNerdStuff
7+
* @copyright Copyright 2026, WebDevNerdStuff
88
* @homepage https://webdevnerdstuff.github.io/vuetify-inline-fields/
99
* @repository https://github.com/webdevnerdstuff/vuetify-inline-fields
1010
* @license MIT License

0 commit comments

Comments
 (0)