vuetify 3.5.5 → 3.5.7

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 (86) hide show
  1. package/dist/_component-variables-labs.sass +2 -0
  2. package/dist/json/attributes.json +352 -40
  3. package/dist/json/importMap-labs.json +16 -8
  4. package/dist/json/importMap.json +122 -118
  5. package/dist/json/tags.json +93 -0
  6. package/dist/json/web-types.json +1084 -52
  7. package/dist/vuetify-labs.css +2121 -1996
  8. package/dist/vuetify-labs.d.ts +1336 -128
  9. package/dist/vuetify-labs.esm.js +332 -81
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +332 -81
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +838 -839
  14. package/dist/vuetify.d.ts +320 -145
  15. package/dist/vuetify.esm.js +87 -75
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +87 -75
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +60 -58
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VApp/index.d.mts +8 -6
  23. package/lib/components/VAutocomplete/VAutocomplete.css +4 -4
  24. package/lib/components/VAutocomplete/VAutocomplete.mjs +33 -29
  25. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  26. package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
  27. package/lib/components/VCheckbox/VCheckbox.mjs +3 -1
  28. package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
  29. package/lib/components/VCombobox/VCombobox.css +4 -4
  30. package/lib/components/VCombobox/VCombobox.mjs +22 -23
  31. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  32. package/lib/components/VCombobox/VCombobox.sass +1 -1
  33. package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
  34. package/lib/components/VDataIterator/index.d.mts +50 -94
  35. package/lib/components/VDataTable/index.d.mts +214 -1
  36. package/lib/components/VDataTable/index.mjs +1 -0
  37. package/lib/components/VDataTable/index.mjs.map +1 -1
  38. package/lib/components/VExpansionPanel/VExpansionPanel.css +4 -7
  39. package/lib/components/VExpansionPanel/VExpansionPanel.sass +4 -3
  40. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +2 -0
  41. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  42. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +2 -0
  43. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  44. package/lib/components/VExpansionPanel/index.d.mts +27 -0
  45. package/lib/components/VLayout/index.d.mts +8 -6
  46. package/lib/components/VSelect/VSelect.mjs +20 -18
  47. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  48. package/lib/components/VToolbar/VToolbar.css +3 -1
  49. package/lib/components/VToolbar/VToolbar.sass +2 -1
  50. package/lib/components/index.d.mts +279 -106
  51. package/lib/composables/filter.mjs +1 -1
  52. package/lib/composables/filter.mjs.map +1 -1
  53. package/lib/composables/goto.mjs +2 -2
  54. package/lib/composables/goto.mjs.map +1 -1
  55. package/lib/composables/layout.mjs.map +1 -1
  56. package/lib/entry-bundler.mjs +1 -1
  57. package/lib/framework.mjs +1 -1
  58. package/lib/index.d.mts +42 -39
  59. package/lib/labs/VEmptyState/VEmptyState.css +59 -0
  60. package/lib/labs/VEmptyState/VEmptyState.mjs +145 -0
  61. package/lib/labs/VEmptyState/VEmptyState.mjs.map +1 -0
  62. package/lib/labs/VEmptyState/VEmptyState.sass +53 -0
  63. package/lib/labs/VEmptyState/_variables.scss +22 -0
  64. package/lib/labs/VEmptyState/index.d.mts +415 -0
  65. package/lib/labs/VEmptyState/index.mjs +2 -0
  66. package/lib/labs/VEmptyState/index.mjs.map +1 -0
  67. package/lib/labs/VFab/VFab.css +69 -0
  68. package/lib/labs/VFab/VFab.mjs +114 -0
  69. package/lib/labs/VFab/VFab.mjs.map +1 -0
  70. package/lib/labs/VFab/VFab.sass +82 -0
  71. package/lib/labs/VFab/_mixins.scss +22 -0
  72. package/lib/labs/VFab/_variables.scss +33 -0
  73. package/lib/labs/VFab/index.d.mts +656 -0
  74. package/lib/labs/VFab/index.mjs +2 -0
  75. package/lib/labs/VFab/index.mjs.map +1 -0
  76. package/lib/labs/VSparkline/VBarline.mjs +4 -4
  77. package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
  78. package/lib/labs/VSparkline/VTrendline.mjs +6 -2
  79. package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
  80. package/lib/labs/VSparkline/index.d.mts +12 -0
  81. package/lib/labs/VSparkline/util/line.mjs +2 -0
  82. package/lib/labs/VSparkline/util/line.mjs.map +1 -1
  83. package/lib/labs/components.d.mts +1066 -2
  84. package/lib/labs/components.mjs +2 -0
  85. package/lib/labs/components.mjs.map +1 -1
  86. package/package.json +2 -2
package/dist/vuetify.d.ts CHANGED
@@ -799,7 +799,7 @@ declare const VApp: {
799
799
  }, {
800
800
  getLayoutItem: (id: string) => {
801
801
  size: number;
802
- position: "left" | "top" | "bottom" | "right";
802
+ position: Position;
803
803
  top: number;
804
804
  bottom: number;
805
805
  left: number;
@@ -808,7 +808,7 @@ declare const VApp: {
808
808
  } | undefined;
809
809
  items: vue.ComputedRef<{
810
810
  size: number;
811
- position: "left" | "top" | "bottom" | "right";
811
+ position: Position;
812
812
  top: number;
813
813
  bottom: number;
814
814
  left: number;
@@ -865,7 +865,7 @@ declare const VApp: {
865
865
  }, {
866
866
  getLayoutItem: (id: string) => {
867
867
  size: number;
868
- position: "left" | "top" | "bottom" | "right";
868
+ position: Position;
869
869
  top: number;
870
870
  bottom: number;
871
871
  left: number;
@@ -874,7 +874,7 @@ declare const VApp: {
874
874
  } | undefined;
875
875
  items: vue.ComputedRef<{
876
876
  size: number;
877
- position: "left" | "top" | "bottom" | "right";
877
+ position: Position;
878
878
  top: number;
879
879
  bottom: number;
880
880
  left: number;
@@ -908,7 +908,7 @@ declare const VApp: {
908
908
  }, {
909
909
  getLayoutItem: (id: string) => {
910
910
  size: number;
911
- position: "left" | "top" | "bottom" | "right";
911
+ position: Position;
912
912
  top: number;
913
913
  bottom: number;
914
914
  left: number;
@@ -917,7 +917,7 @@ declare const VApp: {
917
917
  } | undefined;
918
918
  items: vue.ComputedRef<{
919
919
  size: number;
920
- position: "left" | "top" | "bottom" | "right";
920
+ position: Position;
921
921
  top: number;
922
922
  bottom: number;
923
923
  left: number;
@@ -22452,7 +22452,7 @@ interface DataIteratorItem<T = any> extends GroupableItem<T>, SelectableItem {
22452
22452
  value: unknown;
22453
22453
  }
22454
22454
 
22455
- type VDataIteratorSlotProps = {
22455
+ type VDataIteratorSlotProps<T> = {
22456
22456
  page: number;
22457
22457
  itemsPerPage: number;
22458
22458
  sortBy: readonly SortItem[];
@@ -22470,8 +22470,14 @@ type VDataIteratorSlotProps = {
22470
22470
  toggleExpand: ReturnType<typeof provideExpanded>['toggleExpand'];
22471
22471
  isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
22472
22472
  toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
22473
- items: readonly DataIteratorItem[];
22474
- groupedItems: readonly (DataIteratorItem | Group<DataIteratorItem>)[];
22473
+ items: readonly DataIteratorItem<T>[];
22474
+ groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>>)[];
22475
+ };
22476
+ type VDataIteratorSlots<T> = {
22477
+ default: VDataIteratorSlotProps<T>;
22478
+ header: VDataIteratorSlotProps<T>;
22479
+ footer: VDataIteratorSlotProps<T>;
22480
+ 'no-data': never;
22475
22481
  };
22476
22482
  declare const VDataIterator: {
22477
22483
  new (...args: any[]): vue.CreateComponentPublicInstance<{
@@ -22481,7 +22487,6 @@ declare const VDataIterator: {
22481
22487
  expanded: readonly string[];
22482
22488
  tag: string;
22483
22489
  sortBy: readonly SortItem[];
22484
- items: any[];
22485
22490
  modelValue: readonly any[];
22486
22491
  valueComparator: typeof deepEqual;
22487
22492
  selectStrategy: "all" | "page" | "single";
@@ -22504,24 +22509,6 @@ declare const VDataIterator: {
22504
22509
  customKeyFilter?: FilterKeyFunctions | undefined;
22505
22510
  filterKeys?: FilterKeys | undefined;
22506
22511
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
22507
- } & {
22508
- $children?: vue.VNodeChild | {
22509
- default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22510
- header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22511
- footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22512
- 'no-data'?: (() => vue.VNodeChild) | undefined;
22513
- } | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
22514
- 'v-slots'?: {
22515
- default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22516
- header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22517
- footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22518
- 'no-data'?: false | (() => vue.VNodeChild) | undefined;
22519
- } | undefined;
22520
- } & {
22521
- "v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22522
- "v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22523
- "v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22524
- "v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
22525
22512
  } & {
22526
22513
  "onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
22527
22514
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
@@ -22531,7 +22518,7 @@ declare const VDataIterator: {
22531
22518
  "onUpdate:itemsPerPage"?: ((value: number) => any) | undefined;
22532
22519
  "onUpdate:options"?: ((value: any) => any) | undefined;
22533
22520
  "onUpdate:currentItems"?: ((value: any) => any) | undefined;
22534
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
22521
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
22535
22522
  'update:modelValue': (value: any[]) => boolean;
22536
22523
  'update:groupBy': (value: any) => boolean;
22537
22524
  'update:page': (value: number) => boolean;
@@ -22540,14 +22527,13 @@ declare const VDataIterator: {
22540
22527
  'update:options': (value: any) => boolean;
22541
22528
  'update:expanded': (value: any) => boolean;
22542
22529
  'update:currentItems': (value: any) => boolean;
22543
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
22530
+ }, "$children" | "v-slot:default" | "v-slots" | "items" | "v-slot:header" | "v-slot:no-data" | "v-slot:footer">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
22544
22531
  page: string | number;
22545
22532
  loading: boolean;
22546
22533
  style: vue.StyleValue;
22547
22534
  expanded: readonly string[];
22548
22535
  tag: string;
22549
22536
  sortBy: readonly SortItem[];
22550
- items: any[];
22551
22537
  modelValue: readonly any[];
22552
22538
  valueComparator: typeof deepEqual;
22553
22539
  selectStrategy: "all" | "page" | "single";
@@ -22570,24 +22556,6 @@ declare const VDataIterator: {
22570
22556
  customKeyFilter?: FilterKeyFunctions | undefined;
22571
22557
  filterKeys?: FilterKeys | undefined;
22572
22558
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
22573
- } & {
22574
- $children?: vue.VNodeChild | {
22575
- default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22576
- header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22577
- footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22578
- 'no-data'?: (() => vue.VNodeChild) | undefined;
22579
- } | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
22580
- 'v-slots'?: {
22581
- default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22582
- header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22583
- footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22584
- 'no-data'?: false | (() => vue.VNodeChild) | undefined;
22585
- } | undefined;
22586
- } & {
22587
- "v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22588
- "v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22589
- "v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22590
- "v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
22591
22559
  } & {
22592
22560
  "onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
22593
22561
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
@@ -22604,7 +22572,6 @@ declare const VDataIterator: {
22604
22572
  expanded: readonly string[];
22605
22573
  tag: string;
22606
22574
  sortBy: readonly SortItem[];
22607
- items: any[];
22608
22575
  modelValue: readonly any[];
22609
22576
  valueComparator: typeof deepEqual;
22610
22577
  selectStrategy: "all" | "page" | "single";
@@ -22621,13 +22588,13 @@ declare const VDataIterator: {
22621
22588
  showExpand: boolean;
22622
22589
  itemsPerPage: NonNullable<string | number>;
22623
22590
  }, true, {}, vue.SlotsType<Partial<{
22624
- default: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22591
+ default: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22625
22592
  [key: string]: any;
22626
22593
  }>[];
22627
- header: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22594
+ header: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22628
22595
  [key: string]: any;
22629
22596
  }>[];
22630
- footer: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22597
+ footer: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22631
22598
  [key: string]: any;
22632
22599
  }>[];
22633
22600
  'no-data': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -22647,7 +22614,6 @@ declare const VDataIterator: {
22647
22614
  expanded: readonly string[];
22648
22615
  tag: string;
22649
22616
  sortBy: readonly SortItem[];
22650
- items: any[];
22651
22617
  modelValue: readonly any[];
22652
22618
  valueComparator: typeof deepEqual;
22653
22619
  selectStrategy: "all" | "page" | "single";
@@ -22670,24 +22636,6 @@ declare const VDataIterator: {
22670
22636
  customKeyFilter?: FilterKeyFunctions | undefined;
22671
22637
  filterKeys?: FilterKeys | undefined;
22672
22638
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
22673
- } & {
22674
- $children?: vue.VNodeChild | {
22675
- default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22676
- header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22677
- footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22678
- 'no-data'?: (() => vue.VNodeChild) | undefined;
22679
- } | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
22680
- 'v-slots'?: {
22681
- default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22682
- header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22683
- footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22684
- 'no-data'?: false | (() => vue.VNodeChild) | undefined;
22685
- } | undefined;
22686
- } & {
22687
- "v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22688
- "v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22689
- "v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22690
- "v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
22691
22639
  } & {
22692
22640
  "onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
22693
22641
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
@@ -22704,7 +22652,6 @@ declare const VDataIterator: {
22704
22652
  expanded: readonly string[];
22705
22653
  tag: string;
22706
22654
  sortBy: readonly SortItem[];
22707
- items: any[];
22708
22655
  modelValue: readonly any[];
22709
22656
  valueComparator: typeof deepEqual;
22710
22657
  selectStrategy: "all" | "page" | "single";
@@ -22731,7 +22678,6 @@ declare const VDataIterator: {
22731
22678
  expanded: readonly string[];
22732
22679
  tag: string;
22733
22680
  sortBy: readonly SortItem[];
22734
- items: any[];
22735
22681
  modelValue: readonly any[];
22736
22682
  valueComparator: typeof deepEqual;
22737
22683
  selectStrategy: "all" | "page" | "single";
@@ -22754,24 +22700,6 @@ declare const VDataIterator: {
22754
22700
  customKeyFilter?: FilterKeyFunctions | undefined;
22755
22701
  filterKeys?: FilterKeys | undefined;
22756
22702
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
22757
- } & {
22758
- $children?: vue.VNodeChild | {
22759
- default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22760
- header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22761
- footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22762
- 'no-data'?: (() => vue.VNodeChild) | undefined;
22763
- } | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
22764
- 'v-slots'?: {
22765
- default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22766
- header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22767
- footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22768
- 'no-data'?: false | (() => vue.VNodeChild) | undefined;
22769
- } | undefined;
22770
- } & {
22771
- "v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22772
- "v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22773
- "v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
22774
- "v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
22775
22703
  } & {
22776
22704
  "onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
22777
22705
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
@@ -22781,7 +22709,7 @@ declare const VDataIterator: {
22781
22709
  "onUpdate:itemsPerPage"?: ((value: number) => any) | undefined;
22782
22710
  "onUpdate:options"?: ((value: any) => any) | undefined;
22783
22711
  "onUpdate:currentItems"?: ((value: any) => any) | undefined;
22784
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
22712
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
22785
22713
  'update:modelValue': (value: any[]) => boolean;
22786
22714
  'update:groupBy': (value: any) => boolean;
22787
22715
  'update:page': (value: number) => boolean;
@@ -22790,14 +22718,13 @@ declare const VDataIterator: {
22790
22718
  'update:options': (value: any) => boolean;
22791
22719
  'update:expanded': (value: any) => boolean;
22792
22720
  'update:currentItems': (value: any) => boolean;
22793
- }, string, {
22721
+ }, "$children" | "v-slot:default" | "v-slots" | "items" | "v-slot:header" | "v-slot:no-data" | "v-slot:footer">, string, {
22794
22722
  page: string | number;
22795
22723
  loading: boolean;
22796
22724
  style: vue.StyleValue;
22797
22725
  expanded: readonly string[];
22798
22726
  tag: string;
22799
22727
  sortBy: readonly SortItem[];
22800
- items: any[];
22801
22728
  modelValue: readonly any[];
22802
22729
  valueComparator: typeof deepEqual;
22803
22730
  selectStrategy: "all" | "page" | "single";
@@ -22814,19 +22741,23 @@ declare const VDataIterator: {
22814
22741
  showExpand: boolean;
22815
22742
  itemsPerPage: NonNullable<string | number>;
22816
22743
  }, {}, string, vue.SlotsType<Partial<{
22817
- default: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22744
+ default: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22818
22745
  [key: string]: any;
22819
22746
  }>[];
22820
- header: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22747
+ header: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22821
22748
  [key: string]: any;
22822
22749
  }>[];
22823
- footer: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22750
+ footer: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
22824
22751
  [key: string]: any;
22825
22752
  }>[];
22826
22753
  'no-data': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
22827
22754
  [key: string]: any;
22828
22755
  }>[];
22829
- }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
22756
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
22757
+ items?: readonly T[] | undefined;
22758
+ }, slots: VDataIteratorSlots<T>) => GenericProps<{
22759
+ items?: readonly T[] | undefined;
22760
+ }, VDataIteratorSlots<T>>) & FilterPropsOptions<{
22830
22761
  tag: {
22831
22762
  type: StringConstructor;
22832
22763
  default: string;
@@ -23006,6 +22937,219 @@ type VDataTableHeadersSlots = {
23006
22937
  } & {
23007
22938
  [key: `header.${string}`]: VDataTableHeaderCellColumnSlotProps;
23008
22939
  };
22940
+ declare const VDataTableHeaders: {
22941
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
22942
+ sticky: boolean;
22943
+ multiSort: boolean;
22944
+ sortAscIcon: IconValue;
22945
+ sortDescIcon: IconValue;
22946
+ } & {
22947
+ color?: string | undefined;
22948
+ loading?: string | boolean | undefined;
22949
+ headerProps?: Record<string, any> | undefined;
22950
+ } & {
22951
+ $children?: {} | vue.VNodeChild | {
22952
+ [x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22953
+ headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
22954
+ loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
22955
+ 'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22956
+ 'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22957
+ };
22958
+ 'v-slots'?: {
22959
+ [x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22960
+ headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
22961
+ loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
22962
+ 'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22963
+ 'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22964
+ } | undefined;
22965
+ } & {
22966
+ [x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22967
+ "v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
22968
+ "v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
22969
+ "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22970
+ "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22971
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
22972
+ sticky: boolean;
22973
+ multiSort: boolean;
22974
+ sortAscIcon: IconValue;
22975
+ sortDescIcon: IconValue;
22976
+ } & {
22977
+ color?: string | undefined;
22978
+ loading?: string | boolean | undefined;
22979
+ headerProps?: Record<string, any> | undefined;
22980
+ } & {
22981
+ $children?: {} | vue.VNodeChild | {
22982
+ [x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22983
+ headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
22984
+ loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
22985
+ 'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22986
+ 'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22987
+ };
22988
+ 'v-slots'?: {
22989
+ [x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22990
+ headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
22991
+ loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
22992
+ 'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22993
+ 'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22994
+ } | undefined;
22995
+ } & {
22996
+ [x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
22997
+ "v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
22998
+ "v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
22999
+ "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23000
+ "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23001
+ }, {
23002
+ sticky: boolean;
23003
+ multiSort: boolean;
23004
+ sortAscIcon: IconValue;
23005
+ sortDescIcon: IconValue;
23006
+ }, true, {}, vue.SlotsType<Partial<{
23007
+ [x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
23008
+ [key: string]: any;
23009
+ }>[];
23010
+ headers: (arg: HeadersSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
23011
+ [key: string]: any;
23012
+ }>[];
23013
+ loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
23014
+ [key: string]: any;
23015
+ }>[];
23016
+ 'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
23017
+ [key: string]: any;
23018
+ }>[];
23019
+ 'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
23020
+ [key: string]: any;
23021
+ }>[];
23022
+ }>>, {
23023
+ P: {};
23024
+ B: {};
23025
+ D: {};
23026
+ C: {};
23027
+ M: {};
23028
+ Defaults: {};
23029
+ }, {
23030
+ sticky: boolean;
23031
+ multiSort: boolean;
23032
+ sortAscIcon: IconValue;
23033
+ sortDescIcon: IconValue;
23034
+ } & {
23035
+ color?: string | undefined;
23036
+ loading?: string | boolean | undefined;
23037
+ headerProps?: Record<string, any> | undefined;
23038
+ } & {
23039
+ $children?: {} | vue.VNodeChild | {
23040
+ [x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23041
+ headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
23042
+ loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
23043
+ 'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23044
+ 'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23045
+ };
23046
+ 'v-slots'?: {
23047
+ [x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23048
+ headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
23049
+ loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
23050
+ 'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23051
+ 'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23052
+ } | undefined;
23053
+ } & {
23054
+ [x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23055
+ "v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
23056
+ "v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
23057
+ "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23058
+ "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23059
+ }, {}, {}, {}, {}, {
23060
+ sticky: boolean;
23061
+ multiSort: boolean;
23062
+ sortAscIcon: IconValue;
23063
+ sortDescIcon: IconValue;
23064
+ }>;
23065
+ __isFragment?: undefined;
23066
+ __isTeleport?: undefined;
23067
+ __isSuspense?: undefined;
23068
+ } & vue.ComponentOptionsBase<{
23069
+ sticky: boolean;
23070
+ multiSort: boolean;
23071
+ sortAscIcon: IconValue;
23072
+ sortDescIcon: IconValue;
23073
+ } & {
23074
+ color?: string | undefined;
23075
+ loading?: string | boolean | undefined;
23076
+ headerProps?: Record<string, any> | undefined;
23077
+ } & {
23078
+ $children?: {} | vue.VNodeChild | {
23079
+ [x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23080
+ headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
23081
+ loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
23082
+ 'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23083
+ 'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23084
+ };
23085
+ 'v-slots'?: {
23086
+ [x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23087
+ headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
23088
+ loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
23089
+ 'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23090
+ 'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23091
+ } | undefined;
23092
+ } & {
23093
+ [x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23094
+ "v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
23095
+ "v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
23096
+ "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23097
+ "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23098
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
23099
+ sticky: boolean;
23100
+ multiSort: boolean;
23101
+ sortAscIcon: IconValue;
23102
+ sortDescIcon: IconValue;
23103
+ }, {}, string, vue.SlotsType<Partial<{
23104
+ [x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
23105
+ [key: string]: any;
23106
+ }>[];
23107
+ headers: (arg: HeadersSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
23108
+ [key: string]: any;
23109
+ }>[];
23110
+ loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
23111
+ [key: string]: any;
23112
+ }>[];
23113
+ 'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
23114
+ [key: string]: any;
23115
+ }>[];
23116
+ 'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
23117
+ [key: string]: any;
23118
+ }>[];
23119
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
23120
+ loading: (StringConstructor | BooleanConstructor)[];
23121
+ color: StringConstructor;
23122
+ sticky: BooleanConstructor;
23123
+ multiSort: BooleanConstructor;
23124
+ sortAscIcon: {
23125
+ type: PropType<IconValue>;
23126
+ default: string;
23127
+ };
23128
+ sortDescIcon: {
23129
+ type: PropType<IconValue>;
23130
+ default: string;
23131
+ };
23132
+ headerProps: {
23133
+ type: PropType<Record<string, any>>;
23134
+ };
23135
+ }, vue.ExtractPropTypes<{
23136
+ loading: (StringConstructor | BooleanConstructor)[];
23137
+ color: StringConstructor;
23138
+ sticky: BooleanConstructor;
23139
+ multiSort: BooleanConstructor;
23140
+ sortAscIcon: {
23141
+ type: PropType<IconValue>;
23142
+ default: string;
23143
+ };
23144
+ sortDescIcon: {
23145
+ type: PropType<IconValue>;
23146
+ default: string;
23147
+ };
23148
+ headerProps: {
23149
+ type: PropType<Record<string, any>>;
23150
+ };
23151
+ }>>;
23152
+ type VDataTableHeaders = InstanceType<typeof VDataTableHeaders>;
23009
23153
 
23010
23154
  type VDataTableGroupHeaderRowSlots = {
23011
23155
  'data-table-group': {
@@ -30869,6 +31013,7 @@ declare const VExpansionPanels: {
30869
31013
  readonly: boolean;
30870
31014
  static: boolean;
30871
31015
  tag: string;
31016
+ focusable: boolean;
30872
31017
  tile: boolean;
30873
31018
  } & {
30874
31019
  max?: number | undefined;
@@ -30900,6 +31045,7 @@ declare const VExpansionPanels: {
30900
31045
  readonly: boolean;
30901
31046
  static: boolean;
30902
31047
  tag: string;
31048
+ focusable: boolean;
30903
31049
  tile: boolean;
30904
31050
  } & {
30905
31051
  max?: number | undefined;
@@ -30929,6 +31075,7 @@ declare const VExpansionPanels: {
30929
31075
  readonly: boolean;
30930
31076
  static: boolean;
30931
31077
  tag: string;
31078
+ focusable: boolean;
30932
31079
  tile: boolean;
30933
31080
  modelValue: any;
30934
31081
  }, true, {}, vue.SlotsType<Partial<{
@@ -30951,6 +31098,7 @@ declare const VExpansionPanels: {
30951
31098
  readonly: boolean;
30952
31099
  static: boolean;
30953
31100
  tag: string;
31101
+ focusable: boolean;
30954
31102
  tile: boolean;
30955
31103
  } & {
30956
31104
  max?: number | undefined;
@@ -30980,6 +31128,7 @@ declare const VExpansionPanels: {
30980
31128
  readonly: boolean;
30981
31129
  static: boolean;
30982
31130
  tag: string;
31131
+ focusable: boolean;
30983
31132
  tile: boolean;
30984
31133
  modelValue: any;
30985
31134
  }>;
@@ -30995,6 +31144,7 @@ declare const VExpansionPanels: {
30995
31144
  readonly: boolean;
30996
31145
  static: boolean;
30997
31146
  tag: string;
31147
+ focusable: boolean;
30998
31148
  tile: boolean;
30999
31149
  } & {
31000
31150
  max?: number | undefined;
@@ -31026,6 +31176,7 @@ declare const VExpansionPanels: {
31026
31176
  readonly: boolean;
31027
31177
  static: boolean;
31028
31178
  tag: string;
31179
+ focusable: boolean;
31029
31180
  tile: boolean;
31030
31181
  modelValue: any;
31031
31182
  }, {}, string, vue.SlotsType<Partial<{
@@ -31054,6 +31205,7 @@ declare const VExpansionPanels: {
31054
31205
  };
31055
31206
  color: StringConstructor;
31056
31207
  flat: BooleanConstructor;
31208
+ focusable: BooleanConstructor;
31057
31209
  static: BooleanConstructor;
31058
31210
  tile: BooleanConstructor;
31059
31211
  variant: {
@@ -31084,6 +31236,7 @@ declare const VExpansionPanels: {
31084
31236
  };
31085
31237
  color: StringConstructor;
31086
31238
  flat: BooleanConstructor;
31239
+ focusable: BooleanConstructor;
31087
31240
  static: BooleanConstructor;
31088
31241
  tile: BooleanConstructor;
31089
31242
  variant: {
@@ -31103,6 +31256,7 @@ declare const VExpansionPanel: {
31103
31256
  readonly: boolean;
31104
31257
  static: boolean;
31105
31258
  tag: string;
31259
+ focusable: boolean;
31106
31260
  tile: boolean;
31107
31261
  ripple: boolean | {
31108
31262
  class: string;
@@ -31150,6 +31304,7 @@ declare const VExpansionPanel: {
31150
31304
  readonly: boolean;
31151
31305
  static: boolean;
31152
31306
  tag: string;
31307
+ focusable: boolean;
31153
31308
  tile: boolean;
31154
31309
  ripple: boolean | {
31155
31310
  class: string;
@@ -31193,6 +31348,7 @@ declare const VExpansionPanel: {
31193
31348
  readonly: boolean;
31194
31349
  static: boolean;
31195
31350
  tag: string;
31351
+ focusable: boolean;
31196
31352
  rounded: string | number | boolean;
31197
31353
  tile: boolean;
31198
31354
  ripple: boolean | {
@@ -31225,6 +31381,7 @@ declare const VExpansionPanel: {
31225
31381
  readonly: boolean;
31226
31382
  static: boolean;
31227
31383
  tag: string;
31384
+ focusable: boolean;
31228
31385
  tile: boolean;
31229
31386
  ripple: boolean | {
31230
31387
  class: string;
@@ -31268,6 +31425,7 @@ declare const VExpansionPanel: {
31268
31425
  readonly: boolean;
31269
31426
  static: boolean;
31270
31427
  tag: string;
31428
+ focusable: boolean;
31271
31429
  rounded: string | number | boolean;
31272
31430
  tile: boolean;
31273
31431
  ripple: boolean | {
@@ -31287,6 +31445,7 @@ declare const VExpansionPanel: {
31287
31445
  readonly: boolean;
31288
31446
  static: boolean;
31289
31447
  tag: string;
31448
+ focusable: boolean;
31290
31449
  tile: boolean;
31291
31450
  ripple: boolean | {
31292
31451
  class: string;
@@ -31334,6 +31493,7 @@ declare const VExpansionPanel: {
31334
31493
  readonly: boolean;
31335
31494
  static: boolean;
31336
31495
  tag: string;
31496
+ focusable: boolean;
31337
31497
  rounded: string | number | boolean;
31338
31498
  tile: boolean;
31339
31499
  ripple: boolean | {
@@ -31368,6 +31528,7 @@ declare const VExpansionPanel: {
31368
31528
  default: string;
31369
31529
  };
31370
31530
  hideActions: BooleanConstructor;
31531
+ focusable: BooleanConstructor;
31371
31532
  static: BooleanConstructor;
31372
31533
  ripple: {
31373
31534
  type: vue.PropType<boolean | {
@@ -31412,6 +31573,7 @@ declare const VExpansionPanel: {
31412
31573
  default: string;
31413
31574
  };
31414
31575
  hideActions: BooleanConstructor;
31576
+ focusable: BooleanConstructor;
31415
31577
  static: BooleanConstructor;
31416
31578
  ripple: {
31417
31579
  type: vue.PropType<boolean | {
@@ -31557,6 +31719,7 @@ declare const VExpansionPanelTitle: {
31557
31719
  style: vue.StyleValue;
31558
31720
  readonly: boolean;
31559
31721
  static: boolean;
31722
+ focusable: boolean;
31560
31723
  ripple: boolean | {
31561
31724
  class: string;
31562
31725
  } | undefined;
@@ -31582,6 +31745,7 @@ declare const VExpansionPanelTitle: {
31582
31745
  style: vue.StyleValue;
31583
31746
  readonly: boolean;
31584
31747
  static: boolean;
31748
+ focusable: boolean;
31585
31749
  ripple: boolean | {
31586
31750
  class: string;
31587
31751
  } | undefined;
@@ -31607,6 +31771,7 @@ declare const VExpansionPanelTitle: {
31607
31771
  style: vue.StyleValue;
31608
31772
  readonly: boolean;
31609
31773
  static: boolean;
31774
+ focusable: boolean;
31610
31775
  ripple: boolean | {
31611
31776
  class: string;
31612
31777
  } | undefined;
@@ -31631,6 +31796,7 @@ declare const VExpansionPanelTitle: {
31631
31796
  style: vue.StyleValue;
31632
31797
  readonly: boolean;
31633
31798
  static: boolean;
31799
+ focusable: boolean;
31634
31800
  ripple: boolean | {
31635
31801
  class: string;
31636
31802
  } | undefined;
@@ -31656,6 +31822,7 @@ declare const VExpansionPanelTitle: {
31656
31822
  style: vue.StyleValue;
31657
31823
  readonly: boolean;
31658
31824
  static: boolean;
31825
+ focusable: boolean;
31659
31826
  ripple: boolean | {
31660
31827
  class: string;
31661
31828
  } | undefined;
@@ -31670,6 +31837,7 @@ declare const VExpansionPanelTitle: {
31670
31837
  style: vue.StyleValue;
31671
31838
  readonly: boolean;
31672
31839
  static: boolean;
31840
+ focusable: boolean;
31673
31841
  ripple: boolean | {
31674
31842
  class: string;
31675
31843
  } | undefined;
@@ -31695,6 +31863,7 @@ declare const VExpansionPanelTitle: {
31695
31863
  style: vue.StyleValue;
31696
31864
  readonly: boolean;
31697
31865
  static: boolean;
31866
+ focusable: boolean;
31698
31867
  ripple: boolean | {
31699
31868
  class: string;
31700
31869
  } | undefined;
@@ -31724,6 +31893,7 @@ declare const VExpansionPanelTitle: {
31724
31893
  default: string;
31725
31894
  };
31726
31895
  hideActions: BooleanConstructor;
31896
+ focusable: BooleanConstructor;
31727
31897
  static: BooleanConstructor;
31728
31898
  ripple: {
31729
31899
  type: PropType<boolean | {
@@ -31748,6 +31918,7 @@ declare const VExpansionPanelTitle: {
31748
31918
  default: string;
31749
31919
  };
31750
31920
  hideActions: BooleanConstructor;
31921
+ focusable: BooleanConstructor;
31751
31922
  static: BooleanConstructor;
31752
31923
  ripple: {
31753
31924
  type: PropType<boolean | {
@@ -36581,7 +36752,7 @@ declare const VLayout: {
36581
36752
  }, {
36582
36753
  getLayoutItem: (id: string) => {
36583
36754
  size: number;
36584
- position: "left" | "top" | "bottom" | "right";
36755
+ position: Position;
36585
36756
  top: number;
36586
36757
  bottom: number;
36587
36758
  left: number;
@@ -36590,7 +36761,7 @@ declare const VLayout: {
36590
36761
  } | undefined;
36591
36762
  items: vue.ComputedRef<{
36592
36763
  size: number;
36593
- position: "left" | "top" | "bottom" | "right";
36764
+ position: Position;
36594
36765
  top: number;
36595
36766
  bottom: number;
36596
36767
  left: number;
@@ -36644,7 +36815,7 @@ declare const VLayout: {
36644
36815
  }, {
36645
36816
  getLayoutItem: (id: string) => {
36646
36817
  size: number;
36647
- position: "left" | "top" | "bottom" | "right";
36818
+ position: Position;
36648
36819
  top: number;
36649
36820
  bottom: number;
36650
36821
  left: number;
@@ -36653,7 +36824,7 @@ declare const VLayout: {
36653
36824
  } | undefined;
36654
36825
  items: vue.ComputedRef<{
36655
36826
  size: number;
36656
- position: "left" | "top" | "bottom" | "right";
36827
+ position: Position;
36657
36828
  top: number;
36658
36829
  bottom: number;
36659
36830
  left: number;
@@ -36685,7 +36856,7 @@ declare const VLayout: {
36685
36856
  }, {
36686
36857
  getLayoutItem: (id: string) => {
36687
36858
  size: number;
36688
- position: "left" | "top" | "bottom" | "right";
36859
+ position: Position;
36689
36860
  top: number;
36690
36861
  bottom: number;
36691
36862
  left: number;
@@ -36694,7 +36865,7 @@ declare const VLayout: {
36694
36865
  } | undefined;
36695
36866
  items: vue.ComputedRef<{
36696
36867
  size: number;
36697
- position: "left" | "top" | "bottom" | "right";
36868
+ position: Position;
36698
36869
  top: number;
36699
36870
  bottom: number;
36700
36871
  left: number;
@@ -67664,6 +67835,7 @@ declare const index_d$1_VCounter: typeof VCounter;
67664
67835
  declare const index_d$1_VDataIterator: typeof VDataIterator;
67665
67836
  declare const index_d$1_VDataTable: typeof VDataTable;
67666
67837
  declare const index_d$1_VDataTableFooter: typeof VDataTableFooter;
67838
+ declare const index_d$1_VDataTableHeaders: typeof VDataTableHeaders;
67667
67839
  declare const index_d$1_VDataTableRow: typeof VDataTableRow;
67668
67840
  declare const index_d$1_VDataTableRows: typeof VDataTableRows;
67669
67841
  declare const index_d$1_VDataTableServer: typeof VDataTableServer;
@@ -67778,7 +67950,7 @@ declare const index_d$1_VVirtualScroll: typeof VVirtualScroll;
67778
67950
  declare const index_d$1_VWindow: typeof VWindow;
67779
67951
  declare const index_d$1_VWindowItem: typeof VWindowItem;
67780
67952
  declare namespace index_d$1 {
67781
- export { type index_d$1_VAlert as VAlert, type index_d$1_VAlertTitle as VAlertTitle, type index_d$1_VApp as VApp, type index_d$1_VAppBar as VAppBar, type index_d$1_VAppBarNavIcon as VAppBarNavIcon, type index_d$1_VAppBarTitle as VAppBarTitle, type index_d$1_VAutocomplete as VAutocomplete, type index_d$1_VAvatar as VAvatar, type index_d$1_VBadge as VBadge, type index_d$1_VBanner as VBanner, type index_d$1_VBannerActions as VBannerActions, type index_d$1_VBannerText as VBannerText, type index_d$1_VBottomNavigation as VBottomNavigation, type index_d$1_VBottomSheet as VBottomSheet, type index_d$1_VBreadcrumbs as VBreadcrumbs, type index_d$1_VBreadcrumbsDivider as VBreadcrumbsDivider, type index_d$1_VBreadcrumbsItem as VBreadcrumbsItem, type index_d$1_VBtn as VBtn, type index_d$1_VBtnGroup as VBtnGroup, type index_d$1_VBtnToggle as VBtnToggle, type index_d$1_VCard as VCard, type index_d$1_VCardActions as VCardActions, type index_d$1_VCardItem as VCardItem, type index_d$1_VCardSubtitle as VCardSubtitle, type index_d$1_VCardText as VCardText, type index_d$1_VCardTitle as VCardTitle, type index_d$1_VCarousel as VCarousel, type index_d$1_VCarouselItem as VCarouselItem, type index_d$1_VCheckbox as VCheckbox, type index_d$1_VCheckboxBtn as VCheckboxBtn, type index_d$1_VChip as VChip, type index_d$1_VChipGroup as VChipGroup, type index_d$1_VClassIcon as VClassIcon, type index_d$1_VCode as VCode, type index_d$1_VCol as VCol, type index_d$1_VColorPicker as VColorPicker, type index_d$1_VCombobox as VCombobox, type index_d$1_VComponentIcon as VComponentIcon, type index_d$1_VContainer as VContainer, type index_d$1_VCounter as VCounter, type index_d$1_VDataIterator as VDataIterator, type index_d$1_VDataTable as VDataTable, index_d$1_VDataTableFooter as VDataTableFooter, type index_d$1_VDataTableRow as VDataTableRow, type index_d$1_VDataTableRows as VDataTableRows, type index_d$1_VDataTableServer as VDataTableServer, type index_d$1_VDataTableVirtual as VDataTableVirtual, type index_d$1_VDatePicker as VDatePicker, type index_d$1_VDatePickerControls as VDatePickerControls, type index_d$1_VDatePickerHeader as VDatePickerHeader, type index_d$1_VDatePickerMonth as VDatePickerMonth, type index_d$1_VDatePickerMonths as VDatePickerMonths, type index_d$1_VDatePickerYears as VDatePickerYears, type index_d$1_VDefaultsProvider as VDefaultsProvider, type index_d$1_VDialog as VDialog, type index_d$1_VDialogBottomTransition as VDialogBottomTransition, type index_d$1_VDialogTopTransition as VDialogTopTransition, type index_d$1_VDialogTransition as VDialogTransition, type index_d$1_VDivider as VDivider, type index_d$1_VExpandTransition as VExpandTransition, type index_d$1_VExpandXTransition as VExpandXTransition, type index_d$1_VExpansionPanel as VExpansionPanel, type index_d$1_VExpansionPanelText as VExpansionPanelText, type index_d$1_VExpansionPanelTitle as VExpansionPanelTitle, type index_d$1_VExpansionPanels as VExpansionPanels, type index_d$1_VFabTransition as VFabTransition, type index_d$1_VFadeTransition as VFadeTransition, type index_d$1_VField as VField, type index_d$1_VFieldLabel as VFieldLabel, type index_d$1_VFileInput as VFileInput, type index_d$1_VFooter as VFooter, type index_d$1_VForm as VForm, type index_d$1_VHover as VHover, type index_d$1_VIcon as VIcon, type index_d$1_VImg as VImg, type index_d$1_VInfiniteScroll as VInfiniteScroll, type index_d$1_VInput as VInput, type index_d$1_VItem as VItem, type index_d$1_VItemGroup as VItemGroup, type index_d$1_VKbd as VKbd, type index_d$1_VLabel as VLabel, type index_d$1_VLayout as VLayout, type index_d$1_VLayoutItem as VLayoutItem, type index_d$1_VLazy as VLazy, type index_d$1_VLigatureIcon as VLigatureIcon, type index_d$1_VList as VList, type index_d$1_VListGroup as VListGroup, type index_d$1_VListImg as VListImg, type index_d$1_VListItem as VListItem, type index_d$1_VListItemAction as VListItemAction, type index_d$1_VListItemMedia as VListItemMedia, type index_d$1_VListItemSubtitle as VListItemSubtitle, type index_d$1_VListItemTitle as VListItemTitle, type index_d$1_VListSubheader as VListSubheader, type index_d$1_VLocaleProvider as VLocaleProvider, type index_d$1_VMain as VMain, type index_d$1_VMenu as VMenu, type index_d$1_VMessages as VMessages, type index_d$1_VNavigationDrawer as VNavigationDrawer, type index_d$1_VNoSsr as VNoSsr, type index_d$1_VOtpInput as VOtpInput, type index_d$1_VOverlay as VOverlay, type index_d$1_VPagination as VPagination, type index_d$1_VParallax as VParallax, type index_d$1_VProgressCircular as VProgressCircular, type index_d$1_VProgressLinear as VProgressLinear, type index_d$1_VRadio as VRadio, type index_d$1_VRadioGroup as VRadioGroup, type index_d$1_VRangeSlider as VRangeSlider, type index_d$1_VRating as VRating, type index_d$1_VResponsive as VResponsive, type index_d$1_VRow as VRow, type index_d$1_VScaleTransition as VScaleTransition, type index_d$1_VScrollXReverseTransition as VScrollXReverseTransition, type index_d$1_VScrollXTransition as VScrollXTransition, type index_d$1_VScrollYReverseTransition as VScrollYReverseTransition, type index_d$1_VScrollYTransition as VScrollYTransition, type index_d$1_VSelect as VSelect, type index_d$1_VSelectionControl as VSelectionControl, type index_d$1_VSelectionControlGroup as VSelectionControlGroup, type index_d$1_VSheet as VSheet, type index_d$1_VSkeletonLoader as VSkeletonLoader, type index_d$1_VSlideGroup as VSlideGroup, type index_d$1_VSlideGroupItem as VSlideGroupItem, type index_d$1_VSlideXReverseTransition as VSlideXReverseTransition, type index_d$1_VSlideXTransition as VSlideXTransition, type index_d$1_VSlideYReverseTransition as VSlideYReverseTransition, type index_d$1_VSlideYTransition as VSlideYTransition, type index_d$1_VSlider as VSlider, type index_d$1_VSnackbar as VSnackbar, type index_d$1_VSpacer as VSpacer, type index_d$1_VStepper as VStepper, type index_d$1_VStepperActions as VStepperActions, type index_d$1_VStepperHeader as VStepperHeader, type index_d$1_VStepperItem as VStepperItem, type index_d$1_VStepperWindow as VStepperWindow, type index_d$1_VStepperWindowItem as VStepperWindowItem, type index_d$1_VSvgIcon as VSvgIcon, type index_d$1_VSwitch as VSwitch, type index_d$1_VSystemBar as VSystemBar, type index_d$1_VTab as VTab, type index_d$1_VTable as VTable, type index_d$1_VTabs as VTabs, type index_d$1_VTextField as VTextField, type index_d$1_VTextarea as VTextarea, type index_d$1_VThemeProvider as VThemeProvider, type index_d$1_VTimeline as VTimeline, type index_d$1_VTimelineItem as VTimelineItem, type index_d$1_VToolbar as VToolbar, type index_d$1_VToolbarItems as VToolbarItems, type index_d$1_VToolbarTitle as VToolbarTitle, type index_d$1_VTooltip as VTooltip, type index_d$1_VValidation as VValidation, type index_d$1_VVirtualScroll as VVirtualScroll, type index_d$1_VWindow as VWindow, type index_d$1_VWindowItem as VWindowItem };
67953
+ export { type index_d$1_VAlert as VAlert, type index_d$1_VAlertTitle as VAlertTitle, type index_d$1_VApp as VApp, type index_d$1_VAppBar as VAppBar, type index_d$1_VAppBarNavIcon as VAppBarNavIcon, type index_d$1_VAppBarTitle as VAppBarTitle, type index_d$1_VAutocomplete as VAutocomplete, type index_d$1_VAvatar as VAvatar, type index_d$1_VBadge as VBadge, type index_d$1_VBanner as VBanner, type index_d$1_VBannerActions as VBannerActions, type index_d$1_VBannerText as VBannerText, type index_d$1_VBottomNavigation as VBottomNavigation, type index_d$1_VBottomSheet as VBottomSheet, type index_d$1_VBreadcrumbs as VBreadcrumbs, type index_d$1_VBreadcrumbsDivider as VBreadcrumbsDivider, type index_d$1_VBreadcrumbsItem as VBreadcrumbsItem, type index_d$1_VBtn as VBtn, type index_d$1_VBtnGroup as VBtnGroup, type index_d$1_VBtnToggle as VBtnToggle, type index_d$1_VCard as VCard, type index_d$1_VCardActions as VCardActions, type index_d$1_VCardItem as VCardItem, type index_d$1_VCardSubtitle as VCardSubtitle, type index_d$1_VCardText as VCardText, type index_d$1_VCardTitle as VCardTitle, type index_d$1_VCarousel as VCarousel, type index_d$1_VCarouselItem as VCarouselItem, type index_d$1_VCheckbox as VCheckbox, type index_d$1_VCheckboxBtn as VCheckboxBtn, type index_d$1_VChip as VChip, type index_d$1_VChipGroup as VChipGroup, type index_d$1_VClassIcon as VClassIcon, type index_d$1_VCode as VCode, type index_d$1_VCol as VCol, type index_d$1_VColorPicker as VColorPicker, type index_d$1_VCombobox as VCombobox, type index_d$1_VComponentIcon as VComponentIcon, type index_d$1_VContainer as VContainer, type index_d$1_VCounter as VCounter, type index_d$1_VDataIterator as VDataIterator, type index_d$1_VDataTable as VDataTable, index_d$1_VDataTableFooter as VDataTableFooter, type index_d$1_VDataTableHeaders as VDataTableHeaders, type index_d$1_VDataTableRow as VDataTableRow, type index_d$1_VDataTableRows as VDataTableRows, type index_d$1_VDataTableServer as VDataTableServer, type index_d$1_VDataTableVirtual as VDataTableVirtual, type index_d$1_VDatePicker as VDatePicker, type index_d$1_VDatePickerControls as VDatePickerControls, type index_d$1_VDatePickerHeader as VDatePickerHeader, type index_d$1_VDatePickerMonth as VDatePickerMonth, type index_d$1_VDatePickerMonths as VDatePickerMonths, type index_d$1_VDatePickerYears as VDatePickerYears, type index_d$1_VDefaultsProvider as VDefaultsProvider, type index_d$1_VDialog as VDialog, type index_d$1_VDialogBottomTransition as VDialogBottomTransition, type index_d$1_VDialogTopTransition as VDialogTopTransition, type index_d$1_VDialogTransition as VDialogTransition, type index_d$1_VDivider as VDivider, type index_d$1_VExpandTransition as VExpandTransition, type index_d$1_VExpandXTransition as VExpandXTransition, type index_d$1_VExpansionPanel as VExpansionPanel, type index_d$1_VExpansionPanelText as VExpansionPanelText, type index_d$1_VExpansionPanelTitle as VExpansionPanelTitle, type index_d$1_VExpansionPanels as VExpansionPanels, type index_d$1_VFabTransition as VFabTransition, type index_d$1_VFadeTransition as VFadeTransition, type index_d$1_VField as VField, type index_d$1_VFieldLabel as VFieldLabel, type index_d$1_VFileInput as VFileInput, type index_d$1_VFooter as VFooter, type index_d$1_VForm as VForm, type index_d$1_VHover as VHover, type index_d$1_VIcon as VIcon, type index_d$1_VImg as VImg, type index_d$1_VInfiniteScroll as VInfiniteScroll, type index_d$1_VInput as VInput, type index_d$1_VItem as VItem, type index_d$1_VItemGroup as VItemGroup, type index_d$1_VKbd as VKbd, type index_d$1_VLabel as VLabel, type index_d$1_VLayout as VLayout, type index_d$1_VLayoutItem as VLayoutItem, type index_d$1_VLazy as VLazy, type index_d$1_VLigatureIcon as VLigatureIcon, type index_d$1_VList as VList, type index_d$1_VListGroup as VListGroup, type index_d$1_VListImg as VListImg, type index_d$1_VListItem as VListItem, type index_d$1_VListItemAction as VListItemAction, type index_d$1_VListItemMedia as VListItemMedia, type index_d$1_VListItemSubtitle as VListItemSubtitle, type index_d$1_VListItemTitle as VListItemTitle, type index_d$1_VListSubheader as VListSubheader, type index_d$1_VLocaleProvider as VLocaleProvider, type index_d$1_VMain as VMain, type index_d$1_VMenu as VMenu, type index_d$1_VMessages as VMessages, type index_d$1_VNavigationDrawer as VNavigationDrawer, type index_d$1_VNoSsr as VNoSsr, type index_d$1_VOtpInput as VOtpInput, type index_d$1_VOverlay as VOverlay, type index_d$1_VPagination as VPagination, type index_d$1_VParallax as VParallax, type index_d$1_VProgressCircular as VProgressCircular, type index_d$1_VProgressLinear as VProgressLinear, type index_d$1_VRadio as VRadio, type index_d$1_VRadioGroup as VRadioGroup, type index_d$1_VRangeSlider as VRangeSlider, type index_d$1_VRating as VRating, type index_d$1_VResponsive as VResponsive, type index_d$1_VRow as VRow, type index_d$1_VScaleTransition as VScaleTransition, type index_d$1_VScrollXReverseTransition as VScrollXReverseTransition, type index_d$1_VScrollXTransition as VScrollXTransition, type index_d$1_VScrollYReverseTransition as VScrollYReverseTransition, type index_d$1_VScrollYTransition as VScrollYTransition, type index_d$1_VSelect as VSelect, type index_d$1_VSelectionControl as VSelectionControl, type index_d$1_VSelectionControlGroup as VSelectionControlGroup, type index_d$1_VSheet as VSheet, type index_d$1_VSkeletonLoader as VSkeletonLoader, type index_d$1_VSlideGroup as VSlideGroup, type index_d$1_VSlideGroupItem as VSlideGroupItem, type index_d$1_VSlideXReverseTransition as VSlideXReverseTransition, type index_d$1_VSlideXTransition as VSlideXTransition, type index_d$1_VSlideYReverseTransition as VSlideYReverseTransition, type index_d$1_VSlideYTransition as VSlideYTransition, type index_d$1_VSlider as VSlider, type index_d$1_VSnackbar as VSnackbar, type index_d$1_VSpacer as VSpacer, type index_d$1_VStepper as VStepper, type index_d$1_VStepperActions as VStepperActions, type index_d$1_VStepperHeader as VStepperHeader, type index_d$1_VStepperItem as VStepperItem, type index_d$1_VStepperWindow as VStepperWindow, type index_d$1_VStepperWindowItem as VStepperWindowItem, type index_d$1_VSvgIcon as VSvgIcon, type index_d$1_VSwitch as VSwitch, type index_d$1_VSystemBar as VSystemBar, type index_d$1_VTab as VTab, type index_d$1_VTable as VTable, type index_d$1_VTabs as VTabs, type index_d$1_VTextField as VTextField, type index_d$1_VTextarea as VTextarea, type index_d$1_VThemeProvider as VThemeProvider, type index_d$1_VTimeline as VTimeline, type index_d$1_VTimelineItem as VTimelineItem, type index_d$1_VToolbar as VToolbar, type index_d$1_VToolbarItems as VToolbarItems, type index_d$1_VToolbarTitle as VToolbarTitle, type index_d$1_VTooltip as VTooltip, type index_d$1_VValidation as VValidation, type index_d$1_VVirtualScroll as VVirtualScroll, type index_d$1_VWindow as VWindow, type index_d$1_VWindowItem as VWindowItem };
67782
67954
  }
67783
67955
 
67784
67956
  interface ClickOutsideBindingArgs {
@@ -68017,26 +68189,25 @@ declare module '@vue/runtime-core' {
68017
68189
  }
68018
68190
 
68019
68191
  export interface GlobalComponents {
68020
- VApp: typeof import('vuetify/components')['VApp']
68021
68192
  VAppBar: typeof import('vuetify/components')['VAppBar']
68022
68193
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
68023
68194
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
68195
+ VApp: typeof import('vuetify/components')['VApp']
68024
68196
  VAlert: typeof import('vuetify/components')['VAlert']
68025
68197
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
68026
68198
  VAvatar: typeof import('vuetify/components')['VAvatar']
68027
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
68028
68199
  VBadge: typeof import('vuetify/components')['VBadge']
68200
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
68201
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
68202
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
68029
68203
  VBanner: typeof import('vuetify/components')['VBanner']
68030
68204
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
68031
68205
  VBannerText: typeof import('vuetify/components')['VBannerText']
68032
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
68033
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
68034
- VBtn: typeof import('vuetify/components')['VBtn']
68035
68206
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
68036
68207
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
68037
68208
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
68038
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
68039
68209
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
68210
+ VBtn: typeof import('vuetify/components')['VBtn']
68040
68211
  VCarousel: typeof import('vuetify/components')['VCarousel']
68041
68212
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
68042
68213
  VCard: typeof import('vuetify/components')['VCard']
@@ -68045,48 +68216,49 @@ declare module '@vue/runtime-core' {
68045
68216
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
68046
68217
  VCardText: typeof import('vuetify/components')['VCardText']
68047
68218
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
68048
- VChip: typeof import('vuetify/components')['VChip']
68049
- VCode: typeof import('vuetify/components')['VCode']
68219
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
68050
68220
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
68051
68221
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
68052
- VCombobox: typeof import('vuetify/components')['VCombobox']
68222
+ VChip: typeof import('vuetify/components')['VChip']
68053
68223
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
68054
- VCounter: typeof import('vuetify/components')['VCounter']
68224
+ VCode: typeof import('vuetify/components')['VCode']
68055
68225
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
68056
- VDataTable: typeof import('vuetify/components')['VDataTable']
68057
- VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
68058
- VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
68059
- VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
68060
- VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
68061
- VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
68226
+ VCombobox: typeof import('vuetify/components')['VCombobox']
68062
68227
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
68063
68228
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
68064
68229
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
68065
68230
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
68066
68231
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
68067
68232
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
68233
+ VDataTable: typeof import('vuetify/components')['VDataTable']
68234
+ VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
68235
+ VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
68236
+ VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
68237
+ VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
68238
+ VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
68239
+ VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
68240
+ VCounter: typeof import('vuetify/components')['VCounter']
68068
68241
  VDialog: typeof import('vuetify/components')['VDialog']
68242
+ VField: typeof import('vuetify/components')['VField']
68243
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
68069
68244
  VDivider: typeof import('vuetify/components')['VDivider']
68245
+ VFileInput: typeof import('vuetify/components')['VFileInput']
68246
+ VFooter: typeof import('vuetify/components')['VFooter']
68070
68247
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
68071
68248
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
68072
68249
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
68073
68250
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
68074
- VField: typeof import('vuetify/components')['VField']
68075
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
68076
- VFileInput: typeof import('vuetify/components')['VFileInput']
68077
68251
  VIcon: typeof import('vuetify/components')['VIcon']
68078
68252
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
68079
68253
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
68080
68254
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
68081
68255
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
68082
- VFooter: typeof import('vuetify/components')['VFooter']
68083
68256
  VImg: typeof import('vuetify/components')['VImg']
68084
- VInput: typeof import('vuetify/components')['VInput']
68257
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
68085
68258
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
68086
68259
  VItem: typeof import('vuetify/components')['VItem']
68087
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
68088
68260
  VKbd: typeof import('vuetify/components')['VKbd']
68089
- VLabel: typeof import('vuetify/components')['VLabel']
68261
+ VInput: typeof import('vuetify/components')['VInput']
68090
68262
  VList: typeof import('vuetify/components')['VList']
68091
68263
  VListGroup: typeof import('vuetify/components')['VListGroup']
68092
68264
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -68096,45 +68268,46 @@ declare module '@vue/runtime-core' {
68096
68268
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
68097
68269
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
68098
68270
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
68099
- VMain: typeof import('vuetify/components')['VMain']
68100
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
68271
+ VLabel: typeof import('vuetify/components')['VLabel']
68101
68272
  VMenu: typeof import('vuetify/components')['VMenu']
68273
+ VMain: typeof import('vuetify/components')['VMain']
68102
68274
  VMessages: typeof import('vuetify/components')['VMessages']
68103
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
68275
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
68104
68276
  VOverlay: typeof import('vuetify/components')['VOverlay']
68277
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
68105
68278
  VPagination: typeof import('vuetify/components')['VPagination']
68106
68279
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
68107
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
68108
68280
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
68109
- VRating: typeof import('vuetify/components')['VRating']
68281
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
68110
68282
  VSelect: typeof import('vuetify/components')['VSelect']
68111
68283
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
68112
- VSheet: typeof import('vuetify/components')['VSheet']
68284
+ VRating: typeof import('vuetify/components')['VRating']
68113
68285
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
68114
- VSlider: typeof import('vuetify/components')['VSlider']
68115
68286
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
68116
68287
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
68117
68288
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
68289
+ VSlider: typeof import('vuetify/components')['VSlider']
68118
68290
  VStepper: typeof import('vuetify/components')['VStepper']
68119
68291
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
68120
68292
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
68121
68293
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
68122
68294
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
68123
68295
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
68296
+ VSheet: typeof import('vuetify/components')['VSheet']
68124
68297
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
68125
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
68126
68298
  VSwitch: typeof import('vuetify/components')['VSwitch']
68127
68299
  VTable: typeof import('vuetify/components')['VTable']
68128
- VTextarea: typeof import('vuetify/components')['VTextarea']
68129
- VTextField: typeof import('vuetify/components')['VTextField']
68130
68300
  VTabs: typeof import('vuetify/components')['VTabs']
68131
68301
  VTab: typeof import('vuetify/components')['VTab']
68302
+ VTextField: typeof import('vuetify/components')['VTextField']
68303
+ VTextarea: typeof import('vuetify/components')['VTextarea']
68304
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
68132
68305
  VToolbar: typeof import('vuetify/components')['VToolbar']
68133
68306
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
68134
68307
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
68308
+ VTooltip: typeof import('vuetify/components')['VTooltip']
68135
68309
  VTimeline: typeof import('vuetify/components')['VTimeline']
68136
68310
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
68137
- VTooltip: typeof import('vuetify/components')['VTooltip']
68138
68311
  VWindow: typeof import('vuetify/components')['VWindow']
68139
68312
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
68140
68313
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
@@ -68145,18 +68318,18 @@ declare module '@vue/runtime-core' {
68145
68318
  VSpacer: typeof import('vuetify/components')['VSpacer']
68146
68319
  VForm: typeof import('vuetify/components')['VForm']
68147
68320
  VHover: typeof import('vuetify/components')['VHover']
68321
+ VLazy: typeof import('vuetify/components')['VLazy']
68148
68322
  VLayout: typeof import('vuetify/components')['VLayout']
68149
68323
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
68150
- VLazy: typeof import('vuetify/components')['VLazy']
68151
68324
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
68152
68325
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
68153
68326
  VParallax: typeof import('vuetify/components')['VParallax']
68154
68327
  VRadio: typeof import('vuetify/components')['VRadio']
68155
- VResponsive: typeof import('vuetify/components')['VResponsive']
68156
68328
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
68329
+ VResponsive: typeof import('vuetify/components')['VResponsive']
68330
+ VValidation: typeof import('vuetify/components')['VValidation']
68157
68331
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
68158
68332
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
68159
- VValidation: typeof import('vuetify/components')['VValidation']
68160
68333
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
68161
68334
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
68162
68335
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -68173,14 +68346,16 @@ declare module '@vue/runtime-core' {
68173
68346
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
68174
68347
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
68175
68348
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
68176
- VPicker: typeof import('vuetify/labs/components')['VPicker']
68177
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
68178
68349
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
68179
68350
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
68180
68351
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
68181
68352
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
68182
68353
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
68183
68354
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
68355
+ VFab: typeof import('vuetify/labs/components')['VFab']
68356
+ VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
68357
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
68358
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
68184
68359
  VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
68185
68360
  VSparkline: typeof import('vuetify/labs/components')['VSparkline']
68186
68361
  }