@vuetify/nightly 3.9.0-dev.2025-07-15 → 3.9.0-dev.2025-07-16
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 +9 -3
- package/dist/json/attributes.json +3261 -3241
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +202 -202
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +6129 -6059
- package/dist/vuetify-labs.cjs +204 -25
- package/dist/vuetify-labs.css +4800 -4798
- package/dist/vuetify-labs.d.ts +129 -67
- package/dist/vuetify-labs.esm.js +204 -25
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +204 -25
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +166 -16
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3987 -3985
- package/dist/vuetify.d.ts +119 -67
- package/dist/vuetify.esm.js +166 -16
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +166 -16
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +710 -688
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.d.ts +15 -0
- package/lib/components/VFileInput/VFileInput.js +38 -9
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.css +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.d.ts +75 -0
- package/lib/components/VProgressLinear/VProgressLinear.js +32 -6
- package/lib/components/VProgressLinear/VProgressLinear.js.map +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.sass +2 -2
- package/lib/components/VProgressLinear/chunks.d.ts +55 -0
- package/lib/components/VProgressLinear/chunks.js +62 -0
- package/lib/components/VProgressLinear/chunks.js.map +1 -0
- package/lib/composables/fileFilter.d.ts +18 -0
- package/lib/composables/fileFilter.js +38 -0
- package/lib/composables/fileFilter.js.map +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +67 -67
- package/lib/framework.js +1 -1
- package/lib/labs/VFileUpload/VFileUpload.d.ts +15 -0
- package/lib/labs/VFileUpload/VFileUpload.js +39 -9
- package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -47380,6 +47380,7 @@ declare const VFileInput: {
|
|
47380
47380
|
centerAffix?: boolean | undefined;
|
47381
47381
|
hint?: string | undefined;
|
47382
47382
|
hideDetails?: boolean | "auto" | undefined;
|
47383
|
+
filterByType?: string | undefined;
|
47383
47384
|
} & {
|
47384
47385
|
$children?: vue.VNodeChild | {
|
47385
47386
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
@@ -47454,6 +47455,7 @@ declare const VFileInput: {
|
|
47454
47455
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
47455
47456
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
47456
47457
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
47458
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
47457
47459
|
}, Omit<Omit<{
|
47458
47460
|
$: vue.ComponentInternalInstance;
|
47459
47461
|
$data: {};
|
@@ -47690,6 +47692,7 @@ declare const VFileInput: {
|
|
47690
47692
|
'mousedown:control': (e: MouseEvent) => true;
|
47691
47693
|
'update:focused': (focused: boolean) => true;
|
47692
47694
|
'update:modelValue': (files: File | File[]) => true;
|
47695
|
+
rejected: (files: File[]) => true;
|
47693
47696
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
47694
47697
|
flat: boolean;
|
47695
47698
|
reverse: boolean;
|
@@ -47818,6 +47821,7 @@ declare const VFileInput: {
|
|
47818
47821
|
centerAffix?: boolean | undefined;
|
47819
47822
|
hint?: string | undefined;
|
47820
47823
|
hideDetails?: boolean | "auto" | undefined;
|
47824
|
+
filterByType?: string | undefined;
|
47821
47825
|
} & {
|
47822
47826
|
$children?: vue.VNodeChild | {
|
47823
47827
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
@@ -47892,6 +47896,7 @@ declare const VFileInput: {
|
|
47892
47896
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
47893
47897
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
47894
47898
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
47899
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
47895
47900
|
}, Omit<Omit<{
|
47896
47901
|
$: vue.ComponentInternalInstance;
|
47897
47902
|
$data: {};
|
@@ -48226,6 +48231,7 @@ declare const VFileInput: {
|
|
48226
48231
|
centerAffix?: boolean | undefined;
|
48227
48232
|
hint?: string | undefined;
|
48228
48233
|
hideDetails?: boolean | "auto" | undefined;
|
48234
|
+
filterByType?: string | undefined;
|
48229
48235
|
} & {
|
48230
48236
|
$children?: vue.VNodeChild | {
|
48231
48237
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
@@ -48300,6 +48306,7 @@ declare const VFileInput: {
|
|
48300
48306
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
48301
48307
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
48302
48308
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
48309
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
48303
48310
|
}, Omit<Omit<{
|
48304
48311
|
$: vue.ComponentInternalInstance;
|
48305
48312
|
$data: {};
|
@@ -48536,6 +48543,7 @@ declare const VFileInput: {
|
|
48536
48543
|
'mousedown:control': (e: MouseEvent) => true;
|
48537
48544
|
'update:focused': (focused: boolean) => true;
|
48538
48545
|
'update:modelValue': (files: File | File[]) => true;
|
48546
|
+
rejected: (files: File[]) => true;
|
48539
48547
|
}, string, {
|
48540
48548
|
flat: boolean;
|
48541
48549
|
reverse: boolean;
|
@@ -48646,6 +48654,7 @@ declare const VFileInput: {
|
|
48646
48654
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
48647
48655
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
48648
48656
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
48657
|
+
filterByType: StringConstructor;
|
48649
48658
|
modelValue: {
|
48650
48659
|
type: PropType<File[] | File | null>;
|
48651
48660
|
default: (props: any) => never[] | null;
|
@@ -48770,6 +48779,7 @@ declare const VFileInput: {
|
|
48770
48779
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
48771
48780
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
48772
48781
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
48782
|
+
filterByType: StringConstructor;
|
48773
48783
|
modelValue: {
|
48774
48784
|
type: PropType<File[] | File | null>;
|
48775
48785
|
default: (props: any) => never[] | null;
|
@@ -61435,6 +61445,9 @@ declare const VProgressLinear: {
|
|
61435
61445
|
indeterminate: boolean;
|
61436
61446
|
modelValue: string | number;
|
61437
61447
|
tile: boolean;
|
61448
|
+
chunkCount: string | number;
|
61449
|
+
chunkWidth: string | number;
|
61450
|
+
chunkGap: string | number;
|
61438
61451
|
bufferValue: string | number;
|
61439
61452
|
clickable: boolean;
|
61440
61453
|
striped: boolean;
|
@@ -61488,6 +61501,9 @@ declare const VProgressLinear: {
|
|
61488
61501
|
modelValue: string | number;
|
61489
61502
|
rounded: string | number | boolean;
|
61490
61503
|
tile: boolean;
|
61504
|
+
chunkCount: string | number;
|
61505
|
+
chunkWidth: string | number;
|
61506
|
+
chunkGap: string | number;
|
61491
61507
|
bufferValue: string | number;
|
61492
61508
|
clickable: boolean;
|
61493
61509
|
striped: boolean;
|
@@ -61517,6 +61533,9 @@ declare const VProgressLinear: {
|
|
61517
61533
|
indeterminate: boolean;
|
61518
61534
|
modelValue: string | number;
|
61519
61535
|
tile: boolean;
|
61536
|
+
chunkCount: string | number;
|
61537
|
+
chunkWidth: string | number;
|
61538
|
+
chunkGap: string | number;
|
61520
61539
|
bufferValue: string | number;
|
61521
61540
|
clickable: boolean;
|
61522
61541
|
striped: boolean;
|
@@ -61568,6 +61587,9 @@ declare const VProgressLinear: {
|
|
61568
61587
|
modelValue: string | number;
|
61569
61588
|
rounded: string | number | boolean;
|
61570
61589
|
tile: boolean;
|
61590
|
+
chunkCount: string | number;
|
61591
|
+
chunkWidth: string | number;
|
61592
|
+
chunkGap: string | number;
|
61571
61593
|
bufferValue: string | number;
|
61572
61594
|
clickable: boolean;
|
61573
61595
|
striped: boolean;
|
@@ -61589,6 +61611,9 @@ declare const VProgressLinear: {
|
|
61589
61611
|
indeterminate: boolean;
|
61590
61612
|
modelValue: string | number;
|
61591
61613
|
tile: boolean;
|
61614
|
+
chunkCount: string | number;
|
61615
|
+
chunkWidth: string | number;
|
61616
|
+
chunkGap: string | number;
|
61592
61617
|
bufferValue: string | number;
|
61593
61618
|
clickable: boolean;
|
61594
61619
|
striped: boolean;
|
@@ -61642,6 +61667,9 @@ declare const VProgressLinear: {
|
|
61642
61667
|
modelValue: string | number;
|
61643
61668
|
rounded: string | number | boolean;
|
61644
61669
|
tile: boolean;
|
61670
|
+
chunkCount: string | number;
|
61671
|
+
chunkWidth: string | number;
|
61672
|
+
chunkGap: string | number;
|
61645
61673
|
bufferValue: string | number;
|
61646
61674
|
clickable: boolean;
|
61647
61675
|
striped: boolean;
|
@@ -61671,6 +61699,18 @@ declare const VProgressLinear: {
|
|
61671
61699
|
type: vue.PropType<vue.StyleValue>;
|
61672
61700
|
default: null;
|
61673
61701
|
};
|
61702
|
+
chunkCount: {
|
61703
|
+
type: (StringConstructor | NumberConstructor)[];
|
61704
|
+
default: null;
|
61705
|
+
};
|
61706
|
+
chunkWidth: {
|
61707
|
+
type: (StringConstructor | NumberConstructor)[];
|
61708
|
+
default: null;
|
61709
|
+
};
|
61710
|
+
chunkGap: {
|
61711
|
+
type: (StringConstructor | NumberConstructor)[];
|
61712
|
+
default: number;
|
61713
|
+
};
|
61674
61714
|
absolute: BooleanConstructor;
|
61675
61715
|
active: {
|
61676
61716
|
type: BooleanConstructor;
|
@@ -61724,6 +61764,18 @@ declare const VProgressLinear: {
|
|
61724
61764
|
type: vue.PropType<vue.StyleValue>;
|
61725
61765
|
default: null;
|
61726
61766
|
};
|
61767
|
+
chunkCount: {
|
61768
|
+
type: (StringConstructor | NumberConstructor)[];
|
61769
|
+
default: null;
|
61770
|
+
};
|
61771
|
+
chunkWidth: {
|
61772
|
+
type: (StringConstructor | NumberConstructor)[];
|
61773
|
+
default: null;
|
61774
|
+
};
|
61775
|
+
chunkGap: {
|
61776
|
+
type: (StringConstructor | NumberConstructor)[];
|
61777
|
+
default: number;
|
61778
|
+
};
|
61727
61779
|
absolute: BooleanConstructor;
|
61728
61780
|
active: {
|
61729
61781
|
type: BooleanConstructor;
|
@@ -104371,6 +104423,7 @@ declare const VFileUpload: {
|
|
104371
104423
|
openDelay?: string | number | undefined;
|
104372
104424
|
thickness?: string | number | undefined;
|
104373
104425
|
subtitle?: string | undefined;
|
104426
|
+
filterByType?: string | undefined;
|
104374
104427
|
} & {
|
104375
104428
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
104376
104429
|
browse?: ((arg: {
|
@@ -104433,8 +104486,10 @@ declare const VFileUpload: {
|
|
104433
104486
|
"v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
|
104434
104487
|
} & {
|
104435
104488
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
104489
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
104436
104490
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
104437
104491
|
'update:modelValue': (files: File[]) => true;
|
104492
|
+
rejected: (files: File[]) => true;
|
104438
104493
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
104439
104494
|
length: string | number;
|
104440
104495
|
style: vue.StyleValue;
|
@@ -104517,6 +104572,7 @@ declare const VFileUpload: {
|
|
104517
104572
|
openDelay?: string | number | undefined;
|
104518
104573
|
thickness?: string | number | undefined;
|
104519
104574
|
subtitle?: string | undefined;
|
104575
|
+
filterByType?: string | undefined;
|
104520
104576
|
} & {
|
104521
104577
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
104522
104578
|
browse?: ((arg: {
|
@@ -104579,6 +104635,7 @@ declare const VFileUpload: {
|
|
104579
104635
|
"v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
|
104580
104636
|
} & {
|
104581
104637
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
104638
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
104582
104639
|
}, {}, {}, {}, {}, {
|
104583
104640
|
length: string | number;
|
104584
104641
|
style: vue.StyleValue;
|
@@ -104639,6 +104696,7 @@ declare const VFileUpload: {
|
|
104639
104696
|
openDelay?: string | number | undefined;
|
104640
104697
|
thickness?: string | number | undefined;
|
104641
104698
|
subtitle?: string | undefined;
|
104699
|
+
filterByType?: string | undefined;
|
104642
104700
|
} & {
|
104643
104701
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
104644
104702
|
browse?: ((arg: {
|
@@ -104701,8 +104759,10 @@ declare const VFileUpload: {
|
|
104701
104759
|
"v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
|
104702
104760
|
} & {
|
104703
104761
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
104762
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
104704
104763
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
104705
104764
|
'update:modelValue': (files: File[]) => true;
|
104765
|
+
rejected: (files: File[]) => true;
|
104706
104766
|
}, string, {
|
104707
104767
|
length: string | number;
|
104708
104768
|
style: vue.StyleValue;
|
@@ -104786,6 +104846,7 @@ declare const VFileUpload: {
|
|
104786
104846
|
};
|
104787
104847
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
104788
104848
|
openDelay: (StringConstructor | NumberConstructor)[];
|
104849
|
+
filterByType: StringConstructor;
|
104789
104850
|
browseText: {
|
104790
104851
|
type: StringConstructor;
|
104791
104852
|
default: string;
|
@@ -104864,6 +104925,7 @@ declare const VFileUpload: {
|
|
104864
104925
|
};
|
104865
104926
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
104866
104927
|
openDelay: (StringConstructor | NumberConstructor)[];
|
104928
|
+
filterByType: StringConstructor;
|
104867
104929
|
browseText: {
|
104868
104930
|
type: StringConstructor;
|
104869
104931
|
default: string;
|
@@ -114147,75 +114209,75 @@ declare module 'vue' {
|
|
114147
114209
|
$children?: VNodeChild
|
114148
114210
|
}
|
114149
114211
|
export interface GlobalComponents {
|
114212
|
+
VApp: VApp
|
114150
114213
|
VAlert: VAlert
|
114151
114214
|
VAlertTitle: VAlertTitle
|
114152
|
-
VApp: VApp
|
114153
|
-
VAvatar: VAvatar
|
114154
114215
|
VAppBar: VAppBar
|
114155
114216
|
VAppBarNavIcon: VAppBarNavIcon
|
114156
114217
|
VAppBarTitle: VAppBarTitle
|
114157
|
-
VBadge: VBadge
|
114158
|
-
VBanner: VBanner
|
114159
|
-
VBannerActions: VBannerActions
|
114160
|
-
VBannerText: VBannerText
|
114161
114218
|
VAutocomplete: VAutocomplete
|
114219
|
+
VAvatar: VAvatar
|
114220
|
+
VBadge: VBadge
|
114162
114221
|
VBottomNavigation: VBottomNavigation
|
114222
|
+
VBottomSheet: VBottomSheet
|
114163
114223
|
VBreadcrumbs: VBreadcrumbs
|
114164
114224
|
VBreadcrumbsItem: VBreadcrumbsItem
|
114165
114225
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
114166
|
-
VBottomSheet: VBottomSheet
|
114167
114226
|
VBtn: VBtn
|
114227
|
+
VBtnToggle: VBtnToggle
|
114168
114228
|
VCheckbox: VCheckbox
|
114169
114229
|
VCheckboxBtn: VCheckboxBtn
|
114170
|
-
VCarousel: VCarousel
|
114171
|
-
VCarouselItem: VCarouselItem
|
114172
|
-
VBtnToggle: VBtnToggle
|
114173
|
-
VBtnGroup: VBtnGroup
|
114174
114230
|
VCard: VCard
|
114175
114231
|
VCardActions: VCardActions
|
114176
114232
|
VCardItem: VCardItem
|
114177
114233
|
VCardSubtitle: VCardSubtitle
|
114178
114234
|
VCardText: VCardText
|
114179
114235
|
VCardTitle: VCardTitle
|
114180
|
-
|
114236
|
+
VBtnGroup: VBtnGroup
|
114237
|
+
VCarousel: VCarousel
|
114238
|
+
VCarouselItem: VCarouselItem
|
114181
114239
|
VChipGroup: VChipGroup
|
114240
|
+
VChip: VChip
|
114182
114241
|
VCombobox: VCombobox
|
114242
|
+
VCode: VCode
|
114243
|
+
VColorPicker: VColorPicker
|
114244
|
+
VDataTable: VDataTable
|
114245
|
+
VDataTableHeaders: VDataTableHeaders
|
114246
|
+
VDataTableFooter: VDataTableFooter
|
114247
|
+
VDataTableRows: VDataTableRows
|
114248
|
+
VDataTableRow: VDataTableRow
|
114249
|
+
VDataTableVirtual: VDataTableVirtual
|
114250
|
+
VDataTableServer: VDataTableServer
|
114251
|
+
VCounter: VCounter
|
114252
|
+
VDialog: VDialog
|
114183
114253
|
VDatePicker: VDatePicker
|
114184
114254
|
VDatePickerControls: VDatePickerControls
|
114185
114255
|
VDatePickerHeader: VDatePickerHeader
|
114186
114256
|
VDatePickerMonth: VDatePickerMonth
|
114187
114257
|
VDatePickerMonths: VDatePickerMonths
|
114188
114258
|
VDatePickerYears: VDatePickerYears
|
114189
|
-
|
114190
|
-
|
114191
|
-
|
114259
|
+
VDivider: VDivider
|
114260
|
+
VEmptyState: VEmptyState
|
114261
|
+
VFab: VFab
|
114192
114262
|
VExpansionPanels: VExpansionPanels
|
114193
114263
|
VExpansionPanel: VExpansionPanel
|
114194
114264
|
VExpansionPanelText: VExpansionPanelText
|
114195
114265
|
VExpansionPanelTitle: VExpansionPanelTitle
|
114196
|
-
VDivider: VDivider
|
114197
|
-
VEmptyState: VEmptyState
|
114198
|
-
VDataTable: VDataTable
|
114199
|
-
VDataTableHeaders: VDataTableHeaders
|
114200
|
-
VDataTableFooter: VDataTableFooter
|
114201
|
-
VDataTableRows: VDataTableRows
|
114202
|
-
VDataTableRow: VDataTableRow
|
114203
|
-
VDataTableVirtual: VDataTableVirtual
|
114204
|
-
VDataTableServer: VDataTableServer
|
114205
|
-
VDialog: VDialog
|
114206
114266
|
VField: VField
|
114207
114267
|
VFieldLabel: VFieldLabel
|
114208
114268
|
VFileInput: VFileInput
|
114209
114269
|
VFooter: VFooter
|
114210
|
-
VFab: VFab
|
114211
|
-
VItemGroup: VItemGroup
|
114212
|
-
VItem: VItem
|
114213
114270
|
VImg: VImg
|
114214
|
-
|
114271
|
+
VIcon: VIcon
|
114272
|
+
VComponentIcon: VComponentIcon
|
114273
|
+
VSvgIcon: VSvgIcon
|
114274
|
+
VLigatureIcon: VLigatureIcon
|
114275
|
+
VClassIcon: VClassIcon
|
114215
114276
|
VKbd: VKbd
|
114216
|
-
VInfiniteScroll: VInfiniteScroll
|
114217
114277
|
VInput: VInput
|
114218
|
-
|
114278
|
+
VItemGroup: VItemGroup
|
114279
|
+
VItem: VItem
|
114280
|
+
VLabel: VLabel
|
114219
114281
|
VList: VList
|
114220
114282
|
VListGroup: VListGroup
|
114221
114283
|
VListImg: VListImg
|
@@ -114227,53 +114289,49 @@ declare module 'vue' {
|
|
114227
114289
|
VListSubheader: VListSubheader
|
114228
114290
|
VMain: VMain
|
114229
114291
|
VNavigationDrawer: VNavigationDrawer
|
114230
|
-
VIcon: VIcon
|
114231
|
-
VComponentIcon: VComponentIcon
|
114232
|
-
VSvgIcon: VSvgIcon
|
114233
|
-
VLigatureIcon: VLigatureIcon
|
114234
|
-
VClassIcon: VClassIcon
|
114235
114292
|
VMessages: VMessages
|
114236
|
-
|
114293
|
+
VMenu: VMenu
|
114237
114294
|
VOtpInput: VOtpInput
|
114238
|
-
VProgressCircular: VProgressCircular
|
114239
114295
|
VOverlay: VOverlay
|
114240
|
-
VProgressLinear: VProgressLinear
|
114241
114296
|
VPagination: VPagination
|
114297
|
+
VNumberInput: VNumberInput
|
114298
|
+
VProgressLinear: VProgressLinear
|
114299
|
+
VProgressCircular: VProgressCircular
|
114242
114300
|
VRadioGroup: VRadioGroup
|
114243
|
-
VSelect: VSelect
|
114244
|
-
VRating: VRating
|
114245
|
-
VSlider: VSlider
|
114246
114301
|
VSelectionControlGroup: VSelectionControlGroup
|
114247
|
-
|
114302
|
+
VRating: VRating
|
114303
|
+
VSelect: VSelect
|
114248
114304
|
VSlideGroup: VSlideGroup
|
114249
114305
|
VSlideGroupItem: VSlideGroupItem
|
114306
|
+
VSelectionControl: VSelectionControl
|
114307
|
+
VSkeletonLoader: VSkeletonLoader
|
114308
|
+
VSlider: VSlider
|
114250
114309
|
VSheet: VSheet
|
114251
114310
|
VSnackbar: VSnackbar
|
114252
|
-
VSelectionControl: VSelectionControl
|
114253
|
-
VTab: VTab
|
114254
|
-
VTabs: VTabs
|
114255
|
-
VTabsWindow: VTabsWindow
|
114256
|
-
VTabsWindowItem: VTabsWindowItem
|
114257
|
-
VSystemBar: VSystemBar
|
114258
114311
|
VStepper: VStepper
|
114259
114312
|
VStepperActions: VStepperActions
|
114260
114313
|
VStepperHeader: VStepperHeader
|
114261
114314
|
VStepperItem: VStepperItem
|
114262
114315
|
VStepperWindow: VStepperWindow
|
114263
114316
|
VStepperWindowItem: VStepperWindowItem
|
114317
|
+
VSystemBar: VSystemBar
|
114318
|
+
VSwitch: VSwitch
|
114264
114319
|
VTable: VTable
|
114320
|
+
VTab: VTab
|
114321
|
+
VTabs: VTabs
|
114322
|
+
VTabsWindow: VTabsWindow
|
114323
|
+
VTabsWindowItem: VTabsWindowItem
|
114324
|
+
VTextField: VTextField
|
114265
114325
|
VTextarea: VTextarea
|
114266
|
-
|
114326
|
+
VTimePicker: VTimePicker
|
114327
|
+
VTimePickerClock: VTimePickerClock
|
114328
|
+
VTimePickerControls: VTimePickerControls
|
114267
114329
|
VTimeline: VTimeline
|
114268
114330
|
VTimelineItem: VTimelineItem
|
114269
114331
|
VToolbar: VToolbar
|
114270
114332
|
VToolbarTitle: VToolbarTitle
|
114271
114333
|
VToolbarItems: VToolbarItems
|
114272
114334
|
VTooltip: VTooltip
|
114273
|
-
VTimePicker: VTimePicker
|
114274
|
-
VTimePickerClock: VTimePickerClock
|
114275
|
-
VTimePickerControls: VTimePickerControls
|
114276
|
-
VTextField: VTextField
|
114277
114335
|
VTreeview: VTreeview
|
114278
114336
|
VTreeviewItem: VTreeviewItem
|
114279
114337
|
VTreeviewGroup: VTreeviewGroup
|
@@ -114282,25 +114340,29 @@ declare module 'vue' {
|
|
114282
114340
|
VConfirmEdit: VConfirmEdit
|
114283
114341
|
VDataIterator: VDataIterator
|
114284
114342
|
VDefaultsProvider: VDefaultsProvider
|
114285
|
-
VForm: VForm
|
114286
114343
|
VContainer: VContainer
|
114287
114344
|
VCol: VCol
|
114288
114345
|
VRow: VRow
|
114289
114346
|
VSpacer: VSpacer
|
114290
|
-
|
114347
|
+
VHover: VHover
|
114291
114348
|
VLayout: VLayout
|
114292
114349
|
VLayoutItem: VLayoutItem
|
114293
|
-
|
114350
|
+
VForm: VForm
|
114294
114351
|
VLocaleProvider: VLocaleProvider
|
114295
|
-
|
114352
|
+
VLazy: VLazy
|
114296
114353
|
VParallax: VParallax
|
114297
114354
|
VRadio: VRadio
|
114298
|
-
|
114355
|
+
VRangeSlider: VRangeSlider
|
114356
|
+
VNoSsr: VNoSsr
|
114299
114357
|
VSnackbarQueue: VSnackbarQueue
|
114358
|
+
VResponsive: VResponsive
|
114359
|
+
VBanner: VBanner
|
114360
|
+
VBannerActions: VBannerActions
|
114361
|
+
VBannerText: VBannerText
|
114300
114362
|
VSparkline: VSparkline
|
114301
114363
|
VSpeedDial: VSpeedDial
|
114302
|
-
VThemeProvider: VThemeProvider
|
114303
114364
|
VValidation: VValidation
|
114365
|
+
VThemeProvider: VThemeProvider
|
114304
114366
|
VVirtualScroll: VVirtualScroll
|
114305
114367
|
VFabTransition: VFabTransition
|
114306
114368
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -114318,25 +114380,25 @@ declare module 'vue' {
|
|
114318
114380
|
VExpandTransition: VExpandTransition
|
114319
114381
|
VExpandXTransition: VExpandXTransition
|
114320
114382
|
VDialogTransition: VDialogTransition
|
114321
|
-
|
114322
|
-
VFileUpload: VFileUpload
|
114323
|
-
VFileUploadItem: VFileUploadItem
|
114324
|
-
VColorInput: VColorInput
|
114383
|
+
VInfiniteScroll: VInfiniteScroll
|
114325
114384
|
VCalendar: VCalendar
|
114326
114385
|
VCalendarDay: VCalendarDay
|
114327
114386
|
VCalendarHeader: VCalendarHeader
|
114328
114387
|
VCalendarInterval: VCalendarInterval
|
114329
114388
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
114330
114389
|
VCalendarMonthDay: VCalendarMonthDay
|
114390
|
+
VColorInput: VColorInput
|
114331
114391
|
VIconBtn: VIconBtn
|
114392
|
+
VPicker: VPicker
|
114393
|
+
VPickerTitle: VPickerTitle
|
114394
|
+
VFileUpload: VFileUpload
|
114395
|
+
VFileUploadItem: VFileUploadItem
|
114332
114396
|
VStepperVertical: VStepperVertical
|
114333
114397
|
VStepperVerticalItem: VStepperVerticalItem
|
114334
114398
|
VStepperVerticalActions: VStepperVerticalActions
|
114335
|
-
VPicker: VPicker
|
114336
|
-
VPickerTitle: VPickerTitle
|
114337
114399
|
VHotkey: VHotkey
|
114338
|
-
VDateInput: VDateInput
|
114339
114400
|
VMaskInput: VMaskInput
|
114401
|
+
VDateInput: VDateInput
|
114340
114402
|
VPullToRefresh: VPullToRefresh
|
114341
114403
|
}
|
114342
114404
|
export interface GlobalDirectives {
|