@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
@@ -9383,7 +9383,7 @@ declare const VBanner: {
9383
9383
  new (...args: any[]): vue.CreateComponentPublicInstance<{
9384
9384
  style: vue.StyleValue;
9385
9385
  tag: string;
9386
- mobile: boolean;
9386
+ mobile: boolean | null;
9387
9387
  sticky: boolean;
9388
9388
  tile: boolean;
9389
9389
  density: Density;
@@ -9430,7 +9430,7 @@ declare const VBanner: {
9430
9430
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
9431
9431
  style: vue.StyleValue;
9432
9432
  tag: string;
9433
- mobile: boolean;
9433
+ mobile: boolean | null;
9434
9434
  sticky: boolean;
9435
9435
  tile: boolean;
9436
9436
  density: Density;
@@ -9477,7 +9477,7 @@ declare const VBanner: {
9477
9477
  }, {
9478
9478
  style: vue.StyleValue;
9479
9479
  tag: string;
9480
- mobile: boolean;
9480
+ mobile: boolean | null;
9481
9481
  sticky: boolean;
9482
9482
  rounded: string | number | boolean;
9483
9483
  tile: boolean;
@@ -9506,7 +9506,7 @@ declare const VBanner: {
9506
9506
  }, {
9507
9507
  style: vue.StyleValue;
9508
9508
  tag: string;
9509
- mobile: boolean;
9509
+ mobile: boolean | null;
9510
9510
  sticky: boolean;
9511
9511
  tile: boolean;
9512
9512
  density: Density;
@@ -9553,7 +9553,7 @@ declare const VBanner: {
9553
9553
  }, {}, {}, {}, {}, {
9554
9554
  style: vue.StyleValue;
9555
9555
  tag: string;
9556
- mobile: boolean;
9556
+ mobile: boolean | null;
9557
9557
  sticky: boolean;
9558
9558
  rounded: string | number | boolean;
9559
9559
  tile: boolean;
@@ -9566,7 +9566,7 @@ declare const VBanner: {
9566
9566
  } & vue.ComponentOptionsBase<{
9567
9567
  style: vue.StyleValue;
9568
9568
  tag: string;
9569
- mobile: boolean;
9569
+ mobile: boolean | null;
9570
9570
  sticky: boolean;
9571
9571
  tile: boolean;
9572
9572
  density: Density;
@@ -9613,7 +9613,7 @@ declare const VBanner: {
9613
9613
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
9614
9614
  style: vue.StyleValue;
9615
9615
  tag: string;
9616
- mobile: boolean;
9616
+ mobile: boolean | null;
9617
9617
  sticky: boolean;
9618
9618
  rounded: string | number | boolean;
9619
9619
  tile: boolean;
@@ -9653,8 +9653,8 @@ declare const VBanner: {
9653
9653
  validator(v: any): boolean;
9654
9654
  };
9655
9655
  mobile: {
9656
- type: BooleanConstructor;
9657
- default: null;
9656
+ type: PropType<boolean | null>;
9657
+ default: boolean;
9658
9658
  };
9659
9659
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
9660
9660
  height: (StringConstructor | NumberConstructor)[];
@@ -9703,8 +9703,8 @@ declare const VBanner: {
9703
9703
  validator(v: any): boolean;
9704
9704
  };
9705
9705
  mobile: {
9706
- type: BooleanConstructor;
9707
- default: null;
9706
+ type: PropType<boolean | null>;
9707
+ default: boolean;
9708
9708
  };
9709
9709
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
9710
9710
  height: (StringConstructor | NumberConstructor)[];
@@ -17630,7 +17630,7 @@ declare const VChipGroup: {
17630
17630
  style: vue.StyleValue;
17631
17631
  disabled: boolean;
17632
17632
  tag: string;
17633
- mobile: boolean;
17633
+ mobile: boolean | null;
17634
17634
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17635
17635
  column: boolean;
17636
17636
  multiple: boolean;
@@ -17656,7 +17656,7 @@ declare const VChipGroup: {
17656
17656
  style: vue.StyleValue;
17657
17657
  disabled: boolean;
17658
17658
  tag: string;
17659
- mobile: boolean;
17659
+ mobile: boolean | null;
17660
17660
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17661
17661
  column: boolean;
17662
17662
  multiple: boolean;
@@ -17680,7 +17680,7 @@ declare const VChipGroup: {
17680
17680
  style: vue.StyleValue;
17681
17681
  disabled: boolean;
17682
17682
  tag: string;
17683
- mobile: boolean;
17683
+ mobile: boolean | null;
17684
17684
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17685
17685
  column: boolean;
17686
17686
  multiple: boolean;
@@ -17713,7 +17713,7 @@ declare const VChipGroup: {
17713
17713
  style: vue.StyleValue;
17714
17714
  disabled: boolean;
17715
17715
  tag: string;
17716
- mobile: boolean;
17716
+ mobile: boolean | null;
17717
17717
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17718
17718
  column: boolean;
17719
17719
  multiple: boolean;
@@ -17737,7 +17737,7 @@ declare const VChipGroup: {
17737
17737
  style: vue.StyleValue;
17738
17738
  disabled: boolean;
17739
17739
  tag: string;
17740
- mobile: boolean;
17740
+ mobile: boolean | null;
17741
17741
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17742
17742
  column: boolean;
17743
17743
  multiple: boolean;
@@ -17757,7 +17757,7 @@ declare const VChipGroup: {
17757
17757
  style: vue.StyleValue;
17758
17758
  disabled: boolean;
17759
17759
  tag: string;
17760
- mobile: boolean;
17760
+ mobile: boolean | null;
17761
17761
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17762
17762
  column: boolean;
17763
17763
  multiple: boolean;
@@ -17783,7 +17783,7 @@ declare const VChipGroup: {
17783
17783
  style: vue.StyleValue;
17784
17784
  disabled: boolean;
17785
17785
  tag: string;
17786
- mobile: boolean;
17786
+ mobile: boolean | null;
17787
17787
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
17788
17788
  column: boolean;
17789
17789
  multiple: boolean;
@@ -17842,8 +17842,8 @@ declare const VChipGroup: {
17842
17842
  default: null;
17843
17843
  };
17844
17844
  mobile: {
17845
- type: BooleanConstructor;
17846
- default: null;
17845
+ type: PropType<boolean | null>;
17846
+ default: boolean;
17847
17847
  };
17848
17848
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
17849
17849
  centerActive: BooleanConstructor;
@@ -17906,8 +17906,8 @@ declare const VChipGroup: {
17906
17906
  default: null;
17907
17907
  };
17908
17908
  mobile: {
17909
- type: BooleanConstructor;
17910
- default: null;
17909
+ type: PropType<boolean | null>;
17910
+ default: boolean;
17911
17911
  };
17912
17912
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
17913
17913
  centerActive: BooleanConstructor;
@@ -23753,7 +23753,7 @@ type VDataTableHeadersSlots = {
23753
23753
  };
23754
23754
  declare const VDataTableHeaders: {
23755
23755
  new (...args: any[]): vue.CreateComponentPublicInstance<{
23756
- mobile: boolean;
23756
+ mobile: boolean | null;
23757
23757
  sticky: boolean;
23758
23758
  multiSort: boolean;
23759
23759
  sortAscIcon: IconValue;
@@ -23785,7 +23785,7 @@ declare const VDataTableHeaders: {
23785
23785
  "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23786
23786
  "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23787
23787
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
23788
- mobile: boolean;
23788
+ mobile: boolean | null;
23789
23789
  sticky: boolean;
23790
23790
  multiSort: boolean;
23791
23791
  sortAscIcon: IconValue;
@@ -23817,7 +23817,7 @@ declare const VDataTableHeaders: {
23817
23817
  "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23818
23818
  "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23819
23819
  }, {
23820
- mobile: boolean;
23820
+ mobile: boolean | null;
23821
23821
  sticky: boolean;
23822
23822
  multiSort: boolean;
23823
23823
  sortAscIcon: IconValue;
@@ -23846,7 +23846,7 @@ declare const VDataTableHeaders: {
23846
23846
  M: {};
23847
23847
  Defaults: {};
23848
23848
  }, {
23849
- mobile: boolean;
23849
+ mobile: boolean | null;
23850
23850
  sticky: boolean;
23851
23851
  multiSort: boolean;
23852
23852
  sortAscIcon: IconValue;
@@ -23878,7 +23878,7 @@ declare const VDataTableHeaders: {
23878
23878
  "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23879
23879
  "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23880
23880
  }, {}, {}, {}, {}, {
23881
- mobile: boolean;
23881
+ mobile: boolean | null;
23882
23882
  sticky: boolean;
23883
23883
  multiSort: boolean;
23884
23884
  sortAscIcon: IconValue;
@@ -23888,7 +23888,7 @@ declare const VDataTableHeaders: {
23888
23888
  __isTeleport?: undefined;
23889
23889
  __isSuspense?: undefined;
23890
23890
  } & vue.ComponentOptionsBase<{
23891
- mobile: boolean;
23891
+ mobile: boolean | null;
23892
23892
  sticky: boolean;
23893
23893
  multiSort: boolean;
23894
23894
  sortAscIcon: IconValue;
@@ -23920,7 +23920,7 @@ declare const VDataTableHeaders: {
23920
23920
  "v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23921
23921
  "v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
23922
23922
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
23923
- mobile: boolean;
23923
+ mobile: boolean | null;
23924
23924
  sticky: boolean;
23925
23925
  multiSort: boolean;
23926
23926
  sortAscIcon: IconValue;
@@ -23944,8 +23944,8 @@ declare const VDataTableHeaders: {
23944
23944
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
23945
23945
  loading: (StringConstructor | BooleanConstructor)[];
23946
23946
  mobile: {
23947
- type: BooleanConstructor;
23948
- default: null;
23947
+ type: PropType<boolean | null>;
23948
+ default: boolean;
23949
23949
  };
23950
23950
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
23951
23951
  color: StringConstructor;
@@ -23965,8 +23965,8 @@ declare const VDataTableHeaders: {
23965
23965
  }, vue.ExtractPropTypes<{
23966
23966
  loading: (StringConstructor | BooleanConstructor)[];
23967
23967
  mobile: {
23968
- type: BooleanConstructor;
23969
- default: null;
23968
+ type: PropType<boolean | null>;
23969
+ default: boolean;
23970
23970
  };
23971
23971
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
23972
23972
  color: StringConstructor;
@@ -24008,7 +24008,7 @@ type VDataTableRowSlots<T> = {
24008
24008
  };
24009
24009
  declare const VDataTableRow: {
24010
24010
  new (...args: any[]): vue.CreateComponentPublicInstance<{
24011
- mobile: boolean;
24011
+ mobile: boolean | null;
24012
24012
  } & {
24013
24013
  onClick?: ((args_0: MouseEvent) => void) | undefined;
24014
24014
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -24016,7 +24016,7 @@ declare const VDataTableRow: {
24016
24016
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
24017
24017
  index?: number | undefined;
24018
24018
  }, 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 & {
24019
- mobile: boolean;
24019
+ mobile: boolean | null;
24020
24020
  } & {
24021
24021
  onClick?: ((args_0: MouseEvent) => void) | undefined;
24022
24022
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -24024,7 +24024,7 @@ declare const VDataTableRow: {
24024
24024
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
24025
24025
  index?: number | undefined;
24026
24026
  }, {
24027
- mobile: boolean;
24027
+ mobile: boolean | null;
24028
24028
  }, true, {}, vue.SlotsType<Partial<{
24029
24029
  [x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
24030
24030
  [key: string]: any;
@@ -24052,7 +24052,7 @@ declare const VDataTableRow: {
24052
24052
  M: {};
24053
24053
  Defaults: {};
24054
24054
  }, {
24055
- mobile: boolean;
24055
+ mobile: boolean | null;
24056
24056
  } & {
24057
24057
  onClick?: ((args_0: MouseEvent) => void) | undefined;
24058
24058
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -24060,13 +24060,13 @@ declare const VDataTableRow: {
24060
24060
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
24061
24061
  index?: number | undefined;
24062
24062
  }, {}, {}, {}, {}, {
24063
- mobile: boolean;
24063
+ mobile: boolean | null;
24064
24064
  }>;
24065
24065
  __isFragment?: undefined;
24066
24066
  __isTeleport?: undefined;
24067
24067
  __isSuspense?: undefined;
24068
24068
  } & vue.ComponentOptionsBase<{
24069
- mobile: boolean;
24069
+ mobile: boolean | null;
24070
24070
  } & {
24071
24071
  onClick?: ((args_0: MouseEvent) => void) | undefined;
24072
24072
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -24074,7 +24074,7 @@ declare const VDataTableRow: {
24074
24074
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
24075
24075
  index?: number | undefined;
24076
24076
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slots" | "item" | "cellProps" | `v-slot:header.${string}` | `v-slot:item.${string}`>, string, {
24077
- mobile: boolean;
24077
+ mobile: boolean | null;
24078
24078
  }, {}, string, vue.SlotsType<Partial<{
24079
24079
  [x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
24080
24080
  [key: string]: any;
@@ -24102,8 +24102,8 @@ declare const VDataTableRow: {
24102
24102
  cellProps?: CellProps<T> | undefined;
24103
24103
  }, VDataTableRowSlots<T>>) & FilterPropsOptions<{
24104
24104
  mobile: {
24105
- type: BooleanConstructor;
24106
- default: null;
24105
+ type: PropType<boolean | null>;
24106
+ default: boolean;
24107
24107
  };
24108
24108
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
24109
24109
  index: NumberConstructor;
@@ -24114,8 +24114,8 @@ declare const VDataTableRow: {
24114
24114
  onDblclick: PropType<(args_0: MouseEvent) => void>;
24115
24115
  }, vue.ExtractPropTypes<{
24116
24116
  mobile: {
24117
- type: BooleanConstructor;
24118
- default: null;
24117
+ type: PropType<boolean | null>;
24118
+ default: boolean;
24119
24119
  };
24120
24120
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
24121
24121
  index: NumberConstructor;
@@ -24140,7 +24140,7 @@ declare const VDataTableRows: {
24140
24140
  new (...args: any[]): vue.CreateComponentPublicInstance<{
24141
24141
  noDataText: string;
24142
24142
  loadingText: string;
24143
- mobile: boolean;
24143
+ mobile: boolean | null;
24144
24144
  hideNoData: boolean;
24145
24145
  } & {
24146
24146
  loading?: string | boolean | undefined;
@@ -24150,7 +24150,7 @@ declare const VDataTableRows: {
24150
24150
  }, {}, 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 & {
24151
24151
  noDataText: string;
24152
24152
  loadingText: string;
24153
- mobile: boolean;
24153
+ mobile: boolean | null;
24154
24154
  hideNoData: boolean;
24155
24155
  } & {
24156
24156
  loading?: string | boolean | undefined;
@@ -24160,7 +24160,7 @@ declare const VDataTableRows: {
24160
24160
  }, {
24161
24161
  noDataText: string;
24162
24162
  loadingText: string;
24163
- mobile: boolean;
24163
+ mobile: boolean | null;
24164
24164
  hideNoData: boolean;
24165
24165
  }, true, {}, vue.SlotsType<Partial<{
24166
24166
  [x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -24230,7 +24230,7 @@ declare const VDataTableRows: {
24230
24230
  }, {
24231
24231
  noDataText: string;
24232
24232
  loadingText: string;
24233
- mobile: boolean;
24233
+ mobile: boolean | null;
24234
24234
  hideNoData: boolean;
24235
24235
  } & {
24236
24236
  loading?: string | boolean | undefined;
@@ -24240,7 +24240,7 @@ declare const VDataTableRows: {
24240
24240
  }, {}, {}, {}, {}, {
24241
24241
  noDataText: string;
24242
24242
  loadingText: string;
24243
- mobile: boolean;
24243
+ mobile: boolean | null;
24244
24244
  hideNoData: boolean;
24245
24245
  }>;
24246
24246
  __isFragment?: undefined;
@@ -24249,7 +24249,7 @@ declare const VDataTableRows: {
24249
24249
  } & vue.ComponentOptionsBase<{
24250
24250
  noDataText: string;
24251
24251
  loadingText: string;
24252
- mobile: boolean;
24252
+ mobile: boolean | null;
24253
24253
  hideNoData: boolean;
24254
24254
  } & {
24255
24255
  loading?: string | boolean | undefined;
@@ -24259,7 +24259,7 @@ declare const VDataTableRows: {
24259
24259
  }, {}, 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, {
24260
24260
  noDataText: string;
24261
24261
  loadingText: string;
24262
- mobile: boolean;
24262
+ mobile: boolean | null;
24263
24263
  hideNoData: boolean;
24264
24264
  }, {}, string, vue.SlotsType<Partial<{
24265
24265
  [x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -24325,8 +24325,8 @@ declare const VDataTableRows: {
24325
24325
  items?: readonly (DataTableItem<T> | Group<T>)[] | undefined;
24326
24326
  }, VDataTableRowsSlots<T>>) & FilterPropsOptions<{
24327
24327
  mobile: {
24328
- type: BooleanConstructor;
24329
- default: null;
24328
+ type: PropType<boolean | null>;
24329
+ default: boolean;
24330
24330
  };
24331
24331
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
24332
24332
  loading: (StringConstructor | BooleanConstructor)[];
@@ -24347,8 +24347,8 @@ declare const VDataTableRows: {
24347
24347
  cellProps: PropType<CellProps<any>>;
24348
24348
  }, vue.ExtractPropTypes<{
24349
24349
  mobile: {
24350
- type: BooleanConstructor;
24351
- default: null;
24350
+ type: PropType<boolean | null>;
24351
+ default: boolean;
24352
24352
  };
24353
24353
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
24354
24354
  loading: (StringConstructor | BooleanConstructor)[];
@@ -24417,7 +24417,7 @@ declare const VDataTable: {
24417
24417
  sortBy: readonly SortItem[];
24418
24418
  pageText: string;
24419
24419
  page: string | number;
24420
- mobile: boolean;
24420
+ mobile: boolean | null;
24421
24421
  sticky: boolean;
24422
24422
  expanded: readonly string[];
24423
24423
  density: Density;
@@ -24492,7 +24492,7 @@ declare const VDataTable: {
24492
24492
  sortBy: readonly SortItem[];
24493
24493
  pageText: string;
24494
24494
  page: string | number;
24495
- mobile: boolean;
24495
+ mobile: boolean | null;
24496
24496
  sticky: boolean;
24497
24497
  expanded: readonly string[];
24498
24498
  density: Density;
@@ -24558,7 +24558,7 @@ declare const VDataTable: {
24558
24558
  sortBy: readonly SortItem[];
24559
24559
  pageText: string;
24560
24560
  page: string | number;
24561
- mobile: boolean;
24561
+ mobile: boolean | null;
24562
24562
  sticky: boolean;
24563
24563
  expanded: readonly string[];
24564
24564
  density: Density;
@@ -24706,7 +24706,7 @@ declare const VDataTable: {
24706
24706
  sortBy: readonly SortItem[];
24707
24707
  pageText: string;
24708
24708
  page: string | number;
24709
- mobile: boolean;
24709
+ mobile: boolean | null;
24710
24710
  sticky: boolean;
24711
24711
  expanded: readonly string[];
24712
24712
  density: Density;
@@ -24772,7 +24772,7 @@ declare const VDataTable: {
24772
24772
  sortBy: readonly SortItem[];
24773
24773
  pageText: string;
24774
24774
  page: string | number;
24775
- mobile: boolean;
24775
+ mobile: boolean | null;
24776
24776
  sticky: boolean;
24777
24777
  expanded: readonly string[];
24778
24778
  density: Density;
@@ -24820,7 +24820,7 @@ declare const VDataTable: {
24820
24820
  sortBy: readonly SortItem[];
24821
24821
  pageText: string;
24822
24822
  page: string | number;
24823
- mobile: boolean;
24823
+ mobile: boolean | null;
24824
24824
  sticky: boolean;
24825
24825
  expanded: readonly string[];
24826
24826
  density: Density;
@@ -24895,7 +24895,7 @@ declare const VDataTable: {
24895
24895
  sortBy: readonly SortItem[];
24896
24896
  pageText: string;
24897
24897
  page: string | number;
24898
- mobile: boolean;
24898
+ mobile: boolean | null;
24899
24899
  sticky: boolean;
24900
24900
  expanded: readonly string[];
24901
24901
  density: Density;
@@ -25170,8 +25170,8 @@ declare const VDataTable: {
25170
25170
  hover: BooleanConstructor;
25171
25171
  loading: (StringConstructor | BooleanConstructor)[];
25172
25172
  mobile: {
25173
- type: BooleanConstructor;
25174
- default: null;
25173
+ type: vue.PropType<boolean | null>;
25174
+ default: boolean;
25175
25175
  };
25176
25176
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
25177
25177
  color: StringConstructor;
@@ -25377,8 +25377,8 @@ declare const VDataTable: {
25377
25377
  hover: BooleanConstructor;
25378
25378
  loading: (StringConstructor | BooleanConstructor)[];
25379
25379
  mobile: {
25380
- type: BooleanConstructor;
25381
- default: null;
25380
+ type: vue.PropType<boolean | null>;
25381
+ default: boolean;
25382
25382
  };
25383
25383
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
25384
25384
  color: StringConstructor;
@@ -25800,7 +25800,7 @@ declare const VDataTableVirtual: {
25800
25800
  noDataText: string;
25801
25801
  loadingText: string;
25802
25802
  sortBy: readonly SortItem[];
25803
- mobile: boolean;
25803
+ mobile: boolean | null;
25804
25804
  sticky: boolean;
25805
25805
  expanded: readonly string[];
25806
25806
  density: Density;
@@ -25898,7 +25898,7 @@ declare const VDataTableVirtual: {
25898
25898
  noDataText: string;
25899
25899
  loadingText: string;
25900
25900
  sortBy: readonly SortItem[];
25901
- mobile: boolean;
25901
+ mobile: boolean | null;
25902
25902
  sticky: boolean;
25903
25903
  expanded: readonly string[];
25904
25904
  density: Density;
@@ -25990,7 +25990,7 @@ declare const VDataTableVirtual: {
25990
25990
  noDataText: string;
25991
25991
  loadingText: string;
25992
25992
  sortBy: readonly SortItem[];
25993
- mobile: boolean;
25993
+ mobile: boolean | null;
25994
25994
  sticky: boolean;
25995
25995
  expanded: readonly string[];
25996
25996
  density: Density;
@@ -26106,7 +26106,7 @@ declare const VDataTableVirtual: {
26106
26106
  noDataText: string;
26107
26107
  loadingText: string;
26108
26108
  sortBy: readonly SortItem[];
26109
- mobile: boolean;
26109
+ mobile: boolean | null;
26110
26110
  sticky: boolean;
26111
26111
  expanded: readonly string[];
26112
26112
  density: Density;
@@ -26198,7 +26198,7 @@ declare const VDataTableVirtual: {
26198
26198
  noDataText: string;
26199
26199
  loadingText: string;
26200
26200
  sortBy: readonly SortItem[];
26201
- mobile: boolean;
26201
+ mobile: boolean | null;
26202
26202
  sticky: boolean;
26203
26203
  expanded: readonly string[];
26204
26204
  density: Density;
@@ -26230,7 +26230,7 @@ declare const VDataTableVirtual: {
26230
26230
  noDataText: string;
26231
26231
  loadingText: string;
26232
26232
  sortBy: readonly SortItem[];
26233
- mobile: boolean;
26233
+ mobile: boolean | null;
26234
26234
  sticky: boolean;
26235
26235
  expanded: readonly string[];
26236
26236
  density: Density;
@@ -26328,7 +26328,7 @@ declare const VDataTableVirtual: {
26328
26328
  noDataText: string;
26329
26329
  loadingText: string;
26330
26330
  sortBy: readonly SortItem[];
26331
- mobile: boolean;
26331
+ mobile: boolean | null;
26332
26332
  sticky: boolean;
26333
26333
  expanded: readonly string[];
26334
26334
  density: Density;
@@ -26485,8 +26485,8 @@ declare const VDataTableVirtual: {
26485
26485
  hover: BooleanConstructor;
26486
26486
  loading: (StringConstructor | BooleanConstructor)[];
26487
26487
  mobile: {
26488
- type: BooleanConstructor;
26489
- default: null;
26488
+ type: vue.PropType<boolean | null>;
26489
+ default: boolean;
26490
26490
  };
26491
26491
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
26492
26492
  color: StringConstructor;
@@ -26637,8 +26637,8 @@ declare const VDataTableVirtual: {
26637
26637
  hover: BooleanConstructor;
26638
26638
  loading: (StringConstructor | BooleanConstructor)[];
26639
26639
  mobile: {
26640
- type: BooleanConstructor;
26641
- default: null;
26640
+ type: vue.PropType<boolean | null>;
26641
+ default: boolean;
26642
26642
  };
26643
26643
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
26644
26644
  color: StringConstructor;
@@ -26765,7 +26765,7 @@ declare const VDataTableServer: {
26765
26765
  sortBy: readonly SortItem[];
26766
26766
  pageText: string;
26767
26767
  page: string | number;
26768
- mobile: boolean;
26768
+ mobile: boolean | null;
26769
26769
  sticky: boolean;
26770
26770
  expanded: readonly string[];
26771
26771
  density: Density;
@@ -26879,7 +26879,7 @@ declare const VDataTableServer: {
26879
26879
  sortBy: readonly SortItem[];
26880
26880
  pageText: string;
26881
26881
  page: string | number;
26882
- mobile: boolean;
26882
+ mobile: boolean | null;
26883
26883
  sticky: boolean;
26884
26884
  expanded: readonly string[];
26885
26885
  density: Density;
@@ -26985,7 +26985,7 @@ declare const VDataTableServer: {
26985
26985
  sortBy: readonly SortItem[];
26986
26986
  pageText: string;
26987
26987
  page: string | number;
26988
- mobile: boolean;
26988
+ mobile: boolean | null;
26989
26989
  sticky: boolean;
26990
26990
  expanded: readonly string[];
26991
26991
  density: Density;
@@ -27131,7 +27131,7 @@ declare const VDataTableServer: {
27131
27131
  sortBy: readonly SortItem[];
27132
27132
  pageText: string;
27133
27133
  page: string | number;
27134
- mobile: boolean;
27134
+ mobile: boolean | null;
27135
27135
  sticky: boolean;
27136
27136
  expanded: readonly string[];
27137
27137
  density: Density;
@@ -27237,7 +27237,7 @@ declare const VDataTableServer: {
27237
27237
  sortBy: readonly SortItem[];
27238
27238
  pageText: string;
27239
27239
  page: string | number;
27240
- mobile: boolean;
27240
+ mobile: boolean | null;
27241
27241
  sticky: boolean;
27242
27242
  expanded: readonly string[];
27243
27243
  density: Density;
@@ -27283,7 +27283,7 @@ declare const VDataTableServer: {
27283
27283
  sortBy: readonly SortItem[];
27284
27284
  pageText: string;
27285
27285
  page: string | number;
27286
- mobile: boolean;
27286
+ mobile: boolean | null;
27287
27287
  sticky: boolean;
27288
27288
  expanded: readonly string[];
27289
27289
  density: Density;
@@ -27397,7 +27397,7 @@ declare const VDataTableServer: {
27397
27397
  sortBy: readonly SortItem[];
27398
27398
  pageText: string;
27399
27399
  page: string | number;
27400
- mobile: boolean;
27400
+ mobile: boolean | null;
27401
27401
  sticky: boolean;
27402
27402
  expanded: readonly string[];
27403
27403
  density: Density;
@@ -27616,8 +27616,8 @@ declare const VDataTableServer: {
27616
27616
  hover: BooleanConstructor;
27617
27617
  loading: (StringConstructor | BooleanConstructor)[];
27618
27618
  mobile: {
27619
- type: BooleanConstructor;
27620
- default: null;
27619
+ type: vue.PropType<boolean | null>;
27620
+ default: boolean;
27621
27621
  };
27622
27622
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
27623
27623
  color: StringConstructor;
@@ -27819,8 +27819,8 @@ declare const VDataTableServer: {
27819
27819
  hover: BooleanConstructor;
27820
27820
  loading: (StringConstructor | BooleanConstructor)[];
27821
27821
  mobile: {
27822
- type: BooleanConstructor;
27823
- default: null;
27822
+ type: vue.PropType<boolean | null>;
27823
+ default: boolean;
27824
27824
  };
27825
27825
  mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
27826
27826
  color: StringConstructor;
@@ -44123,7 +44123,7 @@ declare const VNavigationDrawer: {
44123
44123
  style: vue.StyleValue;
44124
44124
  width: string | number;
44125
44125
  tag: string;
44126
- mobile: boolean;
44126
+ mobile: NonNullable<boolean | null> | null;
44127
44127
  order: string | number;
44128
44128
  absolute: boolean;
44129
44129
  sticky: boolean;
@@ -44183,7 +44183,7 @@ declare const VNavigationDrawer: {
44183
44183
  style: vue.StyleValue;
44184
44184
  width: string | number;
44185
44185
  tag: string;
44186
- mobile: boolean;
44186
+ mobile: NonNullable<boolean | null> | null;
44187
44187
  order: string | number;
44188
44188
  absolute: boolean;
44189
44189
  sticky: boolean;
@@ -44238,7 +44238,7 @@ declare const VNavigationDrawer: {
44238
44238
  style: vue.StyleValue;
44239
44239
  width: string | number;
44240
44240
  tag: string;
44241
- mobile: boolean;
44241
+ mobile: NonNullable<boolean | null> | null;
44242
44242
  order: string | number;
44243
44243
  absolute: boolean;
44244
44244
  sticky: boolean;
@@ -44281,7 +44281,7 @@ declare const VNavigationDrawer: {
44281
44281
  style: vue.StyleValue;
44282
44282
  width: string | number;
44283
44283
  tag: string;
44284
- mobile: boolean;
44284
+ mobile: NonNullable<boolean | null> | null;
44285
44285
  order: string | number;
44286
44286
  absolute: boolean;
44287
44287
  sticky: boolean;
@@ -44338,7 +44338,7 @@ declare const VNavigationDrawer: {
44338
44338
  style: vue.StyleValue;
44339
44339
  width: string | number;
44340
44340
  tag: string;
44341
- mobile: boolean;
44341
+ mobile: NonNullable<boolean | null> | null;
44342
44342
  order: string | number;
44343
44343
  absolute: boolean;
44344
44344
  sticky: boolean;
@@ -44365,7 +44365,7 @@ declare const VNavigationDrawer: {
44365
44365
  style: vue.StyleValue;
44366
44366
  width: string | number;
44367
44367
  tag: string;
44368
- mobile: boolean;
44368
+ mobile: NonNullable<boolean | null> | null;
44369
44369
  order: string | number;
44370
44370
  absolute: boolean;
44371
44371
  sticky: boolean;
@@ -44425,7 +44425,7 @@ declare const VNavigationDrawer: {
44425
44425
  style: vue.StyleValue;
44426
44426
  width: string | number;
44427
44427
  tag: string;
44428
- mobile: boolean;
44428
+ mobile: NonNullable<boolean | null> | null;
44429
44429
  order: string | number;
44430
44430
  absolute: boolean;
44431
44431
  sticky: boolean;
@@ -44483,9 +44483,12 @@ declare const VNavigationDrawer: {
44483
44483
  type: (StringConstructor | NumberConstructor)[];
44484
44484
  validator(v: any): boolean;
44485
44485
  };
44486
- mobile: {
44487
- type: BooleanConstructor;
44488
- default: null;
44486
+ mobile: Omit<{
44487
+ type: PropType<boolean | null>;
44488
+ default: boolean;
44489
+ }, "default" | "type"> & {
44490
+ type: PropType<NonNullable<boolean | null> | null>;
44491
+ default: NonNullable<boolean | null> | null;
44489
44492
  };
44490
44493
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
44491
44494
  closeDelay: (StringConstructor | NumberConstructor)[];
@@ -44558,9 +44561,12 @@ declare const VNavigationDrawer: {
44558
44561
  type: (StringConstructor | NumberConstructor)[];
44559
44562
  validator(v: any): boolean;
44560
44563
  };
44561
- mobile: {
44562
- type: BooleanConstructor;
44563
- default: null;
44564
+ mobile: Omit<{
44565
+ type: PropType<boolean | null>;
44566
+ default: boolean;
44567
+ }, "default" | "type"> & {
44568
+ type: PropType<NonNullable<boolean | null> | null>;
44569
+ default: NonNullable<boolean | null> | null;
44564
44570
  };
44565
44571
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
44566
44572
  closeDelay: (StringConstructor | NumberConstructor)[];
@@ -53774,7 +53780,7 @@ declare const VSlideGroup: {
53774
53780
  style: vue.StyleValue;
53775
53781
  disabled: boolean;
53776
53782
  tag: string;
53777
- mobile: boolean;
53783
+ mobile: boolean | null;
53778
53784
  multiple: boolean;
53779
53785
  direction: "horizontal" | "vertical";
53780
53786
  selectedClass: string;
@@ -53799,7 +53805,7 @@ declare const VSlideGroup: {
53799
53805
  style: vue.StyleValue;
53800
53806
  disabled: boolean;
53801
53807
  tag: string;
53802
- mobile: boolean;
53808
+ mobile: boolean | null;
53803
53809
  multiple: boolean;
53804
53810
  direction: "horizontal" | "vertical";
53805
53811
  selectedClass: string;
@@ -53817,7 +53823,7 @@ declare const VSlideGroup: {
53817
53823
  style: vue.StyleValue;
53818
53824
  disabled: boolean;
53819
53825
  tag: string;
53820
- mobile: boolean;
53826
+ mobile: boolean | null;
53821
53827
  multiple: boolean;
53822
53828
  direction: "horizontal" | "vertical";
53823
53829
  selectedClass: string;
@@ -53846,7 +53852,7 @@ declare const VSlideGroup: {
53846
53852
  style: vue.StyleValue;
53847
53853
  disabled: boolean;
53848
53854
  tag: string;
53849
- mobile: boolean;
53855
+ mobile: boolean | null;
53850
53856
  multiple: boolean;
53851
53857
  direction: "horizontal" | "vertical";
53852
53858
  selectedClass: string;
@@ -53869,7 +53875,7 @@ declare const VSlideGroup: {
53869
53875
  style: vue.StyleValue;
53870
53876
  disabled: boolean;
53871
53877
  tag: string;
53872
- mobile: boolean;
53878
+ mobile: boolean | null;
53873
53879
  multiple: boolean;
53874
53880
  direction: "horizontal" | "vertical";
53875
53881
  selectedClass: string;
@@ -53885,7 +53891,7 @@ declare const VSlideGroup: {
53885
53891
  style: vue.StyleValue;
53886
53892
  disabled: boolean;
53887
53893
  tag: string;
53888
- mobile: boolean;
53894
+ mobile: boolean | null;
53889
53895
  multiple: boolean;
53890
53896
  direction: "horizontal" | "vertical";
53891
53897
  selectedClass: string;
@@ -53910,7 +53916,7 @@ declare const VSlideGroup: {
53910
53916
  style: vue.StyleValue;
53911
53917
  disabled: boolean;
53912
53918
  tag: string;
53913
- mobile: boolean;
53919
+ mobile: boolean | null;
53914
53920
  multiple: boolean;
53915
53921
  direction: "horizontal" | "vertical";
53916
53922
  selectedClass: string;
@@ -53951,8 +53957,8 @@ declare const VSlideGroup: {
53951
53957
  default: string;
53952
53958
  };
53953
53959
  mobile: {
53954
- type: BooleanConstructor;
53955
- default: null;
53960
+ type: PropType<boolean | null>;
53961
+ default: boolean;
53956
53962
  };
53957
53963
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
53958
53964
  class: PropType<any>;
@@ -53999,8 +54005,8 @@ declare const VSlideGroup: {
53999
54005
  default: string;
54000
54006
  };
54001
54007
  mobile: {
54002
- type: BooleanConstructor;
54003
- default: null;
54008
+ type: PropType<boolean | null>;
54009
+ default: boolean;
54004
54010
  };
54005
54011
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
54006
54012
  class: PropType<any>;
@@ -62447,7 +62453,7 @@ declare const VTabs: {
62447
62453
  style: vue.StyleValue;
62448
62454
  disabled: boolean;
62449
62455
  tag: string;
62450
- mobile: boolean;
62456
+ mobile: boolean | null;
62451
62457
  items: readonly TabItem[];
62452
62458
  mandatory: NonNullable<boolean | "force">;
62453
62459
  multiple: boolean;
@@ -62505,7 +62511,7 @@ declare const VTabs: {
62505
62511
  style: vue.StyleValue;
62506
62512
  disabled: boolean;
62507
62513
  tag: string;
62508
- mobile: boolean;
62514
+ mobile: boolean | null;
62509
62515
  items: readonly TabItem[];
62510
62516
  mandatory: NonNullable<boolean | "force">;
62511
62517
  multiple: boolean;
@@ -62562,7 +62568,7 @@ declare const VTabs: {
62562
62568
  height: string | number;
62563
62569
  disabled: boolean;
62564
62570
  tag: string;
62565
- mobile: boolean;
62571
+ mobile: boolean | null;
62566
62572
  modelValue: any;
62567
62573
  items: readonly TabItem[];
62568
62574
  mandatory: NonNullable<boolean | "force">;
@@ -62609,7 +62615,7 @@ declare const VTabs: {
62609
62615
  style: vue.StyleValue;
62610
62616
  disabled: boolean;
62611
62617
  tag: string;
62612
- mobile: boolean;
62618
+ mobile: boolean | null;
62613
62619
  items: readonly TabItem[];
62614
62620
  mandatory: NonNullable<boolean | "force">;
62615
62621
  multiple: boolean;
@@ -62666,7 +62672,7 @@ declare const VTabs: {
62666
62672
  height: string | number;
62667
62673
  disabled: boolean;
62668
62674
  tag: string;
62669
- mobile: boolean;
62675
+ mobile: boolean | null;
62670
62676
  modelValue: any;
62671
62677
  items: readonly TabItem[];
62672
62678
  mandatory: NonNullable<boolean | "force">;
@@ -62691,7 +62697,7 @@ declare const VTabs: {
62691
62697
  style: vue.StyleValue;
62692
62698
  disabled: boolean;
62693
62699
  tag: string;
62694
- mobile: boolean;
62700
+ mobile: boolean | null;
62695
62701
  items: readonly TabItem[];
62696
62702
  mandatory: NonNullable<boolean | "force">;
62697
62703
  multiple: boolean;
@@ -62750,7 +62756,7 @@ declare const VTabs: {
62750
62756
  height: string | number;
62751
62757
  disabled: boolean;
62752
62758
  tag: string;
62753
- mobile: boolean;
62759
+ mobile: boolean | null;
62754
62760
  modelValue: any;
62755
62761
  items: readonly TabItem[];
62756
62762
  mandatory: NonNullable<boolean | "force">;
@@ -62814,8 +62820,8 @@ declare const VTabs: {
62814
62820
  };
62815
62821
  disabled: BooleanConstructor;
62816
62822
  mobile: {
62817
- type: BooleanConstructor;
62818
- default: null;
62823
+ type: PropType<boolean | null>;
62824
+ default: boolean;
62819
62825
  };
62820
62826
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
62821
62827
  class: PropType<any>;
@@ -62892,8 +62898,8 @@ declare const VTabs: {
62892
62898
  };
62893
62899
  disabled: BooleanConstructor;
62894
62900
  mobile: {
62895
- type: BooleanConstructor;
62896
- default: null;
62901
+ type: PropType<boolean | null>;
62902
+ default: boolean;
62897
62903
  };
62898
62904
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
62899
62905
  class: PropType<any>;