@vuetify/nightly 3.7.11-master.2025-02-08 → 3.7.11-master.2025-02-11
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.
- package/CHANGELOG.md +8 -4
- package/dist/json/attributes.json +1459 -1471
- package/dist/json/importMap-labs.json +34 -34
- package/dist/json/importMap.json +256 -256
- package/dist/json/tags.json +0 -3
- package/dist/json/web-types.json +2831 -2858
- package/dist/vuetify-labs.css +5299 -5298
- package/dist/vuetify-labs.d.ts +20 -38
- package/dist/vuetify-labs.esm.js +33 -20
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +33 -20
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4586 -4585
- package/dist/vuetify.d.ts +63 -75
- package/dist/vuetify.esm.js +31 -18
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +31 -18
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -12
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +2 -2
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +12 -24
- package/lib/components/VOverlay/VOverlay.css +2 -1
- package/lib/components/VOverlay/VOverlay.sass +2 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VSlider/slider.mjs +25 -12
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/index.d.mts +12 -24
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/list-items.mjs +3 -3
- package/lib/composables/list-items.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +51 -51
- package/lib/labs/VDateInput/VDateInput.mjs +2 -2
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +8 -14
- package/lib/labs/components.d.mts +8 -14
- package/package.json +3 -3
@@ -1967,7 +1967,6 @@ declare const VDateInput: {
|
|
1967
1967
|
modelModifiers?: Record<string, boolean> | undefined;
|
1968
1968
|
firstDayOfWeek?: string | number | undefined;
|
1969
1969
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
1970
|
-
displayValue?: unknown;
|
1971
1970
|
} & {
|
1972
1971
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
1973
1972
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
@@ -2083,7 +2082,6 @@ declare const VDateInput: {
|
|
2083
2082
|
modelModifiers?: Record<string, boolean> | undefined;
|
2084
2083
|
firstDayOfWeek?: string | number | undefined;
|
2085
2084
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
2086
|
-
displayValue?: unknown;
|
2087
2085
|
} & {
|
2088
2086
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
2089
2087
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
@@ -2259,7 +2257,6 @@ declare const VDateInput: {
|
|
2259
2257
|
modelModifiers?: Record<string, boolean> | undefined;
|
2260
2258
|
firstDayOfWeek?: string | number | undefined;
|
2261
2259
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
2262
|
-
displayValue?: unknown;
|
2263
2260
|
} & {
|
2264
2261
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
2265
2262
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
@@ -2429,7 +2426,6 @@ declare const VDateInput: {
|
|
2429
2426
|
modelModifiers?: Record<string, boolean> | undefined;
|
2430
2427
|
firstDayOfWeek?: string | number | undefined;
|
2431
2428
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
2432
|
-
displayValue?: unknown;
|
2433
2429
|
} & {
|
2434
2430
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
2435
2431
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
@@ -2549,10 +2545,6 @@ declare const VDateInput: {
|
|
2549
2545
|
validator(v: any): boolean;
|
2550
2546
|
};
|
2551
2547
|
modelValue: null;
|
2552
|
-
rounded: {
|
2553
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
2554
|
-
default: undefined;
|
2555
|
-
};
|
2556
2548
|
tile: BooleanConstructor;
|
2557
2549
|
bgColor: StringConstructor;
|
2558
2550
|
nextIcon: {
|
@@ -2607,13 +2599,16 @@ declare const VDateInput: {
|
|
2607
2599
|
};
|
2608
2600
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
2609
2601
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
2610
|
-
displayValue: PropType<unknown>;
|
2611
2602
|
hideWeekdays: BooleanConstructor;
|
2612
2603
|
showWeek: BooleanConstructor;
|
2613
2604
|
hideHeader: {
|
2614
2605
|
type: PropType<boolean>;
|
2615
2606
|
default: boolean;
|
2616
2607
|
};
|
2608
|
+
rounded: {
|
2609
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
2610
|
+
default: undefined;
|
2611
|
+
};
|
2617
2612
|
loading: (StringConstructor | BooleanConstructor)[];
|
2618
2613
|
appendInnerIcon: PropType<IconValue>;
|
2619
2614
|
clearable: BooleanConstructor;
|
@@ -2768,10 +2763,6 @@ declare const VDateInput: {
|
|
2768
2763
|
validator(v: any): boolean;
|
2769
2764
|
};
|
2770
2765
|
modelValue: null;
|
2771
|
-
rounded: {
|
2772
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
2773
|
-
default: undefined;
|
2774
|
-
};
|
2775
2766
|
tile: BooleanConstructor;
|
2776
2767
|
bgColor: StringConstructor;
|
2777
2768
|
nextIcon: {
|
@@ -2826,13 +2817,16 @@ declare const VDateInput: {
|
|
2826
2817
|
};
|
2827
2818
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
2828
2819
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
2829
|
-
displayValue: PropType<unknown>;
|
2830
2820
|
hideWeekdays: BooleanConstructor;
|
2831
2821
|
showWeek: BooleanConstructor;
|
2832
2822
|
hideHeader: {
|
2833
2823
|
type: PropType<boolean>;
|
2834
2824
|
default: boolean;
|
2835
2825
|
};
|
2826
|
+
rounded: {
|
2827
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
2828
|
+
default: undefined;
|
2829
|
+
};
|
2836
2830
|
loading: (StringConstructor | BooleanConstructor)[];
|
2837
2831
|
appendInnerIcon: PropType<IconValue>;
|
2838
2832
|
clearable: 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.7.11-master.2025-02-
|
4
|
+
"version": "3.7.11-master.2025-02-11",
|
5
5
|
"author": {
|
6
6
|
"name": "John Leider",
|
7
7
|
"email": "john@vuetifyjs.com"
|
@@ -184,9 +184,9 @@
|
|
184
184
|
},
|
185
185
|
"peerDependencies": {
|
186
186
|
"typescript": ">=4.7",
|
187
|
-
"vite-plugin-vuetify": ">=
|
187
|
+
"vite-plugin-vuetify": ">=1.0.0",
|
188
188
|
"vue": "^3.3.0",
|
189
|
-
"webpack-plugin-vuetify": ">=
|
189
|
+
"webpack-plugin-vuetify": ">=2.0.0"
|
190
190
|
},
|
191
191
|
"peerDependenciesMeta": {
|
192
192
|
"typescript": {
|