@vuetify/nightly 3.8.3-dev.2025-04-29 → 3.8.3-master.2025-04-30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/CHANGELOG.md +8 -17
  2. package/dist/json/attributes.json +2876 -2884
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +130 -130
  5. package/dist/json/tags.json +0 -2
  6. package/dist/json/web-types.json +5265 -5285
  7. package/dist/vuetify-labs.cjs +47 -124
  8. package/dist/vuetify-labs.css +3531 -3554
  9. package/dist/vuetify-labs.d.ts +4036 -905
  10. package/dist/vuetify-labs.esm.js +48 -125
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +47 -124
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +47 -124
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +5454 -5477
  17. package/dist/vuetify.d.ts +4036 -905
  18. package/dist/vuetify.esm.js +48 -125
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +47 -124
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +1173 -1179
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.d.ts +792 -74
  26. package/lib/components/VBadge/VBadge.d.ts +22 -46
  27. package/lib/components/VBottomSheet/VBottomSheet.d.ts +1434 -80
  28. package/lib/components/VBtnGroup/VBtnGroup.css +7 -30
  29. package/lib/components/VBtnGroup/VBtnGroup.d.ts +32 -58
  30. package/lib/components/VBtnGroup/VBtnGroup.js +3 -7
  31. package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
  32. package/lib/components/VBtnGroup/VBtnGroup.sass +17 -44
  33. package/lib/components/VBtnToggle/VBtnToggle.d.ts +0 -25
  34. package/lib/components/VCombobox/VCombobox.d.ts +792 -74
  35. package/lib/components/VCounter/VCounter.d.ts +22 -46
  36. package/lib/components/VDataIterator/VDataIterator.d.ts +22 -46
  37. package/lib/components/VDialog/VDialog.d.ts +1048 -146
  38. package/lib/components/VDialog/VDialog.js.map +1 -1
  39. package/lib/components/VFab/VFab.d.ts +22 -46
  40. package/lib/components/VImg/VImg.d.ts +22 -49
  41. package/lib/components/VInput/VInput.d.ts +1 -1
  42. package/lib/components/VLazy/VLazy.d.ts +22 -46
  43. package/lib/components/VMenu/VMenu.d.ts +1048 -146
  44. package/lib/components/VMenu/VMenu.js.map +1 -1
  45. package/lib/components/VMessages/VMessages.d.ts +22 -46
  46. package/lib/components/VOverlay/VOverlay.css +1 -1
  47. package/lib/components/VOverlay/VOverlay.d.ts +22 -49
  48. package/lib/components/VOverlay/_variables.scss +1 -1
  49. package/lib/components/VSelect/VSelect.d.ts +1232 -90
  50. package/lib/components/VSnackbar/VSnackbar.d.ts +58 -109
  51. package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +22 -46
  52. package/lib/components/VSpeedDial/VSpeedDial.d.ts +1434 -80
  53. package/lib/components/VTooltip/VTooltip.d.ts +58 -109
  54. package/lib/components/VTooltip/VTooltip.js +2 -2
  55. package/lib/components/VTooltip/VTooltip.js.map +1 -1
  56. package/lib/composables/calendar.d.ts +0 -1
  57. package/lib/composables/calendar.js.map +1 -1
  58. package/lib/composables/theme.d.ts +1 -6
  59. package/lib/composables/theme.js +26 -94
  60. package/lib/composables/theme.js.map +1 -1
  61. package/lib/composables/transition.d.ts +10 -20
  62. package/lib/composables/transition.js +15 -12
  63. package/lib/composables/transition.js.map +1 -1
  64. package/lib/composables/virtual.js +1 -6
  65. package/lib/composables/virtual.js.map +1 -1
  66. package/lib/entry-bundler.js +1 -1
  67. package/lib/entry-bundler.js.map +1 -1
  68. package/lib/framework.d.ts +98 -142
  69. package/lib/framework.js +1 -1
  70. package/lib/framework.js.map +1 -1
  71. package/lib/util/globals.d.ts +0 -1
  72. package/lib/util/globals.js +0 -1
  73. package/lib/util/globals.js.map +1 -1
  74. package/package.json +1 -1
@@ -147,12 +147,11 @@ type DeepPartial<T> = T extends object ? {
147
147
  } : T;
148
148
  type ThemeOptions = false | {
149
149
  cspNonce?: string;
150
- defaultTheme?: 'light' | 'dark' | 'system' | string;
150
+ defaultTheme?: string;
151
151
  variations?: false | VariationsOptions;
152
152
  themes?: Record<string, ThemeDefinition>;
153
153
  stylesheetId?: string;
154
154
  scope?: string;
155
- unimportant?: boolean;
156
155
  };
157
156
  type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
158
157
  interface VariationsOptions {
@@ -189,15 +188,11 @@ interface OnColors {
189
188
  'on-info': string;
190
189
  }
191
190
  interface ThemeInstance {
192
- change: (themeName: string) => void;
193
- cycle: (themeArray?: string[]) => void;
194
- toggle: (themeArray?: [string, string]) => void;
195
191
  readonly isDisabled: boolean;
196
192
  readonly themes: Ref<Record<string, InternalThemeDefinition>>;
197
193
  readonly name: Readonly<Ref<string>>;
198
194
  readonly current: DeepReadonly<Ref<InternalThemeDefinition>>;
199
195
  readonly computedThemes: DeepReadonly<Ref<Record<string, InternalThemeDefinition>>>;
200
- readonly prefix: string;
201
196
  readonly themeClasses: Readonly<Ref<string | undefined>>;
202
197
  readonly styles: Readonly<Ref<string>>;
203
198
  readonly global: {
@@ -683,7 +678,7 @@ declare const VSnackbar: {
683
678
  origin: "auto" | Anchor | "overlap";
684
679
  transition: string | boolean | (vue.TransitionProps & {
685
680
  component?: vue.Component;
686
- });
681
+ }) | null;
687
682
  zIndex: string | number;
688
683
  style: vue.StyleValue;
689
684
  eager: boolean;
@@ -766,9 +761,6 @@ declare const VSnackbar: {
766
761
  absolute: boolean;
767
762
  location: Anchor;
768
763
  origin: "auto" | Anchor | "overlap";
769
- transition: string | boolean | (vue.TransitionProps & {
770
- component?: vue.Component;
771
- });
772
764
  zIndex: string | number;
773
765
  style: vue.StyleValue;
774
766
  eager: boolean;
@@ -791,9 +783,6 @@ declare const VSnackbar: {
791
783
  absolute: boolean;
792
784
  location: Anchor;
793
785
  origin: "auto" | Anchor | "overlap";
794
- transition: string | boolean | (vue.TransitionProps & {
795
- component?: vue.Component;
796
- });
797
786
  zIndex: string | number;
798
787
  style: vue.StyleValue;
799
788
  eager: boolean;
@@ -818,6 +807,9 @@ declare const VSnackbar: {
818
807
  minHeight?: string | number | undefined;
819
808
  minWidth?: string | number | undefined;
820
809
  opacity?: string | number | undefined;
810
+ transition?: string | boolean | (vue.TransitionProps & {
811
+ component?: vue.Component;
812
+ }) | null | undefined;
821
813
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
822
814
  class?: any;
823
815
  theme?: string | undefined;
@@ -864,7 +856,7 @@ declare const VSnackbar: {
864
856
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
865
857
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
866
858
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
867
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
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">;
868
860
  $attrs: {
869
861
  [x: string]: unknown;
870
862
  };
@@ -890,9 +882,6 @@ declare const VSnackbar: {
890
882
  absolute: boolean;
891
883
  location: Anchor;
892
884
  origin: "auto" | Anchor | "overlap";
893
- transition: string | boolean | (vue.TransitionProps & {
894
- component?: vue.Component;
895
- });
896
885
  zIndex: string | number;
897
886
  style: vue.StyleValue;
898
887
  eager: boolean;
@@ -918,6 +907,9 @@ declare const VSnackbar: {
918
907
  minHeight?: string | number | undefined;
919
908
  minWidth?: string | number | undefined;
920
909
  opacity?: string | number | undefined;
910
+ transition?: string | boolean | (vue.TransitionProps & {
911
+ component?: vue.Component;
912
+ }) | null | undefined;
921
913
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
922
914
  class?: any;
923
915
  theme?: string | undefined;
@@ -986,9 +978,6 @@ declare const VSnackbar: {
986
978
  absolute: boolean;
987
979
  location: Anchor;
988
980
  origin: "auto" | Anchor | "overlap";
989
- transition: string | boolean | (vue.TransitionProps & {
990
- component?: vue.Component;
991
- });
992
981
  zIndex: string | number;
993
982
  style: vue.StyleValue;
994
983
  eager: boolean;
@@ -1040,9 +1029,6 @@ declare const VSnackbar: {
1040
1029
  absolute: boolean;
1041
1030
  location: Anchor;
1042
1031
  origin: "auto" | Anchor | "overlap";
1043
- transition: string | boolean | (vue.TransitionProps & {
1044
- component?: vue.Component;
1045
- });
1046
1032
  zIndex: string | number;
1047
1033
  style: vue.StyleValue;
1048
1034
  eager: boolean;
@@ -1065,9 +1051,6 @@ declare const VSnackbar: {
1065
1051
  absolute: boolean;
1066
1052
  location: Anchor;
1067
1053
  origin: "auto" | Anchor | "overlap";
1068
- transition: string | boolean | (vue.TransitionProps & {
1069
- component?: vue.Component;
1070
- });
1071
1054
  zIndex: string | number;
1072
1055
  style: vue.StyleValue;
1073
1056
  eager: boolean;
@@ -1093,6 +1076,9 @@ declare const VSnackbar: {
1093
1076
  minHeight?: string | number | undefined;
1094
1077
  minWidth?: string | number | undefined;
1095
1078
  opacity?: string | number | undefined;
1079
+ transition?: string | boolean | (vue.TransitionProps & {
1080
+ component?: vue.Component;
1081
+ }) | null | undefined;
1096
1082
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1097
1083
  class?: any;
1098
1084
  theme?: string | undefined;
@@ -1142,7 +1128,7 @@ declare const VSnackbar: {
1142
1128
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1143
1129
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1144
1130
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1145
- }, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "transition" | "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<{
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<{
1146
1132
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1147
1133
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1148
1134
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1151,7 +1137,7 @@ declare const VSnackbar: {
1151
1137
  globalTop: Readonly<Ref<boolean, boolean>>;
1152
1138
  localTop: Readonly<Ref<boolean, boolean>>;
1153
1139
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
1154
- }> & {} & 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" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
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}`> & {
1155
1141
  _allExposed: {
1156
1142
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1157
1143
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -1171,7 +1157,7 @@ declare const VSnackbar: {
1171
1157
  origin: "auto" | Anchor | "overlap";
1172
1158
  transition: string | boolean | (vue.TransitionProps & {
1173
1159
  component?: vue.Component;
1174
- });
1160
+ }) | null;
1175
1161
  zIndex: string | number;
1176
1162
  style: vue.StyleValue;
1177
1163
  eager: boolean;
@@ -1214,7 +1200,7 @@ declare const VSnackbar: {
1214
1200
  origin: "auto" | Anchor | "overlap";
1215
1201
  transition: string | boolean | (vue.TransitionProps & {
1216
1202
  component?: vue.Component;
1217
- });
1203
+ }) | null;
1218
1204
  zIndex: string | number;
1219
1205
  style: vue.StyleValue;
1220
1206
  eager: boolean;
@@ -1297,9 +1283,6 @@ declare const VSnackbar: {
1297
1283
  absolute: boolean;
1298
1284
  location: Anchor;
1299
1285
  origin: "auto" | Anchor | "overlap";
1300
- transition: string | boolean | (vue.TransitionProps & {
1301
- component?: vue.Component;
1302
- });
1303
1286
  zIndex: string | number;
1304
1287
  style: vue.StyleValue;
1305
1288
  eager: boolean;
@@ -1322,9 +1305,6 @@ declare const VSnackbar: {
1322
1305
  absolute: boolean;
1323
1306
  location: Anchor;
1324
1307
  origin: "auto" | Anchor | "overlap";
1325
- transition: string | boolean | (vue.TransitionProps & {
1326
- component?: vue.Component;
1327
- });
1328
1308
  zIndex: string | number;
1329
1309
  style: vue.StyleValue;
1330
1310
  eager: boolean;
@@ -1349,6 +1329,9 @@ declare const VSnackbar: {
1349
1329
  minHeight?: string | number | undefined;
1350
1330
  minWidth?: string | number | undefined;
1351
1331
  opacity?: string | number | undefined;
1332
+ transition?: string | boolean | (vue.TransitionProps & {
1333
+ component?: vue.Component;
1334
+ }) | null | undefined;
1352
1335
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1353
1336
  class?: any;
1354
1337
  theme?: string | undefined;
@@ -1395,7 +1378,7 @@ declare const VSnackbar: {
1395
1378
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1396
1379
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1397
1380
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1398
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
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">;
1399
1382
  $attrs: {
1400
1383
  [x: string]: unknown;
1401
1384
  };
@@ -1421,9 +1404,6 @@ declare const VSnackbar: {
1421
1404
  absolute: boolean;
1422
1405
  location: Anchor;
1423
1406
  origin: "auto" | Anchor | "overlap";
1424
- transition: string | boolean | (vue.TransitionProps & {
1425
- component?: vue.Component;
1426
- });
1427
1407
  zIndex: string | number;
1428
1408
  style: vue.StyleValue;
1429
1409
  eager: boolean;
@@ -1449,6 +1429,9 @@ declare const VSnackbar: {
1449
1429
  minHeight?: string | number | undefined;
1450
1430
  minWidth?: string | number | undefined;
1451
1431
  opacity?: string | number | undefined;
1432
+ transition?: string | boolean | (vue.TransitionProps & {
1433
+ component?: vue.Component;
1434
+ }) | null | undefined;
1452
1435
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1453
1436
  class?: any;
1454
1437
  theme?: string | undefined;
@@ -1517,9 +1500,6 @@ declare const VSnackbar: {
1517
1500
  absolute: boolean;
1518
1501
  location: Anchor;
1519
1502
  origin: "auto" | Anchor | "overlap";
1520
- transition: string | boolean | (vue.TransitionProps & {
1521
- component?: vue.Component;
1522
- });
1523
1503
  zIndex: string | number;
1524
1504
  style: vue.StyleValue;
1525
1505
  eager: boolean;
@@ -1571,9 +1551,6 @@ declare const VSnackbar: {
1571
1551
  absolute: boolean;
1572
1552
  location: Anchor;
1573
1553
  origin: "auto" | Anchor | "overlap";
1574
- transition: string | boolean | (vue.TransitionProps & {
1575
- component?: vue.Component;
1576
- });
1577
1554
  zIndex: string | number;
1578
1555
  style: vue.StyleValue;
1579
1556
  eager: boolean;
@@ -1596,9 +1573,6 @@ declare const VSnackbar: {
1596
1573
  absolute: boolean;
1597
1574
  location: Anchor;
1598
1575
  origin: "auto" | Anchor | "overlap";
1599
- transition: string | boolean | (vue.TransitionProps & {
1600
- component?: vue.Component;
1601
- });
1602
1576
  zIndex: string | number;
1603
1577
  style: vue.StyleValue;
1604
1578
  eager: boolean;
@@ -1624,6 +1598,9 @@ declare const VSnackbar: {
1624
1598
  minHeight?: string | number | undefined;
1625
1599
  minWidth?: string | number | undefined;
1626
1600
  opacity?: string | number | undefined;
1601
+ transition?: string | boolean | (vue.TransitionProps & {
1602
+ component?: vue.Component;
1603
+ }) | null | undefined;
1627
1604
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1628
1605
  class?: any;
1629
1606
  theme?: string | undefined;
@@ -1673,7 +1650,7 @@ declare const VSnackbar: {
1673
1650
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1674
1651
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1675
1652
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1676
- }, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "transition" | "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<{
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<{
1677
1654
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1678
1655
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1679
1656
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1682,7 +1659,7 @@ declare const VSnackbar: {
1682
1659
  globalTop: Readonly<Ref<boolean, boolean>>;
1683
1660
  localTop: Readonly<Ref<boolean, boolean>>;
1684
1661
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
1685
- }> & {} & 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" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
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}`> & {
1686
1663
  _allExposed: {
1687
1664
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
1688
1665
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -1700,7 +1677,7 @@ declare const VSnackbar: {
1700
1677
  origin: "auto" | Anchor | "overlap";
1701
1678
  transition: string | boolean | (vue.TransitionProps & {
1702
1679
  component?: vue.Component;
1703
- });
1680
+ }) | null;
1704
1681
  zIndex: string | number;
1705
1682
  style: vue.StyleValue;
1706
1683
  eager: boolean;
@@ -1730,7 +1707,7 @@ declare const VSnackbar: {
1730
1707
  origin: "auto" | Anchor | "overlap";
1731
1708
  transition: string | boolean | (vue.TransitionProps & {
1732
1709
  component?: vue.Component;
1733
- });
1710
+ }) | null;
1734
1711
  zIndex: string | number;
1735
1712
  style: vue.StyleValue;
1736
1713
  eager: boolean;
@@ -1813,9 +1790,6 @@ declare const VSnackbar: {
1813
1790
  absolute: boolean;
1814
1791
  location: Anchor;
1815
1792
  origin: "auto" | Anchor | "overlap";
1816
- transition: string | boolean | (vue.TransitionProps & {
1817
- component?: vue.Component;
1818
- });
1819
1793
  zIndex: string | number;
1820
1794
  style: vue.StyleValue;
1821
1795
  eager: boolean;
@@ -1838,9 +1812,6 @@ declare const VSnackbar: {
1838
1812
  absolute: boolean;
1839
1813
  location: Anchor;
1840
1814
  origin: "auto" | Anchor | "overlap";
1841
- transition: string | boolean | (vue.TransitionProps & {
1842
- component?: vue.Component;
1843
- });
1844
1815
  zIndex: string | number;
1845
1816
  style: vue.StyleValue;
1846
1817
  eager: boolean;
@@ -1865,6 +1836,9 @@ declare const VSnackbar: {
1865
1836
  minHeight?: string | number | undefined;
1866
1837
  minWidth?: string | number | undefined;
1867
1838
  opacity?: string | number | undefined;
1839
+ transition?: string | boolean | (vue.TransitionProps & {
1840
+ component?: vue.Component;
1841
+ }) | null | undefined;
1868
1842
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1869
1843
  class?: any;
1870
1844
  theme?: string | undefined;
@@ -1911,7 +1885,7 @@ declare const VSnackbar: {
1911
1885
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
1912
1886
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1913
1887
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1914
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
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">;
1915
1889
  $attrs: {
1916
1890
  [x: string]: unknown;
1917
1891
  };
@@ -1937,9 +1911,6 @@ declare const VSnackbar: {
1937
1911
  absolute: boolean;
1938
1912
  location: Anchor;
1939
1913
  origin: "auto" | Anchor | "overlap";
1940
- transition: string | boolean | (vue.TransitionProps & {
1941
- component?: vue.Component;
1942
- });
1943
1914
  zIndex: string | number;
1944
1915
  style: vue.StyleValue;
1945
1916
  eager: boolean;
@@ -1965,6 +1936,9 @@ declare const VSnackbar: {
1965
1936
  minHeight?: string | number | undefined;
1966
1937
  minWidth?: string | number | undefined;
1967
1938
  opacity?: string | number | undefined;
1939
+ transition?: string | boolean | (vue.TransitionProps & {
1940
+ component?: vue.Component;
1941
+ }) | null | undefined;
1968
1942
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
1969
1943
  class?: any;
1970
1944
  theme?: string | undefined;
@@ -2033,9 +2007,6 @@ declare const VSnackbar: {
2033
2007
  absolute: boolean;
2034
2008
  location: Anchor;
2035
2009
  origin: "auto" | Anchor | "overlap";
2036
- transition: string | boolean | (vue.TransitionProps & {
2037
- component?: vue.Component;
2038
- });
2039
2010
  zIndex: string | number;
2040
2011
  style: vue.StyleValue;
2041
2012
  eager: boolean;
@@ -2087,9 +2058,6 @@ declare const VSnackbar: {
2087
2058
  absolute: boolean;
2088
2059
  location: Anchor;
2089
2060
  origin: "auto" | Anchor | "overlap";
2090
- transition: string | boolean | (vue.TransitionProps & {
2091
- component?: vue.Component;
2092
- });
2093
2061
  zIndex: string | number;
2094
2062
  style: vue.StyleValue;
2095
2063
  eager: boolean;
@@ -2112,9 +2080,6 @@ declare const VSnackbar: {
2112
2080
  absolute: boolean;
2113
2081
  location: Anchor;
2114
2082
  origin: "auto" | Anchor | "overlap";
2115
- transition: string | boolean | (vue.TransitionProps & {
2116
- component?: vue.Component;
2117
- });
2118
2083
  zIndex: string | number;
2119
2084
  style: vue.StyleValue;
2120
2085
  eager: boolean;
@@ -2140,6 +2105,9 @@ declare const VSnackbar: {
2140
2105
  minHeight?: string | number | undefined;
2141
2106
  minWidth?: string | number | undefined;
2142
2107
  opacity?: string | number | undefined;
2108
+ transition?: string | boolean | (vue.TransitionProps & {
2109
+ component?: vue.Component;
2110
+ }) | null | undefined;
2143
2111
  target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
2144
2112
  class?: any;
2145
2113
  theme?: string | undefined;
@@ -2189,7 +2157,7 @@ declare const VSnackbar: {
2189
2157
  onKeydown?: ((e: KeyboardEvent) => any) | undefined;
2190
2158
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2191
2159
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
2192
- }, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "transition" | "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<{
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<{
2193
2161
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2194
2162
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2195
2163
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -2198,7 +2166,7 @@ declare const VSnackbar: {
2198
2166
  globalTop: Readonly<Ref<boolean, boolean>>;
2199
2167
  localTop: Readonly<Ref<boolean, boolean>>;
2200
2168
  updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
2201
- }> & {} & 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" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
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}`> & {
2202
2170
  _allExposed: {
2203
2171
  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
2204
2172
  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
@@ -2218,7 +2186,7 @@ declare const VSnackbar: {
2218
2186
  origin: "auto" | Anchor | "overlap";
2219
2187
  transition: string | boolean | (vue.TransitionProps & {
2220
2188
  component?: vue.Component;
2221
- });
2189
+ }) | null;
2222
2190
  zIndex: string | number;
2223
2191
  style: vue.StyleValue;
2224
2192
  eager: boolean;
@@ -2265,19 +2233,13 @@ declare const VSnackbar: {
2265
2233
  minHeight: (StringConstructor | NumberConstructor)[];
2266
2234
  minWidth: (StringConstructor | NumberConstructor)[];
2267
2235
  opacity: (StringConstructor | NumberConstructor)[];
2268
- transition: Omit<{
2236
+ transition: {
2269
2237
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
2270
2238
  component?: vue.Component;
2271
- })>;
2272
- default: string;
2273
- validator: (val: unknown) => boolean;
2274
- }, "type" | "default"> & {
2275
- type: vue.PropType<string | boolean | (vue.TransitionProps & {
2276
- component?: vue.Component;
2277
- })>;
2239
+ }) | null>;
2278
2240
  default: NonNullable<string | boolean | (vue.TransitionProps & {
2279
2241
  component?: vue.Component;
2280
- })>;
2242
+ }) | null>;
2281
2243
  };
2282
2244
  zIndex: {
2283
2245
  type: (StringConstructor | NumberConstructor)[];
@@ -2364,19 +2326,13 @@ declare const VSnackbar: {
2364
2326
  minHeight: (StringConstructor | NumberConstructor)[];
2365
2327
  minWidth: (StringConstructor | NumberConstructor)[];
2366
2328
  opacity: (StringConstructor | NumberConstructor)[];
2367
- transition: Omit<{
2368
- type: vue.PropType<string | boolean | (vue.TransitionProps & {
2369
- component?: vue.Component;
2370
- })>;
2371
- default: string;
2372
- validator: (val: unknown) => boolean;
2373
- }, "type" | "default"> & {
2329
+ transition: {
2374
2330
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
2375
2331
  component?: vue.Component;
2376
- })>;
2332
+ }) | null>;
2377
2333
  default: NonNullable<string | boolean | (vue.TransitionProps & {
2378
2334
  component?: vue.Component;
2379
- })>;
2335
+ }) | null>;
2380
2336
  };
2381
2337
  zIndex: {
2382
2338
  type: (StringConstructor | NumberConstructor)[];
@@ -2589,20 +2545,17 @@ declare module 'vue' {
2589
2545
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2590
2546
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2591
2547
  VAvatar: typeof import('vuetify/components')['VAvatar']
2548
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2592
2549
  VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2550
+ VBadge: typeof import('vuetify/components')['VBadge']
2593
2551
  VBanner: typeof import('vuetify/components')['VBanner']
2594
2552
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
2595
2553
  VBannerText: typeof import('vuetify/components')['VBannerText']
2596
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2597
2554
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2598
2555
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2599
2556
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2600
- VBadge: typeof import('vuetify/components')['VBadge']
2601
- VBtn: typeof import('vuetify/components')['VBtn']
2602
2557
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2603
- VChip: typeof import('vuetify/components')['VChip']
2604
- VCarousel: typeof import('vuetify/components')['VCarousel']
2605
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2558
+ VBtn: typeof import('vuetify/components')['VBtn']
2606
2559
  VCard: typeof import('vuetify/components')['VCard']
2607
2560
  VCardActions: typeof import('vuetify/components')['VCardActions']
2608
2561
  VCardItem: typeof import('vuetify/components')['VCardItem']
@@ -2611,16 +2564,15 @@ declare module 'vue' {
2611
2564
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2612
2565
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
2613
2566
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2614
- VCode: typeof import('vuetify/components')['VCode']
2567
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2568
+ VCarousel: typeof import('vuetify/components')['VCarousel']
2569
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2615
2570
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
2616
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
2617
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
2618
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2619
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2620
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2621
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2622
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2571
+ VCounter: typeof import('vuetify/components')['VCounter']
2572
+ VCode: typeof import('vuetify/components')['VCode']
2623
2573
  VCombobox: typeof import('vuetify/components')['VCombobox']
2574
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
2575
+ VChip: typeof import('vuetify/components')['VChip']
2624
2576
  VDataTable: typeof import('vuetify/components')['VDataTable']
2625
2577
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2626
2578
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -2628,18 +2580,24 @@ declare module 'vue' {
2628
2580
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2629
2581
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2630
2582
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2631
- VDialog: typeof import('vuetify/components')['VDialog']
2583
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
2584
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2585
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2586
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2587
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2588
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2632
2589
  VDivider: typeof import('vuetify/components')['VDivider']
2590
+ VDialog: typeof import('vuetify/components')['VDialog']
2591
+ VFab: typeof import('vuetify/components')['VFab']
2633
2592
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2634
2593
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2635
2594
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2636
2595
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2637
- VCounter: typeof import('vuetify/components')['VCounter']
2638
2596
  VField: typeof import('vuetify/components')['VField']
2639
2597
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2640
- VFab: typeof import('vuetify/components')['VFab']
2641
2598
  VFileInput: typeof import('vuetify/components')['VFileInput']
2642
2599
  VFooter: typeof import('vuetify/components')['VFooter']
2600
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
2643
2601
  VIcon: typeof import('vuetify/components')['VIcon']
2644
2602
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2645
2603
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
@@ -2647,11 +2605,10 @@ declare module 'vue' {
2647
2605
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2648
2606
  VImg: typeof import('vuetify/components')['VImg']
2649
2607
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2650
- VItemGroup: typeof import('vuetify/components')['VItemGroup']
2651
- VItem: typeof import('vuetify/components')['VItem']
2652
2608
  VInput: typeof import('vuetify/components')['VInput']
2653
- VKbd: typeof import('vuetify/components')['VKbd']
2654
2609
  VLabel: typeof import('vuetify/components')['VLabel']
2610
+ VItemGroup: typeof import('vuetify/components')['VItemGroup']
2611
+ VItem: typeof import('vuetify/components')['VItem']
2655
2612
  VList: typeof import('vuetify/components')['VList']
2656
2613
  VListGroup: typeof import('vuetify/components')['VListGroup']
2657
2614
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -2661,63 +2618,64 @@ declare module 'vue' {
2661
2618
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
2662
2619
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2663
2620
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2664
- VMenu: typeof import('vuetify/components')['VMenu']
2621
+ VKbd: typeof import('vuetify/components')['VKbd']
2665
2622
  VMain: typeof import('vuetify/components')['VMain']
2623
+ VMenu: typeof import('vuetify/components')['VMenu']
2666
2624
  VMessages: typeof import('vuetify/components')['VMessages']
2667
2625
  VOverlay: typeof import('vuetify/components')['VOverlay']
2668
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2626
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2627
+ VPagination: typeof import('vuetify/components')['VPagination']
2628
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
2669
2629
  VNumberInput: typeof import('vuetify/components')['VNumberInput']
2630
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2670
2631
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2671
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
2632
+ VRating: typeof import('vuetify/components')['VRating']
2672
2633
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2673
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2674
- VPagination: typeof import('vuetify/components')['VPagination']
2675
2634
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2676
2635
  VSelect: typeof import('vuetify/components')['VSelect']
2677
- VRating: typeof import('vuetify/components')['VRating']
2636
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2678
2637
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2679
2638
  VSheet: typeof import('vuetify/components')['VSheet']
2680
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2681
2639
  VSlider: typeof import('vuetify/components')['VSlider']
2640
+ VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2641
+ VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2642
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
2682
2643
  VStepper: typeof import('vuetify/components')['VStepper']
2683
2644
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2684
2645
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
2685
2646
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
2686
2647
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2687
2648
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2649
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2688
2650
  VSwitch: typeof import('vuetify/components')['VSwitch']
2689
- VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2690
- VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2691
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
2651
+ VTable: typeof import('vuetify/components')['VTable']
2692
2652
  VTab: typeof import('vuetify/components')['VTab']
2693
2653
  VTabs: typeof import('vuetify/components')['VTabs']
2694
2654
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2695
2655
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2696
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2697
- VTextField: typeof import('vuetify/components')['VTextField']
2698
2656
  VTextarea: typeof import('vuetify/components')['VTextarea']
2699
- VTable: typeof import('vuetify/components')['VTable']
2657
+ VTextField: typeof import('vuetify/components')['VTextField']
2658
+ VTimeline: typeof import('vuetify/components')['VTimeline']
2659
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2660
+ VTooltip: typeof import('vuetify/components')['VTooltip']
2700
2661
  VToolbar: typeof import('vuetify/components')['VToolbar']
2701
2662
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2702
2663
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2703
- VTooltip: typeof import('vuetify/components')['VTooltip']
2704
- VTimeline: typeof import('vuetify/components')['VTimeline']
2705
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2706
2664
  VWindow: typeof import('vuetify/components')['VWindow']
2707
2665
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
2708
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
2666
+ VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2709
2667
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
2710
2668
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
2711
- VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2669
+ VForm: typeof import('vuetify/components')['VForm']
2712
2670
  VContainer: typeof import('vuetify/components')['VContainer']
2713
2671
  VCol: typeof import('vuetify/components')['VCol']
2714
2672
  VRow: typeof import('vuetify/components')['VRow']
2715
2673
  VSpacer: typeof import('vuetify/components')['VSpacer']
2716
- VForm: typeof import('vuetify/components')['VForm']
2717
2674
  VHover: typeof import('vuetify/components')['VHover']
2718
2675
  VLayout: typeof import('vuetify/components')['VLayout']
2719
2676
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2720
2677
  VLazy: typeof import('vuetify/components')['VLazy']
2678
+ VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2721
2679
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
2722
2680
  VParallax: typeof import('vuetify/components')['VParallax']
2723
2681
  VRadio: typeof import('vuetify/components')['VRadio']
@@ -2728,7 +2686,6 @@ declare module 'vue' {
2728
2686
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
2729
2687
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2730
2688
  VValidation: typeof import('vuetify/components')['VValidation']
2731
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2732
2689
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2733
2690
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
2734
2691
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
@@ -2746,27 +2703,26 @@ declare module 'vue' {
2746
2703
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
2747
2704
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2748
2705
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2749
- VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2706
+ VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2750
2707
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2751
2708
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2752
2709
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2753
2710
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2754
2711
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2755
2712
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2756
- VPicker: typeof import('vuetify/labs/components')['VPicker']
2757
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2758
- VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2759
2713
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
2760
2714
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
2761
2715
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
2762
- VTreeview: typeof import('vuetify/labs/components')['VTreeview']
2763
- VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
2764
- VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
2716
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2717
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2765
2718
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2766
2719
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2767
2720
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2768
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2769
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2721
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
2722
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2723
+ VTreeview: typeof import('vuetify/labs/components')['VTreeview']
2724
+ VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
2725
+ VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
2770
2726
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2771
2727
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2772
2728
  }