@vuetify/nightly 3.6.3-dev.2024-05-03 → 3.6.3-master.2024-05-03

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/CHANGELOG.md +3 -2
  2. package/dist/json/attributes.json +105 -105
  3. package/dist/json/importMap-labs.json +16 -16
  4. package/dist/json/importMap.json +136 -136
  5. package/dist/json/web-types.json +202 -202
  6. package/dist/vuetify-labs.css +2288 -2288
  7. package/dist/vuetify-labs.d.ts +129 -123
  8. package/dist/vuetify-labs.esm.js +7 -5
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +7 -5
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +830 -830
  13. package/dist/vuetify.d.ts +177 -171
  14. package/dist/vuetify.esm.js +7 -5
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +7 -5
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +5 -5
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VBanner/index.d.mts +11 -11
  22. package/lib/components/VChipGroup/index.d.mts +11 -11
  23. package/lib/components/VDataTable/index.d.mts +66 -66
  24. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +3 -1
  25. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
  26. package/lib/components/VNavigationDrawer/index.d.mts +19 -13
  27. package/lib/components/VSlideGroup/index.d.mts +11 -11
  28. package/lib/components/VTabs/index.d.mts +11 -11
  29. package/lib/components/index.d.mts +129 -123
  30. package/lib/composables/display.mjs +1 -1
  31. package/lib/composables/display.mjs.map +1 -1
  32. package/lib/entry-bundler.mjs +1 -1
  33. package/lib/entry-bundler.mjs.map +1 -1
  34. package/lib/framework.mjs +1 -1
  35. package/lib/framework.mjs.map +1 -1
  36. package/lib/index.d.mts +48 -48
  37. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -9398,7 +9398,7 @@ declare const VBanner: {
9398
9398
  new (...args: any[]): vue.CreateComponentPublicInstance<{
9399
9399
  style: vue.StyleValue;
9400
9400
  tag: string;
9401
- mobile: boolean;
9401
+ mobile: boolean | null;
9402
9402
  sticky: boolean;
9403
9403
  tile: boolean;
9404
9404
  density: Density;
@@ -9445,7 +9445,7 @@ declare const VBanner: {
9445
9445
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
9446
9446
  style: vue.StyleValue;
9447
9447
  tag: string;
9448
- mobile: boolean;
9448
+ mobile: boolean | null;
9449
9449
  sticky: boolean;
9450
9450
  tile: boolean;
9451
9451
  density: Density;
@@ -9492,7 +9492,7 @@ declare const VBanner: {
9492
9492
  }, {
9493
9493
  style: vue.StyleValue;
9494
9494
  tag: string;
9495
- mobile: boolean;
9495
+ mobile: boolean | null;
9496
9496
  sticky: boolean;
9497
9497
  rounded: string | number | boolean;
9498
9498
  tile: boolean;
@@ -9521,7 +9521,7 @@ declare const VBanner: {
9521
9521
  }, {
9522
9522
  style: vue.StyleValue;
9523
9523
  tag: string;
9524
- mobile: boolean;
9524
+ mobile: boolean | null;
9525
9525
  sticky: boolean;
9526
9526
  tile: boolean;
9527
9527
  density: Density;
@@ -9568,7 +9568,7 @@ declare const VBanner: {
9568
9568
  }, {}, {}, {}, {}, {
9569
9569
  style: vue.StyleValue;
9570
9570
  tag: string;
9571
- mobile: boolean;
9571
+ mobile: boolean | null;
9572
9572
  sticky: boolean;
9573
9573
  rounded: string | number | boolean;
9574
9574
  tile: boolean;
@@ -9581,7 +9581,7 @@ declare const VBanner: {
9581
9581
  } & vue.ComponentOptionsBase<{
9582
9582
  style: vue.StyleValue;
9583
9583
  tag: string;
9584
- mobile: boolean;
9584
+ mobile: boolean | null;
9585
9585
  sticky: boolean;
9586
9586
  tile: boolean;
9587
9587
  density: Density;
@@ -9628,7 +9628,7 @@ declare const VBanner: {
9628
9628
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
9629
9629
  style: vue.StyleValue;
9630
9630
  tag: string;
9631
- mobile: boolean;
9631
+ mobile: boolean | null;
9632
9632
  sticky: boolean;
9633
9633
  rounded: string | number | boolean;
9634
9634
  tile: boolean;
@@ -9668,8 +9668,8 @@ declare const VBanner: {
9668
9668
  validator(v: any): boolean;
9669
9669
  };
9670
9670
  mobile: {
9671
- type: BooleanConstructor;
9672
- default: null;
9671
+ type: PropType<boolean | null>;
9672
+ default: boolean;
9673
9673
  };
9674
9674
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
9675
9675
  height: (StringConstructor | NumberConstructor)[];
@@ -9718,8 +9718,8 @@ declare const VBanner: {
9718
9718
  validator(v: any): boolean;
9719
9719
  };
9720
9720
  mobile: {
9721
- type: BooleanConstructor;
9722
- default: null;
9721
+ type: PropType<boolean | null>;
9722
+ default: boolean;
9723
9723
  };
9724
9724
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
9725
9725
  height: (StringConstructor | NumberConstructor)[];
@@ -17645,7 +17645,7 @@ declare const VChipGroup: {
17645
17645
  style: vue.StyleValue;
17646
17646
  disabled: boolean;
17647
17647
  tag: string;
17648
- mobile: boolean;
17648
+ mobile: boolean | null;
17649
17649
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17650
17650
  column: boolean;
17651
17651
  multiple: boolean;
@@ -17671,7 +17671,7 @@ declare const VChipGroup: {
17671
17671
  style: vue.StyleValue;
17672
17672
  disabled: boolean;
17673
17673
  tag: string;
17674
- mobile: boolean;
17674
+ mobile: boolean | null;
17675
17675
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17676
17676
  column: boolean;
17677
17677
  multiple: boolean;
@@ -17695,7 +17695,7 @@ declare const VChipGroup: {
17695
17695
  style: vue.StyleValue;
17696
17696
  disabled: boolean;
17697
17697
  tag: string;
17698
- mobile: boolean;
17698
+ mobile: boolean | null;
17699
17699
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17700
17700
  column: boolean;
17701
17701
  multiple: boolean;
@@ -17728,7 +17728,7 @@ declare const VChipGroup: {
17728
17728
  style: vue.StyleValue;
17729
17729
  disabled: boolean;
17730
17730
  tag: string;
17731
- mobile: boolean;
17731
+ mobile: boolean | null;
17732
17732
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17733
17733
  column: boolean;
17734
17734
  multiple: boolean;
@@ -17752,7 +17752,7 @@ declare const VChipGroup: {
17752
17752
  style: vue.StyleValue;
17753
17753
  disabled: boolean;
17754
17754
  tag: string;
17755
- mobile: boolean;
17755
+ mobile: boolean | null;
17756
17756
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17757
17757
  column: boolean;
17758
17758
  multiple: boolean;
@@ -17772,7 +17772,7 @@ declare const VChipGroup: {
17772
17772
  style: vue.StyleValue;
17773
17773
  disabled: boolean;
17774
17774
  tag: string;
17775
- mobile: boolean;
17775
+ mobile: boolean | null;
17776
17776
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17777
17777
  column: boolean;
17778
17778
  multiple: boolean;
@@ -17798,7 +17798,7 @@ declare const VChipGroup: {
17798
17798
  style: vue.StyleValue;
17799
17799
  disabled: boolean;
17800
17800
  tag: string;
17801
- mobile: boolean;
17801
+ mobile: boolean | null;
17802
17802
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17803
17803
  column: boolean;
17804
17804
  multiple: boolean;
@@ -17857,8 +17857,8 @@ declare const VChipGroup: {
17857
17857
  default: null;
17858
17858
  };
17859
17859
  mobile: {
17860
- type: BooleanConstructor;
17861
- default: null;
17860
+ type: PropType<boolean | null>;
17861
+ default: boolean;
17862
17862
  };
17863
17863
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
17864
17864
  centerActive: BooleanConstructor;
@@ -17921,8 +17921,8 @@ declare const VChipGroup: {
17921
17921
  default: null;
17922
17922
  };
17923
17923
  mobile: {
17924
- type: BooleanConstructor;
17925
- default: null;
17924
+ type: PropType<boolean | null>;
17925
+ default: boolean;
17926
17926
  };
17927
17927
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
17928
17928
  centerActive: BooleanConstructor;
@@ -23768,7 +23768,7 @@ type VDataTableHeadersSlots = {
23768
23768
  };
23769
23769
  declare const VDataTableHeaders: {
23770
23770
  new (...args: any[]): vue.CreateComponentPublicInstance<{
23771
- mobile: boolean;
23771
+ mobile: boolean | null;
23772
23772
  sticky: boolean;
23773
23773
  multiSort: boolean;
23774
23774
  sortAscIcon: IconValue;
@@ -23800,7 +23800,7 @@ declare const VDataTableHeaders: {
23800
23800
  "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23801
23801
  "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23802
23802
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
23803
- mobile: boolean;
23803
+ mobile: boolean | null;
23804
23804
  sticky: boolean;
23805
23805
  multiSort: boolean;
23806
23806
  sortAscIcon: IconValue;
@@ -23832,7 +23832,7 @@ declare const VDataTableHeaders: {
23832
23832
  "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23833
23833
  "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23834
23834
  }, {
23835
- mobile: boolean;
23835
+ mobile: boolean | null;
23836
23836
  sticky: boolean;
23837
23837
  multiSort: boolean;
23838
23838
  sortAscIcon: IconValue;
@@ -23861,7 +23861,7 @@ declare const VDataTableHeaders: {
23861
23861
  M: {};
23862
23862
  Defaults: {};
23863
23863
  }, {
23864
- mobile: boolean;
23864
+ mobile: boolean | null;
23865
23865
  sticky: boolean;
23866
23866
  multiSort: boolean;
23867
23867
  sortAscIcon: IconValue;
@@ -23893,7 +23893,7 @@ declare const VDataTableHeaders: {
23893
23893
  "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23894
23894
  "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23895
23895
  }, {}, {}, {}, {}, {
23896
- mobile: boolean;
23896
+ mobile: boolean | null;
23897
23897
  sticky: boolean;
23898
23898
  multiSort: boolean;
23899
23899
  sortAscIcon: IconValue;
@@ -23903,7 +23903,7 @@ declare const VDataTableHeaders: {
23903
23903
  __isTeleport?: undefined;
23904
23904
  __isSuspense?: undefined;
23905
23905
  } & vue.ComponentOptionsBase<{
23906
- mobile: boolean;
23906
+ mobile: boolean | null;
23907
23907
  sticky: boolean;
23908
23908
  multiSort: boolean;
23909
23909
  sortAscIcon: IconValue;
@@ -23935,7 +23935,7 @@ declare const VDataTableHeaders: {
23935
23935
  "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23936
23936
  "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23937
23937
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
23938
- mobile: boolean;
23938
+ mobile: boolean | null;
23939
23939
  sticky: boolean;
23940
23940
  multiSort: boolean;
23941
23941
  sortAscIcon: IconValue;
@@ -23959,8 +23959,8 @@ declare const VDataTableHeaders: {
23959
23959
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
23960
23960
  loading: (StringConstructor | BooleanConstructor)[];
23961
23961
  mobile: {
23962
- type: BooleanConstructor;
23963
- default: null;
23962
+ type: PropType<boolean | null>;
23963
+ default: boolean;
23964
23964
  };
23965
23965
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
23966
23966
  color: StringConstructor;
@@ -23980,8 +23980,8 @@ declare const VDataTableHeaders: {
23980
23980
  }, vue.ExtractPropTypes<{
23981
23981
  loading: (StringConstructor | BooleanConstructor)[];
23982
23982
  mobile: {
23983
- type: BooleanConstructor;
23984
- default: null;
23983
+ type: PropType<boolean | null>;
23984
+ default: boolean;
23985
23985
  };
23986
23986
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
23987
23987
  color: StringConstructor;
@@ -24023,7 +24023,7 @@ type VDataTableRowSlots<T> = {
24023
24023
  };
24024
24024
  declare const VDataTableRow: {
24025
24025
  new (...args: any[]): vue.CreateComponentPublicInstance<{
24026
- mobile: boolean;
24026
+ mobile: boolean | null;
24027
24027
  } & {
24028
24028
  onClick?: ((args_0: MouseEvent) => void) | undefined;
24029
24029
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -24031,7 +24031,7 @@ declare const VDataTableRow: {
24031
24031
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
24032
24032
  index?: number | undefined;
24033
24033
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "item" | "cellProps" | `v-slot:header.${string}` | `v-slot:item.${string}`>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
24034
- mobile: boolean;
24034
+ mobile: boolean | null;
24035
24035
  } & {
24036
24036
  onClick?: ((args_0: MouseEvent) => void) | undefined;
24037
24037
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -24039,7 +24039,7 @@ declare const VDataTableRow: {
24039
24039
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
24040
24040
  index?: number | undefined;
24041
24041
  }, {
24042
- mobile: boolean;
24042
+ mobile: boolean | null;
24043
24043
  }, true, {}, vue.SlotsType<Partial<{
24044
24044
  [x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
24045
24045
  [key: string]: any;
@@ -24067,7 +24067,7 @@ declare const VDataTableRow: {
24067
24067
  M: {};
24068
24068
  Defaults: {};
24069
24069
  }, {
24070
- mobile: boolean;
24070
+ mobile: boolean | null;
24071
24071
  } & {
24072
24072
  onClick?: ((args_0: MouseEvent) => void) | undefined;
24073
24073
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -24075,13 +24075,13 @@ declare const VDataTableRow: {
24075
24075
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
24076
24076
  index?: number | undefined;
24077
24077
  }, {}, {}, {}, {}, {
24078
- mobile: boolean;
24078
+ mobile: boolean | null;
24079
24079
  }>;
24080
24080
  __isFragment?: undefined;
24081
24081
  __isTeleport?: undefined;
24082
24082
  __isSuspense?: undefined;
24083
24083
  } & vue.ComponentOptionsBase<{
24084
- mobile: boolean;
24084
+ mobile: boolean | null;
24085
24085
  } & {
24086
24086
  onClick?: ((args_0: MouseEvent) => void) | undefined;
24087
24087
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -24089,7 +24089,7 @@ declare const VDataTableRow: {
24089
24089
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
24090
24090
  index?: number | undefined;
24091
24091
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "item" | "cellProps" | `v-slot:header.${string}` | `v-slot:item.${string}`>, string, {
24092
- mobile: boolean;
24092
+ mobile: boolean | null;
24093
24093
  }, {}, string, vue.SlotsType<Partial<{
24094
24094
  [x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
24095
24095
  [key: string]: any;
@@ -24117,8 +24117,8 @@ declare const VDataTableRow: {
24117
24117
  cellProps?: CellProps<T> | undefined;
24118
24118
  }, VDataTableRowSlots<T>>) & FilterPropsOptions<{
24119
24119
  mobile: {
24120
- type: BooleanConstructor;
24121
- default: null;
24120
+ type: PropType<boolean | null>;
24121
+ default: boolean;
24122
24122
  };
24123
24123
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
24124
24124
  index: NumberConstructor;
@@ -24129,8 +24129,8 @@ declare const VDataTableRow: {
24129
24129
  onDblclick: PropType<(args_0: MouseEvent) => void>;
24130
24130
  }, vue.ExtractPropTypes<{
24131
24131
  mobile: {
24132
- type: BooleanConstructor;
24133
- default: null;
24132
+ type: PropType<boolean | null>;
24133
+ default: boolean;
24134
24134
  };
24135
24135
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
24136
24136
  index: NumberConstructor;
@@ -24155,7 +24155,7 @@ declare const VDataTableRows: {
24155
24155
  new (...args: any[]): vue.CreateComponentPublicInstance<{
24156
24156
  noDataText: string;
24157
24157
  loadingText: string;
24158
- mobile: boolean;
24158
+ mobile: boolean | null;
24159
24159
  hideNoData: boolean;
24160
24160
  } & {
24161
24161
  loading?: string | boolean | undefined;
@@ -24165,7 +24165,7 @@ declare const VDataTableRows: {
24165
24165
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
24166
24166
  noDataText: string;
24167
24167
  loadingText: string;
24168
- mobile: boolean;
24168
+ mobile: boolean | null;
24169
24169
  hideNoData: boolean;
24170
24170
  } & {
24171
24171
  loading?: string | boolean | undefined;
@@ -24175,7 +24175,7 @@ declare const VDataTableRows: {
24175
24175
  }, {
24176
24176
  noDataText: string;
24177
24177
  loadingText: string;
24178
- mobile: boolean;
24178
+ mobile: boolean | null;
24179
24179
  hideNoData: boolean;
24180
24180
  }, true, {}, vue.SlotsType<Partial<{
24181
24181
  [x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -24245,7 +24245,7 @@ declare const VDataTableRows: {
24245
24245
  }, {
24246
24246
  noDataText: string;
24247
24247
  loadingText: string;
24248
- mobile: boolean;
24248
+ mobile: boolean | null;
24249
24249
  hideNoData: boolean;
24250
24250
  } & {
24251
24251
  loading?: string | boolean | undefined;
@@ -24255,7 +24255,7 @@ declare const VDataTableRows: {
24255
24255
  }, {}, {}, {}, {}, {
24256
24256
  noDataText: string;
24257
24257
  loadingText: string;
24258
- mobile: boolean;
24258
+ mobile: boolean | null;
24259
24259
  hideNoData: boolean;
24260
24260
  }>;
24261
24261
  __isFragment?: undefined;
@@ -24264,7 +24264,7 @@ declare const VDataTableRows: {
24264
24264
  } & vue.ComponentOptionsBase<{
24265
24265
  noDataText: string;
24266
24266
  loadingText: string;
24267
- mobile: boolean;
24267
+ mobile: boolean | null;
24268
24268
  hideNoData: boolean;
24269
24269
  } & {
24270
24270
  loading?: string | boolean | undefined;
@@ -24274,7 +24274,7 @@ declare const VDataTableRows: {
24274
24274
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "items" | "v-slot:item" | "v-slot:no-data" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row">, string, {
24275
24275
  noDataText: string;
24276
24276
  loadingText: string;
24277
- mobile: boolean;
24277
+ mobile: boolean | null;
24278
24278
  hideNoData: boolean;
24279
24279
  }, {}, string, vue.SlotsType<Partial<{
24280
24280
  [x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -24340,8 +24340,8 @@ declare const VDataTableRows: {
24340
24340
  items?: readonly (DataTableItem<T> | Group<T>)[] | undefined;
24341
24341
  }, VDataTableRowsSlots<T>>) & FilterPropsOptions<{
24342
24342
  mobile: {
24343
- type: BooleanConstructor;
24344
- default: null;
24343
+ type: PropType<boolean | null>;
24344
+ default: boolean;
24345
24345
  };
24346
24346
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
24347
24347
  loading: (StringConstructor | BooleanConstructor)[];
@@ -24362,8 +24362,8 @@ declare const VDataTableRows: {
24362
24362
  cellProps: PropType<CellProps<any>>;
24363
24363
  }, vue.ExtractPropTypes<{
24364
24364
  mobile: {
24365
- type: BooleanConstructor;
24366
- default: null;
24365
+ type: PropType<boolean | null>;
24366
+ default: boolean;
24367
24367
  };
24368
24368
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
24369
24369
  loading: (StringConstructor | BooleanConstructor)[];
@@ -24432,7 +24432,7 @@ declare const VDataTable: {
24432
24432
  sortBy: readonly SortItem[];
24433
24433
  pageText: string;
24434
24434
  page: string | number;
24435
- mobile: boolean;
24435
+ mobile: boolean | null;
24436
24436
  sticky: boolean;
24437
24437
  expanded: readonly string[];
24438
24438
  density: Density;
@@ -24507,7 +24507,7 @@ declare const VDataTable: {
24507
24507
  sortBy: readonly SortItem[];
24508
24508
  pageText: string;
24509
24509
  page: string | number;
24510
- mobile: boolean;
24510
+ mobile: boolean | null;
24511
24511
  sticky: boolean;
24512
24512
  expanded: readonly string[];
24513
24513
  density: Density;
@@ -24573,7 +24573,7 @@ declare const VDataTable: {
24573
24573
  sortBy: readonly SortItem[];
24574
24574
  pageText: string;
24575
24575
  page: string | number;
24576
- mobile: boolean;
24576
+ mobile: boolean | null;
24577
24577
  sticky: boolean;
24578
24578
  expanded: readonly string[];
24579
24579
  density: Density;
@@ -24721,7 +24721,7 @@ declare const VDataTable: {
24721
24721
  sortBy: readonly SortItem[];
24722
24722
  pageText: string;
24723
24723
  page: string | number;
24724
- mobile: boolean;
24724
+ mobile: boolean | null;
24725
24725
  sticky: boolean;
24726
24726
  expanded: readonly string[];
24727
24727
  density: Density;
@@ -24787,7 +24787,7 @@ declare const VDataTable: {
24787
24787
  sortBy: readonly SortItem[];
24788
24788
  pageText: string;
24789
24789
  page: string | number;
24790
- mobile: boolean;
24790
+ mobile: boolean | null;
24791
24791
  sticky: boolean;
24792
24792
  expanded: readonly string[];
24793
24793
  density: Density;
@@ -24835,7 +24835,7 @@ declare const VDataTable: {
24835
24835
  sortBy: readonly SortItem[];
24836
24836
  pageText: string;
24837
24837
  page: string | number;
24838
- mobile: boolean;
24838
+ mobile: boolean | null;
24839
24839
  sticky: boolean;
24840
24840
  expanded: readonly string[];
24841
24841
  density: Density;
@@ -24910,7 +24910,7 @@ declare const VDataTable: {
24910
24910
  sortBy: readonly SortItem[];
24911
24911
  pageText: string;
24912
24912
  page: string | number;
24913
- mobile: boolean;
24913
+ mobile: boolean | null;
24914
24914
  sticky: boolean;
24915
24915
  expanded: readonly string[];
24916
24916
  density: Density;
@@ -25185,8 +25185,8 @@ declare const VDataTable: {
25185
25185
  hover: BooleanConstructor;
25186
25186
  loading: (StringConstructor | BooleanConstructor)[];
25187
25187
  mobile: {
25188
- type: BooleanConstructor;
25189
- default: null;
25188
+ type: vue.PropType<boolean | null>;
25189
+ default: boolean;
25190
25190
  };
25191
25191
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
25192
25192
  color: StringConstructor;
@@ -25392,8 +25392,8 @@ declare const VDataTable: {
25392
25392
  hover: BooleanConstructor;
25393
25393
  loading: (StringConstructor | BooleanConstructor)[];
25394
25394
  mobile: {
25395
- type: BooleanConstructor;
25396
- default: null;
25395
+ type: vue.PropType<boolean | null>;
25396
+ default: boolean;
25397
25397
  };
25398
25398
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
25399
25399
  color: StringConstructor;
@@ -25815,7 +25815,7 @@ declare const VDataTableVirtual: {
25815
25815
  noDataText: string;
25816
25816
  loadingText: string;
25817
25817
  sortBy: readonly SortItem[];
25818
- mobile: boolean;
25818
+ mobile: boolean | null;
25819
25819
  sticky: boolean;
25820
25820
  expanded: readonly string[];
25821
25821
  density: Density;
@@ -25913,7 +25913,7 @@ declare const VDataTableVirtual: {
25913
25913
  noDataText: string;
25914
25914
  loadingText: string;
25915
25915
  sortBy: readonly SortItem[];
25916
- mobile: boolean;
25916
+ mobile: boolean | null;
25917
25917
  sticky: boolean;
25918
25918
  expanded: readonly string[];
25919
25919
  density: Density;
@@ -26005,7 +26005,7 @@ declare const VDataTableVirtual: {
26005
26005
  noDataText: string;
26006
26006
  loadingText: string;
26007
26007
  sortBy: readonly SortItem[];
26008
- mobile: boolean;
26008
+ mobile: boolean | null;
26009
26009
  sticky: boolean;
26010
26010
  expanded: readonly string[];
26011
26011
  density: Density;
@@ -26121,7 +26121,7 @@ declare const VDataTableVirtual: {
26121
26121
  noDataText: string;
26122
26122
  loadingText: string;
26123
26123
  sortBy: readonly SortItem[];
26124
- mobile: boolean;
26124
+ mobile: boolean | null;
26125
26125
  sticky: boolean;
26126
26126
  expanded: readonly string[];
26127
26127
  density: Density;
@@ -26213,7 +26213,7 @@ declare const VDataTableVirtual: {
26213
26213
  noDataText: string;
26214
26214
  loadingText: string;
26215
26215
  sortBy: readonly SortItem[];
26216
- mobile: boolean;
26216
+ mobile: boolean | null;
26217
26217
  sticky: boolean;
26218
26218
  expanded: readonly string[];
26219
26219
  density: Density;
@@ -26245,7 +26245,7 @@ declare const VDataTableVirtual: {
26245
26245
  noDataText: string;
26246
26246
  loadingText: string;
26247
26247
  sortBy: readonly SortItem[];
26248
- mobile: boolean;
26248
+ mobile: boolean | null;
26249
26249
  sticky: boolean;
26250
26250
  expanded: readonly string[];
26251
26251
  density: Density;
@@ -26343,7 +26343,7 @@ declare const VDataTableVirtual: {
26343
26343
  noDataText: string;
26344
26344
  loadingText: string;
26345
26345
  sortBy: readonly SortItem[];
26346
- mobile: boolean;
26346
+ mobile: boolean | null;
26347
26347
  sticky: boolean;
26348
26348
  expanded: readonly string[];
26349
26349
  density: Density;
@@ -26500,8 +26500,8 @@ declare const VDataTableVirtual: {
26500
26500
  hover: BooleanConstructor;
26501
26501
  loading: (StringConstructor | BooleanConstructor)[];
26502
26502
  mobile: {
26503
- type: BooleanConstructor;
26504
- default: null;
26503
+ type: vue.PropType<boolean | null>;
26504
+ default: boolean;
26505
26505
  };
26506
26506
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
26507
26507
  color: StringConstructor;
@@ -26652,8 +26652,8 @@ declare const VDataTableVirtual: {
26652
26652
  hover: BooleanConstructor;
26653
26653
  loading: (StringConstructor | BooleanConstructor)[];
26654
26654
  mobile: {
26655
- type: BooleanConstructor;
26656
- default: null;
26655
+ type: vue.PropType<boolean | null>;
26656
+ default: boolean;
26657
26657
  };
26658
26658
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
26659
26659
  color: StringConstructor;
@@ -26780,7 +26780,7 @@ declare const VDataTableServer: {
26780
26780
  sortBy: readonly SortItem[];
26781
26781
  pageText: string;
26782
26782
  page: string | number;
26783
- mobile: boolean;
26783
+ mobile: boolean | null;
26784
26784
  sticky: boolean;
26785
26785
  expanded: readonly string[];
26786
26786
  density: Density;
@@ -26894,7 +26894,7 @@ declare const VDataTableServer: {
26894
26894
  sortBy: readonly SortItem[];
26895
26895
  pageText: string;
26896
26896
  page: string | number;
26897
- mobile: boolean;
26897
+ mobile: boolean | null;
26898
26898
  sticky: boolean;
26899
26899
  expanded: readonly string[];
26900
26900
  density: Density;
@@ -27000,7 +27000,7 @@ declare const VDataTableServer: {
27000
27000
  sortBy: readonly SortItem[];
27001
27001
  pageText: string;
27002
27002
  page: string | number;
27003
- mobile: boolean;
27003
+ mobile: boolean | null;
27004
27004
  sticky: boolean;
27005
27005
  expanded: readonly string[];
27006
27006
  density: Density;
@@ -27146,7 +27146,7 @@ declare const VDataTableServer: {
27146
27146
  sortBy: readonly SortItem[];
27147
27147
  pageText: string;
27148
27148
  page: string | number;
27149
- mobile: boolean;
27149
+ mobile: boolean | null;
27150
27150
  sticky: boolean;
27151
27151
  expanded: readonly string[];
27152
27152
  density: Density;
@@ -27252,7 +27252,7 @@ declare const VDataTableServer: {
27252
27252
  sortBy: readonly SortItem[];
27253
27253
  pageText: string;
27254
27254
  page: string | number;
27255
- mobile: boolean;
27255
+ mobile: boolean | null;
27256
27256
  sticky: boolean;
27257
27257
  expanded: readonly string[];
27258
27258
  density: Density;
@@ -27298,7 +27298,7 @@ declare const VDataTableServer: {
27298
27298
  sortBy: readonly SortItem[];
27299
27299
  pageText: string;
27300
27300
  page: string | number;
27301
- mobile: boolean;
27301
+ mobile: boolean | null;
27302
27302
  sticky: boolean;
27303
27303
  expanded: readonly string[];
27304
27304
  density: Density;
@@ -27412,7 +27412,7 @@ declare const VDataTableServer: {
27412
27412
  sortBy: readonly SortItem[];
27413
27413
  pageText: string;
27414
27414
  page: string | number;
27415
- mobile: boolean;
27415
+ mobile: boolean | null;
27416
27416
  sticky: boolean;
27417
27417
  expanded: readonly string[];
27418
27418
  density: Density;
@@ -27631,8 +27631,8 @@ declare const VDataTableServer: {
27631
27631
  hover: BooleanConstructor;
27632
27632
  loading: (StringConstructor | BooleanConstructor)[];
27633
27633
  mobile: {
27634
- type: BooleanConstructor;
27635
- default: null;
27634
+ type: vue.PropType<boolean | null>;
27635
+ default: boolean;
27636
27636
  };
27637
27637
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
27638
27638
  color: StringConstructor;
@@ -27834,8 +27834,8 @@ declare const VDataTableServer: {
27834
27834
  hover: BooleanConstructor;
27835
27835
  loading: (StringConstructor | BooleanConstructor)[];
27836
27836
  mobile: {
27837
- type: BooleanConstructor;
27838
- default: null;
27837
+ type: vue.PropType<boolean | null>;
27838
+ default: boolean;
27839
27839
  };
27840
27840
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
27841
27841
  color: StringConstructor;
@@ -43839,7 +43839,7 @@ declare const VNavigationDrawer: {
43839
43839
  style: vue.StyleValue;
43840
43840
  width: string | number;
43841
43841
  tag: string;
43842
- mobile: boolean;
43842
+ mobile: NonNullable<boolean | null> | null;
43843
43843
  order: string | number;
43844
43844
  absolute: boolean;
43845
43845
  sticky: boolean;
@@ -43899,7 +43899,7 @@ declare const VNavigationDrawer: {
43899
43899
  style: vue.StyleValue;
43900
43900
  width: string | number;
43901
43901
  tag: string;
43902
- mobile: boolean;
43902
+ mobile: NonNullable<boolean | null> | null;
43903
43903
  order: string | number;
43904
43904
  absolute: boolean;
43905
43905
  sticky: boolean;
@@ -43954,7 +43954,7 @@ declare const VNavigationDrawer: {
43954
43954
  style: vue.StyleValue;
43955
43955
  width: string | number;
43956
43956
  tag: string;
43957
- mobile: boolean;
43957
+ mobile: NonNullable<boolean | null> | null;
43958
43958
  order: string | number;
43959
43959
  absolute: boolean;
43960
43960
  sticky: boolean;
@@ -43997,7 +43997,7 @@ declare const VNavigationDrawer: {
43997
43997
  style: vue.StyleValue;
43998
43998
  width: string | number;
43999
43999
  tag: string;
44000
- mobile: boolean;
44000
+ mobile: NonNullable<boolean | null> | null;
44001
44001
  order: string | number;
44002
44002
  absolute: boolean;
44003
44003
  sticky: boolean;
@@ -44054,7 +44054,7 @@ declare const VNavigationDrawer: {
44054
44054
  style: vue.StyleValue;
44055
44055
  width: string | number;
44056
44056
  tag: string;
44057
- mobile: boolean;
44057
+ mobile: NonNullable<boolean | null> | null;
44058
44058
  order: string | number;
44059
44059
  absolute: boolean;
44060
44060
  sticky: boolean;
@@ -44081,7 +44081,7 @@ declare const VNavigationDrawer: {
44081
44081
  style: vue.StyleValue;
44082
44082
  width: string | number;
44083
44083
  tag: string;
44084
- mobile: boolean;
44084
+ mobile: NonNullable<boolean | null> | null;
44085
44085
  order: string | number;
44086
44086
  absolute: boolean;
44087
44087
  sticky: boolean;
@@ -44141,7 +44141,7 @@ declare const VNavigationDrawer: {
44141
44141
  style: vue.StyleValue;
44142
44142
  width: string | number;
44143
44143
  tag: string;
44144
- mobile: boolean;
44144
+ mobile: NonNullable<boolean | null> | null;
44145
44145
  order: string | number;
44146
44146
  absolute: boolean;
44147
44147
  sticky: boolean;
@@ -44199,9 +44199,12 @@ declare const VNavigationDrawer: {
44199
44199
  type: (StringConstructor | NumberConstructor)[];
44200
44200
  validator(v: any): boolean;
44201
44201
  };
44202
- mobile: {
44203
- type: BooleanConstructor;
44204
- default: null;
44202
+ mobile: Omit<{
44203
+ type: PropType<boolean | null>;
44204
+ default: boolean;
44205
+ }, "default" | "type"> & {
44206
+ type: PropType<NonNullable<boolean | null> | null>;
44207
+ default: NonNullable<boolean | null> | null;
44205
44208
  };
44206
44209
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
44207
44210
  closeDelay: (StringConstructor | NumberConstructor)[];
@@ -44274,9 +44277,12 @@ declare const VNavigationDrawer: {
44274
44277
  type: (StringConstructor | NumberConstructor)[];
44275
44278
  validator(v: any): boolean;
44276
44279
  };
44277
- mobile: {
44278
- type: BooleanConstructor;
44279
- default: null;
44280
+ mobile: Omit<{
44281
+ type: PropType<boolean | null>;
44282
+ default: boolean;
44283
+ }, "default" | "type"> & {
44284
+ type: PropType<NonNullable<boolean | null> | null>;
44285
+ default: NonNullable<boolean | null> | null;
44280
44286
  };
44281
44287
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
44282
44288
  closeDelay: (StringConstructor | NumberConstructor)[];
@@ -53490,7 +53496,7 @@ declare const VSlideGroup: {
53490
53496
  style: vue.StyleValue;
53491
53497
  disabled: boolean;
53492
53498
  tag: string;
53493
- mobile: boolean;
53499
+ mobile: boolean | null;
53494
53500
  multiple: boolean;
53495
53501
  direction: "horizontal" | "vertical";
53496
53502
  selectedClass: string;
@@ -53515,7 +53521,7 @@ declare const VSlideGroup: {
53515
53521
  style: vue.StyleValue;
53516
53522
  disabled: boolean;
53517
53523
  tag: string;
53518
- mobile: boolean;
53524
+ mobile: boolean | null;
53519
53525
  multiple: boolean;
53520
53526
  direction: "horizontal" | "vertical";
53521
53527
  selectedClass: string;
@@ -53533,7 +53539,7 @@ declare const VSlideGroup: {
53533
53539
  style: vue.StyleValue;
53534
53540
  disabled: boolean;
53535
53541
  tag: string;
53536
- mobile: boolean;
53542
+ mobile: boolean | null;
53537
53543
  multiple: boolean;
53538
53544
  direction: "horizontal" | "vertical";
53539
53545
  selectedClass: string;
@@ -53562,7 +53568,7 @@ declare const VSlideGroup: {
53562
53568
  style: vue.StyleValue;
53563
53569
  disabled: boolean;
53564
53570
  tag: string;
53565
- mobile: boolean;
53571
+ mobile: boolean | null;
53566
53572
  multiple: boolean;
53567
53573
  direction: "horizontal" | "vertical";
53568
53574
  selectedClass: string;
@@ -53585,7 +53591,7 @@ declare const VSlideGroup: {
53585
53591
  style: vue.StyleValue;
53586
53592
  disabled: boolean;
53587
53593
  tag: string;
53588
- mobile: boolean;
53594
+ mobile: boolean | null;
53589
53595
  multiple: boolean;
53590
53596
  direction: "horizontal" | "vertical";
53591
53597
  selectedClass: string;
@@ -53601,7 +53607,7 @@ declare const VSlideGroup: {
53601
53607
  style: vue.StyleValue;
53602
53608
  disabled: boolean;
53603
53609
  tag: string;
53604
- mobile: boolean;
53610
+ mobile: boolean | null;
53605
53611
  multiple: boolean;
53606
53612
  direction: "horizontal" | "vertical";
53607
53613
  selectedClass: string;
@@ -53626,7 +53632,7 @@ declare const VSlideGroup: {
53626
53632
  style: vue.StyleValue;
53627
53633
  disabled: boolean;
53628
53634
  tag: string;
53629
- mobile: boolean;
53635
+ mobile: boolean | null;
53630
53636
  multiple: boolean;
53631
53637
  direction: "horizontal" | "vertical";
53632
53638
  selectedClass: string;
@@ -53667,8 +53673,8 @@ declare const VSlideGroup: {
53667
53673
  default: string;
53668
53674
  };
53669
53675
  mobile: {
53670
- type: BooleanConstructor;
53671
- default: null;
53676
+ type: PropType<boolean | null>;
53677
+ default: boolean;
53672
53678
  };
53673
53679
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
53674
53680
  class: PropType<any>;
@@ -53715,8 +53721,8 @@ declare const VSlideGroup: {
53715
53721
  default: string;
53716
53722
  };
53717
53723
  mobile: {
53718
- type: BooleanConstructor;
53719
- default: null;
53724
+ type: PropType<boolean | null>;
53725
+ default: boolean;
53720
53726
  };
53721
53727
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
53722
53728
  class: PropType<any>;
@@ -62163,7 +62169,7 @@ declare const VTabs: {
62163
62169
  style: vue.StyleValue;
62164
62170
  disabled: boolean;
62165
62171
  tag: string;
62166
- mobile: boolean;
62172
+ mobile: boolean | null;
62167
62173
  items: readonly TabItem[];
62168
62174
  mandatory: NonNullable<boolean | "force">;
62169
62175
  multiple: boolean;
@@ -62221,7 +62227,7 @@ declare const VTabs: {
62221
62227
  style: vue.StyleValue;
62222
62228
  disabled: boolean;
62223
62229
  tag: string;
62224
- mobile: boolean;
62230
+ mobile: boolean | null;
62225
62231
  items: readonly TabItem[];
62226
62232
  mandatory: NonNullable<boolean | "force">;
62227
62233
  multiple: boolean;
@@ -62278,7 +62284,7 @@ declare const VTabs: {
62278
62284
  height: string | number;
62279
62285
  disabled: boolean;
62280
62286
  tag: string;
62281
- mobile: boolean;
62287
+ mobile: boolean | null;
62282
62288
  modelValue: any;
62283
62289
  items: readonly TabItem[];
62284
62290
  mandatory: NonNullable<boolean | "force">;
@@ -62325,7 +62331,7 @@ declare const VTabs: {
62325
62331
  style: vue.StyleValue;
62326
62332
  disabled: boolean;
62327
62333
  tag: string;
62328
- mobile: boolean;
62334
+ mobile: boolean | null;
62329
62335
  items: readonly TabItem[];
62330
62336
  mandatory: NonNullable<boolean | "force">;
62331
62337
  multiple: boolean;
@@ -62382,7 +62388,7 @@ declare const VTabs: {
62382
62388
  height: string | number;
62383
62389
  disabled: boolean;
62384
62390
  tag: string;
62385
- mobile: boolean;
62391
+ mobile: boolean | null;
62386
62392
  modelValue: any;
62387
62393
  items: readonly TabItem[];
62388
62394
  mandatory: NonNullable<boolean | "force">;
@@ -62407,7 +62413,7 @@ declare const VTabs: {
62407
62413
  style: vue.StyleValue;
62408
62414
  disabled: boolean;
62409
62415
  tag: string;
62410
- mobile: boolean;
62416
+ mobile: boolean | null;
62411
62417
  items: readonly TabItem[];
62412
62418
  mandatory: NonNullable<boolean | "force">;
62413
62419
  multiple: boolean;
@@ -62466,7 +62472,7 @@ declare const VTabs: {
62466
62472
  height: string | number;
62467
62473
  disabled: boolean;
62468
62474
  tag: string;
62469
- mobile: boolean;
62475
+ mobile: boolean | null;
62470
62476
  modelValue: any;
62471
62477
  items: readonly TabItem[];
62472
62478
  mandatory: NonNullable<boolean | "force">;
@@ -62530,8 +62536,8 @@ declare const VTabs: {
62530
62536
  };
62531
62537
  disabled: BooleanConstructor;
62532
62538
  mobile: {
62533
- type: BooleanConstructor;
62534
- default: null;
62539
+ type: PropType<boolean | null>;
62540
+ default: boolean;
62535
62541
  };
62536
62542
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
62537
62543
  class: PropType<any>;
@@ -62608,8 +62614,8 @@ declare const VTabs: {
62608
62614
  };
62609
62615
  disabled: BooleanConstructor;
62610
62616
  mobile: {
62611
- type: BooleanConstructor;
62612
- default: null;
62617
+ type: PropType<boolean | null>;
62618
+ default: boolean;
62613
62619
  };
62614
62620
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
62615
62621
  class: PropType<any>;
@@ -73365,49 +73371,48 @@ declare module '@vue/runtime-core' {
73365
73371
  }
73366
73372
 
73367
73373
  export interface GlobalComponents {
73368
- VAlert: typeof import('vuetify/components')['VAlert']
73369
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73374
+ VApp: typeof import('vuetify/components')['VApp']
73370
73375
  VAppBar: typeof import('vuetify/components')['VAppBar']
73371
73376
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
73372
73377
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
73373
- VBanner: typeof import('vuetify/components')['VBanner']
73374
- VBannerActions: typeof import('vuetify/components')['VBannerActions']
73375
- VBannerText: typeof import('vuetify/components')['VBannerText']
73376
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
73377
73378
  VAvatar: typeof import('vuetify/components')['VAvatar']
73378
- VApp: typeof import('vuetify/components')['VApp']
73379
+ VAlert: typeof import('vuetify/components')['VAlert']
73380
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73381
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
73379
73382
  VBadge: typeof import('vuetify/components')['VBadge']
73380
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
73381
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
73382
73383
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
73383
73384
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
73384
73385
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
73385
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
73386
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
73387
- VBtn: typeof import('vuetify/components')['VBtn']
73386
+ VBanner: typeof import('vuetify/components')['VBanner']
73387
+ VBannerActions: typeof import('vuetify/components')['VBannerActions']
73388
+ VBannerText: typeof import('vuetify/components')['VBannerText']
73389
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
73390
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
73388
73391
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
73392
+ VBtn: typeof import('vuetify/components')['VBtn']
73389
73393
  VChip: typeof import('vuetify/components')['VChip']
73390
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73391
- VCarousel: typeof import('vuetify/components')['VCarousel']
73392
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
73393
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
73394
73394
  VCard: typeof import('vuetify/components')['VCard']
73395
73395
  VCardActions: typeof import('vuetify/components')['VCardActions']
73396
73396
  VCardItem: typeof import('vuetify/components')['VCardItem']
73397
73397
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
73398
73398
  VCardText: typeof import('vuetify/components')['VCardText']
73399
73399
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
73400
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
73401
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73402
+ VCarousel: typeof import('vuetify/components')['VCarousel']
73403
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
73400
73404
  VCode: typeof import('vuetify/components')['VCode']
73405
+ VCounter: typeof import('vuetify/components')['VCounter']
73401
73406
  VCombobox: typeof import('vuetify/components')['VCombobox']
73402
73407
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
73408
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
73409
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
73403
73410
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
73404
73411
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
73405
73412
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
73406
73413
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
73407
73414
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
73408
73415
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
73409
- VCounter: typeof import('vuetify/components')['VCounter']
73410
- VDialog: typeof import('vuetify/components')['VDialog']
73411
73416
  VDataTable: typeof import('vuetify/components')['VDataTable']
73412
73417
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
73413
73418
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -73417,27 +73422,26 @@ declare module '@vue/runtime-core' {
73417
73422
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
73418
73423
  VDivider: typeof import('vuetify/components')['VDivider']
73419
73424
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
73420
- VFileInput: typeof import('vuetify/components')['VFileInput']
73421
- VField: typeof import('vuetify/components')['VField']
73422
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
73425
+ VDialog: typeof import('vuetify/components')['VDialog']
73423
73426
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
73424
73427
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
73425
73428
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
73426
73429
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
73427
73430
  VFooter: typeof import('vuetify/components')['VFooter']
73428
73431
  VFab: typeof import('vuetify/components')['VFab']
73429
- VImg: typeof import('vuetify/components')['VImg']
73432
+ VField: typeof import('vuetify/components')['VField']
73433
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
73434
+ VFileInput: typeof import('vuetify/components')['VFileInput']
73430
73435
  VIcon: typeof import('vuetify/components')['VIcon']
73431
73436
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
73432
73437
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
73433
73438
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
73434
73439
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
73435
- VInput: typeof import('vuetify/components')['VInput']
73436
73440
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
73437
- VKbd: typeof import('vuetify/components')['VKbd']
73441
+ VInput: typeof import('vuetify/components')['VInput']
73442
+ VImg: typeof import('vuetify/components')['VImg']
73438
73443
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
73439
73444
  VItem: typeof import('vuetify/components')['VItem']
73440
- VMain: typeof import('vuetify/components')['VMain']
73441
73445
  VLabel: typeof import('vuetify/components')['VLabel']
73442
73446
  VList: typeof import('vuetify/components')['VList']
73443
73447
  VListGroup: typeof import('vuetify/components')['VListGroup']
@@ -73448,28 +73452,27 @@ declare module '@vue/runtime-core' {
73448
73452
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
73449
73453
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
73450
73454
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
73451
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
73452
- VMenu: typeof import('vuetify/components')['VMenu']
73455
+ VKbd: typeof import('vuetify/components')['VKbd']
73456
+ VMain: typeof import('vuetify/components')['VMain']
73453
73457
  VMessages: typeof import('vuetify/components')['VMessages']
73454
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
73455
- VOverlay: typeof import('vuetify/components')['VOverlay']
73456
- VPagination: typeof import('vuetify/components')['VPagination']
73458
+ VMenu: typeof import('vuetify/components')['VMenu']
73459
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
73457
73460
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
73458
73461
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
73462
+ VOverlay: typeof import('vuetify/components')['VOverlay']
73463
+ VPagination: typeof import('vuetify/components')['VPagination']
73459
73464
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
73460
73465
  VRating: typeof import('vuetify/components')['VRating']
73466
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
73461
73467
  VSelect: typeof import('vuetify/components')['VSelect']
73462
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73463
- VSheet: typeof import('vuetify/components')['VSheet']
73464
73468
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
73465
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
73466
- VSlider: typeof import('vuetify/components')['VSlider']
73467
- VTab: typeof import('vuetify/components')['VTab']
73468
- VTabs: typeof import('vuetify/components')['VTabs']
73469
- VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
73470
- VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
73469
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73471
73470
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
73472
73471
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
73472
+ VSheet: typeof import('vuetify/components')['VSheet']
73473
+ VSlider: typeof import('vuetify/components')['VSlider']
73474
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
73475
+ VSwitch: typeof import('vuetify/components')['VSwitch']
73473
73476
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
73474
73477
  VStepper: typeof import('vuetify/components')['VStepper']
73475
73478
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
@@ -73477,13 +73480,16 @@ declare module '@vue/runtime-core' {
73477
73480
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
73478
73481
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
73479
73482
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
73483
+ VTab: typeof import('vuetify/components')['VTab']
73484
+ VTabs: typeof import('vuetify/components')['VTabs']
73485
+ VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
73486
+ VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
73480
73487
  VTable: typeof import('vuetify/components')['VTable']
73481
- VSwitch: typeof import('vuetify/components')['VSwitch']
73482
- VTextarea: typeof import('vuetify/components')['VTextarea']
73483
73488
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
73484
- VTextField: typeof import('vuetify/components')['VTextField']
73489
+ VTextarea: typeof import('vuetify/components')['VTextarea']
73485
73490
  VTimeline: typeof import('vuetify/components')['VTimeline']
73486
73491
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
73492
+ VTextField: typeof import('vuetify/components')['VTextField']
73487
73493
  VToolbar: typeof import('vuetify/components')['VToolbar']
73488
73494
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
73489
73495
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
@@ -73497,8 +73503,8 @@ declare module '@vue/runtime-core' {
73497
73503
  VCol: typeof import('vuetify/components')['VCol']
73498
73504
  VRow: typeof import('vuetify/components')['VRow']
73499
73505
  VSpacer: typeof import('vuetify/components')['VSpacer']
73500
- VForm: typeof import('vuetify/components')['VForm']
73501
73506
  VHover: typeof import('vuetify/components')['VHover']
73507
+ VForm: typeof import('vuetify/components')['VForm']
73502
73508
  VLayout: typeof import('vuetify/components')['VLayout']
73503
73509
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
73504
73510
  VLazy: typeof import('vuetify/components')['VLazy']
@@ -73508,10 +73514,9 @@ declare module '@vue/runtime-core' {
73508
73514
  VRadio: typeof import('vuetify/components')['VRadio']
73509
73515
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
73510
73516
  VResponsive: typeof import('vuetify/components')['VResponsive']
73511
- VSparkline: typeof import('vuetify/components')['VSparkline']
73512
73517
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
73518
+ VSparkline: typeof import('vuetify/components')['VSparkline']
73513
73519
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
73514
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
73515
73520
  VValidation: typeof import('vuetify/components')['VValidation']
73516
73521
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
73517
73522
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
@@ -73529,21 +73534,22 @@ declare module '@vue/runtime-core' {
73529
73534
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
73530
73535
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
73531
73536
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
73537
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
73532
73538
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
73533
73539
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
73534
73540
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
73535
73541
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
73536
73542
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
73537
73543
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
73538
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73539
- VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
73540
- VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
73541
- VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
73542
73544
  VPicker: typeof import('vuetify/labs/components')['VPicker']
73543
73545
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
73546
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73544
73547
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
73545
73548
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
73546
73549
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
73550
+ VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
73551
+ VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
73552
+ VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
73547
73553
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
73548
73554
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
73549
73555
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']