vuetify 3.0.7 → 3.1.0

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 (175) hide show
  1. package/_settings.scss +1 -0
  2. package/dist/_component-variables-labs.sass +1 -0
  3. package/dist/json/attributes.json +452 -4
  4. package/dist/json/importMap-labs.json +28 -0
  5. package/dist/json/importMap.json +50 -50
  6. package/dist/json/tags.json +154 -8
  7. package/dist/json/web-types.json +1514 -18
  8. package/dist/vuetify-labs.d.ts +875 -0
  9. package/dist/vuetify-labs.js +9748 -0
  10. package/dist/vuetify.css +34 -55
  11. package/dist/vuetify.d.ts +169 -192
  12. package/dist/vuetify.esm.js +141 -103
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +140 -102
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +783 -777
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/blueprints/index.d.ts +3 -2
  20. package/lib/blueprints/md1.d.ts +3 -2
  21. package/lib/blueprints/md2.d.ts +3 -2
  22. package/lib/blueprints/md3.d.ts +3 -2
  23. package/lib/components/VAlert/VAlertTitle.mjs.map +1 -1
  24. package/lib/components/VAlert/index.d.ts +1 -0
  25. package/lib/components/VAutocomplete/VAutocomplete.mjs +8 -10
  26. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  27. package/lib/components/VAutocomplete/index.d.ts +3 -12
  28. package/lib/components/VAvatar/VAvatar.mjs +2 -1
  29. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  30. package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs +23 -20
  31. package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs.map +1 -1
  32. package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs +21 -2
  33. package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs.map +1 -1
  34. package/lib/components/VBreadcrumbs/index.d.ts +4 -15
  35. package/lib/components/VCombobox/VCombobox.mjs +8 -10
  36. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  37. package/lib/components/VCombobox/index.d.ts +3 -12
  38. package/lib/components/VDivider/VDivider.css +1 -1
  39. package/lib/components/VDivider/VDivider.sass +1 -0
  40. package/lib/components/VDivider/_variables.scss +2 -1
  41. package/lib/components/VIcon/VIcon.mjs +25 -20
  42. package/lib/components/VIcon/VIcon.mjs.map +1 -1
  43. package/lib/components/VIcon/index.d.ts +4 -8
  44. package/lib/components/VList/VListItem.css +0 -4
  45. package/lib/components/VList/VListItem.sass +12 -6
  46. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +10 -2
  47. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
  48. package/lib/components/VNavigationDrawer/index.d.ts +11 -3
  49. package/lib/components/VSelect/VSelect.mjs +11 -8
  50. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  51. package/lib/components/VTable/VTable.css +12 -29
  52. package/lib/components/VTable/VTable.mjs +3 -3
  53. package/lib/components/VTable/VTable.mjs.map +1 -1
  54. package/lib/components/VTable/VTable.sass +10 -17
  55. package/lib/components/VTable/_variables.scss +4 -2
  56. package/lib/components/index.d.ts +26 -50
  57. package/lib/composables/filter.mjs +18 -10
  58. package/lib/composables/filter.mjs.map +1 -1
  59. package/lib/composables/icons.mjs +12 -7
  60. package/lib/composables/icons.mjs.map +1 -1
  61. package/lib/entry-bundler.mjs +1 -1
  62. package/lib/framework.mjs +1 -1
  63. package/lib/iconsets/fa-svg.d.ts +3 -2
  64. package/lib/iconsets/fa.d.ts +3 -2
  65. package/lib/iconsets/fa.mjs +2 -1
  66. package/lib/iconsets/fa.mjs.map +1 -1
  67. package/lib/iconsets/fa4.d.ts +3 -2
  68. package/lib/iconsets/fa4.mjs +2 -1
  69. package/lib/iconsets/fa4.mjs.map +1 -1
  70. package/lib/iconsets/md.d.ts +3 -2
  71. package/lib/iconsets/md.mjs +2 -1
  72. package/lib/iconsets/md.mjs.map +1 -1
  73. package/lib/iconsets/mdi-svg.d.ts +3 -2
  74. package/lib/iconsets/mdi-svg.mjs +2 -1
  75. package/lib/iconsets/mdi-svg.mjs.map +1 -1
  76. package/lib/iconsets/mdi.d.ts +3 -2
  77. package/lib/iconsets/mdi.mjs +2 -1
  78. package/lib/iconsets/mdi.mjs.map +1 -1
  79. package/lib/index.d.ts +16 -15
  80. package/lib/labs/VDataTable/VDataTable.css +119 -0
  81. package/lib/labs/VDataTable/VDataTable.mjs +146 -0
  82. package/lib/labs/VDataTable/VDataTable.mjs.map +1 -0
  83. package/lib/labs/VDataTable/VDataTable.sass +106 -0
  84. package/lib/labs/VDataTable/VDataTableColumn.mjs +37 -0
  85. package/lib/labs/VDataTable/VDataTableColumn.mjs.map +1 -0
  86. package/lib/labs/VDataTable/VDataTableFooter.css +22 -0
  87. package/lib/labs/VDataTable/VDataTableFooter.mjs +105 -0
  88. package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -0
  89. package/lib/labs/VDataTable/VDataTableFooter.sass +23 -0
  90. package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs +88 -0
  91. package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs.map +1 -0
  92. package/lib/labs/VDataTable/VDataTableHeaders.mjs +143 -0
  93. package/lib/labs/VDataTable/VDataTableHeaders.mjs.map +1 -0
  94. package/lib/labs/VDataTable/VDataTableRow.mjs +75 -0
  95. package/lib/labs/VDataTable/VDataTableRow.mjs.map +1 -0
  96. package/lib/labs/VDataTable/VDataTableRows.mjs +87 -0
  97. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -0
  98. package/lib/labs/VDataTable/VDataTableServer.mjs +124 -0
  99. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -0
  100. package/lib/labs/VDataTable/VDataTableVirtual.mjs +154 -0
  101. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -0
  102. package/lib/labs/VDataTable/_variables.scss +6 -0
  103. package/lib/labs/VDataTable/composables/expand.mjs +51 -0
  104. package/lib/labs/VDataTable/composables/expand.mjs.map +1 -0
  105. package/lib/labs/VDataTable/composables/group.mjs +124 -0
  106. package/lib/labs/VDataTable/composables/group.mjs.map +1 -0
  107. package/lib/labs/VDataTable/composables/headers.mjs +152 -0
  108. package/lib/labs/VDataTable/composables/headers.mjs.map +1 -0
  109. package/lib/labs/VDataTable/composables/items.mjs +30 -0
  110. package/lib/labs/VDataTable/composables/items.mjs.map +1 -0
  111. package/lib/labs/VDataTable/composables/options.mjs +44 -0
  112. package/lib/labs/VDataTable/composables/options.mjs.map +1 -0
  113. package/lib/labs/VDataTable/composables/paginate.mjs +62 -0
  114. package/lib/labs/VDataTable/composables/paginate.mjs.map +1 -0
  115. package/lib/labs/VDataTable/composables/select.mjs +57 -0
  116. package/lib/labs/VDataTable/composables/select.mjs.map +1 -0
  117. package/lib/labs/VDataTable/composables/sort.mjs +109 -0
  118. package/lib/labs/VDataTable/composables/sort.mjs.map +1 -0
  119. package/lib/labs/VDataTable/composables/virtual.mjs +77 -0
  120. package/lib/labs/VDataTable/composables/virtual.mjs.map +1 -0
  121. package/lib/labs/VDataTable/index.d.ts +705 -0
  122. package/lib/labs/VDataTable/index.mjs +6 -0
  123. package/lib/labs/VDataTable/index.mjs.map +1 -0
  124. package/lib/labs/VDataTable/types.mjs +2 -0
  125. package/lib/labs/VDataTable/types.mjs.map +1 -0
  126. package/lib/labs/VVirtualScroll/VVirtualScroll.css +11 -0
  127. package/lib/labs/VVirtualScroll/VVirtualScroll.mjs +118 -0
  128. package/lib/labs/VVirtualScroll/VVirtualScroll.mjs.map +1 -0
  129. package/lib/{components → labs}/VVirtualScroll/VVirtualScroll.sass +0 -5
  130. package/lib/labs/VVirtualScroll/VVirtualScrollItem.mjs +35 -0
  131. package/lib/labs/VVirtualScroll/VVirtualScrollItem.mjs.map +1 -0
  132. package/lib/labs/VVirtualScroll/index.d.ts +154 -0
  133. package/lib/labs/VVirtualScroll/index.mjs +2 -0
  134. package/lib/labs/VVirtualScroll/index.mjs.map +1 -0
  135. package/lib/labs/components.d.ts +856 -0
  136. package/lib/labs/components.mjs +3 -0
  137. package/lib/labs/components.mjs.map +1 -0
  138. package/lib/labs/index.mjs +3 -0
  139. package/lib/labs/index.mjs.map +1 -0
  140. package/lib/util/defineComponent.mjs +4 -0
  141. package/lib/util/defineComponent.mjs.map +1 -1
  142. package/lib/util/helpers.mjs +0 -38
  143. package/lib/util/helpers.mjs.map +1 -1
  144. package/package.json +4 -2
  145. package/lib/components/VDataTable/MobileRow.mjs +0 -63
  146. package/lib/components/VDataTable/MobileRow.mjs.map +0 -1
  147. package/lib/components/VDataTable/Row.mjs +0 -57
  148. package/lib/components/VDataTable/Row.mjs.map +0 -1
  149. package/lib/components/VDataTable/RowGroup.mjs +0 -48
  150. package/lib/components/VDataTable/RowGroup.mjs.map +0 -1
  151. package/lib/components/VDataTable/VDataTable.mjs +0 -577
  152. package/lib/components/VDataTable/VDataTable.mjs.map +0 -1
  153. package/lib/components/VDataTable/VDataTable.sass +0 -98
  154. package/lib/components/VDataTable/VDataTableHeader.mjs +0 -42
  155. package/lib/components/VDataTable/VDataTableHeader.mjs.map +0 -1
  156. package/lib/components/VDataTable/VDataTableHeader.sass +0 -80
  157. package/lib/components/VDataTable/VDataTableHeaderDesktop.mjs +0 -96
  158. package/lib/components/VDataTable/VDataTableHeaderDesktop.mjs.map +0 -1
  159. package/lib/components/VDataTable/VDataTableHeaderMobile.mjs +0 -89
  160. package/lib/components/VDataTable/VDataTableHeaderMobile.mjs.map +0 -1
  161. package/lib/components/VDataTable/VEditDialog.mjs +0 -127
  162. package/lib/components/VDataTable/VEditDialog.mjs.map +0 -1
  163. package/lib/components/VDataTable/VEditDialog.sass +0 -22
  164. package/lib/components/VDataTable/VVirtualTable.mjs +0 -132
  165. package/lib/components/VDataTable/VVirtualTable.mjs.map +0 -1
  166. package/lib/components/VDataTable/VVirtualTable.sass +0 -13
  167. package/lib/components/VDataTable/_variables.scss +0 -24
  168. package/lib/components/VDataTable/index.mjs +0 -21
  169. package/lib/components/VDataTable/index.mjs.map +0 -1
  170. package/lib/components/VDataTable/mixins/header.mjs +0 -71
  171. package/lib/components/VDataTable/mixins/header.mjs.map +0 -1
  172. package/lib/components/VVirtualScroll/VVirtualScroll.mjs +0 -108
  173. package/lib/components/VVirtualScroll/VVirtualScroll.mjs.map +0 -1
  174. package/lib/components/VVirtualScroll/index.mjs +0 -4
  175. package/lib/components/VVirtualScroll/index.mjs.map +0 -1
package/dist/vuetify.d.ts CHANGED
@@ -200,7 +200,8 @@ interface IconAliases {
200
200
  checkboxOff: IconValue;
201
201
  checkboxIndeterminate: IconValue;
202
202
  delimiter: IconValue;
203
- sort: IconValue;
203
+ sortAsc: IconValue;
204
+ sortDesc: IconValue;
204
205
  expand: IconValue;
205
206
  menu: IconValue;
206
207
  subgroup: IconValue;
@@ -221,7 +222,7 @@ interface IconAliases {
221
222
  }
222
223
  interface IconProps {
223
224
  tag: string;
224
- icon: IconValue;
225
+ icon?: IconValue;
225
226
  disabled?: Boolean;
226
227
  }
227
228
  declare type IconComponent = JSXComponent<IconProps>;
@@ -236,7 +237,6 @@ declare type IconOptions = {
236
237
  declare const VComponentIcon: vue.DefineComponent<{
237
238
  icon: {
238
239
  type: PropType<IconValue>;
239
- required: true;
240
240
  };
241
241
  tag: {
242
242
  type: StringConstructor;
@@ -245,17 +245,16 @@ declare const VComponentIcon: vue.DefineComponent<{
245
245
  }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
246
246
  icon: {
247
247
  type: PropType<IconValue>;
248
- required: true;
249
248
  };
250
249
  tag: {
251
250
  type: StringConstructor;
252
251
  required: true;
253
252
  };
254
253
  }>>, {}>;
254
+ declare type VComponentIcon = InstanceType<typeof VComponentIcon>;
255
255
  declare const VSvgIcon: vue.DefineComponent<{
256
256
  icon: {
257
257
  type: PropType<IconValue>;
258
- required: true;
259
258
  };
260
259
  tag: {
261
260
  type: StringConstructor;
@@ -264,17 +263,16 @@ declare const VSvgIcon: vue.DefineComponent<{
264
263
  }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
265
264
  icon: {
266
265
  type: PropType<IconValue>;
267
- required: true;
268
266
  };
269
267
  tag: {
270
268
  type: StringConstructor;
271
269
  required: true;
272
270
  };
273
271
  }>>, {}>;
272
+ declare type VSvgIcon = InstanceType<typeof VSvgIcon>;
274
273
  declare const VLigatureIcon: vue.DefineComponent<{
275
274
  icon: {
276
275
  type: PropType<IconValue>;
277
- required: true;
278
276
  };
279
277
  tag: {
280
278
  type: StringConstructor;
@@ -283,17 +281,16 @@ declare const VLigatureIcon: vue.DefineComponent<{
283
281
  }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
284
282
  icon: {
285
283
  type: PropType<IconValue>;
286
- required: true;
287
284
  };
288
285
  tag: {
289
286
  type: StringConstructor;
290
287
  required: true;
291
288
  };
292
289
  }>>, {}>;
290
+ declare type VLigatureIcon = InstanceType<typeof VLigatureIcon>;
293
291
  declare const VClassIcon: vue.DefineComponent<{
294
292
  icon: {
295
293
  type: PropType<IconValue>;
296
- required: true;
297
294
  };
298
295
  tag: {
299
296
  type: StringConstructor;
@@ -302,13 +299,13 @@ declare const VClassIcon: vue.DefineComponent<{
302
299
  }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
303
300
  icon: {
304
301
  type: PropType<IconValue>;
305
- required: true;
306
302
  };
307
303
  tag: {
308
304
  type: StringConstructor;
309
305
  required: true;
310
306
  };
311
307
  }>>, {}>;
308
+ declare type VClassIcon = InstanceType<typeof VClassIcon>;
312
309
 
313
310
  declare type Position = 'top' | 'left' | 'right' | 'bottom';
314
311
  interface Layer {
@@ -1164,6 +1161,7 @@ declare const VAlertTitle: vue.DefineComponent<{
1164
1161
  }>>, {
1165
1162
  tag: string;
1166
1163
  }>;
1164
+ declare type VAlertTitle = InstanceType<typeof VAlertTitle>;
1167
1165
 
1168
1166
  interface LoaderSlotProps {
1169
1167
  color: string | undefined;
@@ -2547,10 +2545,7 @@ declare const VAutocomplete: {
2547
2545
  search: vue.Ref<string | undefined> & {
2548
2546
  readonly externalValue: string | undefined;
2549
2547
  };
2550
- filteredItems: vue.ComputedRef<{
2551
- item: InternalItem<any>;
2552
- matches: Record<string, FilterMatch>;
2553
- }[]>;
2548
+ filteredItems: vue.Ref<InternalItem<any>[]>;
2554
2549
  select: (item: InternalItem) => void;
2555
2550
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
2556
2551
  'update:search': (val: any) => boolean;
@@ -2961,10 +2956,7 @@ declare const VAutocomplete: {
2961
2956
  search: vue.Ref<string | undefined> & {
2962
2957
  readonly externalValue: string | undefined;
2963
2958
  };
2964
- filteredItems: vue.ComputedRef<{
2965
- item: InternalItem<any>;
2966
- matches: Record<string, FilterMatch>;
2967
- }[]>;
2959
+ filteredItems: vue.Ref<InternalItem<any>[]>;
2968
2960
  select: (item: InternalItem) => void;
2969
2961
  } & Omit<any, string | number | symbol>> & {} & vue.ComponentCustomProperties;
2970
2962
  __isFragment?: undefined;
@@ -3312,10 +3304,7 @@ declare const VAutocomplete: {
3312
3304
  search: vue.Ref<string | undefined> & {
3313
3305
  readonly externalValue: string | undefined;
3314
3306
  };
3315
- filteredItems: vue.ComputedRef<{
3316
- item: InternalItem<any>;
3317
- matches: Record<string, FilterMatch>;
3318
- }[]>;
3307
+ filteredItems: vue.Ref<InternalItem<any>[]>;
3319
3308
  select: (item: InternalItem) => void;
3320
3309
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
3321
3310
  'update:search': (val: any) => boolean;
@@ -4185,21 +4174,10 @@ declare const VBreadcrumbsItem: vue.DefineComponent<{
4185
4174
  declare type VBreadcrumbsItem = InstanceType<typeof VBreadcrumbsItem>;
4186
4175
 
4187
4176
  declare const VBreadcrumbsDivider: vue.DefineComponent<{
4188
- tag: {
4189
- type: StringConstructor;
4190
- default: string;
4191
- };
4192
- }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
4193
- [key: string]: any;
4194
- }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
4195
- tag: {
4196
- type: StringConstructor;
4197
- default: string;
4198
- };
4199
- }>>, {
4200
- tag: string;
4201
- }>;
4202
- declare type VBreadcrumbsDivider = InstanceType<typeof VBreadcrumbsDivider>;
4177
+ divider: (StringConstructor | NumberConstructor)[];
4178
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
4179
+ divider: (StringConstructor | NumberConstructor)[];
4180
+ }>>, {}>;
4203
4181
 
4204
4182
  interface GroupItem {
4205
4183
  id: number;
@@ -6326,10 +6304,7 @@ declare const VCombobox: {
6326
6304
  };
6327
6305
  search: vue.WritableComputedRef<string>;
6328
6306
  selectionIndex: vue.Ref<number>;
6329
- filteredItems: vue.ComputedRef<{
6330
- item: InternalItem<any>;
6331
- matches: Record<string, FilterMatch>;
6332
- }[]>;
6307
+ filteredItems: vue.Ref<InternalItem<any>[]>;
6333
6308
  select: (item: InternalItem) => void;
6334
6309
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
6335
6310
  'update:modelValue': (val: any) => boolean;
@@ -6745,10 +6720,7 @@ declare const VCombobox: {
6745
6720
  };
6746
6721
  search: vue.WritableComputedRef<string>;
6747
6722
  selectionIndex: vue.Ref<number>;
6748
- filteredItems: vue.ComputedRef<{
6749
- item: InternalItem<any>;
6750
- matches: Record<string, FilterMatch>;
6751
- }[]>;
6723
+ filteredItems: vue.Ref<InternalItem<any>[]>;
6752
6724
  select: (item: InternalItem) => void;
6753
6725
  } & Omit<any, string | number | symbol>> & {} & vue.ComponentCustomProperties;
6754
6726
  __isFragment?: undefined;
@@ -7101,10 +7073,7 @@ declare const VCombobox: {
7101
7073
  };
7102
7074
  search: vue.WritableComputedRef<string>;
7103
7075
  selectionIndex: vue.Ref<number>;
7104
- filteredItems: vue.ComputedRef<{
7105
- item: InternalItem<any>;
7106
- matches: Record<string, FilterMatch>;
7107
- }[]>;
7076
+ filteredItems: vue.Ref<InternalItem<any>[]>;
7108
7077
  select: (item: InternalItem) => void;
7109
7078
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
7110
7079
  'update:modelValue': (val: any) => boolean;
@@ -14434,7 +14403,10 @@ declare const VNavigationDrawer: vue.DefineComponent<{
14434
14403
  default: null;
14435
14404
  };
14436
14405
  permanent: BooleanConstructor;
14437
- rail: BooleanConstructor;
14406
+ rail: {
14407
+ type: PropType<boolean | null>;
14408
+ default: null;
14409
+ };
14438
14410
  railWidth: {
14439
14411
  type: (StringConstructor | NumberConstructor)[];
14440
14412
  default: number;
@@ -14460,6 +14432,7 @@ declare const VNavigationDrawer: vue.DefineComponent<{
14460
14432
  isStuck: vue.Ref<boolean | "top" | "bottom">;
14461
14433
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
14462
14434
  'update:modelValue': (val: boolean) => true;
14435
+ 'update:rail': (val: boolean) => true;
14463
14436
  }, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
14464
14437
  theme: StringConstructor;
14465
14438
  tag: Omit<{
@@ -14496,7 +14469,10 @@ declare const VNavigationDrawer: vue.DefineComponent<{
14496
14469
  default: null;
14497
14470
  };
14498
14471
  permanent: BooleanConstructor;
14499
- rail: BooleanConstructor;
14472
+ rail: {
14473
+ type: PropType<boolean | null>;
14474
+ default: null;
14475
+ };
14500
14476
  railWidth: {
14501
14477
  type: (StringConstructor | NumberConstructor)[];
14502
14478
  default: number;
@@ -14520,6 +14496,7 @@ declare const VNavigationDrawer: vue.DefineComponent<{
14520
14496
  sticky: BooleanConstructor;
14521
14497
  }>> & {
14522
14498
  "onUpdate:modelValue"?: ((val: boolean) => any) | undefined;
14499
+ "onUpdate:rail"?: ((val: boolean) => any) | undefined;
14523
14500
  }, {
14524
14501
  absolute: boolean;
14525
14502
  location: "end" | "start" | "left" | "bottom" | "right";
@@ -14537,7 +14514,7 @@ declare const VNavigationDrawer: vue.DefineComponent<{
14537
14514
  disableRouteWatcher: boolean;
14538
14515
  expandOnHover: boolean;
14539
14516
  permanent: boolean;
14540
- rail: boolean;
14517
+ rail: boolean | null;
14541
14518
  railWidth: string | number;
14542
14519
  }>;
14543
14520
  declare type VNavigationDrawer = InstanceType<typeof VNavigationDrawer>;
@@ -25530,138 +25507,138 @@ declare type VExpandXTransition = InstanceType<typeof VExpandXTransition>;
25530
25507
 
25531
25508
  //# sourceMappingURL=index.d.ts.map
25532
25509
 
25533
- type index_d$1_VApp = VApp;
25534
- type index_d$1_VAppBar = VAppBar;
25535
- type index_d$1_VAppBarNavIcon = VAppBarNavIcon;
25536
- type index_d$1_VAppBarTitle = VAppBarTitle;
25537
- type index_d$1_VAlert = VAlert;
25510
+ declare const index_d$1_VApp: typeof VApp;
25511
+ declare const index_d$1_VAppBar: typeof VAppBar;
25512
+ declare const index_d$1_VAppBarNavIcon: typeof VAppBarNavIcon;
25513
+ declare const index_d$1_VAppBarTitle: typeof VAppBarTitle;
25514
+ declare const index_d$1_VAlert: typeof VAlert;
25538
25515
  declare const index_d$1_VAlertTitle: typeof VAlertTitle;
25539
- type index_d$1_VAutocomplete = VAutocomplete;
25540
- type index_d$1_VAvatar = VAvatar;
25541
- type index_d$1_VBadge = VBadge;
25542
- type index_d$1_VBanner = VBanner;
25543
- type index_d$1_VBannerActions = VBannerActions;
25544
- type index_d$1_VBannerText = VBannerText;
25545
- type index_d$1_VBottomNavigation = VBottomNavigation;
25546
- type index_d$1_VBreadcrumbs = VBreadcrumbs;
25547
- type index_d$1_VBreadcrumbsItem = VBreadcrumbsItem;
25548
- type index_d$1_VBreadcrumbsDivider = VBreadcrumbsDivider;
25549
- type index_d$1_VBtn = VBtn;
25550
- type index_d$1_VBtnGroup = VBtnGroup;
25551
- type index_d$1_VBtnToggle = VBtnToggle;
25552
- type index_d$1_VCard = VCard;
25553
- type index_d$1_VCardActions = VCardActions;
25554
- type index_d$1_VCardItem = VCardItem;
25555
- type index_d$1_VCardSubtitle = VCardSubtitle;
25556
- type index_d$1_VCardText = VCardText;
25557
- type index_d$1_VCardTitle = VCardTitle;
25558
- type index_d$1_VCarousel = VCarousel;
25559
- type index_d$1_VCarouselItem = VCarouselItem;
25560
- type index_d$1_VCheckbox = VCheckbox;
25561
- type index_d$1_VCheckboxBtn = VCheckboxBtn;
25562
- type index_d$1_VChip = VChip;
25563
- type index_d$1_VChipGroup = VChipGroup;
25564
- type index_d$1_VCode = VCode;
25565
- type index_d$1_VColorPicker = VColorPicker;
25566
- type index_d$1_VCombobox = VCombobox;
25567
- type index_d$1_VCounter = VCounter;
25568
- type index_d$1_VDefaultsProvider = VDefaultsProvider;
25569
- type index_d$1_VDialog = VDialog;
25570
- type index_d$1_VDivider = VDivider;
25571
- type index_d$1_VExpansionPanels = VExpansionPanels;
25572
- type index_d$1_VExpansionPanel = VExpansionPanel;
25573
- type index_d$1_VExpansionPanelText = VExpansionPanelText;
25574
- type index_d$1_VExpansionPanelTitle = VExpansionPanelTitle;
25575
- type index_d$1_VField = VField;
25576
- type index_d$1_VFieldLabel = VFieldLabel;
25577
- type index_d$1_VFileInput = VFileInput;
25578
- type index_d$1_VFooter = VFooter;
25579
- type index_d$1_VForm = VForm;
25580
- type index_d$1_VContainer = VContainer;
25581
- type index_d$1_VCol = VCol;
25582
- type index_d$1_VRow = VRow;
25583
- type index_d$1_VSpacer = VSpacer;
25584
- type index_d$1_VHover = VHover;
25585
- type index_d$1_VIcon = VIcon;
25516
+ declare const index_d$1_VAutocomplete: typeof VAutocomplete;
25517
+ declare const index_d$1_VAvatar: typeof VAvatar;
25518
+ declare const index_d$1_VBadge: typeof VBadge;
25519
+ declare const index_d$1_VBanner: typeof VBanner;
25520
+ declare const index_d$1_VBannerActions: typeof VBannerActions;
25521
+ declare const index_d$1_VBannerText: typeof VBannerText;
25522
+ declare const index_d$1_VBottomNavigation: typeof VBottomNavigation;
25523
+ declare const index_d$1_VBreadcrumbs: typeof VBreadcrumbs;
25524
+ declare const index_d$1_VBreadcrumbsItem: typeof VBreadcrumbsItem;
25525
+ declare const index_d$1_VBreadcrumbsDivider: typeof VBreadcrumbsDivider;
25526
+ declare const index_d$1_VBtn: typeof VBtn;
25527
+ declare const index_d$1_VBtnGroup: typeof VBtnGroup;
25528
+ declare const index_d$1_VBtnToggle: typeof VBtnToggle;
25529
+ declare const index_d$1_VCard: typeof VCard;
25530
+ declare const index_d$1_VCardActions: typeof VCardActions;
25531
+ declare const index_d$1_VCardItem: typeof VCardItem;
25532
+ declare const index_d$1_VCardSubtitle: typeof VCardSubtitle;
25533
+ declare const index_d$1_VCardText: typeof VCardText;
25534
+ declare const index_d$1_VCardTitle: typeof VCardTitle;
25535
+ declare const index_d$1_VCarousel: typeof VCarousel;
25536
+ declare const index_d$1_VCarouselItem: typeof VCarouselItem;
25537
+ declare const index_d$1_VCheckbox: typeof VCheckbox;
25538
+ declare const index_d$1_VCheckboxBtn: typeof VCheckboxBtn;
25539
+ declare const index_d$1_VChip: typeof VChip;
25540
+ declare const index_d$1_VChipGroup: typeof VChipGroup;
25541
+ declare const index_d$1_VCode: typeof VCode;
25542
+ declare const index_d$1_VColorPicker: typeof VColorPicker;
25543
+ declare const index_d$1_VCombobox: typeof VCombobox;
25544
+ declare const index_d$1_VCounter: typeof VCounter;
25545
+ declare const index_d$1_VDefaultsProvider: typeof VDefaultsProvider;
25546
+ declare const index_d$1_VDialog: typeof VDialog;
25547
+ declare const index_d$1_VDivider: typeof VDivider;
25548
+ declare const index_d$1_VExpansionPanels: typeof VExpansionPanels;
25549
+ declare const index_d$1_VExpansionPanel: typeof VExpansionPanel;
25550
+ declare const index_d$1_VExpansionPanelText: typeof VExpansionPanelText;
25551
+ declare const index_d$1_VExpansionPanelTitle: typeof VExpansionPanelTitle;
25552
+ declare const index_d$1_VField: typeof VField;
25553
+ declare const index_d$1_VFieldLabel: typeof VFieldLabel;
25554
+ declare const index_d$1_VFileInput: typeof VFileInput;
25555
+ declare const index_d$1_VFooter: typeof VFooter;
25556
+ declare const index_d$1_VForm: typeof VForm;
25557
+ declare const index_d$1_VContainer: typeof VContainer;
25558
+ declare const index_d$1_VCol: typeof VCol;
25559
+ declare const index_d$1_VRow: typeof VRow;
25560
+ declare const index_d$1_VSpacer: typeof VSpacer;
25561
+ declare const index_d$1_VHover: typeof VHover;
25562
+ declare const index_d$1_VIcon: typeof VIcon;
25586
25563
  declare const index_d$1_VComponentIcon: typeof VComponentIcon;
25587
25564
  declare const index_d$1_VSvgIcon: typeof VSvgIcon;
25588
25565
  declare const index_d$1_VLigatureIcon: typeof VLigatureIcon;
25589
25566
  declare const index_d$1_VClassIcon: typeof VClassIcon;
25590
- type index_d$1_VImg = VImg;
25591
- type index_d$1_VInput = VInput;
25592
- type index_d$1_VItemGroup = VItemGroup;
25593
- type index_d$1_VItem = VItem;
25594
- type index_d$1_VKbd = VKbd;
25595
- type index_d$1_VLabel = VLabel;
25596
- type index_d$1_VLayout = VLayout;
25597
- type index_d$1_VLayoutItem = VLayoutItem;
25598
- type index_d$1_VLazy = VLazy;
25599
- type index_d$1_VList = VList;
25600
- type index_d$1_VListGroup = VListGroup;
25601
- type index_d$1_VListImg = VListImg;
25602
- type index_d$1_VListItem = VListItem;
25603
- type index_d$1_VListItemAction = VListItemAction;
25604
- type index_d$1_VListItemMedia = VListItemMedia;
25605
- type index_d$1_VListItemSubtitle = VListItemSubtitle;
25606
- type index_d$1_VListItemTitle = VListItemTitle;
25607
- type index_d$1_VListSubheader = VListSubheader;
25608
- type index_d$1_VLocaleProvider = VLocaleProvider;
25609
- type index_d$1_VMain = VMain;
25610
- type index_d$1_VMenu = VMenu;
25611
- type index_d$1_VMessages = VMessages;
25612
- type index_d$1_VNavigationDrawer = VNavigationDrawer;
25613
- type index_d$1_VNoSsr = VNoSsr;
25614
- type index_d$1_VOverlay = VOverlay;
25615
- type index_d$1_VPagination = VPagination;
25616
- type index_d$1_VParallax = VParallax;
25617
- type index_d$1_VProgressCircular = VProgressCircular;
25618
- type index_d$1_VProgressLinear = VProgressLinear;
25619
- type index_d$1_VRadio = VRadio;
25620
- type index_d$1_VRadioGroup = VRadioGroup;
25621
- type index_d$1_VRangeSlider = VRangeSlider;
25622
- type index_d$1_VRating = VRating;
25623
- type index_d$1_VResponsive = VResponsive;
25624
- type index_d$1_VSelect = VSelect;
25625
- type index_d$1_VSelectionControl = VSelectionControl;
25626
- type index_d$1_VSelectionControlGroup = VSelectionControlGroup;
25627
- type index_d$1_VSheet = VSheet;
25628
- type index_d$1_VSlideGroup = VSlideGroup;
25629
- type index_d$1_VSlideGroupItem = VSlideGroupItem;
25630
- type index_d$1_VSlider = VSlider;
25631
- type index_d$1_VSnackbar = VSnackbar;
25632
- type index_d$1_VSwitch = VSwitch;
25633
- type index_d$1_VSystemBar = VSystemBar;
25634
- type index_d$1_VTabs = VTabs;
25635
- type index_d$1_VTab = VTab;
25636
- type index_d$1_VTable = VTable;
25637
- type index_d$1_VTextarea = VTextarea;
25638
- type index_d$1_VTextField = VTextField;
25639
- type index_d$1_VThemeProvider = VThemeProvider;
25640
- type index_d$1_VTimeline = VTimeline;
25641
- type index_d$1_VTimelineItem = VTimelineItem;
25642
- type index_d$1_VToolbar = VToolbar;
25643
- type index_d$1_VToolbarTitle = VToolbarTitle;
25644
- type index_d$1_VToolbarItems = VToolbarItems;
25645
- type index_d$1_VTooltip = VTooltip;
25646
- type index_d$1_VValidation = VValidation;
25647
- type index_d$1_VWindow = VWindow;
25648
- type index_d$1_VWindowItem = VWindowItem;
25649
- type index_d$1_VDialogTransition = VDialogTransition;
25650
- type index_d$1_VFabTransition = VFabTransition;
25651
- type index_d$1_VDialogBottomTransition = VDialogBottomTransition;
25652
- type index_d$1_VDialogTopTransition = VDialogTopTransition;
25653
- type index_d$1_VFadeTransition = VFadeTransition;
25654
- type index_d$1_VScaleTransition = VScaleTransition;
25655
- type index_d$1_VScrollXTransition = VScrollXTransition;
25656
- type index_d$1_VScrollXReverseTransition = VScrollXReverseTransition;
25657
- type index_d$1_VScrollYTransition = VScrollYTransition;
25658
- type index_d$1_VScrollYReverseTransition = VScrollYReverseTransition;
25659
- type index_d$1_VSlideXTransition = VSlideXTransition;
25660
- type index_d$1_VSlideXReverseTransition = VSlideXReverseTransition;
25661
- type index_d$1_VSlideYTransition = VSlideYTransition;
25662
- type index_d$1_VSlideYReverseTransition = VSlideYReverseTransition;
25663
- type index_d$1_VExpandTransition = VExpandTransition;
25664
- type index_d$1_VExpandXTransition = VExpandXTransition;
25567
+ declare const index_d$1_VImg: typeof VImg;
25568
+ declare const index_d$1_VInput: typeof VInput;
25569
+ declare const index_d$1_VItemGroup: typeof VItemGroup;
25570
+ declare const index_d$1_VItem: typeof VItem;
25571
+ declare const index_d$1_VKbd: typeof VKbd;
25572
+ declare const index_d$1_VLabel: typeof VLabel;
25573
+ declare const index_d$1_VLayout: typeof VLayout;
25574
+ declare const index_d$1_VLayoutItem: typeof VLayoutItem;
25575
+ declare const index_d$1_VLazy: typeof VLazy;
25576
+ declare const index_d$1_VList: typeof VList;
25577
+ declare const index_d$1_VListGroup: typeof VListGroup;
25578
+ declare const index_d$1_VListImg: typeof VListImg;
25579
+ declare const index_d$1_VListItem: typeof VListItem;
25580
+ declare const index_d$1_VListItemAction: typeof VListItemAction;
25581
+ declare const index_d$1_VListItemMedia: typeof VListItemMedia;
25582
+ declare const index_d$1_VListItemSubtitle: typeof VListItemSubtitle;
25583
+ declare const index_d$1_VListItemTitle: typeof VListItemTitle;
25584
+ declare const index_d$1_VListSubheader: typeof VListSubheader;
25585
+ declare const index_d$1_VLocaleProvider: typeof VLocaleProvider;
25586
+ declare const index_d$1_VMain: typeof VMain;
25587
+ declare const index_d$1_VMenu: typeof VMenu;
25588
+ declare const index_d$1_VMessages: typeof VMessages;
25589
+ declare const index_d$1_VNavigationDrawer: typeof VNavigationDrawer;
25590
+ declare const index_d$1_VNoSsr: typeof VNoSsr;
25591
+ declare const index_d$1_VOverlay: typeof VOverlay;
25592
+ declare const index_d$1_VPagination: typeof VPagination;
25593
+ declare const index_d$1_VParallax: typeof VParallax;
25594
+ declare const index_d$1_VProgressCircular: typeof VProgressCircular;
25595
+ declare const index_d$1_VProgressLinear: typeof VProgressLinear;
25596
+ declare const index_d$1_VRadio: typeof VRadio;
25597
+ declare const index_d$1_VRadioGroup: typeof VRadioGroup;
25598
+ declare const index_d$1_VRangeSlider: typeof VRangeSlider;
25599
+ declare const index_d$1_VRating: typeof VRating;
25600
+ declare const index_d$1_VResponsive: typeof VResponsive;
25601
+ declare const index_d$1_VSelect: typeof VSelect;
25602
+ declare const index_d$1_VSelectionControl: typeof VSelectionControl;
25603
+ declare const index_d$1_VSelectionControlGroup: typeof VSelectionControlGroup;
25604
+ declare const index_d$1_VSheet: typeof VSheet;
25605
+ declare const index_d$1_VSlideGroup: typeof VSlideGroup;
25606
+ declare const index_d$1_VSlideGroupItem: typeof VSlideGroupItem;
25607
+ declare const index_d$1_VSlider: typeof VSlider;
25608
+ declare const index_d$1_VSnackbar: typeof VSnackbar;
25609
+ declare const index_d$1_VSwitch: typeof VSwitch;
25610
+ declare const index_d$1_VSystemBar: typeof VSystemBar;
25611
+ declare const index_d$1_VTabs: typeof VTabs;
25612
+ declare const index_d$1_VTab: typeof VTab;
25613
+ declare const index_d$1_VTable: typeof VTable;
25614
+ declare const index_d$1_VTextarea: typeof VTextarea;
25615
+ declare const index_d$1_VTextField: typeof VTextField;
25616
+ declare const index_d$1_VThemeProvider: typeof VThemeProvider;
25617
+ declare const index_d$1_VTimeline: typeof VTimeline;
25618
+ declare const index_d$1_VTimelineItem: typeof VTimelineItem;
25619
+ declare const index_d$1_VToolbar: typeof VToolbar;
25620
+ declare const index_d$1_VToolbarTitle: typeof VToolbarTitle;
25621
+ declare const index_d$1_VToolbarItems: typeof VToolbarItems;
25622
+ declare const index_d$1_VTooltip: typeof VTooltip;
25623
+ declare const index_d$1_VValidation: typeof VValidation;
25624
+ declare const index_d$1_VWindow: typeof VWindow;
25625
+ declare const index_d$1_VWindowItem: typeof VWindowItem;
25626
+ declare const index_d$1_VDialogTransition: typeof VDialogTransition;
25627
+ declare const index_d$1_VFabTransition: typeof VFabTransition;
25628
+ declare const index_d$1_VDialogBottomTransition: typeof VDialogBottomTransition;
25629
+ declare const index_d$1_VDialogTopTransition: typeof VDialogTopTransition;
25630
+ declare const index_d$1_VFadeTransition: typeof VFadeTransition;
25631
+ declare const index_d$1_VScaleTransition: typeof VScaleTransition;
25632
+ declare const index_d$1_VScrollXTransition: typeof VScrollXTransition;
25633
+ declare const index_d$1_VScrollXReverseTransition: typeof VScrollXReverseTransition;
25634
+ declare const index_d$1_VScrollYTransition: typeof VScrollYTransition;
25635
+ declare const index_d$1_VScrollYReverseTransition: typeof VScrollYReverseTransition;
25636
+ declare const index_d$1_VSlideXTransition: typeof VSlideXTransition;
25637
+ declare const index_d$1_VSlideXReverseTransition: typeof VSlideXReverseTransition;
25638
+ declare const index_d$1_VSlideYTransition: typeof VSlideYTransition;
25639
+ declare const index_d$1_VSlideYReverseTransition: typeof VSlideYReverseTransition;
25640
+ declare const index_d$1_VExpandTransition: typeof VExpandTransition;
25641
+ declare const index_d$1_VExpandXTransition: typeof VExpandXTransition;
25665
25642
  declare namespace index_d$1 {
25666
25643
  export {
25667
25644
  index_d$1_VApp as VApp,
@@ -25994,12 +25971,12 @@ declare module '@vue/runtime-core' {
25994
25971
 
25995
25972
  export interface GlobalComponents {
25996
25973
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
25974
+ VForm: typeof import('vuetify/components')['VForm']
25997
25975
  VContainer: typeof import('vuetify/components')['VContainer']
25998
25976
  VCol: typeof import('vuetify/components')['VCol']
25999
25977
  VRow: typeof import('vuetify/components')['VRow']
26000
25978
  VSpacer: typeof import('vuetify/components')['VSpacer']
26001
25979
  VHover: typeof import('vuetify/components')['VHover']
26002
- VForm: typeof import('vuetify/components')['VForm']
26003
25980
  VLayout: typeof import('vuetify/components')['VLayout']
26004
25981
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
26005
25982
  VLazy: typeof import('vuetify/components')['VLazy']
@@ -26009,6 +25986,8 @@ declare module '@vue/runtime-core' {
26009
25986
  VRadio: typeof import('vuetify/components')['VRadio']
26010
25987
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
26011
25988
  VResponsive: typeof import('vuetify/components')['VResponsive']
25989
+ VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
25990
+ VValidation: typeof import('vuetify/components')['VValidation']
26012
25991
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
26013
25992
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
26014
25993
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -26026,12 +26005,13 @@ declare module '@vue/runtime-core' {
26026
26005
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
26027
26006
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
26028
26007
  VApp: typeof import('vuetify/components')['VApp']
26008
+ VAppBar: typeof import('vuetify/components')['VAppBar']
26009
+ VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
26010
+ VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
26029
26011
  VAlert: typeof import('vuetify/components')['VAlert']
26030
26012
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
26031
- VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
26032
26013
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
26033
26014
  VAvatar: typeof import('vuetify/components')['VAvatar']
26034
- VValidation: typeof import('vuetify/components')['VValidation']
26035
26015
  VBadge: typeof import('vuetify/components')['VBadge']
26036
26016
  VBanner: typeof import('vuetify/components')['VBanner']
26037
26017
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
@@ -26053,22 +26033,22 @@ declare module '@vue/runtime-core' {
26053
26033
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
26054
26034
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
26055
26035
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
26056
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
26057
26036
  VChip: typeof import('vuetify/components')['VChip']
26037
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
26058
26038
  VCode: typeof import('vuetify/components')['VCode']
26059
26039
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
26060
26040
  VCombobox: typeof import('vuetify/components')['VCombobox']
26061
26041
  VCounter: typeof import('vuetify/components')['VCounter']
26062
26042
  VDialog: typeof import('vuetify/components')['VDialog']
26063
26043
  VDivider: typeof import('vuetify/components')['VDivider']
26064
- VField: typeof import('vuetify/components')['VField']
26065
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
26066
26044
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
26067
26045
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
26068
26046
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
26069
26047
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
26070
- VFooter: typeof import('vuetify/components')['VFooter']
26048
+ VField: typeof import('vuetify/components')['VField']
26049
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
26071
26050
  VFileInput: typeof import('vuetify/components')['VFileInput']
26051
+ VFooter: typeof import('vuetify/components')['VFooter']
26072
26052
  VIcon: typeof import('vuetify/components')['VIcon']
26073
26053
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
26074
26054
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
@@ -26076,10 +26056,10 @@ declare module '@vue/runtime-core' {
26076
26056
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
26077
26057
  VImg: typeof import('vuetify/components')['VImg']
26078
26058
  VInput: typeof import('vuetify/components')['VInput']
26079
- VKbd: typeof import('vuetify/components')['VKbd']
26080
- VLabel: typeof import('vuetify/components')['VLabel']
26081
26059
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
26082
26060
  VItem: typeof import('vuetify/components')['VItem']
26061
+ VKbd: typeof import('vuetify/components')['VKbd']
26062
+ VLabel: typeof import('vuetify/components')['VLabel']
26083
26063
  VList: typeof import('vuetify/components')['VList']
26084
26064
  VListGroup: typeof import('vuetify/components')['VListGroup']
26085
26065
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -26111,9 +26091,9 @@ declare module '@vue/runtime-core' {
26111
26091
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
26112
26092
  VTabs: typeof import('vuetify/components')['VTabs']
26113
26093
  VTab: typeof import('vuetify/components')['VTab']
26094
+ VTable: typeof import('vuetify/components')['VTable']
26114
26095
  VTextarea: typeof import('vuetify/components')['VTextarea']
26115
26096
  VTextField: typeof import('vuetify/components')['VTextField']
26116
- VTable: typeof import('vuetify/components')['VTable']
26117
26097
  VTimeline: typeof import('vuetify/components')['VTimeline']
26118
26098
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
26119
26099
  VToolbar: typeof import('vuetify/components')['VToolbar']
@@ -26122,8 +26102,5 @@ declare module '@vue/runtime-core' {
26122
26102
  VTooltip: typeof import('vuetify/components')['VTooltip']
26123
26103
  VWindow: typeof import('vuetify/components')['VWindow']
26124
26104
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
26125
- VAppBar: typeof import('vuetify/components')['VAppBar']
26126
- VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
26127
- VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
26128
26105
  }
26129
26106
  }