@vuetify/nightly 3.9.2-master.2025-07-29 → 3.9.3-dev.2025-07-30
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 +6 -62
- package/dist/json/attributes.json +4301 -4281
- package/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +188 -188
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +7597 -7527
- package/dist/vuetify-labs.cjs +228 -33
- package/dist/vuetify-labs.css +5466 -5464
- package/dist/vuetify-labs.d.ts +134 -71
- package/dist/vuetify-labs.esm.js +228 -33
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +228 -33
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +190 -24
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5163 -5161
- package/dist/vuetify.d.ts +124 -71
- package/dist/vuetify.esm.js +190 -24
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +190 -24
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +731 -708
- 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 +11 -6
- 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 +1 -1
- 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/composables/fileFilter.d.ts +18 -0
- package/lib/composables/fileFilter.js +38 -0
- package/lib/composables/fileFilter.js.map +1 -0
- package/lib/composables/theme.d.ts +1 -0
- package/lib/composables/theme.js +3 -1
- package/lib/composables/theme.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +72 -71
- 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
@@ -181,6 +181,7 @@ interface ThemeInstance {
|
|
181
181
|
cycle: (themeArray?: string[]) => void;
|
182
182
|
toggle: (themeArray?: [string, string]) => void;
|
183
183
|
readonly isDisabled: boolean;
|
184
|
+
readonly isSystem: Readonly<Ref<boolean>>;
|
184
185
|
readonly themes: Ref<Record<string, InternalThemeDefinition>>;
|
185
186
|
readonly name: Readonly<Ref<string>>;
|
186
187
|
readonly current: DeepReadonly<Ref<InternalThemeDefinition>>;
|
@@ -48314,6 +48315,7 @@ declare const VFileInput: {
|
|
48314
48315
|
centerAffix?: boolean | undefined;
|
48315
48316
|
hint?: string | undefined;
|
48316
48317
|
hideDetails?: boolean | "auto" | undefined;
|
48318
|
+
filterByType?: string | undefined;
|
48317
48319
|
} & {
|
48318
48320
|
$children?: vue.VNodeChild | {
|
48319
48321
|
$stable?: boolean;
|
@@ -48390,6 +48392,7 @@ declare const VFileInput: {
|
|
48390
48392
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
48391
48393
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
48392
48394
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
48395
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
48393
48396
|
}, Omit<Omit<{
|
48394
48397
|
$: vue.ComponentInternalInstance;
|
48395
48398
|
$data: {};
|
@@ -48626,6 +48629,7 @@ declare const VFileInput: {
|
|
48626
48629
|
'mousedown:control': (e: MouseEvent) => true;
|
48627
48630
|
'update:focused': (focused: boolean) => true;
|
48628
48631
|
'update:modelValue': (files: File | File[]) => true;
|
48632
|
+
rejected: (files: File[]) => true;
|
48629
48633
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
48630
48634
|
flat: boolean;
|
48631
48635
|
reverse: boolean;
|
@@ -48756,6 +48760,7 @@ declare const VFileInput: {
|
|
48756
48760
|
centerAffix?: boolean | undefined;
|
48757
48761
|
hint?: string | undefined;
|
48758
48762
|
hideDetails?: boolean | "auto" | undefined;
|
48763
|
+
filterByType?: string | undefined;
|
48759
48764
|
} & {
|
48760
48765
|
$children?: vue.VNodeChild | {
|
48761
48766
|
$stable?: boolean;
|
@@ -48832,6 +48837,7 @@ declare const VFileInput: {
|
|
48832
48837
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
48833
48838
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
48834
48839
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
48840
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
48835
48841
|
}, Omit<Omit<{
|
48836
48842
|
$: vue.ComponentInternalInstance;
|
48837
48843
|
$data: {};
|
@@ -49168,6 +49174,7 @@ declare const VFileInput: {
|
|
49168
49174
|
centerAffix?: boolean | undefined;
|
49169
49175
|
hint?: string | undefined;
|
49170
49176
|
hideDetails?: boolean | "auto" | undefined;
|
49177
|
+
filterByType?: string | undefined;
|
49171
49178
|
} & {
|
49172
49179
|
$children?: vue.VNodeChild | {
|
49173
49180
|
$stable?: boolean;
|
@@ -49244,6 +49251,7 @@ declare const VFileInput: {
|
|
49244
49251
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
49245
49252
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
49246
49253
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
49254
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
49247
49255
|
}, Omit<Omit<{
|
49248
49256
|
$: vue.ComponentInternalInstance;
|
49249
49257
|
$data: {};
|
@@ -49480,6 +49488,7 @@ declare const VFileInput: {
|
|
49480
49488
|
'mousedown:control': (e: MouseEvent) => true;
|
49481
49489
|
'update:focused': (focused: boolean) => true;
|
49482
49490
|
'update:modelValue': (files: File | File[]) => true;
|
49491
|
+
rejected: (files: File[]) => true;
|
49483
49492
|
}, string, {
|
49484
49493
|
flat: boolean;
|
49485
49494
|
reverse: boolean;
|
@@ -49592,6 +49601,7 @@ declare const VFileInput: {
|
|
49592
49601
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
49593
49602
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
49594
49603
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
49604
|
+
filterByType: StringConstructor;
|
49595
49605
|
modelValue: {
|
49596
49606
|
type: PropType<File[] | File | null>;
|
49597
49607
|
default: (props: any) => never[] | null;
|
@@ -49717,6 +49727,7 @@ declare const VFileInput: {
|
|
49717
49727
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
49718
49728
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
49719
49729
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
49730
|
+
filterByType: StringConstructor;
|
49720
49731
|
modelValue: {
|
49721
49732
|
type: PropType<File[] | File | null>;
|
49722
49733
|
default: (props: any) => never[] | null;
|
@@ -62624,6 +62635,9 @@ declare const VProgressLinear: {
|
|
62624
62635
|
indeterminate: boolean;
|
62625
62636
|
modelValue: string | number;
|
62626
62637
|
tile: boolean;
|
62638
|
+
chunkCount: string | number;
|
62639
|
+
chunkWidth: string | number;
|
62640
|
+
chunkGap: string | number;
|
62627
62641
|
bufferValue: string | number;
|
62628
62642
|
clickable: boolean;
|
62629
62643
|
striped: boolean;
|
@@ -62679,6 +62693,9 @@ declare const VProgressLinear: {
|
|
62679
62693
|
modelValue: string | number;
|
62680
62694
|
rounded: string | number | boolean;
|
62681
62695
|
tile: boolean;
|
62696
|
+
chunkCount: string | number;
|
62697
|
+
chunkWidth: string | number;
|
62698
|
+
chunkGap: string | number;
|
62682
62699
|
bufferValue: string | number;
|
62683
62700
|
clickable: boolean;
|
62684
62701
|
striped: boolean;
|
@@ -62708,6 +62725,9 @@ declare const VProgressLinear: {
|
|
62708
62725
|
indeterminate: boolean;
|
62709
62726
|
modelValue: string | number;
|
62710
62727
|
tile: boolean;
|
62728
|
+
chunkCount: string | number;
|
62729
|
+
chunkWidth: string | number;
|
62730
|
+
chunkGap: string | number;
|
62711
62731
|
bufferValue: string | number;
|
62712
62732
|
clickable: boolean;
|
62713
62733
|
striped: boolean;
|
@@ -62761,6 +62781,9 @@ declare const VProgressLinear: {
|
|
62761
62781
|
modelValue: string | number;
|
62762
62782
|
rounded: string | number | boolean;
|
62763
62783
|
tile: boolean;
|
62784
|
+
chunkCount: string | number;
|
62785
|
+
chunkWidth: string | number;
|
62786
|
+
chunkGap: string | number;
|
62764
62787
|
bufferValue: string | number;
|
62765
62788
|
clickable: boolean;
|
62766
62789
|
striped: boolean;
|
@@ -62782,6 +62805,9 @@ declare const VProgressLinear: {
|
|
62782
62805
|
indeterminate: boolean;
|
62783
62806
|
modelValue: string | number;
|
62784
62807
|
tile: boolean;
|
62808
|
+
chunkCount: string | number;
|
62809
|
+
chunkWidth: string | number;
|
62810
|
+
chunkGap: string | number;
|
62785
62811
|
bufferValue: string | number;
|
62786
62812
|
clickable: boolean;
|
62787
62813
|
striped: boolean;
|
@@ -62837,6 +62863,9 @@ declare const VProgressLinear: {
|
|
62837
62863
|
modelValue: string | number;
|
62838
62864
|
rounded: string | number | boolean;
|
62839
62865
|
tile: boolean;
|
62866
|
+
chunkCount: string | number;
|
62867
|
+
chunkWidth: string | number;
|
62868
|
+
chunkGap: string | number;
|
62840
62869
|
bufferValue: string | number;
|
62841
62870
|
clickable: boolean;
|
62842
62871
|
striped: boolean;
|
@@ -62866,6 +62895,18 @@ declare const VProgressLinear: {
|
|
62866
62895
|
type: vue.PropType<vue.StyleValue>;
|
62867
62896
|
default: null;
|
62868
62897
|
};
|
62898
|
+
chunkCount: {
|
62899
|
+
type: (StringConstructor | NumberConstructor)[];
|
62900
|
+
default: null;
|
62901
|
+
};
|
62902
|
+
chunkWidth: {
|
62903
|
+
type: (StringConstructor | NumberConstructor)[];
|
62904
|
+
default: null;
|
62905
|
+
};
|
62906
|
+
chunkGap: {
|
62907
|
+
type: (StringConstructor | NumberConstructor)[];
|
62908
|
+
default: number;
|
62909
|
+
};
|
62869
62910
|
absolute: BooleanConstructor;
|
62870
62911
|
active: {
|
62871
62912
|
type: BooleanConstructor;
|
@@ -62919,6 +62960,18 @@ declare const VProgressLinear: {
|
|
62919
62960
|
type: vue.PropType<vue.StyleValue>;
|
62920
62961
|
default: null;
|
62921
62962
|
};
|
62963
|
+
chunkCount: {
|
62964
|
+
type: (StringConstructor | NumberConstructor)[];
|
62965
|
+
default: null;
|
62966
|
+
};
|
62967
|
+
chunkWidth: {
|
62968
|
+
type: (StringConstructor | NumberConstructor)[];
|
62969
|
+
default: null;
|
62970
|
+
};
|
62971
|
+
chunkGap: {
|
62972
|
+
type: (StringConstructor | NumberConstructor)[];
|
62973
|
+
default: number;
|
62974
|
+
};
|
62922
62975
|
absolute: BooleanConstructor;
|
62923
62976
|
active: {
|
62924
62977
|
type: BooleanConstructor;
|
@@ -106187,6 +106240,7 @@ declare const VFileUpload: {
|
|
106187
106240
|
openDelay?: string | number | undefined;
|
106188
106241
|
thickness?: string | number | undefined;
|
106189
106242
|
subtitle?: string | undefined;
|
106243
|
+
filterByType?: string | undefined;
|
106190
106244
|
} & {
|
106191
106245
|
$children?: vue.VNodeChild | {
|
106192
106246
|
$stable?: boolean;
|
@@ -106251,8 +106305,10 @@ declare const VFileUpload: {
|
|
106251
106305
|
"v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
|
106252
106306
|
} & {
|
106253
106307
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
106308
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
106254
106309
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
106255
106310
|
'update:modelValue': (files: File[]) => true;
|
106311
|
+
rejected: (files: File[]) => true;
|
106256
106312
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
106257
106313
|
length: string | number;
|
106258
106314
|
style: vue.StyleValue;
|
@@ -106335,6 +106391,7 @@ declare const VFileUpload: {
|
|
106335
106391
|
openDelay?: string | number | undefined;
|
106336
106392
|
thickness?: string | number | undefined;
|
106337
106393
|
subtitle?: string | undefined;
|
106394
|
+
filterByType?: string | undefined;
|
106338
106395
|
} & {
|
106339
106396
|
$children?: vue.VNodeChild | {
|
106340
106397
|
$stable?: boolean;
|
@@ -106399,6 +106456,7 @@ declare const VFileUpload: {
|
|
106399
106456
|
"v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
|
106400
106457
|
} & {
|
106401
106458
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
106459
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
106402
106460
|
}, {}, {}, {}, {}, {
|
106403
106461
|
length: string | number;
|
106404
106462
|
style: vue.StyleValue;
|
@@ -106459,6 +106517,7 @@ declare const VFileUpload: {
|
|
106459
106517
|
openDelay?: string | number | undefined;
|
106460
106518
|
thickness?: string | number | undefined;
|
106461
106519
|
subtitle?: string | undefined;
|
106520
|
+
filterByType?: string | undefined;
|
106462
106521
|
} & {
|
106463
106522
|
$children?: vue.VNodeChild | {
|
106464
106523
|
$stable?: boolean;
|
@@ -106523,8 +106582,10 @@ declare const VFileUpload: {
|
|
106523
106582
|
"v-slot:divider"?: false | (() => vue.VNodeChild) | undefined;
|
106524
106583
|
} & {
|
106525
106584
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
106585
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
106526
106586
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
106527
106587
|
'update:modelValue': (files: File[]) => true;
|
106588
|
+
rejected: (files: File[]) => true;
|
106528
106589
|
}, string, {
|
106529
106590
|
length: string | number;
|
106530
106591
|
style: vue.StyleValue;
|
@@ -106608,6 +106669,7 @@ declare const VFileUpload: {
|
|
106608
106669
|
};
|
106609
106670
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
106610
106671
|
openDelay: (StringConstructor | NumberConstructor)[];
|
106672
|
+
filterByType: StringConstructor;
|
106611
106673
|
browseText: {
|
106612
106674
|
type: StringConstructor;
|
106613
106675
|
default: string;
|
@@ -106686,6 +106748,7 @@ declare const VFileUpload: {
|
|
106686
106748
|
};
|
106687
106749
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
106688
106750
|
openDelay: (StringConstructor | NumberConstructor)[];
|
106751
|
+
filterByType: StringConstructor;
|
106689
106752
|
browseText: {
|
106690
106753
|
type: StringConstructor;
|
106691
106754
|
default: string;
|
@@ -122807,41 +122870,46 @@ declare module 'vue' {
|
|
122807
122870
|
}
|
122808
122871
|
export interface GlobalComponents {
|
122809
122872
|
VApp: VApp
|
122810
|
-
VAlert: VAlert
|
122811
|
-
VAlertTitle: VAlertTitle
|
122812
|
-
VAvatar: VAvatar
|
122813
122873
|
VAppBar: VAppBar
|
122814
122874
|
VAppBarNavIcon: VAppBarNavIcon
|
122815
122875
|
VAppBarTitle: VAppBarTitle
|
122816
|
-
VAutocomplete: VAutocomplete
|
122817
122876
|
VBadge: VBadge
|
122877
|
+
VAutocomplete: VAutocomplete
|
122878
|
+
VAvatar: VAvatar
|
122879
|
+
VBreadcrumbs: VBreadcrumbs
|
122880
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
122881
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
122882
|
+
VBottomSheet: VBottomSheet
|
122883
|
+
VBtn: VBtn
|
122818
122884
|
VBanner: VBanner
|
122819
122885
|
VBannerActions: VBannerActions
|
122820
122886
|
VBannerText: VBannerText
|
122821
122887
|
VBottomNavigation: VBottomNavigation
|
122822
|
-
VBottomSheet: VBottomSheet
|
122823
|
-
VBtnGroup: VBtnGroup
|
122824
|
-
VBtn: VBtn
|
122825
|
-
VCheckbox: VCheckbox
|
122826
|
-
VCheckboxBtn: VCheckboxBtn
|
122827
122888
|
VBtnToggle: VBtnToggle
|
122828
|
-
VBreadcrumbs: VBreadcrumbs
|
122829
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
122830
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
122831
|
-
VCarousel: VCarousel
|
122832
|
-
VCarouselItem: VCarouselItem
|
122833
|
-
VChipGroup: VChipGroup
|
122834
|
-
VCode: VCode
|
122835
|
-
VChip: VChip
|
122836
|
-
VCombobox: VCombobox
|
122837
122889
|
VCard: VCard
|
122838
122890
|
VCardActions: VCardActions
|
122839
122891
|
VCardItem: VCardItem
|
122840
122892
|
VCardSubtitle: VCardSubtitle
|
122841
122893
|
VCardText: VCardText
|
122842
122894
|
VCardTitle: VCardTitle
|
122895
|
+
VChip: VChip
|
122896
|
+
VChipGroup: VChipGroup
|
122897
|
+
VBtnGroup: VBtnGroup
|
122898
|
+
VCarousel: VCarousel
|
122899
|
+
VCarouselItem: VCarouselItem
|
122900
|
+
VCheckbox: VCheckbox
|
122901
|
+
VCheckboxBtn: VCheckboxBtn
|
122843
122902
|
VColorPicker: VColorPicker
|
122903
|
+
VCode: VCode
|
122904
|
+
VDatePicker: VDatePicker
|
122905
|
+
VDatePickerControls: VDatePickerControls
|
122906
|
+
VDatePickerHeader: VDatePickerHeader
|
122907
|
+
VDatePickerMonth: VDatePickerMonth
|
122908
|
+
VDatePickerMonths: VDatePickerMonths
|
122909
|
+
VDatePickerYears: VDatePickerYears
|
122910
|
+
VCombobox: VCombobox
|
122844
122911
|
VCounter: VCounter
|
122912
|
+
VDivider: VDivider
|
122845
122913
|
VDataTable: VDataTable
|
122846
122914
|
VDataTableHeaders: VDataTableHeaders
|
122847
122915
|
VDataTableFooter: VDataTableFooter
|
@@ -122850,35 +122918,26 @@ declare module 'vue' {
|
|
122850
122918
|
VDataTableVirtual: VDataTableVirtual
|
122851
122919
|
VDataTableServer: VDataTableServer
|
122852
122920
|
VDialog: VDialog
|
122853
|
-
|
122854
|
-
VDatePickerControls: VDatePickerControls
|
122855
|
-
VDatePickerHeader: VDatePickerHeader
|
122856
|
-
VDatePickerMonth: VDatePickerMonth
|
122857
|
-
VDatePickerMonths: VDatePickerMonths
|
122858
|
-
VDatePickerYears: VDatePickerYears
|
122921
|
+
VEmptyState: VEmptyState
|
122859
122922
|
VExpansionPanels: VExpansionPanels
|
122860
122923
|
VExpansionPanel: VExpansionPanel
|
122861
122924
|
VExpansionPanelText: VExpansionPanelText
|
122862
122925
|
VExpansionPanelTitle: VExpansionPanelTitle
|
122863
|
-
VFab: VFab
|
122864
|
-
VDivider: VDivider
|
122865
|
-
VEmptyState: VEmptyState
|
122866
|
-
VField: VField
|
122867
|
-
VFieldLabel: VFieldLabel
|
122868
122926
|
VFileInput: VFileInput
|
122869
|
-
|
122927
|
+
VFooter: VFooter
|
122928
|
+
VFab: VFab
|
122870
122929
|
VIcon: VIcon
|
122871
122930
|
VComponentIcon: VComponentIcon
|
122872
122931
|
VSvgIcon: VSvgIcon
|
122873
122932
|
VLigatureIcon: VLigatureIcon
|
122874
122933
|
VClassIcon: VClassIcon
|
122875
|
-
VInput: VInput
|
122876
|
-
VKbd: VKbd
|
122877
122934
|
VInfiniteScroll: VInfiniteScroll
|
122878
122935
|
VItemGroup: VItemGroup
|
122879
122936
|
VItem: VItem
|
122937
|
+
VImg: VImg
|
122938
|
+
VKbd: VKbd
|
122939
|
+
VInput: VInput
|
122880
122940
|
VLabel: VLabel
|
122881
|
-
VMessages: VMessages
|
122882
122941
|
VList: VList
|
122883
122942
|
VListGroup: VListGroup
|
122884
122943
|
VListImg: VListImg
|
@@ -122889,71 +122948,77 @@ declare module 'vue' {
|
|
122889
122948
|
VListItemTitle: VListItemTitle
|
122890
122949
|
VListSubheader: VListSubheader
|
122891
122950
|
VMenu: VMenu
|
122892
|
-
|
122893
|
-
VMain: VMain
|
122951
|
+
VMessages: VMessages
|
122894
122952
|
VNumberInput: VNumberInput
|
122953
|
+
VMain: VMain
|
122954
|
+
VPagination: VPagination
|
122895
122955
|
VOtpInput: VOtpInput
|
122896
122956
|
VOverlay: VOverlay
|
122897
|
-
VPagination: VPagination
|
122898
|
-
VProgressCircular: VProgressCircular
|
122899
122957
|
VProgressLinear: VProgressLinear
|
122900
122958
|
VRadioGroup: VRadioGroup
|
122959
|
+
VNavigationDrawer: VNavigationDrawer
|
122901
122960
|
VRating: VRating
|
122902
|
-
|
122961
|
+
VField: VField
|
122962
|
+
VFieldLabel: VFieldLabel
|
122903
122963
|
VSelect: VSelect
|
122904
|
-
VSheet: VSheet
|
122905
122964
|
VSelectionControlGroup: VSelectionControlGroup
|
122965
|
+
VSelectionControl: VSelectionControl
|
122906
122966
|
VSkeletonLoader: VSkeletonLoader
|
122907
|
-
|
122908
|
-
VSlideGroupItem: VSlideGroupItem
|
122909
|
-
VSlider: VSlider
|
122967
|
+
VSheet: VSheet
|
122910
122968
|
VSnackbar: VSnackbar
|
122969
|
+
VSlider: VSlider
|
122970
|
+
VSwitch: VSwitch
|
122971
|
+
VTable: VTable
|
122911
122972
|
VStepper: VStepper
|
122912
122973
|
VStepperActions: VStepperActions
|
122913
122974
|
VStepperHeader: VStepperHeader
|
122914
122975
|
VStepperItem: VStepperItem
|
122915
122976
|
VStepperWindow: VStepperWindow
|
122916
122977
|
VStepperWindowItem: VStepperWindowItem
|
122917
|
-
VSwitch: VSwitch
|
122918
|
-
VSystemBar: VSystemBar
|
122919
|
-
VTextField: VTextField
|
122920
|
-
VTextarea: VTextarea
|
122921
122978
|
VTab: VTab
|
122922
122979
|
VTabs: VTabs
|
122923
122980
|
VTabsWindow: VTabsWindow
|
122924
122981
|
VTabsWindowItem: VTabsWindowItem
|
122925
|
-
|
122926
|
-
|
122927
|
-
|
122928
|
-
|
122982
|
+
VTextarea: VTextarea
|
122983
|
+
VSystemBar: VSystemBar
|
122984
|
+
VTimeline: VTimeline
|
122985
|
+
VTimelineItem: VTimelineItem
|
122929
122986
|
VTimePicker: VTimePicker
|
122930
122987
|
VTimePickerClock: VTimePickerClock
|
122931
122988
|
VTimePickerControls: VTimePickerControls
|
122932
|
-
|
122933
|
-
|
122934
|
-
|
122989
|
+
VToolbar: VToolbar
|
122990
|
+
VToolbarTitle: VToolbarTitle
|
122991
|
+
VToolbarItems: VToolbarItems
|
122935
122992
|
VTooltip: VTooltip
|
122936
122993
|
VWindow: VWindow
|
122937
122994
|
VWindowItem: VWindowItem
|
122995
|
+
VAlert: VAlert
|
122996
|
+
VAlertTitle: VAlertTitle
|
122938
122997
|
VConfirmEdit: VConfirmEdit
|
122939
|
-
|
122998
|
+
VSlideGroup: VSlideGroup
|
122999
|
+
VSlideGroupItem: VSlideGroupItem
|
122940
123000
|
VDefaultsProvider: VDefaultsProvider
|
122941
123001
|
VForm: VForm
|
122942
123002
|
VContainer: VContainer
|
122943
123003
|
VCol: VCol
|
122944
123004
|
VRow: VRow
|
122945
123005
|
VSpacer: VSpacer
|
123006
|
+
VTreeview: VTreeview
|
123007
|
+
VTreeviewItem: VTreeviewItem
|
123008
|
+
VTreeviewGroup: VTreeviewGroup
|
122946
123009
|
VHover: VHover
|
122947
|
-
VLayout: VLayout
|
122948
|
-
VLayoutItem: VLayoutItem
|
122949
|
-
VLazy: VLazy
|
122950
123010
|
VLocaleProvider: VLocaleProvider
|
123011
|
+
VLazy: VLazy
|
122951
123012
|
VNoSsr: VNoSsr
|
122952
123013
|
VParallax: VParallax
|
122953
123014
|
VRadio: VRadio
|
122954
123015
|
VRangeSlider: VRangeSlider
|
122955
123016
|
VResponsive: VResponsive
|
123017
|
+
VSparkline: VSparkline
|
123018
|
+
VSnackbarQueue: VSnackbarQueue
|
122956
123019
|
VSpeedDial: VSpeedDial
|
123020
|
+
VProgressCircular: VProgressCircular
|
123021
|
+
VTextField: VTextField
|
122957
123022
|
VThemeProvider: VThemeProvider
|
122958
123023
|
VValidation: VValidation
|
122959
123024
|
VVirtualScroll: VVirtualScroll
|
@@ -122973,36 +123038,34 @@ declare module 'vue' {
|
|
122973
123038
|
VExpandTransition: VExpandTransition
|
122974
123039
|
VExpandXTransition: VExpandXTransition
|
122975
123040
|
VDialogTransition: VDialogTransition
|
122976
|
-
|
122977
|
-
|
122978
|
-
|
122979
|
-
VTimeline: VTimeline
|
122980
|
-
VTimelineItem: VTimelineItem
|
123041
|
+
VDataIterator: VDataIterator
|
123042
|
+
VLayout: VLayout
|
123043
|
+
VLayoutItem: VLayoutItem
|
122981
123044
|
VCalendar: VCalendar
|
122982
123045
|
VCalendarDay: VCalendarDay
|
122983
123046
|
VCalendarHeader: VCalendarHeader
|
122984
123047
|
VCalendarInterval: VCalendarInterval
|
122985
123048
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
122986
123049
|
VCalendarMonthDay: VCalendarMonthDay
|
123050
|
+
VColorInput: VColorInput
|
123051
|
+
VIconBtn: VIconBtn
|
122987
123052
|
VFileUpload: VFileUpload
|
122988
123053
|
VFileUploadItem: VFileUploadItem
|
122989
|
-
|
123054
|
+
VPicker: VPicker
|
123055
|
+
VPickerTitle: VPickerTitle
|
122990
123056
|
VStepperVertical: VStepperVertical
|
122991
123057
|
VStepperVerticalItem: VStepperVerticalItem
|
122992
123058
|
VStepperVerticalActions: VStepperVerticalActions
|
122993
|
-
VPicker: VPicker
|
122994
|
-
VPickerTitle: VPickerTitle
|
122995
|
-
VIconBtn: VIconBtn
|
122996
|
-
VHotkey: VHotkey
|
122997
|
-
VPie: VPie
|
122998
|
-
VPieSegment: VPieSegment
|
122999
|
-
VPieTooltip: VPieTooltip
|
123000
123059
|
VVideo: VVideo
|
123001
123060
|
VVideoControls: VVideoControls
|
123002
123061
|
VVideoVolume: VVideoVolume
|
123062
|
+
VPie: VPie
|
123063
|
+
VPieSegment: VPieSegment
|
123064
|
+
VPieTooltip: VPieTooltip
|
123065
|
+
VHotkey: VHotkey
|
123003
123066
|
VDateInput: VDateInput
|
123004
|
-
VMaskInput: VMaskInput
|
123005
123067
|
VPullToRefresh: VPullToRefresh
|
123068
|
+
VMaskInput: VMaskInput
|
123006
123069
|
}
|
123007
123070
|
export interface GlobalDirectives {
|
123008
123071
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|