@vuetify/nightly 3.8.1-master.2025-04-13 → 3.8.1-master.2025-04-15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/CHANGELOG.md +32 -27
  2. package/dist/json/attributes.json +3391 -3391
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +202 -202
  5. package/dist/json/web-types.json +6071 -6075
  6. package/dist/vuetify-labs.cjs +30 -26
  7. package/dist/vuetify-labs.css +4235 -4235
  8. package/dist/vuetify-labs.d.ts +104 -91
  9. package/dist/vuetify-labs.esm.js +30 -26
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +30 -26
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +6 -8
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +3224 -3224
  16. package/dist/vuetify.d.ts +94 -81
  17. package/dist/vuetify.esm.js +6 -8
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +6 -8
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +9 -9
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VDatePicker/VDatePicker.d.ts +7 -7
  25. package/lib/components/VDatePicker/VDatePickerMonth.d.ts +7 -7
  26. package/lib/composables/calendar.d.ts +2 -2
  27. package/lib/composables/calendar.js +3 -5
  28. package/lib/composables/calendar.js.map +1 -1
  29. package/lib/composables/theme.js.map +1 -1
  30. package/lib/entry-bundler.js +1 -1
  31. package/lib/framework.d.ts +71 -70
  32. package/lib/framework.js +1 -1
  33. package/lib/labs/VCalendar/VCalendar.d.ts +7 -7
  34. package/lib/labs/VCalendar/VCalendarInterval.js +25 -19
  35. package/lib/labs/VCalendar/VCalendarInterval.js.map +1 -1
  36. package/lib/labs/VDateInput/VDateInput.d.ts +7 -7
  37. package/package.json +44 -43
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.8.1-master.2025-04-13",
4
+ "version": "3.8.1-master.2025-04-15",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"
@@ -104,21 +104,23 @@
104
104
  "node": "^12.20 || >=14.13"
105
105
  },
106
106
  "scripts": {
107
- "watch": "pnpm run build:lib --watch",
107
+ "watch": "node --run build:lib -- --watch",
108
108
  "dev": "NODE_ENV=development vite",
109
109
  "dev:ssr": "NODE_ENV=development VITE_SSR=true vite-ssr",
110
110
  "dev:prod": "concurrently \"vite build -w\" \"vite preview\"",
111
111
  "dev:typecheck": "vue-tsc --noEmit --skipLibCheck --project ./tsconfig.dev.json",
112
- "build": "rimraf lib dist && concurrently \"pnpm run build:dist\" \"pnpm run build:lib\" -n \"dist,lib\" --kill-others-on-fail -r && pnpm run build:types",
112
+ "build": "rimraf lib dist && node --run build:lib && concurrently \"node --run build:dist\" \"node --run build:types:lib\" -n \"dist,types\" --kill-others-on-fail -gr && node --run build:types:bundle",
113
113
  "build:dist": "rollup --config build/rollup.config.js",
114
114
  "build:lib": "NODE_ENV=lib babel src --out-dir lib --source-maps --extensions \".ts\",\".tsx\",\".snap\" --copy-files --no-copy-ignored --out-file-extension .js",
115
- "build:types": "tspc --pretty --emitDeclarationOnly -p tsconfig.dist.json && node build/transform-types.js && rollup --config build/rollup.types.config.js",
115
+ "build:types": "node --run build:types:lib && node --run build:types:bundle",
116
+ "build:types:lib": "tspc --pretty --emitDeclarationOnly -p tsconfig.dist.json && node build/transform-types.js",
117
+ "build:types:bundle": "rollup --config build/rollup.types.config.js",
116
118
  "tsc": "tsc",
117
119
  "test": "vitest",
118
120
  "test:unit": "vitest --project unit",
119
121
  "test:browser": "vitest --project browser",
120
122
  "test:open": "TEST_BAIL=1 vitest --project browser -w",
121
- "test:coverage": "pnpm run test --coverage",
123
+ "test:coverage": "node --run test -- --coverage",
122
124
  "test:percy": "percy exec -- vitest --project browser",
123
125
  "test:all": "concurrently -gr 'vitest --project unit' 'vitest --project browser --shard=1/5' 'vitest --project browser --shard=2/5' 'vitest --project browser --shard=3/5' 'vitest --project browser --shard=4/5' 'vitest --project browser --shard=5/5'",
124
126
  "lint": "concurrently -n \"tsc,eslint\" --kill-others-on-fail \"tsc -p tsconfig.checks.json --noEmit --pretty\" \"eslint src -f codeframe --max-warnings 0\"",
@@ -126,77 +128,76 @@
126
128
  },
127
129
  "devDependencies": {
128
130
  "@date-io/core": "3.2.0",
129
- "@date-io/date-fns": "3.2.0",
131
+ "@date-io/date-fns": "3.2.1",
130
132
  "@date-io/dayjs": "^3.2.0",
131
133
  "@date-io/luxon": "^3.2.0",
132
134
  "@date-io/moment": "^3.2.0",
133
- "@formatjs/intl": "^2.10.1",
134
- "@fortawesome/fontawesome-svg-core": "^6.5.2",
135
- "@fortawesome/free-solid-svg-icons": "^6.5.2",
136
- "@fortawesome/vue-fontawesome": "^3.0.6",
137
- "@intlify/devtools-types": "^11.1.1",
138
- "@percy/cli": "^1.29.3",
139
- "@percy/sdk-utils": "^1.29.3",
140
- "@rollup/plugin-alias": "^5.1.0",
135
+ "@formatjs/intl": "^2.10.15",
136
+ "@fortawesome/fontawesome-svg-core": "^6.7.2",
137
+ "@fortawesome/free-solid-svg-icons": "^6.7.2",
138
+ "@fortawesome/vue-fontawesome": "^3.0.8",
139
+ "@intlify/devtools-types": "^11.1.3",
140
+ "@percy/cli": "^1.30.10",
141
+ "@percy/sdk-utils": "^1.30.10",
142
+ "@rollup/plugin-alias": "^5.1.1",
141
143
  "@rollup/plugin-babel": "^6.0.4",
142
- "@rollup/plugin-node-resolve": "^15.2.3",
143
- "@rollup/plugin-typescript": "^11.1.6",
144
+ "@rollup/plugin-node-resolve": "^16.0.1",
145
+ "@rollup/plugin-typescript": "^12.1.2",
144
146
  "@testing-library/dom": "npm:@vuetify/testing-library-dom@1.0.2",
145
- "@testing-library/user-event": "^14.5.2",
147
+ "@testing-library/user-event": "^14.6.1",
146
148
  "@testing-library/vue": "^8.1.0",
147
149
  "@types/node": "^22.5.4",
148
150
  "@types/resize-observer-browser": "^0.1.11",
149
151
  "@vitejs/plugin-vue": "^5.2.1",
150
- "@vitejs/plugin-vue-jsx": "^4.1.1",
151
- "@vitest/browser": "^3.0.5",
152
- "@vitest/coverage-istanbul": "^3.0.5",
153
- "@vitest/ui": "^3.0.5",
154
- "@vue/babel-plugin-jsx": "^1.2.5",
152
+ "@vitejs/plugin-vue-jsx": "^4.1.2",
153
+ "@vitest/browser": "^3.1.1",
154
+ "@vitest/coverage-istanbul": "^3.1.1",
155
+ "@vitest/ui": "^3.1.1",
156
+ "@vue/babel-plugin-jsx": "^1.4.0",
155
157
  "@vue/reactivity": "^3.5.13",
156
158
  "@vue/shared": "^3.5.13",
157
159
  "@vue/test-utils": "^2.4.6",
158
- "acorn-walk": "^8.3.2",
159
- "autoprefixer": "^10.4.19",
160
+ "acorn-walk": "^8.3.4",
161
+ "autoprefixer": "^10.4.21",
160
162
  "babel-plugin-add-import-extension": "1.5.1",
161
- "babel-plugin-module-resolver": "^5.0.0",
163
+ "babel-plugin-module-resolver": "^5.0.2",
162
164
  "babel-plugin-transform-define": "^2.1.4",
163
165
  "babel-polyfill": "^6.26.0",
164
- "concurrently": "^8.2.2",
165
- "cssnano": "^6.1.2",
166
+ "cssnano": "^7.0.6",
166
167
  "csstype": "^3.1.3",
167
168
  "cy-mobile-commands": "^0.3.0",
168
169
  "date-fns": "^3.6.0",
169
170
  "dayjs": "^1.11.13",
170
- "dotenv": "^16.4.5",
171
- "eslint-plugin-vitest": "0.4.1",
172
- "expect": "^28.1.3",
173
- "fast-glob": "^3.3.2",
171
+ "dotenv": "^16.5.0",
172
+ "eslint-plugin-vitest": "0.5.4",
173
+ "expect": "^29.7.0",
174
+ "fast-glob": "^3.3.3",
174
175
  "identity-obj-proxy": "^3.0.0",
175
- "jsdom": "^25.0.0",
176
- "luxon": "^3.5.0",
177
- "micromatch": "^4.0.5",
176
+ "jsdom": "^26.1.0",
177
+ "luxon": "^3.6.1",
178
+ "micromatch": "^4.0.8",
178
179
  "moment": "^2.30.1",
179
- "postcss": "^8.4.38",
180
+ "postcss": "^8.5.3",
180
181
  "roboto-fontface": "^0.10.0",
181
- "rollup": "^4.34.8",
182
- "rollup-plugin-dts": "^6.1.0",
183
- "rollup-plugin-sass": "^1.12.21",
182
+ "rollup": "^4.40.0",
183
+ "rollup-plugin-dts": "^6.2.1",
184
+ "rollup-plugin-sass": "^1.15.2",
184
185
  "rollup-plugin-sourcemaps": "^0.6.3",
185
186
  "rollup-plugin-terser": "^7.0.2",
186
187
  "timezone-mock": "^1.3.6",
187
188
  "ts-node": "^10.9.2",
188
- "ts-patch": "^3.2.1",
189
- "typescript-transform-paths": "^3.5.1",
189
+ "ts-patch": "^3.3.0",
190
+ "typescript-transform-paths": "^3.5.5",
190
191
  "unplugin-auto-import": "19.1.0",
191
192
  "unplugin-vue-components": "^0.27.4",
192
193
  "upath": "^2.0.1",
193
194
  "vite": "^6.1.0",
194
- "vite-ssr": "^0.17.1",
195
- "vitest": "^3.0.5",
195
+ "vite-ssr": "^0.17.2",
196
+ "vitest": "^3.1.1",
196
197
  "vue": "^3.5.13",
197
198
  "vue-i18n": "^11.1.1",
198
199
  "vue-router": "^4.5.0",
199
- "webdriverio": "^8.40.5"
200
+ "webdriverio": "^9.12.5"
200
201
  },
201
202
  "peerDependencies": {
202
203
  "typescript": ">=4.7",