@vuetify/nightly 3.9.0-dev.2025-07-08 → 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 +14 -3
- package/dist/json/attributes.json +3826 -3806
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +168 -168
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +6992 -6922
- package/dist/vuetify-labs.cjs +216 -27
- package/dist/vuetify-labs.css +4659 -4657
- package/dist/vuetify-labs.d.ts +119 -57
- package/dist/vuetify-labs.esm.js +216 -27
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +216 -27
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +178 -18
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4036 -4034
- package/dist/vuetify.d.ts +109 -57
- package/dist/vuetify.esm.js +178 -18
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +178 -18
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +718 -696
- 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/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 +57 -57
- 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.d.ts
CHANGED
@@ -46777,6 +46777,7 @@ declare const VFileInput: {
|
|
46777
46777
|
centerAffix?: boolean | undefined;
|
46778
46778
|
hint?: string | undefined;
|
46779
46779
|
hideDetails?: boolean | "auto" | undefined;
|
46780
|
+
filterByType?: string | undefined;
|
46780
46781
|
} & {
|
46781
46782
|
$children?: vue.VNodeChild | {
|
46782
46783
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
@@ -46851,6 +46852,7 @@ declare const VFileInput: {
|
|
46851
46852
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
46852
46853
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
46853
46854
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
46855
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
46854
46856
|
}, Omit<Omit<{
|
46855
46857
|
$: vue.ComponentInternalInstance;
|
46856
46858
|
$data: {};
|
@@ -47087,6 +47089,7 @@ declare const VFileInput: {
|
|
47087
47089
|
'mousedown:control': (e: MouseEvent) => true;
|
47088
47090
|
'update:focused': (focused: boolean) => true;
|
47089
47091
|
'update:modelValue': (files: File | File[]) => true;
|
47092
|
+
rejected: (files: File[]) => true;
|
47090
47093
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
47091
47094
|
flat: boolean;
|
47092
47095
|
reverse: boolean;
|
@@ -47215,6 +47218,7 @@ declare const VFileInput: {
|
|
47215
47218
|
centerAffix?: boolean | undefined;
|
47216
47219
|
hint?: string | undefined;
|
47217
47220
|
hideDetails?: boolean | "auto" | undefined;
|
47221
|
+
filterByType?: string | undefined;
|
47218
47222
|
} & {
|
47219
47223
|
$children?: vue.VNodeChild | {
|
47220
47224
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
@@ -47289,6 +47293,7 @@ declare const VFileInput: {
|
|
47289
47293
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
47290
47294
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
47291
47295
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
47296
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
47292
47297
|
}, Omit<Omit<{
|
47293
47298
|
$: vue.ComponentInternalInstance;
|
47294
47299
|
$data: {};
|
@@ -47623,6 +47628,7 @@ declare const VFileInput: {
|
|
47623
47628
|
centerAffix?: boolean | undefined;
|
47624
47629
|
hint?: string | undefined;
|
47625
47630
|
hideDetails?: boolean | "auto" | undefined;
|
47631
|
+
filterByType?: string | undefined;
|
47626
47632
|
} & {
|
47627
47633
|
$children?: vue.VNodeChild | {
|
47628
47634
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
@@ -47697,6 +47703,7 @@ declare const VFileInput: {
|
|
47697
47703
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
47698
47704
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
47699
47705
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
47706
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
47700
47707
|
}, Omit<Omit<{
|
47701
47708
|
$: vue.ComponentInternalInstance;
|
47702
47709
|
$data: {};
|
@@ -47933,6 +47940,7 @@ declare const VFileInput: {
|
|
47933
47940
|
'mousedown:control': (e: MouseEvent) => true;
|
47934
47941
|
'update:focused': (focused: boolean) => true;
|
47935
47942
|
'update:modelValue': (files: File | File[]) => true;
|
47943
|
+
rejected: (files: File[]) => true;
|
47936
47944
|
}, string, {
|
47937
47945
|
flat: boolean;
|
47938
47946
|
reverse: boolean;
|
@@ -48043,6 +48051,7 @@ declare const VFileInput: {
|
|
48043
48051
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
48044
48052
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
48045
48053
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
48054
|
+
filterByType: StringConstructor;
|
48046
48055
|
modelValue: {
|
48047
48056
|
type: PropType<File[] | File | null>;
|
48048
48057
|
default: (props: any) => never[] | null;
|
@@ -48167,6 +48176,7 @@ declare const VFileInput: {
|
|
48167
48176
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
48168
48177
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
48169
48178
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
48179
|
+
filterByType: StringConstructor;
|
48170
48180
|
modelValue: {
|
48171
48181
|
type: PropType<File[] | File | null>;
|
48172
48182
|
default: (props: any) => never[] | null;
|
@@ -60832,6 +60842,9 @@ declare const VProgressLinear: {
|
|
60832
60842
|
indeterminate: boolean;
|
60833
60843
|
modelValue: string | number;
|
60834
60844
|
tile: boolean;
|
60845
|
+
chunkCount: string | number;
|
60846
|
+
chunkWidth: string | number;
|
60847
|
+
chunkGap: string | number;
|
60835
60848
|
bufferValue: string | number;
|
60836
60849
|
clickable: boolean;
|
60837
60850
|
striped: boolean;
|
@@ -60885,6 +60898,9 @@ declare const VProgressLinear: {
|
|
60885
60898
|
modelValue: string | number;
|
60886
60899
|
rounded: string | number | boolean;
|
60887
60900
|
tile: boolean;
|
60901
|
+
chunkCount: string | number;
|
60902
|
+
chunkWidth: string | number;
|
60903
|
+
chunkGap: string | number;
|
60888
60904
|
bufferValue: string | number;
|
60889
60905
|
clickable: boolean;
|
60890
60906
|
striped: boolean;
|
@@ -60914,6 +60930,9 @@ declare const VProgressLinear: {
|
|
60914
60930
|
indeterminate: boolean;
|
60915
60931
|
modelValue: string | number;
|
60916
60932
|
tile: boolean;
|
60933
|
+
chunkCount: string | number;
|
60934
|
+
chunkWidth: string | number;
|
60935
|
+
chunkGap: string | number;
|
60917
60936
|
bufferValue: string | number;
|
60918
60937
|
clickable: boolean;
|
60919
60938
|
striped: boolean;
|
@@ -60965,6 +60984,9 @@ declare const VProgressLinear: {
|
|
60965
60984
|
modelValue: string | number;
|
60966
60985
|
rounded: string | number | boolean;
|
60967
60986
|
tile: boolean;
|
60987
|
+
chunkCount: string | number;
|
60988
|
+
chunkWidth: string | number;
|
60989
|
+
chunkGap: string | number;
|
60968
60990
|
bufferValue: string | number;
|
60969
60991
|
clickable: boolean;
|
60970
60992
|
striped: boolean;
|
@@ -60986,6 +61008,9 @@ declare const VProgressLinear: {
|
|
60986
61008
|
indeterminate: boolean;
|
60987
61009
|
modelValue: string | number;
|
60988
61010
|
tile: boolean;
|
61011
|
+
chunkCount: string | number;
|
61012
|
+
chunkWidth: string | number;
|
61013
|
+
chunkGap: string | number;
|
60989
61014
|
bufferValue: string | number;
|
60990
61015
|
clickable: boolean;
|
60991
61016
|
striped: boolean;
|
@@ -61039,6 +61064,9 @@ declare const VProgressLinear: {
|
|
61039
61064
|
modelValue: string | number;
|
61040
61065
|
rounded: string | number | boolean;
|
61041
61066
|
tile: boolean;
|
61067
|
+
chunkCount: string | number;
|
61068
|
+
chunkWidth: string | number;
|
61069
|
+
chunkGap: string | number;
|
61042
61070
|
bufferValue: string | number;
|
61043
61071
|
clickable: boolean;
|
61044
61072
|
striped: boolean;
|
@@ -61068,6 +61096,18 @@ declare const VProgressLinear: {
|
|
61068
61096
|
type: vue.PropType<vue.StyleValue>;
|
61069
61097
|
default: null;
|
61070
61098
|
};
|
61099
|
+
chunkCount: {
|
61100
|
+
type: (StringConstructor | NumberConstructor)[];
|
61101
|
+
default: null;
|
61102
|
+
};
|
61103
|
+
chunkWidth: {
|
61104
|
+
type: (StringConstructor | NumberConstructor)[];
|
61105
|
+
default: null;
|
61106
|
+
};
|
61107
|
+
chunkGap: {
|
61108
|
+
type: (StringConstructor | NumberConstructor)[];
|
61109
|
+
default: number;
|
61110
|
+
};
|
61071
61111
|
absolute: BooleanConstructor;
|
61072
61112
|
active: {
|
61073
61113
|
type: BooleanConstructor;
|
@@ -61121,6 +61161,18 @@ declare const VProgressLinear: {
|
|
61121
61161
|
type: vue.PropType<vue.StyleValue>;
|
61122
61162
|
default: null;
|
61123
61163
|
};
|
61164
|
+
chunkCount: {
|
61165
|
+
type: (StringConstructor | NumberConstructor)[];
|
61166
|
+
default: null;
|
61167
|
+
};
|
61168
|
+
chunkWidth: {
|
61169
|
+
type: (StringConstructor | NumberConstructor)[];
|
61170
|
+
default: null;
|
61171
|
+
};
|
61172
|
+
chunkGap: {
|
61173
|
+
type: (StringConstructor | NumberConstructor)[];
|
61174
|
+
default: number;
|
61175
|
+
};
|
61124
61176
|
absolute: BooleanConstructor;
|
61125
61177
|
active: {
|
61126
61178
|
type: BooleanConstructor;
|
@@ -93579,35 +93631,32 @@ declare module 'vue' {
|
|
93579
93631
|
VAppBar: VAppBar
|
93580
93632
|
VAppBarNavIcon: VAppBarNavIcon
|
93581
93633
|
VAppBarTitle: VAppBarTitle
|
93582
|
-
VAvatar: VAvatar
|
93583
93634
|
VAutocomplete: VAutocomplete
|
93635
|
+
VAvatar: VAvatar
|
93636
|
+
VBadge: VBadge
|
93637
|
+
VBottomNavigation: VBottomNavigation
|
93584
93638
|
VBottomSheet: VBottomSheet
|
93585
93639
|
VBreadcrumbs: VBreadcrumbs
|
93586
93640
|
VBreadcrumbsItem: VBreadcrumbsItem
|
93587
93641
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
93588
|
-
VBottomNavigation: VBottomNavigation
|
93589
|
-
VBtnGroup: VBtnGroup
|
93590
|
-
VBanner: VBanner
|
93591
|
-
VBannerActions: VBannerActions
|
93592
|
-
VBannerText: VBannerText
|
93593
|
-
VBadge: VBadge
|
93594
|
-
VCarousel: VCarousel
|
93595
|
-
VCarouselItem: VCarouselItem
|
93596
93642
|
VBtn: VBtn
|
93643
|
+
VBtnToggle: VBtnToggle
|
93597
93644
|
VCheckbox: VCheckbox
|
93598
93645
|
VCheckboxBtn: VCheckboxBtn
|
93599
|
-
VChipGroup: VChipGroup
|
93600
93646
|
VCard: VCard
|
93601
93647
|
VCardActions: VCardActions
|
93602
93648
|
VCardItem: VCardItem
|
93603
93649
|
VCardSubtitle: VCardSubtitle
|
93604
93650
|
VCardText: VCardText
|
93605
93651
|
VCardTitle: VCardTitle
|
93606
|
-
|
93652
|
+
VBtnGroup: VBtnGroup
|
93653
|
+
VCarousel: VCarousel
|
93654
|
+
VCarouselItem: VCarouselItem
|
93655
|
+
VChipGroup: VChipGroup
|
93607
93656
|
VChip: VChip
|
93608
|
-
VCode: VCode
|
93609
93657
|
VCombobox: VCombobox
|
93610
|
-
|
93658
|
+
VCode: VCode
|
93659
|
+
VColorPicker: VColorPicker
|
93611
93660
|
VDataTable: VDataTable
|
93612
93661
|
VDataTableHeaders: VDataTableHeaders
|
93613
93662
|
VDataTableFooter: VDataTableFooter
|
@@ -93615,36 +93664,36 @@ declare module 'vue' {
|
|
93615
93664
|
VDataTableRow: VDataTableRow
|
93616
93665
|
VDataTableVirtual: VDataTableVirtual
|
93617
93666
|
VDataTableServer: VDataTableServer
|
93667
|
+
VCounter: VCounter
|
93618
93668
|
VDialog: VDialog
|
93619
|
-
VColorPicker: VColorPicker
|
93620
|
-
VDivider: VDivider
|
93621
93669
|
VDatePicker: VDatePicker
|
93622
93670
|
VDatePickerControls: VDatePickerControls
|
93623
93671
|
VDatePickerHeader: VDatePickerHeader
|
93624
93672
|
VDatePickerMonth: VDatePickerMonth
|
93625
93673
|
VDatePickerMonths: VDatePickerMonths
|
93626
93674
|
VDatePickerYears: VDatePickerYears
|
93675
|
+
VDivider: VDivider
|
93676
|
+
VEmptyState: VEmptyState
|
93677
|
+
VFab: VFab
|
93627
93678
|
VExpansionPanels: VExpansionPanels
|
93628
93679
|
VExpansionPanel: VExpansionPanel
|
93629
93680
|
VExpansionPanelText: VExpansionPanelText
|
93630
93681
|
VExpansionPanelTitle: VExpansionPanelTitle
|
93631
93682
|
VField: VField
|
93632
93683
|
VFieldLabel: VFieldLabel
|
93633
|
-
|
93634
|
-
VEmptyState: VEmptyState
|
93684
|
+
VFileInput: VFileInput
|
93635
93685
|
VFooter: VFooter
|
93686
|
+
VImg: VImg
|
93636
93687
|
VIcon: VIcon
|
93637
93688
|
VComponentIcon: VComponentIcon
|
93638
93689
|
VSvgIcon: VSvgIcon
|
93639
93690
|
VLigatureIcon: VLigatureIcon
|
93640
93691
|
VClassIcon: VClassIcon
|
93641
|
-
VFileInput: VFileInput
|
93642
|
-
VInfiniteScroll: VInfiniteScroll
|
93643
|
-
VInput: VInput
|
93644
93692
|
VKbd: VKbd
|
93645
|
-
|
93693
|
+
VInput: VInput
|
93646
93694
|
VItemGroup: VItemGroup
|
93647
93695
|
VItem: VItem
|
93696
|
+
VLabel: VLabel
|
93648
93697
|
VList: VList
|
93649
93698
|
VListGroup: VListGroup
|
93650
93699
|
VListImg: VListImg
|
@@ -93654,61 +93703,59 @@ declare module 'vue' {
|
|
93654
93703
|
VListItemSubtitle: VListItemSubtitle
|
93655
93704
|
VListItemTitle: VListItemTitle
|
93656
93705
|
VListSubheader: VListSubheader
|
93657
|
-
VLabel: VLabel
|
93658
|
-
VMenu: VMenu
|
93659
93706
|
VMain: VMain
|
93660
|
-
VMessages: VMessages
|
93661
93707
|
VNavigationDrawer: VNavigationDrawer
|
93708
|
+
VMessages: VMessages
|
93709
|
+
VMenu: VMenu
|
93662
93710
|
VOtpInput: VOtpInput
|
93663
|
-
VNumberInput: VNumberInput
|
93664
93711
|
VOverlay: VOverlay
|
93665
93712
|
VPagination: VPagination
|
93713
|
+
VNumberInput: VNumberInput
|
93714
|
+
VProgressLinear: VProgressLinear
|
93666
93715
|
VProgressCircular: VProgressCircular
|
93667
93716
|
VRadioGroup: VRadioGroup
|
93668
|
-
VProgressLinear: VProgressLinear
|
93669
|
-
VSelect: VSelect
|
93670
|
-
VRating: VRating
|
93671
|
-
VSelectionControl: VSelectionControl
|
93672
|
-
VSheet: VSheet
|
93673
93717
|
VSelectionControlGroup: VSelectionControlGroup
|
93674
|
-
|
93718
|
+
VRating: VRating
|
93719
|
+
VSelect: VSelect
|
93675
93720
|
VSlideGroup: VSlideGroup
|
93676
93721
|
VSlideGroupItem: VSlideGroupItem
|
93722
|
+
VSelectionControl: VSelectionControl
|
93677
93723
|
VSkeletonLoader: VSkeletonLoader
|
93724
|
+
VSlider: VSlider
|
93725
|
+
VSheet: VSheet
|
93678
93726
|
VSnackbar: VSnackbar
|
93679
|
-
VSwitch: VSwitch
|
93680
|
-
VTab: VTab
|
93681
|
-
VTabs: VTabs
|
93682
|
-
VTabsWindow: VTabsWindow
|
93683
|
-
VTabsWindowItem: VTabsWindowItem
|
93684
|
-
VTextField: VTextField
|
93685
93727
|
VStepper: VStepper
|
93686
93728
|
VStepperActions: VStepperActions
|
93687
93729
|
VStepperHeader: VStepperHeader
|
93688
93730
|
VStepperItem: VStepperItem
|
93689
93731
|
VStepperWindow: VStepperWindow
|
93690
93732
|
VStepperWindowItem: VStepperWindowItem
|
93691
|
-
VTable: VTable
|
93692
|
-
VTimeline: VTimeline
|
93693
|
-
VTimelineItem: VTimelineItem
|
93694
93733
|
VSystemBar: VSystemBar
|
93734
|
+
VSwitch: VSwitch
|
93735
|
+
VTable: VTable
|
93736
|
+
VTab: VTab
|
93737
|
+
VTabs: VTabs
|
93738
|
+
VTabsWindow: VTabsWindow
|
93739
|
+
VTabsWindowItem: VTabsWindowItem
|
93740
|
+
VTextField: VTextField
|
93741
|
+
VTextarea: VTextarea
|
93695
93742
|
VTimePicker: VTimePicker
|
93696
93743
|
VTimePickerClock: VTimePickerClock
|
93697
93744
|
VTimePickerControls: VTimePickerControls
|
93698
|
-
|
93699
|
-
|
93700
|
-
VTextarea: VTextarea
|
93701
|
-
VTooltip: VTooltip
|
93745
|
+
VTimeline: VTimeline
|
93746
|
+
VTimelineItem: VTimelineItem
|
93702
93747
|
VToolbar: VToolbar
|
93703
93748
|
VToolbarTitle: VToolbarTitle
|
93704
93749
|
VToolbarItems: VToolbarItems
|
93750
|
+
VTooltip: VTooltip
|
93705
93751
|
VTreeview: VTreeview
|
93706
93752
|
VTreeviewItem: VTreeviewItem
|
93707
93753
|
VTreeviewGroup: VTreeviewGroup
|
93754
|
+
VWindow: VWindow
|
93755
|
+
VWindowItem: VWindowItem
|
93708
93756
|
VConfirmEdit: VConfirmEdit
|
93709
93757
|
VDataIterator: VDataIterator
|
93710
93758
|
VDefaultsProvider: VDefaultsProvider
|
93711
|
-
VForm: VForm
|
93712
93759
|
VContainer: VContainer
|
93713
93760
|
VCol: VCol
|
93714
93761
|
VRow: VRow
|
@@ -93716,19 +93763,23 @@ declare module 'vue' {
|
|
93716
93763
|
VHover: VHover
|
93717
93764
|
VLayout: VLayout
|
93718
93765
|
VLayoutItem: VLayoutItem
|
93719
|
-
|
93766
|
+
VForm: VForm
|
93720
93767
|
VLocaleProvider: VLocaleProvider
|
93721
|
-
|
93768
|
+
VLazy: VLazy
|
93722
93769
|
VParallax: VParallax
|
93723
|
-
VRangeSlider: VRangeSlider
|
93724
93770
|
VRadio: VRadio
|
93725
|
-
|
93771
|
+
VRangeSlider: VRangeSlider
|
93772
|
+
VNoSsr: VNoSsr
|
93726
93773
|
VSnackbarQueue: VSnackbarQueue
|
93727
|
-
VSpeedDial: VSpeedDial
|
93728
93774
|
VResponsive: VResponsive
|
93775
|
+
VBanner: VBanner
|
93776
|
+
VBannerActions: VBannerActions
|
93777
|
+
VBannerText: VBannerText
|
93778
|
+
VSparkline: VSparkline
|
93779
|
+
VSpeedDial: VSpeedDial
|
93780
|
+
VValidation: VValidation
|
93729
93781
|
VThemeProvider: VThemeProvider
|
93730
93782
|
VVirtualScroll: VVirtualScroll
|
93731
|
-
VValidation: VValidation
|
93732
93783
|
VFabTransition: VFabTransition
|
93733
93784
|
VDialogBottomTransition: VDialogBottomTransition
|
93734
93785
|
VDialogTopTransition: VDialogTopTransition
|
@@ -93745,25 +93796,26 @@ declare module 'vue' {
|
|
93745
93796
|
VExpandTransition: VExpandTransition
|
93746
93797
|
VExpandXTransition: VExpandXTransition
|
93747
93798
|
VDialogTransition: VDialogTransition
|
93748
|
-
|
93749
|
-
VFileUploadItem: VFileUploadItem
|
93799
|
+
VInfiniteScroll: VInfiniteScroll
|
93750
93800
|
VCalendar: VCalendar
|
93751
93801
|
VCalendarDay: VCalendarDay
|
93752
93802
|
VCalendarHeader: VCalendarHeader
|
93753
93803
|
VCalendarInterval: VCalendarInterval
|
93754
93804
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
93755
93805
|
VCalendarMonthDay: VCalendarMonthDay
|
93806
|
+
VColorInput: VColorInput
|
93756
93807
|
VIconBtn: VIconBtn
|
93808
|
+
VPicker: VPicker
|
93809
|
+
VPickerTitle: VPickerTitle
|
93810
|
+
VFileUpload: VFileUpload
|
93811
|
+
VFileUploadItem: VFileUploadItem
|
93757
93812
|
VStepperVertical: VStepperVertical
|
93758
93813
|
VStepperVerticalItem: VStepperVerticalItem
|
93759
93814
|
VStepperVerticalActions: VStepperVerticalActions
|
93760
|
-
VPicker: VPicker
|
93761
|
-
VPickerTitle: VPickerTitle
|
93762
|
-
VColorInput: VColorInput
|
93763
93815
|
VHotkey: VHotkey
|
93816
|
+
VMaskInput: VMaskInput
|
93764
93817
|
VDateInput: VDateInput
|
93765
93818
|
VPullToRefresh: VPullToRefresh
|
93766
|
-
VMaskInput: VMaskInput
|
93767
93819
|
}
|
93768
93820
|
export interface GlobalDirectives {
|
93769
93821
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|