@vuetify/nightly 3.8.3-master.2025-04-29 → 3.8.3-master.2025-05-01
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 +24 -3
- package/dist/json/attributes.json +1686 -1682
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +128 -128
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +3486 -3476
- package/dist/vuetify-labs.cjs +47 -24
- package/dist/vuetify-labs.css +3884 -3888
- package/dist/vuetify-labs.d.ts +4043 -859
- package/dist/vuetify-labs.esm.js +47 -24
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +47 -24
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +20 -17
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2938 -2942
- package/dist/vuetify.d.ts +4021 -857
- package/dist/vuetify.esm.js +20 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -17
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +792 -74
- package/lib/components/VBadge/VBadge.d.ts +22 -46
- package/lib/components/VBottomSheet/VBottomSheet.d.ts +1434 -80
- package/lib/components/VCombobox/VCombobox.d.ts +792 -74
- package/lib/components/VCounter/VCounter.d.ts +22 -46
- package/lib/components/VDataIterator/VDataIterator.d.ts +22 -46
- package/lib/components/VDataTable/composables/select.js +1 -1
- package/lib/components/VDataTable/composables/select.js.map +1 -1
- package/lib/components/VDialog/VDialog.d.ts +1048 -146
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VFab/VFab.d.ts +22 -46
- package/lib/components/VImg/VImg.d.ts +22 -49
- package/lib/components/VLazy/VLazy.d.ts +22 -46
- package/lib/components/VMenu/VMenu.d.ts +1048 -146
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VMessages/VMessages.d.ts +22 -46
- package/lib/components/VOverlay/VOverlay.d.ts +22 -49
- package/lib/components/VSelect/VSelect.d.ts +1232 -90
- package/lib/components/VSnackbar/VSnackbar.d.ts +58 -109
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +22 -46
- package/lib/components/VSpeedDial/VSpeedDial.d.ts +1434 -80
- package/lib/components/VTable/VTable.css +2 -6
- package/lib/components/VTable/VTable.sass +4 -22
- package/lib/components/VTooltip/VTooltip.d.ts +58 -109
- package/lib/components/VTooltip/VTooltip.js +2 -2
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/composables/transition.d.ts +10 -20
- package/lib/composables/transition.js +15 -12
- package/lib/composables/transition.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +93 -132
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +41 -4
- package/lib/labs/VDateInput/VDateInput.js +27 -7
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/package.json +1 -1
package/lib/framework.d.ts
CHANGED
@@ -678,7 +678,7 @@ declare const VSnackbar: {
|
|
678
678
|
origin: "auto" | Anchor | "overlap";
|
679
679
|
transition: string | boolean | (vue.TransitionProps & {
|
680
680
|
component?: vue.Component;
|
681
|
-
});
|
681
|
+
}) | null;
|
682
682
|
zIndex: string | number;
|
683
683
|
style: vue.StyleValue;
|
684
684
|
eager: boolean;
|
@@ -761,9 +761,6 @@ declare const VSnackbar: {
|
|
761
761
|
absolute: boolean;
|
762
762
|
location: Anchor;
|
763
763
|
origin: "auto" | Anchor | "overlap";
|
764
|
-
transition: string | boolean | (vue.TransitionProps & {
|
765
|
-
component?: vue.Component;
|
766
|
-
});
|
767
764
|
zIndex: string | number;
|
768
765
|
style: vue.StyleValue;
|
769
766
|
eager: boolean;
|
@@ -786,9 +783,6 @@ declare const VSnackbar: {
|
|
786
783
|
absolute: boolean;
|
787
784
|
location: Anchor;
|
788
785
|
origin: "auto" | Anchor | "overlap";
|
789
|
-
transition: string | boolean | (vue.TransitionProps & {
|
790
|
-
component?: vue.Component;
|
791
|
-
});
|
792
786
|
zIndex: string | number;
|
793
787
|
style: vue.StyleValue;
|
794
788
|
eager: boolean;
|
@@ -813,6 +807,9 @@ declare const VSnackbar: {
|
|
813
807
|
minHeight?: string | number | undefined;
|
814
808
|
minWidth?: string | number | undefined;
|
815
809
|
opacity?: string | number | undefined;
|
810
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
811
|
+
component?: vue.Component;
|
812
|
+
}) | null | undefined;
|
816
813
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
817
814
|
class?: any;
|
818
815
|
theme?: string | undefined;
|
@@ -859,7 +856,7 @@ declare const VSnackbar: {
|
|
859
856
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
860
857
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
861
858
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
862
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "
|
859
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
863
860
|
$attrs: {
|
864
861
|
[x: string]: unknown;
|
865
862
|
};
|
@@ -885,9 +882,6 @@ declare const VSnackbar: {
|
|
885
882
|
absolute: boolean;
|
886
883
|
location: Anchor;
|
887
884
|
origin: "auto" | Anchor | "overlap";
|
888
|
-
transition: string | boolean | (vue.TransitionProps & {
|
889
|
-
component?: vue.Component;
|
890
|
-
});
|
891
885
|
zIndex: string | number;
|
892
886
|
style: vue.StyleValue;
|
893
887
|
eager: boolean;
|
@@ -913,6 +907,9 @@ declare const VSnackbar: {
|
|
913
907
|
minHeight?: string | number | undefined;
|
914
908
|
minWidth?: string | number | undefined;
|
915
909
|
opacity?: string | number | undefined;
|
910
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
911
|
+
component?: vue.Component;
|
912
|
+
}) | null | undefined;
|
916
913
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
917
914
|
class?: any;
|
918
915
|
theme?: string | undefined;
|
@@ -981,9 +978,6 @@ declare const VSnackbar: {
|
|
981
978
|
absolute: boolean;
|
982
979
|
location: Anchor;
|
983
980
|
origin: "auto" | Anchor | "overlap";
|
984
|
-
transition: string | boolean | (vue.TransitionProps & {
|
985
|
-
component?: vue.Component;
|
986
|
-
});
|
987
981
|
zIndex: string | number;
|
988
982
|
style: vue.StyleValue;
|
989
983
|
eager: boolean;
|
@@ -1035,9 +1029,6 @@ declare const VSnackbar: {
|
|
1035
1029
|
absolute: boolean;
|
1036
1030
|
location: Anchor;
|
1037
1031
|
origin: "auto" | Anchor | "overlap";
|
1038
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1039
|
-
component?: vue.Component;
|
1040
|
-
});
|
1041
1032
|
zIndex: string | number;
|
1042
1033
|
style: vue.StyleValue;
|
1043
1034
|
eager: boolean;
|
@@ -1060,9 +1051,6 @@ declare const VSnackbar: {
|
|
1060
1051
|
absolute: boolean;
|
1061
1052
|
location: Anchor;
|
1062
1053
|
origin: "auto" | Anchor | "overlap";
|
1063
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1064
|
-
component?: vue.Component;
|
1065
|
-
});
|
1066
1054
|
zIndex: string | number;
|
1067
1055
|
style: vue.StyleValue;
|
1068
1056
|
eager: boolean;
|
@@ -1088,6 +1076,9 @@ declare const VSnackbar: {
|
|
1088
1076
|
minHeight?: string | number | undefined;
|
1089
1077
|
minWidth?: string | number | undefined;
|
1090
1078
|
opacity?: string | number | undefined;
|
1079
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
1080
|
+
component?: vue.Component;
|
1081
|
+
}) | null | undefined;
|
1091
1082
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
1092
1083
|
class?: any;
|
1093
1084
|
theme?: string | undefined;
|
@@ -1137,7 +1128,7 @@ declare const VSnackbar: {
|
|
1137
1128
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1138
1129
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1139
1130
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1140
|
-
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "
|
1131
|
+
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
1141
1132
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1142
1133
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1143
1134
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -1146,7 +1137,7 @@ declare const VSnackbar: {
|
|
1146
1137
|
globalTop: Readonly<Ref<boolean, boolean>>;
|
1147
1138
|
localTop: Readonly<Ref<boolean, boolean>>;
|
1148
1139
|
updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
1149
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "
|
1140
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "transition" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
|
1150
1141
|
_allExposed: {
|
1151
1142
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1152
1143
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
@@ -1166,7 +1157,7 @@ declare const VSnackbar: {
|
|
1166
1157
|
origin: "auto" | Anchor | "overlap";
|
1167
1158
|
transition: string | boolean | (vue.TransitionProps & {
|
1168
1159
|
component?: vue.Component;
|
1169
|
-
});
|
1160
|
+
}) | null;
|
1170
1161
|
zIndex: string | number;
|
1171
1162
|
style: vue.StyleValue;
|
1172
1163
|
eager: boolean;
|
@@ -1209,7 +1200,7 @@ declare const VSnackbar: {
|
|
1209
1200
|
origin: "auto" | Anchor | "overlap";
|
1210
1201
|
transition: string | boolean | (vue.TransitionProps & {
|
1211
1202
|
component?: vue.Component;
|
1212
|
-
});
|
1203
|
+
}) | null;
|
1213
1204
|
zIndex: string | number;
|
1214
1205
|
style: vue.StyleValue;
|
1215
1206
|
eager: boolean;
|
@@ -1292,9 +1283,6 @@ declare const VSnackbar: {
|
|
1292
1283
|
absolute: boolean;
|
1293
1284
|
location: Anchor;
|
1294
1285
|
origin: "auto" | Anchor | "overlap";
|
1295
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1296
|
-
component?: vue.Component;
|
1297
|
-
});
|
1298
1286
|
zIndex: string | number;
|
1299
1287
|
style: vue.StyleValue;
|
1300
1288
|
eager: boolean;
|
@@ -1317,9 +1305,6 @@ declare const VSnackbar: {
|
|
1317
1305
|
absolute: boolean;
|
1318
1306
|
location: Anchor;
|
1319
1307
|
origin: "auto" | Anchor | "overlap";
|
1320
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1321
|
-
component?: vue.Component;
|
1322
|
-
});
|
1323
1308
|
zIndex: string | number;
|
1324
1309
|
style: vue.StyleValue;
|
1325
1310
|
eager: boolean;
|
@@ -1344,6 +1329,9 @@ declare const VSnackbar: {
|
|
1344
1329
|
minHeight?: string | number | undefined;
|
1345
1330
|
minWidth?: string | number | undefined;
|
1346
1331
|
opacity?: string | number | undefined;
|
1332
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
1333
|
+
component?: vue.Component;
|
1334
|
+
}) | null | undefined;
|
1347
1335
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
1348
1336
|
class?: any;
|
1349
1337
|
theme?: string | undefined;
|
@@ -1390,7 +1378,7 @@ declare const VSnackbar: {
|
|
1390
1378
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1391
1379
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1392
1380
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1393
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "
|
1381
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
1394
1382
|
$attrs: {
|
1395
1383
|
[x: string]: unknown;
|
1396
1384
|
};
|
@@ -1416,9 +1404,6 @@ declare const VSnackbar: {
|
|
1416
1404
|
absolute: boolean;
|
1417
1405
|
location: Anchor;
|
1418
1406
|
origin: "auto" | Anchor | "overlap";
|
1419
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1420
|
-
component?: vue.Component;
|
1421
|
-
});
|
1422
1407
|
zIndex: string | number;
|
1423
1408
|
style: vue.StyleValue;
|
1424
1409
|
eager: boolean;
|
@@ -1444,6 +1429,9 @@ declare const VSnackbar: {
|
|
1444
1429
|
minHeight?: string | number | undefined;
|
1445
1430
|
minWidth?: string | number | undefined;
|
1446
1431
|
opacity?: string | number | undefined;
|
1432
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
1433
|
+
component?: vue.Component;
|
1434
|
+
}) | null | undefined;
|
1447
1435
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
1448
1436
|
class?: any;
|
1449
1437
|
theme?: string | undefined;
|
@@ -1512,9 +1500,6 @@ declare const VSnackbar: {
|
|
1512
1500
|
absolute: boolean;
|
1513
1501
|
location: Anchor;
|
1514
1502
|
origin: "auto" | Anchor | "overlap";
|
1515
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1516
|
-
component?: vue.Component;
|
1517
|
-
});
|
1518
1503
|
zIndex: string | number;
|
1519
1504
|
style: vue.StyleValue;
|
1520
1505
|
eager: boolean;
|
@@ -1566,9 +1551,6 @@ declare const VSnackbar: {
|
|
1566
1551
|
absolute: boolean;
|
1567
1552
|
location: Anchor;
|
1568
1553
|
origin: "auto" | Anchor | "overlap";
|
1569
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1570
|
-
component?: vue.Component;
|
1571
|
-
});
|
1572
1554
|
zIndex: string | number;
|
1573
1555
|
style: vue.StyleValue;
|
1574
1556
|
eager: boolean;
|
@@ -1591,9 +1573,6 @@ declare const VSnackbar: {
|
|
1591
1573
|
absolute: boolean;
|
1592
1574
|
location: Anchor;
|
1593
1575
|
origin: "auto" | Anchor | "overlap";
|
1594
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1595
|
-
component?: vue.Component;
|
1596
|
-
});
|
1597
1576
|
zIndex: string | number;
|
1598
1577
|
style: vue.StyleValue;
|
1599
1578
|
eager: boolean;
|
@@ -1619,6 +1598,9 @@ declare const VSnackbar: {
|
|
1619
1598
|
minHeight?: string | number | undefined;
|
1620
1599
|
minWidth?: string | number | undefined;
|
1621
1600
|
opacity?: string | number | undefined;
|
1601
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
1602
|
+
component?: vue.Component;
|
1603
|
+
}) | null | undefined;
|
1622
1604
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
1623
1605
|
class?: any;
|
1624
1606
|
theme?: string | undefined;
|
@@ -1668,7 +1650,7 @@ declare const VSnackbar: {
|
|
1668
1650
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1669
1651
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1670
1652
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1671
|
-
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "
|
1653
|
+
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
1672
1654
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1673
1655
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1674
1656
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -1677,7 +1659,7 @@ declare const VSnackbar: {
|
|
1677
1659
|
globalTop: Readonly<Ref<boolean, boolean>>;
|
1678
1660
|
localTop: Readonly<Ref<boolean, boolean>>;
|
1679
1661
|
updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
1680
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "
|
1662
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "transition" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
|
1681
1663
|
_allExposed: {
|
1682
1664
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1683
1665
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
@@ -1695,7 +1677,7 @@ declare const VSnackbar: {
|
|
1695
1677
|
origin: "auto" | Anchor | "overlap";
|
1696
1678
|
transition: string | boolean | (vue.TransitionProps & {
|
1697
1679
|
component?: vue.Component;
|
1698
|
-
});
|
1680
|
+
}) | null;
|
1699
1681
|
zIndex: string | number;
|
1700
1682
|
style: vue.StyleValue;
|
1701
1683
|
eager: boolean;
|
@@ -1725,7 +1707,7 @@ declare const VSnackbar: {
|
|
1725
1707
|
origin: "auto" | Anchor | "overlap";
|
1726
1708
|
transition: string | boolean | (vue.TransitionProps & {
|
1727
1709
|
component?: vue.Component;
|
1728
|
-
});
|
1710
|
+
}) | null;
|
1729
1711
|
zIndex: string | number;
|
1730
1712
|
style: vue.StyleValue;
|
1731
1713
|
eager: boolean;
|
@@ -1808,9 +1790,6 @@ declare const VSnackbar: {
|
|
1808
1790
|
absolute: boolean;
|
1809
1791
|
location: Anchor;
|
1810
1792
|
origin: "auto" | Anchor | "overlap";
|
1811
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1812
|
-
component?: vue.Component;
|
1813
|
-
});
|
1814
1793
|
zIndex: string | number;
|
1815
1794
|
style: vue.StyleValue;
|
1816
1795
|
eager: boolean;
|
@@ -1833,9 +1812,6 @@ declare const VSnackbar: {
|
|
1833
1812
|
absolute: boolean;
|
1834
1813
|
location: Anchor;
|
1835
1814
|
origin: "auto" | Anchor | "overlap";
|
1836
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1837
|
-
component?: vue.Component;
|
1838
|
-
});
|
1839
1815
|
zIndex: string | number;
|
1840
1816
|
style: vue.StyleValue;
|
1841
1817
|
eager: boolean;
|
@@ -1860,6 +1836,9 @@ declare const VSnackbar: {
|
|
1860
1836
|
minHeight?: string | number | undefined;
|
1861
1837
|
minWidth?: string | number | undefined;
|
1862
1838
|
opacity?: string | number | undefined;
|
1839
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
1840
|
+
component?: vue.Component;
|
1841
|
+
}) | null | undefined;
|
1863
1842
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
1864
1843
|
class?: any;
|
1865
1844
|
theme?: string | undefined;
|
@@ -1906,7 +1885,7 @@ declare const VSnackbar: {
|
|
1906
1885
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1907
1886
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1908
1887
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1909
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "
|
1888
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
1910
1889
|
$attrs: {
|
1911
1890
|
[x: string]: unknown;
|
1912
1891
|
};
|
@@ -1932,9 +1911,6 @@ declare const VSnackbar: {
|
|
1932
1911
|
absolute: boolean;
|
1933
1912
|
location: Anchor;
|
1934
1913
|
origin: "auto" | Anchor | "overlap";
|
1935
|
-
transition: string | boolean | (vue.TransitionProps & {
|
1936
|
-
component?: vue.Component;
|
1937
|
-
});
|
1938
1914
|
zIndex: string | number;
|
1939
1915
|
style: vue.StyleValue;
|
1940
1916
|
eager: boolean;
|
@@ -1960,6 +1936,9 @@ declare const VSnackbar: {
|
|
1960
1936
|
minHeight?: string | number | undefined;
|
1961
1937
|
minWidth?: string | number | undefined;
|
1962
1938
|
opacity?: string | number | undefined;
|
1939
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
1940
|
+
component?: vue.Component;
|
1941
|
+
}) | null | undefined;
|
1963
1942
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
1964
1943
|
class?: any;
|
1965
1944
|
theme?: string | undefined;
|
@@ -2028,9 +2007,6 @@ declare const VSnackbar: {
|
|
2028
2007
|
absolute: boolean;
|
2029
2008
|
location: Anchor;
|
2030
2009
|
origin: "auto" | Anchor | "overlap";
|
2031
|
-
transition: string | boolean | (vue.TransitionProps & {
|
2032
|
-
component?: vue.Component;
|
2033
|
-
});
|
2034
2010
|
zIndex: string | number;
|
2035
2011
|
style: vue.StyleValue;
|
2036
2012
|
eager: boolean;
|
@@ -2082,9 +2058,6 @@ declare const VSnackbar: {
|
|
2082
2058
|
absolute: boolean;
|
2083
2059
|
location: Anchor;
|
2084
2060
|
origin: "auto" | Anchor | "overlap";
|
2085
|
-
transition: string | boolean | (vue.TransitionProps & {
|
2086
|
-
component?: vue.Component;
|
2087
|
-
});
|
2088
2061
|
zIndex: string | number;
|
2089
2062
|
style: vue.StyleValue;
|
2090
2063
|
eager: boolean;
|
@@ -2107,9 +2080,6 @@ declare const VSnackbar: {
|
|
2107
2080
|
absolute: boolean;
|
2108
2081
|
location: Anchor;
|
2109
2082
|
origin: "auto" | Anchor | "overlap";
|
2110
|
-
transition: string | boolean | (vue.TransitionProps & {
|
2111
|
-
component?: vue.Component;
|
2112
|
-
});
|
2113
2083
|
zIndex: string | number;
|
2114
2084
|
style: vue.StyleValue;
|
2115
2085
|
eager: boolean;
|
@@ -2135,6 +2105,9 @@ declare const VSnackbar: {
|
|
2135
2105
|
minHeight?: string | number | undefined;
|
2136
2106
|
minWidth?: string | number | undefined;
|
2137
2107
|
opacity?: string | number | undefined;
|
2108
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
2109
|
+
component?: vue.Component;
|
2110
|
+
}) | null | undefined;
|
2138
2111
|
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
2139
2112
|
class?: any;
|
2140
2113
|
theme?: string | undefined;
|
@@ -2184,7 +2157,7 @@ declare const VSnackbar: {
|
|
2184
2157
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
2185
2158
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
2186
2159
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
2187
|
-
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "
|
2160
|
+
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
2188
2161
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
2189
2162
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
2190
2163
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -2193,7 +2166,7 @@ declare const VSnackbar: {
|
|
2193
2166
|
globalTop: Readonly<Ref<boolean, boolean>>;
|
2194
2167
|
localTop: Readonly<Ref<boolean, boolean>>;
|
2195
2168
|
updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
2196
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "
|
2169
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "transition" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof vue.VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
|
2197
2170
|
_allExposed: {
|
2198
2171
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
2199
2172
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
@@ -2213,7 +2186,7 @@ declare const VSnackbar: {
|
|
2213
2186
|
origin: "auto" | Anchor | "overlap";
|
2214
2187
|
transition: string | boolean | (vue.TransitionProps & {
|
2215
2188
|
component?: vue.Component;
|
2216
|
-
});
|
2189
|
+
}) | null;
|
2217
2190
|
zIndex: string | number;
|
2218
2191
|
style: vue.StyleValue;
|
2219
2192
|
eager: boolean;
|
@@ -2260,19 +2233,13 @@ declare const VSnackbar: {
|
|
2260
2233
|
minHeight: (StringConstructor | NumberConstructor)[];
|
2261
2234
|
minWidth: (StringConstructor | NumberConstructor)[];
|
2262
2235
|
opacity: (StringConstructor | NumberConstructor)[];
|
2263
|
-
transition:
|
2264
|
-
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
2265
|
-
component?: vue.Component;
|
2266
|
-
})>;
|
2267
|
-
default: string;
|
2268
|
-
validator: (val: unknown) => boolean;
|
2269
|
-
}, "type" | "default"> & {
|
2236
|
+
transition: {
|
2270
2237
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
2271
2238
|
component?: vue.Component;
|
2272
|
-
})>;
|
2239
|
+
}) | null>;
|
2273
2240
|
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
2274
2241
|
component?: vue.Component;
|
2275
|
-
})>;
|
2242
|
+
}) | null>;
|
2276
2243
|
};
|
2277
2244
|
zIndex: {
|
2278
2245
|
type: (StringConstructor | NumberConstructor)[];
|
@@ -2359,19 +2326,13 @@ declare const VSnackbar: {
|
|
2359
2326
|
minHeight: (StringConstructor | NumberConstructor)[];
|
2360
2327
|
minWidth: (StringConstructor | NumberConstructor)[];
|
2361
2328
|
opacity: (StringConstructor | NumberConstructor)[];
|
2362
|
-
transition:
|
2329
|
+
transition: {
|
2363
2330
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
2364
2331
|
component?: vue.Component;
|
2365
|
-
})>;
|
2366
|
-
default: string;
|
2367
|
-
validator: (val: unknown) => boolean;
|
2368
|
-
}, "type" | "default"> & {
|
2369
|
-
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
2370
|
-
component?: vue.Component;
|
2371
|
-
})>;
|
2332
|
+
}) | null>;
|
2372
2333
|
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
2373
2334
|
component?: vue.Component;
|
2374
|
-
})>;
|
2335
|
+
}) | null>;
|
2375
2336
|
};
|
2376
2337
|
zIndex: {
|
2377
2338
|
type: (StringConstructor | NumberConstructor)[];
|
@@ -2576,40 +2537,38 @@ declare module 'vue' {
|
|
2576
2537
|
$children?: VNodeChild
|
2577
2538
|
}
|
2578
2539
|
export interface GlobalComponents {
|
2540
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
2541
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2542
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2579
2543
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2580
2544
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2581
2545
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2582
|
-
|
2583
|
-
VApp: typeof import('vuetify/components')['VApp']
|
2584
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
2585
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2546
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2586
2547
|
VBadge: typeof import('vuetify/components')['VBadge']
|
2587
|
-
|
2548
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2588
2549
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2589
2550
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2590
2551
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2552
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2553
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2591
2554
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2592
2555
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2593
2556
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2594
|
-
|
2557
|
+
VApp: typeof import('vuetify/components')['VApp']
|
2558
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2559
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2560
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2561
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2595
2562
|
VCard: typeof import('vuetify/components')['VCard']
|
2596
2563
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2597
2564
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2598
2565
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2599
2566
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2600
2567
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2601
|
-
|
2602
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2603
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
2604
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2605
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2568
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2606
2569
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2607
2570
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2608
2571
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2609
|
-
VChip: typeof import('vuetify/components')['VChip']
|
2610
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2611
|
-
VCode: typeof import('vuetify/components')['VCode']
|
2612
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
2613
2572
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2614
2573
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2615
2574
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
@@ -2618,7 +2577,9 @@ declare module 'vue' {
|
|
2618
2577
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2619
2578
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2620
2579
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2621
|
-
|
2580
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2581
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2582
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2622
2583
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2623
2584
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2624
2585
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
@@ -2627,15 +2588,16 @@ declare module 'vue' {
|
|
2627
2588
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2628
2589
|
VDialog: typeof import('vuetify/components')['VDialog']
|
2629
2590
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2630
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2631
2591
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2632
2592
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2633
2593
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2634
2594
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2595
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2596
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2635
2597
|
VFooter: typeof import('vuetify/components')['VFooter']
|
2598
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2636
2599
|
VField: typeof import('vuetify/components')['VField']
|
2637
2600
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2638
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2639
2601
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2640
2602
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2641
2603
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
@@ -2643,8 +2605,9 @@ declare module 'vue' {
|
|
2643
2605
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2644
2606
|
VImg: typeof import('vuetify/components')['VImg']
|
2645
2607
|
VInput: typeof import('vuetify/components')['VInput']
|
2646
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
2647
2608
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2609
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
2610
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2648
2611
|
VList: typeof import('vuetify/components')['VList']
|
2649
2612
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2650
2613
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2656,54 +2619,51 @@ declare module 'vue' {
|
|
2656
2619
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2657
2620
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2658
2621
|
VItem: typeof import('vuetify/components')['VItem']
|
2659
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
2660
2622
|
VMenu: typeof import('vuetify/components')['VMenu']
|
2661
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
2662
|
-
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2663
2623
|
VMain: typeof import('vuetify/components')['VMain']
|
2664
|
-
|
2624
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2625
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
2665
2626
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2627
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2628
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2666
2629
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2667
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2668
2630
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2669
|
-
VRating: typeof import('vuetify/components')['VRating']
|
2670
2631
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2632
|
+
VRating: typeof import('vuetify/components')['VRating']
|
2671
2633
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2672
|
-
|
2634
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2673
2635
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2674
2636
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2675
|
-
|
2676
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
2677
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2637
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2678
2638
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2639
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2640
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2679
2641
|
VSlider: typeof import('vuetify/components')['VSlider']
|
2680
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2681
2642
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2643
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2682
2644
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2683
2645
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2684
2646
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2685
2647
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2686
2648
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2687
2649
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2688
|
-
VTable: typeof import('vuetify/components')['VTable']
|
2689
2650
|
VTab: typeof import('vuetify/components')['VTab']
|
2690
2651
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2691
2652
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2692
2653
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2654
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2693
2655
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2694
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2695
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
2696
2656
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2697
2657
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2698
2658
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2659
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2660
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
2699
2661
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2700
2662
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2701
2663
|
VWindow: typeof import('vuetify/components')['VWindow']
|
2702
2664
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2703
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2704
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2705
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2706
2665
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2666
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2707
2667
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2708
2668
|
VForm: typeof import('vuetify/components')['VForm']
|
2709
2669
|
VContainer: typeof import('vuetify/components')['VContainer']
|
@@ -2713,14 +2673,15 @@ declare module 'vue' {
|
|
2713
2673
|
VHover: typeof import('vuetify/components')['VHover']
|
2714
2674
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2715
2675
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2716
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
2717
2676
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2718
|
-
|
2677
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2719
2678
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2679
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
2720
2680
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2721
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2722
2681
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2682
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2723
2683
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2684
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
2724
2685
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2725
2686
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2726
2687
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
@@ -2742,26 +2703,26 @@ declare module 'vue' {
|
|
2742
2703
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2743
2704
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2744
2705
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2745
|
-
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2746
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2747
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2748
2706
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2749
2707
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2750
2708
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2751
2709
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2752
2710
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2753
2711
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2712
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2713
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2714
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2754
2715
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2755
2716
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2756
2717
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2757
2718
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2758
2719
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2759
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2760
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2761
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2762
2720
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2763
2721
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2764
2722
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2723
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2724
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2725
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2765
2726
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2766
2727
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2767
2728
|
}
|