@vuetify/nightly 3.0.4 → 3.0.5-dev-20221212.0

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 (59) hide show
  1. package/CHANGELOG.md +13 -2
  2. package/dist/json/importMap.json +12 -12
  3. package/dist/vuetify.css +65 -66
  4. package/dist/vuetify.d.ts +201 -159
  5. package/dist/vuetify.esm.js +39 -23
  6. package/dist/vuetify.esm.js.map +1 -1
  7. package/dist/vuetify.js +39 -23
  8. package/dist/vuetify.js.map +1 -1
  9. package/dist/vuetify.min.css +2 -2
  10. package/dist/vuetify.min.js +26 -26
  11. package/dist/vuetify.min.js.map +1 -1
  12. package/lib/components/VAlert/index.d.ts +1 -1
  13. package/lib/components/VAutocomplete/index.d.ts +21 -24
  14. package/lib/components/VBtn/index.d.ts +2 -3
  15. package/lib/components/VCard/index.d.ts +2 -3
  16. package/lib/components/VChip/VChip.mjs +1 -1
  17. package/lib/components/VChip/VChip.mjs.map +1 -1
  18. package/lib/components/VChip/index.d.ts +1 -1
  19. package/lib/components/VChipGroup/index.d.ts +1 -1
  20. package/lib/components/VCombobox/index.d.ts +21 -24
  21. package/lib/components/VDialog/index.d.ts +21 -6
  22. package/lib/components/VExpansionPanel/index.d.ts +1 -1
  23. package/lib/components/VField/VField.mjs +1 -1
  24. package/lib/components/VField/VField.mjs.map +1 -1
  25. package/lib/components/VField/index.d.ts +5 -8
  26. package/lib/components/VFileInput/index.d.ts +3 -4
  27. package/lib/components/VMenu/index.d.ts +21 -6
  28. package/lib/components/VOverlay/VOverlay.mjs +5 -2
  29. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  30. package/lib/components/VOverlay/index.d.ts +8 -1
  31. package/lib/components/VPagination/index.d.ts +1 -1
  32. package/lib/components/VSelect/index.d.ts +21 -24
  33. package/lib/components/VSnackbar/index.d.ts +25 -10
  34. package/lib/components/VTabs/VTab.css +1 -2
  35. package/lib/components/VTabs/VTab.sass +4 -3
  36. package/lib/components/VTextField/index.d.ts +20 -29
  37. package/lib/components/VTextarea/index.d.ts +2 -3
  38. package/lib/components/VToolbar/VToolbar.mjs +6 -0
  39. package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
  40. package/lib/components/VTooltip/VTooltip.mjs +2 -1
  41. package/lib/components/VTooltip/VTooltip.mjs.map +1 -1
  42. package/lib/components/VTooltip/index.d.ts +21 -6
  43. package/lib/components/index.d.ts +198 -156
  44. package/lib/composables/loader.mjs +1 -1
  45. package/lib/composables/loader.mjs.map +1 -1
  46. package/lib/composables/stack.mjs +16 -9
  47. package/lib/composables/stack.mjs.map +1 -1
  48. package/lib/composables/validation.mjs +2 -2
  49. package/lib/composables/validation.mjs.map +1 -1
  50. package/lib/entry-bundler.mjs +1 -1
  51. package/lib/entry-bundler.mjs.map +1 -1
  52. package/lib/framework.mjs +1 -1
  53. package/lib/framework.mjs.map +1 -1
  54. package/lib/index.d.ts +3 -3
  55. package/lib/services/goto/util.mjs +1 -1
  56. package/lib/services/goto/util.mjs.map +1 -1
  57. package/lib/util/console.mjs +3 -3
  58. package/lib/util/console.mjs.map +1 -1
  59. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -1141,8 +1141,8 @@ declare const VAlert: vue.DefineComponent<{
1141
1141
  rounded: string | number | boolean;
1142
1142
  prominent: boolean;
1143
1143
  density: Density;
1144
- modelValue: boolean;
1145
1144
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
1145
+ modelValue: boolean;
1146
1146
  closable: boolean;
1147
1147
  closeIcon: IconValue;
1148
1148
  closeLabel: string;
@@ -1486,7 +1486,6 @@ declare const VField: {
1486
1486
  reverse: boolean;
1487
1487
  error: boolean;
1488
1488
  active: boolean;
1489
- loading: boolean;
1490
1489
  disabled: boolean;
1491
1490
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
1492
1491
  clearIcon: IconValue;
@@ -1496,7 +1495,7 @@ declare const VField: {
1496
1495
  persistentClear: boolean;
1497
1496
  singleLine: boolean;
1498
1497
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
1499
- loading: BooleanConstructor;
1498
+ loading: (StringConstructor | BooleanConstructor)[];
1500
1499
  theme: StringConstructor;
1501
1500
  appendInnerIcon: PropType<IconValue>;
1502
1501
  bgColor: StringConstructor;
@@ -1528,7 +1527,7 @@ declare const VField: {
1528
1527
  }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
1529
1528
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1530
1529
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
1531
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
1530
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
1532
1531
  $attrs: {
1533
1532
  [x: string]: unknown;
1534
1533
  };
@@ -1543,7 +1542,7 @@ declare const VField: {
1543
1542
  $emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
1544
1543
  $el: any;
1545
1544
  $options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
1546
- loading: BooleanConstructor;
1545
+ loading: (StringConstructor | BooleanConstructor)[];
1547
1546
  theme: StringConstructor;
1548
1547
  appendInnerIcon: PropType<IconValue>;
1549
1548
  bgColor: StringConstructor;
@@ -1585,7 +1584,6 @@ declare const VField: {
1585
1584
  reverse: boolean;
1586
1585
  error: boolean;
1587
1586
  active: boolean;
1588
- loading: boolean;
1589
1587
  disabled: boolean;
1590
1588
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
1591
1589
  clearIcon: IconValue;
@@ -1615,7 +1613,7 @@ declare const VField: {
1615
1613
  $nextTick: typeof vue.nextTick;
1616
1614
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
1617
1615
  } & Readonly<vue.ExtractPropTypes<Omit<{
1618
- loading: BooleanConstructor;
1616
+ loading: (StringConstructor | BooleanConstructor)[];
1619
1617
  theme: StringConstructor;
1620
1618
  appendInnerIcon: PropType<IconValue>;
1621
1619
  bgColor: StringConstructor;
@@ -1654,7 +1652,7 @@ declare const VField: {
1654
1652
  __isTeleport?: undefined;
1655
1653
  __isSuspense?: undefined;
1656
1654
  } & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
1657
- loading: BooleanConstructor;
1655
+ loading: (StringConstructor | BooleanConstructor)[];
1658
1656
  theme: StringConstructor;
1659
1657
  appendInnerIcon: PropType<IconValue>;
1660
1658
  bgColor: StringConstructor;
@@ -1696,7 +1694,6 @@ declare const VField: {
1696
1694
  reverse: boolean;
1697
1695
  error: boolean;
1698
1696
  active: boolean;
1699
- loading: boolean;
1700
1697
  disabled: boolean;
1701
1698
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
1702
1699
  clearIcon: IconValue;
@@ -1827,7 +1824,6 @@ declare const VAutocomplete: {
1827
1824
  transition: string | boolean | (vue.TransitionProps & {
1828
1825
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
1829
1826
  });
1830
- loading: boolean;
1831
1827
  menu: boolean;
1832
1828
  autofocus: boolean;
1833
1829
  eager: boolean;
@@ -1891,7 +1887,7 @@ declare const VAutocomplete: {
1891
1887
  default: string;
1892
1888
  validator: (v: any) => boolean;
1893
1889
  };
1894
- loading: BooleanConstructor;
1890
+ loading: (StringConstructor | BooleanConstructor)[];
1895
1891
  label: StringConstructor;
1896
1892
  prefix: StringConstructor;
1897
1893
  autofocus: BooleanConstructor;
@@ -1909,15 +1905,15 @@ declare const VAutocomplete: {
1909
1905
  default: string;
1910
1906
  validator: (v: any) => boolean;
1911
1907
  };
1912
- modelValue: {
1913
- type: vue.PropType<any>;
1914
- default: any;
1915
- };
1916
1908
  variant: {
1917
1909
  type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
1918
1910
  default: string;
1919
1911
  validator: (v: any) => boolean;
1920
1912
  };
1913
+ modelValue: {
1914
+ type: vue.PropType<any>;
1915
+ default: any;
1916
+ };
1921
1917
  bgColor: StringConstructor;
1922
1918
  prependIcon: vue.PropType<IconValue>;
1923
1919
  appendIcon: vue.PropType<IconValue>;
@@ -2190,7 +2186,7 @@ declare const VAutocomplete: {
2190
2186
  }, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
2191
2187
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
2192
2188
  "onUpdate:search"?: ((val: any) => any) | undefined;
2193
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "loading" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
2189
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
2194
2190
  $attrs: {
2195
2191
  [x: string]: unknown;
2196
2192
  };
@@ -2234,7 +2230,7 @@ declare const VAutocomplete: {
2234
2230
  default: string;
2235
2231
  validator: (v: any) => boolean;
2236
2232
  };
2237
- loading: BooleanConstructor;
2233
+ loading: (StringConstructor | BooleanConstructor)[];
2238
2234
  label: StringConstructor;
2239
2235
  prefix: StringConstructor;
2240
2236
  autofocus: BooleanConstructor;
@@ -2252,15 +2248,15 @@ declare const VAutocomplete: {
2252
2248
  default: string;
2253
2249
  validator: (v: any) => boolean;
2254
2250
  };
2255
- modelValue: {
2256
- type: vue.PropType<any>;
2257
- default: any;
2258
- };
2259
2251
  variant: {
2260
2252
  type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
2261
2253
  default: string;
2262
2254
  validator: (v: any) => boolean;
2263
2255
  };
2256
+ modelValue: {
2257
+ type: vue.PropType<any>;
2258
+ default: any;
2259
+ };
2264
2260
  bgColor: StringConstructor;
2265
2261
  prependIcon: vue.PropType<IconValue>;
2266
2262
  appendIcon: vue.PropType<IconValue>;
@@ -2560,7 +2556,6 @@ declare const VAutocomplete: {
2560
2556
  transition: string | boolean | (vue.TransitionProps & {
2561
2557
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
2562
2558
  });
2563
- loading: boolean;
2564
2559
  menu: boolean;
2565
2560
  autofocus: boolean;
2566
2561
  eager: boolean;
@@ -2644,7 +2639,7 @@ declare const VAutocomplete: {
2644
2639
  default: string;
2645
2640
  validator: (v: any) => boolean;
2646
2641
  };
2647
- loading: BooleanConstructor;
2642
+ loading: (StringConstructor | BooleanConstructor)[];
2648
2643
  label: StringConstructor;
2649
2644
  prefix: StringConstructor;
2650
2645
  autofocus: BooleanConstructor;
@@ -2662,15 +2657,15 @@ declare const VAutocomplete: {
2662
2657
  default: string;
2663
2658
  validator: (v: any) => boolean;
2664
2659
  };
2665
- modelValue: {
2666
- type: vue.PropType<any>;
2667
- default: any;
2668
- };
2669
2660
  variant: {
2670
2661
  type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
2671
2662
  default: string;
2672
2663
  validator: (v: any) => boolean;
2673
2664
  };
2665
+ modelValue: {
2666
+ type: vue.PropType<any>;
2667
+ default: any;
2668
+ };
2674
2669
  bgColor: StringConstructor;
2675
2670
  prependIcon: vue.PropType<IconValue>;
2676
2671
  appendIcon: vue.PropType<IconValue>;
@@ -2991,7 +2986,7 @@ declare const VAutocomplete: {
2991
2986
  default: string;
2992
2987
  validator: (v: any) => boolean;
2993
2988
  };
2994
- loading: BooleanConstructor;
2989
+ loading: (StringConstructor | BooleanConstructor)[];
2995
2990
  label: StringConstructor;
2996
2991
  prefix: StringConstructor;
2997
2992
  autofocus: BooleanConstructor;
@@ -3009,15 +3004,15 @@ declare const VAutocomplete: {
3009
3004
  default: string;
3010
3005
  validator: (v: any) => boolean;
3011
3006
  };
3012
- modelValue: {
3013
- type: vue.PropType<any>;
3014
- default: any;
3015
- };
3016
3007
  variant: {
3017
3008
  type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
3018
3009
  default: string;
3019
3010
  validator: (v: any) => boolean;
3020
3011
  };
3012
+ modelValue: {
3013
+ type: vue.PropType<any>;
3014
+ default: any;
3015
+ };
3021
3016
  bgColor: StringConstructor;
3022
3017
  prependIcon: vue.PropType<IconValue>;
3023
3018
  appendIcon: vue.PropType<IconValue>;
@@ -3317,7 +3312,6 @@ declare const VAutocomplete: {
3317
3312
  transition: string | boolean | (vue.TransitionProps & {
3318
3313
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
3319
3314
  });
3320
- loading: boolean;
3321
3315
  menu: boolean;
3322
3316
  autofocus: boolean;
3323
3317
  eager: boolean;
@@ -4241,7 +4235,7 @@ declare const VBtn: vue.DefineComponent<{
4241
4235
  validator: (v: any) => boolean;
4242
4236
  };
4243
4237
  location: PropType<Anchor>;
4244
- loading: BooleanConstructor;
4238
+ loading: (StringConstructor | BooleanConstructor)[];
4245
4239
  value: null;
4246
4240
  disabled: BooleanConstructor;
4247
4241
  selectedClass: StringConstructor;
@@ -4318,7 +4312,7 @@ declare const VBtn: vue.DefineComponent<{
4318
4312
  validator: (v: any) => boolean;
4319
4313
  };
4320
4314
  location: PropType<Anchor>;
4321
- loading: BooleanConstructor;
4315
+ loading: (StringConstructor | BooleanConstructor)[];
4322
4316
  value: null;
4323
4317
  disabled: BooleanConstructor;
4324
4318
  selectedClass: StringConstructor;
@@ -4371,7 +4365,6 @@ declare const VBtn: vue.DefineComponent<{
4371
4365
  exact: boolean;
4372
4366
  active: boolean;
4373
4367
  block: boolean;
4374
- loading: boolean;
4375
4368
  disabled: boolean;
4376
4369
  size: string | number;
4377
4370
  tag: string;
@@ -4601,7 +4594,7 @@ declare const VCard: vue.DefineComponent<{
4601
4594
  validator: (v: any) => boolean;
4602
4595
  };
4603
4596
  location: vue.PropType<Anchor>;
4604
- loading: BooleanConstructor;
4597
+ loading: (StringConstructor | BooleanConstructor)[];
4605
4598
  elevation: {
4606
4599
  type: (StringConstructor | NumberConstructor)[];
4607
4600
  validator(v: any): boolean;
@@ -4662,7 +4655,7 @@ declare const VCard: vue.DefineComponent<{
4662
4655
  validator: (v: any) => boolean;
4663
4656
  };
4664
4657
  location: vue.PropType<Anchor>;
4665
- loading: BooleanConstructor;
4658
+ loading: (StringConstructor | BooleanConstructor)[];
4666
4659
  elevation: {
4667
4660
  type: (StringConstructor | NumberConstructor)[];
4668
4661
  validator(v: any): boolean;
@@ -4701,7 +4694,6 @@ declare const VCard: vue.DefineComponent<{
4701
4694
  link: boolean;
4702
4695
  flat: boolean;
4703
4696
  exact: boolean;
4704
- loading: boolean;
4705
4697
  disabled: boolean;
4706
4698
  tag: string;
4707
4699
  rounded: string | number | boolean;
@@ -5331,8 +5323,8 @@ declare const VChip: vue.DefineComponent<{
5331
5323
  tag: string;
5332
5324
  rounded: string | number | boolean;
5333
5325
  density: Density;
5334
- modelValue: boolean;
5335
5326
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
5327
+ modelValue: boolean;
5336
5328
  ripple: boolean;
5337
5329
  closable: boolean;
5338
5330
  closeIcon: IconValue;
@@ -5418,8 +5410,8 @@ declare const VChipGroup: vue.DefineComponent<{
5418
5410
  multiple: boolean;
5419
5411
  tag: string;
5420
5412
  column: boolean;
5421
- modelValue: any;
5422
5413
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
5414
+ modelValue: any;
5423
5415
  selectedClass: string;
5424
5416
  valueComparator: typeof deepEqual;
5425
5417
  }>;
@@ -5570,7 +5562,6 @@ declare const VCombobox: {
5570
5562
  transition: string | boolean | (vue.TransitionProps & {
5571
5563
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
5572
5564
  });
5573
- loading: boolean;
5574
5565
  menu: boolean;
5575
5566
  autofocus: boolean;
5576
5567
  eager: boolean;
@@ -5634,7 +5625,7 @@ declare const VCombobox: {
5634
5625
  default: string;
5635
5626
  validator: (v: any) => boolean;
5636
5627
  };
5637
- loading: BooleanConstructor;
5628
+ loading: (StringConstructor | BooleanConstructor)[];
5638
5629
  label: StringConstructor;
5639
5630
  prefix: StringConstructor;
5640
5631
  autofocus: BooleanConstructor;
@@ -5652,15 +5643,15 @@ declare const VCombobox: {
5652
5643
  default: string;
5653
5644
  validator: (v: any) => boolean;
5654
5645
  };
5655
- modelValue: {
5656
- type: PropType<any>;
5657
- default: any;
5658
- };
5659
5646
  variant: {
5660
5647
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
5661
5648
  default: string;
5662
5649
  validator: (v: any) => boolean;
5663
5650
  };
5651
+ modelValue: {
5652
+ type: PropType<any>;
5653
+ default: any;
5654
+ };
5664
5655
  bgColor: StringConstructor;
5665
5656
  prependIcon: PropType<IconValue>;
5666
5657
  appendIcon: PropType<IconValue>;
@@ -5939,7 +5930,7 @@ declare const VCombobox: {
5939
5930
  }, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
5940
5931
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
5941
5932
  "onUpdate:search"?: ((val: string) => any) | undefined;
5942
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "loading" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
5933
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
5943
5934
  $attrs: {
5944
5935
  [x: string]: unknown;
5945
5936
  };
@@ -5983,7 +5974,7 @@ declare const VCombobox: {
5983
5974
  default: string;
5984
5975
  validator: (v: any) => boolean;
5985
5976
  };
5986
- loading: BooleanConstructor;
5977
+ loading: (StringConstructor | BooleanConstructor)[];
5987
5978
  label: StringConstructor;
5988
5979
  prefix: StringConstructor;
5989
5980
  autofocus: BooleanConstructor;
@@ -6001,15 +5992,15 @@ declare const VCombobox: {
6001
5992
  default: string;
6002
5993
  validator: (v: any) => boolean;
6003
5994
  };
6004
- modelValue: {
6005
- type: PropType<any>;
6006
- default: any;
6007
- };
6008
5995
  variant: {
6009
5996
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
6010
5997
  default: string;
6011
5998
  validator: (v: any) => boolean;
6012
5999
  };
6000
+ modelValue: {
6001
+ type: PropType<any>;
6002
+ default: any;
6003
+ };
6013
6004
  bgColor: StringConstructor;
6014
6005
  prependIcon: PropType<IconValue>;
6015
6006
  appendIcon: PropType<IconValue>;
@@ -6314,7 +6305,6 @@ declare const VCombobox: {
6314
6305
  transition: string | boolean | (vue.TransitionProps & {
6315
6306
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
6316
6307
  });
6317
- loading: boolean;
6318
6308
  menu: boolean;
6319
6309
  autofocus: boolean;
6320
6310
  eager: boolean;
@@ -6398,7 +6388,7 @@ declare const VCombobox: {
6398
6388
  default: string;
6399
6389
  validator: (v: any) => boolean;
6400
6390
  };
6401
- loading: BooleanConstructor;
6391
+ loading: (StringConstructor | BooleanConstructor)[];
6402
6392
  label: StringConstructor;
6403
6393
  prefix: StringConstructor;
6404
6394
  autofocus: BooleanConstructor;
@@ -6416,15 +6406,15 @@ declare const VCombobox: {
6416
6406
  default: string;
6417
6407
  validator: (v: any) => boolean;
6418
6408
  };
6419
- modelValue: {
6420
- type: PropType<any>;
6421
- default: any;
6422
- };
6423
6409
  variant: {
6424
6410
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
6425
6411
  default: string;
6426
6412
  validator: (v: any) => boolean;
6427
6413
  };
6414
+ modelValue: {
6415
+ type: PropType<any>;
6416
+ default: any;
6417
+ };
6428
6418
  bgColor: StringConstructor;
6429
6419
  prependIcon: PropType<IconValue>;
6430
6420
  appendIcon: PropType<IconValue>;
@@ -6750,7 +6740,7 @@ declare const VCombobox: {
6750
6740
  default: string;
6751
6741
  validator: (v: any) => boolean;
6752
6742
  };
6753
- loading: BooleanConstructor;
6743
+ loading: (StringConstructor | BooleanConstructor)[];
6754
6744
  label: StringConstructor;
6755
6745
  prefix: StringConstructor;
6756
6746
  autofocus: BooleanConstructor;
@@ -6768,15 +6758,15 @@ declare const VCombobox: {
6768
6758
  default: string;
6769
6759
  validator: (v: any) => boolean;
6770
6760
  };
6771
- modelValue: {
6772
- type: PropType<any>;
6773
- default: any;
6774
- };
6775
6761
  variant: {
6776
6762
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
6777
6763
  default: string;
6778
6764
  validator: (v: any) => boolean;
6779
6765
  };
6766
+ modelValue: {
6767
+ type: PropType<any>;
6768
+ default: any;
6769
+ };
6780
6770
  bgColor: StringConstructor;
6781
6771
  prependIcon: PropType<IconValue>;
6782
6772
  appendIcon: PropType<IconValue>;
@@ -7081,7 +7071,6 @@ declare const VCombobox: {
7081
7071
  transition: string | boolean | (vue.TransitionProps & {
7082
7072
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
7083
7073
  });
7084
- loading: boolean;
7085
7074
  menu: boolean;
7086
7075
  autofocus: boolean;
7087
7076
  eager: boolean;
@@ -7484,6 +7473,7 @@ declare const VOverlay: {
7484
7473
  noClickAnimation: boolean;
7485
7474
  persistent: boolean;
7486
7475
  scrim: string | boolean;
7476
+ _disableGlobalStack: boolean;
7487
7477
  }> & Omit<Readonly<ExtractPropTypes<Omit<{
7488
7478
  transition: {
7489
7479
  type: PropType<string | boolean | (vue.TransitionProps & {
@@ -7559,11 +7549,12 @@ declare const VOverlay: {
7559
7549
  type: (StringConstructor | NumberConstructor)[];
7560
7550
  default: number;
7561
7551
  };
7552
+ _disableGlobalStack: BooleanConstructor;
7562
7553
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
7563
7554
  onAfterLeave?: (() => any) | undefined;
7564
7555
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
7565
7556
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
7566
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
7557
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
7567
7558
  $attrs: {
7568
7559
  [x: string]: unknown;
7569
7560
  };
@@ -7652,6 +7643,7 @@ declare const VOverlay: {
7652
7643
  type: (StringConstructor | NumberConstructor)[];
7653
7644
  default: number;
7654
7645
  };
7646
+ _disableGlobalStack: BooleanConstructor;
7655
7647
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
7656
7648
  onAfterLeave?: (() => any) | undefined;
7657
7649
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -7692,6 +7684,7 @@ declare const VOverlay: {
7692
7684
  noClickAnimation: boolean;
7693
7685
  persistent: boolean;
7694
7686
  scrim: string | boolean;
7687
+ _disableGlobalStack: boolean;
7695
7688
  }> & {
7696
7689
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
7697
7690
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -7787,6 +7780,7 @@ declare const VOverlay: {
7787
7780
  type: (StringConstructor | NumberConstructor)[];
7788
7781
  default: number;
7789
7782
  };
7783
+ _disableGlobalStack: BooleanConstructor;
7790
7784
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
7791
7785
  onAfterLeave?: (() => any) | undefined;
7792
7786
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -7877,6 +7871,7 @@ declare const VOverlay: {
7877
7871
  type: (StringConstructor | NumberConstructor)[];
7878
7872
  default: number;
7879
7873
  };
7874
+ _disableGlobalStack: BooleanConstructor;
7880
7875
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
7881
7876
  onAfterLeave?: (() => any) | undefined;
7882
7877
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -7917,6 +7912,7 @@ declare const VOverlay: {
7917
7912
  noClickAnimation: boolean;
7918
7913
  persistent: boolean;
7919
7914
  scrim: string | boolean;
7915
+ _disableGlobalStack: boolean;
7920
7916
  }> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
7921
7917
  $props: SlotsToProps<OverlaySlots>;
7922
7918
  });
@@ -8224,6 +8220,7 @@ declare const VDialog: {
8224
8220
  noClickAnimation: boolean;
8225
8221
  persistent: boolean;
8226
8222
  scrim: string | boolean;
8223
+ _disableGlobalStack: boolean;
8227
8224
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
8228
8225
  transition: {
8229
8226
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -8299,11 +8296,12 @@ declare const VDialog: {
8299
8296
  type: (StringConstructor | NumberConstructor)[];
8300
8297
  default: number;
8301
8298
  };
8299
+ _disableGlobalStack: BooleanConstructor;
8302
8300
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8303
8301
  onAfterLeave?: (() => any) | undefined;
8304
8302
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
8305
8303
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
8306
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
8304
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
8307
8305
  $attrs: {
8308
8306
  [x: string]: unknown;
8309
8307
  };
@@ -8392,6 +8390,7 @@ declare const VDialog: {
8392
8390
  type: (StringConstructor | NumberConstructor)[];
8393
8391
  default: number;
8394
8392
  };
8393
+ _disableGlobalStack: BooleanConstructor;
8395
8394
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8396
8395
  onAfterLeave?: (() => any) | undefined;
8397
8396
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -8432,6 +8431,7 @@ declare const VDialog: {
8432
8431
  noClickAnimation: boolean;
8433
8432
  persistent: boolean;
8434
8433
  scrim: string | boolean;
8434
+ _disableGlobalStack: boolean;
8435
8435
  }> & {
8436
8436
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
8437
8437
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -8527,6 +8527,7 @@ declare const VDialog: {
8527
8527
  type: (StringConstructor | NumberConstructor)[];
8528
8528
  default: number;
8529
8529
  };
8530
+ _disableGlobalStack: BooleanConstructor;
8530
8531
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8531
8532
  onAfterLeave?: (() => any) | undefined;
8532
8533
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -8567,7 +8568,7 @@ declare const VDialog: {
8567
8568
  props: Record<string, any>;
8568
8569
  }) => vue.VNodeChild) | undefined;
8569
8570
  };
8570
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
8571
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
8571
8572
  'update:modelValue': (value: boolean) => boolean;
8572
8573
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
8573
8574
  absolute: boolean;
@@ -8762,6 +8763,7 @@ declare const VDialog: {
8762
8763
  noClickAnimation: boolean;
8763
8764
  persistent: boolean;
8764
8765
  scrim: string | boolean;
8766
+ _disableGlobalStack: boolean;
8765
8767
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
8766
8768
  transition: {
8767
8769
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -8837,11 +8839,12 @@ declare const VDialog: {
8837
8839
  type: (StringConstructor | NumberConstructor)[];
8838
8840
  default: number;
8839
8841
  };
8842
+ _disableGlobalStack: BooleanConstructor;
8840
8843
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8841
8844
  onAfterLeave?: (() => any) | undefined;
8842
8845
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
8843
8846
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
8844
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
8847
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
8845
8848
  $attrs: {
8846
8849
  [x: string]: unknown;
8847
8850
  };
@@ -8930,6 +8933,7 @@ declare const VDialog: {
8930
8933
  type: (StringConstructor | NumberConstructor)[];
8931
8934
  default: number;
8932
8935
  };
8936
+ _disableGlobalStack: BooleanConstructor;
8933
8937
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8934
8938
  onAfterLeave?: (() => any) | undefined;
8935
8939
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -8970,6 +8974,7 @@ declare const VDialog: {
8970
8974
  noClickAnimation: boolean;
8971
8975
  persistent: boolean;
8972
8976
  scrim: string | boolean;
8977
+ _disableGlobalStack: boolean;
8973
8978
  }> & {
8974
8979
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
8975
8980
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -9065,6 +9070,7 @@ declare const VDialog: {
9065
9070
  type: (StringConstructor | NumberConstructor)[];
9066
9071
  default: number;
9067
9072
  };
9073
+ _disableGlobalStack: BooleanConstructor;
9068
9074
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
9069
9075
  onAfterLeave?: (() => any) | undefined;
9070
9076
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -9105,7 +9111,7 @@ declare const VDialog: {
9105
9111
  props: Record<string, any>;
9106
9112
  }) => vue.VNodeChild) | undefined;
9107
9113
  };
9108
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
9114
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
9109
9115
  __isFragment?: undefined;
9110
9116
  __isTeleport?: undefined;
9111
9117
  __isSuspense?: undefined;
@@ -9248,6 +9254,7 @@ declare const VDialog: {
9248
9254
  noClickAnimation: boolean;
9249
9255
  persistent: boolean;
9250
9256
  scrim: string | boolean;
9257
+ _disableGlobalStack: boolean;
9251
9258
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
9252
9259
  transition: {
9253
9260
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -9323,11 +9330,12 @@ declare const VDialog: {
9323
9330
  type: (StringConstructor | NumberConstructor)[];
9324
9331
  default: number;
9325
9332
  };
9333
+ _disableGlobalStack: BooleanConstructor;
9326
9334
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
9327
9335
  onAfterLeave?: (() => any) | undefined;
9328
9336
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
9329
9337
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
9330
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
9338
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
9331
9339
  $attrs: {
9332
9340
  [x: string]: unknown;
9333
9341
  };
@@ -9416,6 +9424,7 @@ declare const VDialog: {
9416
9424
  type: (StringConstructor | NumberConstructor)[];
9417
9425
  default: number;
9418
9426
  };
9427
+ _disableGlobalStack: BooleanConstructor;
9419
9428
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
9420
9429
  onAfterLeave?: (() => any) | undefined;
9421
9430
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -9456,6 +9465,7 @@ declare const VDialog: {
9456
9465
  noClickAnimation: boolean;
9457
9466
  persistent: boolean;
9458
9467
  scrim: string | boolean;
9468
+ _disableGlobalStack: boolean;
9459
9469
  }> & {
9460
9470
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
9461
9471
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -9551,6 +9561,7 @@ declare const VDialog: {
9551
9561
  type: (StringConstructor | NumberConstructor)[];
9552
9562
  default: number;
9553
9563
  };
9564
+ _disableGlobalStack: BooleanConstructor;
9554
9565
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
9555
9566
  onAfterLeave?: (() => any) | undefined;
9556
9567
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -9591,7 +9602,7 @@ declare const VDialog: {
9591
9602
  props: Record<string, any>;
9592
9603
  }) => vue.VNodeChild) | undefined;
9593
9604
  };
9594
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
9605
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
9595
9606
  'update:modelValue': (value: boolean) => boolean;
9596
9607
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
9597
9608
  absolute: boolean;
@@ -9705,8 +9716,8 @@ declare const VExpansionPanels: vue.DefineComponent<{
9705
9716
  multiple: boolean;
9706
9717
  readonly: boolean;
9707
9718
  tag: string;
9708
- modelValue: any;
9709
9719
  variant: "default" | "inset" | "accordion" | "popout";
9720
+ modelValue: any;
9710
9721
  }>;
9711
9722
  declare type VExpansionPanels = InstanceType<typeof VExpansionPanels>;
9712
9723
 
@@ -9861,7 +9872,7 @@ declare const VFieldLabel: vue.DefineComponent<{
9861
9872
  declare type VFieldLabel = InstanceType<typeof VFieldLabel>;
9862
9873
 
9863
9874
  declare const VFileInput: vue.DefineComponent<{
9864
- loading: BooleanConstructor;
9875
+ loading: (StringConstructor | BooleanConstructor)[];
9865
9876
  theme: StringConstructor;
9866
9877
  appendInnerIcon: PropType<IconValue>;
9867
9878
  bgColor: StringConstructor;
@@ -10180,7 +10191,7 @@ declare const VFileInput: vue.DefineComponent<{
10180
10191
  'click:control': (e: MouseEvent) => true;
10181
10192
  'update:modelValue': (files: File[]) => true;
10182
10193
  }, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
10183
- loading: BooleanConstructor;
10194
+ loading: (StringConstructor | BooleanConstructor)[];
10184
10195
  theme: StringConstructor;
10185
10196
  appendInnerIcon: PropType<IconValue>;
10186
10197
  bgColor: StringConstructor;
@@ -10282,15 +10293,14 @@ declare const VFileInput: vue.DefineComponent<{
10282
10293
  error: boolean;
10283
10294
  active: boolean;
10284
10295
  direction: "horizontal" | "vertical";
10285
- loading: boolean;
10286
10296
  disabled: boolean;
10287
10297
  multiple: boolean;
10288
10298
  readonly: boolean;
10289
10299
  messages: string | string[];
10290
10300
  counter: boolean;
10291
10301
  density: Density;
10292
- modelValue: File[];
10293
10302
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
10303
+ modelValue: File[];
10294
10304
  prependIcon: (string & {}) | IconValue;
10295
10305
  clearIcon: IconValue;
10296
10306
  focused: boolean;
@@ -12671,6 +12681,7 @@ declare const VMenu: {
12671
12681
  noClickAnimation: boolean;
12672
12682
  persistent: boolean;
12673
12683
  scrim: string | boolean;
12684
+ _disableGlobalStack: boolean;
12674
12685
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
12675
12686
  transition: {
12676
12687
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -12746,11 +12757,12 @@ declare const VMenu: {
12746
12757
  type: (StringConstructor | NumberConstructor)[];
12747
12758
  default: number;
12748
12759
  };
12760
+ _disableGlobalStack: BooleanConstructor;
12749
12761
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
12750
12762
  onAfterLeave?: (() => any) | undefined;
12751
12763
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
12752
12764
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
12753
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
12765
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
12754
12766
  $attrs: {
12755
12767
  [x: string]: unknown;
12756
12768
  };
@@ -12839,6 +12851,7 @@ declare const VMenu: {
12839
12851
  type: (StringConstructor | NumberConstructor)[];
12840
12852
  default: number;
12841
12853
  };
12854
+ _disableGlobalStack: BooleanConstructor;
12842
12855
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
12843
12856
  onAfterLeave?: (() => any) | undefined;
12844
12857
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -12879,6 +12892,7 @@ declare const VMenu: {
12879
12892
  noClickAnimation: boolean;
12880
12893
  persistent: boolean;
12881
12894
  scrim: string | boolean;
12895
+ _disableGlobalStack: boolean;
12882
12896
  }> & {
12883
12897
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
12884
12898
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -12974,6 +12988,7 @@ declare const VMenu: {
12974
12988
  type: (StringConstructor | NumberConstructor)[];
12975
12989
  default: number;
12976
12990
  };
12991
+ _disableGlobalStack: BooleanConstructor;
12977
12992
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
12978
12993
  onAfterLeave?: (() => any) | undefined;
12979
12994
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -13014,7 +13029,7 @@ declare const VMenu: {
13014
13029
  props: Record<string, any>;
13015
13030
  }) => vue.VNodeChild) | undefined;
13016
13031
  };
13017
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
13032
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
13018
13033
  'update:modelValue': (value: boolean) => boolean;
13019
13034
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
13020
13035
  location: Anchor;
@@ -13216,6 +13231,7 @@ declare const VMenu: {
13216
13231
  noClickAnimation: boolean;
13217
13232
  persistent: boolean;
13218
13233
  scrim: string | boolean;
13234
+ _disableGlobalStack: boolean;
13219
13235
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
13220
13236
  transition: {
13221
13237
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -13291,11 +13307,12 @@ declare const VMenu: {
13291
13307
  type: (StringConstructor | NumberConstructor)[];
13292
13308
  default: number;
13293
13309
  };
13310
+ _disableGlobalStack: BooleanConstructor;
13294
13311
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13295
13312
  onAfterLeave?: (() => any) | undefined;
13296
13313
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
13297
13314
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
13298
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
13315
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
13299
13316
  $attrs: {
13300
13317
  [x: string]: unknown;
13301
13318
  };
@@ -13384,6 +13401,7 @@ declare const VMenu: {
13384
13401
  type: (StringConstructor | NumberConstructor)[];
13385
13402
  default: number;
13386
13403
  };
13404
+ _disableGlobalStack: BooleanConstructor;
13387
13405
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13388
13406
  onAfterLeave?: (() => any) | undefined;
13389
13407
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -13424,6 +13442,7 @@ declare const VMenu: {
13424
13442
  noClickAnimation: boolean;
13425
13443
  persistent: boolean;
13426
13444
  scrim: string | boolean;
13445
+ _disableGlobalStack: boolean;
13427
13446
  }> & {
13428
13447
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
13429
13448
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -13519,6 +13538,7 @@ declare const VMenu: {
13519
13538
  type: (StringConstructor | NumberConstructor)[];
13520
13539
  default: number;
13521
13540
  };
13541
+ _disableGlobalStack: BooleanConstructor;
13522
13542
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13523
13543
  onAfterLeave?: (() => any) | undefined;
13524
13544
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -13559,7 +13579,7 @@ declare const VMenu: {
13559
13579
  props: Record<string, any>;
13560
13580
  }) => vue.VNodeChild) | undefined;
13561
13581
  };
13562
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
13582
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
13563
13583
  __isFragment?: undefined;
13564
13584
  __isTeleport?: undefined;
13565
13585
  __isSuspense?: undefined;
@@ -13711,6 +13731,7 @@ declare const VMenu: {
13711
13731
  noClickAnimation: boolean;
13712
13732
  persistent: boolean;
13713
13733
  scrim: string | boolean;
13734
+ _disableGlobalStack: boolean;
13714
13735
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
13715
13736
  transition: {
13716
13737
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -13786,11 +13807,12 @@ declare const VMenu: {
13786
13807
  type: (StringConstructor | NumberConstructor)[];
13787
13808
  default: number;
13788
13809
  };
13810
+ _disableGlobalStack: BooleanConstructor;
13789
13811
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13790
13812
  onAfterLeave?: (() => any) | undefined;
13791
13813
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
13792
13814
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
13793
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
13815
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
13794
13816
  $attrs: {
13795
13817
  [x: string]: unknown;
13796
13818
  };
@@ -13879,6 +13901,7 @@ declare const VMenu: {
13879
13901
  type: (StringConstructor | NumberConstructor)[];
13880
13902
  default: number;
13881
13903
  };
13904
+ _disableGlobalStack: BooleanConstructor;
13882
13905
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13883
13906
  onAfterLeave?: (() => any) | undefined;
13884
13907
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -13919,6 +13942,7 @@ declare const VMenu: {
13919
13942
  noClickAnimation: boolean;
13920
13943
  persistent: boolean;
13921
13944
  scrim: string | boolean;
13945
+ _disableGlobalStack: boolean;
13922
13946
  }> & {
13923
13947
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
13924
13948
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -14014,6 +14038,7 @@ declare const VMenu: {
14014
14038
  type: (StringConstructor | NumberConstructor)[];
14015
14039
  default: number;
14016
14040
  };
14041
+ _disableGlobalStack: BooleanConstructor;
14017
14042
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
14018
14043
  onAfterLeave?: (() => any) | undefined;
14019
14044
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -14054,7 +14079,7 @@ declare const VMenu: {
14054
14079
  props: Record<string, any>;
14055
14080
  }) => vue.VNodeChild) | undefined;
14056
14081
  };
14057
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
14082
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
14058
14083
  'update:modelValue': (value: boolean) => boolean;
14059
14084
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
14060
14085
  location: Anchor;
@@ -14697,8 +14722,8 @@ declare const VPagination: vue.DefineComponent<{
14697
14722
  ellipsis: string;
14698
14723
  rounded: string | number | boolean;
14699
14724
  density: Density;
14700
- modelValue: number;
14701
14725
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
14726
+ modelValue: number;
14702
14727
  nextIcon: IconValue;
14703
14728
  prevIcon: IconValue;
14704
14729
  firstIcon: IconValue;
@@ -15747,7 +15772,6 @@ declare const VSelect: {
15747
15772
  target: PropType<HTMLElement>;
15748
15773
  }>>, {}>;
15749
15774
  };
15750
- loading: boolean;
15751
15775
  menu: boolean;
15752
15776
  autofocus: boolean;
15753
15777
  eager: boolean;
@@ -15820,7 +15844,7 @@ declare const VSelect: {
15820
15844
  default: string;
15821
15845
  validator: (v: any) => boolean;
15822
15846
  };
15823
- loading: BooleanConstructor;
15847
+ loading: (StringConstructor | BooleanConstructor)[];
15824
15848
  label: StringConstructor;
15825
15849
  prefix: StringConstructor;
15826
15850
  autofocus: BooleanConstructor;
@@ -15838,15 +15862,15 @@ declare const VSelect: {
15838
15862
  default: string;
15839
15863
  validator: (v: any) => boolean;
15840
15864
  };
15841
- modelValue: {
15842
- type: PropType<any>;
15843
- default: any;
15844
- };
15845
15865
  variant: {
15846
15866
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
15847
15867
  default: string;
15848
15868
  validator: (v: any) => boolean;
15849
15869
  };
15870
+ modelValue: {
15871
+ type: PropType<any>;
15872
+ default: any;
15873
+ };
15850
15874
  bgColor: StringConstructor;
15851
15875
  prependIcon: PropType<IconValue>;
15852
15876
  appendIcon: PropType<IconValue>;
@@ -16106,7 +16130,7 @@ declare const VSelect: {
16106
16130
  openOnClear: BooleanConstructor;
16107
16131
  }, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
16108
16132
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
16109
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "loading" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
16133
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
16110
16134
  $attrs: {
16111
16135
  [x: string]: unknown;
16112
16136
  };
@@ -16162,7 +16186,7 @@ declare const VSelect: {
16162
16186
  default: string;
16163
16187
  validator: (v: any) => boolean;
16164
16188
  };
16165
- loading: BooleanConstructor;
16189
+ loading: (StringConstructor | BooleanConstructor)[];
16166
16190
  label: StringConstructor;
16167
16191
  prefix: StringConstructor;
16168
16192
  autofocus: BooleanConstructor;
@@ -16180,15 +16204,15 @@ declare const VSelect: {
16180
16204
  default: string;
16181
16205
  validator: (v: any) => boolean;
16182
16206
  };
16183
- modelValue: {
16184
- type: PropType<any>;
16185
- default: any;
16186
- };
16187
16207
  variant: {
16188
16208
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
16189
16209
  default: string;
16190
16210
  validator: (v: any) => boolean;
16191
16211
  };
16212
+ modelValue: {
16213
+ type: PropType<any>;
16214
+ default: any;
16215
+ };
16192
16216
  bgColor: StringConstructor;
16193
16217
  prependIcon: PropType<IconValue>;
16194
16218
  appendIcon: PropType<IconValue>;
@@ -16471,7 +16495,6 @@ declare const VSelect: {
16471
16495
  target: PropType<HTMLElement>;
16472
16496
  }>>, {}>;
16473
16497
  };
16474
- loading: boolean;
16475
16498
  menu: boolean;
16476
16499
  autofocus: boolean;
16477
16500
  eager: boolean;
@@ -16564,7 +16587,7 @@ declare const VSelect: {
16564
16587
  default: string;
16565
16588
  validator: (v: any) => boolean;
16566
16589
  };
16567
- loading: BooleanConstructor;
16590
+ loading: (StringConstructor | BooleanConstructor)[];
16568
16591
  label: StringConstructor;
16569
16592
  prefix: StringConstructor;
16570
16593
  autofocus: BooleanConstructor;
@@ -16582,15 +16605,15 @@ declare const VSelect: {
16582
16605
  default: string;
16583
16606
  validator: (v: any) => boolean;
16584
16607
  };
16585
- modelValue: {
16586
- type: PropType<any>;
16587
- default: any;
16588
- };
16589
16608
  variant: {
16590
16609
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
16591
16610
  default: string;
16592
16611
  validator: (v: any) => boolean;
16593
16612
  };
16613
+ modelValue: {
16614
+ type: PropType<any>;
16615
+ default: any;
16616
+ };
16594
16617
  bgColor: StringConstructor;
16595
16618
  prependIcon: PropType<IconValue>;
16596
16619
  appendIcon: PropType<IconValue>;
@@ -16901,7 +16924,7 @@ declare const VSelect: {
16901
16924
  default: string;
16902
16925
  validator: (v: any) => boolean;
16903
16926
  };
16904
- loading: BooleanConstructor;
16927
+ loading: (StringConstructor | BooleanConstructor)[];
16905
16928
  label: StringConstructor;
16906
16929
  prefix: StringConstructor;
16907
16930
  autofocus: BooleanConstructor;
@@ -16919,15 +16942,15 @@ declare const VSelect: {
16919
16942
  default: string;
16920
16943
  validator: (v: any) => boolean;
16921
16944
  };
16922
- modelValue: {
16923
- type: PropType<any>;
16924
- default: any;
16925
- };
16926
16945
  variant: {
16927
16946
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
16928
16947
  default: string;
16929
16948
  validator: (v: any) => boolean;
16930
16949
  };
16950
+ modelValue: {
16951
+ type: PropType<any>;
16952
+ default: any;
16953
+ };
16931
16954
  bgColor: StringConstructor;
16932
16955
  prependIcon: PropType<IconValue>;
16933
16956
  appendIcon: PropType<IconValue>;
@@ -17210,7 +17233,6 @@ declare const VSelect: {
17210
17233
  target: PropType<HTMLElement>;
17211
17234
  }>>, {}>;
17212
17235
  };
17213
- loading: boolean;
17214
17236
  menu: boolean;
17215
17237
  autofocus: boolean;
17216
17238
  eager: boolean;
@@ -18350,8 +18372,8 @@ declare const VSnackbar: {
18350
18372
  timeout: string | number;
18351
18373
  vertical: boolean;
18352
18374
  rounded: string | number | boolean;
18353
- modelValue: boolean;
18354
18375
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
18376
+ modelValue: boolean;
18355
18377
  activatorProps: Record<string, any>;
18356
18378
  openOnClick: boolean;
18357
18379
  openOnHover: boolean;
@@ -18456,7 +18478,7 @@ declare const VSnackbar: {
18456
18478
  vertical: BooleanConstructor;
18457
18479
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">>> & {
18458
18480
  "onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
18459
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "modelValue" | "variant" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "closeOnBack" | "contained" | "multiLine">;
18481
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "variant" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "closeOnBack" | "contained" | "multiLine">;
18460
18482
  $attrs: {
18461
18483
  [x: string]: unknown;
18462
18484
  };
@@ -18591,6 +18613,7 @@ declare const VSnackbar: {
18591
18613
  noClickAnimation: boolean;
18592
18614
  persistent: boolean;
18593
18615
  scrim: string | boolean;
18616
+ _disableGlobalStack: boolean;
18594
18617
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
18595
18618
  transition: {
18596
18619
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -18666,11 +18689,12 @@ declare const VSnackbar: {
18666
18689
  type: (StringConstructor | NumberConstructor)[];
18667
18690
  default: number;
18668
18691
  };
18692
+ _disableGlobalStack: BooleanConstructor;
18669
18693
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
18670
18694
  onAfterLeave?: (() => any) | undefined;
18671
18695
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
18672
18696
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
18673
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
18697
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
18674
18698
  $attrs: {
18675
18699
  [x: string]: unknown;
18676
18700
  };
@@ -18759,6 +18783,7 @@ declare const VSnackbar: {
18759
18783
  type: (StringConstructor | NumberConstructor)[];
18760
18784
  default: number;
18761
18785
  };
18786
+ _disableGlobalStack: BooleanConstructor;
18762
18787
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
18763
18788
  onAfterLeave?: (() => any) | undefined;
18764
18789
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -18799,6 +18824,7 @@ declare const VSnackbar: {
18799
18824
  noClickAnimation: boolean;
18800
18825
  persistent: boolean;
18801
18826
  scrim: string | boolean;
18827
+ _disableGlobalStack: boolean;
18802
18828
  }> & {
18803
18829
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
18804
18830
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -18894,6 +18920,7 @@ declare const VSnackbar: {
18894
18920
  type: (StringConstructor | NumberConstructor)[];
18895
18921
  default: number;
18896
18922
  };
18923
+ _disableGlobalStack: BooleanConstructor;
18897
18924
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
18898
18925
  onAfterLeave?: (() => any) | undefined;
18899
18926
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -18934,7 +18961,7 @@ declare const VSnackbar: {
18934
18961
  props: Record<string, any>;
18935
18962
  }) => vue.VNodeChild) | undefined;
18936
18963
  };
18937
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
18964
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
18938
18965
  'update:modelValue': (v: boolean) => boolean;
18939
18966
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">, string, {
18940
18967
  absolute: boolean;
@@ -18949,8 +18976,8 @@ declare const VSnackbar: {
18949
18976
  timeout: string | number;
18950
18977
  vertical: boolean;
18951
18978
  rounded: string | number | boolean;
18952
- modelValue: boolean;
18953
18979
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
18980
+ modelValue: boolean;
18954
18981
  activatorProps: Record<string, any>;
18955
18982
  openOnClick: boolean;
18956
18983
  openOnHover: boolean;
@@ -19103,6 +19130,7 @@ declare const VSnackbar: {
19103
19130
  noClickAnimation: boolean;
19104
19131
  persistent: boolean;
19105
19132
  scrim: string | boolean;
19133
+ _disableGlobalStack: boolean;
19106
19134
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
19107
19135
  transition: {
19108
19136
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -19178,11 +19206,12 @@ declare const VSnackbar: {
19178
19206
  type: (StringConstructor | NumberConstructor)[];
19179
19207
  default: number;
19180
19208
  };
19209
+ _disableGlobalStack: BooleanConstructor;
19181
19210
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19182
19211
  onAfterLeave?: (() => any) | undefined;
19183
19212
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
19184
19213
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
19185
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
19214
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
19186
19215
  $attrs: {
19187
19216
  [x: string]: unknown;
19188
19217
  };
@@ -19271,6 +19300,7 @@ declare const VSnackbar: {
19271
19300
  type: (StringConstructor | NumberConstructor)[];
19272
19301
  default: number;
19273
19302
  };
19303
+ _disableGlobalStack: BooleanConstructor;
19274
19304
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19275
19305
  onAfterLeave?: (() => any) | undefined;
19276
19306
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -19311,6 +19341,7 @@ declare const VSnackbar: {
19311
19341
  noClickAnimation: boolean;
19312
19342
  persistent: boolean;
19313
19343
  scrim: string | boolean;
19344
+ _disableGlobalStack: boolean;
19314
19345
  }> & {
19315
19346
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
19316
19347
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -19406,6 +19437,7 @@ declare const VSnackbar: {
19406
19437
  type: (StringConstructor | NumberConstructor)[];
19407
19438
  default: number;
19408
19439
  };
19440
+ _disableGlobalStack: BooleanConstructor;
19409
19441
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19410
19442
  onAfterLeave?: (() => any) | undefined;
19411
19443
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -19446,7 +19478,7 @@ declare const VSnackbar: {
19446
19478
  props: Record<string, any>;
19447
19479
  }) => vue.VNodeChild) | undefined;
19448
19480
  };
19449
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
19481
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
19450
19482
  __isFragment?: undefined;
19451
19483
  __isTeleport?: undefined;
19452
19484
  __isSuspense?: undefined;
@@ -19571,6 +19603,7 @@ declare const VSnackbar: {
19571
19603
  noClickAnimation: boolean;
19572
19604
  persistent: boolean;
19573
19605
  scrim: string | boolean;
19606
+ _disableGlobalStack: boolean;
19574
19607
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
19575
19608
  transition: {
19576
19609
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -19646,11 +19679,12 @@ declare const VSnackbar: {
19646
19679
  type: (StringConstructor | NumberConstructor)[];
19647
19680
  default: number;
19648
19681
  };
19682
+ _disableGlobalStack: BooleanConstructor;
19649
19683
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19650
19684
  onAfterLeave?: (() => any) | undefined;
19651
19685
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
19652
19686
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
19653
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
19687
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
19654
19688
  $attrs: {
19655
19689
  [x: string]: unknown;
19656
19690
  };
@@ -19739,6 +19773,7 @@ declare const VSnackbar: {
19739
19773
  type: (StringConstructor | NumberConstructor)[];
19740
19774
  default: number;
19741
19775
  };
19776
+ _disableGlobalStack: BooleanConstructor;
19742
19777
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19743
19778
  onAfterLeave?: (() => any) | undefined;
19744
19779
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -19779,6 +19814,7 @@ declare const VSnackbar: {
19779
19814
  noClickAnimation: boolean;
19780
19815
  persistent: boolean;
19781
19816
  scrim: string | boolean;
19817
+ _disableGlobalStack: boolean;
19782
19818
  }> & {
19783
19819
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
19784
19820
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -19874,6 +19910,7 @@ declare const VSnackbar: {
19874
19910
  type: (StringConstructor | NumberConstructor)[];
19875
19911
  default: number;
19876
19912
  };
19913
+ _disableGlobalStack: BooleanConstructor;
19877
19914
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19878
19915
  onAfterLeave?: (() => any) | undefined;
19879
19916
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -19914,7 +19951,7 @@ declare const VSnackbar: {
19914
19951
  props: Record<string, any>;
19915
19952
  }) => vue.VNodeChild) | undefined;
19916
19953
  };
19917
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
19954
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
19918
19955
  'update:modelValue': (v: boolean) => boolean;
19919
19956
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">, string, {
19920
19957
  absolute: boolean;
@@ -19929,8 +19966,8 @@ declare const VSnackbar: {
19929
19966
  timeout: string | number;
19930
19967
  vertical: boolean;
19931
19968
  rounded: string | number | boolean;
19932
- modelValue: boolean;
19933
19969
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
19970
+ modelValue: boolean;
19934
19971
  activatorProps: Record<string, any>;
19935
19972
  openOnClick: boolean;
19936
19973
  openOnHover: boolean;
@@ -20399,7 +20436,7 @@ declare const VTable: vue.DefineComponent<{
20399
20436
  declare type VTable = InstanceType<typeof VTable>;
20400
20437
 
20401
20438
  declare const VTextarea: vue.DefineComponent<{
20402
- loading: BooleanConstructor;
20439
+ loading: (StringConstructor | BooleanConstructor)[];
20403
20440
  theme: StringConstructor;
20404
20441
  appendInnerIcon: PropType<IconValue>;
20405
20442
  bgColor: StringConstructor;
@@ -20711,7 +20748,7 @@ declare const VTextarea: vue.DefineComponent<{
20711
20748
  'update:focused': (focused: boolean) => true;
20712
20749
  'update:modelValue': (val: string) => true;
20713
20750
  }, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
20714
- loading: BooleanConstructor;
20751
+ loading: (StringConstructor | BooleanConstructor)[];
20715
20752
  theme: StringConstructor;
20716
20753
  appendInnerIcon: PropType<IconValue>;
20717
20754
  bgColor: StringConstructor;
@@ -20806,7 +20843,6 @@ declare const VTextarea: vue.DefineComponent<{
20806
20843
  error: boolean;
20807
20844
  active: boolean;
20808
20845
  direction: "horizontal" | "vertical";
20809
- loading: boolean;
20810
20846
  autofocus: boolean;
20811
20847
  disabled: boolean;
20812
20848
  readonly: boolean;
@@ -20841,7 +20877,6 @@ declare const VTextField: {
20841
20877
  error: boolean;
20842
20878
  active: boolean;
20843
20879
  direction: "horizontal" | "vertical";
20844
- loading: boolean;
20845
20880
  autofocus: boolean;
20846
20881
  disabled: boolean;
20847
20882
  readonly: boolean;
@@ -20861,7 +20896,7 @@ declare const VTextField: {
20861
20896
  persistentPlaceholder: boolean;
20862
20897
  persistentCounter: boolean;
20863
20898
  }> & Omit<Readonly<ExtractPropTypes<Omit<{
20864
- loading: BooleanConstructor;
20899
+ loading: (StringConstructor | BooleanConstructor)[];
20865
20900
  theme: StringConstructor;
20866
20901
  appendInnerIcon: PropType<IconValue>;
20867
20902
  bgColor: StringConstructor;
@@ -20945,7 +20980,7 @@ declare const VTextField: {
20945
20980
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
20946
20981
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
20947
20982
  "onClick:input"?: ((e: MouseEvent) => any) | undefined;
20948
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "loading" | "autofocus" | "disabled" | "readonly" | "messages" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter">;
20983
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "autofocus" | "disabled" | "readonly" | "messages" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter">;
20949
20984
  $attrs: {
20950
20985
  [x: string]: unknown;
20951
20986
  };
@@ -20960,7 +20995,7 @@ declare const VTextField: {
20960
20995
  $emit: ((event: "update:modelValue", val: string) => void) & ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "click:input", e: MouseEvent) => void);
20961
20996
  $el: any;
20962
20997
  $options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
20963
- loading: BooleanConstructor;
20998
+ loading: (StringConstructor | BooleanConstructor)[];
20964
20999
  theme: StringConstructor;
20965
21000
  appendInnerIcon: PropType<IconValue>;
20966
21001
  bgColor: StringConstructor;
@@ -21272,7 +21307,6 @@ declare const VTextField: {
21272
21307
  reverse: boolean;
21273
21308
  error: boolean;
21274
21309
  active: boolean;
21275
- loading: boolean;
21276
21310
  disabled: boolean;
21277
21311
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
21278
21312
  clearIcon: IconValue;
@@ -21282,7 +21316,7 @@ declare const VTextField: {
21282
21316
  persistentClear: boolean;
21283
21317
  singleLine: boolean;
21284
21318
  }> & Omit<Readonly<ExtractPropTypes<Omit<{
21285
- loading: BooleanConstructor;
21319
+ loading: (StringConstructor | BooleanConstructor)[];
21286
21320
  theme: StringConstructor;
21287
21321
  appendInnerIcon: PropType<IconValue>;
21288
21322
  bgColor: StringConstructor;
@@ -21314,7 +21348,7 @@ declare const VTextField: {
21314
21348
  }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
21315
21349
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
21316
21350
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
21317
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
21351
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
21318
21352
  $attrs: {
21319
21353
  [x: string]: unknown;
21320
21354
  };
@@ -21329,7 +21363,7 @@ declare const VTextField: {
21329
21363
  $emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
21330
21364
  $el: any;
21331
21365
  $options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
21332
- loading: BooleanConstructor;
21366
+ loading: (StringConstructor | BooleanConstructor)[];
21333
21367
  theme: StringConstructor;
21334
21368
  appendInnerIcon: PropType<IconValue>;
21335
21369
  bgColor: StringConstructor;
@@ -21371,7 +21405,6 @@ declare const VTextField: {
21371
21405
  reverse: boolean;
21372
21406
  error: boolean;
21373
21407
  active: boolean;
21374
- loading: boolean;
21375
21408
  disabled: boolean;
21376
21409
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
21377
21410
  clearIcon: IconValue;
@@ -21401,7 +21434,7 @@ declare const VTextField: {
21401
21434
  $nextTick: typeof nextTick;
21402
21435
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
21403
21436
  } & Readonly<ExtractPropTypes<Omit<{
21404
- loading: BooleanConstructor;
21437
+ loading: (StringConstructor | BooleanConstructor)[];
21405
21438
  theme: StringConstructor;
21406
21439
  appendInnerIcon: PropType<IconValue>;
21407
21440
  bgColor: StringConstructor;
@@ -21464,7 +21497,7 @@ declare const VTextField: {
21464
21497
  "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
21465
21498
  "v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
21466
21499
  };
21467
- }, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
21500
+ }, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
21468
21501
  'click:control': (e: MouseEvent) => boolean;
21469
21502
  'click:input': (e: MouseEvent) => boolean;
21470
21503
  'update:focused': (focused: boolean) => boolean;
@@ -21475,7 +21508,6 @@ declare const VTextField: {
21475
21508
  error: boolean;
21476
21509
  active: boolean;
21477
21510
  direction: "horizontal" | "vertical";
21478
- loading: boolean;
21479
21511
  autofocus: boolean;
21480
21512
  disabled: boolean;
21481
21513
  readonly: boolean;
@@ -21515,7 +21547,7 @@ declare const VTextField: {
21515
21547
  $nextTick: typeof nextTick;
21516
21548
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
21517
21549
  } & Readonly<ExtractPropTypes<Omit<{
21518
- loading: BooleanConstructor;
21550
+ loading: (StringConstructor | BooleanConstructor)[];
21519
21551
  theme: StringConstructor;
21520
21552
  appendInnerIcon: PropType<IconValue>;
21521
21553
  bgColor: StringConstructor;
@@ -21827,7 +21859,6 @@ declare const VTextField: {
21827
21859
  reverse: boolean;
21828
21860
  error: boolean;
21829
21861
  active: boolean;
21830
- loading: boolean;
21831
21862
  disabled: boolean;
21832
21863
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
21833
21864
  clearIcon: IconValue;
@@ -21837,7 +21868,7 @@ declare const VTextField: {
21837
21868
  persistentClear: boolean;
21838
21869
  singleLine: boolean;
21839
21870
  }> & Omit<Readonly<ExtractPropTypes<Omit<{
21840
- loading: BooleanConstructor;
21871
+ loading: (StringConstructor | BooleanConstructor)[];
21841
21872
  theme: StringConstructor;
21842
21873
  appendInnerIcon: PropType<IconValue>;
21843
21874
  bgColor: StringConstructor;
@@ -21869,7 +21900,7 @@ declare const VTextField: {
21869
21900
  }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
21870
21901
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
21871
21902
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
21872
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
21903
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
21873
21904
  $attrs: {
21874
21905
  [x: string]: unknown;
21875
21906
  };
@@ -21884,7 +21915,7 @@ declare const VTextField: {
21884
21915
  $emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
21885
21916
  $el: any;
21886
21917
  $options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
21887
- loading: BooleanConstructor;
21918
+ loading: (StringConstructor | BooleanConstructor)[];
21888
21919
  theme: StringConstructor;
21889
21920
  appendInnerIcon: PropType<IconValue>;
21890
21921
  bgColor: StringConstructor;
@@ -21926,7 +21957,6 @@ declare const VTextField: {
21926
21957
  reverse: boolean;
21927
21958
  error: boolean;
21928
21959
  active: boolean;
21929
- loading: boolean;
21930
21960
  disabled: boolean;
21931
21961
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
21932
21962
  clearIcon: IconValue;
@@ -21956,7 +21986,7 @@ declare const VTextField: {
21956
21986
  $nextTick: typeof nextTick;
21957
21987
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
21958
21988
  } & Readonly<ExtractPropTypes<Omit<{
21959
- loading: BooleanConstructor;
21989
+ loading: (StringConstructor | BooleanConstructor)[];
21960
21990
  theme: StringConstructor;
21961
21991
  appendInnerIcon: PropType<IconValue>;
21962
21992
  bgColor: StringConstructor;
@@ -22019,12 +22049,12 @@ declare const VTextField: {
22019
22049
  "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
22020
22050
  "v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
22021
22051
  };
22022
- }, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
22052
+ }, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
22023
22053
  __isFragment?: undefined;
22024
22054
  __isTeleport?: undefined;
22025
22055
  __isSuspense?: undefined;
22026
22056
  } & vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
22027
- loading: BooleanConstructor;
22057
+ loading: (StringConstructor | BooleanConstructor)[];
22028
22058
  theme: StringConstructor;
22029
22059
  appendInnerIcon: PropType<IconValue>;
22030
22060
  bgColor: StringConstructor;
@@ -22336,7 +22366,6 @@ declare const VTextField: {
22336
22366
  reverse: boolean;
22337
22367
  error: boolean;
22338
22368
  active: boolean;
22339
- loading: boolean;
22340
22369
  disabled: boolean;
22341
22370
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
22342
22371
  clearIcon: IconValue;
@@ -22346,7 +22375,7 @@ declare const VTextField: {
22346
22375
  persistentClear: boolean;
22347
22376
  singleLine: boolean;
22348
22377
  }> & Omit<Readonly<ExtractPropTypes<Omit<{
22349
- loading: BooleanConstructor;
22378
+ loading: (StringConstructor | BooleanConstructor)[];
22350
22379
  theme: StringConstructor;
22351
22380
  appendInnerIcon: PropType<IconValue>;
22352
22381
  bgColor: StringConstructor;
@@ -22378,7 +22407,7 @@ declare const VTextField: {
22378
22407
  }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
22379
22408
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
22380
22409
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
22381
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
22410
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
22382
22411
  $attrs: {
22383
22412
  [x: string]: unknown;
22384
22413
  };
@@ -22393,7 +22422,7 @@ declare const VTextField: {
22393
22422
  $emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
22394
22423
  $el: any;
22395
22424
  $options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
22396
- loading: BooleanConstructor;
22425
+ loading: (StringConstructor | BooleanConstructor)[];
22397
22426
  theme: StringConstructor;
22398
22427
  appendInnerIcon: PropType<IconValue>;
22399
22428
  bgColor: StringConstructor;
@@ -22435,7 +22464,6 @@ declare const VTextField: {
22435
22464
  reverse: boolean;
22436
22465
  error: boolean;
22437
22466
  active: boolean;
22438
- loading: boolean;
22439
22467
  disabled: boolean;
22440
22468
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
22441
22469
  clearIcon: IconValue;
@@ -22465,7 +22493,7 @@ declare const VTextField: {
22465
22493
  $nextTick: typeof nextTick;
22466
22494
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
22467
22495
  } & Readonly<ExtractPropTypes<Omit<{
22468
- loading: BooleanConstructor;
22496
+ loading: (StringConstructor | BooleanConstructor)[];
22469
22497
  theme: StringConstructor;
22470
22498
  appendInnerIcon: PropType<IconValue>;
22471
22499
  bgColor: StringConstructor;
@@ -22528,7 +22556,7 @@ declare const VTextField: {
22528
22556
  "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
22529
22557
  "v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
22530
22558
  };
22531
- }, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
22559
+ }, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
22532
22560
  'click:control': (e: MouseEvent) => boolean;
22533
22561
  'click:input': (e: MouseEvent) => boolean;
22534
22562
  'update:focused': (focused: boolean) => boolean;
@@ -22539,7 +22567,6 @@ declare const VTextField: {
22539
22567
  error: boolean;
22540
22568
  active: boolean;
22541
22569
  direction: "horizontal" | "vertical";
22542
- loading: boolean;
22543
22570
  autofocus: boolean;
22544
22571
  disabled: boolean;
22545
22572
  readonly: boolean;
@@ -23145,6 +23172,7 @@ declare const VTooltip: {
23145
23172
  noClickAnimation: boolean;
23146
23173
  persistent: boolean;
23147
23174
  scrim: string | boolean;
23175
+ _disableGlobalStack: boolean;
23148
23176
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
23149
23177
  transition: {
23150
23178
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -23220,11 +23248,12 @@ declare const VTooltip: {
23220
23248
  type: (StringConstructor | NumberConstructor)[];
23221
23249
  default: number;
23222
23250
  };
23251
+ _disableGlobalStack: BooleanConstructor;
23223
23252
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23224
23253
  onAfterLeave?: (() => any) | undefined;
23225
23254
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
23226
23255
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
23227
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
23256
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
23228
23257
  $attrs: {
23229
23258
  [x: string]: unknown;
23230
23259
  };
@@ -23313,6 +23342,7 @@ declare const VTooltip: {
23313
23342
  type: (StringConstructor | NumberConstructor)[];
23314
23343
  default: number;
23315
23344
  };
23345
+ _disableGlobalStack: BooleanConstructor;
23316
23346
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23317
23347
  onAfterLeave?: (() => any) | undefined;
23318
23348
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -23353,6 +23383,7 @@ declare const VTooltip: {
23353
23383
  noClickAnimation: boolean;
23354
23384
  persistent: boolean;
23355
23385
  scrim: string | boolean;
23386
+ _disableGlobalStack: boolean;
23356
23387
  }> & {
23357
23388
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
23358
23389
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -23448,6 +23479,7 @@ declare const VTooltip: {
23448
23479
  type: (StringConstructor | NumberConstructor)[];
23449
23480
  default: number;
23450
23481
  };
23482
+ _disableGlobalStack: BooleanConstructor;
23451
23483
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23452
23484
  onAfterLeave?: (() => any) | undefined;
23453
23485
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -23488,7 +23520,7 @@ declare const VTooltip: {
23488
23520
  props: Record<string, any>;
23489
23521
  }) => vue.VNodeChild) | undefined;
23490
23522
  };
23491
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
23523
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
23492
23524
  'update:modelValue': (value: boolean) => boolean;
23493
23525
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
23494
23526
  offset: string | number | ((string | number | number[] | undefined) & {});
@@ -23679,6 +23711,7 @@ declare const VTooltip: {
23679
23711
  noClickAnimation: boolean;
23680
23712
  persistent: boolean;
23681
23713
  scrim: string | boolean;
23714
+ _disableGlobalStack: boolean;
23682
23715
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
23683
23716
  transition: {
23684
23717
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -23754,11 +23787,12 @@ declare const VTooltip: {
23754
23787
  type: (StringConstructor | NumberConstructor)[];
23755
23788
  default: number;
23756
23789
  };
23790
+ _disableGlobalStack: BooleanConstructor;
23757
23791
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23758
23792
  onAfterLeave?: (() => any) | undefined;
23759
23793
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
23760
23794
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
23761
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
23795
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
23762
23796
  $attrs: {
23763
23797
  [x: string]: unknown;
23764
23798
  };
@@ -23847,6 +23881,7 @@ declare const VTooltip: {
23847
23881
  type: (StringConstructor | NumberConstructor)[];
23848
23882
  default: number;
23849
23883
  };
23884
+ _disableGlobalStack: BooleanConstructor;
23850
23885
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23851
23886
  onAfterLeave?: (() => any) | undefined;
23852
23887
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -23887,6 +23922,7 @@ declare const VTooltip: {
23887
23922
  noClickAnimation: boolean;
23888
23923
  persistent: boolean;
23889
23924
  scrim: string | boolean;
23925
+ _disableGlobalStack: boolean;
23890
23926
  }> & {
23891
23927
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
23892
23928
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -23982,6 +24018,7 @@ declare const VTooltip: {
23982
24018
  type: (StringConstructor | NumberConstructor)[];
23983
24019
  default: number;
23984
24020
  };
24021
+ _disableGlobalStack: BooleanConstructor;
23985
24022
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23986
24023
  onAfterLeave?: (() => any) | undefined;
23987
24024
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -24022,7 +24059,7 @@ declare const VTooltip: {
24022
24059
  props: Record<string, any>;
24023
24060
  }) => vue.VNodeChild) | undefined;
24024
24061
  };
24025
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
24062
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
24026
24063
  __isFragment?: undefined;
24027
24064
  __isTeleport?: undefined;
24028
24065
  __isSuspense?: undefined;
@@ -24171,6 +24208,7 @@ declare const VTooltip: {
24171
24208
  noClickAnimation: boolean;
24172
24209
  persistent: boolean;
24173
24210
  scrim: string | boolean;
24211
+ _disableGlobalStack: boolean;
24174
24212
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
24175
24213
  transition: {
24176
24214
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -24246,11 +24284,12 @@ declare const VTooltip: {
24246
24284
  type: (StringConstructor | NumberConstructor)[];
24247
24285
  default: number;
24248
24286
  };
24287
+ _disableGlobalStack: BooleanConstructor;
24249
24288
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
24250
24289
  onAfterLeave?: (() => any) | undefined;
24251
24290
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
24252
24291
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
24253
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
24292
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
24254
24293
  $attrs: {
24255
24294
  [x: string]: unknown;
24256
24295
  };
@@ -24339,6 +24378,7 @@ declare const VTooltip: {
24339
24378
  type: (StringConstructor | NumberConstructor)[];
24340
24379
  default: number;
24341
24380
  };
24381
+ _disableGlobalStack: BooleanConstructor;
24342
24382
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
24343
24383
  onAfterLeave?: (() => any) | undefined;
24344
24384
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -24379,6 +24419,7 @@ declare const VTooltip: {
24379
24419
  noClickAnimation: boolean;
24380
24420
  persistent: boolean;
24381
24421
  scrim: string | boolean;
24422
+ _disableGlobalStack: boolean;
24382
24423
  }> & {
24383
24424
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
24384
24425
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -24474,6 +24515,7 @@ declare const VTooltip: {
24474
24515
  type: (StringConstructor | NumberConstructor)[];
24475
24516
  default: number;
24476
24517
  };
24518
+ _disableGlobalStack: BooleanConstructor;
24477
24519
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
24478
24520
  onAfterLeave?: (() => any) | undefined;
24479
24521
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -24514,7 +24556,7 @@ declare const VTooltip: {
24514
24556
  props: Record<string, any>;
24515
24557
  }) => vue.VNodeChild) | undefined;
24516
24558
  };
24517
- }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
24559
+ }, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
24518
24560
  'update:modelValue': (value: boolean) => boolean;
24519
24561
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
24520
24562
  offset: string | number | ((string | number | number[] | undefined) & {});
@@ -25918,18 +25960,18 @@ declare module '@vue/runtime-core' {
25918
25960
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
25919
25961
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
25920
25962
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
25963
+ VAlert: typeof import('vuetify/components')['VAlert']
25964
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
25921
25965
  VAppBar: typeof import('vuetify/components')['VAppBar']
25922
25966
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
25923
25967
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
25924
- VAlert: typeof import('vuetify/components')['VAlert']
25925
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
25926
25968
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
25927
25969
  VAvatar: typeof import('vuetify/components')['VAvatar']
25928
25970
  VBadge: typeof import('vuetify/components')['VBadge']
25971
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
25929
25972
  VBanner: typeof import('vuetify/components')['VBanner']
25930
25973
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
25931
25974
  VBannerText: typeof import('vuetify/components')['VBannerText']
25932
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
25933
25975
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
25934
25976
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
25935
25977
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']