@vuetify/nightly 3.0.4 → 3.0.5-dev-20221213.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 (65) hide show
  1. package/CHANGELOG.md +14 -2
  2. package/dist/json/importMap.json +24 -24
  3. package/dist/vuetify.css +22 -23
  4. package/dist/vuetify.d.ts +262 -163
  5. package/dist/vuetify.esm.js +46 -26
  6. package/dist/vuetify.esm.js.map +1 -1
  7. package/dist/vuetify.js +46 -26
  8. package/dist/vuetify.js.map +1 -1
  9. package/dist/vuetify.min.css +2 -2
  10. package/dist/vuetify.min.js +30 -30
  11. package/dist/vuetify.min.js.map +1 -1
  12. package/lib/components/VAlert/index.d.ts +1 -1
  13. package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
  14. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  15. package/lib/components/VAutocomplete/index.d.ts +41 -24
  16. package/lib/components/VBtn/index.d.ts +2 -3
  17. package/lib/components/VCard/index.d.ts +2 -3
  18. package/lib/components/VChip/VChip.mjs +1 -1
  19. package/lib/components/VChip/VChip.mjs.map +1 -1
  20. package/lib/components/VChip/index.d.ts +1 -1
  21. package/lib/components/VChipGroup/index.d.ts +1 -1
  22. package/lib/components/VCombobox/VCombobox.mjs +1 -1
  23. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  24. package/lib/components/VCombobox/index.d.ts +41 -24
  25. package/lib/components/VDialog/index.d.ts +21 -6
  26. package/lib/components/VExpansionPanel/index.d.ts +1 -1
  27. package/lib/components/VField/VField.mjs +1 -1
  28. package/lib/components/VField/VField.mjs.map +1 -1
  29. package/lib/components/VField/index.d.ts +5 -8
  30. package/lib/components/VFileInput/index.d.ts +3 -4
  31. package/lib/components/VMenu/index.d.ts +21 -6
  32. package/lib/components/VOverlay/VOverlay.mjs +5 -2
  33. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  34. package/lib/components/VOverlay/index.d.ts +8 -1
  35. package/lib/components/VPagination/index.d.ts +1 -1
  36. package/lib/components/VSelect/VSelect.mjs +6 -2
  37. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  38. package/lib/components/VSelect/index.d.ts +41 -24
  39. package/lib/components/VSnackbar/index.d.ts +25 -10
  40. package/lib/components/VTabs/VTab.css +1 -2
  41. package/lib/components/VTabs/VTab.sass +4 -3
  42. package/lib/components/VTextField/index.d.ts +20 -29
  43. package/lib/components/VTextarea/index.d.ts +2 -3
  44. package/lib/components/VToolbar/VToolbar.mjs +6 -0
  45. package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
  46. package/lib/components/VTooltip/VTooltip.mjs +2 -1
  47. package/lib/components/VTooltip/VTooltip.mjs.map +1 -1
  48. package/lib/components/VTooltip/index.d.ts +21 -6
  49. package/lib/components/index.d.ts +255 -156
  50. package/lib/composables/loader.mjs +1 -1
  51. package/lib/composables/loader.mjs.map +1 -1
  52. package/lib/composables/stack.mjs +16 -9
  53. package/lib/composables/stack.mjs.map +1 -1
  54. package/lib/composables/validation.mjs +2 -2
  55. package/lib/composables/validation.mjs.map +1 -1
  56. package/lib/entry-bundler.mjs +1 -1
  57. package/lib/entry-bundler.mjs.map +1 -1
  58. package/lib/framework.mjs +1 -1
  59. package/lib/framework.mjs.map +1 -1
  60. package/lib/index.d.ts +7 -7
  61. package/lib/services/goto/util.mjs +1 -1
  62. package/lib/services/goto/util.mjs.map +1 -1
  63. package/lib/util/console.mjs +3 -3
  64. package/lib/util/console.mjs.map +1 -1
  65. package/package.json +1 -1
@@ -936,8 +936,8 @@ declare const VAlert: vue.DefineComponent<{
936
936
  rounded: string | number | boolean;
937
937
  prominent: boolean;
938
938
  density: Density;
939
- modelValue: boolean;
940
939
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
940
+ modelValue: boolean;
941
941
  closable: boolean;
942
942
  closeIcon: IconValue;
943
943
  closeLabel: string;
@@ -1284,7 +1284,6 @@ declare const VField: {
1284
1284
  reverse: boolean;
1285
1285
  error: boolean;
1286
1286
  active: boolean;
1287
- loading: boolean;
1288
1287
  disabled: boolean;
1289
1288
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
1290
1289
  clearIcon: IconValue;
@@ -1294,7 +1293,7 @@ declare const VField: {
1294
1293
  persistentClear: boolean;
1295
1294
  singleLine: boolean;
1296
1295
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
1297
- loading: BooleanConstructor;
1296
+ loading: (StringConstructor | BooleanConstructor)[];
1298
1297
  theme: StringConstructor;
1299
1298
  appendInnerIcon: PropType<IconValue>;
1300
1299
  bgColor: StringConstructor;
@@ -1326,7 +1325,7 @@ declare const VField: {
1326
1325
  }, "$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">>> & {
1327
1326
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1328
1327
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
1329
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
1328
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
1330
1329
  $attrs: {
1331
1330
  [x: string]: unknown;
1332
1331
  };
@@ -1341,7 +1340,7 @@ declare const VField: {
1341
1340
  $emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
1342
1341
  $el: any;
1343
1342
  $options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
1344
- loading: BooleanConstructor;
1343
+ loading: (StringConstructor | BooleanConstructor)[];
1345
1344
  theme: StringConstructor;
1346
1345
  appendInnerIcon: PropType<IconValue>;
1347
1346
  bgColor: StringConstructor;
@@ -1383,7 +1382,6 @@ declare const VField: {
1383
1382
  reverse: boolean;
1384
1383
  error: boolean;
1385
1384
  active: boolean;
1386
- loading: boolean;
1387
1385
  disabled: boolean;
1388
1386
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
1389
1387
  clearIcon: IconValue;
@@ -1413,7 +1411,7 @@ declare const VField: {
1413
1411
  $nextTick: typeof vue.nextTick;
1414
1412
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
1415
1413
  } & Readonly<vue.ExtractPropTypes<Omit<{
1416
- loading: BooleanConstructor;
1414
+ loading: (StringConstructor | BooleanConstructor)[];
1417
1415
  theme: StringConstructor;
1418
1416
  appendInnerIcon: PropType<IconValue>;
1419
1417
  bgColor: StringConstructor;
@@ -1452,7 +1450,7 @@ declare const VField: {
1452
1450
  __isTeleport?: undefined;
1453
1451
  __isSuspense?: undefined;
1454
1452
  } & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
1455
- loading: BooleanConstructor;
1453
+ loading: (StringConstructor | BooleanConstructor)[];
1456
1454
  theme: StringConstructor;
1457
1455
  appendInnerIcon: PropType<IconValue>;
1458
1456
  bgColor: StringConstructor;
@@ -1494,7 +1492,6 @@ declare const VField: {
1494
1492
  reverse: boolean;
1495
1493
  error: boolean;
1496
1494
  active: boolean;
1497
- loading: boolean;
1498
1495
  disabled: boolean;
1499
1496
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
1500
1497
  clearIcon: IconValue;
@@ -1625,7 +1622,6 @@ declare const VAutocomplete: {
1625
1622
  transition: string | boolean | (vue.TransitionProps & {
1626
1623
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
1627
1624
  });
1628
- loading: boolean;
1629
1625
  menu: boolean;
1630
1626
  autofocus: boolean;
1631
1627
  eager: boolean;
@@ -1646,6 +1642,7 @@ declare const VAutocomplete: {
1646
1642
  persistentHint: boolean;
1647
1643
  persistentPlaceholder: boolean;
1648
1644
  persistentCounter: boolean;
1645
+ valueComparator: typeof deepEqual;
1649
1646
  itemTitle: SelectItemKey;
1650
1647
  itemValue: SelectItemKey;
1651
1648
  itemChildren: SelectItemKey;
@@ -1689,7 +1686,7 @@ declare const VAutocomplete: {
1689
1686
  default: string;
1690
1687
  validator: (v: any) => boolean;
1691
1688
  };
1692
- loading: BooleanConstructor;
1689
+ loading: (StringConstructor | BooleanConstructor)[];
1693
1690
  label: StringConstructor;
1694
1691
  prefix: StringConstructor;
1695
1692
  autofocus: BooleanConstructor;
@@ -1707,15 +1704,15 @@ declare const VAutocomplete: {
1707
1704
  default: string;
1708
1705
  validator: (v: any) => boolean;
1709
1706
  };
1710
- modelValue: {
1711
- type: vue.PropType<any>;
1712
- default: any;
1713
- };
1714
1707
  variant: {
1715
1708
  type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
1716
1709
  default: string;
1717
1710
  validator: (v: any) => boolean;
1718
1711
  };
1712
+ modelValue: {
1713
+ type: vue.PropType<any>;
1714
+ default: any;
1715
+ };
1719
1716
  bgColor: StringConstructor;
1720
1717
  prependIcon: vue.PropType<IconValue>;
1721
1718
  appendIcon: vue.PropType<IconValue>;
@@ -1973,6 +1970,10 @@ declare const VAutocomplete: {
1973
1970
  default: string;
1974
1971
  };
1975
1972
  openOnClear: BooleanConstructor;
1973
+ valueComparator: {
1974
+ type: vue.PropType<typeof deepEqual>;
1975
+ default: typeof deepEqual;
1976
+ };
1976
1977
  customFilter: vue.PropType<FilterFunction>;
1977
1978
  customKeyFilter: vue.PropType<FilterKeyFunctions>;
1978
1979
  filterKeys: {
@@ -1988,7 +1989,7 @@ declare const VAutocomplete: {
1988
1989
  }, "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">>> & {
1989
1990
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
1990
1991
  "onUpdate:search"?: ((val: any) => any) | undefined;
1991
- } & 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">;
1992
+ } & 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" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
1992
1993
  $attrs: {
1993
1994
  [x: string]: unknown;
1994
1995
  };
@@ -2032,7 +2033,7 @@ declare const VAutocomplete: {
2032
2033
  default: string;
2033
2034
  validator: (v: any) => boolean;
2034
2035
  };
2035
- loading: BooleanConstructor;
2036
+ loading: (StringConstructor | BooleanConstructor)[];
2036
2037
  label: StringConstructor;
2037
2038
  prefix: StringConstructor;
2038
2039
  autofocus: BooleanConstructor;
@@ -2050,15 +2051,15 @@ declare const VAutocomplete: {
2050
2051
  default: string;
2051
2052
  validator: (v: any) => boolean;
2052
2053
  };
2053
- modelValue: {
2054
- type: vue.PropType<any>;
2055
- default: any;
2056
- };
2057
2054
  variant: {
2058
2055
  type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
2059
2056
  default: string;
2060
2057
  validator: (v: any) => boolean;
2061
2058
  };
2059
+ modelValue: {
2060
+ type: vue.PropType<any>;
2061
+ default: any;
2062
+ };
2062
2063
  bgColor: StringConstructor;
2063
2064
  prependIcon: vue.PropType<IconValue>;
2064
2065
  appendIcon: vue.PropType<IconValue>;
@@ -2316,6 +2317,10 @@ declare const VAutocomplete: {
2316
2317
  default: string;
2317
2318
  };
2318
2319
  openOnClear: BooleanConstructor;
2320
+ valueComparator: {
2321
+ type: vue.PropType<typeof deepEqual>;
2322
+ default: typeof deepEqual;
2323
+ };
2319
2324
  customFilter: vue.PropType<FilterFunction>;
2320
2325
  customKeyFilter: vue.PropType<FilterKeyFunctions>;
2321
2326
  filterKeys: {
@@ -2358,7 +2363,6 @@ declare const VAutocomplete: {
2358
2363
  transition: string | boolean | (vue.TransitionProps & {
2359
2364
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
2360
2365
  });
2361
- loading: boolean;
2362
2366
  menu: boolean;
2363
2367
  autofocus: boolean;
2364
2368
  eager: boolean;
@@ -2379,6 +2383,7 @@ declare const VAutocomplete: {
2379
2383
  persistentHint: boolean;
2380
2384
  persistentPlaceholder: boolean;
2381
2385
  persistentCounter: boolean;
2386
+ valueComparator: typeof deepEqual;
2382
2387
  itemTitle: SelectItemKey;
2383
2388
  itemValue: SelectItemKey;
2384
2389
  itemChildren: SelectItemKey;
@@ -2442,7 +2447,7 @@ declare const VAutocomplete: {
2442
2447
  default: string;
2443
2448
  validator: (v: any) => boolean;
2444
2449
  };
2445
- loading: BooleanConstructor;
2450
+ loading: (StringConstructor | BooleanConstructor)[];
2446
2451
  label: StringConstructor;
2447
2452
  prefix: StringConstructor;
2448
2453
  autofocus: BooleanConstructor;
@@ -2460,15 +2465,15 @@ declare const VAutocomplete: {
2460
2465
  default: string;
2461
2466
  validator: (v: any) => boolean;
2462
2467
  };
2463
- modelValue: {
2464
- type: vue.PropType<any>;
2465
- default: any;
2466
- };
2467
2468
  variant: {
2468
2469
  type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
2469
2470
  default: string;
2470
2471
  validator: (v: any) => boolean;
2471
2472
  };
2473
+ modelValue: {
2474
+ type: vue.PropType<any>;
2475
+ default: any;
2476
+ };
2472
2477
  bgColor: StringConstructor;
2473
2478
  prependIcon: vue.PropType<IconValue>;
2474
2479
  appendIcon: vue.PropType<IconValue>;
@@ -2726,6 +2731,10 @@ declare const VAutocomplete: {
2726
2731
  default: string;
2727
2732
  };
2728
2733
  openOnClear: BooleanConstructor;
2734
+ valueComparator: {
2735
+ type: vue.PropType<typeof deepEqual>;
2736
+ default: typeof deepEqual;
2737
+ };
2729
2738
  customFilter: vue.PropType<FilterFunction>;
2730
2739
  customKeyFilter: vue.PropType<FilterKeyFunctions>;
2731
2740
  filterKeys: {
@@ -2789,7 +2798,7 @@ declare const VAutocomplete: {
2789
2798
  default: string;
2790
2799
  validator: (v: any) => boolean;
2791
2800
  };
2792
- loading: BooleanConstructor;
2801
+ loading: (StringConstructor | BooleanConstructor)[];
2793
2802
  label: StringConstructor;
2794
2803
  prefix: StringConstructor;
2795
2804
  autofocus: BooleanConstructor;
@@ -2807,15 +2816,15 @@ declare const VAutocomplete: {
2807
2816
  default: string;
2808
2817
  validator: (v: any) => boolean;
2809
2818
  };
2810
- modelValue: {
2811
- type: vue.PropType<any>;
2812
- default: any;
2813
- };
2814
2819
  variant: {
2815
2820
  type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
2816
2821
  default: string;
2817
2822
  validator: (v: any) => boolean;
2818
2823
  };
2824
+ modelValue: {
2825
+ type: vue.PropType<any>;
2826
+ default: any;
2827
+ };
2819
2828
  bgColor: StringConstructor;
2820
2829
  prependIcon: vue.PropType<IconValue>;
2821
2830
  appendIcon: vue.PropType<IconValue>;
@@ -3073,6 +3082,10 @@ declare const VAutocomplete: {
3073
3082
  default: string;
3074
3083
  };
3075
3084
  openOnClear: BooleanConstructor;
3085
+ valueComparator: {
3086
+ type: vue.PropType<typeof deepEqual>;
3087
+ default: typeof deepEqual;
3088
+ };
3076
3089
  customFilter: vue.PropType<FilterFunction>;
3077
3090
  customKeyFilter: vue.PropType<FilterKeyFunctions>;
3078
3091
  filterKeys: {
@@ -3115,7 +3128,6 @@ declare const VAutocomplete: {
3115
3128
  transition: string | boolean | (vue.TransitionProps & {
3116
3129
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
3117
3130
  });
3118
- loading: boolean;
3119
3131
  menu: boolean;
3120
3132
  autofocus: boolean;
3121
3133
  eager: boolean;
@@ -3136,6 +3148,7 @@ declare const VAutocomplete: {
3136
3148
  persistentHint: boolean;
3137
3149
  persistentPlaceholder: boolean;
3138
3150
  persistentCounter: boolean;
3151
+ valueComparator: typeof deepEqual;
3139
3152
  itemTitle: SelectItemKey;
3140
3153
  itemValue: SelectItemKey;
3141
3154
  itemChildren: SelectItemKey;
@@ -4039,7 +4052,7 @@ declare const VBtn: vue.DefineComponent<{
4039
4052
  validator: (v: any) => boolean;
4040
4053
  };
4041
4054
  location: PropType<Anchor>;
4042
- loading: BooleanConstructor;
4055
+ loading: (StringConstructor | BooleanConstructor)[];
4043
4056
  value: null;
4044
4057
  disabled: BooleanConstructor;
4045
4058
  selectedClass: StringConstructor;
@@ -4116,7 +4129,7 @@ declare const VBtn: vue.DefineComponent<{
4116
4129
  validator: (v: any) => boolean;
4117
4130
  };
4118
4131
  location: PropType<Anchor>;
4119
- loading: BooleanConstructor;
4132
+ loading: (StringConstructor | BooleanConstructor)[];
4120
4133
  value: null;
4121
4134
  disabled: BooleanConstructor;
4122
4135
  selectedClass: StringConstructor;
@@ -4169,7 +4182,6 @@ declare const VBtn: vue.DefineComponent<{
4169
4182
  exact: boolean;
4170
4183
  active: boolean;
4171
4184
  block: boolean;
4172
- loading: boolean;
4173
4185
  disabled: boolean;
4174
4186
  size: string | number;
4175
4187
  tag: string;
@@ -4399,7 +4411,7 @@ declare const VCard: vue.DefineComponent<{
4399
4411
  validator: (v: any) => boolean;
4400
4412
  };
4401
4413
  location: vue.PropType<Anchor>;
4402
- loading: BooleanConstructor;
4414
+ loading: (StringConstructor | BooleanConstructor)[];
4403
4415
  elevation: {
4404
4416
  type: (StringConstructor | NumberConstructor)[];
4405
4417
  validator(v: any): boolean;
@@ -4460,7 +4472,7 @@ declare const VCard: vue.DefineComponent<{
4460
4472
  validator: (v: any) => boolean;
4461
4473
  };
4462
4474
  location: vue.PropType<Anchor>;
4463
- loading: BooleanConstructor;
4475
+ loading: (StringConstructor | BooleanConstructor)[];
4464
4476
  elevation: {
4465
4477
  type: (StringConstructor | NumberConstructor)[];
4466
4478
  validator(v: any): boolean;
@@ -4499,7 +4511,6 @@ declare const VCard: vue.DefineComponent<{
4499
4511
  link: boolean;
4500
4512
  flat: boolean;
4501
4513
  exact: boolean;
4502
- loading: boolean;
4503
4514
  disabled: boolean;
4504
4515
  tag: string;
4505
4516
  rounded: string | number | boolean;
@@ -5129,8 +5140,8 @@ declare const VChip: vue.DefineComponent<{
5129
5140
  tag: string;
5130
5141
  rounded: string | number | boolean;
5131
5142
  density: Density;
5132
- modelValue: boolean;
5133
5143
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
5144
+ modelValue: boolean;
5134
5145
  ripple: boolean;
5135
5146
  closable: boolean;
5136
5147
  closeIcon: IconValue;
@@ -5216,8 +5227,8 @@ declare const VChipGroup: vue.DefineComponent<{
5216
5227
  multiple: boolean;
5217
5228
  tag: string;
5218
5229
  column: boolean;
5219
- modelValue: any;
5220
5230
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
5231
+ modelValue: any;
5221
5232
  selectedClass: string;
5222
5233
  valueComparator: typeof deepEqual;
5223
5234
  }>;
@@ -5368,7 +5379,6 @@ declare const VCombobox: {
5368
5379
  transition: string | boolean | (vue.TransitionProps & {
5369
5380
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
5370
5381
  });
5371
- loading: boolean;
5372
5382
  menu: boolean;
5373
5383
  autofocus: boolean;
5374
5384
  eager: boolean;
@@ -5389,6 +5399,7 @@ declare const VCombobox: {
5389
5399
  persistentHint: boolean;
5390
5400
  persistentPlaceholder: boolean;
5391
5401
  persistentCounter: boolean;
5402
+ valueComparator: typeof deepEqual;
5392
5403
  itemTitle: SelectItemKey;
5393
5404
  itemValue: SelectItemKey;
5394
5405
  itemChildren: SelectItemKey;
@@ -5432,7 +5443,7 @@ declare const VCombobox: {
5432
5443
  default: string;
5433
5444
  validator: (v: any) => boolean;
5434
5445
  };
5435
- loading: BooleanConstructor;
5446
+ loading: (StringConstructor | BooleanConstructor)[];
5436
5447
  label: StringConstructor;
5437
5448
  prefix: StringConstructor;
5438
5449
  autofocus: BooleanConstructor;
@@ -5450,15 +5461,15 @@ declare const VCombobox: {
5450
5461
  default: string;
5451
5462
  validator: (v: any) => boolean;
5452
5463
  };
5453
- modelValue: {
5454
- type: PropType<any>;
5455
- default: any;
5456
- };
5457
5464
  variant: {
5458
5465
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
5459
5466
  default: string;
5460
5467
  validator: (v: any) => boolean;
5461
5468
  };
5469
+ modelValue: {
5470
+ type: PropType<any>;
5471
+ default: any;
5472
+ };
5462
5473
  bgColor: StringConstructor;
5463
5474
  prependIcon: PropType<IconValue>;
5464
5475
  appendIcon: PropType<IconValue>;
@@ -5722,6 +5733,10 @@ declare const VCombobox: {
5722
5733
  default: string;
5723
5734
  };
5724
5735
  openOnClear: BooleanConstructor;
5736
+ valueComparator: {
5737
+ type: PropType<typeof deepEqual>;
5738
+ default: typeof deepEqual;
5739
+ };
5725
5740
  customFilter: PropType<FilterFunction>;
5726
5741
  customKeyFilter: PropType<FilterKeyFunctions>;
5727
5742
  filterKeys: {
@@ -5737,7 +5752,7 @@ declare const VCombobox: {
5737
5752
  }, "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">>> & {
5738
5753
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
5739
5754
  "onUpdate:search"?: ((val: string) => any) | undefined;
5740
- } & 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">;
5755
+ } & 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" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
5741
5756
  $attrs: {
5742
5757
  [x: string]: unknown;
5743
5758
  };
@@ -5781,7 +5796,7 @@ declare const VCombobox: {
5781
5796
  default: string;
5782
5797
  validator: (v: any) => boolean;
5783
5798
  };
5784
- loading: BooleanConstructor;
5799
+ loading: (StringConstructor | BooleanConstructor)[];
5785
5800
  label: StringConstructor;
5786
5801
  prefix: StringConstructor;
5787
5802
  autofocus: BooleanConstructor;
@@ -5799,15 +5814,15 @@ declare const VCombobox: {
5799
5814
  default: string;
5800
5815
  validator: (v: any) => boolean;
5801
5816
  };
5802
- modelValue: {
5803
- type: PropType<any>;
5804
- default: any;
5805
- };
5806
5817
  variant: {
5807
5818
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
5808
5819
  default: string;
5809
5820
  validator: (v: any) => boolean;
5810
5821
  };
5822
+ modelValue: {
5823
+ type: PropType<any>;
5824
+ default: any;
5825
+ };
5811
5826
  bgColor: StringConstructor;
5812
5827
  prependIcon: PropType<IconValue>;
5813
5828
  appendIcon: PropType<IconValue>;
@@ -6071,6 +6086,10 @@ declare const VCombobox: {
6071
6086
  default: string;
6072
6087
  };
6073
6088
  openOnClear: BooleanConstructor;
6089
+ valueComparator: {
6090
+ type: PropType<typeof deepEqual>;
6091
+ default: typeof deepEqual;
6092
+ };
6074
6093
  customFilter: PropType<FilterFunction>;
6075
6094
  customKeyFilter: PropType<FilterKeyFunctions>;
6076
6095
  filterKeys: {
@@ -6112,7 +6131,6 @@ declare const VCombobox: {
6112
6131
  transition: string | boolean | (vue.TransitionProps & {
6113
6132
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
6114
6133
  });
6115
- loading: boolean;
6116
6134
  menu: boolean;
6117
6135
  autofocus: boolean;
6118
6136
  eager: boolean;
@@ -6133,6 +6151,7 @@ declare const VCombobox: {
6133
6151
  persistentHint: boolean;
6134
6152
  persistentPlaceholder: boolean;
6135
6153
  persistentCounter: boolean;
6154
+ valueComparator: typeof deepEqual;
6136
6155
  itemTitle: SelectItemKey;
6137
6156
  itemValue: SelectItemKey;
6138
6157
  itemChildren: SelectItemKey;
@@ -6196,7 +6215,7 @@ declare const VCombobox: {
6196
6215
  default: string;
6197
6216
  validator: (v: any) => boolean;
6198
6217
  };
6199
- loading: BooleanConstructor;
6218
+ loading: (StringConstructor | BooleanConstructor)[];
6200
6219
  label: StringConstructor;
6201
6220
  prefix: StringConstructor;
6202
6221
  autofocus: BooleanConstructor;
@@ -6214,15 +6233,15 @@ declare const VCombobox: {
6214
6233
  default: string;
6215
6234
  validator: (v: any) => boolean;
6216
6235
  };
6217
- modelValue: {
6218
- type: PropType<any>;
6219
- default: any;
6220
- };
6221
6236
  variant: {
6222
6237
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
6223
6238
  default: string;
6224
6239
  validator: (v: any) => boolean;
6225
6240
  };
6241
+ modelValue: {
6242
+ type: PropType<any>;
6243
+ default: any;
6244
+ };
6226
6245
  bgColor: StringConstructor;
6227
6246
  prependIcon: PropType<IconValue>;
6228
6247
  appendIcon: PropType<IconValue>;
@@ -6486,6 +6505,10 @@ declare const VCombobox: {
6486
6505
  default: string;
6487
6506
  };
6488
6507
  openOnClear: BooleanConstructor;
6508
+ valueComparator: {
6509
+ type: PropType<typeof deepEqual>;
6510
+ default: typeof deepEqual;
6511
+ };
6489
6512
  customFilter: PropType<FilterFunction>;
6490
6513
  customKeyFilter: PropType<FilterKeyFunctions>;
6491
6514
  filterKeys: {
@@ -6548,7 +6571,7 @@ declare const VCombobox: {
6548
6571
  default: string;
6549
6572
  validator: (v: any) => boolean;
6550
6573
  };
6551
- loading: BooleanConstructor;
6574
+ loading: (StringConstructor | BooleanConstructor)[];
6552
6575
  label: StringConstructor;
6553
6576
  prefix: StringConstructor;
6554
6577
  autofocus: BooleanConstructor;
@@ -6566,15 +6589,15 @@ declare const VCombobox: {
6566
6589
  default: string;
6567
6590
  validator: (v: any) => boolean;
6568
6591
  };
6569
- modelValue: {
6570
- type: PropType<any>;
6571
- default: any;
6572
- };
6573
6592
  variant: {
6574
6593
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
6575
6594
  default: string;
6576
6595
  validator: (v: any) => boolean;
6577
6596
  };
6597
+ modelValue: {
6598
+ type: PropType<any>;
6599
+ default: any;
6600
+ };
6578
6601
  bgColor: StringConstructor;
6579
6602
  prependIcon: PropType<IconValue>;
6580
6603
  appendIcon: PropType<IconValue>;
@@ -6838,6 +6861,10 @@ declare const VCombobox: {
6838
6861
  default: string;
6839
6862
  };
6840
6863
  openOnClear: BooleanConstructor;
6864
+ valueComparator: {
6865
+ type: PropType<typeof deepEqual>;
6866
+ default: typeof deepEqual;
6867
+ };
6841
6868
  customFilter: PropType<FilterFunction>;
6842
6869
  customKeyFilter: PropType<FilterKeyFunctions>;
6843
6870
  filterKeys: {
@@ -6879,7 +6906,6 @@ declare const VCombobox: {
6879
6906
  transition: string | boolean | (vue.TransitionProps & {
6880
6907
  component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
6881
6908
  });
6882
- loading: boolean;
6883
6909
  menu: boolean;
6884
6910
  autofocus: boolean;
6885
6911
  eager: boolean;
@@ -6900,6 +6926,7 @@ declare const VCombobox: {
6900
6926
  persistentHint: boolean;
6901
6927
  persistentPlaceholder: boolean;
6902
6928
  persistentCounter: boolean;
6929
+ valueComparator: typeof deepEqual;
6903
6930
  itemTitle: SelectItemKey;
6904
6931
  itemValue: SelectItemKey;
6905
6932
  itemChildren: SelectItemKey;
@@ -7287,6 +7314,7 @@ declare const VOverlay: {
7287
7314
  noClickAnimation: boolean;
7288
7315
  persistent: boolean;
7289
7316
  scrim: string | boolean;
7317
+ _disableGlobalStack: boolean;
7290
7318
  }> & Omit<Readonly<ExtractPropTypes<Omit<{
7291
7319
  transition: {
7292
7320
  type: PropType<string | boolean | (vue.TransitionProps & {
@@ -7362,11 +7390,12 @@ declare const VOverlay: {
7362
7390
  type: (StringConstructor | NumberConstructor)[];
7363
7391
  default: number;
7364
7392
  };
7393
+ _disableGlobalStack: BooleanConstructor;
7365
7394
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
7366
7395
  onAfterLeave?: (() => any) | undefined;
7367
7396
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
7368
7397
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
7369
- } & 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">;
7398
+ } & 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">;
7370
7399
  $attrs: {
7371
7400
  [x: string]: unknown;
7372
7401
  };
@@ -7455,6 +7484,7 @@ declare const VOverlay: {
7455
7484
  type: (StringConstructor | NumberConstructor)[];
7456
7485
  default: number;
7457
7486
  };
7487
+ _disableGlobalStack: BooleanConstructor;
7458
7488
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
7459
7489
  onAfterLeave?: (() => any) | undefined;
7460
7490
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -7495,6 +7525,7 @@ declare const VOverlay: {
7495
7525
  noClickAnimation: boolean;
7496
7526
  persistent: boolean;
7497
7527
  scrim: string | boolean;
7528
+ _disableGlobalStack: boolean;
7498
7529
  }> & {
7499
7530
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
7500
7531
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -7590,6 +7621,7 @@ declare const VOverlay: {
7590
7621
  type: (StringConstructor | NumberConstructor)[];
7591
7622
  default: number;
7592
7623
  };
7624
+ _disableGlobalStack: BooleanConstructor;
7593
7625
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
7594
7626
  onAfterLeave?: (() => any) | undefined;
7595
7627
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -7680,6 +7712,7 @@ declare const VOverlay: {
7680
7712
  type: (StringConstructor | NumberConstructor)[];
7681
7713
  default: number;
7682
7714
  };
7715
+ _disableGlobalStack: BooleanConstructor;
7683
7716
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
7684
7717
  onAfterLeave?: (() => any) | undefined;
7685
7718
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -7720,6 +7753,7 @@ declare const VOverlay: {
7720
7753
  noClickAnimation: boolean;
7721
7754
  persistent: boolean;
7722
7755
  scrim: string | boolean;
7756
+ _disableGlobalStack: boolean;
7723
7757
  }> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
7724
7758
  $props: SlotsToProps<OverlaySlots>;
7725
7759
  });
@@ -8027,6 +8061,7 @@ declare const VDialog: {
8027
8061
  noClickAnimation: boolean;
8028
8062
  persistent: boolean;
8029
8063
  scrim: string | boolean;
8064
+ _disableGlobalStack: boolean;
8030
8065
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
8031
8066
  transition: {
8032
8067
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -8102,11 +8137,12 @@ declare const VDialog: {
8102
8137
  type: (StringConstructor | NumberConstructor)[];
8103
8138
  default: number;
8104
8139
  };
8140
+ _disableGlobalStack: BooleanConstructor;
8105
8141
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8106
8142
  onAfterLeave?: (() => any) | undefined;
8107
8143
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
8108
8144
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
8109
- } & 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">;
8145
+ } & 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">;
8110
8146
  $attrs: {
8111
8147
  [x: string]: unknown;
8112
8148
  };
@@ -8195,6 +8231,7 @@ declare const VDialog: {
8195
8231
  type: (StringConstructor | NumberConstructor)[];
8196
8232
  default: number;
8197
8233
  };
8234
+ _disableGlobalStack: BooleanConstructor;
8198
8235
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8199
8236
  onAfterLeave?: (() => any) | undefined;
8200
8237
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -8235,6 +8272,7 @@ declare const VDialog: {
8235
8272
  noClickAnimation: boolean;
8236
8273
  persistent: boolean;
8237
8274
  scrim: string | boolean;
8275
+ _disableGlobalStack: boolean;
8238
8276
  }> & {
8239
8277
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
8240
8278
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -8330,6 +8368,7 @@ declare const VDialog: {
8330
8368
  type: (StringConstructor | NumberConstructor)[];
8331
8369
  default: number;
8332
8370
  };
8371
+ _disableGlobalStack: BooleanConstructor;
8333
8372
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8334
8373
  onAfterLeave?: (() => any) | undefined;
8335
8374
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -8370,7 +8409,7 @@ declare const VDialog: {
8370
8409
  props: Record<string, any>;
8371
8410
  }) => vue.VNodeChild) | undefined;
8372
8411
  };
8373
- }, "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<{
8412
+ }, "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<{
8374
8413
  'update:modelValue': (value: boolean) => boolean;
8375
8414
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
8376
8415
  absolute: boolean;
@@ -8565,6 +8604,7 @@ declare const VDialog: {
8565
8604
  noClickAnimation: boolean;
8566
8605
  persistent: boolean;
8567
8606
  scrim: string | boolean;
8607
+ _disableGlobalStack: boolean;
8568
8608
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
8569
8609
  transition: {
8570
8610
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -8640,11 +8680,12 @@ declare const VDialog: {
8640
8680
  type: (StringConstructor | NumberConstructor)[];
8641
8681
  default: number;
8642
8682
  };
8683
+ _disableGlobalStack: BooleanConstructor;
8643
8684
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8644
8685
  onAfterLeave?: (() => any) | undefined;
8645
8686
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
8646
8687
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
8647
- } & 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">;
8688
+ } & 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">;
8648
8689
  $attrs: {
8649
8690
  [x: string]: unknown;
8650
8691
  };
@@ -8733,6 +8774,7 @@ declare const VDialog: {
8733
8774
  type: (StringConstructor | NumberConstructor)[];
8734
8775
  default: number;
8735
8776
  };
8777
+ _disableGlobalStack: BooleanConstructor;
8736
8778
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8737
8779
  onAfterLeave?: (() => any) | undefined;
8738
8780
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -8773,6 +8815,7 @@ declare const VDialog: {
8773
8815
  noClickAnimation: boolean;
8774
8816
  persistent: boolean;
8775
8817
  scrim: string | boolean;
8818
+ _disableGlobalStack: boolean;
8776
8819
  }> & {
8777
8820
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
8778
8821
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -8868,6 +8911,7 @@ declare const VDialog: {
8868
8911
  type: (StringConstructor | NumberConstructor)[];
8869
8912
  default: number;
8870
8913
  };
8914
+ _disableGlobalStack: BooleanConstructor;
8871
8915
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
8872
8916
  onAfterLeave?: (() => any) | undefined;
8873
8917
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -8908,7 +8952,7 @@ declare const VDialog: {
8908
8952
  props: Record<string, any>;
8909
8953
  }) => vue.VNodeChild) | undefined;
8910
8954
  };
8911
- }, "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;
8955
+ }, "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;
8912
8956
  __isFragment?: undefined;
8913
8957
  __isTeleport?: undefined;
8914
8958
  __isSuspense?: undefined;
@@ -9051,6 +9095,7 @@ declare const VDialog: {
9051
9095
  noClickAnimation: boolean;
9052
9096
  persistent: boolean;
9053
9097
  scrim: string | boolean;
9098
+ _disableGlobalStack: boolean;
9054
9099
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
9055
9100
  transition: {
9056
9101
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -9126,11 +9171,12 @@ declare const VDialog: {
9126
9171
  type: (StringConstructor | NumberConstructor)[];
9127
9172
  default: number;
9128
9173
  };
9174
+ _disableGlobalStack: BooleanConstructor;
9129
9175
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
9130
9176
  onAfterLeave?: (() => any) | undefined;
9131
9177
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
9132
9178
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
9133
- } & 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">;
9179
+ } & 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">;
9134
9180
  $attrs: {
9135
9181
  [x: string]: unknown;
9136
9182
  };
@@ -9219,6 +9265,7 @@ declare const VDialog: {
9219
9265
  type: (StringConstructor | NumberConstructor)[];
9220
9266
  default: number;
9221
9267
  };
9268
+ _disableGlobalStack: BooleanConstructor;
9222
9269
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
9223
9270
  onAfterLeave?: (() => any) | undefined;
9224
9271
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -9259,6 +9306,7 @@ declare const VDialog: {
9259
9306
  noClickAnimation: boolean;
9260
9307
  persistent: boolean;
9261
9308
  scrim: string | boolean;
9309
+ _disableGlobalStack: boolean;
9262
9310
  }> & {
9263
9311
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
9264
9312
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -9354,6 +9402,7 @@ declare const VDialog: {
9354
9402
  type: (StringConstructor | NumberConstructor)[];
9355
9403
  default: number;
9356
9404
  };
9405
+ _disableGlobalStack: BooleanConstructor;
9357
9406
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
9358
9407
  onAfterLeave?: (() => any) | undefined;
9359
9408
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -9394,7 +9443,7 @@ declare const VDialog: {
9394
9443
  props: Record<string, any>;
9395
9444
  }) => vue.VNodeChild) | undefined;
9396
9445
  };
9397
- }, "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<{
9446
+ }, "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<{
9398
9447
  'update:modelValue': (value: boolean) => boolean;
9399
9448
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
9400
9449
  absolute: boolean;
@@ -9508,8 +9557,8 @@ declare const VExpansionPanels: vue.DefineComponent<{
9508
9557
  multiple: boolean;
9509
9558
  readonly: boolean;
9510
9559
  tag: string;
9511
- modelValue: any;
9512
9560
  variant: "default" | "inset" | "accordion" | "popout";
9561
+ modelValue: any;
9513
9562
  }>;
9514
9563
  declare type VExpansionPanels = InstanceType<typeof VExpansionPanels>;
9515
9564
 
@@ -9664,7 +9713,7 @@ declare const VFieldLabel: vue.DefineComponent<{
9664
9713
  declare type VFieldLabel = InstanceType<typeof VFieldLabel>;
9665
9714
 
9666
9715
  declare const VFileInput: vue.DefineComponent<{
9667
- loading: BooleanConstructor;
9716
+ loading: (StringConstructor | BooleanConstructor)[];
9668
9717
  theme: StringConstructor;
9669
9718
  appendInnerIcon: PropType<IconValue>;
9670
9719
  bgColor: StringConstructor;
@@ -9983,7 +10032,7 @@ declare const VFileInput: vue.DefineComponent<{
9983
10032
  'click:control': (e: MouseEvent) => true;
9984
10033
  'update:modelValue': (files: File[]) => true;
9985
10034
  }, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
9986
- loading: BooleanConstructor;
10035
+ loading: (StringConstructor | BooleanConstructor)[];
9987
10036
  theme: StringConstructor;
9988
10037
  appendInnerIcon: PropType<IconValue>;
9989
10038
  bgColor: StringConstructor;
@@ -10085,15 +10134,14 @@ declare const VFileInput: vue.DefineComponent<{
10085
10134
  error: boolean;
10086
10135
  active: boolean;
10087
10136
  direction: "horizontal" | "vertical";
10088
- loading: boolean;
10089
10137
  disabled: boolean;
10090
10138
  multiple: boolean;
10091
10139
  readonly: boolean;
10092
10140
  messages: string | string[];
10093
10141
  counter: boolean;
10094
10142
  density: Density;
10095
- modelValue: File[];
10096
10143
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
10144
+ modelValue: File[];
10097
10145
  prependIcon: (string & {}) | IconValue;
10098
10146
  clearIcon: IconValue;
10099
10147
  focused: boolean;
@@ -12485,6 +12533,7 @@ declare const VMenu: {
12485
12533
  noClickAnimation: boolean;
12486
12534
  persistent: boolean;
12487
12535
  scrim: string | boolean;
12536
+ _disableGlobalStack: boolean;
12488
12537
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
12489
12538
  transition: {
12490
12539
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -12560,11 +12609,12 @@ declare const VMenu: {
12560
12609
  type: (StringConstructor | NumberConstructor)[];
12561
12610
  default: number;
12562
12611
  };
12612
+ _disableGlobalStack: BooleanConstructor;
12563
12613
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
12564
12614
  onAfterLeave?: (() => any) | undefined;
12565
12615
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
12566
12616
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
12567
- } & 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">;
12617
+ } & 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">;
12568
12618
  $attrs: {
12569
12619
  [x: string]: unknown;
12570
12620
  };
@@ -12653,6 +12703,7 @@ declare const VMenu: {
12653
12703
  type: (StringConstructor | NumberConstructor)[];
12654
12704
  default: number;
12655
12705
  };
12706
+ _disableGlobalStack: BooleanConstructor;
12656
12707
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
12657
12708
  onAfterLeave?: (() => any) | undefined;
12658
12709
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -12693,6 +12744,7 @@ declare const VMenu: {
12693
12744
  noClickAnimation: boolean;
12694
12745
  persistent: boolean;
12695
12746
  scrim: string | boolean;
12747
+ _disableGlobalStack: boolean;
12696
12748
  }> & {
12697
12749
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
12698
12750
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -12788,6 +12840,7 @@ declare const VMenu: {
12788
12840
  type: (StringConstructor | NumberConstructor)[];
12789
12841
  default: number;
12790
12842
  };
12843
+ _disableGlobalStack: BooleanConstructor;
12791
12844
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
12792
12845
  onAfterLeave?: (() => any) | undefined;
12793
12846
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -12828,7 +12881,7 @@ declare const VMenu: {
12828
12881
  props: Record<string, any>;
12829
12882
  }) => vue.VNodeChild) | undefined;
12830
12883
  };
12831
- }, "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<{
12884
+ }, "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<{
12832
12885
  'update:modelValue': (value: boolean) => boolean;
12833
12886
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
12834
12887
  location: Anchor;
@@ -13030,6 +13083,7 @@ declare const VMenu: {
13030
13083
  noClickAnimation: boolean;
13031
13084
  persistent: boolean;
13032
13085
  scrim: string | boolean;
13086
+ _disableGlobalStack: boolean;
13033
13087
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
13034
13088
  transition: {
13035
13089
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -13105,11 +13159,12 @@ declare const VMenu: {
13105
13159
  type: (StringConstructor | NumberConstructor)[];
13106
13160
  default: number;
13107
13161
  };
13162
+ _disableGlobalStack: BooleanConstructor;
13108
13163
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13109
13164
  onAfterLeave?: (() => any) | undefined;
13110
13165
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
13111
13166
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
13112
- } & 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">;
13167
+ } & 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">;
13113
13168
  $attrs: {
13114
13169
  [x: string]: unknown;
13115
13170
  };
@@ -13198,6 +13253,7 @@ declare const VMenu: {
13198
13253
  type: (StringConstructor | NumberConstructor)[];
13199
13254
  default: number;
13200
13255
  };
13256
+ _disableGlobalStack: BooleanConstructor;
13201
13257
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13202
13258
  onAfterLeave?: (() => any) | undefined;
13203
13259
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -13238,6 +13294,7 @@ declare const VMenu: {
13238
13294
  noClickAnimation: boolean;
13239
13295
  persistent: boolean;
13240
13296
  scrim: string | boolean;
13297
+ _disableGlobalStack: boolean;
13241
13298
  }> & {
13242
13299
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
13243
13300
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -13333,6 +13390,7 @@ declare const VMenu: {
13333
13390
  type: (StringConstructor | NumberConstructor)[];
13334
13391
  default: number;
13335
13392
  };
13393
+ _disableGlobalStack: BooleanConstructor;
13336
13394
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13337
13395
  onAfterLeave?: (() => any) | undefined;
13338
13396
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -13373,7 +13431,7 @@ declare const VMenu: {
13373
13431
  props: Record<string, any>;
13374
13432
  }) => vue.VNodeChild) | undefined;
13375
13433
  };
13376
- }, "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;
13434
+ }, "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;
13377
13435
  __isFragment?: undefined;
13378
13436
  __isTeleport?: undefined;
13379
13437
  __isSuspense?: undefined;
@@ -13525,6 +13583,7 @@ declare const VMenu: {
13525
13583
  noClickAnimation: boolean;
13526
13584
  persistent: boolean;
13527
13585
  scrim: string | boolean;
13586
+ _disableGlobalStack: boolean;
13528
13587
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
13529
13588
  transition: {
13530
13589
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -13600,11 +13659,12 @@ declare const VMenu: {
13600
13659
  type: (StringConstructor | NumberConstructor)[];
13601
13660
  default: number;
13602
13661
  };
13662
+ _disableGlobalStack: BooleanConstructor;
13603
13663
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13604
13664
  onAfterLeave?: (() => any) | undefined;
13605
13665
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
13606
13666
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
13607
- } & 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">;
13667
+ } & 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">;
13608
13668
  $attrs: {
13609
13669
  [x: string]: unknown;
13610
13670
  };
@@ -13693,6 +13753,7 @@ declare const VMenu: {
13693
13753
  type: (StringConstructor | NumberConstructor)[];
13694
13754
  default: number;
13695
13755
  };
13756
+ _disableGlobalStack: BooleanConstructor;
13696
13757
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13697
13758
  onAfterLeave?: (() => any) | undefined;
13698
13759
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -13733,6 +13794,7 @@ declare const VMenu: {
13733
13794
  noClickAnimation: boolean;
13734
13795
  persistent: boolean;
13735
13796
  scrim: string | boolean;
13797
+ _disableGlobalStack: boolean;
13736
13798
  }> & {
13737
13799
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
13738
13800
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -13828,6 +13890,7 @@ declare const VMenu: {
13828
13890
  type: (StringConstructor | NumberConstructor)[];
13829
13891
  default: number;
13830
13892
  };
13893
+ _disableGlobalStack: BooleanConstructor;
13831
13894
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
13832
13895
  onAfterLeave?: (() => any) | undefined;
13833
13896
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -13868,7 +13931,7 @@ declare const VMenu: {
13868
13931
  props: Record<string, any>;
13869
13932
  }) => vue.VNodeChild) | undefined;
13870
13933
  };
13871
- }, "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<{
13934
+ }, "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<{
13872
13935
  'update:modelValue': (value: boolean) => boolean;
13873
13936
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
13874
13937
  location: Anchor;
@@ -14511,8 +14574,8 @@ declare const VPagination: vue.DefineComponent<{
14511
14574
  ellipsis: string;
14512
14575
  rounded: string | number | boolean;
14513
14576
  density: Density;
14514
- modelValue: number;
14515
14577
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
14578
+ modelValue: number;
14516
14579
  nextIcon: IconValue;
14517
14580
  prevIcon: IconValue;
14518
14581
  firstIcon: IconValue;
@@ -15561,7 +15624,6 @@ declare const VSelect: {
15561
15624
  target: PropType<HTMLElement>;
15562
15625
  }>>, {}>;
15563
15626
  };
15564
- loading: boolean;
15565
15627
  menu: boolean;
15566
15628
  autofocus: boolean;
15567
15629
  eager: boolean;
@@ -15582,6 +15644,7 @@ declare const VSelect: {
15582
15644
  persistentHint: boolean;
15583
15645
  persistentPlaceholder: boolean;
15584
15646
  persistentCounter: boolean;
15647
+ valueComparator: typeof deepEqual;
15585
15648
  itemTitle: SelectItemKey;
15586
15649
  itemValue: SelectItemKey;
15587
15650
  itemChildren: SelectItemKey;
@@ -15634,7 +15697,7 @@ declare const VSelect: {
15634
15697
  default: string;
15635
15698
  validator: (v: any) => boolean;
15636
15699
  };
15637
- loading: BooleanConstructor;
15700
+ loading: (StringConstructor | BooleanConstructor)[];
15638
15701
  label: StringConstructor;
15639
15702
  prefix: StringConstructor;
15640
15703
  autofocus: BooleanConstructor;
@@ -15652,15 +15715,15 @@ declare const VSelect: {
15652
15715
  default: string;
15653
15716
  validator: (v: any) => boolean;
15654
15717
  };
15655
- modelValue: {
15656
- type: PropType<any>;
15657
- default: any;
15658
- };
15659
15718
  variant: {
15660
15719
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
15661
15720
  default: string;
15662
15721
  validator: (v: any) => boolean;
15663
15722
  };
15723
+ modelValue: {
15724
+ type: PropType<any>;
15725
+ default: any;
15726
+ };
15664
15727
  bgColor: StringConstructor;
15665
15728
  prependIcon: PropType<IconValue>;
15666
15729
  appendIcon: PropType<IconValue>;
@@ -15918,9 +15981,13 @@ declare const VSelect: {
15918
15981
  default: string;
15919
15982
  };
15920
15983
  openOnClear: BooleanConstructor;
15984
+ valueComparator: {
15985
+ type: PropType<typeof deepEqual>;
15986
+ default: typeof deepEqual;
15987
+ };
15921
15988
  }, "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">>> & {
15922
15989
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
15923
- } & 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">;
15990
+ } & 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" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
15924
15991
  $attrs: {
15925
15992
  [x: string]: unknown;
15926
15993
  };
@@ -15976,7 +16043,7 @@ declare const VSelect: {
15976
16043
  default: string;
15977
16044
  validator: (v: any) => boolean;
15978
16045
  };
15979
- loading: BooleanConstructor;
16046
+ loading: (StringConstructor | BooleanConstructor)[];
15980
16047
  label: StringConstructor;
15981
16048
  prefix: StringConstructor;
15982
16049
  autofocus: BooleanConstructor;
@@ -15994,15 +16061,15 @@ declare const VSelect: {
15994
16061
  default: string;
15995
16062
  validator: (v: any) => boolean;
15996
16063
  };
15997
- modelValue: {
15998
- type: PropType<any>;
15999
- default: any;
16000
- };
16001
16064
  variant: {
16002
16065
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
16003
16066
  default: string;
16004
16067
  validator: (v: any) => boolean;
16005
16068
  };
16069
+ modelValue: {
16070
+ type: PropType<any>;
16071
+ default: any;
16072
+ };
16006
16073
  bgColor: StringConstructor;
16007
16074
  prependIcon: PropType<IconValue>;
16008
16075
  appendIcon: PropType<IconValue>;
@@ -16260,6 +16327,10 @@ declare const VSelect: {
16260
16327
  default: string;
16261
16328
  };
16262
16329
  openOnClear: BooleanConstructor;
16330
+ valueComparator: {
16331
+ type: PropType<typeof deepEqual>;
16332
+ default: typeof deepEqual;
16333
+ };
16263
16334
  }, "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">>> & {
16264
16335
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
16265
16336
  }, {
@@ -16285,7 +16356,6 @@ declare const VSelect: {
16285
16356
  target: PropType<HTMLElement>;
16286
16357
  }>>, {}>;
16287
16358
  };
16288
- loading: boolean;
16289
16359
  menu: boolean;
16290
16360
  autofocus: boolean;
16291
16361
  eager: boolean;
@@ -16306,6 +16376,7 @@ declare const VSelect: {
16306
16376
  persistentHint: boolean;
16307
16377
  persistentPlaceholder: boolean;
16308
16378
  persistentCounter: boolean;
16379
+ valueComparator: typeof deepEqual;
16309
16380
  itemTitle: SelectItemKey;
16310
16381
  itemValue: SelectItemKey;
16311
16382
  itemChildren: SelectItemKey;
@@ -16378,7 +16449,7 @@ declare const VSelect: {
16378
16449
  default: string;
16379
16450
  validator: (v: any) => boolean;
16380
16451
  };
16381
- loading: BooleanConstructor;
16452
+ loading: (StringConstructor | BooleanConstructor)[];
16382
16453
  label: StringConstructor;
16383
16454
  prefix: StringConstructor;
16384
16455
  autofocus: BooleanConstructor;
@@ -16396,15 +16467,15 @@ declare const VSelect: {
16396
16467
  default: string;
16397
16468
  validator: (v: any) => boolean;
16398
16469
  };
16399
- modelValue: {
16400
- type: PropType<any>;
16401
- default: any;
16402
- };
16403
16470
  variant: {
16404
16471
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
16405
16472
  default: string;
16406
16473
  validator: (v: any) => boolean;
16407
16474
  };
16475
+ modelValue: {
16476
+ type: PropType<any>;
16477
+ default: any;
16478
+ };
16408
16479
  bgColor: StringConstructor;
16409
16480
  prependIcon: PropType<IconValue>;
16410
16481
  appendIcon: PropType<IconValue>;
@@ -16662,6 +16733,10 @@ declare const VSelect: {
16662
16733
  default: string;
16663
16734
  };
16664
16735
  openOnClear: BooleanConstructor;
16736
+ valueComparator: {
16737
+ type: PropType<typeof deepEqual>;
16738
+ default: typeof deepEqual;
16739
+ };
16665
16740
  }, "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">>> & {
16666
16741
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
16667
16742
  } & vue.ShallowUnwrapRef<{
@@ -16715,7 +16790,7 @@ declare const VSelect: {
16715
16790
  default: string;
16716
16791
  validator: (v: any) => boolean;
16717
16792
  };
16718
- loading: BooleanConstructor;
16793
+ loading: (StringConstructor | BooleanConstructor)[];
16719
16794
  label: StringConstructor;
16720
16795
  prefix: StringConstructor;
16721
16796
  autofocus: BooleanConstructor;
@@ -16733,15 +16808,15 @@ declare const VSelect: {
16733
16808
  default: string;
16734
16809
  validator: (v: any) => boolean;
16735
16810
  };
16736
- modelValue: {
16737
- type: PropType<any>;
16738
- default: any;
16739
- };
16740
16811
  variant: {
16741
16812
  type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
16742
16813
  default: string;
16743
16814
  validator: (v: any) => boolean;
16744
16815
  };
16816
+ modelValue: {
16817
+ type: PropType<any>;
16818
+ default: any;
16819
+ };
16745
16820
  bgColor: StringConstructor;
16746
16821
  prependIcon: PropType<IconValue>;
16747
16822
  appendIcon: PropType<IconValue>;
@@ -16999,6 +17074,10 @@ declare const VSelect: {
16999
17074
  default: string;
17000
17075
  };
17001
17076
  openOnClear: BooleanConstructor;
17077
+ valueComparator: {
17078
+ type: PropType<typeof deepEqual>;
17079
+ default: typeof deepEqual;
17080
+ };
17002
17081
  }, "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">>> & {
17003
17082
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
17004
17083
  }, {
@@ -17024,7 +17103,6 @@ declare const VSelect: {
17024
17103
  target: PropType<HTMLElement>;
17025
17104
  }>>, {}>;
17026
17105
  };
17027
- loading: boolean;
17028
17106
  menu: boolean;
17029
17107
  autofocus: boolean;
17030
17108
  eager: boolean;
@@ -17045,6 +17123,7 @@ declare const VSelect: {
17045
17123
  persistentHint: boolean;
17046
17124
  persistentPlaceholder: boolean;
17047
17125
  persistentCounter: boolean;
17126
+ valueComparator: typeof deepEqual;
17048
17127
  itemTitle: SelectItemKey;
17049
17128
  itemValue: SelectItemKey;
17050
17129
  itemChildren: SelectItemKey;
@@ -18164,8 +18243,8 @@ declare const VSnackbar: {
18164
18243
  timeout: string | number;
18165
18244
  vertical: boolean;
18166
18245
  rounded: string | number | boolean;
18167
- modelValue: boolean;
18168
18246
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
18247
+ modelValue: boolean;
18169
18248
  activatorProps: Record<string, any>;
18170
18249
  openOnClick: boolean;
18171
18250
  openOnHover: boolean;
@@ -18270,7 +18349,7 @@ declare const VSnackbar: {
18270
18349
  vertical: BooleanConstructor;
18271
18350
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">>> & {
18272
18351
  "onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
18273
- } & 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">;
18352
+ } & 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">;
18274
18353
  $attrs: {
18275
18354
  [x: string]: unknown;
18276
18355
  };
@@ -18405,6 +18484,7 @@ declare const VSnackbar: {
18405
18484
  noClickAnimation: boolean;
18406
18485
  persistent: boolean;
18407
18486
  scrim: string | boolean;
18487
+ _disableGlobalStack: boolean;
18408
18488
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
18409
18489
  transition: {
18410
18490
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -18480,11 +18560,12 @@ declare const VSnackbar: {
18480
18560
  type: (StringConstructor | NumberConstructor)[];
18481
18561
  default: number;
18482
18562
  };
18563
+ _disableGlobalStack: BooleanConstructor;
18483
18564
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
18484
18565
  onAfterLeave?: (() => any) | undefined;
18485
18566
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
18486
18567
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
18487
- } & 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">;
18568
+ } & 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">;
18488
18569
  $attrs: {
18489
18570
  [x: string]: unknown;
18490
18571
  };
@@ -18573,6 +18654,7 @@ declare const VSnackbar: {
18573
18654
  type: (StringConstructor | NumberConstructor)[];
18574
18655
  default: number;
18575
18656
  };
18657
+ _disableGlobalStack: BooleanConstructor;
18576
18658
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
18577
18659
  onAfterLeave?: (() => any) | undefined;
18578
18660
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -18613,6 +18695,7 @@ declare const VSnackbar: {
18613
18695
  noClickAnimation: boolean;
18614
18696
  persistent: boolean;
18615
18697
  scrim: string | boolean;
18698
+ _disableGlobalStack: boolean;
18616
18699
  }> & {
18617
18700
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
18618
18701
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -18708,6 +18791,7 @@ declare const VSnackbar: {
18708
18791
  type: (StringConstructor | NumberConstructor)[];
18709
18792
  default: number;
18710
18793
  };
18794
+ _disableGlobalStack: BooleanConstructor;
18711
18795
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
18712
18796
  onAfterLeave?: (() => any) | undefined;
18713
18797
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -18748,7 +18832,7 @@ declare const VSnackbar: {
18748
18832
  props: Record<string, any>;
18749
18833
  }) => vue.VNodeChild) | undefined;
18750
18834
  };
18751
- }, "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<{
18835
+ }, "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<{
18752
18836
  'update:modelValue': (v: boolean) => boolean;
18753
18837
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">, string, {
18754
18838
  absolute: boolean;
@@ -18763,8 +18847,8 @@ declare const VSnackbar: {
18763
18847
  timeout: string | number;
18764
18848
  vertical: boolean;
18765
18849
  rounded: string | number | boolean;
18766
- modelValue: boolean;
18767
18850
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
18851
+ modelValue: boolean;
18768
18852
  activatorProps: Record<string, any>;
18769
18853
  openOnClick: boolean;
18770
18854
  openOnHover: boolean;
@@ -18917,6 +19001,7 @@ declare const VSnackbar: {
18917
19001
  noClickAnimation: boolean;
18918
19002
  persistent: boolean;
18919
19003
  scrim: string | boolean;
19004
+ _disableGlobalStack: boolean;
18920
19005
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
18921
19006
  transition: {
18922
19007
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -18992,11 +19077,12 @@ declare const VSnackbar: {
18992
19077
  type: (StringConstructor | NumberConstructor)[];
18993
19078
  default: number;
18994
19079
  };
19080
+ _disableGlobalStack: BooleanConstructor;
18995
19081
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
18996
19082
  onAfterLeave?: (() => any) | undefined;
18997
19083
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
18998
19084
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
18999
- } & 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">;
19085
+ } & 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">;
19000
19086
  $attrs: {
19001
19087
  [x: string]: unknown;
19002
19088
  };
@@ -19085,6 +19171,7 @@ declare const VSnackbar: {
19085
19171
  type: (StringConstructor | NumberConstructor)[];
19086
19172
  default: number;
19087
19173
  };
19174
+ _disableGlobalStack: BooleanConstructor;
19088
19175
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19089
19176
  onAfterLeave?: (() => any) | undefined;
19090
19177
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -19125,6 +19212,7 @@ declare const VSnackbar: {
19125
19212
  noClickAnimation: boolean;
19126
19213
  persistent: boolean;
19127
19214
  scrim: string | boolean;
19215
+ _disableGlobalStack: boolean;
19128
19216
  }> & {
19129
19217
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
19130
19218
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -19220,6 +19308,7 @@ declare const VSnackbar: {
19220
19308
  type: (StringConstructor | NumberConstructor)[];
19221
19309
  default: number;
19222
19310
  };
19311
+ _disableGlobalStack: BooleanConstructor;
19223
19312
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19224
19313
  onAfterLeave?: (() => any) | undefined;
19225
19314
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -19260,7 +19349,7 @@ declare const VSnackbar: {
19260
19349
  props: Record<string, any>;
19261
19350
  }) => vue.VNodeChild) | undefined;
19262
19351
  };
19263
- }, "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;
19352
+ }, "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;
19264
19353
  __isFragment?: undefined;
19265
19354
  __isTeleport?: undefined;
19266
19355
  __isSuspense?: undefined;
@@ -19385,6 +19474,7 @@ declare const VSnackbar: {
19385
19474
  noClickAnimation: boolean;
19386
19475
  persistent: boolean;
19387
19476
  scrim: string | boolean;
19477
+ _disableGlobalStack: boolean;
19388
19478
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
19389
19479
  transition: {
19390
19480
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -19460,11 +19550,12 @@ declare const VSnackbar: {
19460
19550
  type: (StringConstructor | NumberConstructor)[];
19461
19551
  default: number;
19462
19552
  };
19553
+ _disableGlobalStack: BooleanConstructor;
19463
19554
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19464
19555
  onAfterLeave?: (() => any) | undefined;
19465
19556
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
19466
19557
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
19467
- } & 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">;
19558
+ } & 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">;
19468
19559
  $attrs: {
19469
19560
  [x: string]: unknown;
19470
19561
  };
@@ -19553,6 +19644,7 @@ declare const VSnackbar: {
19553
19644
  type: (StringConstructor | NumberConstructor)[];
19554
19645
  default: number;
19555
19646
  };
19647
+ _disableGlobalStack: BooleanConstructor;
19556
19648
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19557
19649
  onAfterLeave?: (() => any) | undefined;
19558
19650
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -19593,6 +19685,7 @@ declare const VSnackbar: {
19593
19685
  noClickAnimation: boolean;
19594
19686
  persistent: boolean;
19595
19687
  scrim: string | boolean;
19688
+ _disableGlobalStack: boolean;
19596
19689
  }> & {
19597
19690
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
19598
19691
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -19688,6 +19781,7 @@ declare const VSnackbar: {
19688
19781
  type: (StringConstructor | NumberConstructor)[];
19689
19782
  default: number;
19690
19783
  };
19784
+ _disableGlobalStack: BooleanConstructor;
19691
19785
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
19692
19786
  onAfterLeave?: (() => any) | undefined;
19693
19787
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -19728,7 +19822,7 @@ declare const VSnackbar: {
19728
19822
  props: Record<string, any>;
19729
19823
  }) => vue.VNodeChild) | undefined;
19730
19824
  };
19731
- }, "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<{
19825
+ }, "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<{
19732
19826
  'update:modelValue': (v: boolean) => boolean;
19733
19827
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">, string, {
19734
19828
  absolute: boolean;
@@ -19743,8 +19837,8 @@ declare const VSnackbar: {
19743
19837
  timeout: string | number;
19744
19838
  vertical: boolean;
19745
19839
  rounded: string | number | boolean;
19746
- modelValue: boolean;
19747
19840
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
19841
+ modelValue: boolean;
19748
19842
  activatorProps: Record<string, any>;
19749
19843
  openOnClick: boolean;
19750
19844
  openOnHover: boolean;
@@ -20213,7 +20307,7 @@ declare const VTable: vue.DefineComponent<{
20213
20307
  declare type VTable = InstanceType<typeof VTable>;
20214
20308
 
20215
20309
  declare const VTextarea: vue.DefineComponent<{
20216
- loading: BooleanConstructor;
20310
+ loading: (StringConstructor | BooleanConstructor)[];
20217
20311
  theme: StringConstructor;
20218
20312
  appendInnerIcon: PropType<IconValue>;
20219
20313
  bgColor: StringConstructor;
@@ -20525,7 +20619,7 @@ declare const VTextarea: vue.DefineComponent<{
20525
20619
  'update:focused': (focused: boolean) => true;
20526
20620
  'update:modelValue': (val: string) => true;
20527
20621
  }, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
20528
- loading: BooleanConstructor;
20622
+ loading: (StringConstructor | BooleanConstructor)[];
20529
20623
  theme: StringConstructor;
20530
20624
  appendInnerIcon: PropType<IconValue>;
20531
20625
  bgColor: StringConstructor;
@@ -20620,7 +20714,6 @@ declare const VTextarea: vue.DefineComponent<{
20620
20714
  error: boolean;
20621
20715
  active: boolean;
20622
20716
  direction: "horizontal" | "vertical";
20623
- loading: boolean;
20624
20717
  autofocus: boolean;
20625
20718
  disabled: boolean;
20626
20719
  readonly: boolean;
@@ -20655,7 +20748,6 @@ declare const VTextField: {
20655
20748
  error: boolean;
20656
20749
  active: boolean;
20657
20750
  direction: "horizontal" | "vertical";
20658
- loading: boolean;
20659
20751
  autofocus: boolean;
20660
20752
  disabled: boolean;
20661
20753
  readonly: boolean;
@@ -20675,7 +20767,7 @@ declare const VTextField: {
20675
20767
  persistentPlaceholder: boolean;
20676
20768
  persistentCounter: boolean;
20677
20769
  }> & Omit<Readonly<ExtractPropTypes<Omit<{
20678
- loading: BooleanConstructor;
20770
+ loading: (StringConstructor | BooleanConstructor)[];
20679
20771
  theme: StringConstructor;
20680
20772
  appendInnerIcon: PropType<IconValue>;
20681
20773
  bgColor: StringConstructor;
@@ -20759,7 +20851,7 @@ declare const VTextField: {
20759
20851
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
20760
20852
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
20761
20853
  "onClick:input"?: ((e: MouseEvent) => any) | undefined;
20762
- } & 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">;
20854
+ } & 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">;
20763
20855
  $attrs: {
20764
20856
  [x: string]: unknown;
20765
20857
  };
@@ -20774,7 +20866,7 @@ declare const VTextField: {
20774
20866
  $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);
20775
20867
  $el: any;
20776
20868
  $options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
20777
- loading: BooleanConstructor;
20869
+ loading: (StringConstructor | BooleanConstructor)[];
20778
20870
  theme: StringConstructor;
20779
20871
  appendInnerIcon: PropType<IconValue>;
20780
20872
  bgColor: StringConstructor;
@@ -21086,7 +21178,6 @@ declare const VTextField: {
21086
21178
  reverse: boolean;
21087
21179
  error: boolean;
21088
21180
  active: boolean;
21089
- loading: boolean;
21090
21181
  disabled: boolean;
21091
21182
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
21092
21183
  clearIcon: IconValue;
@@ -21096,7 +21187,7 @@ declare const VTextField: {
21096
21187
  persistentClear: boolean;
21097
21188
  singleLine: boolean;
21098
21189
  }> & Omit<Readonly<ExtractPropTypes<Omit<{
21099
- loading: BooleanConstructor;
21190
+ loading: (StringConstructor | BooleanConstructor)[];
21100
21191
  theme: StringConstructor;
21101
21192
  appendInnerIcon: PropType<IconValue>;
21102
21193
  bgColor: StringConstructor;
@@ -21128,7 +21219,7 @@ declare const VTextField: {
21128
21219
  }, "$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">>> & {
21129
21220
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
21130
21221
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
21131
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
21222
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
21132
21223
  $attrs: {
21133
21224
  [x: string]: unknown;
21134
21225
  };
@@ -21143,7 +21234,7 @@ declare const VTextField: {
21143
21234
  $emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
21144
21235
  $el: any;
21145
21236
  $options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
21146
- loading: BooleanConstructor;
21237
+ loading: (StringConstructor | BooleanConstructor)[];
21147
21238
  theme: StringConstructor;
21148
21239
  appendInnerIcon: PropType<IconValue>;
21149
21240
  bgColor: StringConstructor;
@@ -21185,7 +21276,6 @@ declare const VTextField: {
21185
21276
  reverse: boolean;
21186
21277
  error: boolean;
21187
21278
  active: boolean;
21188
- loading: boolean;
21189
21279
  disabled: boolean;
21190
21280
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
21191
21281
  clearIcon: IconValue;
@@ -21215,7 +21305,7 @@ declare const VTextField: {
21215
21305
  $nextTick: typeof nextTick;
21216
21306
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
21217
21307
  } & Readonly<ExtractPropTypes<Omit<{
21218
- loading: BooleanConstructor;
21308
+ loading: (StringConstructor | BooleanConstructor)[];
21219
21309
  theme: StringConstructor;
21220
21310
  appendInnerIcon: PropType<IconValue>;
21221
21311
  bgColor: StringConstructor;
@@ -21278,7 +21368,7 @@ declare const VTextField: {
21278
21368
  "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
21279
21369
  "v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
21280
21370
  };
21281
- }, "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<{
21371
+ }, "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<{
21282
21372
  'click:control': (e: MouseEvent) => boolean;
21283
21373
  'click:input': (e: MouseEvent) => boolean;
21284
21374
  'update:focused': (focused: boolean) => boolean;
@@ -21289,7 +21379,6 @@ declare const VTextField: {
21289
21379
  error: boolean;
21290
21380
  active: boolean;
21291
21381
  direction: "horizontal" | "vertical";
21292
- loading: boolean;
21293
21382
  autofocus: boolean;
21294
21383
  disabled: boolean;
21295
21384
  readonly: boolean;
@@ -21329,7 +21418,7 @@ declare const VTextField: {
21329
21418
  $nextTick: typeof nextTick;
21330
21419
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
21331
21420
  } & Readonly<ExtractPropTypes<Omit<{
21332
- loading: BooleanConstructor;
21421
+ loading: (StringConstructor | BooleanConstructor)[];
21333
21422
  theme: StringConstructor;
21334
21423
  appendInnerIcon: PropType<IconValue>;
21335
21424
  bgColor: StringConstructor;
@@ -21641,7 +21730,6 @@ declare const VTextField: {
21641
21730
  reverse: boolean;
21642
21731
  error: boolean;
21643
21732
  active: boolean;
21644
- loading: boolean;
21645
21733
  disabled: boolean;
21646
21734
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
21647
21735
  clearIcon: IconValue;
@@ -21651,7 +21739,7 @@ declare const VTextField: {
21651
21739
  persistentClear: boolean;
21652
21740
  singleLine: boolean;
21653
21741
  }> & Omit<Readonly<ExtractPropTypes<Omit<{
21654
- loading: BooleanConstructor;
21742
+ loading: (StringConstructor | BooleanConstructor)[];
21655
21743
  theme: StringConstructor;
21656
21744
  appendInnerIcon: PropType<IconValue>;
21657
21745
  bgColor: StringConstructor;
@@ -21683,7 +21771,7 @@ declare const VTextField: {
21683
21771
  }, "$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">>> & {
21684
21772
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
21685
21773
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
21686
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
21774
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
21687
21775
  $attrs: {
21688
21776
  [x: string]: unknown;
21689
21777
  };
@@ -21698,7 +21786,7 @@ declare const VTextField: {
21698
21786
  $emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
21699
21787
  $el: any;
21700
21788
  $options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
21701
- loading: BooleanConstructor;
21789
+ loading: (StringConstructor | BooleanConstructor)[];
21702
21790
  theme: StringConstructor;
21703
21791
  appendInnerIcon: PropType<IconValue>;
21704
21792
  bgColor: StringConstructor;
@@ -21740,7 +21828,6 @@ declare const VTextField: {
21740
21828
  reverse: boolean;
21741
21829
  error: boolean;
21742
21830
  active: boolean;
21743
- loading: boolean;
21744
21831
  disabled: boolean;
21745
21832
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
21746
21833
  clearIcon: IconValue;
@@ -21770,7 +21857,7 @@ declare const VTextField: {
21770
21857
  $nextTick: typeof nextTick;
21771
21858
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
21772
21859
  } & Readonly<ExtractPropTypes<Omit<{
21773
- loading: BooleanConstructor;
21860
+ loading: (StringConstructor | BooleanConstructor)[];
21774
21861
  theme: StringConstructor;
21775
21862
  appendInnerIcon: PropType<IconValue>;
21776
21863
  bgColor: StringConstructor;
@@ -21833,12 +21920,12 @@ declare const VTextField: {
21833
21920
  "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
21834
21921
  "v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
21835
21922
  };
21836
- }, "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;
21923
+ }, "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;
21837
21924
  __isFragment?: undefined;
21838
21925
  __isTeleport?: undefined;
21839
21926
  __isSuspense?: undefined;
21840
21927
  } & vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
21841
- loading: BooleanConstructor;
21928
+ loading: (StringConstructor | BooleanConstructor)[];
21842
21929
  theme: StringConstructor;
21843
21930
  appendInnerIcon: PropType<IconValue>;
21844
21931
  bgColor: StringConstructor;
@@ -22150,7 +22237,6 @@ declare const VTextField: {
22150
22237
  reverse: boolean;
22151
22238
  error: boolean;
22152
22239
  active: boolean;
22153
- loading: boolean;
22154
22240
  disabled: boolean;
22155
22241
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
22156
22242
  clearIcon: IconValue;
@@ -22160,7 +22246,7 @@ declare const VTextField: {
22160
22246
  persistentClear: boolean;
22161
22247
  singleLine: boolean;
22162
22248
  }> & Omit<Readonly<ExtractPropTypes<Omit<{
22163
- loading: BooleanConstructor;
22249
+ loading: (StringConstructor | BooleanConstructor)[];
22164
22250
  theme: StringConstructor;
22165
22251
  appendInnerIcon: PropType<IconValue>;
22166
22252
  bgColor: StringConstructor;
@@ -22192,7 +22278,7 @@ declare const VTextField: {
22192
22278
  }, "$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">>> & {
22193
22279
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
22194
22280
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
22195
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "loading" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
22281
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
22196
22282
  $attrs: {
22197
22283
  [x: string]: unknown;
22198
22284
  };
@@ -22207,7 +22293,7 @@ declare const VTextField: {
22207
22293
  $emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
22208
22294
  $el: any;
22209
22295
  $options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
22210
- loading: BooleanConstructor;
22296
+ loading: (StringConstructor | BooleanConstructor)[];
22211
22297
  theme: StringConstructor;
22212
22298
  appendInnerIcon: PropType<IconValue>;
22213
22299
  bgColor: StringConstructor;
@@ -22249,7 +22335,6 @@ declare const VTextField: {
22249
22335
  reverse: boolean;
22250
22336
  error: boolean;
22251
22337
  active: boolean;
22252
- loading: boolean;
22253
22338
  disabled: boolean;
22254
22339
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
22255
22340
  clearIcon: IconValue;
@@ -22279,7 +22364,7 @@ declare const VTextField: {
22279
22364
  $nextTick: typeof nextTick;
22280
22365
  $watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
22281
22366
  } & Readonly<ExtractPropTypes<Omit<{
22282
- loading: BooleanConstructor;
22367
+ loading: (StringConstructor | BooleanConstructor)[];
22283
22368
  theme: StringConstructor;
22284
22369
  appendInnerIcon: PropType<IconValue>;
22285
22370
  bgColor: StringConstructor;
@@ -22342,7 +22427,7 @@ declare const VTextField: {
22342
22427
  "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
22343
22428
  "v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
22344
22429
  };
22345
- }, "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<{
22430
+ }, "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<{
22346
22431
  'click:control': (e: MouseEvent) => boolean;
22347
22432
  'click:input': (e: MouseEvent) => boolean;
22348
22433
  'update:focused': (focused: boolean) => boolean;
@@ -22353,7 +22438,6 @@ declare const VTextField: {
22353
22438
  error: boolean;
22354
22439
  active: boolean;
22355
22440
  direction: "horizontal" | "vertical";
22356
- loading: boolean;
22357
22441
  autofocus: boolean;
22358
22442
  disabled: boolean;
22359
22443
  readonly: boolean;
@@ -22959,6 +23043,7 @@ declare const VTooltip: {
22959
23043
  noClickAnimation: boolean;
22960
23044
  persistent: boolean;
22961
23045
  scrim: string | boolean;
23046
+ _disableGlobalStack: boolean;
22962
23047
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
22963
23048
  transition: {
22964
23049
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -23034,11 +23119,12 @@ declare const VTooltip: {
23034
23119
  type: (StringConstructor | NumberConstructor)[];
23035
23120
  default: number;
23036
23121
  };
23122
+ _disableGlobalStack: BooleanConstructor;
23037
23123
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23038
23124
  onAfterLeave?: (() => any) | undefined;
23039
23125
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
23040
23126
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
23041
- } & 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">;
23127
+ } & 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">;
23042
23128
  $attrs: {
23043
23129
  [x: string]: unknown;
23044
23130
  };
@@ -23127,6 +23213,7 @@ declare const VTooltip: {
23127
23213
  type: (StringConstructor | NumberConstructor)[];
23128
23214
  default: number;
23129
23215
  };
23216
+ _disableGlobalStack: BooleanConstructor;
23130
23217
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23131
23218
  onAfterLeave?: (() => any) | undefined;
23132
23219
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -23167,6 +23254,7 @@ declare const VTooltip: {
23167
23254
  noClickAnimation: boolean;
23168
23255
  persistent: boolean;
23169
23256
  scrim: string | boolean;
23257
+ _disableGlobalStack: boolean;
23170
23258
  }> & {
23171
23259
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
23172
23260
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -23262,6 +23350,7 @@ declare const VTooltip: {
23262
23350
  type: (StringConstructor | NumberConstructor)[];
23263
23351
  default: number;
23264
23352
  };
23353
+ _disableGlobalStack: BooleanConstructor;
23265
23354
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23266
23355
  onAfterLeave?: (() => any) | undefined;
23267
23356
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -23302,7 +23391,7 @@ declare const VTooltip: {
23302
23391
  props: Record<string, any>;
23303
23392
  }) => vue.VNodeChild) | undefined;
23304
23393
  };
23305
- }, "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<{
23394
+ }, "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<{
23306
23395
  'update:modelValue': (value: boolean) => boolean;
23307
23396
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
23308
23397
  offset: string | number | ((string | number | number[] | undefined) & {});
@@ -23493,6 +23582,7 @@ declare const VTooltip: {
23493
23582
  noClickAnimation: boolean;
23494
23583
  persistent: boolean;
23495
23584
  scrim: string | boolean;
23585
+ _disableGlobalStack: boolean;
23496
23586
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
23497
23587
  transition: {
23498
23588
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -23568,11 +23658,12 @@ declare const VTooltip: {
23568
23658
  type: (StringConstructor | NumberConstructor)[];
23569
23659
  default: number;
23570
23660
  };
23661
+ _disableGlobalStack: BooleanConstructor;
23571
23662
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23572
23663
  onAfterLeave?: (() => any) | undefined;
23573
23664
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
23574
23665
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
23575
- } & 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">;
23666
+ } & 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">;
23576
23667
  $attrs: {
23577
23668
  [x: string]: unknown;
23578
23669
  };
@@ -23661,6 +23752,7 @@ declare const VTooltip: {
23661
23752
  type: (StringConstructor | NumberConstructor)[];
23662
23753
  default: number;
23663
23754
  };
23755
+ _disableGlobalStack: BooleanConstructor;
23664
23756
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23665
23757
  onAfterLeave?: (() => any) | undefined;
23666
23758
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -23701,6 +23793,7 @@ declare const VTooltip: {
23701
23793
  noClickAnimation: boolean;
23702
23794
  persistent: boolean;
23703
23795
  scrim: string | boolean;
23796
+ _disableGlobalStack: boolean;
23704
23797
  }> & {
23705
23798
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
23706
23799
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -23796,6 +23889,7 @@ declare const VTooltip: {
23796
23889
  type: (StringConstructor | NumberConstructor)[];
23797
23890
  default: number;
23798
23891
  };
23892
+ _disableGlobalStack: BooleanConstructor;
23799
23893
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
23800
23894
  onAfterLeave?: (() => any) | undefined;
23801
23895
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -23836,7 +23930,7 @@ declare const VTooltip: {
23836
23930
  props: Record<string, any>;
23837
23931
  }) => vue.VNodeChild) | undefined;
23838
23932
  };
23839
- }, "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;
23933
+ }, "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;
23840
23934
  __isFragment?: undefined;
23841
23935
  __isTeleport?: undefined;
23842
23936
  __isSuspense?: undefined;
@@ -23985,6 +24079,7 @@ declare const VTooltip: {
23985
24079
  noClickAnimation: boolean;
23986
24080
  persistent: boolean;
23987
24081
  scrim: string | boolean;
24082
+ _disableGlobalStack: boolean;
23988
24083
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
23989
24084
  transition: {
23990
24085
  type: vue.PropType<string | boolean | (vue.TransitionProps & {
@@ -24060,11 +24155,12 @@ declare const VTooltip: {
24060
24155
  type: (StringConstructor | NumberConstructor)[];
24061
24156
  default: number;
24062
24157
  };
24158
+ _disableGlobalStack: BooleanConstructor;
24063
24159
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
24064
24160
  onAfterLeave?: (() => any) | undefined;
24065
24161
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
24066
24162
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
24067
- } & 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">;
24163
+ } & 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">;
24068
24164
  $attrs: {
24069
24165
  [x: string]: unknown;
24070
24166
  };
@@ -24153,6 +24249,7 @@ declare const VTooltip: {
24153
24249
  type: (StringConstructor | NumberConstructor)[];
24154
24250
  default: number;
24155
24251
  };
24252
+ _disableGlobalStack: BooleanConstructor;
24156
24253
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
24157
24254
  onAfterLeave?: (() => any) | undefined;
24158
24255
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -24193,6 +24290,7 @@ declare const VTooltip: {
24193
24290
  noClickAnimation: boolean;
24194
24291
  persistent: boolean;
24195
24292
  scrim: string | boolean;
24293
+ _disableGlobalStack: boolean;
24196
24294
  }> & {
24197
24295
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
24198
24296
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -24288,6 +24386,7 @@ declare const VTooltip: {
24288
24386
  type: (StringConstructor | NumberConstructor)[];
24289
24387
  default: number;
24290
24388
  };
24389
+ _disableGlobalStack: BooleanConstructor;
24291
24390
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
24292
24391
  onAfterLeave?: (() => any) | undefined;
24293
24392
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
@@ -24328,7 +24427,7 @@ declare const VTooltip: {
24328
24427
  props: Record<string, any>;
24329
24428
  }) => vue.VNodeChild) | undefined;
24330
24429
  };
24331
- }, "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<{
24430
+ }, "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<{
24332
24431
  'update:modelValue': (value: boolean) => boolean;
24333
24432
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
24334
24433
  offset: string | number | ((string | number | number[] | undefined) & {});