@vuetify/nightly 3.8.1-master.2025-04-14 → 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.
@@ -387,10 +387,10 @@ export declare const makeVDateInputProps: <Defaults extends {
387
387
  };
388
388
  firstDayOfWeek: unknown extends Defaults["firstDayOfWeek"] ? {
389
389
  type: (StringConstructor | NumberConstructor)[];
390
- default: number;
390
+ default: undefined;
391
391
  } : Omit<{
392
392
  type: (StringConstructor | NumberConstructor)[];
393
- default: number;
393
+ default: undefined;
394
394
  }, "type" | "default"> & {
395
395
  type: PropType<unknown extends Defaults["firstDayOfWeek"] ? string | number : string | number | Defaults["firstDayOfWeek"]>;
396
396
  default: unknown extends Defaults["firstDayOfWeek"] ? string | number : NonNullable<string | number> | Defaults["firstDayOfWeek"];
@@ -824,7 +824,6 @@ export declare const VDateInput: {
824
824
  showAdjacentMonths: boolean;
825
825
  weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
826
826
  weeksInMonth: "static" | "dynamic";
827
- firstDayOfWeek: string | number;
828
827
  hideWeekdays: boolean;
829
828
  showWeek: boolean;
830
829
  } & {
@@ -878,6 +877,7 @@ export declare const VDateInput: {
878
877
  suffix?: string | undefined;
879
878
  counterValue?: number | ((value: any) => number) | undefined;
880
879
  modelModifiers?: Record<string, boolean> | undefined;
880
+ firstDayOfWeek?: string | number | undefined;
881
881
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
882
882
  displayFormat?: string | Function | undefined;
883
883
  } & {
@@ -3015,7 +3015,6 @@ export declare const VDateInput: {
3015
3015
  showAdjacentMonths: boolean;
3016
3016
  weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
3017
3017
  weeksInMonth: "static" | "dynamic";
3018
- firstDayOfWeek: string | number;
3019
3018
  hideWeekdays: boolean;
3020
3019
  showWeek: boolean;
3021
3020
  } & {
@@ -3069,6 +3068,7 @@ export declare const VDateInput: {
3069
3068
  suffix?: string | undefined;
3070
3069
  counterValue?: number | ((value: any) => number) | undefined;
3071
3070
  modelModifiers?: Record<string, boolean> | undefined;
3071
+ firstDayOfWeek?: string | number | undefined;
3072
3072
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
3073
3073
  displayFormat?: string | Function | undefined;
3074
3074
  } & {
@@ -5181,7 +5181,6 @@ export declare const VDateInput: {
5181
5181
  showAdjacentMonths: boolean;
5182
5182
  weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
5183
5183
  weeksInMonth: "static" | "dynamic";
5184
- firstDayOfWeek: string | number;
5185
5184
  hideWeekdays: boolean;
5186
5185
  showWeek: boolean;
5187
5186
  } & {
@@ -5235,6 +5234,7 @@ export declare const VDateInput: {
5235
5234
  suffix?: string | undefined;
5236
5235
  counterValue?: number | ((value: any) => number) | undefined;
5237
5236
  modelModifiers?: Record<string, boolean> | undefined;
5237
+ firstDayOfWeek?: string | number | undefined;
5238
5238
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
5239
5239
  displayFormat?: string | Function | undefined;
5240
5240
  } & {
@@ -7411,7 +7411,7 @@ export declare const VDateInput: {
7411
7411
  };
7412
7412
  firstDayOfWeek: {
7413
7413
  type: (StringConstructor | NumberConstructor)[];
7414
- default: number;
7414
+ default: undefined;
7415
7415
  };
7416
7416
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
7417
7417
  hideWeekdays: BooleanConstructor;
@@ -7634,7 +7634,7 @@ export declare const VDateInput: {
7634
7634
  };
7635
7635
  firstDayOfWeek: {
7636
7636
  type: (StringConstructor | NumberConstructor)[];
7637
- default: number;
7637
+ default: undefined;
7638
7638
  };
7639
7639
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
7640
7640
  hideWeekdays: BooleanConstructor;
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-14",
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\"",
@@ -144,15 +146,14 @@
144
146
  "@testing-library/dom": "npm:@vuetify/testing-library-dom@1.0.2",
145
147
  "@testing-library/user-event": "^14.6.1",
146
148
  "@testing-library/vue": "^8.1.0",
147
- "@types/node": "catalog:",
149
+ "@types/node": "^22.5.4",
148
150
  "@types/resize-observer-browser": "^0.1.11",
149
- "@vitejs/plugin-vue": "catalog:",
151
+ "@vitejs/plugin-vue": "^5.2.1",
150
152
  "@vitejs/plugin-vue-jsx": "^4.1.2",
151
153
  "@vitest/browser": "^3.1.1",
152
154
  "@vitest/coverage-istanbul": "^3.1.1",
153
155
  "@vitest/ui": "^3.1.1",
154
156
  "@vue/babel-plugin-jsx": "^1.4.0",
155
- "@vue/compiler-sfc": "catalog:",
156
157
  "@vue/reactivity": "^3.5.13",
157
158
  "@vue/shared": "^3.5.13",
158
159
  "@vue/test-utils": "^2.4.6",
@@ -162,25 +163,22 @@
162
163
  "babel-plugin-module-resolver": "^5.0.2",
163
164
  "babel-plugin-transform-define": "^2.1.4",
164
165
  "babel-polyfill": "^6.26.0",
165
- "concurrently": "^9.1.2",
166
166
  "cssnano": "^7.0.6",
167
167
  "csstype": "^3.1.3",
168
168
  "cy-mobile-commands": "^0.3.0",
169
- "date-fns": "catalog:",
169
+ "date-fns": "^3.6.0",
170
170
  "dayjs": "^1.11.13",
171
171
  "dotenv": "^16.5.0",
172
- "eslint": "catalog:",
173
172
  "eslint-plugin-vitest": "0.5.4",
174
173
  "expect": "^29.7.0",
175
174
  "fast-glob": "^3.3.3",
176
175
  "identity-obj-proxy": "^3.0.0",
177
176
  "jsdom": "^26.1.0",
178
- "lodash-es": "catalog:",
179
177
  "luxon": "^3.6.1",
180
178
  "micromatch": "^4.0.8",
181
- "moment": "catalog:",
179
+ "moment": "^2.30.1",
182
180
  "postcss": "^8.5.3",
183
- "roboto-fontface": "catalog:",
181
+ "roboto-fontface": "^0.10.0",
184
182
  "rollup": "^4.40.0",
185
183
  "rollup-plugin-dts": "^6.2.1",
186
184
  "rollup-plugin-sass": "^1.15.2",
@@ -189,18 +187,16 @@
189
187
  "timezone-mock": "^1.3.6",
190
188
  "ts-node": "^10.9.2",
191
189
  "ts-patch": "^3.3.0",
192
- "typescript": "catalog:",
193
190
  "typescript-transform-paths": "^3.5.5",
194
- "unplugin-auto-import": "catalog:",
195
- "unplugin-vue-components": "catalog:",
196
- "upath": "catalog:",
197
- "vite": "catalog:",
191
+ "unplugin-auto-import": "19.1.0",
192
+ "unplugin-vue-components": "^0.27.4",
193
+ "upath": "^2.0.1",
194
+ "vite": "^6.1.0",
198
195
  "vite-ssr": "^0.17.2",
199
196
  "vitest": "^3.1.1",
200
- "vue": "catalog:",
201
- "vue-i18n": "catalog:",
202
- "vue-router": "catalog:",
203
- "vue-tsc": "catalog:",
197
+ "vue": "^3.5.13",
198
+ "vue-i18n": "^11.1.1",
199
+ "vue-router": "^4.5.0",
204
200
  "webdriverio": "^9.12.5"
205
201
  },
206
202
  "peerDependencies": {