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.
- package/_settings.scss +1 -0
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +452 -4
- package/dist/json/importMap-labs.json +28 -0
- package/dist/json/importMap.json +50 -50
- package/dist/json/tags.json +154 -8
- package/dist/json/web-types.json +1514 -18
- package/dist/vuetify-labs.d.ts +875 -0
- package/dist/vuetify-labs.js +9748 -0
- package/dist/vuetify.css +34 -55
- package/dist/vuetify.d.ts +169 -192
- package/dist/vuetify.esm.js +141 -103
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +140 -102
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +783 -777
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.ts +3 -2
- package/lib/blueprints/md1.d.ts +3 -2
- package/lib/blueprints/md2.d.ts +3 -2
- package/lib/blueprints/md3.d.ts +3 -2
- package/lib/components/VAlert/VAlertTitle.mjs.map +1 -1
- package/lib/components/VAlert/index.d.ts +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +8 -10
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.ts +3 -12
- package/lib/components/VAvatar/VAvatar.mjs +2 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs +23 -20
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs +21 -2
- package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/index.d.ts +4 -15
- package/lib/components/VCombobox/VCombobox.mjs +8 -10
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.ts +3 -12
- package/lib/components/VDivider/VDivider.css +1 -1
- package/lib/components/VDivider/VDivider.sass +1 -0
- package/lib/components/VDivider/_variables.scss +2 -1
- package/lib/components/VIcon/VIcon.mjs +25 -20
- package/lib/components/VIcon/VIcon.mjs.map +1 -1
- package/lib/components/VIcon/index.d.ts +4 -8
- package/lib/components/VList/VListItem.css +0 -4
- package/lib/components/VList/VListItem.sass +12 -6
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +10 -2
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.ts +11 -3
- package/lib/components/VSelect/VSelect.mjs +11 -8
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VTable/VTable.css +12 -29
- package/lib/components/VTable/VTable.mjs +3 -3
- package/lib/components/VTable/VTable.mjs.map +1 -1
- package/lib/components/VTable/VTable.sass +10 -17
- package/lib/components/VTable/_variables.scss +4 -2
- package/lib/components/index.d.ts +26 -50
- package/lib/composables/filter.mjs +18 -10
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/composables/icons.mjs +12 -7
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/fa-svg.d.ts +3 -2
- package/lib/iconsets/fa.d.ts +3 -2
- package/lib/iconsets/fa.mjs +2 -1
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.d.ts +3 -2
- package/lib/iconsets/fa4.mjs +2 -1
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.d.ts +3 -2
- package/lib/iconsets/md.mjs +2 -1
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.d.ts +3 -2
- package/lib/iconsets/mdi-svg.mjs +2 -1
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.d.ts +3 -2
- package/lib/iconsets/mdi.mjs +2 -1
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.ts +16 -15
- package/lib/labs/VDataTable/VDataTable.css +119 -0
- package/lib/labs/VDataTable/VDataTable.mjs +146 -0
- package/lib/labs/VDataTable/VDataTable.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTable.sass +106 -0
- package/lib/labs/VDataTable/VDataTableColumn.mjs +37 -0
- package/lib/labs/VDataTable/VDataTableColumn.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableFooter.css +22 -0
- package/lib/labs/VDataTable/VDataTableFooter.mjs +105 -0
- package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableFooter.sass +23 -0
- package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs +88 -0
- package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableHeaders.mjs +143 -0
- package/lib/labs/VDataTable/VDataTableHeaders.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableRow.mjs +75 -0
- package/lib/labs/VDataTable/VDataTableRow.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableRows.mjs +87 -0
- package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableServer.mjs +124 -0
- package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +154 -0
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -0
- package/lib/labs/VDataTable/_variables.scss +6 -0
- package/lib/labs/VDataTable/composables/expand.mjs +51 -0
- package/lib/labs/VDataTable/composables/expand.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/group.mjs +124 -0
- package/lib/labs/VDataTable/composables/group.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/headers.mjs +152 -0
- package/lib/labs/VDataTable/composables/headers.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/items.mjs +30 -0
- package/lib/labs/VDataTable/composables/items.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/options.mjs +44 -0
- package/lib/labs/VDataTable/composables/options.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/paginate.mjs +62 -0
- package/lib/labs/VDataTable/composables/paginate.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/select.mjs +57 -0
- package/lib/labs/VDataTable/composables/select.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/sort.mjs +109 -0
- package/lib/labs/VDataTable/composables/sort.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/virtual.mjs +77 -0
- package/lib/labs/VDataTable/composables/virtual.mjs.map +1 -0
- package/lib/labs/VDataTable/index.d.ts +705 -0
- package/lib/labs/VDataTable/index.mjs +6 -0
- package/lib/labs/VDataTable/index.mjs.map +1 -0
- package/lib/labs/VDataTable/types.mjs +2 -0
- package/lib/labs/VDataTable/types.mjs.map +1 -0
- package/lib/labs/VVirtualScroll/VVirtualScroll.css +11 -0
- package/lib/labs/VVirtualScroll/VVirtualScroll.mjs +118 -0
- package/lib/labs/VVirtualScroll/VVirtualScroll.mjs.map +1 -0
- package/lib/{components → labs}/VVirtualScroll/VVirtualScroll.sass +0 -5
- package/lib/labs/VVirtualScroll/VVirtualScrollItem.mjs +35 -0
- package/lib/labs/VVirtualScroll/VVirtualScrollItem.mjs.map +1 -0
- package/lib/labs/VVirtualScroll/index.d.ts +154 -0
- package/lib/labs/VVirtualScroll/index.mjs +2 -0
- package/lib/labs/VVirtualScroll/index.mjs.map +1 -0
- package/lib/labs/components.d.ts +856 -0
- package/lib/labs/components.mjs +3 -0
- package/lib/labs/components.mjs.map +1 -0
- package/lib/labs/index.mjs +3 -0
- package/lib/labs/index.mjs.map +1 -0
- package/lib/util/defineComponent.mjs +4 -0
- package/lib/util/defineComponent.mjs.map +1 -1
- package/lib/util/helpers.mjs +0 -38
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +4 -2
- package/lib/components/VDataTable/MobileRow.mjs +0 -63
- package/lib/components/VDataTable/MobileRow.mjs.map +0 -1
- package/lib/components/VDataTable/Row.mjs +0 -57
- package/lib/components/VDataTable/Row.mjs.map +0 -1
- package/lib/components/VDataTable/RowGroup.mjs +0 -48
- package/lib/components/VDataTable/RowGroup.mjs.map +0 -1
- package/lib/components/VDataTable/VDataTable.mjs +0 -577
- package/lib/components/VDataTable/VDataTable.mjs.map +0 -1
- package/lib/components/VDataTable/VDataTable.sass +0 -98
- package/lib/components/VDataTable/VDataTableHeader.mjs +0 -42
- package/lib/components/VDataTable/VDataTableHeader.mjs.map +0 -1
- package/lib/components/VDataTable/VDataTableHeader.sass +0 -80
- package/lib/components/VDataTable/VDataTableHeaderDesktop.mjs +0 -96
- package/lib/components/VDataTable/VDataTableHeaderDesktop.mjs.map +0 -1
- package/lib/components/VDataTable/VDataTableHeaderMobile.mjs +0 -89
- package/lib/components/VDataTable/VDataTableHeaderMobile.mjs.map +0 -1
- package/lib/components/VDataTable/VEditDialog.mjs +0 -127
- package/lib/components/VDataTable/VEditDialog.mjs.map +0 -1
- package/lib/components/VDataTable/VEditDialog.sass +0 -22
- package/lib/components/VDataTable/VVirtualTable.mjs +0 -132
- package/lib/components/VDataTable/VVirtualTable.mjs.map +0 -1
- package/lib/components/VDataTable/VVirtualTable.sass +0 -13
- package/lib/components/VDataTable/_variables.scss +0 -24
- package/lib/components/VDataTable/index.mjs +0 -21
- package/lib/components/VDataTable/index.mjs.map +0 -1
- package/lib/components/VDataTable/mixins/header.mjs +0 -71
- package/lib/components/VDataTable/mixins/header.mjs.map +0 -1
- package/lib/components/VVirtualScroll/VVirtualScroll.mjs +0 -108
- package/lib/components/VVirtualScroll/VVirtualScroll.mjs.map +0 -1
- package/lib/components/VVirtualScroll/index.mjs +0 -4
- 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
|
-
|
|
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
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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:
|
|
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:
|
|
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
|
-
|
|
25534
|
-
|
|
25535
|
-
|
|
25536
|
-
|
|
25537
|
-
|
|
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
|
-
|
|
25540
|
-
|
|
25541
|
-
|
|
25542
|
-
|
|
25543
|
-
|
|
25544
|
-
|
|
25545
|
-
|
|
25546
|
-
|
|
25547
|
-
|
|
25548
|
-
|
|
25549
|
-
|
|
25550
|
-
|
|
25551
|
-
|
|
25552
|
-
|
|
25553
|
-
|
|
25554
|
-
|
|
25555
|
-
|
|
25556
|
-
|
|
25557
|
-
|
|
25558
|
-
|
|
25559
|
-
|
|
25560
|
-
|
|
25561
|
-
|
|
25562
|
-
|
|
25563
|
-
|
|
25564
|
-
|
|
25565
|
-
|
|
25566
|
-
|
|
25567
|
-
|
|
25568
|
-
|
|
25569
|
-
|
|
25570
|
-
|
|
25571
|
-
|
|
25572
|
-
|
|
25573
|
-
|
|
25574
|
-
|
|
25575
|
-
|
|
25576
|
-
|
|
25577
|
-
|
|
25578
|
-
|
|
25579
|
-
|
|
25580
|
-
|
|
25581
|
-
|
|
25582
|
-
|
|
25583
|
-
|
|
25584
|
-
|
|
25585
|
-
|
|
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
|
-
|
|
25591
|
-
|
|
25592
|
-
|
|
25593
|
-
|
|
25594
|
-
|
|
25595
|
-
|
|
25596
|
-
|
|
25597
|
-
|
|
25598
|
-
|
|
25599
|
-
|
|
25600
|
-
|
|
25601
|
-
|
|
25602
|
-
|
|
25603
|
-
|
|
25604
|
-
|
|
25605
|
-
|
|
25606
|
-
|
|
25607
|
-
|
|
25608
|
-
|
|
25609
|
-
|
|
25610
|
-
|
|
25611
|
-
|
|
25612
|
-
|
|
25613
|
-
|
|
25614
|
-
|
|
25615
|
-
|
|
25616
|
-
|
|
25617
|
-
|
|
25618
|
-
|
|
25619
|
-
|
|
25620
|
-
|
|
25621
|
-
|
|
25622
|
-
|
|
25623
|
-
|
|
25624
|
-
|
|
25625
|
-
|
|
25626
|
-
|
|
25627
|
-
|
|
25628
|
-
|
|
25629
|
-
|
|
25630
|
-
|
|
25631
|
-
|
|
25632
|
-
|
|
25633
|
-
|
|
25634
|
-
|
|
25635
|
-
|
|
25636
|
-
|
|
25637
|
-
|
|
25638
|
-
|
|
25639
|
-
|
|
25640
|
-
|
|
25641
|
-
|
|
25642
|
-
|
|
25643
|
-
|
|
25644
|
-
|
|
25645
|
-
|
|
25646
|
-
|
|
25647
|
-
|
|
25648
|
-
|
|
25649
|
-
|
|
25650
|
-
|
|
25651
|
-
|
|
25652
|
-
|
|
25653
|
-
|
|
25654
|
-
|
|
25655
|
-
|
|
25656
|
-
|
|
25657
|
-
|
|
25658
|
-
|
|
25659
|
-
|
|
25660
|
-
|
|
25661
|
-
|
|
25662
|
-
|
|
25663
|
-
|
|
25664
|
-
|
|
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
|
-
|
|
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
|
}
|