@vuetify/nightly 3.8.9-dev.2025-06-11 → 3.8.9-dev.2025-06-13
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 +12 -3
- package/dist/json/attributes.json +3441 -3169
- package/dist/json/importMap-labs.json +40 -36
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +74 -1
- package/dist/json/web-types.json +6884 -5821
- package/dist/vuetify-labs.cjs +357 -47
- package/dist/vuetify-labs.css +5881 -5870
- package/dist/vuetify-labs.d.ts +8448 -1672
- package/dist/vuetify-labs.esm.js +357 -47
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +357 -47
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +111 -47
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5075 -5064
- package/dist/vuetify.d.ts +1499 -1302
- package/dist/vuetify.esm.js +111 -47
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +111 -47
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1063 -1057
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +21 -7
- package/lib/components/VCombobox/VCombobox.d.ts +21 -7
- package/lib/components/VDatePicker/VDatePicker.d.ts +70 -5
- package/lib/components/VDatePicker/VDatePicker.js +10 -4
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VKbd/VKbd.css +13 -2
- package/lib/components/VKbd/VKbd.d.ts +221 -0
- package/lib/components/VKbd/VKbd.js +55 -0
- package/lib/components/VKbd/VKbd.js.map +1 -0
- package/lib/components/VKbd/VKbd.sass +2 -1
- package/lib/components/VKbd/_variables.scss +12 -1
- package/lib/components/VKbd/index.d.ts +1 -95
- package/lib/components/VKbd/index.js +1 -4
- package/lib/components/VKbd/index.js.map +1 -1
- package/lib/components/VMenu/VMenu.d.ts +13 -0
- package/lib/components/VMenu/VMenu.js +2 -1
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +11 -0
- package/lib/components/VNumberInput/VNumberInput.js +37 -29
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VSelect/VSelect.d.ts +33 -11
- package/lib/components/VSpeedDial/VSpeedDial.d.ts +13 -0
- package/lib/composables/locale.d.ts +5 -1
- package/lib/composables/locale.js.map +1 -1
- package/lib/composables/mask.d.ts +38 -0
- package/lib/composables/mask.js +183 -0
- package/lib/composables/mask.js.map +1 -0
- package/lib/composables/theme.js +3 -3
- package/lib/composables/theme.js.map +1 -1
- package/lib/entry-bundler.d.ts +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +67 -63
- package/lib/framework.js +1 -1
- package/lib/labs/VMaskInput/VMaskInput.d.ts +6993 -0
- package/lib/labs/VMaskInput/VMaskInput.js +67 -0
- package/lib/labs/VMaskInput/VMaskInput.js.map +1 -0
- package/lib/labs/VMaskInput/index.d.ts +1 -0
- package/lib/labs/VMaskInput/index.js +2 -0
- package/lib/labs/VMaskInput/index.js.map +1 -0
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/labs/entry-bundler.d.ts +1 -0
- package/lib/locale/adapters/vue-i18n.js +6 -1
- package/lib/locale/adapters/vue-i18n.js.map +1 -1
- package/lib/locale/adapters/vuetify.js +7 -1
- package/lib/locale/adapters/vuetify.js.map +1 -1
- package/lib/util/helpers.d.ts +2 -1
- package/lib/util/helpers.js +12 -7
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
@@ -1354,6 +1354,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1354
1354
|
noClickAnimation: boolean;
|
1355
1355
|
scrim: string | boolean;
|
1356
1356
|
submenu: boolean;
|
1357
|
+
disableInitialFocus: boolean;
|
1357
1358
|
}> & Omit<{
|
1358
1359
|
location: import("../../util/index.js").Anchor | undefined;
|
1359
1360
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -1433,6 +1434,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1433
1434
|
noClickAnimation: boolean;
|
1434
1435
|
scrim: string | boolean;
|
1435
1436
|
submenu: boolean;
|
1437
|
+
disableInitialFocus: boolean;
|
1436
1438
|
offset?: string | number | number[] | undefined;
|
1437
1439
|
id?: string | undefined;
|
1438
1440
|
height?: string | number | undefined;
|
@@ -1482,7 +1484,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1482
1484
|
targetRef: import("../../util/index.js").TemplateRef;
|
1483
1485
|
}) => import("vue").VNodeChild) | undefined;
|
1484
1486
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1485
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu"> : (Partial<{
|
1487
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus"> : (Partial<{
|
1486
1488
|
location: import("../../util/index.js").Anchor | undefined;
|
1487
1489
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1488
1490
|
transition: string | boolean | (import("vue").TransitionProps & {
|
@@ -1563,6 +1565,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1563
1565
|
noClickAnimation: boolean;
|
1564
1566
|
scrim: string | boolean;
|
1565
1567
|
submenu: boolean;
|
1568
|
+
disableInitialFocus: boolean;
|
1566
1569
|
}> & Omit<{
|
1567
1570
|
location: import("../../util/index.js").Anchor | undefined;
|
1568
1571
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -1642,6 +1645,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1642
1645
|
noClickAnimation: boolean;
|
1643
1646
|
scrim: string | boolean;
|
1644
1647
|
submenu: boolean;
|
1648
|
+
disableInitialFocus: boolean;
|
1645
1649
|
offset?: string | number | number[] | undefined;
|
1646
1650
|
id?: string | undefined;
|
1647
1651
|
height?: string | number | undefined;
|
@@ -1691,7 +1695,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1691
1695
|
targetRef: import("../../util/index.js").TemplateRef;
|
1692
1696
|
}) => import("vue").VNodeChild) | undefined;
|
1693
1697
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1694
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | Defaults["menuProps"]>;
|
1698
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus">) | Defaults["menuProps"]>;
|
1695
1699
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
1696
1700
|
location: import("../../util/index.js").Anchor | undefined;
|
1697
1701
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -1773,6 +1777,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1773
1777
|
noClickAnimation: boolean;
|
1774
1778
|
scrim: string | boolean;
|
1775
1779
|
submenu: boolean;
|
1780
|
+
disableInitialFocus: boolean;
|
1776
1781
|
}> & Omit<{
|
1777
1782
|
location: import("../../util/index.js").Anchor | undefined;
|
1778
1783
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -1852,6 +1857,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1852
1857
|
noClickAnimation: boolean;
|
1853
1858
|
scrim: string | boolean;
|
1854
1859
|
submenu: boolean;
|
1860
|
+
disableInitialFocus: boolean;
|
1855
1861
|
offset?: string | number | number[] | undefined;
|
1856
1862
|
id?: string | undefined;
|
1857
1863
|
height?: string | number | undefined;
|
@@ -1901,7 +1907,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1901
1907
|
targetRef: import("../../util/index.js").TemplateRef;
|
1902
1908
|
}) => import("vue").VNodeChild) | undefined;
|
1903
1909
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1904
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu"> : NonNullable<Partial<{
|
1910
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus"> : NonNullable<Partial<{
|
1905
1911
|
location: import("../../util/index.js").Anchor | undefined;
|
1906
1912
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1907
1913
|
transition: string | boolean | (import("vue").TransitionProps & {
|
@@ -1982,6 +1988,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1982
1988
|
noClickAnimation: boolean;
|
1983
1989
|
scrim: string | boolean;
|
1984
1990
|
submenu: boolean;
|
1991
|
+
disableInitialFocus: boolean;
|
1985
1992
|
}> & Omit<{
|
1986
1993
|
location: import("../../util/index.js").Anchor | undefined;
|
1987
1994
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -2061,6 +2068,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
2061
2068
|
noClickAnimation: boolean;
|
2062
2069
|
scrim: string | boolean;
|
2063
2070
|
submenu: boolean;
|
2071
|
+
disableInitialFocus: boolean;
|
2064
2072
|
offset?: string | number | number[] | undefined;
|
2065
2073
|
id?: string | undefined;
|
2066
2074
|
height?: string | number | undefined;
|
@@ -2110,7 +2118,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
2110
2118
|
targetRef: import("../../util/index.js").TemplateRef;
|
2111
2119
|
}) => import("vue").VNodeChild) | undefined;
|
2112
2120
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2113
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">> | Defaults["menuProps"];
|
2121
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus">> | Defaults["menuProps"];
|
2114
2122
|
};
|
2115
2123
|
multiple: unknown extends Defaults["multiple"] ? BooleanConstructor : {
|
2116
2124
|
type: PropType<unknown extends Defaults["multiple"] ? boolean : boolean | Defaults["multiple"]>;
|
@@ -2523,6 +2531,7 @@ export declare const VAutocomplete: {
|
|
2523
2531
|
noClickAnimation: boolean;
|
2524
2532
|
scrim: string | boolean;
|
2525
2533
|
submenu: boolean;
|
2534
|
+
disableInitialFocus: boolean;
|
2526
2535
|
}> & Omit<{
|
2527
2536
|
location: import("../../util/index.js").Anchor | undefined;
|
2528
2537
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -2602,6 +2611,7 @@ export declare const VAutocomplete: {
|
|
2602
2611
|
noClickAnimation: boolean;
|
2603
2612
|
scrim: string | boolean;
|
2604
2613
|
submenu: boolean;
|
2614
|
+
disableInitialFocus: boolean;
|
2605
2615
|
offset?: string | number | number[] | undefined;
|
2606
2616
|
id?: string | undefined;
|
2607
2617
|
height?: string | number | undefined;
|
@@ -2651,7 +2661,7 @@ export declare const VAutocomplete: {
|
|
2651
2661
|
targetRef: import("../../util/index.js").TemplateRef;
|
2652
2662
|
}) => import("vue").VNodeChild) | undefined;
|
2653
2663
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2654
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | undefined;
|
2664
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus">) | undefined;
|
2655
2665
|
itemColor?: string | undefined;
|
2656
2666
|
autoSelectFirst?: boolean | "exact" | undefined;
|
2657
2667
|
} & {
|
@@ -5051,6 +5061,7 @@ export declare const VAutocomplete: {
|
|
5051
5061
|
noClickAnimation: boolean;
|
5052
5062
|
scrim: string | boolean;
|
5053
5063
|
submenu: boolean;
|
5064
|
+
disableInitialFocus: boolean;
|
5054
5065
|
}> & Omit<{
|
5055
5066
|
location: import("../../util/index.js").Anchor | undefined;
|
5056
5067
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -5130,6 +5141,7 @@ export declare const VAutocomplete: {
|
|
5130
5141
|
noClickAnimation: boolean;
|
5131
5142
|
scrim: string | boolean;
|
5132
5143
|
submenu: boolean;
|
5144
|
+
disableInitialFocus: boolean;
|
5133
5145
|
offset?: string | number | number[] | undefined;
|
5134
5146
|
id?: string | undefined;
|
5135
5147
|
height?: string | number | undefined;
|
@@ -5179,7 +5191,7 @@ export declare const VAutocomplete: {
|
|
5179
5191
|
targetRef: import("../../util/index.js").TemplateRef;
|
5180
5192
|
}) => import("vue").VNodeChild) | undefined;
|
5181
5193
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5182
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | undefined;
|
5194
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus">) | undefined;
|
5183
5195
|
itemColor?: string | undefined;
|
5184
5196
|
autoSelectFirst?: boolean | "exact" | undefined;
|
5185
5197
|
} & {
|
@@ -7531,6 +7543,7 @@ export declare const VAutocomplete: {
|
|
7531
7543
|
noClickAnimation: boolean;
|
7532
7544
|
scrim: string | boolean;
|
7533
7545
|
submenu: boolean;
|
7546
|
+
disableInitialFocus: boolean;
|
7534
7547
|
}> & Omit<{
|
7535
7548
|
location: import("../../util/index.js").Anchor | undefined;
|
7536
7549
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -7610,6 +7623,7 @@ export declare const VAutocomplete: {
|
|
7610
7623
|
noClickAnimation: boolean;
|
7611
7624
|
scrim: string | boolean;
|
7612
7625
|
submenu: boolean;
|
7626
|
+
disableInitialFocus: boolean;
|
7613
7627
|
offset?: string | number | number[] | undefined;
|
7614
7628
|
id?: string | undefined;
|
7615
7629
|
height?: string | number | undefined;
|
@@ -7659,7 +7673,7 @@ export declare const VAutocomplete: {
|
|
7659
7673
|
targetRef: import("../../util/index.js").TemplateRef;
|
7660
7674
|
}) => import("vue").VNodeChild) | undefined;
|
7661
7675
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7662
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | undefined;
|
7676
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus">) | undefined;
|
7663
7677
|
itemColor?: string | undefined;
|
7664
7678
|
autoSelectFirst?: boolean | "exact" | undefined;
|
7665
7679
|
} & {
|
@@ -1366,6 +1366,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1366
1366
|
noClickAnimation: boolean;
|
1367
1367
|
scrim: string | boolean;
|
1368
1368
|
submenu: boolean;
|
1369
|
+
disableInitialFocus: boolean;
|
1369
1370
|
}> & Omit<{
|
1370
1371
|
location: import("../../util/index.js").Anchor | undefined;
|
1371
1372
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -1445,6 +1446,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1445
1446
|
noClickAnimation: boolean;
|
1446
1447
|
scrim: string | boolean;
|
1447
1448
|
submenu: boolean;
|
1449
|
+
disableInitialFocus: boolean;
|
1448
1450
|
offset?: string | number | number[] | undefined;
|
1449
1451
|
id?: string | undefined;
|
1450
1452
|
height?: string | number | undefined;
|
@@ -1494,7 +1496,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1494
1496
|
targetRef: import("../../util/index.js").TemplateRef;
|
1495
1497
|
}) => import("vue").VNodeChild) | undefined;
|
1496
1498
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1497
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu"> : (Partial<{
|
1499
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus"> : (Partial<{
|
1498
1500
|
location: import("../../util/index.js").Anchor | undefined;
|
1499
1501
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1500
1502
|
transition: string | boolean | (import("vue").TransitionProps & {
|
@@ -1575,6 +1577,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1575
1577
|
noClickAnimation: boolean;
|
1576
1578
|
scrim: string | boolean;
|
1577
1579
|
submenu: boolean;
|
1580
|
+
disableInitialFocus: boolean;
|
1578
1581
|
}> & Omit<{
|
1579
1582
|
location: import("../../util/index.js").Anchor | undefined;
|
1580
1583
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -1654,6 +1657,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1654
1657
|
noClickAnimation: boolean;
|
1655
1658
|
scrim: string | boolean;
|
1656
1659
|
submenu: boolean;
|
1660
|
+
disableInitialFocus: boolean;
|
1657
1661
|
offset?: string | number | number[] | undefined;
|
1658
1662
|
id?: string | undefined;
|
1659
1663
|
height?: string | number | undefined;
|
@@ -1703,7 +1707,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1703
1707
|
targetRef: import("../../util/index.js").TemplateRef;
|
1704
1708
|
}) => import("vue").VNodeChild) | undefined;
|
1705
1709
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1706
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | Defaults["menuProps"]>;
|
1710
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus">) | Defaults["menuProps"]>;
|
1707
1711
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
1708
1712
|
location: import("../../util/index.js").Anchor | undefined;
|
1709
1713
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -1785,6 +1789,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1785
1789
|
noClickAnimation: boolean;
|
1786
1790
|
scrim: string | boolean;
|
1787
1791
|
submenu: boolean;
|
1792
|
+
disableInitialFocus: boolean;
|
1788
1793
|
}> & Omit<{
|
1789
1794
|
location: import("../../util/index.js").Anchor | undefined;
|
1790
1795
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -1864,6 +1869,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1864
1869
|
noClickAnimation: boolean;
|
1865
1870
|
scrim: string | boolean;
|
1866
1871
|
submenu: boolean;
|
1872
|
+
disableInitialFocus: boolean;
|
1867
1873
|
offset?: string | number | number[] | undefined;
|
1868
1874
|
id?: string | undefined;
|
1869
1875
|
height?: string | number | undefined;
|
@@ -1913,7 +1919,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1913
1919
|
targetRef: import("../../util/index.js").TemplateRef;
|
1914
1920
|
}) => import("vue").VNodeChild) | undefined;
|
1915
1921
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1916
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu"> : NonNullable<Partial<{
|
1922
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus"> : NonNullable<Partial<{
|
1917
1923
|
location: import("../../util/index.js").Anchor | undefined;
|
1918
1924
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1919
1925
|
transition: string | boolean | (import("vue").TransitionProps & {
|
@@ -1994,6 +2000,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1994
2000
|
noClickAnimation: boolean;
|
1995
2001
|
scrim: string | boolean;
|
1996
2002
|
submenu: boolean;
|
2003
|
+
disableInitialFocus: boolean;
|
1997
2004
|
}> & Omit<{
|
1998
2005
|
location: import("../../util/index.js").Anchor | undefined;
|
1999
2006
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -2073,6 +2080,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
2073
2080
|
noClickAnimation: boolean;
|
2074
2081
|
scrim: string | boolean;
|
2075
2082
|
submenu: boolean;
|
2083
|
+
disableInitialFocus: boolean;
|
2076
2084
|
offset?: string | number | number[] | undefined;
|
2077
2085
|
id?: string | undefined;
|
2078
2086
|
height?: string | number | undefined;
|
@@ -2122,7 +2130,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
2122
2130
|
targetRef: import("../../util/index.js").TemplateRef;
|
2123
2131
|
}) => import("vue").VNodeChild) | undefined;
|
2124
2132
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2125
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">> | Defaults["menuProps"];
|
2133
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus">> | Defaults["menuProps"];
|
2126
2134
|
};
|
2127
2135
|
multiple: unknown extends Defaults["multiple"] ? BooleanConstructor : {
|
2128
2136
|
type: PropType<unknown extends Defaults["multiple"] ? boolean : boolean | Defaults["multiple"]>;
|
@@ -2541,6 +2549,7 @@ export declare const VCombobox: {
|
|
2541
2549
|
noClickAnimation: boolean;
|
2542
2550
|
scrim: string | boolean;
|
2543
2551
|
submenu: boolean;
|
2552
|
+
disableInitialFocus: boolean;
|
2544
2553
|
}> & Omit<{
|
2545
2554
|
location: import("../../util/index.js").Anchor | undefined;
|
2546
2555
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -2620,6 +2629,7 @@ export declare const VCombobox: {
|
|
2620
2629
|
noClickAnimation: boolean;
|
2621
2630
|
scrim: string | boolean;
|
2622
2631
|
submenu: boolean;
|
2632
|
+
disableInitialFocus: boolean;
|
2623
2633
|
offset?: string | number | number[] | undefined;
|
2624
2634
|
id?: string | undefined;
|
2625
2635
|
height?: string | number | undefined;
|
@@ -2669,7 +2679,7 @@ export declare const VCombobox: {
|
|
2669
2679
|
targetRef: import("../../util/index.js").TemplateRef;
|
2670
2680
|
}) => import("vue").VNodeChild) | undefined;
|
2671
2681
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2672
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | undefined;
|
2682
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus">) | undefined;
|
2673
2683
|
itemColor?: string | undefined;
|
2674
2684
|
autoSelectFirst?: boolean | "exact" | undefined;
|
2675
2685
|
} & {
|
@@ -5067,6 +5077,7 @@ export declare const VCombobox: {
|
|
5067
5077
|
noClickAnimation: boolean;
|
5068
5078
|
scrim: string | boolean;
|
5069
5079
|
submenu: boolean;
|
5080
|
+
disableInitialFocus: boolean;
|
5070
5081
|
}> & Omit<{
|
5071
5082
|
location: import("../../util/index.js").Anchor | undefined;
|
5072
5083
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -5146,6 +5157,7 @@ export declare const VCombobox: {
|
|
5146
5157
|
noClickAnimation: boolean;
|
5147
5158
|
scrim: string | boolean;
|
5148
5159
|
submenu: boolean;
|
5160
|
+
disableInitialFocus: boolean;
|
5149
5161
|
offset?: string | number | number[] | undefined;
|
5150
5162
|
id?: string | undefined;
|
5151
5163
|
height?: string | number | undefined;
|
@@ -5195,7 +5207,7 @@ export declare const VCombobox: {
|
|
5195
5207
|
targetRef: import("../../util/index.js").TemplateRef;
|
5196
5208
|
}) => import("vue").VNodeChild) | undefined;
|
5197
5209
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5198
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | undefined;
|
5210
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus">) | undefined;
|
5199
5211
|
itemColor?: string | undefined;
|
5200
5212
|
autoSelectFirst?: boolean | "exact" | undefined;
|
5201
5213
|
} & {
|
@@ -7545,6 +7557,7 @@ export declare const VCombobox: {
|
|
7545
7557
|
noClickAnimation: boolean;
|
7546
7558
|
scrim: string | boolean;
|
7547
7559
|
submenu: boolean;
|
7560
|
+
disableInitialFocus: boolean;
|
7548
7561
|
}> & Omit<{
|
7549
7562
|
location: import("../../util/index.js").Anchor | undefined;
|
7550
7563
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
@@ -7624,6 +7637,7 @@ export declare const VCombobox: {
|
|
7624
7637
|
noClickAnimation: boolean;
|
7625
7638
|
scrim: string | boolean;
|
7626
7639
|
submenu: boolean;
|
7640
|
+
disableInitialFocus: boolean;
|
7627
7641
|
offset?: string | number | number[] | undefined;
|
7628
7642
|
id?: string | undefined;
|
7629
7643
|
height?: string | number | undefined;
|
@@ -7673,7 +7687,7 @@ export declare const VCombobox: {
|
|
7673
7687
|
targetRef: import("../../util/index.js").TemplateRef;
|
7674
7688
|
}) => import("vue").VNodeChild) | undefined;
|
7675
7689
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7676
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | undefined;
|
7690
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu" | "disableInitialFocus">) | undefined;
|
7677
7691
|
itemColor?: string | undefined;
|
7678
7692
|
autoSelectFirst?: boolean | "exact" | undefined;
|
7679
7693
|
} & {
|
@@ -1,6 +1,9 @@
|
|
1
|
+
import type { VDatePickerMonthSlots } from './VDatePickerMonth.js';
|
2
|
+
import type { VDatePickerMonthsSlots } from './VDatePickerMonths.js';
|
3
|
+
import type { VDatePickerYearsSlots } from './VDatePickerYears.js';
|
1
4
|
import type { VPickerSlots } from "../../labs/VPicker/VPicker.js";
|
2
5
|
import type { GenericProps } from "../../util/index.js";
|
3
|
-
export type VDatePickerSlots = Omit<VPickerSlots, 'header'> & {
|
6
|
+
export type VDatePickerSlots = Omit<VPickerSlots, 'header' | 'default'> & VDatePickerYearsSlots & VDatePickerMonthsSlots & VDatePickerMonthSlots & {
|
4
7
|
header: {
|
5
8
|
header: string;
|
6
9
|
transition: string;
|
@@ -433,7 +436,7 @@ export declare const VDatePicker: {
|
|
433
436
|
'update:month': (date: any) => true;
|
434
437
|
'update:year': (date: any) => true;
|
435
438
|
'update:viewMode': (date: any) => true;
|
436
|
-
}, "multiple" | "$children" | "v-slots" | "v-slot:
|
439
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:actions" | "v-slot:title" | "v-slot:header" | "v-slot:day" | "v-slot:month" | "v-slot:year">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
437
440
|
active: string | string[];
|
438
441
|
transition: string;
|
439
442
|
header: string;
|
@@ -458,9 +461,40 @@ export declare const VDatePicker: {
|
|
458
461
|
hideWeekdays: boolean;
|
459
462
|
showWeek: boolean;
|
460
463
|
}, true, {}, import("vue").SlotsType<Partial<{
|
461
|
-
default: () => import("vue").VNode[];
|
462
464
|
title: () => import("vue").VNode[];
|
463
465
|
actions: () => import("vue").VNode[];
|
466
|
+
year: (arg: {
|
467
|
+
year: {
|
468
|
+
text: string;
|
469
|
+
value: number;
|
470
|
+
};
|
471
|
+
i: number;
|
472
|
+
props: {
|
473
|
+
active: boolean;
|
474
|
+
color?: string;
|
475
|
+
rounded: boolean;
|
476
|
+
text: string;
|
477
|
+
variant: "flat" | "text";
|
478
|
+
onClick: () => void;
|
479
|
+
};
|
480
|
+
}) => import("vue").VNode[];
|
481
|
+
month: (arg: {
|
482
|
+
month: {
|
483
|
+
text: string;
|
484
|
+
value: number;
|
485
|
+
};
|
486
|
+
i: number;
|
487
|
+
props: {
|
488
|
+
onClick: () => void;
|
489
|
+
};
|
490
|
+
}) => import("vue").VNode[];
|
491
|
+
day: (arg: {
|
492
|
+
props: {
|
493
|
+
onClick: () => void;
|
494
|
+
};
|
495
|
+
item: any;
|
496
|
+
i: number;
|
497
|
+
}) => import("vue").VNode[];
|
464
498
|
header: (arg: {
|
465
499
|
header: string;
|
466
500
|
transition: string;
|
@@ -613,7 +647,7 @@ export declare const VDatePicker: {
|
|
613
647
|
'update:month': (date: any) => true;
|
614
648
|
'update:year': (date: any) => true;
|
615
649
|
'update:viewMode': (date: any) => true;
|
616
|
-
}, "multiple" | "$children" | "v-slots" | "v-slot:
|
650
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:actions" | "v-slot:title" | "v-slot:header" | "v-slot:day" | "v-slot:month" | "v-slot:year">, string, {
|
617
651
|
active: string | string[];
|
618
652
|
transition: string;
|
619
653
|
header: string;
|
@@ -638,9 +672,40 @@ export declare const VDatePicker: {
|
|
638
672
|
hideWeekdays: boolean;
|
639
673
|
showWeek: boolean;
|
640
674
|
}, {}, string, import("vue").SlotsType<Partial<{
|
641
|
-
default: () => import("vue").VNode[];
|
642
675
|
title: () => import("vue").VNode[];
|
643
676
|
actions: () => import("vue").VNode[];
|
677
|
+
year: (arg: {
|
678
|
+
year: {
|
679
|
+
text: string;
|
680
|
+
value: number;
|
681
|
+
};
|
682
|
+
i: number;
|
683
|
+
props: {
|
684
|
+
active: boolean;
|
685
|
+
color?: string;
|
686
|
+
rounded: boolean;
|
687
|
+
text: string;
|
688
|
+
variant: "flat" | "text";
|
689
|
+
onClick: () => void;
|
690
|
+
};
|
691
|
+
}) => import("vue").VNode[];
|
692
|
+
month: (arg: {
|
693
|
+
month: {
|
694
|
+
text: string;
|
695
|
+
value: number;
|
696
|
+
};
|
697
|
+
i: number;
|
698
|
+
props: {
|
699
|
+
onClick: () => void;
|
700
|
+
};
|
701
|
+
}) => import("vue").VNode[];
|
702
|
+
day: (arg: {
|
703
|
+
props: {
|
704
|
+
onClick: () => void;
|
705
|
+
};
|
706
|
+
item: any;
|
707
|
+
i: number;
|
708
|
+
}) => import("vue").VNode[];
|
644
709
|
header: (arg: {
|
645
710
|
header: string;
|
646
711
|
transition: string;
|
@@ -15,7 +15,7 @@ import { useDate } from "../../composables/date/index.js";
|
|
15
15
|
import { useLocale, useRtl } from "../../composables/locale.js";
|
16
16
|
import { useProxiedModel } from "../../composables/proxiedModel.js"; // Utilities
|
17
17
|
import { computed, ref, shallowRef, toRef, watch } from 'vue';
|
18
|
-
import { genericComponent, omit, propsFactory, useRender, wrapInArray } from "../../util/index.js"; // Types
|
18
|
+
import { genericComponent, omit, pick, propsFactory, useRender, wrapInArray } from "../../util/index.js"; // Types
|
19
19
|
// Types
|
20
20
|
export const makeVDatePickerProps = propsFactory({
|
21
21
|
// TODO: implement in v3.5
|
@@ -293,7 +293,9 @@ export const VDatePicker = genericComponent()({
|
|
293
293
|
"max": maxDate.value,
|
294
294
|
"year": year.value,
|
295
295
|
"allowedMonths": allowedMonths
|
296
|
-
}),
|
296
|
+
}), {
|
297
|
+
...pick(slots, ['month'])
|
298
|
+
}) : viewMode.value === 'year' ? _createVNode(VDatePickerYears, _mergeProps({
|
297
299
|
"key": "date-picker-years"
|
298
300
|
}, datePickerYearsProps, {
|
299
301
|
"modelValue": year.value,
|
@@ -301,7 +303,9 @@ export const VDatePicker = genericComponent()({
|
|
301
303
|
"min": minDate.value,
|
302
304
|
"max": maxDate.value,
|
303
305
|
"allowedYears": allowedYears
|
304
|
-
}),
|
306
|
+
}), {
|
307
|
+
...pick(slots, ['year'])
|
308
|
+
}) : _createVNode(VDatePickerMonth, _mergeProps({
|
305
309
|
"key": "date-picker-month"
|
306
310
|
}, datePickerMonthProps, {
|
307
311
|
"modelValue": model.value,
|
@@ -312,7 +316,9 @@ export const VDatePicker = genericComponent()({
|
|
312
316
|
"onUpdate:year": [$event => year.value = $event, onUpdateYear],
|
313
317
|
"min": minDate.value,
|
314
318
|
"max": maxDate.value
|
315
|
-
}),
|
319
|
+
}), {
|
320
|
+
...pick(slots, ['day'])
|
321
|
+
})]
|
316
322
|
})]),
|
317
323
|
actions: slots.actions
|
318
324
|
});
|