@vuetify/nightly 3.6.10-master.2024-06-21 → 3.6.11-dev.2024-07-03

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 (92) hide show
  1. package/CHANGELOG.md +13 -2
  2. package/dist/json/attributes.json +291 -119
  3. package/dist/json/importMap-labs.json +28 -28
  4. package/dist/json/importMap.json +106 -106
  5. package/dist/json/tags.json +49 -6
  6. package/dist/json/web-types.json +601 -211
  7. package/dist/vuetify-labs.css +2575 -2559
  8. package/dist/vuetify-labs.d.ts +802 -519
  9. package/dist/vuetify-labs.esm.js +86 -71
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +86 -71
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +627 -611
  14. package/dist/vuetify.d.ts +716 -505
  15. package/dist/vuetify.esm.js +36 -16
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +36 -16
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +24 -24
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAppBar/index.d.mts +6 -0
  23. package/lib/components/VAutocomplete/index.d.mts +49 -49
  24. package/lib/components/VAvatar/VAvatar.css +7 -0
  25. package/lib/components/VAvatar/VAvatar.mjs +6 -1
  26. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  27. package/lib/components/VAvatar/VAvatar.sass +1 -0
  28. package/lib/components/VAvatar/_variables.scss +13 -0
  29. package/lib/components/VAvatar/index.d.mts +6 -0
  30. package/lib/components/VBottomSheet/index.d.mts +7 -7
  31. package/lib/components/VBreadcrumbs/index.d.mts +8 -8
  32. package/lib/components/VBtn/VBtn.mjs +3 -1
  33. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  34. package/lib/components/VBtn/index.d.mts +6 -0
  35. package/lib/components/VCarousel/index.d.mts +16 -7
  36. package/lib/components/VCheckbox/index.d.mts +6 -6
  37. package/lib/components/VCombobox/index.d.mts +49 -49
  38. package/lib/components/VDialog/index.d.mts +31 -31
  39. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +7 -2
  40. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  41. package/lib/components/VExpansionPanel/index.d.mts +122 -14
  42. package/lib/components/VFab/index.d.mts +6 -0
  43. package/lib/components/VFileInput/index.d.mts +18 -18
  44. package/lib/components/VForm/index.d.mts +9 -9
  45. package/lib/components/VGrid/VContainer.mjs +6 -1
  46. package/lib/components/VGrid/VContainer.mjs.map +1 -1
  47. package/lib/components/VGrid/index.d.mts +36 -0
  48. package/lib/components/VImg/VImg.css +9 -0
  49. package/lib/components/VImg/VImg.mjs +2 -0
  50. package/lib/components/VImg/VImg.mjs.map +1 -1
  51. package/lib/components/VImg/VImg.sass +9 -0
  52. package/lib/components/VImg/index.d.mts +16 -7
  53. package/lib/components/VInput/index.d.mts +6 -6
  54. package/lib/components/VList/index.d.mts +12 -12
  55. package/lib/components/VMenu/index.d.mts +33 -33
  56. package/lib/components/VOverlay/VOverlay.mjs +1 -1
  57. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  58. package/lib/components/VOverlay/index.d.mts +7 -7
  59. package/lib/components/VRadioGroup/index.d.mts +6 -6
  60. package/lib/components/VRangeSlider/index.d.mts +6 -6
  61. package/lib/components/VSelect/index.d.mts +49 -49
  62. package/lib/components/VSlideGroup/VSlideGroup.mjs +3 -1
  63. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  64. package/lib/components/VSlideGroup/index.d.mts +6 -0
  65. package/lib/components/VSlider/index.d.mts +6 -6
  66. package/lib/components/VSnackbar/index.d.mts +33 -33
  67. package/lib/components/VSpeedDial/index.d.mts +9 -9
  68. package/lib/components/VSwitch/index.d.mts +6 -6
  69. package/lib/components/VTabs/index.d.mts +21 -3
  70. package/lib/components/VTextField/index.d.mts +18 -18
  71. package/lib/components/VTextarea/index.d.mts +18 -18
  72. package/lib/components/VTooltip/index.d.mts +39 -39
  73. package/lib/components/VValidation/index.d.mts +9 -8
  74. package/lib/components/index.d.mts +675 -464
  75. package/lib/composables/validation.mjs +8 -6
  76. package/lib/composables/validation.mjs.map +1 -1
  77. package/lib/entry-bundler.mjs +1 -1
  78. package/lib/entry-bundler.mjs.map +1 -1
  79. package/lib/framework.mjs +1 -1
  80. package/lib/framework.mjs.map +1 -1
  81. package/lib/index.d.mts +41 -41
  82. package/lib/labs/VDateInput/index.d.mts +6 -6
  83. package/lib/labs/VNumberInput/VNumberInput.mjs +48 -55
  84. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  85. package/lib/labs/VNumberInput/index.d.mts +6 -6
  86. package/lib/labs/VSnackbarQueue/index.d.mts +42 -42
  87. package/lib/labs/VStepperVertical/VStepperVertical.mjs +2 -0
  88. package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -1
  89. package/lib/labs/VStepperVertical/index.d.mts +90 -18
  90. package/lib/labs/VTreeview/index.d.mts +16 -16
  91. package/lib/labs/components.d.mts +160 -88
  92. package/package.json +1 -1
@@ -287,13 +287,13 @@ declare const VSelect: {
287
287
  component: Component;
288
288
  };
289
289
  focused: boolean;
290
+ eager: boolean;
290
291
  errorMessages: string | readonly string[] | null;
291
292
  maxErrors: string | number;
292
293
  readonly: boolean | null;
293
294
  rules: readonly ValidationRule[];
294
295
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
295
296
  tile: boolean;
296
- eager: boolean;
297
297
  role: string;
298
298
  density: Density;
299
299
  direction: "horizontal" | "vertical";
@@ -329,7 +329,7 @@ declare const VSelect: {
329
329
  placeholder?: string | undefined;
330
330
  counter?: string | number | boolean | undefined;
331
331
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
332
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
332
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
333
333
  rounded?: string | number | boolean | undefined;
334
334
  maxWidth?: string | number | undefined;
335
335
  minWidth?: string | number | undefined;
@@ -401,9 +401,9 @@ declare const VSelect: {
401
401
  elevation?: string | number | undefined;
402
402
  baseColor?: string | undefined;
403
403
  bgColor?: string | undefined;
404
+ activeColor?: string | undefined;
404
405
  activeClass?: string | undefined;
405
406
  activeStrategy?: ActiveStrategyProp | undefined;
406
- activeColor?: string | undefined;
407
407
  collapseIcon?: string | undefined;
408
408
  expandIcon?: string | undefined;
409
409
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
@@ -446,9 +446,9 @@ declare const VSelect: {
446
446
  elevation?: string | number | undefined;
447
447
  baseColor?: string | undefined;
448
448
  bgColor?: string | undefined;
449
+ activeColor?: string | undefined;
449
450
  activeClass?: string | undefined;
450
451
  activeStrategy?: ActiveStrategyProp | undefined;
451
- activeColor?: string | undefined;
452
452
  collapseIcon?: string | undefined;
453
453
  expandIcon?: string | undefined;
454
454
  } & {
@@ -617,9 +617,9 @@ declare const VSelect: {
617
617
  component: Component;
618
618
  };
619
619
  zIndex: string | number;
620
+ eager: boolean;
620
621
  modelValue: boolean;
621
622
  origin: Anchor | "auto" | "overlap";
622
- eager: boolean;
623
623
  location: Anchor;
624
624
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
625
625
  updateLocation: (e: Event) => void;
@@ -646,9 +646,9 @@ declare const VSelect: {
646
646
  component: Component;
647
647
  };
648
648
  zIndex: string | number;
649
+ eager: boolean;
649
650
  modelValue: boolean;
650
651
  origin: Anchor | "auto" | "overlap";
651
- eager: boolean;
652
652
  location: Anchor;
653
653
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
654
654
  updateLocation: (e: Event) => void;
@@ -722,9 +722,9 @@ declare const VSelect: {
722
722
  component: Component;
723
723
  };
724
724
  zIndex: string | number;
725
+ eager: boolean;
725
726
  modelValue: boolean;
726
727
  origin: Anchor | "auto" | "overlap";
727
- eager: boolean;
728
728
  location: Anchor;
729
729
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
730
730
  updateLocation: (e: Event) => void;
@@ -793,7 +793,7 @@ declare const VSelect: {
793
793
  }) => vue.VNodeChild) | undefined;
794
794
  } & {
795
795
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
796
- }, "style" | "disabled" | "transition" | "zIndex" | "modelValue" | "origin" | "eager" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
796
+ }, "style" | "disabled" | "transition" | "zIndex" | "eager" | "modelValue" | "origin" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
797
797
  itemColor?: string | undefined;
798
798
  } & {
799
799
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -819,13 +819,13 @@ declare const VSelect: {
819
819
  component: Component;
820
820
  };
821
821
  focused: boolean;
822
+ eager: boolean;
822
823
  errorMessages: string | readonly string[] | null;
823
824
  maxErrors: string | number;
824
825
  readonly: boolean | null;
825
826
  rules: readonly ValidationRule[];
826
827
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
827
828
  tile: boolean;
828
- eager: boolean;
829
829
  role: string;
830
830
  density: Density;
831
831
  direction: "horizontal" | "vertical";
@@ -861,7 +861,7 @@ declare const VSelect: {
861
861
  placeholder?: string | undefined;
862
862
  counter?: string | number | boolean | undefined;
863
863
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
864
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
864
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
865
865
  rounded?: string | number | boolean | undefined;
866
866
  maxWidth?: string | number | undefined;
867
867
  minWidth?: string | number | undefined;
@@ -933,9 +933,9 @@ declare const VSelect: {
933
933
  elevation?: string | number | undefined;
934
934
  baseColor?: string | undefined;
935
935
  bgColor?: string | undefined;
936
+ activeColor?: string | undefined;
936
937
  activeClass?: string | undefined;
937
938
  activeStrategy?: ActiveStrategyProp | undefined;
938
- activeColor?: string | undefined;
939
939
  collapseIcon?: string | undefined;
940
940
  expandIcon?: string | undefined;
941
941
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
@@ -978,9 +978,9 @@ declare const VSelect: {
978
978
  elevation?: string | number | undefined;
979
979
  baseColor?: string | undefined;
980
980
  bgColor?: string | undefined;
981
+ activeColor?: string | undefined;
981
982
  activeClass?: string | undefined;
982
983
  activeStrategy?: ActiveStrategyProp | undefined;
983
- activeColor?: string | undefined;
984
984
  collapseIcon?: string | undefined;
985
985
  expandIcon?: string | undefined;
986
986
  } & {
@@ -1149,9 +1149,9 @@ declare const VSelect: {
1149
1149
  component: Component;
1150
1150
  };
1151
1151
  zIndex: string | number;
1152
+ eager: boolean;
1152
1153
  modelValue: boolean;
1153
1154
  origin: Anchor | "auto" | "overlap";
1154
- eager: boolean;
1155
1155
  location: Anchor;
1156
1156
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
1157
1157
  updateLocation: (e: Event) => void;
@@ -1178,9 +1178,9 @@ declare const VSelect: {
1178
1178
  component: Component;
1179
1179
  };
1180
1180
  zIndex: string | number;
1181
+ eager: boolean;
1181
1182
  modelValue: boolean;
1182
1183
  origin: Anchor | "auto" | "overlap";
1183
- eager: boolean;
1184
1184
  location: Anchor;
1185
1185
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
1186
1186
  updateLocation: (e: Event) => void;
@@ -1254,9 +1254,9 @@ declare const VSelect: {
1254
1254
  component: Component;
1255
1255
  };
1256
1256
  zIndex: string | number;
1257
+ eager: boolean;
1257
1258
  modelValue: boolean;
1258
1259
  origin: Anchor | "auto" | "overlap";
1259
- eager: boolean;
1260
1260
  location: Anchor;
1261
1261
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
1262
1262
  updateLocation: (e: Event) => void;
@@ -1325,7 +1325,7 @@ declare const VSelect: {
1325
1325
  }) => vue.VNodeChild) | undefined;
1326
1326
  } & {
1327
1327
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1328
- }, "style" | "disabled" | "transition" | "zIndex" | "modelValue" | "origin" | "eager" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
1328
+ }, "style" | "disabled" | "transition" | "zIndex" | "eager" | "modelValue" | "origin" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
1329
1329
  itemColor?: string | undefined;
1330
1330
  } & {
1331
1331
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -1347,6 +1347,7 @@ declare const VSelect: {
1347
1347
  component: Component;
1348
1348
  };
1349
1349
  focused: boolean;
1350
+ eager: boolean;
1350
1351
  errorMessages: string | readonly string[] | null;
1351
1352
  maxErrors: string | number;
1352
1353
  readonly: boolean | null;
@@ -1354,7 +1355,6 @@ declare const VSelect: {
1354
1355
  rounded: string | number | boolean;
1355
1356
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
1356
1357
  tile: boolean;
1357
- eager: boolean;
1358
1358
  role: string;
1359
1359
  density: Density;
1360
1360
  direction: "horizontal" | "vertical";
@@ -1464,13 +1464,13 @@ declare const VSelect: {
1464
1464
  component: Component;
1465
1465
  };
1466
1466
  focused: boolean;
1467
+ eager: boolean;
1467
1468
  errorMessages: string | readonly string[] | null;
1468
1469
  maxErrors: string | number;
1469
1470
  readonly: boolean | null;
1470
1471
  rules: readonly ValidationRule[];
1471
1472
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
1472
1473
  tile: boolean;
1473
- eager: boolean;
1474
1474
  role: string;
1475
1475
  density: Density;
1476
1476
  direction: "horizontal" | "vertical";
@@ -1506,7 +1506,7 @@ declare const VSelect: {
1506
1506
  placeholder?: string | undefined;
1507
1507
  counter?: string | number | boolean | undefined;
1508
1508
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1509
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
1509
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
1510
1510
  rounded?: string | number | boolean | undefined;
1511
1511
  maxWidth?: string | number | undefined;
1512
1512
  minWidth?: string | number | undefined;
@@ -1578,9 +1578,9 @@ declare const VSelect: {
1578
1578
  elevation?: string | number | undefined;
1579
1579
  baseColor?: string | undefined;
1580
1580
  bgColor?: string | undefined;
1581
+ activeColor?: string | undefined;
1581
1582
  activeClass?: string | undefined;
1582
1583
  activeStrategy?: ActiveStrategyProp | undefined;
1583
- activeColor?: string | undefined;
1584
1584
  collapseIcon?: string | undefined;
1585
1585
  expandIcon?: string | undefined;
1586
1586
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
@@ -1623,9 +1623,9 @@ declare const VSelect: {
1623
1623
  elevation?: string | number | undefined;
1624
1624
  baseColor?: string | undefined;
1625
1625
  bgColor?: string | undefined;
1626
+ activeColor?: string | undefined;
1626
1627
  activeClass?: string | undefined;
1627
1628
  activeStrategy?: ActiveStrategyProp | undefined;
1628
- activeColor?: string | undefined;
1629
1629
  collapseIcon?: string | undefined;
1630
1630
  expandIcon?: string | undefined;
1631
1631
  } & {
@@ -1794,9 +1794,9 @@ declare const VSelect: {
1794
1794
  component: Component;
1795
1795
  };
1796
1796
  zIndex: string | number;
1797
+ eager: boolean;
1797
1798
  modelValue: boolean;
1798
1799
  origin: Anchor | "auto" | "overlap";
1799
- eager: boolean;
1800
1800
  location: Anchor;
1801
1801
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
1802
1802
  updateLocation: (e: Event) => void;
@@ -1823,9 +1823,9 @@ declare const VSelect: {
1823
1823
  component: Component;
1824
1824
  };
1825
1825
  zIndex: string | number;
1826
+ eager: boolean;
1826
1827
  modelValue: boolean;
1827
1828
  origin: Anchor | "auto" | "overlap";
1828
- eager: boolean;
1829
1829
  location: Anchor;
1830
1830
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
1831
1831
  updateLocation: (e: Event) => void;
@@ -1899,9 +1899,9 @@ declare const VSelect: {
1899
1899
  component: Component;
1900
1900
  };
1901
1901
  zIndex: string | number;
1902
+ eager: boolean;
1902
1903
  modelValue: boolean;
1903
1904
  origin: Anchor | "auto" | "overlap";
1904
- eager: boolean;
1905
1905
  location: Anchor;
1906
1906
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
1907
1907
  updateLocation: (e: Event) => void;
@@ -1970,7 +1970,7 @@ declare const VSelect: {
1970
1970
  }) => vue.VNodeChild) | undefined;
1971
1971
  } & {
1972
1972
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1973
- }, "style" | "disabled" | "transition" | "zIndex" | "modelValue" | "origin" | "eager" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
1973
+ }, "style" | "disabled" | "transition" | "zIndex" | "eager" | "modelValue" | "origin" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
1974
1974
  itemColor?: string | undefined;
1975
1975
  } & {
1976
1976
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -1992,6 +1992,7 @@ declare const VSelect: {
1992
1992
  component: Component;
1993
1993
  };
1994
1994
  focused: boolean;
1995
+ eager: boolean;
1995
1996
  errorMessages: string | readonly string[] | null;
1996
1997
  maxErrors: string | number;
1997
1998
  readonly: boolean | null;
@@ -1999,7 +2000,6 @@ declare const VSelect: {
1999
2000
  rounded: string | number | boolean;
2000
2001
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2001
2002
  tile: boolean;
2002
- eager: boolean;
2003
2003
  role: string;
2004
2004
  density: Density;
2005
2005
  direction: "horizontal" | "vertical";
@@ -2044,13 +2044,13 @@ declare const VSelect: {
2044
2044
  component: Component;
2045
2045
  };
2046
2046
  focused: boolean;
2047
+ eager: boolean;
2047
2048
  errorMessages: string | readonly string[] | null;
2048
2049
  maxErrors: string | number;
2049
2050
  readonly: boolean | null;
2050
2051
  rules: readonly ValidationRule[];
2051
2052
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2052
2053
  tile: boolean;
2053
- eager: boolean;
2054
2054
  role: string;
2055
2055
  density: Density;
2056
2056
  direction: "horizontal" | "vertical";
@@ -2086,7 +2086,7 @@ declare const VSelect: {
2086
2086
  placeholder?: string | undefined;
2087
2087
  counter?: string | number | boolean | undefined;
2088
2088
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
2089
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
2089
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
2090
2090
  rounded?: string | number | boolean | undefined;
2091
2091
  maxWidth?: string | number | undefined;
2092
2092
  minWidth?: string | number | undefined;
@@ -2158,9 +2158,9 @@ declare const VSelect: {
2158
2158
  elevation?: string | number | undefined;
2159
2159
  baseColor?: string | undefined;
2160
2160
  bgColor?: string | undefined;
2161
+ activeColor?: string | undefined;
2161
2162
  activeClass?: string | undefined;
2162
2163
  activeStrategy?: ActiveStrategyProp | undefined;
2163
- activeColor?: string | undefined;
2164
2164
  collapseIcon?: string | undefined;
2165
2165
  expandIcon?: string | undefined;
2166
2166
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
@@ -2203,9 +2203,9 @@ declare const VSelect: {
2203
2203
  elevation?: string | number | undefined;
2204
2204
  baseColor?: string | undefined;
2205
2205
  bgColor?: string | undefined;
2206
+ activeColor?: string | undefined;
2206
2207
  activeClass?: string | undefined;
2207
2208
  activeStrategy?: ActiveStrategyProp | undefined;
2208
- activeColor?: string | undefined;
2209
2209
  collapseIcon?: string | undefined;
2210
2210
  expandIcon?: string | undefined;
2211
2211
  } & {
@@ -2374,9 +2374,9 @@ declare const VSelect: {
2374
2374
  component: Component;
2375
2375
  };
2376
2376
  zIndex: string | number;
2377
+ eager: boolean;
2377
2378
  modelValue: boolean;
2378
2379
  origin: Anchor | "auto" | "overlap";
2379
- eager: boolean;
2380
2380
  location: Anchor;
2381
2381
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
2382
2382
  updateLocation: (e: Event) => void;
@@ -2403,9 +2403,9 @@ declare const VSelect: {
2403
2403
  component: Component;
2404
2404
  };
2405
2405
  zIndex: string | number;
2406
+ eager: boolean;
2406
2407
  modelValue: boolean;
2407
2408
  origin: Anchor | "auto" | "overlap";
2408
- eager: boolean;
2409
2409
  location: Anchor;
2410
2410
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
2411
2411
  updateLocation: (e: Event) => void;
@@ -2479,9 +2479,9 @@ declare const VSelect: {
2479
2479
  component: Component;
2480
2480
  };
2481
2481
  zIndex: string | number;
2482
+ eager: boolean;
2482
2483
  modelValue: boolean;
2483
2484
  origin: Anchor | "auto" | "overlap";
2484
- eager: boolean;
2485
2485
  location: Anchor;
2486
2486
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
2487
2487
  updateLocation: (e: Event) => void;
@@ -2550,7 +2550,7 @@ declare const VSelect: {
2550
2550
  }) => vue.VNodeChild) | undefined;
2551
2551
  } & {
2552
2552
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2553
- }, "style" | "disabled" | "transition" | "zIndex" | "modelValue" | "origin" | "eager" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
2553
+ }, "style" | "disabled" | "transition" | "zIndex" | "eager" | "modelValue" | "origin" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
2554
2554
  itemColor?: string | undefined;
2555
2555
  } & {
2556
2556
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -2576,6 +2576,7 @@ declare const VSelect: {
2576
2576
  component: Component;
2577
2577
  };
2578
2578
  focused: boolean;
2579
+ eager: boolean;
2579
2580
  errorMessages: string | readonly string[] | null;
2580
2581
  maxErrors: string | number;
2581
2582
  readonly: boolean | null;
@@ -2583,7 +2584,6 @@ declare const VSelect: {
2583
2584
  rounded: string | number | boolean;
2584
2585
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2585
2586
  tile: boolean;
2586
- eager: boolean;
2587
2587
  role: string;
2588
2588
  density: Density;
2589
2589
  direction: "horizontal" | "vertical";
@@ -2795,7 +2795,7 @@ declare const VSelect: {
2795
2795
  type: PropType<any>;
2796
2796
  default: any;
2797
2797
  };
2798
- validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
2798
+ validateOn: PropType<(("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined>;
2799
2799
  rounded: {
2800
2800
  type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
2801
2801
  default: undefined;
@@ -2947,9 +2947,9 @@ declare const VSelect: {
2947
2947
  elevation?: string | number | undefined;
2948
2948
  baseColor?: string | undefined;
2949
2949
  bgColor?: string | undefined;
2950
+ activeColor?: string | undefined;
2950
2951
  activeClass?: string | undefined;
2951
2952
  activeStrategy?: ActiveStrategyProp | undefined;
2952
- activeColor?: string | undefined;
2953
2953
  collapseIcon?: string | undefined;
2954
2954
  expandIcon?: string | undefined;
2955
2955
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
@@ -2992,9 +2992,9 @@ declare const VSelect: {
2992
2992
  elevation?: string | number | undefined;
2993
2993
  baseColor?: string | undefined;
2994
2994
  bgColor?: string | undefined;
2995
+ activeColor?: string | undefined;
2995
2996
  activeClass?: string | undefined;
2996
2997
  activeStrategy?: ActiveStrategyProp | undefined;
2997
- activeColor?: string | undefined;
2998
2998
  collapseIcon?: string | undefined;
2999
2999
  expandIcon?: string | undefined;
3000
3000
  } & {
@@ -3170,9 +3170,9 @@ declare const VSelect: {
3170
3170
  component: Component;
3171
3171
  };
3172
3172
  zIndex: string | number;
3173
+ eager: boolean;
3173
3174
  modelValue: boolean;
3174
3175
  origin: Anchor | "auto" | "overlap";
3175
- eager: boolean;
3176
3176
  location: Anchor;
3177
3177
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
3178
3178
  updateLocation: (e: Event) => void;
@@ -3199,9 +3199,9 @@ declare const VSelect: {
3199
3199
  component: Component;
3200
3200
  };
3201
3201
  zIndex: string | number;
3202
+ eager: boolean;
3202
3203
  modelValue: boolean;
3203
3204
  origin: Anchor | "auto" | "overlap";
3204
- eager: boolean;
3205
3205
  location: Anchor;
3206
3206
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
3207
3207
  updateLocation: (e: Event) => void;
@@ -3275,9 +3275,9 @@ declare const VSelect: {
3275
3275
  component: Component;
3276
3276
  };
3277
3277
  zIndex: string | number;
3278
+ eager: boolean;
3278
3279
  modelValue: boolean;
3279
3280
  origin: Anchor | "auto" | "overlap";
3280
- eager: boolean;
3281
3281
  location: Anchor;
3282
3282
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
3283
3283
  updateLocation: (e: Event) => void;
@@ -3346,7 +3346,7 @@ declare const VSelect: {
3346
3346
  }) => vue.VNodeChild) | undefined;
3347
3347
  } & {
3348
3348
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
3349
- }, "style" | "disabled" | "transition" | "zIndex" | "modelValue" | "origin" | "eager" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
3349
+ }, "style" | "disabled" | "transition" | "zIndex" | "eager" | "modelValue" | "origin" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
3350
3350
  };
3351
3351
  multiple: BooleanConstructor;
3352
3352
  noDataText: {
@@ -3427,7 +3427,7 @@ declare const VSelect: {
3427
3427
  type: PropType<any>;
3428
3428
  default: any;
3429
3429
  };
3430
- validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
3430
+ validateOn: PropType<(("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined>;
3431
3431
  rounded: {
3432
3432
  type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
3433
3433
  default: undefined;
@@ -3579,9 +3579,9 @@ declare const VSelect: {
3579
3579
  elevation?: string | number | undefined;
3580
3580
  baseColor?: string | undefined;
3581
3581
  bgColor?: string | undefined;
3582
+ activeColor?: string | undefined;
3582
3583
  activeClass?: string | undefined;
3583
3584
  activeStrategy?: ActiveStrategyProp | undefined;
3584
- activeColor?: string | undefined;
3585
3585
  collapseIcon?: string | undefined;
3586
3586
  expandIcon?: string | undefined;
3587
3587
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
@@ -3624,9 +3624,9 @@ declare const VSelect: {
3624
3624
  elevation?: string | number | undefined;
3625
3625
  baseColor?: string | undefined;
3626
3626
  bgColor?: string | undefined;
3627
+ activeColor?: string | undefined;
3627
3628
  activeClass?: string | undefined;
3628
3629
  activeStrategy?: ActiveStrategyProp | undefined;
3629
- activeColor?: string | undefined;
3630
3630
  collapseIcon?: string | undefined;
3631
3631
  expandIcon?: string | undefined;
3632
3632
  } & {
@@ -3802,9 +3802,9 @@ declare const VSelect: {
3802
3802
  component: Component;
3803
3803
  };
3804
3804
  zIndex: string | number;
3805
+ eager: boolean;
3805
3806
  modelValue: boolean;
3806
3807
  origin: Anchor | "auto" | "overlap";
3807
- eager: boolean;
3808
3808
  location: Anchor;
3809
3809
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
3810
3810
  updateLocation: (e: Event) => void;
@@ -3831,9 +3831,9 @@ declare const VSelect: {
3831
3831
  component: Component;
3832
3832
  };
3833
3833
  zIndex: string | number;
3834
+ eager: boolean;
3834
3835
  modelValue: boolean;
3835
3836
  origin: Anchor | "auto" | "overlap";
3836
- eager: boolean;
3837
3837
  location: Anchor;
3838
3838
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
3839
3839
  updateLocation: (e: Event) => void;
@@ -3907,9 +3907,9 @@ declare const VSelect: {
3907
3907
  component: Component;
3908
3908
  };
3909
3909
  zIndex: string | number;
3910
+ eager: boolean;
3910
3911
  modelValue: boolean;
3911
3912
  origin: Anchor | "auto" | "overlap";
3912
- eager: boolean;
3913
3913
  location: Anchor;
3914
3914
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
3915
3915
  updateLocation: (e: Event) => void;
@@ -3978,7 +3978,7 @@ declare const VSelect: {
3978
3978
  }) => vue.VNodeChild) | undefined;
3979
3979
  } & {
3980
3980
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
3981
- }, "style" | "disabled" | "transition" | "zIndex" | "modelValue" | "origin" | "eager" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
3981
+ }, "style" | "disabled" | "transition" | "zIndex" | "eager" | "modelValue" | "origin" | "location" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
3982
3982
  };
3983
3983
  multiple: BooleanConstructor;
3984
3984
  noDataText: {
@@ -346,7 +346,9 @@ export const VSlideGroup = genericComponent()({
346
346
  selected: group.selected,
347
347
  scrollTo,
348
348
  scrollOffset,
349
- focus
349
+ focus,
350
+ hasPrev,
351
+ hasNext
350
352
  };
351
353
  }
352
354
  });