@vuetify/nightly 3.8.4-dev.2025-05-07 → 3.8.4-master.2025-05-07
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/CHANGELOG.md +3 -20
- package/dist/json/attributes.json +2498 -2506
- package/dist/json/importMap-labs.json +28 -28
- package/dist/json/importMap.json +138 -138
- package/dist/json/tags.json +0 -2
- package/dist/json/web-types.json +4444 -4464
- package/dist/vuetify-labs.cjs +31 -111
- package/dist/vuetify-labs.css +5389 -5412
- package/dist/vuetify-labs.d.ts +60 -93
- package/dist/vuetify-labs.esm.js +32 -112
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +31 -111
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +31 -111
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5755 -5778
- package/dist/vuetify.d.ts +60 -93
- package/dist/vuetify.esm.js +32 -112
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +31 -111
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1172 -1178
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.css +7 -30
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +32 -58
- package/lib/components/VBtnGroup/VBtnGroup.js +3 -7
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +17 -44
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +0 -25
- package/lib/components/VInput/VInput.d.ts +1 -1
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/composables/calendar.d.ts +0 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/theme.d.ts +1 -6
- package/lib/composables/theme.js +26 -94
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +1 -6
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +50 -55
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/util/globals.d.ts +0 -1
- package/lib/util/globals.js +0 -1
- package/lib/util/globals.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -133,12 +133,11 @@ type DeepPartial<T> = T extends object ? {
|
|
133
133
|
} : T;
|
134
134
|
type ThemeOptions = false | {
|
135
135
|
cspNonce?: string;
|
136
|
-
defaultTheme?:
|
136
|
+
defaultTheme?: string;
|
137
137
|
variations?: false | VariationsOptions;
|
138
138
|
themes?: Record<string, ThemeDefinition>;
|
139
139
|
stylesheetId?: string;
|
140
140
|
scope?: string;
|
141
|
-
unimportant?: boolean;
|
142
141
|
};
|
143
142
|
type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
|
144
143
|
interface VariationsOptions {
|
@@ -175,15 +174,11 @@ interface OnColors {
|
|
175
174
|
'on-info': string;
|
176
175
|
}
|
177
176
|
interface ThemeInstance {
|
178
|
-
change: (themeName: string) => void;
|
179
|
-
cycle: (themeArray?: string[]) => void;
|
180
|
-
toggle: (themeArray?: [string, string]) => void;
|
181
177
|
readonly isDisabled: boolean;
|
182
178
|
readonly themes: Ref<Record<string, InternalThemeDefinition>>;
|
183
179
|
readonly name: Readonly<Ref<string>>;
|
184
180
|
readonly current: DeepReadonly<Ref<InternalThemeDefinition>>;
|
185
181
|
readonly computedThemes: DeepReadonly<Ref<Record<string, InternalThemeDefinition>>>;
|
186
|
-
readonly prefix: string;
|
187
182
|
readonly themeClasses: Readonly<Ref<string | undefined>>;
|
188
183
|
readonly styles: Readonly<Ref<string>>;
|
189
184
|
readonly global: {
|
@@ -22141,7 +22136,6 @@ type VBtn = InstanceType<typeof VBtn>;
|
|
22141
22136
|
declare const VBtnGroup: {
|
22142
22137
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
22143
22138
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22144
|
-
direction: "horizontal" | "vertical";
|
22145
22139
|
style: vue.StyleValue;
|
22146
22140
|
tag: string | JSXComponent;
|
22147
22141
|
density: Density;
|
@@ -22166,7 +22160,6 @@ declare const VBtnGroup: {
|
|
22166
22160
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
22167
22161
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
22168
22162
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22169
|
-
direction: "horizontal" | "vertical";
|
22170
22163
|
style: vue.StyleValue;
|
22171
22164
|
tag: string | JSXComponent;
|
22172
22165
|
density: Density;
|
@@ -22184,7 +22177,6 @@ declare const VBtnGroup: {
|
|
22184
22177
|
Defaults: {};
|
22185
22178
|
}, {
|
22186
22179
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22187
|
-
direction: "horizontal" | "vertical";
|
22188
22180
|
style: vue.StyleValue;
|
22189
22181
|
tag: string | JSXComponent;
|
22190
22182
|
density: Density;
|
@@ -22209,7 +22201,6 @@ declare const VBtnGroup: {
|
|
22209
22201
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
22210
22202
|
}, {}, {}, {}, {}, {
|
22211
22203
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22212
|
-
direction: "horizontal" | "vertical";
|
22213
22204
|
style: vue.StyleValue;
|
22214
22205
|
tag: string | JSXComponent;
|
22215
22206
|
density: Density;
|
@@ -22222,7 +22213,6 @@ declare const VBtnGroup: {
|
|
22222
22213
|
__isSuspense?: never;
|
22223
22214
|
} & vue.ComponentOptionsBase<{
|
22224
22215
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22225
|
-
direction: "horizontal" | "vertical";
|
22226
22216
|
style: vue.StyleValue;
|
22227
22217
|
tag: string | JSXComponent;
|
22228
22218
|
density: Density;
|
@@ -22247,7 +22237,6 @@ declare const VBtnGroup: {
|
|
22247
22237
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
22248
22238
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
22249
22239
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22250
|
-
direction: "horizontal" | "vertical";
|
22251
22240
|
style: vue.StyleValue;
|
22252
22241
|
tag: string | JSXComponent;
|
22253
22242
|
density: Density;
|
@@ -22259,13 +22248,13 @@ declare const VBtnGroup: {
|
|
22259
22248
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
22260
22249
|
color: StringConstructor;
|
22261
22250
|
variant: {
|
22262
|
-
type: PropType<Variant$2>;
|
22251
|
+
type: vue.PropType<Variant$2>;
|
22263
22252
|
default: string;
|
22264
22253
|
validator: (v: any) => boolean;
|
22265
22254
|
};
|
22266
22255
|
theme: StringConstructor;
|
22267
22256
|
tag: {
|
22268
|
-
type: PropType<string | JSXComponent>;
|
22257
|
+
type: vue.PropType<string | JSXComponent>;
|
22269
22258
|
default: string;
|
22270
22259
|
};
|
22271
22260
|
rounded: {
|
@@ -22278,32 +22267,28 @@ declare const VBtnGroup: {
|
|
22278
22267
|
validator(v: any): boolean;
|
22279
22268
|
};
|
22280
22269
|
density: {
|
22281
|
-
type: PropType<Density>;
|
22270
|
+
type: vue.PropType<Density>;
|
22282
22271
|
default: string;
|
22283
22272
|
validator: (v: any) => boolean;
|
22284
22273
|
};
|
22285
|
-
class: PropType<ClassValue>;
|
22274
|
+
class: vue.PropType<ClassValue>;
|
22286
22275
|
style: {
|
22287
|
-
type: PropType<vue.StyleValue>;
|
22276
|
+
type: vue.PropType<vue.StyleValue>;
|
22288
22277
|
default: null;
|
22289
22278
|
};
|
22290
22279
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
22291
22280
|
baseColor: StringConstructor;
|
22292
22281
|
divided: BooleanConstructor;
|
22293
|
-
direction: {
|
22294
|
-
type: PropType<"horizontal" | "vertical">;
|
22295
|
-
default: string;
|
22296
|
-
};
|
22297
22282
|
}, vue.ExtractPropTypes<{
|
22298
22283
|
color: StringConstructor;
|
22299
22284
|
variant: {
|
22300
|
-
type: PropType<Variant$2>;
|
22285
|
+
type: vue.PropType<Variant$2>;
|
22301
22286
|
default: string;
|
22302
22287
|
validator: (v: any) => boolean;
|
22303
22288
|
};
|
22304
22289
|
theme: StringConstructor;
|
22305
22290
|
tag: {
|
22306
|
-
type: PropType<string | JSXComponent>;
|
22291
|
+
type: vue.PropType<string | JSXComponent>;
|
22307
22292
|
default: string;
|
22308
22293
|
};
|
22309
22294
|
rounded: {
|
@@ -22316,22 +22301,18 @@ declare const VBtnGroup: {
|
|
22316
22301
|
validator(v: any): boolean;
|
22317
22302
|
};
|
22318
22303
|
density: {
|
22319
|
-
type: PropType<Density>;
|
22304
|
+
type: vue.PropType<Density>;
|
22320
22305
|
default: string;
|
22321
22306
|
validator: (v: any) => boolean;
|
22322
22307
|
};
|
22323
|
-
class: PropType<ClassValue>;
|
22308
|
+
class: vue.PropType<ClassValue>;
|
22324
22309
|
style: {
|
22325
|
-
type: PropType<vue.StyleValue>;
|
22310
|
+
type: vue.PropType<vue.StyleValue>;
|
22326
22311
|
default: null;
|
22327
22312
|
};
|
22328
22313
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
22329
22314
|
baseColor: StringConstructor;
|
22330
22315
|
divided: BooleanConstructor;
|
22331
|
-
direction: {
|
22332
|
-
type: PropType<"horizontal" | "vertical">;
|
22333
|
-
default: string;
|
22334
|
-
};
|
22335
22316
|
}>>;
|
22336
22317
|
type VBtnGroup = InstanceType<typeof VBtnGroup>;
|
22337
22318
|
|
@@ -22344,7 +22325,6 @@ type VBtnToggleSlots = {
|
|
22344
22325
|
declare const VBtnToggle: {
|
22345
22326
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
22346
22327
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22347
|
-
direction: "horizontal" | "vertical";
|
22348
22328
|
style: vue.StyleValue;
|
22349
22329
|
disabled: boolean;
|
22350
22330
|
multiple: boolean;
|
@@ -22371,7 +22351,6 @@ declare const VBtnToggle: {
|
|
22371
22351
|
'update:modelValue': (value: any) => true;
|
22372
22352
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
22373
22353
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22374
|
-
direction: "horizontal" | "vertical";
|
22375
22354
|
style: vue.StyleValue;
|
22376
22355
|
disabled: boolean;
|
22377
22356
|
multiple: boolean;
|
@@ -22391,7 +22370,6 @@ declare const VBtnToggle: {
|
|
22391
22370
|
Defaults: {};
|
22392
22371
|
}, {
|
22393
22372
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22394
|
-
direction: "horizontal" | "vertical";
|
22395
22373
|
style: vue.StyleValue;
|
22396
22374
|
disabled: boolean;
|
22397
22375
|
multiple: boolean;
|
@@ -22416,7 +22394,6 @@ declare const VBtnToggle: {
|
|
22416
22394
|
select: (id: string, value: boolean) => void;
|
22417
22395
|
}, {}, {}, {}, {
|
22418
22396
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22419
|
-
direction: "horizontal" | "vertical";
|
22420
22397
|
style: vue.StyleValue;
|
22421
22398
|
disabled: boolean;
|
22422
22399
|
multiple: boolean;
|
@@ -22431,7 +22408,6 @@ declare const VBtnToggle: {
|
|
22431
22408
|
__isSuspense?: never;
|
22432
22409
|
} & vue.ComponentOptionsBase<{
|
22433
22410
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22434
|
-
direction: "horizontal" | "vertical";
|
22435
22411
|
style: vue.StyleValue;
|
22436
22412
|
disabled: boolean;
|
22437
22413
|
multiple: boolean;
|
@@ -22458,7 +22434,6 @@ declare const VBtnToggle: {
|
|
22458
22434
|
'update:modelValue': (value: any) => true;
|
22459
22435
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, string, {
|
22460
22436
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
22461
|
-
direction: "horizontal" | "vertical";
|
22462
22437
|
style: vue.StyleValue;
|
22463
22438
|
disabled: boolean;
|
22464
22439
|
multiple: boolean;
|
@@ -22515,10 +22490,6 @@ declare const VBtnToggle: {
|
|
22515
22490
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
22516
22491
|
baseColor: StringConstructor;
|
22517
22492
|
divided: BooleanConstructor;
|
22518
|
-
direction: {
|
22519
|
-
type: vue.PropType<"horizontal" | "vertical">;
|
22520
|
-
default: string;
|
22521
|
-
};
|
22522
22493
|
}, vue.ExtractPropTypes<{
|
22523
22494
|
modelValue: {
|
22524
22495
|
type: null;
|
@@ -22562,10 +22533,6 @@ declare const VBtnToggle: {
|
|
22562
22533
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
22563
22534
|
baseColor: StringConstructor;
|
22564
22535
|
divided: BooleanConstructor;
|
22565
|
-
direction: {
|
22566
|
-
type: vue.PropType<"horizontal" | "vertical">;
|
22567
|
-
default: string;
|
22568
|
-
};
|
22569
22536
|
}>>;
|
22570
22537
|
type VBtnToggle = InstanceType<typeof VBtnToggle>;
|
22571
22538
|
|
@@ -85906,20 +85873,23 @@ declare module 'vue' {
|
|
85906
85873
|
}
|
85907
85874
|
export interface GlobalComponents {
|
85908
85875
|
VApp: VApp
|
85876
|
+
VAppBar: VAppBar
|
85877
|
+
VAppBarNavIcon: VAppBarNavIcon
|
85878
|
+
VAppBarTitle: VAppBarTitle
|
85909
85879
|
VAlert: VAlert
|
85910
85880
|
VAlertTitle: VAlertTitle
|
85911
85881
|
VAvatar: VAvatar
|
85912
|
-
VBadge: VBadge
|
85913
85882
|
VAutocomplete: VAutocomplete
|
85914
|
-
VBottomSheet: VBottomSheet
|
85915
85883
|
VBanner: VBanner
|
85916
85884
|
VBannerActions: VBannerActions
|
85917
85885
|
VBannerText: VBannerText
|
85886
|
+
VBottomSheet: VBottomSheet
|
85918
85887
|
VBreadcrumbs: VBreadcrumbs
|
85919
85888
|
VBreadcrumbsItem: VBreadcrumbsItem
|
85920
85889
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
85921
|
-
|
85890
|
+
VBadge: VBadge
|
85922
85891
|
VBtn: VBtn
|
85892
|
+
VBtnToggle: VBtnToggle
|
85923
85893
|
VCard: VCard
|
85924
85894
|
VCardActions: VCardActions
|
85925
85895
|
VCardItem: VCardItem
|
@@ -85927,17 +85897,14 @@ declare module 'vue' {
|
|
85927
85897
|
VCardText: VCardText
|
85928
85898
|
VCardTitle: VCardTitle
|
85929
85899
|
VBtnGroup: VBtnGroup
|
85900
|
+
VCarousel: VCarousel
|
85901
|
+
VCarouselItem: VCarouselItem
|
85930
85902
|
VCheckbox: VCheckbox
|
85931
85903
|
VCheckboxBtn: VCheckboxBtn
|
85932
|
-
VBtnToggle: VBtnToggle
|
85933
85904
|
VChip: VChip
|
85934
|
-
|
85935
|
-
VCarouselItem: VCarouselItem
|
85936
|
-
VChipGroup: VChipGroup
|
85937
|
-
VCode: VCode
|
85938
|
-
VColorPicker: VColorPicker
|
85905
|
+
VBottomNavigation: VBottomNavigation
|
85939
85906
|
VCombobox: VCombobox
|
85940
|
-
|
85907
|
+
VColorPicker: VColorPicker
|
85941
85908
|
VDataTable: VDataTable
|
85942
85909
|
VDataTableHeaders: VDataTableHeaders
|
85943
85910
|
VDataTableFooter: VDataTableFooter
|
@@ -85945,24 +85912,28 @@ declare module 'vue' {
|
|
85945
85912
|
VDataTableRow: VDataTableRow
|
85946
85913
|
VDataTableVirtual: VDataTableVirtual
|
85947
85914
|
VDataTableServer: VDataTableServer
|
85915
|
+
VChipGroup: VChipGroup
|
85916
|
+
VDivider: VDivider
|
85917
|
+
VCounter: VCounter
|
85918
|
+
VDialog: VDialog
|
85919
|
+
VCode: VCode
|
85948
85920
|
VDatePicker: VDatePicker
|
85949
85921
|
VDatePickerControls: VDatePickerControls
|
85950
85922
|
VDatePickerHeader: VDatePickerHeader
|
85951
85923
|
VDatePickerMonth: VDatePickerMonth
|
85952
85924
|
VDatePickerMonths: VDatePickerMonths
|
85953
85925
|
VDatePickerYears: VDatePickerYears
|
85954
|
-
VDialog: VDialog
|
85955
85926
|
VEmptyState: VEmptyState
|
85956
|
-
VFileInput: VFileInput
|
85957
|
-
VDivider: VDivider
|
85958
|
-
VFab: VFab
|
85959
85927
|
VExpansionPanels: VExpansionPanels
|
85960
85928
|
VExpansionPanel: VExpansionPanel
|
85961
85929
|
VExpansionPanelText: VExpansionPanelText
|
85962
85930
|
VExpansionPanelTitle: VExpansionPanelTitle
|
85963
|
-
|
85931
|
+
VFab: VFab
|
85964
85932
|
VField: VField
|
85965
85933
|
VFieldLabel: VFieldLabel
|
85934
|
+
VFileInput: VFileInput
|
85935
|
+
VFooter: VFooter
|
85936
|
+
VImg: VImg
|
85966
85937
|
VIcon: VIcon
|
85967
85938
|
VComponentIcon: VComponentIcon
|
85968
85939
|
VSvgIcon: VSvgIcon
|
@@ -85971,12 +85942,11 @@ declare module 'vue' {
|
|
85971
85942
|
VInfiniteScroll: VInfiniteScroll
|
85972
85943
|
VItemGroup: VItemGroup
|
85973
85944
|
VItem: VItem
|
85974
|
-
VKbd: VKbd
|
85975
|
-
VAppBar: VAppBar
|
85976
|
-
VAppBarNavIcon: VAppBarNavIcon
|
85977
|
-
VAppBarTitle: VAppBarTitle
|
85978
85945
|
VInput: VInput
|
85946
|
+
VKbd: VKbd
|
85979
85947
|
VLabel: VLabel
|
85948
|
+
VMain: VMain
|
85949
|
+
VMenu: VMenu
|
85980
85950
|
VList: VList
|
85981
85951
|
VListGroup: VListGroup
|
85982
85952
|
VListImg: VListImg
|
@@ -85986,26 +85956,24 @@ declare module 'vue' {
|
|
85986
85956
|
VListItemSubtitle: VListItemSubtitle
|
85987
85957
|
VListItemTitle: VListItemTitle
|
85988
85958
|
VListSubheader: VListSubheader
|
85989
|
-
VMain: VMain
|
85990
|
-
VMessages: VMessages
|
85991
85959
|
VOtpInput: VOtpInput
|
85992
|
-
VMenu: VMenu
|
85993
85960
|
VNumberInput: VNumberInput
|
85994
|
-
VNavigationDrawer: VNavigationDrawer
|
85995
85961
|
VOverlay: VOverlay
|
85996
|
-
|
85962
|
+
VMessages: VMessages
|
85997
85963
|
VPagination: VPagination
|
85964
|
+
VProgressCircular: VProgressCircular
|
85965
|
+
VProgressLinear: VProgressLinear
|
85998
85966
|
VRadioGroup: VRadioGroup
|
85999
85967
|
VRating: VRating
|
86000
|
-
|
86001
|
-
VProgressLinear: VProgressLinear
|
85968
|
+
VSelectionControlGroup: VSelectionControlGroup
|
86002
85969
|
VSheet: VSheet
|
86003
|
-
|
86004
|
-
VSelectionControl: VSelectionControl
|
86005
|
-
VSnackbar: VSnackbar
|
85970
|
+
VSelect: VSelect
|
86006
85971
|
VSkeletonLoader: VSkeletonLoader
|
86007
85972
|
VSlideGroup: VSlideGroup
|
86008
85973
|
VSlideGroupItem: VSlideGroupItem
|
85974
|
+
VSlider: VSlider
|
85975
|
+
VSnackbar: VSnackbar
|
85976
|
+
VSelectionControl: VSelectionControl
|
86009
85977
|
VStepper: VStepper
|
86010
85978
|
VStepperActions: VStepperActions
|
86011
85979
|
VStepperHeader: VStepperHeader
|
@@ -86014,42 +85982,40 @@ declare module 'vue' {
|
|
86014
85982
|
VStepperWindowItem: VStepperWindowItem
|
86015
85983
|
VSwitch: VSwitch
|
86016
85984
|
VSystemBar: VSystemBar
|
86017
|
-
VTab: VTab
|
86018
|
-
VTabs: VTabs
|
86019
|
-
VTabsWindow: VTabsWindow
|
86020
|
-
VTabsWindowItem: VTabsWindowItem
|
86021
85985
|
VTable: VTable
|
85986
|
+
VTextField: VTextField
|
86022
85987
|
VTextarea: VTextarea
|
86023
85988
|
VToolbar: VToolbar
|
86024
85989
|
VToolbarTitle: VToolbarTitle
|
86025
85990
|
VToolbarItems: VToolbarItems
|
86026
|
-
VTextField: VTextField
|
86027
85991
|
VTooltip: VTooltip
|
86028
85992
|
VTimeline: VTimeline
|
86029
85993
|
VTimelineItem: VTimelineItem
|
86030
85994
|
VWindow: VWindow
|
86031
85995
|
VWindowItem: VWindowItem
|
85996
|
+
VNavigationDrawer: VNavigationDrawer
|
86032
85997
|
VConfirmEdit: VConfirmEdit
|
86033
|
-
VDataIterator: VDataIterator
|
86034
85998
|
VDefaultsProvider: VDefaultsProvider
|
85999
|
+
VDataIterator: VDataIterator
|
86000
|
+
VForm: VForm
|
86035
86001
|
VContainer: VContainer
|
86036
86002
|
VCol: VCol
|
86037
86003
|
VRow: VRow
|
86038
86004
|
VSpacer: VSpacer
|
86039
|
-
VForm: VForm
|
86040
86005
|
VHover: VHover
|
86041
86006
|
VLayout: VLayout
|
86042
86007
|
VLayoutItem: VLayoutItem
|
86043
86008
|
VLazy: VLazy
|
86044
|
-
VParallax: VParallax
|
86045
86009
|
VLocaleProvider: VLocaleProvider
|
86046
86010
|
VNoSsr: VNoSsr
|
86047
86011
|
VRadio: VRadio
|
86012
|
+
VParallax: VParallax
|
86048
86013
|
VRangeSlider: VRangeSlider
|
86049
86014
|
VResponsive: VResponsive
|
86050
86015
|
VSnackbarQueue: VSnackbarQueue
|
86051
86016
|
VSparkline: VSparkline
|
86052
|
-
|
86017
|
+
VSpeedDial: VSpeedDial
|
86018
|
+
VValidation: VValidation
|
86053
86019
|
VThemeProvider: VThemeProvider
|
86054
86020
|
VVirtualScroll: VVirtualScroll
|
86055
86021
|
VFabTransition: VFabTransition
|
@@ -86068,29 +86034,30 @@ declare module 'vue' {
|
|
86068
86034
|
VExpandTransition: VExpandTransition
|
86069
86035
|
VExpandXTransition: VExpandXTransition
|
86070
86036
|
VDialogTransition: VDialogTransition
|
86071
|
-
|
86072
|
-
|
86073
|
-
|
86037
|
+
VTab: VTab
|
86038
|
+
VTabs: VTabs
|
86039
|
+
VTabsWindow: VTabsWindow
|
86040
|
+
VTabsWindowItem: VTabsWindowItem
|
86041
|
+
VFileUpload: VFileUpload
|
86042
|
+
VFileUploadItem: VFileUploadItem
|
86043
|
+
VIconBtn: VIconBtn
|
86074
86044
|
VCalendar: VCalendar
|
86075
86045
|
VCalendarDay: VCalendarDay
|
86076
86046
|
VCalendarHeader: VCalendarHeader
|
86077
86047
|
VCalendarInterval: VCalendarInterval
|
86078
86048
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
86079
86049
|
VCalendarMonthDay: VCalendarMonthDay
|
86080
|
-
VIconBtn: VIconBtn
|
86081
|
-
VPicker: VPicker
|
86082
|
-
VPickerTitle: VPickerTitle
|
86083
86050
|
VStepperVertical: VStepperVertical
|
86084
86051
|
VStepperVerticalItem: VStepperVerticalItem
|
86085
86052
|
VStepperVerticalActions: VStepperVerticalActions
|
86086
|
-
|
86087
|
-
|
86088
|
-
VTimePickerControls: VTimePickerControls
|
86089
|
-
VFileUpload: VFileUpload
|
86090
|
-
VFileUploadItem: VFileUploadItem
|
86053
|
+
VPicker: VPicker
|
86054
|
+
VPickerTitle: VPickerTitle
|
86091
86055
|
VTreeview: VTreeview
|
86092
86056
|
VTreeviewItem: VTreeviewItem
|
86093
86057
|
VTreeviewGroup: VTreeviewGroup
|
86058
|
+
VTimePicker: VTimePicker
|
86059
|
+
VTimePickerClock: VTimePickerClock
|
86060
|
+
VTimePickerControls: VTimePickerControls
|
86094
86061
|
VDateInput: VDateInput
|
86095
86062
|
VPullToRefresh: VPullToRefresh
|
86096
86063
|
}
|