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
@@ -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': {
@@ -31168,6 +31312,7 @@ declare const VExpansionPanels: {
31168
31312
  readonly: boolean;
31169
31313
  static: boolean;
31170
31314
  tag: string;
31315
+ focusable: boolean;
31171
31316
  tile: boolean;
31172
31317
  } & {
31173
31318
  max?: number | undefined;
@@ -31199,6 +31344,7 @@ declare const VExpansionPanels: {
31199
31344
  readonly: boolean;
31200
31345
  static: boolean;
31201
31346
  tag: string;
31347
+ focusable: boolean;
31202
31348
  tile: boolean;
31203
31349
  } & {
31204
31350
  max?: number | undefined;
@@ -31228,6 +31374,7 @@ declare const VExpansionPanels: {
31228
31374
  readonly: boolean;
31229
31375
  static: boolean;
31230
31376
  tag: string;
31377
+ focusable: boolean;
31231
31378
  tile: boolean;
31232
31379
  modelValue: any;
31233
31380
  }, true, {}, vue.SlotsType<Partial<{
@@ -31250,6 +31397,7 @@ declare const VExpansionPanels: {
31250
31397
  readonly: boolean;
31251
31398
  static: boolean;
31252
31399
  tag: string;
31400
+ focusable: boolean;
31253
31401
  tile: boolean;
31254
31402
  } & {
31255
31403
  max?: number | undefined;
@@ -31279,6 +31427,7 @@ declare const VExpansionPanels: {
31279
31427
  readonly: boolean;
31280
31428
  static: boolean;
31281
31429
  tag: string;
31430
+ focusable: boolean;
31282
31431
  tile: boolean;
31283
31432
  modelValue: any;
31284
31433
  }>;
@@ -31294,6 +31443,7 @@ declare const VExpansionPanels: {
31294
31443
  readonly: boolean;
31295
31444
  static: boolean;
31296
31445
  tag: string;
31446
+ focusable: boolean;
31297
31447
  tile: boolean;
31298
31448
  } & {
31299
31449
  max?: number | undefined;
@@ -31325,6 +31475,7 @@ declare const VExpansionPanels: {
31325
31475
  readonly: boolean;
31326
31476
  static: boolean;
31327
31477
  tag: string;
31478
+ focusable: boolean;
31328
31479
  tile: boolean;
31329
31480
  modelValue: any;
31330
31481
  }, {}, string, vue.SlotsType<Partial<{
@@ -31353,6 +31504,7 @@ declare const VExpansionPanels: {
31353
31504
  };
31354
31505
  color: StringConstructor;
31355
31506
  flat: BooleanConstructor;
31507
+ focusable: BooleanConstructor;
31356
31508
  static: BooleanConstructor;
31357
31509
  tile: BooleanConstructor;
31358
31510
  variant: {
@@ -31383,6 +31535,7 @@ declare const VExpansionPanels: {
31383
31535
  };
31384
31536
  color: StringConstructor;
31385
31537
  flat: BooleanConstructor;
31538
+ focusable: BooleanConstructor;
31386
31539
  static: BooleanConstructor;
31387
31540
  tile: BooleanConstructor;
31388
31541
  variant: {
@@ -31402,6 +31555,7 @@ declare const VExpansionPanel: {
31402
31555
  readonly: boolean;
31403
31556
  static: boolean;
31404
31557
  tag: string;
31558
+ focusable: boolean;
31405
31559
  tile: boolean;
31406
31560
  ripple: boolean | {
31407
31561
  class: string;
@@ -31449,6 +31603,7 @@ declare const VExpansionPanel: {
31449
31603
  readonly: boolean;
31450
31604
  static: boolean;
31451
31605
  tag: string;
31606
+ focusable: boolean;
31452
31607
  tile: boolean;
31453
31608
  ripple: boolean | {
31454
31609
  class: string;
@@ -31492,6 +31647,7 @@ declare const VExpansionPanel: {
31492
31647
  readonly: boolean;
31493
31648
  static: boolean;
31494
31649
  tag: string;
31650
+ focusable: boolean;
31495
31651
  rounded: string | number | boolean;
31496
31652
  tile: boolean;
31497
31653
  ripple: boolean | {
@@ -31524,6 +31680,7 @@ declare const VExpansionPanel: {
31524
31680
  readonly: boolean;
31525
31681
  static: boolean;
31526
31682
  tag: string;
31683
+ focusable: boolean;
31527
31684
  tile: boolean;
31528
31685
  ripple: boolean | {
31529
31686
  class: string;
@@ -31567,6 +31724,7 @@ declare const VExpansionPanel: {
31567
31724
  readonly: boolean;
31568
31725
  static: boolean;
31569
31726
  tag: string;
31727
+ focusable: boolean;
31570
31728
  rounded: string | number | boolean;
31571
31729
  tile: boolean;
31572
31730
  ripple: boolean | {
@@ -31586,6 +31744,7 @@ declare const VExpansionPanel: {
31586
31744
  readonly: boolean;
31587
31745
  static: boolean;
31588
31746
  tag: string;
31747
+ focusable: boolean;
31589
31748
  tile: boolean;
31590
31749
  ripple: boolean | {
31591
31750
  class: string;
@@ -31633,6 +31792,7 @@ declare const VExpansionPanel: {
31633
31792
  readonly: boolean;
31634
31793
  static: boolean;
31635
31794
  tag: string;
31795
+ focusable: boolean;
31636
31796
  rounded: string | number | boolean;
31637
31797
  tile: boolean;
31638
31798
  ripple: boolean | {
@@ -31667,6 +31827,7 @@ declare const VExpansionPanel: {
31667
31827
  default: string;
31668
31828
  };
31669
31829
  hideActions: BooleanConstructor;
31830
+ focusable: BooleanConstructor;
31670
31831
  static: BooleanConstructor;
31671
31832
  ripple: {
31672
31833
  type: vue.PropType<boolean | {
@@ -31711,6 +31872,7 @@ declare const VExpansionPanel: {
31711
31872
  default: string;
31712
31873
  };
31713
31874
  hideActions: BooleanConstructor;
31875
+ focusable: BooleanConstructor;
31714
31876
  static: BooleanConstructor;
31715
31877
  ripple: {
31716
31878
  type: vue.PropType<boolean | {
@@ -31856,6 +32018,7 @@ declare const VExpansionPanelTitle: {
31856
32018
  style: vue.StyleValue;
31857
32019
  readonly: boolean;
31858
32020
  static: boolean;
32021
+ focusable: boolean;
31859
32022
  ripple: boolean | {
31860
32023
  class: string;
31861
32024
  } | undefined;
@@ -31881,6 +32044,7 @@ declare const VExpansionPanelTitle: {
31881
32044
  style: vue.StyleValue;
31882
32045
  readonly: boolean;
31883
32046
  static: boolean;
32047
+ focusable: boolean;
31884
32048
  ripple: boolean | {
31885
32049
  class: string;
31886
32050
  } | undefined;
@@ -31906,6 +32070,7 @@ declare const VExpansionPanelTitle: {
31906
32070
  style: vue.StyleValue;
31907
32071
  readonly: boolean;
31908
32072
  static: boolean;
32073
+ focusable: boolean;
31909
32074
  ripple: boolean | {
31910
32075
  class: string;
31911
32076
  } | undefined;
@@ -31930,6 +32095,7 @@ declare const VExpansionPanelTitle: {
31930
32095
  style: vue.StyleValue;
31931
32096
  readonly: boolean;
31932
32097
  static: boolean;
32098
+ focusable: boolean;
31933
32099
  ripple: boolean | {
31934
32100
  class: string;
31935
32101
  } | undefined;
@@ -31955,6 +32121,7 @@ declare const VExpansionPanelTitle: {
31955
32121
  style: vue.StyleValue;
31956
32122
  readonly: boolean;
31957
32123
  static: boolean;
32124
+ focusable: boolean;
31958
32125
  ripple: boolean | {
31959
32126
  class: string;
31960
32127
  } | undefined;
@@ -31969,6 +32136,7 @@ declare const VExpansionPanelTitle: {
31969
32136
  style: vue.StyleValue;
31970
32137
  readonly: boolean;
31971
32138
  static: boolean;
32139
+ focusable: boolean;
31972
32140
  ripple: boolean | {
31973
32141
  class: string;
31974
32142
  } | undefined;
@@ -31994,6 +32162,7 @@ declare const VExpansionPanelTitle: {
31994
32162
  style: vue.StyleValue;
31995
32163
  readonly: boolean;
31996
32164
  static: boolean;
32165
+ focusable: boolean;
31997
32166
  ripple: boolean | {
31998
32167
  class: string;
31999
32168
  } | undefined;
@@ -32023,6 +32192,7 @@ declare const VExpansionPanelTitle: {
32023
32192
  default: string;
32024
32193
  };
32025
32194
  hideActions: BooleanConstructor;
32195
+ focusable: BooleanConstructor;
32026
32196
  static: BooleanConstructor;
32027
32197
  ripple: {
32028
32198
  type: PropType<boolean | {
@@ -32047,6 +32217,7 @@ declare const VExpansionPanelTitle: {
32047
32217
  default: string;
32048
32218
  };
32049
32219
  hideActions: BooleanConstructor;
32220
+ focusable: BooleanConstructor;
32050
32221
  static: BooleanConstructor;
32051
32222
  ripple: {
32052
32223
  type: PropType<boolean | {
@@ -36880,7 +37051,7 @@ declare const VLayout: {
36880
37051
  }, {
36881
37052
  getLayoutItem: (id: string) => {
36882
37053
  size: number;
36883
- position: "left" | "top" | "bottom" | "right";
37054
+ position: Position;
36884
37055
  top: number;
36885
37056
  bottom: number;
36886
37057
  left: number;
@@ -36889,7 +37060,7 @@ declare const VLayout: {
36889
37060
  } | undefined;
36890
37061
  items: vue.ComputedRef<{
36891
37062
  size: number;
36892
- position: "left" | "top" | "bottom" | "right";
37063
+ position: Position;
36893
37064
  top: number;
36894
37065
  bottom: number;
36895
37066
  left: number;
@@ -36943,7 +37114,7 @@ declare const VLayout: {
36943
37114
  }, {
36944
37115
  getLayoutItem: (id: string) => {
36945
37116
  size: number;
36946
- position: "left" | "top" | "bottom" | "right";
37117
+ position: Position;
36947
37118
  top: number;
36948
37119
  bottom: number;
36949
37120
  left: number;
@@ -36952,7 +37123,7 @@ declare const VLayout: {
36952
37123
  } | undefined;
36953
37124
  items: vue.ComputedRef<{
36954
37125
  size: number;
36955
- position: "left" | "top" | "bottom" | "right";
37126
+ position: Position;
36956
37127
  top: number;
36957
37128
  bottom: number;
36958
37129
  left: number;
@@ -36984,7 +37155,7 @@ declare const VLayout: {
36984
37155
  }, {
36985
37156
  getLayoutItem: (id: string) => {
36986
37157
  size: number;
36987
- position: "left" | "top" | "bottom" | "right";
37158
+ position: Position;
36988
37159
  top: number;
36989
37160
  bottom: number;
36990
37161
  left: number;
@@ -36993,7 +37164,7 @@ declare const VLayout: {
36993
37164
  } | undefined;
36994
37165
  items: vue.ComputedRef<{
36995
37166
  size: number;
36996
- position: "left" | "top" | "bottom" | "right";
37167
+ position: Position;
36997
37168
  top: number;
36998
37169
  bottom: number;
36999
37170
  left: number;
@@ -69616,12 +69787,61 @@ declare const VCalendarMonthDay: {
69616
69787
  }>>;
69617
69788
  type VCalendarMonthDay = InstanceType<typeof VCalendarMonthDay>;
69618
69789
 
69619
- declare const VPickerTitle: {
69790
+ declare const VFab: {
69620
69791
  new (...args: any[]): vue.CreateComponentPublicInstance<{
69792
+ symbol: any;
69793
+ replace: boolean;
69794
+ flat: boolean;
69795
+ variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
69796
+ offset: boolean;
69797
+ exact: boolean;
69798
+ absolute: boolean;
69799
+ block: boolean;
69800
+ location: "end" | "start" | "left" | "top" | "bottom" | "right";
69801
+ active: boolean;
69802
+ order: string | number;
69803
+ transition: NonNullable<string | boolean | (vue.TransitionProps & {
69804
+ component?: vue.Component | undefined;
69805
+ })>;
69621
69806
  style: vue.StyleValue;
69807
+ disabled: boolean;
69808
+ size: string | number;
69622
69809
  tag: string;
69810
+ appear: boolean;
69811
+ app: boolean;
69812
+ tile: boolean;
69813
+ density: Density;
69814
+ extended: boolean;
69815
+ modelValue: boolean;
69816
+ slim: boolean;
69817
+ stacked: boolean;
69818
+ ripple: boolean | {
69819
+ class: string;
69820
+ } | undefined;
69623
69821
  } & {
69822
+ height?: string | number | undefined;
69823
+ width?: string | number | undefined;
69824
+ name?: string | undefined;
69825
+ border?: string | number | boolean | undefined;
69826
+ color?: string | undefined;
69827
+ maxHeight?: string | number | undefined;
69828
+ maxWidth?: string | number | undefined;
69829
+ minHeight?: string | number | undefined;
69830
+ minWidth?: string | number | undefined;
69831
+ position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
69832
+ value?: any;
69833
+ loading?: string | boolean | undefined;
69834
+ text?: string | undefined;
69624
69835
  class?: any;
69836
+ icon?: boolean | IconValue | undefined;
69837
+ href?: string | undefined;
69838
+ elevation?: string | number | undefined;
69839
+ to?: vue_router.RouteLocationRaw | undefined;
69840
+ theme?: string | undefined;
69841
+ rounded?: string | number | boolean | undefined;
69842
+ selectedClass?: string | undefined;
69843
+ prependIcon?: IconValue | undefined;
69844
+ appendIcon?: IconValue | undefined;
69625
69845
  } & {
69626
69846
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
69627
69847
  default?: (() => vue.VNodeChild) | undefined;
@@ -69631,13 +69851,64 @@ declare const VPickerTitle: {
69631
69851
  } | undefined;
69632
69852
  } & {
69633
69853
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
69634
- }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
69635
- [key: string]: any;
69636
- }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
69854
+ } & {
69855
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
69856
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
69857
+ 'update:modelValue': (value: boolean) => boolean;
69858
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
69859
+ symbol: any;
69860
+ replace: boolean;
69861
+ flat: boolean;
69862
+ variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
69863
+ offset: boolean;
69864
+ exact: boolean;
69865
+ absolute: boolean;
69866
+ block: boolean;
69867
+ location: "end" | "start" | "left" | "top" | "bottom" | "right";
69868
+ active: boolean;
69869
+ order: string | number;
69870
+ transition: NonNullable<string | boolean | (vue.TransitionProps & {
69871
+ component?: vue.Component | undefined;
69872
+ })>;
69637
69873
  style: vue.StyleValue;
69874
+ disabled: boolean;
69875
+ size: string | number;
69638
69876
  tag: string;
69877
+ appear: boolean;
69878
+ app: boolean;
69879
+ tile: boolean;
69880
+ density: Density;
69881
+ extended: boolean;
69882
+ modelValue: boolean;
69883
+ slim: boolean;
69884
+ stacked: boolean;
69885
+ ripple: boolean | {
69886
+ class: string;
69887
+ } | undefined;
69639
69888
  } & {
69889
+ height?: string | number | undefined;
69890
+ width?: string | number | undefined;
69891
+ name?: string | undefined;
69892
+ border?: string | number | boolean | undefined;
69893
+ color?: string | undefined;
69894
+ maxHeight?: string | number | undefined;
69895
+ maxWidth?: string | number | undefined;
69896
+ minHeight?: string | number | undefined;
69897
+ minWidth?: string | number | undefined;
69898
+ position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
69899
+ value?: any;
69900
+ loading?: string | boolean | undefined;
69901
+ text?: string | undefined;
69640
69902
  class?: any;
69903
+ icon?: boolean | IconValue | undefined;
69904
+ href?: string | undefined;
69905
+ elevation?: string | number | undefined;
69906
+ to?: vue_router.RouteLocationRaw | undefined;
69907
+ theme?: string | undefined;
69908
+ rounded?: string | number | boolean | undefined;
69909
+ selectedClass?: string | undefined;
69910
+ prependIcon?: IconValue | undefined;
69911
+ appendIcon?: IconValue | undefined;
69641
69912
  } & {
69642
69913
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
69643
69914
  default?: (() => vue.VNodeChild) | undefined;
@@ -69647,9 +69918,39 @@ declare const VPickerTitle: {
69647
69918
  } | undefined;
69648
69919
  } & {
69649
69920
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
69921
+ } & {
69922
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
69650
69923
  }, {
69924
+ symbol: any;
69925
+ replace: boolean;
69926
+ flat: boolean;
69927
+ variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
69928
+ offset: boolean;
69929
+ exact: boolean;
69930
+ absolute: boolean;
69931
+ block: boolean;
69932
+ location: "end" | "start" | "left" | "top" | "bottom" | "right";
69933
+ active: boolean;
69934
+ order: string | number;
69935
+ transition: NonNullable<string | boolean | (vue.TransitionProps & {
69936
+ component?: vue.Component | undefined;
69937
+ })>;
69651
69938
  style: vue.StyleValue;
69939
+ disabled: boolean;
69940
+ size: string | number;
69652
69941
  tag: string;
69942
+ appear: boolean;
69943
+ app: boolean;
69944
+ rounded: string | number | boolean;
69945
+ tile: boolean;
69946
+ density: Density;
69947
+ extended: boolean;
69948
+ modelValue: boolean;
69949
+ slim: boolean;
69950
+ stacked: boolean;
69951
+ ripple: boolean | {
69952
+ class: string;
69953
+ } | undefined;
69653
69954
  }, true, {}, vue.SlotsType<Partial<{
69654
69955
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
69655
69956
  [key: string]: any;
@@ -69662,10 +69963,59 @@ declare const VPickerTitle: {
69662
69963
  M: {};
69663
69964
  Defaults: {};
69664
69965
  }, {
69966
+ symbol: any;
69967
+ replace: boolean;
69968
+ flat: boolean;
69969
+ variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
69970
+ offset: boolean;
69971
+ exact: boolean;
69972
+ absolute: boolean;
69973
+ block: boolean;
69974
+ location: "end" | "start" | "left" | "top" | "bottom" | "right";
69975
+ active: boolean;
69976
+ order: string | number;
69977
+ transition: NonNullable<string | boolean | (vue.TransitionProps & {
69978
+ component?: vue.Component | undefined;
69979
+ })>;
69665
69980
  style: vue.StyleValue;
69981
+ disabled: boolean;
69982
+ size: string | number;
69666
69983
  tag: string;
69984
+ appear: boolean;
69985
+ app: boolean;
69986
+ tile: boolean;
69987
+ density: Density;
69988
+ extended: boolean;
69989
+ modelValue: boolean;
69990
+ slim: boolean;
69991
+ stacked: boolean;
69992
+ ripple: boolean | {
69993
+ class: string;
69994
+ } | undefined;
69667
69995
  } & {
69996
+ height?: string | number | undefined;
69997
+ width?: string | number | undefined;
69998
+ name?: string | undefined;
69999
+ border?: string | number | boolean | undefined;
70000
+ color?: string | undefined;
70001
+ maxHeight?: string | number | undefined;
70002
+ maxWidth?: string | number | undefined;
70003
+ minHeight?: string | number | undefined;
70004
+ minWidth?: string | number | undefined;
70005
+ position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
70006
+ value?: any;
70007
+ loading?: string | boolean | undefined;
70008
+ text?: string | undefined;
69668
70009
  class?: any;
70010
+ icon?: boolean | IconValue | undefined;
70011
+ href?: string | undefined;
70012
+ elevation?: string | number | undefined;
70013
+ to?: vue_router.RouteLocationRaw | undefined;
70014
+ theme?: string | undefined;
70015
+ rounded?: string | number | boolean | undefined;
70016
+ selectedClass?: string | undefined;
70017
+ prependIcon?: IconValue | undefined;
70018
+ appendIcon?: IconValue | undefined;
69669
70019
  } & {
69670
70020
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
69671
70021
  default?: (() => vue.VNodeChild) | undefined;
@@ -69675,20 +70025,97 @@ declare const VPickerTitle: {
69675
70025
  } | undefined;
69676
70026
  } & {
69677
70027
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
69678
- }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
69679
- [key: string]: any;
69680
- }>, {}, {}, {}, {
70028
+ } & {
70029
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
70030
+ }, {}, {}, {}, {}, {
70031
+ symbol: any;
70032
+ replace: boolean;
70033
+ flat: boolean;
70034
+ variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
70035
+ offset: boolean;
70036
+ exact: boolean;
70037
+ absolute: boolean;
70038
+ block: boolean;
70039
+ location: "end" | "start" | "left" | "top" | "bottom" | "right";
70040
+ active: boolean;
70041
+ order: string | number;
70042
+ transition: NonNullable<string | boolean | (vue.TransitionProps & {
70043
+ component?: vue.Component | undefined;
70044
+ })>;
69681
70045
  style: vue.StyleValue;
70046
+ disabled: boolean;
70047
+ size: string | number;
69682
70048
  tag: string;
70049
+ appear: boolean;
70050
+ app: boolean;
70051
+ rounded: string | number | boolean;
70052
+ tile: boolean;
70053
+ density: Density;
70054
+ extended: boolean;
70055
+ modelValue: boolean;
70056
+ slim: boolean;
70057
+ stacked: boolean;
70058
+ ripple: boolean | {
70059
+ class: string;
70060
+ } | undefined;
69683
70061
  }>;
69684
70062
  __isFragment?: undefined;
69685
70063
  __isTeleport?: undefined;
69686
70064
  __isSuspense?: undefined;
69687
70065
  } & vue.ComponentOptionsBase<{
70066
+ symbol: any;
70067
+ replace: boolean;
70068
+ flat: boolean;
70069
+ variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
70070
+ offset: boolean;
70071
+ exact: boolean;
70072
+ absolute: boolean;
70073
+ block: boolean;
70074
+ location: "end" | "start" | "left" | "top" | "bottom" | "right";
70075
+ active: boolean;
70076
+ order: string | number;
70077
+ transition: NonNullable<string | boolean | (vue.TransitionProps & {
70078
+ component?: vue.Component | undefined;
70079
+ })>;
69688
70080
  style: vue.StyleValue;
70081
+ disabled: boolean;
70082
+ size: string | number;
69689
70083
  tag: string;
70084
+ appear: boolean;
70085
+ app: boolean;
70086
+ tile: boolean;
70087
+ density: Density;
70088
+ extended: boolean;
70089
+ modelValue: boolean;
70090
+ slim: boolean;
70091
+ stacked: boolean;
70092
+ ripple: boolean | {
70093
+ class: string;
70094
+ } | undefined;
69690
70095
  } & {
70096
+ height?: string | number | undefined;
70097
+ width?: string | number | undefined;
70098
+ name?: string | undefined;
70099
+ border?: string | number | boolean | undefined;
70100
+ color?: string | undefined;
70101
+ maxHeight?: string | number | undefined;
70102
+ maxWidth?: string | number | undefined;
70103
+ minHeight?: string | number | undefined;
70104
+ minWidth?: string | number | undefined;
70105
+ position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
70106
+ value?: any;
70107
+ loading?: string | boolean | undefined;
70108
+ text?: string | undefined;
69691
70109
  class?: any;
70110
+ icon?: boolean | IconValue | undefined;
70111
+ href?: string | undefined;
70112
+ elevation?: string | number | undefined;
70113
+ to?: vue_router.RouteLocationRaw | undefined;
70114
+ theme?: string | undefined;
70115
+ rounded?: string | number | boolean | undefined;
70116
+ selectedClass?: string | undefined;
70117
+ prependIcon?: IconValue | undefined;
70118
+ appendIcon?: IconValue | undefined;
69692
70119
  } & {
69693
70120
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
69694
70121
  default?: (() => vue.VNodeChild) | undefined;
@@ -69698,30 +70125,392 @@ declare const VPickerTitle: {
69698
70125
  } | undefined;
69699
70126
  } & {
69700
70127
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
69701
- }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
69702
- [key: string]: any;
69703
- }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
70128
+ } & {
70129
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
70130
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
70131
+ 'update:modelValue': (value: boolean) => boolean;
70132
+ }, string, {
70133
+ symbol: any;
70134
+ replace: boolean;
70135
+ flat: boolean;
70136
+ variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
70137
+ offset: boolean;
70138
+ exact: boolean;
70139
+ absolute: boolean;
70140
+ block: boolean;
70141
+ location: "end" | "start" | "left" | "top" | "bottom" | "right";
70142
+ active: boolean;
70143
+ order: string | number;
70144
+ transition: NonNullable<string | boolean | (vue.TransitionProps & {
70145
+ component?: vue.Component | undefined;
70146
+ })>;
69704
70147
  style: vue.StyleValue;
70148
+ disabled: boolean;
70149
+ size: string | number;
69705
70150
  tag: string;
70151
+ appear: boolean;
70152
+ app: boolean;
70153
+ rounded: string | number | boolean;
70154
+ tile: boolean;
70155
+ density: Density;
70156
+ extended: boolean;
70157
+ modelValue: boolean;
70158
+ slim: boolean;
70159
+ stacked: boolean;
70160
+ ripple: boolean | {
70161
+ class: string;
70162
+ } | undefined;
69706
70163
  }, {}, string, vue.SlotsType<Partial<{
69707
70164
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
69708
70165
  [key: string]: any;
69709
70166
  }>[];
69710
70167
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
69711
- class: vue.PropType<any>;
69712
- style: {
69713
- type: vue.PropType<vue.StyleValue>;
69714
- default: null;
69715
- };
69716
- tag: {
69717
- type: StringConstructor;
70168
+ transition: Omit<{
70169
+ type: PropType<string | boolean | (vue.TransitionProps & {
70170
+ component?: vue.Component | undefined;
70171
+ })>;
69718
70172
  default: string;
70173
+ validator: (val: unknown) => boolean;
70174
+ }, "type" | "default"> & {
70175
+ type: PropType<NonNullable<string | boolean | (vue.TransitionProps & {
70176
+ component?: vue.Component | undefined;
70177
+ })>>;
70178
+ default: NonNullable<string | boolean | (vue.TransitionProps & {
70179
+ component?: vue.Component | undefined;
70180
+ })>;
69719
70181
  };
69720
- }, vue.ExtractPropTypes<{
69721
- class: vue.PropType<any>;
69722
- style: {
69723
- type: vue.PropType<vue.StyleValue>;
69724
- default: null;
70182
+ name: {
70183
+ type: StringConstructor;
70184
+ };
70185
+ order: {
70186
+ type: (StringConstructor | NumberConstructor)[];
70187
+ default: number;
70188
+ };
70189
+ absolute: BooleanConstructor;
70190
+ symbol: {
70191
+ type: null;
70192
+ default: vue.InjectionKey<GroupProvide>;
70193
+ };
70194
+ replace: BooleanConstructor;
70195
+ flat: BooleanConstructor;
70196
+ variant: Omit<{
70197
+ type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
70198
+ default: string;
70199
+ validator: (v: any) => boolean;
70200
+ }, "type" | "default"> & {
70201
+ type: PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
70202
+ default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
70203
+ };
70204
+ exact: BooleanConstructor;
70205
+ block: BooleanConstructor;
70206
+ height: (StringConstructor | NumberConstructor)[];
70207
+ width: (StringConstructor | NumberConstructor)[];
70208
+ active: Omit<{
70209
+ type: BooleanConstructor;
70210
+ default: undefined;
70211
+ }, "type" | "default"> & {
70212
+ type: PropType<boolean>;
70213
+ default: boolean;
70214
+ };
70215
+ border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
70216
+ color: StringConstructor;
70217
+ maxHeight: (StringConstructor | NumberConstructor)[];
70218
+ maxWidth: (StringConstructor | NumberConstructor)[];
70219
+ minHeight: (StringConstructor | NumberConstructor)[];
70220
+ minWidth: (StringConstructor | NumberConstructor)[];
70221
+ position: {
70222
+ type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
70223
+ validator: (v: any) => boolean;
70224
+ };
70225
+ value: null;
70226
+ loading: (StringConstructor | BooleanConstructor)[];
70227
+ style: {
70228
+ type: PropType<vue.StyleValue>;
70229
+ default: null;
70230
+ };
70231
+ text: StringConstructor;
70232
+ disabled: BooleanConstructor;
70233
+ size: {
70234
+ type: (StringConstructor | NumberConstructor)[];
70235
+ default: string;
70236
+ };
70237
+ class: PropType<any>;
70238
+ tag: Omit<{
70239
+ type: StringConstructor;
70240
+ default: string;
70241
+ }, "type" | "default"> & {
70242
+ type: PropType<string>;
70243
+ default: string;
70244
+ };
70245
+ icon: PropType<boolean | IconValue>;
70246
+ href: StringConstructor;
70247
+ elevation: {
70248
+ type: (StringConstructor | NumberConstructor)[];
70249
+ validator(v: any): boolean;
70250
+ };
70251
+ to: PropType<vue_router.RouteLocationRaw>;
70252
+ theme: StringConstructor;
70253
+ rounded: {
70254
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
70255
+ default: undefined;
70256
+ };
70257
+ tile: BooleanConstructor;
70258
+ density: {
70259
+ type: PropType<Density>;
70260
+ default: string;
70261
+ validator: (v: any) => boolean;
70262
+ };
70263
+ selectedClass: StringConstructor;
70264
+ prependIcon: PropType<IconValue>;
70265
+ appendIcon: PropType<IconValue>;
70266
+ slim: BooleanConstructor;
70267
+ stacked: BooleanConstructor;
70268
+ ripple: {
70269
+ type: PropType<boolean | {
70270
+ class: string;
70271
+ } | undefined>;
70272
+ default: boolean;
70273
+ };
70274
+ app: BooleanConstructor;
70275
+ appear: BooleanConstructor;
70276
+ extended: BooleanConstructor;
70277
+ location: {
70278
+ type: PropType<"end" | "start" | "left" | "top" | "bottom" | "right">;
70279
+ default: string;
70280
+ };
70281
+ offset: BooleanConstructor;
70282
+ modelValue: {
70283
+ type: BooleanConstructor;
70284
+ default: boolean;
70285
+ };
70286
+ }, vue.ExtractPropTypes<{
70287
+ transition: Omit<{
70288
+ type: PropType<string | boolean | (vue.TransitionProps & {
70289
+ component?: vue.Component | undefined;
70290
+ })>;
70291
+ default: string;
70292
+ validator: (val: unknown) => boolean;
70293
+ }, "type" | "default"> & {
70294
+ type: PropType<NonNullable<string | boolean | (vue.TransitionProps & {
70295
+ component?: vue.Component | undefined;
70296
+ })>>;
70297
+ default: NonNullable<string | boolean | (vue.TransitionProps & {
70298
+ component?: vue.Component | undefined;
70299
+ })>;
70300
+ };
70301
+ name: {
70302
+ type: StringConstructor;
70303
+ };
70304
+ order: {
70305
+ type: (StringConstructor | NumberConstructor)[];
70306
+ default: number;
70307
+ };
70308
+ absolute: BooleanConstructor;
70309
+ symbol: {
70310
+ type: null;
70311
+ default: vue.InjectionKey<GroupProvide>;
70312
+ };
70313
+ replace: BooleanConstructor;
70314
+ flat: BooleanConstructor;
70315
+ variant: Omit<{
70316
+ type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
70317
+ default: string;
70318
+ validator: (v: any) => boolean;
70319
+ }, "type" | "default"> & {
70320
+ type: PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
70321
+ default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
70322
+ };
70323
+ exact: BooleanConstructor;
70324
+ block: BooleanConstructor;
70325
+ height: (StringConstructor | NumberConstructor)[];
70326
+ width: (StringConstructor | NumberConstructor)[];
70327
+ active: Omit<{
70328
+ type: BooleanConstructor;
70329
+ default: undefined;
70330
+ }, "type" | "default"> & {
70331
+ type: PropType<boolean>;
70332
+ default: boolean;
70333
+ };
70334
+ border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
70335
+ color: StringConstructor;
70336
+ maxHeight: (StringConstructor | NumberConstructor)[];
70337
+ maxWidth: (StringConstructor | NumberConstructor)[];
70338
+ minHeight: (StringConstructor | NumberConstructor)[];
70339
+ minWidth: (StringConstructor | NumberConstructor)[];
70340
+ position: {
70341
+ type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
70342
+ validator: (v: any) => boolean;
70343
+ };
70344
+ value: null;
70345
+ loading: (StringConstructor | BooleanConstructor)[];
70346
+ style: {
70347
+ type: PropType<vue.StyleValue>;
70348
+ default: null;
70349
+ };
70350
+ text: StringConstructor;
70351
+ disabled: BooleanConstructor;
70352
+ size: {
70353
+ type: (StringConstructor | NumberConstructor)[];
70354
+ default: string;
70355
+ };
70356
+ class: PropType<any>;
70357
+ tag: Omit<{
70358
+ type: StringConstructor;
70359
+ default: string;
70360
+ }, "type" | "default"> & {
70361
+ type: PropType<string>;
70362
+ default: string;
70363
+ };
70364
+ icon: PropType<boolean | IconValue>;
70365
+ href: StringConstructor;
70366
+ elevation: {
70367
+ type: (StringConstructor | NumberConstructor)[];
70368
+ validator(v: any): boolean;
70369
+ };
70370
+ to: PropType<vue_router.RouteLocationRaw>;
70371
+ theme: StringConstructor;
70372
+ rounded: {
70373
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
70374
+ default: undefined;
70375
+ };
70376
+ tile: BooleanConstructor;
70377
+ density: {
70378
+ type: PropType<Density>;
70379
+ default: string;
70380
+ validator: (v: any) => boolean;
70381
+ };
70382
+ selectedClass: StringConstructor;
70383
+ prependIcon: PropType<IconValue>;
70384
+ appendIcon: PropType<IconValue>;
70385
+ slim: BooleanConstructor;
70386
+ stacked: BooleanConstructor;
70387
+ ripple: {
70388
+ type: PropType<boolean | {
70389
+ class: string;
70390
+ } | undefined>;
70391
+ default: boolean;
70392
+ };
70393
+ app: BooleanConstructor;
70394
+ appear: BooleanConstructor;
70395
+ extended: BooleanConstructor;
70396
+ location: {
70397
+ type: PropType<"end" | "start" | "left" | "top" | "bottom" | "right">;
70398
+ default: string;
70399
+ };
70400
+ offset: BooleanConstructor;
70401
+ modelValue: {
70402
+ type: BooleanConstructor;
70403
+ default: boolean;
70404
+ };
70405
+ }>>;
70406
+ type VFab = InstanceType<typeof VFab>;
70407
+
70408
+ declare const VPickerTitle: {
70409
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
70410
+ style: vue.StyleValue;
70411
+ tag: string;
70412
+ } & {
70413
+ class?: any;
70414
+ } & {
70415
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
70416
+ default?: (() => vue.VNodeChild) | undefined;
70417
+ };
70418
+ 'v-slots'?: {
70419
+ default?: false | (() => vue.VNodeChild) | undefined;
70420
+ } | undefined;
70421
+ } & {
70422
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
70423
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
70424
+ [key: string]: any;
70425
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
70426
+ style: vue.StyleValue;
70427
+ tag: string;
70428
+ } & {
70429
+ class?: any;
70430
+ } & {
70431
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
70432
+ default?: (() => vue.VNodeChild) | undefined;
70433
+ };
70434
+ 'v-slots'?: {
70435
+ default?: false | (() => vue.VNodeChild) | undefined;
70436
+ } | undefined;
70437
+ } & {
70438
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
70439
+ }, {
70440
+ style: vue.StyleValue;
70441
+ tag: string;
70442
+ }, true, {}, vue.SlotsType<Partial<{
70443
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
70444
+ [key: string]: any;
70445
+ }>[];
70446
+ }>>, {
70447
+ P: {};
70448
+ B: {};
70449
+ D: {};
70450
+ C: {};
70451
+ M: {};
70452
+ Defaults: {};
70453
+ }, {
70454
+ style: vue.StyleValue;
70455
+ tag: string;
70456
+ } & {
70457
+ class?: any;
70458
+ } & {
70459
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
70460
+ default?: (() => vue.VNodeChild) | undefined;
70461
+ };
70462
+ 'v-slots'?: {
70463
+ default?: false | (() => vue.VNodeChild) | undefined;
70464
+ } | undefined;
70465
+ } & {
70466
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
70467
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
70468
+ [key: string]: any;
70469
+ }>, {}, {}, {}, {
70470
+ style: vue.StyleValue;
70471
+ tag: string;
70472
+ }>;
70473
+ __isFragment?: undefined;
70474
+ __isTeleport?: undefined;
70475
+ __isSuspense?: undefined;
70476
+ } & vue.ComponentOptionsBase<{
70477
+ style: vue.StyleValue;
70478
+ tag: string;
70479
+ } & {
70480
+ class?: any;
70481
+ } & {
70482
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
70483
+ default?: (() => vue.VNodeChild) | undefined;
70484
+ };
70485
+ 'v-slots'?: {
70486
+ default?: false | (() => vue.VNodeChild) | undefined;
70487
+ } | undefined;
70488
+ } & {
70489
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
70490
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
70491
+ [key: string]: any;
70492
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
70493
+ style: vue.StyleValue;
70494
+ tag: string;
70495
+ }, {}, string, vue.SlotsType<Partial<{
70496
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
70497
+ [key: string]: any;
70498
+ }>[];
70499
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
70500
+ class: vue.PropType<any>;
70501
+ style: {
70502
+ type: vue.PropType<vue.StyleValue>;
70503
+ default: null;
70504
+ };
70505
+ tag: {
70506
+ type: StringConstructor;
70507
+ default: string;
70508
+ };
70509
+ }, vue.ExtractPropTypes<{
70510
+ class: vue.PropType<any>;
70511
+ style: {
70512
+ type: vue.PropType<vue.StyleValue>;
70513
+ default: null;
69725
70514
  };
69726
70515
  tag: {
69727
70516
  type: StringConstructor;
@@ -69753,7 +70542,9 @@ declare const VSparkline: {
69753
70542
  showLabels: boolean;
69754
70543
  autoLineWidth: boolean;
69755
70544
  } & {
70545
+ max?: string | number | undefined;
69756
70546
  id?: string | undefined;
70547
+ min?: string | number | undefined;
69757
70548
  color?: string | undefined;
69758
70549
  autoDrawDuration?: string | number | undefined;
69759
70550
  } & {
@@ -69795,7 +70586,9 @@ declare const VSparkline: {
69795
70586
  showLabels: boolean;
69796
70587
  autoLineWidth: boolean;
69797
70588
  } & {
70589
+ max?: string | number | undefined;
69798
70590
  id?: string | undefined;
70591
+ min?: string | number | undefined;
69799
70592
  color?: string | undefined;
69800
70593
  autoDrawDuration?: string | number | undefined;
69801
70594
  } & {
@@ -69871,7 +70664,9 @@ declare const VSparkline: {
69871
70664
  showLabels: boolean;
69872
70665
  autoLineWidth: boolean;
69873
70666
  } & {
70667
+ max?: string | number | undefined;
69874
70668
  id?: string | undefined;
70669
+ min?: string | number | undefined;
69875
70670
  color?: string | undefined;
69876
70671
  autoDrawDuration?: string | number | undefined;
69877
70672
  } & {
@@ -69934,7 +70729,9 @@ declare const VSparkline: {
69934
70729
  showLabels: boolean;
69935
70730
  autoLineWidth: boolean;
69936
70731
  } & {
70732
+ max?: string | number | undefined;
69937
70733
  id?: string | undefined;
70734
+ min?: string | number | undefined;
69938
70735
  color?: string | undefined;
69939
70736
  autoDrawDuration?: string | number | undefined;
69940
70737
  } & {
@@ -70023,6 +70820,8 @@ declare const VSparkline: {
70023
70820
  type: PropType<SparklineItem[]>;
70024
70821
  default: () => never[];
70025
70822
  };
70823
+ min: (StringConstructor | NumberConstructor)[];
70824
+ max: (StringConstructor | NumberConstructor)[];
70026
70825
  padding: {
70027
70826
  type: (StringConstructor | NumberConstructor)[];
70028
70827
  default: number;
@@ -70077,6 +70876,8 @@ declare const VSparkline: {
70077
70876
  type: PropType<SparklineItem[]>;
70078
70877
  default: () => never[];
70079
70878
  };
70879
+ min: (StringConstructor | NumberConstructor)[];
70880
+ max: (StringConstructor | NumberConstructor)[];
70080
70881
  padding: {
70081
70882
  type: (StringConstructor | NumberConstructor)[];
70082
70883
  default: number;
@@ -70096,6 +70897,410 @@ declare const VSparkline: {
70096
70897
  }>>;
70097
70898
  type VSparkline = InstanceType<typeof VSparkline>;
70098
70899
 
70900
+ declare const VEmptyState: {
70901
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
70902
+ style: vue.StyleValue;
70903
+ size: NonNullable<string | number> | undefined;
70904
+ justify: "center" | "end" | "start";
70905
+ textWidth: string | number;
70906
+ } & {
70907
+ height?: string | number | undefined;
70908
+ width?: string | number | undefined;
70909
+ color?: string | undefined;
70910
+ maxHeight?: string | number | undefined;
70911
+ maxWidth?: string | number | undefined;
70912
+ minHeight?: string | number | undefined;
70913
+ minWidth?: string | number | undefined;
70914
+ title?: string | undefined;
70915
+ image?: string | undefined;
70916
+ text?: string | undefined;
70917
+ class?: any;
70918
+ icon?: IconValue | undefined;
70919
+ href?: string | undefined;
70920
+ to?: string | undefined;
70921
+ theme?: string | undefined;
70922
+ bgColor?: string | undefined;
70923
+ actionText?: string | undefined;
70924
+ headline?: string | undefined;
70925
+ } & {
70926
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
70927
+ actions?: ((arg: {
70928
+ props: {
70929
+ onClick: (e: Event) => void;
70930
+ };
70931
+ }) => vue.VNodeChild) | undefined;
70932
+ default?: (() => vue.VNodeChild) | undefined;
70933
+ headline?: (() => vue.VNodeChild) | undefined;
70934
+ title?: (() => vue.VNodeChild) | undefined;
70935
+ media?: (() => vue.VNodeChild) | undefined;
70936
+ text?: (() => vue.VNodeChild) | undefined;
70937
+ };
70938
+ 'v-slots'?: {
70939
+ actions?: false | ((arg: {
70940
+ props: {
70941
+ onClick: (e: Event) => void;
70942
+ };
70943
+ }) => vue.VNodeChild) | undefined;
70944
+ default?: false | (() => vue.VNodeChild) | undefined;
70945
+ headline?: false | (() => vue.VNodeChild) | undefined;
70946
+ title?: false | (() => vue.VNodeChild) | undefined;
70947
+ media?: false | (() => vue.VNodeChild) | undefined;
70948
+ text?: false | (() => vue.VNodeChild) | undefined;
70949
+ } | undefined;
70950
+ } & {
70951
+ "v-slot:actions"?: false | ((arg: {
70952
+ props: {
70953
+ onClick: (e: Event) => void;
70954
+ };
70955
+ }) => vue.VNodeChild) | undefined;
70956
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
70957
+ "v-slot:headline"?: false | (() => vue.VNodeChild) | undefined;
70958
+ "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
70959
+ "v-slot:media"?: false | (() => vue.VNodeChild) | undefined;
70960
+ "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
70961
+ } & {
70962
+ "onClick:action"?: ((e: Event) => any) | undefined;
70963
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
70964
+ 'click:action': (e: Event) => true;
70965
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
70966
+ style: vue.StyleValue;
70967
+ size: NonNullable<string | number> | undefined;
70968
+ justify: "center" | "end" | "start";
70969
+ textWidth: string | number;
70970
+ } & {
70971
+ height?: string | number | undefined;
70972
+ width?: string | number | undefined;
70973
+ color?: string | undefined;
70974
+ maxHeight?: string | number | undefined;
70975
+ maxWidth?: string | number | undefined;
70976
+ minHeight?: string | number | undefined;
70977
+ minWidth?: string | number | undefined;
70978
+ title?: string | undefined;
70979
+ image?: string | undefined;
70980
+ text?: string | undefined;
70981
+ class?: any;
70982
+ icon?: IconValue | undefined;
70983
+ href?: string | undefined;
70984
+ to?: string | undefined;
70985
+ theme?: string | undefined;
70986
+ bgColor?: string | undefined;
70987
+ actionText?: string | undefined;
70988
+ headline?: string | undefined;
70989
+ } & {
70990
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
70991
+ actions?: ((arg: {
70992
+ props: {
70993
+ onClick: (e: Event) => void;
70994
+ };
70995
+ }) => vue.VNodeChild) | undefined;
70996
+ default?: (() => vue.VNodeChild) | undefined;
70997
+ headline?: (() => vue.VNodeChild) | undefined;
70998
+ title?: (() => vue.VNodeChild) | undefined;
70999
+ media?: (() => vue.VNodeChild) | undefined;
71000
+ text?: (() => vue.VNodeChild) | undefined;
71001
+ };
71002
+ 'v-slots'?: {
71003
+ actions?: false | ((arg: {
71004
+ props: {
71005
+ onClick: (e: Event) => void;
71006
+ };
71007
+ }) => vue.VNodeChild) | undefined;
71008
+ default?: false | (() => vue.VNodeChild) | undefined;
71009
+ headline?: false | (() => vue.VNodeChild) | undefined;
71010
+ title?: false | (() => vue.VNodeChild) | undefined;
71011
+ media?: false | (() => vue.VNodeChild) | undefined;
71012
+ text?: false | (() => vue.VNodeChild) | undefined;
71013
+ } | undefined;
71014
+ } & {
71015
+ "v-slot:actions"?: false | ((arg: {
71016
+ props: {
71017
+ onClick: (e: Event) => void;
71018
+ };
71019
+ }) => vue.VNodeChild) | undefined;
71020
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
71021
+ "v-slot:headline"?: false | (() => vue.VNodeChild) | undefined;
71022
+ "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
71023
+ "v-slot:media"?: false | (() => vue.VNodeChild) | undefined;
71024
+ "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
71025
+ } & {
71026
+ "onClick:action"?: ((e: Event) => any) | undefined;
71027
+ }, {
71028
+ style: vue.StyleValue;
71029
+ size: NonNullable<string | number> | undefined;
71030
+ justify: "center" | "end" | "start";
71031
+ textWidth: string | number;
71032
+ }, true, {}, vue.SlotsType<Partial<{
71033
+ actions: (arg: {
71034
+ props: {
71035
+ onClick: (e: Event) => void;
71036
+ };
71037
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
71038
+ [key: string]: any;
71039
+ }>[];
71040
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
71041
+ [key: string]: any;
71042
+ }>[];
71043
+ headline: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
71044
+ [key: string]: any;
71045
+ }>[];
71046
+ title: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
71047
+ [key: string]: any;
71048
+ }>[];
71049
+ media: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
71050
+ [key: string]: any;
71051
+ }>[];
71052
+ text: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
71053
+ [key: string]: any;
71054
+ }>[];
71055
+ }>>, {
71056
+ P: {};
71057
+ B: {};
71058
+ D: {};
71059
+ C: {};
71060
+ M: {};
71061
+ Defaults: {};
71062
+ }, {
71063
+ style: vue.StyleValue;
71064
+ size: NonNullable<string | number> | undefined;
71065
+ justify: "center" | "end" | "start";
71066
+ textWidth: string | number;
71067
+ } & {
71068
+ height?: string | number | undefined;
71069
+ width?: string | number | undefined;
71070
+ color?: string | undefined;
71071
+ maxHeight?: string | number | undefined;
71072
+ maxWidth?: string | number | undefined;
71073
+ minHeight?: string | number | undefined;
71074
+ minWidth?: string | number | undefined;
71075
+ title?: string | undefined;
71076
+ image?: string | undefined;
71077
+ text?: string | undefined;
71078
+ class?: any;
71079
+ icon?: IconValue | undefined;
71080
+ href?: string | undefined;
71081
+ to?: string | undefined;
71082
+ theme?: string | undefined;
71083
+ bgColor?: string | undefined;
71084
+ actionText?: string | undefined;
71085
+ headline?: string | undefined;
71086
+ } & {
71087
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
71088
+ actions?: ((arg: {
71089
+ props: {
71090
+ onClick: (e: Event) => void;
71091
+ };
71092
+ }) => vue.VNodeChild) | undefined;
71093
+ default?: (() => vue.VNodeChild) | undefined;
71094
+ headline?: (() => vue.VNodeChild) | undefined;
71095
+ title?: (() => vue.VNodeChild) | undefined;
71096
+ media?: (() => vue.VNodeChild) | undefined;
71097
+ text?: (() => vue.VNodeChild) | undefined;
71098
+ };
71099
+ 'v-slots'?: {
71100
+ actions?: false | ((arg: {
71101
+ props: {
71102
+ onClick: (e: Event) => void;
71103
+ };
71104
+ }) => vue.VNodeChild) | undefined;
71105
+ default?: false | (() => vue.VNodeChild) | undefined;
71106
+ headline?: false | (() => vue.VNodeChild) | undefined;
71107
+ title?: false | (() => vue.VNodeChild) | undefined;
71108
+ media?: false | (() => vue.VNodeChild) | undefined;
71109
+ text?: false | (() => vue.VNodeChild) | undefined;
71110
+ } | undefined;
71111
+ } & {
71112
+ "v-slot:actions"?: false | ((arg: {
71113
+ props: {
71114
+ onClick: (e: Event) => void;
71115
+ };
71116
+ }) => vue.VNodeChild) | undefined;
71117
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
71118
+ "v-slot:headline"?: false | (() => vue.VNodeChild) | undefined;
71119
+ "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
71120
+ "v-slot:media"?: false | (() => vue.VNodeChild) | undefined;
71121
+ "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
71122
+ } & {
71123
+ "onClick:action"?: ((e: Event) => any) | undefined;
71124
+ }, {}, {}, {}, {}, {
71125
+ style: vue.StyleValue;
71126
+ size: NonNullable<string | number> | undefined;
71127
+ justify: "center" | "end" | "start";
71128
+ textWidth: string | number;
71129
+ }>;
71130
+ __isFragment?: undefined;
71131
+ __isTeleport?: undefined;
71132
+ __isSuspense?: undefined;
71133
+ } & vue.ComponentOptionsBase<{
71134
+ style: vue.StyleValue;
71135
+ size: NonNullable<string | number> | undefined;
71136
+ justify: "center" | "end" | "start";
71137
+ textWidth: string | number;
71138
+ } & {
71139
+ height?: string | number | undefined;
71140
+ width?: string | number | undefined;
71141
+ color?: string | undefined;
71142
+ maxHeight?: string | number | undefined;
71143
+ maxWidth?: string | number | undefined;
71144
+ minHeight?: string | number | undefined;
71145
+ minWidth?: string | number | undefined;
71146
+ title?: string | undefined;
71147
+ image?: string | undefined;
71148
+ text?: string | undefined;
71149
+ class?: any;
71150
+ icon?: IconValue | undefined;
71151
+ href?: string | undefined;
71152
+ to?: string | undefined;
71153
+ theme?: string | undefined;
71154
+ bgColor?: string | undefined;
71155
+ actionText?: string | undefined;
71156
+ headline?: string | undefined;
71157
+ } & {
71158
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
71159
+ actions?: ((arg: {
71160
+ props: {
71161
+ onClick: (e: Event) => void;
71162
+ };
71163
+ }) => vue.VNodeChild) | undefined;
71164
+ default?: (() => vue.VNodeChild) | undefined;
71165
+ headline?: (() => vue.VNodeChild) | undefined;
71166
+ title?: (() => vue.VNodeChild) | undefined;
71167
+ media?: (() => vue.VNodeChild) | undefined;
71168
+ text?: (() => vue.VNodeChild) | undefined;
71169
+ };
71170
+ 'v-slots'?: {
71171
+ actions?: false | ((arg: {
71172
+ props: {
71173
+ onClick: (e: Event) => void;
71174
+ };
71175
+ }) => vue.VNodeChild) | undefined;
71176
+ default?: false | (() => vue.VNodeChild) | undefined;
71177
+ headline?: false | (() => vue.VNodeChild) | undefined;
71178
+ title?: false | (() => vue.VNodeChild) | undefined;
71179
+ media?: false | (() => vue.VNodeChild) | undefined;
71180
+ text?: false | (() => vue.VNodeChild) | undefined;
71181
+ } | undefined;
71182
+ } & {
71183
+ "v-slot:actions"?: false | ((arg: {
71184
+ props: {
71185
+ onClick: (e: Event) => void;
71186
+ };
71187
+ }) => vue.VNodeChild) | undefined;
71188
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
71189
+ "v-slot:headline"?: false | (() => vue.VNodeChild) | undefined;
71190
+ "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
71191
+ "v-slot:media"?: false | (() => vue.VNodeChild) | undefined;
71192
+ "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
71193
+ } & {
71194
+ "onClick:action"?: ((e: Event) => any) | undefined;
71195
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
71196
+ 'click:action': (e: Event) => true;
71197
+ }, string, {
71198
+ style: vue.StyleValue;
71199
+ size: NonNullable<string | number> | undefined;
71200
+ justify: "center" | "end" | "start";
71201
+ textWidth: string | number;
71202
+ }, {}, string, vue.SlotsType<Partial<{
71203
+ actions: (arg: {
71204
+ props: {
71205
+ onClick: (e: Event) => void;
71206
+ };
71207
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
71208
+ [key: string]: any;
71209
+ }>[];
71210
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
71211
+ [key: string]: any;
71212
+ }>[];
71213
+ headline: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
71214
+ [key: string]: any;
71215
+ }>[];
71216
+ title: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
71217
+ [key: string]: any;
71218
+ }>[];
71219
+ media: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
71220
+ [key: string]: any;
71221
+ }>[];
71222
+ text: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
71223
+ [key: string]: any;
71224
+ }>[];
71225
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
71226
+ theme: StringConstructor;
71227
+ size: Omit<{
71228
+ type: (StringConstructor | NumberConstructor)[];
71229
+ default: string;
71230
+ }, "type" | "default"> & {
71231
+ type: PropType<NonNullable<string | number> | undefined>;
71232
+ default: NonNullable<string | number> | undefined;
71233
+ };
71234
+ height: (StringConstructor | NumberConstructor)[];
71235
+ maxHeight: (StringConstructor | NumberConstructor)[];
71236
+ maxWidth: (StringConstructor | NumberConstructor)[];
71237
+ minHeight: (StringConstructor | NumberConstructor)[];
71238
+ minWidth: (StringConstructor | NumberConstructor)[];
71239
+ width: (StringConstructor | NumberConstructor)[];
71240
+ class: PropType<any>;
71241
+ style: {
71242
+ type: PropType<vue.StyleValue>;
71243
+ default: null;
71244
+ };
71245
+ actionText: StringConstructor;
71246
+ bgColor: StringConstructor;
71247
+ color: StringConstructor;
71248
+ icon: PropType<IconValue>;
71249
+ image: StringConstructor;
71250
+ justify: {
71251
+ type: PropType<"center" | "end" | "start">;
71252
+ default: string;
71253
+ };
71254
+ headline: StringConstructor;
71255
+ title: StringConstructor;
71256
+ text: StringConstructor;
71257
+ textWidth: {
71258
+ type: (StringConstructor | NumberConstructor)[];
71259
+ default: number;
71260
+ };
71261
+ href: StringConstructor;
71262
+ to: StringConstructor;
71263
+ }, vue.ExtractPropTypes<{
71264
+ theme: StringConstructor;
71265
+ size: Omit<{
71266
+ type: (StringConstructor | NumberConstructor)[];
71267
+ default: string;
71268
+ }, "type" | "default"> & {
71269
+ type: PropType<NonNullable<string | number> | undefined>;
71270
+ default: NonNullable<string | number> | undefined;
71271
+ };
71272
+ height: (StringConstructor | NumberConstructor)[];
71273
+ maxHeight: (StringConstructor | NumberConstructor)[];
71274
+ maxWidth: (StringConstructor | NumberConstructor)[];
71275
+ minHeight: (StringConstructor | NumberConstructor)[];
71276
+ minWidth: (StringConstructor | NumberConstructor)[];
71277
+ width: (StringConstructor | NumberConstructor)[];
71278
+ class: PropType<any>;
71279
+ style: {
71280
+ type: PropType<vue.StyleValue>;
71281
+ default: null;
71282
+ };
71283
+ actionText: StringConstructor;
71284
+ bgColor: StringConstructor;
71285
+ color: StringConstructor;
71286
+ icon: PropType<IconValue>;
71287
+ image: StringConstructor;
71288
+ justify: {
71289
+ type: PropType<"center" | "end" | "start">;
71290
+ default: string;
71291
+ };
71292
+ headline: StringConstructor;
71293
+ title: StringConstructor;
71294
+ text: StringConstructor;
71295
+ textWidth: {
71296
+ type: (StringConstructor | NumberConstructor)[];
71297
+ default: number;
71298
+ };
71299
+ href: StringConstructor;
71300
+ to: StringConstructor;
71301
+ }>>;
71302
+ type VEmptyState = InstanceType<typeof VEmptyState>;
71303
+
70099
71304
  //# sourceMappingURL=allComponents.d.ts.map
70100
71305
 
70101
71306
  declare const allComponents_d_VAlert: typeof VAlert;
@@ -70148,6 +71353,7 @@ declare const allComponents_d_VCounter: typeof VCounter;
70148
71353
  declare const allComponents_d_VDataIterator: typeof VDataIterator;
70149
71354
  declare const allComponents_d_VDataTable: typeof VDataTable;
70150
71355
  declare const allComponents_d_VDataTableFooter: typeof VDataTableFooter;
71356
+ declare const allComponents_d_VDataTableHeaders: typeof VDataTableHeaders;
70151
71357
  declare const allComponents_d_VDataTableRow: typeof VDataTableRow;
70152
71358
  declare const allComponents_d_VDataTableRows: typeof VDataTableRows;
70153
71359
  declare const allComponents_d_VDataTableServer: typeof VDataTableServer;
@@ -70164,12 +71370,14 @@ declare const allComponents_d_VDialogBottomTransition: typeof VDialogBottomTrans
70164
71370
  declare const allComponents_d_VDialogTopTransition: typeof VDialogTopTransition;
70165
71371
  declare const allComponents_d_VDialogTransition: typeof VDialogTransition;
70166
71372
  declare const allComponents_d_VDivider: typeof VDivider;
71373
+ declare const allComponents_d_VEmptyState: typeof VEmptyState;
70167
71374
  declare const allComponents_d_VExpandTransition: typeof VExpandTransition;
70168
71375
  declare const allComponents_d_VExpandXTransition: typeof VExpandXTransition;
70169
71376
  declare const allComponents_d_VExpansionPanel: typeof VExpansionPanel;
70170
71377
  declare const allComponents_d_VExpansionPanelText: typeof VExpansionPanelText;
70171
71378
  declare const allComponents_d_VExpansionPanelTitle: typeof VExpansionPanelTitle;
70172
71379
  declare const allComponents_d_VExpansionPanels: typeof VExpansionPanels;
71380
+ declare const allComponents_d_VFab: typeof VFab;
70173
71381
  declare const allComponents_d_VFabTransition: typeof VFabTransition;
70174
71382
  declare const allComponents_d_VFadeTransition: typeof VFadeTransition;
70175
71383
  declare const allComponents_d_VField: typeof VField;
@@ -70265,7 +71473,7 @@ declare const allComponents_d_VVirtualScroll: typeof VVirtualScroll;
70265
71473
  declare const allComponents_d_VWindow: typeof VWindow;
70266
71474
  declare const allComponents_d_VWindowItem: typeof VWindowItem;
70267
71475
  declare namespace allComponents_d {
70268
- export { type allComponents_d_VAlert as VAlert, type allComponents_d_VAlertTitle as VAlertTitle, type allComponents_d_VApp as VApp, type allComponents_d_VAppBar as VAppBar, type allComponents_d_VAppBarNavIcon as VAppBarNavIcon, type allComponents_d_VAppBarTitle as VAppBarTitle, type allComponents_d_VAutocomplete as VAutocomplete, type allComponents_d_VAvatar as VAvatar, type allComponents_d_VBadge as VBadge, type allComponents_d_VBanner as VBanner, type allComponents_d_VBannerActions as VBannerActions, type allComponents_d_VBannerText as VBannerText, type allComponents_d_VBottomNavigation as VBottomNavigation, type allComponents_d_VBottomSheet as VBottomSheet, type allComponents_d_VBreadcrumbs as VBreadcrumbs, type allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, type allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, type allComponents_d_VBtn as VBtn, type allComponents_d_VBtnGroup as VBtnGroup, type allComponents_d_VBtnToggle as VBtnToggle, type allComponents_d_VCalendar as VCalendar, type allComponents_d_VCalendarDay as VCalendarDay, type allComponents_d_VCalendarHeader as VCalendarHeader, type allComponents_d_VCalendarInterval as VCalendarInterval, type allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, type allComponents_d_VCalendarMonthDay as VCalendarMonthDay, type allComponents_d_VCard as VCard, type allComponents_d_VCardActions as VCardActions, type allComponents_d_VCardItem as VCardItem, type allComponents_d_VCardSubtitle as VCardSubtitle, type allComponents_d_VCardText as VCardText, type allComponents_d_VCardTitle as VCardTitle, type allComponents_d_VCarousel as VCarousel, type allComponents_d_VCarouselItem as VCarouselItem, type allComponents_d_VCheckbox as VCheckbox, type allComponents_d_VCheckboxBtn as VCheckboxBtn, type allComponents_d_VChip as VChip, type allComponents_d_VChipGroup as VChipGroup, type allComponents_d_VClassIcon as VClassIcon, type allComponents_d_VCode as VCode, type allComponents_d_VCol as VCol, type allComponents_d_VColorPicker as VColorPicker, type allComponents_d_VCombobox as VCombobox, type allComponents_d_VComponentIcon as VComponentIcon, type allComponents_d_VConfirmEdit as VConfirmEdit, type allComponents_d_VContainer as VContainer, type allComponents_d_VCounter as VCounter, type allComponents_d_VDataIterator as VDataIterator, type allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, type allComponents_d_VDataTableRow as VDataTableRow, type allComponents_d_VDataTableRows as VDataTableRows, type allComponents_d_VDataTableServer as VDataTableServer, type allComponents_d_VDataTableVirtual as VDataTableVirtual, type allComponents_d_VDatePicker as VDatePicker, type allComponents_d_VDatePickerControls as VDatePickerControls, type allComponents_d_VDatePickerHeader as VDatePickerHeader, type allComponents_d_VDatePickerMonth as VDatePickerMonth, type allComponents_d_VDatePickerMonths as VDatePickerMonths, type allComponents_d_VDatePickerYears as VDatePickerYears, type allComponents_d_VDefaultsProvider as VDefaultsProvider, type allComponents_d_VDialog as VDialog, type allComponents_d_VDialogBottomTransition as VDialogBottomTransition, type allComponents_d_VDialogTopTransition as VDialogTopTransition, type allComponents_d_VDialogTransition as VDialogTransition, type allComponents_d_VDivider as VDivider, type allComponents_d_VExpandTransition as VExpandTransition, type allComponents_d_VExpandXTransition as VExpandXTransition, type allComponents_d_VExpansionPanel as VExpansionPanel, type allComponents_d_VExpansionPanelText as VExpansionPanelText, type allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, type allComponents_d_VExpansionPanels as VExpansionPanels, type allComponents_d_VFabTransition as VFabTransition, type allComponents_d_VFadeTransition as VFadeTransition, type allComponents_d_VField as VField, type allComponents_d_VFieldLabel as VFieldLabel, type allComponents_d_VFileInput as VFileInput, type allComponents_d_VFooter as VFooter, type allComponents_d_VForm as VForm, type allComponents_d_VHover as VHover, type allComponents_d_VIcon as VIcon, type allComponents_d_VImg as VImg, type allComponents_d_VInfiniteScroll as VInfiniteScroll, type allComponents_d_VInput as VInput, type allComponents_d_VItem as VItem, type allComponents_d_VItemGroup as VItemGroup, type allComponents_d_VKbd as VKbd, type allComponents_d_VLabel as VLabel, type allComponents_d_VLayout as VLayout, type allComponents_d_VLayoutItem as VLayoutItem, type allComponents_d_VLazy as VLazy, type allComponents_d_VLigatureIcon as VLigatureIcon, type allComponents_d_VList as VList, type allComponents_d_VListGroup as VListGroup, type allComponents_d_VListImg as VListImg, type allComponents_d_VListItem as VListItem, type allComponents_d_VListItemAction as VListItemAction, type allComponents_d_VListItemMedia as VListItemMedia, type allComponents_d_VListItemSubtitle as VListItemSubtitle, type allComponents_d_VListItemTitle as VListItemTitle, type allComponents_d_VListSubheader as VListSubheader, type allComponents_d_VLocaleProvider as VLocaleProvider, type allComponents_d_VMain as VMain, type allComponents_d_VMenu as VMenu, type allComponents_d_VMessages as VMessages, type allComponents_d_VNavigationDrawer as VNavigationDrawer, type allComponents_d_VNoSsr as VNoSsr, type allComponents_d_VOtpInput as VOtpInput, type allComponents_d_VOverlay as VOverlay, type allComponents_d_VPagination as VPagination, type allComponents_d_VParallax as VParallax, type allComponents_d_VPicker as VPicker, type allComponents_d_VPickerTitle as VPickerTitle, type allComponents_d_VProgressCircular as VProgressCircular, type allComponents_d_VProgressLinear as VProgressLinear, type allComponents_d_VRadio as VRadio, type allComponents_d_VRadioGroup as VRadioGroup, type allComponents_d_VRangeSlider as VRangeSlider, type allComponents_d_VRating as VRating, type allComponents_d_VResponsive as VResponsive, type allComponents_d_VRow as VRow, type allComponents_d_VScaleTransition as VScaleTransition, type allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, type allComponents_d_VScrollXTransition as VScrollXTransition, type allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, type allComponents_d_VScrollYTransition as VScrollYTransition, type allComponents_d_VSelect as VSelect, type allComponents_d_VSelectionControl as VSelectionControl, type allComponents_d_VSelectionControlGroup as VSelectionControlGroup, type allComponents_d_VSheet as VSheet, type allComponents_d_VSkeletonLoader as VSkeletonLoader, type allComponents_d_VSlideGroup as VSlideGroup, type allComponents_d_VSlideGroupItem as VSlideGroupItem, type allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, type allComponents_d_VSlideXTransition as VSlideXTransition, type allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, type allComponents_d_VSlideYTransition as VSlideYTransition, type allComponents_d_VSlider as VSlider, type allComponents_d_VSnackbar as VSnackbar, type allComponents_d_VSpacer as VSpacer, type allComponents_d_VSparkline as VSparkline, type allComponents_d_VStepper as VStepper, type allComponents_d_VStepperActions as VStepperActions, type allComponents_d_VStepperHeader as VStepperHeader, type allComponents_d_VStepperItem as VStepperItem, type allComponents_d_VStepperWindow as VStepperWindow, type allComponents_d_VStepperWindowItem as VStepperWindowItem, type allComponents_d_VSvgIcon as VSvgIcon, type allComponents_d_VSwitch as VSwitch, type allComponents_d_VSystemBar as VSystemBar, type allComponents_d_VTab as VTab, type allComponents_d_VTable as VTable, type allComponents_d_VTabs as VTabs, type allComponents_d_VTextField as VTextField, type allComponents_d_VTextarea as VTextarea, type allComponents_d_VThemeProvider as VThemeProvider, type allComponents_d_VTimeline as VTimeline, type allComponents_d_VTimelineItem as VTimelineItem, type allComponents_d_VToolbar as VToolbar, type allComponents_d_VToolbarItems as VToolbarItems, type allComponents_d_VToolbarTitle as VToolbarTitle, type allComponents_d_VTooltip as VTooltip, type allComponents_d_VValidation as VValidation, type allComponents_d_VVirtualScroll as VVirtualScroll, type allComponents_d_VWindow as VWindow, type allComponents_d_VWindowItem as VWindowItem };
71476
+ export { type allComponents_d_VAlert as VAlert, type allComponents_d_VAlertTitle as VAlertTitle, type allComponents_d_VApp as VApp, type allComponents_d_VAppBar as VAppBar, type allComponents_d_VAppBarNavIcon as VAppBarNavIcon, type allComponents_d_VAppBarTitle as VAppBarTitle, type allComponents_d_VAutocomplete as VAutocomplete, type allComponents_d_VAvatar as VAvatar, type allComponents_d_VBadge as VBadge, type allComponents_d_VBanner as VBanner, type allComponents_d_VBannerActions as VBannerActions, type allComponents_d_VBannerText as VBannerText, type allComponents_d_VBottomNavigation as VBottomNavigation, type allComponents_d_VBottomSheet as VBottomSheet, type allComponents_d_VBreadcrumbs as VBreadcrumbs, type allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, type allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, type allComponents_d_VBtn as VBtn, type allComponents_d_VBtnGroup as VBtnGroup, type allComponents_d_VBtnToggle as VBtnToggle, type allComponents_d_VCalendar as VCalendar, type allComponents_d_VCalendarDay as VCalendarDay, type allComponents_d_VCalendarHeader as VCalendarHeader, type allComponents_d_VCalendarInterval as VCalendarInterval, type allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, type allComponents_d_VCalendarMonthDay as VCalendarMonthDay, type allComponents_d_VCard as VCard, type allComponents_d_VCardActions as VCardActions, type allComponents_d_VCardItem as VCardItem, type allComponents_d_VCardSubtitle as VCardSubtitle, type allComponents_d_VCardText as VCardText, type allComponents_d_VCardTitle as VCardTitle, type allComponents_d_VCarousel as VCarousel, type allComponents_d_VCarouselItem as VCarouselItem, type allComponents_d_VCheckbox as VCheckbox, type allComponents_d_VCheckboxBtn as VCheckboxBtn, type allComponents_d_VChip as VChip, type allComponents_d_VChipGroup as VChipGroup, type allComponents_d_VClassIcon as VClassIcon, type allComponents_d_VCode as VCode, type allComponents_d_VCol as VCol, type allComponents_d_VColorPicker as VColorPicker, type allComponents_d_VCombobox as VCombobox, type allComponents_d_VComponentIcon as VComponentIcon, type allComponents_d_VConfirmEdit as VConfirmEdit, type allComponents_d_VContainer as VContainer, type allComponents_d_VCounter as VCounter, type allComponents_d_VDataIterator as VDataIterator, type allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, type allComponents_d_VDataTableHeaders as VDataTableHeaders, type allComponents_d_VDataTableRow as VDataTableRow, type allComponents_d_VDataTableRows as VDataTableRows, type allComponents_d_VDataTableServer as VDataTableServer, type allComponents_d_VDataTableVirtual as VDataTableVirtual, type allComponents_d_VDatePicker as VDatePicker, type allComponents_d_VDatePickerControls as VDatePickerControls, type allComponents_d_VDatePickerHeader as VDatePickerHeader, type allComponents_d_VDatePickerMonth as VDatePickerMonth, type allComponents_d_VDatePickerMonths as VDatePickerMonths, type allComponents_d_VDatePickerYears as VDatePickerYears, type allComponents_d_VDefaultsProvider as VDefaultsProvider, type allComponents_d_VDialog as VDialog, type allComponents_d_VDialogBottomTransition as VDialogBottomTransition, type allComponents_d_VDialogTopTransition as VDialogTopTransition, type allComponents_d_VDialogTransition as VDialogTransition, type allComponents_d_VDivider as VDivider, type allComponents_d_VEmptyState as VEmptyState, type allComponents_d_VExpandTransition as VExpandTransition, type allComponents_d_VExpandXTransition as VExpandXTransition, type allComponents_d_VExpansionPanel as VExpansionPanel, type allComponents_d_VExpansionPanelText as VExpansionPanelText, type allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, type allComponents_d_VExpansionPanels as VExpansionPanels, type allComponents_d_VFab as VFab, type allComponents_d_VFabTransition as VFabTransition, type allComponents_d_VFadeTransition as VFadeTransition, type allComponents_d_VField as VField, type allComponents_d_VFieldLabel as VFieldLabel, type allComponents_d_VFileInput as VFileInput, type allComponents_d_VFooter as VFooter, type allComponents_d_VForm as VForm, type allComponents_d_VHover as VHover, type allComponents_d_VIcon as VIcon, type allComponents_d_VImg as VImg, type allComponents_d_VInfiniteScroll as VInfiniteScroll, type allComponents_d_VInput as VInput, type allComponents_d_VItem as VItem, type allComponents_d_VItemGroup as VItemGroup, type allComponents_d_VKbd as VKbd, type allComponents_d_VLabel as VLabel, type allComponents_d_VLayout as VLayout, type allComponents_d_VLayoutItem as VLayoutItem, type allComponents_d_VLazy as VLazy, type allComponents_d_VLigatureIcon as VLigatureIcon, type allComponents_d_VList as VList, type allComponents_d_VListGroup as VListGroup, type allComponents_d_VListImg as VListImg, type allComponents_d_VListItem as VListItem, type allComponents_d_VListItemAction as VListItemAction, type allComponents_d_VListItemMedia as VListItemMedia, type allComponents_d_VListItemSubtitle as VListItemSubtitle, type allComponents_d_VListItemTitle as VListItemTitle, type allComponents_d_VListSubheader as VListSubheader, type allComponents_d_VLocaleProvider as VLocaleProvider, type allComponents_d_VMain as VMain, type allComponents_d_VMenu as VMenu, type allComponents_d_VMessages as VMessages, type allComponents_d_VNavigationDrawer as VNavigationDrawer, type allComponents_d_VNoSsr as VNoSsr, type allComponents_d_VOtpInput as VOtpInput, type allComponents_d_VOverlay as VOverlay, type allComponents_d_VPagination as VPagination, type allComponents_d_VParallax as VParallax, type allComponents_d_VPicker as VPicker, type allComponents_d_VPickerTitle as VPickerTitle, type allComponents_d_VProgressCircular as VProgressCircular, type allComponents_d_VProgressLinear as VProgressLinear, type allComponents_d_VRadio as VRadio, type allComponents_d_VRadioGroup as VRadioGroup, type allComponents_d_VRangeSlider as VRangeSlider, type allComponents_d_VRating as VRating, type allComponents_d_VResponsive as VResponsive, type allComponents_d_VRow as VRow, type allComponents_d_VScaleTransition as VScaleTransition, type allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, type allComponents_d_VScrollXTransition as VScrollXTransition, type allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, type allComponents_d_VScrollYTransition as VScrollYTransition, type allComponents_d_VSelect as VSelect, type allComponents_d_VSelectionControl as VSelectionControl, type allComponents_d_VSelectionControlGroup as VSelectionControlGroup, type allComponents_d_VSheet as VSheet, type allComponents_d_VSkeletonLoader as VSkeletonLoader, type allComponents_d_VSlideGroup as VSlideGroup, type allComponents_d_VSlideGroupItem as VSlideGroupItem, type allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, type allComponents_d_VSlideXTransition as VSlideXTransition, type allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, type allComponents_d_VSlideYTransition as VSlideYTransition, type allComponents_d_VSlider as VSlider, type allComponents_d_VSnackbar as VSnackbar, type allComponents_d_VSpacer as VSpacer, type allComponents_d_VSparkline as VSparkline, type allComponents_d_VStepper as VStepper, type allComponents_d_VStepperActions as VStepperActions, type allComponents_d_VStepperHeader as VStepperHeader, type allComponents_d_VStepperItem as VStepperItem, type allComponents_d_VStepperWindow as VStepperWindow, type allComponents_d_VStepperWindowItem as VStepperWindowItem, type allComponents_d_VSvgIcon as VSvgIcon, type allComponents_d_VSwitch as VSwitch, type allComponents_d_VSystemBar as VSystemBar, type allComponents_d_VTab as VTab, type allComponents_d_VTable as VTable, type allComponents_d_VTabs as VTabs, type allComponents_d_VTextField as VTextField, type allComponents_d_VTextarea as VTextarea, type allComponents_d_VThemeProvider as VThemeProvider, type allComponents_d_VTimeline as VTimeline, type allComponents_d_VTimelineItem as VTimelineItem, type allComponents_d_VToolbar as VToolbar, type allComponents_d_VToolbarItems as VToolbarItems, type allComponents_d_VToolbarTitle as VToolbarTitle, type allComponents_d_VTooltip as VTooltip, type allComponents_d_VValidation as VValidation, type allComponents_d_VVirtualScroll as VVirtualScroll, type allComponents_d_VWindow as VWindow, type allComponents_d_VWindowItem as VWindowItem };
70269
71477
  }
70270
71478
 
70271
71479
  interface ClickOutsideBindingArgs {