@vuetify/nightly 3.6.13-3.7.0-beta.0.0-pr-20092.a834b18 → 3.7.0-beta.1-dev.2024-07-29

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 (47) hide show
  1. package/dist/json/attributes.json +99 -107
  2. package/dist/json/importMap-labs.json +24 -24
  3. package/dist/json/importMap.json +134 -134
  4. package/dist/json/tags.json +0 -2
  5. package/dist/json/web-types.json +193 -212
  6. package/dist/vuetify-labs.css +4026 -4026
  7. package/dist/vuetify-labs.d.ts +106 -190
  8. package/dist/vuetify-labs.esm.js +13 -36
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +13 -36
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +2721 -2721
  13. package/dist/vuetify.d.ts +153 -237
  14. package/dist/vuetify.esm.js +13 -36
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +13 -36
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +44 -45
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/index.d.mts +24 -42
  22. package/lib/components/VCombobox/index.d.mts +24 -42
  23. package/lib/components/VDialog/index.d.mts +3 -3
  24. package/lib/components/VList/VListItem.mjs +1 -1
  25. package/lib/components/VList/VListItem.mjs.map +1 -1
  26. package/lib/components/VMenu/VMenu.mjs +3 -19
  27. package/lib/components/VMenu/VMenu.mjs.map +1 -1
  28. package/lib/components/VMenu/index.d.mts +12 -27
  29. package/lib/components/VOverlay/VOverlay.mjs +4 -5
  30. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  31. package/lib/components/VOverlay/locationStrategies.mjs +0 -6
  32. package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
  33. package/lib/components/VOverlay/useActivator.mjs +2 -3
  34. package/lib/components/VOverlay/useActivator.mjs.map +1 -1
  35. package/lib/components/VSelect/index.d.mts +24 -42
  36. package/lib/components/VSnackbar/index.d.mts +3 -3
  37. package/lib/components/VSpeedDial/index.d.mts +13 -28
  38. package/lib/components/VTooltip/index.d.mts +3 -3
  39. package/lib/components/index.d.mts +106 -190
  40. package/lib/entry-bundler.mjs +1 -1
  41. package/lib/entry-bundler.mjs.map +1 -1
  42. package/lib/framework.mjs +1 -1
  43. package/lib/framework.mjs.map +1 -1
  44. package/lib/index.d.mts +47 -47
  45. package/lib/labs/VSnackbarQueue/index.d.mts +3 -3
  46. package/lib/labs/components.d.mts +3 -3
  47. package/package.json +1 -1
@@ -610,7 +610,7 @@ declare const VSelect: {
610
610
  }) => vue.VNodeChild) | undefined;
611
611
  }) | undefined;
612
612
  menuProps?: (Partial<{
613
- location: NonNullable<Anchor> | undefined;
613
+ location: Anchor;
614
614
  origin: "auto" | Anchor | "overlap";
615
615
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
616
616
  component?: Component | undefined;
@@ -638,9 +638,8 @@ declare const VSelect: {
638
638
  noClickAnimation: boolean;
639
639
  persistent: boolean;
640
640
  scrim: NonNullable<string | boolean>;
641
- submenu: boolean;
642
641
  }> & Omit<{
643
- location: NonNullable<Anchor> | undefined;
642
+ location: Anchor;
644
643
  origin: "auto" | Anchor | "overlap";
645
644
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
646
645
  component?: Component | undefined;
@@ -666,7 +665,6 @@ declare const VSelect: {
666
665
  noClickAnimation: boolean;
667
666
  persistent: boolean;
668
667
  scrim: NonNullable<string | boolean>;
669
- submenu: boolean;
670
668
  offset?: string | number | number[] | undefined;
671
669
  id?: string | undefined;
672
670
  height?: string | number | undefined;
@@ -717,7 +715,7 @@ declare const VSelect: {
717
715
  }) => vue.VNodeChild) | undefined;
718
716
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
719
717
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
720
- location: NonNullable<Anchor> | undefined;
718
+ location: Anchor;
721
719
  origin: "auto" | Anchor | "overlap";
722
720
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
723
721
  component?: Component | undefined;
@@ -743,7 +741,6 @@ declare const VSelect: {
743
741
  noClickAnimation: boolean;
744
742
  persistent: boolean;
745
743
  scrim: NonNullable<string | boolean>;
746
- submenu: boolean;
747
744
  } & {
748
745
  offset?: string | number | number[] | undefined;
749
746
  id?: string | undefined;
@@ -797,7 +794,7 @@ declare const VSelect: {
797
794
  }) => vue.VNodeChild) | undefined;
798
795
  } & {
799
796
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
800
- }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
797
+ }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
801
798
  itemColor?: string | undefined;
802
799
  } & {
803
800
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -1145,7 +1142,7 @@ declare const VSelect: {
1145
1142
  }) => vue.VNodeChild) | undefined;
1146
1143
  }) | undefined;
1147
1144
  menuProps?: (Partial<{
1148
- location: NonNullable<Anchor> | undefined;
1145
+ location: Anchor;
1149
1146
  origin: "auto" | Anchor | "overlap";
1150
1147
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
1151
1148
  component?: Component | undefined;
@@ -1173,9 +1170,8 @@ declare const VSelect: {
1173
1170
  noClickAnimation: boolean;
1174
1171
  persistent: boolean;
1175
1172
  scrim: NonNullable<string | boolean>;
1176
- submenu: boolean;
1177
1173
  }> & Omit<{
1178
- location: NonNullable<Anchor> | undefined;
1174
+ location: Anchor;
1179
1175
  origin: "auto" | Anchor | "overlap";
1180
1176
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
1181
1177
  component?: Component | undefined;
@@ -1201,7 +1197,6 @@ declare const VSelect: {
1201
1197
  noClickAnimation: boolean;
1202
1198
  persistent: boolean;
1203
1199
  scrim: NonNullable<string | boolean>;
1204
- submenu: boolean;
1205
1200
  offset?: string | number | number[] | undefined;
1206
1201
  id?: string | undefined;
1207
1202
  height?: string | number | undefined;
@@ -1252,7 +1247,7 @@ declare const VSelect: {
1252
1247
  }) => vue.VNodeChild) | undefined;
1253
1248
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1254
1249
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
1255
- location: NonNullable<Anchor> | undefined;
1250
+ location: Anchor;
1256
1251
  origin: "auto" | Anchor | "overlap";
1257
1252
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
1258
1253
  component?: Component | undefined;
@@ -1278,7 +1273,6 @@ declare const VSelect: {
1278
1273
  noClickAnimation: boolean;
1279
1274
  persistent: boolean;
1280
1275
  scrim: NonNullable<string | boolean>;
1281
- submenu: boolean;
1282
1276
  } & {
1283
1277
  offset?: string | number | number[] | undefined;
1284
1278
  id?: string | undefined;
@@ -1332,7 +1326,7 @@ declare const VSelect: {
1332
1326
  }) => vue.VNodeChild) | undefined;
1333
1327
  } & {
1334
1328
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1335
- }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
1329
+ }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
1336
1330
  itemColor?: string | undefined;
1337
1331
  } & {
1338
1332
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -1793,7 +1787,7 @@ declare const VSelect: {
1793
1787
  }) => vue.VNodeChild) | undefined;
1794
1788
  }) | undefined;
1795
1789
  menuProps?: (Partial<{
1796
- location: NonNullable<Anchor> | undefined;
1790
+ location: Anchor;
1797
1791
  origin: "auto" | Anchor | "overlap";
1798
1792
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
1799
1793
  component?: Component | undefined;
@@ -1821,9 +1815,8 @@ declare const VSelect: {
1821
1815
  noClickAnimation: boolean;
1822
1816
  persistent: boolean;
1823
1817
  scrim: NonNullable<string | boolean>;
1824
- submenu: boolean;
1825
1818
  }> & Omit<{
1826
- location: NonNullable<Anchor> | undefined;
1819
+ location: Anchor;
1827
1820
  origin: "auto" | Anchor | "overlap";
1828
1821
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
1829
1822
  component?: Component | undefined;
@@ -1849,7 +1842,6 @@ declare const VSelect: {
1849
1842
  noClickAnimation: boolean;
1850
1843
  persistent: boolean;
1851
1844
  scrim: NonNullable<string | boolean>;
1852
- submenu: boolean;
1853
1845
  offset?: string | number | number[] | undefined;
1854
1846
  id?: string | undefined;
1855
1847
  height?: string | number | undefined;
@@ -1900,7 +1892,7 @@ declare const VSelect: {
1900
1892
  }) => vue.VNodeChild) | undefined;
1901
1893
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1902
1894
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
1903
- location: NonNullable<Anchor> | undefined;
1895
+ location: Anchor;
1904
1896
  origin: "auto" | Anchor | "overlap";
1905
1897
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
1906
1898
  component?: Component | undefined;
@@ -1926,7 +1918,6 @@ declare const VSelect: {
1926
1918
  noClickAnimation: boolean;
1927
1919
  persistent: boolean;
1928
1920
  scrim: NonNullable<string | boolean>;
1929
- submenu: boolean;
1930
1921
  } & {
1931
1922
  offset?: string | number | number[] | undefined;
1932
1923
  id?: string | undefined;
@@ -1980,7 +1971,7 @@ declare const VSelect: {
1980
1971
  }) => vue.VNodeChild) | undefined;
1981
1972
  } & {
1982
1973
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1983
- }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
1974
+ }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
1984
1975
  itemColor?: string | undefined;
1985
1976
  } & {
1986
1977
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -2376,7 +2367,7 @@ declare const VSelect: {
2376
2367
  }) => vue.VNodeChild) | undefined;
2377
2368
  }) | undefined;
2378
2369
  menuProps?: (Partial<{
2379
- location: NonNullable<Anchor> | undefined;
2370
+ location: Anchor;
2380
2371
  origin: "auto" | Anchor | "overlap";
2381
2372
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
2382
2373
  component?: Component | undefined;
@@ -2404,9 +2395,8 @@ declare const VSelect: {
2404
2395
  noClickAnimation: boolean;
2405
2396
  persistent: boolean;
2406
2397
  scrim: NonNullable<string | boolean>;
2407
- submenu: boolean;
2408
2398
  }> & Omit<{
2409
- location: NonNullable<Anchor> | undefined;
2399
+ location: Anchor;
2410
2400
  origin: "auto" | Anchor | "overlap";
2411
2401
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
2412
2402
  component?: Component | undefined;
@@ -2432,7 +2422,6 @@ declare const VSelect: {
2432
2422
  noClickAnimation: boolean;
2433
2423
  persistent: boolean;
2434
2424
  scrim: NonNullable<string | boolean>;
2435
- submenu: boolean;
2436
2425
  offset?: string | number | number[] | undefined;
2437
2426
  id?: string | undefined;
2438
2427
  height?: string | number | undefined;
@@ -2483,7 +2472,7 @@ declare const VSelect: {
2483
2472
  }) => vue.VNodeChild) | undefined;
2484
2473
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2485
2474
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
2486
- location: NonNullable<Anchor> | undefined;
2475
+ location: Anchor;
2487
2476
  origin: "auto" | Anchor | "overlap";
2488
2477
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
2489
2478
  component?: Component | undefined;
@@ -2509,7 +2498,6 @@ declare const VSelect: {
2509
2498
  noClickAnimation: boolean;
2510
2499
  persistent: boolean;
2511
2500
  scrim: NonNullable<string | boolean>;
2512
- submenu: boolean;
2513
2501
  } & {
2514
2502
  offset?: string | number | number[] | undefined;
2515
2503
  id?: string | undefined;
@@ -2563,7 +2551,7 @@ declare const VSelect: {
2563
2551
  }) => vue.VNodeChild) | undefined;
2564
2552
  } & {
2565
2553
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2566
- }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
2554
+ }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
2567
2555
  itemColor?: string | undefined;
2568
2556
  } & {
2569
2557
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -3175,7 +3163,7 @@ declare const VSelect: {
3175
3163
  };
3176
3164
  menuProps: {
3177
3165
  type: PropType<Partial<{
3178
- location: NonNullable<Anchor> | undefined;
3166
+ location: Anchor;
3179
3167
  origin: "auto" | Anchor | "overlap";
3180
3168
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
3181
3169
  component?: Component | undefined;
@@ -3203,9 +3191,8 @@ declare const VSelect: {
3203
3191
  noClickAnimation: boolean;
3204
3192
  persistent: boolean;
3205
3193
  scrim: NonNullable<string | boolean>;
3206
- submenu: boolean;
3207
3194
  }> & Omit<{
3208
- location: NonNullable<Anchor> | undefined;
3195
+ location: Anchor;
3209
3196
  origin: "auto" | Anchor | "overlap";
3210
3197
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
3211
3198
  component?: Component | undefined;
@@ -3231,7 +3218,6 @@ declare const VSelect: {
3231
3218
  noClickAnimation: boolean;
3232
3219
  persistent: boolean;
3233
3220
  scrim: NonNullable<string | boolean>;
3234
- submenu: boolean;
3235
3221
  offset?: string | number | number[] | undefined;
3236
3222
  id?: string | undefined;
3237
3223
  height?: string | number | undefined;
@@ -3282,7 +3268,7 @@ declare const VSelect: {
3282
3268
  }) => vue.VNodeChild) | undefined;
3283
3269
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
3284
3270
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
3285
- location: NonNullable<Anchor> | undefined;
3271
+ location: Anchor;
3286
3272
  origin: "auto" | Anchor | "overlap";
3287
3273
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
3288
3274
  component?: Component | undefined;
@@ -3308,7 +3294,6 @@ declare const VSelect: {
3308
3294
  noClickAnimation: boolean;
3309
3295
  persistent: boolean;
3310
3296
  scrim: NonNullable<string | boolean>;
3311
- submenu: boolean;
3312
3297
  } & {
3313
3298
  offset?: string | number | number[] | undefined;
3314
3299
  id?: string | undefined;
@@ -3362,7 +3347,7 @@ declare const VSelect: {
3362
3347
  }) => vue.VNodeChild) | undefined;
3363
3348
  } & {
3364
3349
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
3365
- }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
3350
+ }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
3366
3351
  };
3367
3352
  multiple: BooleanConstructor;
3368
3353
  noDataText: {
@@ -3810,7 +3795,7 @@ declare const VSelect: {
3810
3795
  };
3811
3796
  menuProps: {
3812
3797
  type: PropType<Partial<{
3813
- location: NonNullable<Anchor> | undefined;
3798
+ location: Anchor;
3814
3799
  origin: "auto" | Anchor | "overlap";
3815
3800
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
3816
3801
  component?: Component | undefined;
@@ -3838,9 +3823,8 @@ declare const VSelect: {
3838
3823
  noClickAnimation: boolean;
3839
3824
  persistent: boolean;
3840
3825
  scrim: NonNullable<string | boolean>;
3841
- submenu: boolean;
3842
3826
  }> & Omit<{
3843
- location: NonNullable<Anchor> | undefined;
3827
+ location: Anchor;
3844
3828
  origin: "auto" | Anchor | "overlap";
3845
3829
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
3846
3830
  component?: Component | undefined;
@@ -3866,7 +3850,6 @@ declare const VSelect: {
3866
3850
  noClickAnimation: boolean;
3867
3851
  persistent: boolean;
3868
3852
  scrim: NonNullable<string | boolean>;
3869
- submenu: boolean;
3870
3853
  offset?: string | number | number[] | undefined;
3871
3854
  id?: string | undefined;
3872
3855
  height?: string | number | undefined;
@@ -3917,7 +3900,7 @@ declare const VSelect: {
3917
3900
  }) => vue.VNodeChild) | undefined;
3918
3901
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
3919
3902
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
3920
- location: NonNullable<Anchor> | undefined;
3903
+ location: Anchor;
3921
3904
  origin: "auto" | Anchor | "overlap";
3922
3905
  transition: NonNullable<string | boolean | (vue.TransitionProps & {
3923
3906
  component?: Component | undefined;
@@ -3943,7 +3926,6 @@ declare const VSelect: {
3943
3926
  noClickAnimation: boolean;
3944
3927
  persistent: boolean;
3945
3928
  scrim: NonNullable<string | boolean>;
3946
- submenu: boolean;
3947
3929
  } & {
3948
3930
  offset?: string | number | number[] | undefined;
3949
3931
  id?: string | undefined;
@@ -3997,7 +3979,7 @@ declare const VSelect: {
3997
3979
  }) => vue.VNodeChild) | undefined;
3998
3980
  } & {
3999
3981
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
4000
- }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
3982
+ }, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
4001
3983
  };
4002
3984
  multiple: BooleanConstructor;
4003
3985
  noDataText: {
@@ -629,7 +629,7 @@ declare const VSnackbar: {
629
629
  onAfterLeave?: (() => any) | undefined;
630
630
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
631
631
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
632
- }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
632
+ }, "target" | "activatorEl" | "scrimEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
633
633
  activatorEl: Ref<HTMLElement | undefined>;
634
634
  scrimEl: Ref<HTMLElement | undefined>;
635
635
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1316,7 +1316,7 @@ declare const VSnackbar: {
1316
1316
  onAfterLeave?: (() => any) | undefined;
1317
1317
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1318
1318
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1319
- }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1319
+ }, "target" | "activatorEl" | "scrimEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1320
1320
  activatorEl: Ref<HTMLElement | undefined>;
1321
1321
  scrimEl: Ref<HTMLElement | undefined>;
1322
1322
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1895,7 +1895,7 @@ declare const VSnackbar: {
1895
1895
  onAfterLeave?: (() => any) | undefined;
1896
1896
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1897
1897
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1898
- }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1898
+ }, "target" | "activatorEl" | "scrimEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1899
1899
  activatorEl: Ref<HTMLElement | undefined>;
1900
1900
  scrimEl: Ref<HTMLElement | undefined>;
1901
1901
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -93,7 +93,7 @@ declare function connectedLocationStrategy(data: LocationStrategyData, props: St
93
93
  declare const VSpeedDial: {
94
94
  new (...args: any[]): vue.CreateComponentPublicInstance<{
95
95
  offset: NonNullable<string | number | number[] | undefined>;
96
- location: NonNullable<NonNullable<Anchor> | undefined>;
96
+ location: NonNullable<Anchor>;
97
97
  origin: "auto" | Anchor | "overlap";
98
98
  minWidth: NonNullable<string | number>;
99
99
  transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
@@ -120,7 +120,6 @@ declare const VSpeedDial: {
120
120
  noClickAnimation: boolean;
121
121
  persistent: boolean;
122
122
  scrim: NonNullable<string | boolean>;
123
- submenu: boolean;
124
123
  } & {
125
124
  id?: string | undefined;
126
125
  height?: string | number | undefined;
@@ -176,7 +175,7 @@ declare const VSpeedDial: {
176
175
  'update:modelValue': (value: boolean) => boolean;
177
176
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
178
177
  offset: NonNullable<string | number | number[] | undefined>;
179
- location: NonNullable<NonNullable<Anchor> | undefined>;
178
+ location: NonNullable<Anchor>;
180
179
  origin: "auto" | Anchor | "overlap";
181
180
  minWidth: NonNullable<string | number>;
182
181
  transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
@@ -203,7 +202,6 @@ declare const VSpeedDial: {
203
202
  noClickAnimation: boolean;
204
203
  persistent: boolean;
205
204
  scrim: NonNullable<string | boolean>;
206
- submenu: boolean;
207
205
  } & {
208
206
  id?: string | undefined;
209
207
  height?: string | number | undefined;
@@ -257,7 +255,7 @@ declare const VSpeedDial: {
257
255
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
258
256
  }, {
259
257
  offset: NonNullable<string | number | number[] | undefined>;
260
- location: NonNullable<NonNullable<Anchor> | undefined>;
258
+ location: NonNullable<Anchor>;
261
259
  origin: "auto" | Anchor | "overlap";
262
260
  minWidth: NonNullable<string | number>;
263
261
  transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
@@ -286,7 +284,6 @@ declare const VSpeedDial: {
286
284
  noClickAnimation: boolean;
287
285
  persistent: boolean;
288
286
  scrim: NonNullable<string | boolean>;
289
- submenu: boolean;
290
287
  }, true, {}, vue.SlotsType<Partial<{
291
288
  default: (arg: {
292
289
  isActive: vue.Ref<boolean>;
@@ -309,7 +306,7 @@ declare const VSpeedDial: {
309
306
  Defaults: {};
310
307
  }, {
311
308
  offset: NonNullable<string | number | number[] | undefined>;
312
- location: NonNullable<NonNullable<Anchor> | undefined>;
309
+ location: NonNullable<Anchor>;
313
310
  origin: "auto" | Anchor | "overlap";
314
311
  minWidth: NonNullable<string | number>;
315
312
  transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
@@ -336,7 +333,6 @@ declare const VSpeedDial: {
336
333
  noClickAnimation: boolean;
337
334
  persistent: boolean;
338
335
  scrim: NonNullable<string | boolean>;
339
- submenu: boolean;
340
336
  } & {
341
337
  id?: string | undefined;
342
338
  height?: string | number | undefined;
@@ -390,7 +386,7 @@ declare const VSpeedDial: {
390
386
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
391
387
  }, {}, {}, {}, {}, {
392
388
  offset: NonNullable<string | number | number[] | undefined>;
393
- location: NonNullable<NonNullable<Anchor> | undefined>;
389
+ location: NonNullable<Anchor>;
394
390
  origin: "auto" | Anchor | "overlap";
395
391
  minWidth: NonNullable<string | number>;
396
392
  transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
@@ -419,14 +415,13 @@ declare const VSpeedDial: {
419
415
  noClickAnimation: boolean;
420
416
  persistent: boolean;
421
417
  scrim: NonNullable<string | boolean>;
422
- submenu: boolean;
423
418
  }>;
424
419
  __isFragment?: undefined;
425
420
  __isTeleport?: undefined;
426
421
  __isSuspense?: undefined;
427
422
  } & vue.ComponentOptionsBase<{
428
423
  offset: NonNullable<string | number | number[] | undefined>;
429
- location: NonNullable<NonNullable<Anchor> | undefined>;
424
+ location: NonNullable<Anchor>;
430
425
  origin: "auto" | Anchor | "overlap";
431
426
  minWidth: NonNullable<string | number>;
432
427
  transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
@@ -453,7 +448,6 @@ declare const VSpeedDial: {
453
448
  noClickAnimation: boolean;
454
449
  persistent: boolean;
455
450
  scrim: NonNullable<string | boolean>;
456
- submenu: boolean;
457
451
  } & {
458
452
  id?: string | undefined;
459
453
  height?: string | number | undefined;
@@ -509,7 +503,7 @@ declare const VSpeedDial: {
509
503
  'update:modelValue': (value: boolean) => boolean;
510
504
  }, string, {
511
505
  offset: NonNullable<string | number | number[] | undefined>;
512
- location: NonNullable<NonNullable<Anchor> | undefined>;
506
+ location: NonNullable<Anchor>;
513
507
  origin: "auto" | Anchor | "overlap";
514
508
  minWidth: NonNullable<string | number>;
515
509
  transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
@@ -538,7 +532,6 @@ declare const VSpeedDial: {
538
532
  noClickAnimation: boolean;
539
533
  persistent: boolean;
540
534
  scrim: NonNullable<string | boolean>;
541
- submenu: boolean;
542
535
  }, {}, string, vue.SlotsType<Partial<{
543
536
  default: (arg: {
544
537
  isActive: vue.Ref<boolean>;
@@ -557,15 +550,12 @@ declare const VSpeedDial: {
557
550
  type: vue.PropType<NonNullable<string | number | number[] | undefined>>;
558
551
  default: NonNullable<string | number | number[] | undefined>;
559
552
  };
560
- location: Omit<Omit<{
553
+ location: Omit<{
561
554
  type: vue.PropType<Anchor>;
562
555
  default: string;
563
556
  }, "type" | "default"> & {
564
- type: vue.PropType<NonNullable<Anchor> | undefined>;
565
- default: NonNullable<Anchor> | undefined;
566
- }, "type" | "default"> & {
567
- type: vue.PropType<NonNullable<NonNullable<Anchor> | undefined>>;
568
- default: NonNullable<NonNullable<Anchor> | undefined>;
557
+ type: vue.PropType<NonNullable<Anchor>>;
558
+ default: NonNullable<Anchor>;
569
559
  };
570
560
  origin: {
571
561
  type: vue.PropType<"auto" | Anchor | "overlap">;
@@ -696,21 +686,17 @@ declare const VSpeedDial: {
696
686
  };
697
687
  attach: vue.PropType<string | boolean | Element>;
698
688
  id: StringConstructor;
699
- submenu: BooleanConstructor;
700
689
  }, vue.ExtractPropTypes<{
701
690
  offset: {
702
691
  type: vue.PropType<NonNullable<string | number | number[] | undefined>>;
703
692
  default: NonNullable<string | number | number[] | undefined>;
704
693
  };
705
- location: Omit<Omit<{
694
+ location: Omit<{
706
695
  type: vue.PropType<Anchor>;
707
696
  default: string;
708
697
  }, "type" | "default"> & {
709
- type: vue.PropType<NonNullable<Anchor> | undefined>;
710
- default: NonNullable<Anchor> | undefined;
711
- }, "type" | "default"> & {
712
- type: vue.PropType<NonNullable<NonNullable<Anchor> | undefined>>;
713
- default: NonNullable<NonNullable<Anchor> | undefined>;
698
+ type: vue.PropType<NonNullable<Anchor>>;
699
+ default: NonNullable<Anchor>;
714
700
  };
715
701
  origin: {
716
702
  type: vue.PropType<"auto" | Anchor | "overlap">;
@@ -841,7 +827,6 @@ declare const VSpeedDial: {
841
827
  };
842
828
  attach: vue.PropType<string | boolean | Element>;
843
829
  id: StringConstructor;
844
- submenu: BooleanConstructor;
845
830
  }>>;
846
831
  type VSpeedDial = InstanceType<typeof VSpeedDial>;
847
832
 
@@ -622,7 +622,7 @@ declare const VTooltip: {
622
622
  onAfterLeave?: (() => any) | undefined;
623
623
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
624
624
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
625
- }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
625
+ }, "target" | "activatorEl" | "scrimEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
626
626
  activatorEl: vue.Ref<HTMLElement | undefined>;
627
627
  scrimEl: vue.Ref<HTMLElement | undefined>;
628
628
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1288,7 +1288,7 @@ declare const VTooltip: {
1288
1288
  onAfterLeave?: (() => any) | undefined;
1289
1289
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1290
1290
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1291
- }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1291
+ }, "target" | "activatorEl" | "scrimEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1292
1292
  activatorEl: vue.Ref<HTMLElement | undefined>;
1293
1293
  scrimEl: vue.Ref<HTMLElement | undefined>;
1294
1294
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
@@ -1858,7 +1858,7 @@ declare const VTooltip: {
1858
1858
  onAfterLeave?: (() => any) | undefined;
1859
1859
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1860
1860
  "onClick:outside"?: ((e: MouseEvent) => any) | undefined;
1861
- }, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1861
+ }, "target" | "activatorEl" | "scrimEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
1862
1862
  activatorEl: vue.Ref<HTMLElement | undefined>;
1863
1863
  scrimEl: vue.Ref<HTMLElement | undefined>;
1864
1864
  target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;