@vuetify/nightly 3.9.1-master.2025-07-17 → 3.9.2-dev.2025-07-18
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 +11 -5
- package/dist/json/attributes.json +3550 -3530
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +180 -180
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +20050 -6602
- package/dist/vuetify-labs.cjs +277 -89
- package/dist/vuetify-labs.css +4411 -4409
- package/dist/vuetify-labs.d.ts +124 -62
- package/dist/vuetify-labs.esm.js +277 -89
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +277 -89
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +239 -80
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2666 -2664
- package/dist/vuetify.d.ts +114 -62
- package/dist/vuetify.esm.js +239 -80
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +239 -80
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +724 -702
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.js +1 -0
- package/lib/components/VCombobox/VCombobox.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/VList/VList.js +2 -1
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VList/VListItem.js +7 -1
- package/lib/components/VList/VListItem.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/components/VSelect/VSelect.js +1 -0
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.js +2 -3
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.js +59 -59
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- 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/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +62 -62
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +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
@@ -48302,6 +48302,7 @@ declare const VFileInput: {
|
|
48302
48302
|
centerAffix?: boolean | undefined;
|
48303
48303
|
hint?: string | undefined;
|
48304
48304
|
hideDetails?: boolean | "auto" | undefined;
|
48305
|
+
filterByType?: string | undefined;
|
48305
48306
|
} & {
|
48306
48307
|
$children?: vue.VNodeChild | {
|
48307
48308
|
$stable?: boolean;
|
@@ -48378,6 +48379,7 @@ declare const VFileInput: {
|
|
48378
48379
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
48379
48380
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
48380
48381
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
48382
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
48381
48383
|
}, Omit<Omit<{
|
48382
48384
|
$: vue.ComponentInternalInstance;
|
48383
48385
|
$data: {};
|
@@ -48614,6 +48616,7 @@ declare const VFileInput: {
|
|
48614
48616
|
'mousedown:control': (e: MouseEvent) => true;
|
48615
48617
|
'update:focused': (focused: boolean) => true;
|
48616
48618
|
'update:modelValue': (files: File | File[]) => true;
|
48619
|
+
rejected: (files: File[]) => true;
|
48617
48620
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
48618
48621
|
flat: boolean;
|
48619
48622
|
reverse: boolean;
|
@@ -48744,6 +48747,7 @@ declare const VFileInput: {
|
|
48744
48747
|
centerAffix?: boolean | undefined;
|
48745
48748
|
hint?: string | undefined;
|
48746
48749
|
hideDetails?: boolean | "auto" | undefined;
|
48750
|
+
filterByType?: string | undefined;
|
48747
48751
|
} & {
|
48748
48752
|
$children?: vue.VNodeChild | {
|
48749
48753
|
$stable?: boolean;
|
@@ -48820,6 +48824,7 @@ declare const VFileInput: {
|
|
48820
48824
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
48821
48825
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
48822
48826
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
48827
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
48823
48828
|
}, Omit<Omit<{
|
48824
48829
|
$: vue.ComponentInternalInstance;
|
48825
48830
|
$data: {};
|
@@ -49156,6 +49161,7 @@ declare const VFileInput: {
|
|
49156
49161
|
centerAffix?: boolean | undefined;
|
49157
49162
|
hint?: string | undefined;
|
49158
49163
|
hideDetails?: boolean | "auto" | undefined;
|
49164
|
+
filterByType?: string | undefined;
|
49159
49165
|
} & {
|
49160
49166
|
$children?: vue.VNodeChild | {
|
49161
49167
|
$stable?: boolean;
|
@@ -49232,6 +49238,7 @@ declare const VFileInput: {
|
|
49232
49238
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
49233
49239
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
49234
49240
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
49241
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
49235
49242
|
}, Omit<Omit<{
|
49236
49243
|
$: vue.ComponentInternalInstance;
|
49237
49244
|
$data: {};
|
@@ -49468,6 +49475,7 @@ declare const VFileInput: {
|
|
49468
49475
|
'mousedown:control': (e: MouseEvent) => true;
|
49469
49476
|
'update:focused': (focused: boolean) => true;
|
49470
49477
|
'update:modelValue': (files: File | File[]) => true;
|
49478
|
+
rejected: (files: File[]) => true;
|
49471
49479
|
}, string, {
|
49472
49480
|
flat: boolean;
|
49473
49481
|
reverse: boolean;
|
@@ -49580,6 +49588,7 @@ declare const VFileInput: {
|
|
49580
49588
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
49581
49589
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
49582
49590
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
49591
|
+
filterByType: StringConstructor;
|
49583
49592
|
modelValue: {
|
49584
49593
|
type: PropType<File[] | File | null>;
|
49585
49594
|
default: (props: any) => never[] | null;
|
@@ -49705,6 +49714,7 @@ declare const VFileInput: {
|
|
49705
49714
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
49706
49715
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
49707
49716
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
49717
|
+
filterByType: StringConstructor;
|
49708
49718
|
modelValue: {
|
49709
49719
|
type: PropType<File[] | File | null>;
|
49710
49720
|
default: (props: any) => never[] | null;
|
@@ -62612,6 +62622,9 @@ declare const VProgressLinear: {
|
|
62612
62622
|
indeterminate: boolean;
|
62613
62623
|
modelValue: string | number;
|
62614
62624
|
tile: boolean;
|
62625
|
+
chunkCount: string | number;
|
62626
|
+
chunkWidth: string | number;
|
62627
|
+
chunkGap: string | number;
|
62615
62628
|
bufferValue: string | number;
|
62616
62629
|
clickable: boolean;
|
62617
62630
|
striped: boolean;
|
@@ -62667,6 +62680,9 @@ declare const VProgressLinear: {
|
|
62667
62680
|
modelValue: string | number;
|
62668
62681
|
rounded: string | number | boolean;
|
62669
62682
|
tile: boolean;
|
62683
|
+
chunkCount: string | number;
|
62684
|
+
chunkWidth: string | number;
|
62685
|
+
chunkGap: string | number;
|
62670
62686
|
bufferValue: string | number;
|
62671
62687
|
clickable: boolean;
|
62672
62688
|
striped: boolean;
|
@@ -62696,6 +62712,9 @@ declare const VProgressLinear: {
|
|
62696
62712
|
indeterminate: boolean;
|
62697
62713
|
modelValue: string | number;
|
62698
62714
|
tile: boolean;
|
62715
|
+
chunkCount: string | number;
|
62716
|
+
chunkWidth: string | number;
|
62717
|
+
chunkGap: string | number;
|
62699
62718
|
bufferValue: string | number;
|
62700
62719
|
clickable: boolean;
|
62701
62720
|
striped: boolean;
|
@@ -62749,6 +62768,9 @@ declare const VProgressLinear: {
|
|
62749
62768
|
modelValue: string | number;
|
62750
62769
|
rounded: string | number | boolean;
|
62751
62770
|
tile: boolean;
|
62771
|
+
chunkCount: string | number;
|
62772
|
+
chunkWidth: string | number;
|
62773
|
+
chunkGap: string | number;
|
62752
62774
|
bufferValue: string | number;
|
62753
62775
|
clickable: boolean;
|
62754
62776
|
striped: boolean;
|
@@ -62770,6 +62792,9 @@ declare const VProgressLinear: {
|
|
62770
62792
|
indeterminate: boolean;
|
62771
62793
|
modelValue: string | number;
|
62772
62794
|
tile: boolean;
|
62795
|
+
chunkCount: string | number;
|
62796
|
+
chunkWidth: string | number;
|
62797
|
+
chunkGap: string | number;
|
62773
62798
|
bufferValue: string | number;
|
62774
62799
|
clickable: boolean;
|
62775
62800
|
striped: boolean;
|
@@ -62825,6 +62850,9 @@ declare const VProgressLinear: {
|
|
62825
62850
|
modelValue: string | number;
|
62826
62851
|
rounded: string | number | boolean;
|
62827
62852
|
tile: boolean;
|
62853
|
+
chunkCount: string | number;
|
62854
|
+
chunkWidth: string | number;
|
62855
|
+
chunkGap: string | number;
|
62828
62856
|
bufferValue: string | number;
|
62829
62857
|
clickable: boolean;
|
62830
62858
|
striped: boolean;
|
@@ -62854,6 +62882,18 @@ declare const VProgressLinear: {
|
|
62854
62882
|
type: vue.PropType<vue.StyleValue>;
|
62855
62883
|
default: null;
|
62856
62884
|
};
|
62885
|
+
chunkCount: {
|
62886
|
+
type: (StringConstructor | NumberConstructor)[];
|
62887
|
+
default: null;
|
62888
|
+
};
|
62889
|
+
chunkWidth: {
|
62890
|
+
type: (StringConstructor | NumberConstructor)[];
|
62891
|
+
default: null;
|
62892
|
+
};
|
62893
|
+
chunkGap: {
|
62894
|
+
type: (StringConstructor | NumberConstructor)[];
|
62895
|
+
default: number;
|
62896
|
+
};
|
62857
62897
|
absolute: BooleanConstructor;
|
62858
62898
|
active: {
|
62859
62899
|
type: BooleanConstructor;
|
@@ -62907,6 +62947,18 @@ declare const VProgressLinear: {
|
|
62907
62947
|
type: vue.PropType<vue.StyleValue>;
|
62908
62948
|
default: null;
|
62909
62949
|
};
|
62950
|
+
chunkCount: {
|
62951
|
+
type: (StringConstructor | NumberConstructor)[];
|
62952
|
+
default: null;
|
62953
|
+
};
|
62954
|
+
chunkWidth: {
|
62955
|
+
type: (StringConstructor | NumberConstructor)[];
|
62956
|
+
default: null;
|
62957
|
+
};
|
62958
|
+
chunkGap: {
|
62959
|
+
type: (StringConstructor | NumberConstructor)[];
|
62960
|
+
default: number;
|
62961
|
+
};
|
62910
62962
|
absolute: BooleanConstructor;
|
62911
62963
|
active: {
|
62912
62964
|
type: BooleanConstructor;
|
@@ -106159,6 +106211,7 @@ declare const VFileUpload: {
|
|
106159
106211
|
openDelay?: string | number | undefined;
|
106160
106212
|
thickness?: string | number | undefined;
|
106161
106213
|
subtitle?: string | undefined;
|
106214
|
+
filterByType?: string | undefined;
|
106162
106215
|
} & {
|
106163
106216
|
$children?: vue.VNodeChild | {
|
106164
106217
|
$stable?: boolean;
|
@@ -106223,8 +106276,10 @@ declare const VFileUpload: {
|
|
106223
106276
|
"v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
|
106224
106277
|
} & {
|
106225
106278
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
106279
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
106226
106280
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
106227
106281
|
'update:modelValue': (files: File[]) => true;
|
106282
|
+
rejected: (files: File[]) => true;
|
106228
106283
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
106229
106284
|
length: string | number;
|
106230
106285
|
style: vue.StyleValue;
|
@@ -106307,6 +106362,7 @@ declare const VFileUpload: {
|
|
106307
106362
|
openDelay?: string | number | undefined;
|
106308
106363
|
thickness?: string | number | undefined;
|
106309
106364
|
subtitle?: string | undefined;
|
106365
|
+
filterByType?: string | undefined;
|
106310
106366
|
} & {
|
106311
106367
|
$children?: vue.VNodeChild | {
|
106312
106368
|
$stable?: boolean;
|
@@ -106371,6 +106427,7 @@ declare const VFileUpload: {
|
|
106371
106427
|
"v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
|
106372
106428
|
} & {
|
106373
106429
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
106430
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
106374
106431
|
}, {}, {}, {}, {}, {
|
106375
106432
|
length: string | number;
|
106376
106433
|
style: vue.StyleValue;
|
@@ -106431,6 +106488,7 @@ declare const VFileUpload: {
|
|
106431
106488
|
openDelay?: string | number | undefined;
|
106432
106489
|
thickness?: string | number | undefined;
|
106433
106490
|
subtitle?: string | undefined;
|
106491
|
+
filterByType?: string | undefined;
|
106434
106492
|
} & {
|
106435
106493
|
$children?: vue.VNodeChild | {
|
106436
106494
|
$stable?: boolean;
|
@@ -106495,8 +106553,10 @@ declare const VFileUpload: {
|
|
106495
106553
|
"v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
|
106496
106554
|
} & {
|
106497
106555
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
106556
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
106498
106557
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
106499
106558
|
'update:modelValue': (files: File[]) => true;
|
106559
|
+
rejected: (files: File[]) => true;
|
106500
106560
|
}, string, {
|
106501
106561
|
length: string | number;
|
106502
106562
|
style: vue.StyleValue;
|
@@ -106580,6 +106640,7 @@ declare const VFileUpload: {
|
|
106580
106640
|
};
|
106581
106641
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
106582
106642
|
openDelay: (StringConstructor | NumberConstructor)[];
|
106643
|
+
filterByType: StringConstructor;
|
106583
106644
|
browseText: {
|
106584
106645
|
type: StringConstructor;
|
106585
106646
|
default: string;
|
@@ -106658,6 +106719,7 @@ declare const VFileUpload: {
|
|
106658
106719
|
};
|
106659
106720
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
106660
106721
|
openDelay: (StringConstructor | NumberConstructor)[];
|
106722
|
+
filterByType: StringConstructor;
|
106661
106723
|
browseText: {
|
106662
106724
|
type: StringConstructor;
|
106663
106725
|
default: string;
|
@@ -116081,42 +116143,39 @@ declare module 'vue' {
|
|
116081
116143
|
$children?: VNodeChild
|
116082
116144
|
}
|
116083
116145
|
export interface GlobalComponents {
|
116084
|
-
VApp: VApp
|
116085
|
-
VAlert: VAlert
|
116086
|
-
VAlertTitle: VAlertTitle
|
116087
116146
|
VAppBar: VAppBar
|
116088
116147
|
VAppBarNavIcon: VAppBarNavIcon
|
116089
116148
|
VAppBarTitle: VAppBarTitle
|
116090
|
-
VBadge: VBadge
|
116091
116149
|
VAutocomplete: VAutocomplete
|
116092
|
-
|
116093
|
-
|
116094
|
-
|
116150
|
+
VAlert: VAlert
|
116151
|
+
VAlertTitle: VAlertTitle
|
116152
|
+
VApp: VApp
|
116095
116153
|
VBottomNavigation: VBottomNavigation
|
116154
|
+
VAvatar: VAvatar
|
116155
|
+
VBottomSheet: VBottomSheet
|
116156
|
+
VBadge: VBadge
|
116096
116157
|
VBreadcrumbs: VBreadcrumbs
|
116097
116158
|
VBreadcrumbsItem: VBreadcrumbsItem
|
116098
116159
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
116099
|
-
|
116100
|
-
|
116101
|
-
|
116102
|
-
VBtnToggle: VBtnToggle
|
116160
|
+
VBtn: VBtn
|
116161
|
+
VCarousel: VCarousel
|
116162
|
+
VCarouselItem: VCarouselItem
|
116103
116163
|
VCard: VCard
|
116104
116164
|
VCardActions: VCardActions
|
116105
116165
|
VCardItem: VCardItem
|
116106
116166
|
VCardSubtitle: VCardSubtitle
|
116107
116167
|
VCardText: VCardText
|
116108
116168
|
VCardTitle: VCardTitle
|
116109
|
-
|
116110
|
-
VCheckbox: VCheckbox
|
116111
|
-
VCheckboxBtn: VCheckboxBtn
|
116112
|
-
VCarousel: VCarousel
|
116113
|
-
VCarouselItem: VCarouselItem
|
116114
|
-
VChip: VChip
|
116169
|
+
VBtnToggle: VBtnToggle
|
116115
116170
|
VChipGroup: VChipGroup
|
116171
|
+
VBtnGroup: VBtnGroup
|
116172
|
+
VCounter: VCounter
|
116173
|
+
VChip: VChip
|
116174
|
+
VCode: VCode
|
116116
116175
|
VColorPicker: VColorPicker
|
116117
116176
|
VCombobox: VCombobox
|
116118
|
-
|
116119
|
-
|
116177
|
+
VCheckbox: VCheckbox
|
116178
|
+
VCheckboxBtn: VCheckboxBtn
|
116120
116179
|
VDataTable: VDataTable
|
116121
116180
|
VDataTableHeaders: VDataTableHeaders
|
116122
116181
|
VDataTableFooter: VDataTableFooter
|
@@ -116130,29 +116189,30 @@ declare module 'vue' {
|
|
116130
116189
|
VDatePickerMonth: VDatePickerMonth
|
116131
116190
|
VDatePickerMonths: VDatePickerMonths
|
116132
116191
|
VDatePickerYears: VDatePickerYears
|
116192
|
+
VEmptyState: VEmptyState
|
116133
116193
|
VDialog: VDialog
|
116194
|
+
VDivider: VDivider
|
116134
116195
|
VFab: VFab
|
116135
|
-
VExpansionPanels: VExpansionPanels
|
116136
|
-
VExpansionPanel: VExpansionPanel
|
116137
|
-
VExpansionPanelText: VExpansionPanelText
|
116138
|
-
VExpansionPanelTitle: VExpansionPanelTitle
|
116139
116196
|
VField: VField
|
116140
116197
|
VFieldLabel: VFieldLabel
|
116141
|
-
VEmptyState: VEmptyState
|
116142
116198
|
VFileInput: VFileInput
|
116143
|
-
VImg: VImg
|
116144
|
-
VFooter: VFooter
|
116145
|
-
VInfiniteScroll: VInfiniteScroll
|
116146
|
-
VInput: VInput
|
116147
116199
|
VIcon: VIcon
|
116148
116200
|
VComponentIcon: VComponentIcon
|
116149
116201
|
VSvgIcon: VSvgIcon
|
116150
116202
|
VLigatureIcon: VLigatureIcon
|
116151
116203
|
VClassIcon: VClassIcon
|
116152
|
-
|
116153
|
-
|
116204
|
+
VFooter: VFooter
|
116205
|
+
VImg: VImg
|
116206
|
+
VInfiniteScroll: VInfiniteScroll
|
116207
|
+
VInput: VInput
|
116154
116208
|
VItemGroup: VItemGroup
|
116155
116209
|
VItem: VItem
|
116210
|
+
VKbd: VKbd
|
116211
|
+
VMenu: VMenu
|
116212
|
+
VLabel: VLabel
|
116213
|
+
VMain: VMain
|
116214
|
+
VNavigationDrawer: VNavigationDrawer
|
116215
|
+
VOtpInput: VOtpInput
|
116156
116216
|
VList: VList
|
116157
116217
|
VListGroup: VListGroup
|
116158
116218
|
VListImg: VListImg
|
@@ -116162,58 +116222,53 @@ declare module 'vue' {
|
|
116162
116222
|
VListItemSubtitle: VListItemSubtitle
|
116163
116223
|
VListItemTitle: VListItemTitle
|
116164
116224
|
VListSubheader: VListSubheader
|
116165
|
-
VMain: VMain
|
116166
|
-
VMenu: VMenu
|
116167
|
-
VNavigationDrawer: VNavigationDrawer
|
116168
116225
|
VNumberInput: VNumberInput
|
116169
116226
|
VMessages: VMessages
|
116170
116227
|
VOverlay: VOverlay
|
116171
|
-
VOtpInput: VOtpInput
|
116172
|
-
VProgressCircular: VProgressCircular
|
116173
116228
|
VPagination: VPagination
|
116174
116229
|
VProgressLinear: VProgressLinear
|
116175
|
-
VRadioGroup: VRadioGroup
|
116176
116230
|
VRating: VRating
|
116177
|
-
|
116178
|
-
|
116179
|
-
|
116231
|
+
VProgressCircular: VProgressCircular
|
116232
|
+
VRadioGroup: VRadioGroup
|
116233
|
+
VSelectionControl: VSelectionControl
|
116180
116234
|
VSelectionControlGroup: VSelectionControlGroup
|
116181
|
-
|
116235
|
+
VSkeletonLoader: VSkeletonLoader
|
116182
116236
|
VSlideGroup: VSlideGroup
|
116183
116237
|
VSlideGroupItem: VSlideGroupItem
|
116184
|
-
|
116185
|
-
|
116186
|
-
VStepper: VStepper
|
116187
|
-
VStepperActions: VStepperActions
|
116188
|
-
VStepperHeader: VStepperHeader
|
116189
|
-
VStepperItem: VStepperItem
|
116190
|
-
VStepperWindow: VStepperWindow
|
116191
|
-
VStepperWindowItem: VStepperWindowItem
|
116238
|
+
VSheet: VSheet
|
116239
|
+
VSlider: VSlider
|
116192
116240
|
VSwitch: VSwitch
|
116193
|
-
|
116241
|
+
VSnackbar: VSnackbar
|
116194
116242
|
VSystemBar: VSystemBar
|
116195
|
-
VTextField: VTextField
|
116196
116243
|
VTab: VTab
|
116197
116244
|
VTabs: VTabs
|
116198
116245
|
VTabsWindow: VTabsWindow
|
116199
116246
|
VTabsWindowItem: VTabsWindowItem
|
116200
|
-
VTimeline: VTimeline
|
116201
|
-
VTimelineItem: VTimelineItem
|
116202
116247
|
VTextarea: VTextarea
|
116248
|
+
VTable: VTable
|
116249
|
+
VTextField: VTextField
|
116203
116250
|
VTimePicker: VTimePicker
|
116204
116251
|
VTimePickerClock: VTimePickerClock
|
116205
116252
|
VTimePickerControls: VTimePickerControls
|
116206
|
-
VToolbar: VToolbar
|
116207
|
-
VToolbarTitle: VToolbarTitle
|
116208
|
-
VToolbarItems: VToolbarItems
|
116209
|
-
VTooltip: VTooltip
|
116210
116253
|
VTreeview: VTreeview
|
116211
116254
|
VTreeviewItem: VTreeviewItem
|
116212
116255
|
VTreeviewGroup: VTreeviewGroup
|
116256
|
+
VTimeline: VTimeline
|
116257
|
+
VTimelineItem: VTimelineItem
|
116258
|
+
VToolbar: VToolbar
|
116259
|
+
VToolbarTitle: VToolbarTitle
|
116260
|
+
VToolbarItems: VToolbarItems
|
116213
116261
|
VWindow: VWindow
|
116214
116262
|
VWindowItem: VWindowItem
|
116215
|
-
|
116263
|
+
VTooltip: VTooltip
|
116264
|
+
VStepper: VStepper
|
116265
|
+
VStepperActions: VStepperActions
|
116266
|
+
VStepperHeader: VStepperHeader
|
116267
|
+
VStepperItem: VStepperItem
|
116268
|
+
VStepperWindow: VStepperWindow
|
116269
|
+
VStepperWindowItem: VStepperWindowItem
|
116216
116270
|
VConfirmEdit: VConfirmEdit
|
116271
|
+
VSelect: VSelect
|
116217
116272
|
VDataIterator: VDataIterator
|
116218
116273
|
VDefaultsProvider: VDefaultsProvider
|
116219
116274
|
VForm: VForm
|
@@ -116227,13 +116282,16 @@ declare module 'vue' {
|
|
116227
116282
|
VLazy: VLazy
|
116228
116283
|
VLocaleProvider: VLocaleProvider
|
116229
116284
|
VNoSsr: VNoSsr
|
116285
|
+
VRangeSlider: VRangeSlider
|
116230
116286
|
VParallax: VParallax
|
116231
116287
|
VRadio: VRadio
|
116232
|
-
VRangeSlider: VRangeSlider
|
116233
116288
|
VResponsive: VResponsive
|
116234
|
-
VSnackbarQueue: VSnackbarQueue
|
116235
116289
|
VSparkline: VSparkline
|
116236
116290
|
VSpeedDial: VSpeedDial
|
116291
|
+
VBanner: VBanner
|
116292
|
+
VBannerActions: VBannerActions
|
116293
|
+
VBannerText: VBannerText
|
116294
|
+
VSnackbarQueue: VSnackbarQueue
|
116237
116295
|
VThemeProvider: VThemeProvider
|
116238
116296
|
VValidation: VValidation
|
116239
116297
|
VVirtualScroll: VVirtualScroll
|
@@ -116253,25 +116311,29 @@ declare module 'vue' {
|
|
116253
116311
|
VExpandTransition: VExpandTransition
|
116254
116312
|
VExpandXTransition: VExpandXTransition
|
116255
116313
|
VDialogTransition: VDialogTransition
|
116256
|
-
|
116314
|
+
VExpansionPanels: VExpansionPanels
|
116315
|
+
VExpansionPanel: VExpansionPanel
|
116316
|
+
VExpansionPanelText: VExpansionPanelText
|
116317
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
116257
116318
|
VCalendar: VCalendar
|
116258
116319
|
VCalendarDay: VCalendarDay
|
116259
116320
|
VCalendarHeader: VCalendarHeader
|
116260
116321
|
VCalendarInterval: VCalendarInterval
|
116261
116322
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
116262
116323
|
VCalendarMonthDay: VCalendarMonthDay
|
116324
|
+
VColorInput: VColorInput
|
116263
116325
|
VFileUpload: VFileUpload
|
116264
116326
|
VFileUploadItem: VFileUploadItem
|
116327
|
+
VIconBtn: VIconBtn
|
116265
116328
|
VPicker: VPicker
|
116266
116329
|
VPickerTitle: VPickerTitle
|
116267
|
-
VColorInput: VColorInput
|
116268
116330
|
VStepperVertical: VStepperVertical
|
116269
116331
|
VStepperVerticalItem: VStepperVerticalItem
|
116270
116332
|
VStepperVerticalActions: VStepperVerticalActions
|
116271
116333
|
VHotkey: VHotkey
|
116272
116334
|
VDateInput: VDateInput
|
116273
|
-
VPullToRefresh: VPullToRefresh
|
116274
116335
|
VMaskInput: VMaskInput
|
116336
|
+
VPullToRefresh: VPullToRefresh
|
116275
116337
|
}
|
116276
116338
|
export interface GlobalDirectives {
|
116277
116339
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|