@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.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;
|
@@ -93573,75 +93625,75 @@ declare module 'vue' {
|
|
93573
93625
|
$children?: VNodeChild
|
93574
93626
|
}
|
93575
93627
|
export interface GlobalComponents {
|
93628
|
+
VApp: VApp
|
93576
93629
|
VAlert: VAlert
|
93577
93630
|
VAlertTitle: VAlertTitle
|
93578
|
-
VApp: VApp
|
93579
|
-
VAvatar: VAvatar
|
93580
93631
|
VAppBar: VAppBar
|
93581
93632
|
VAppBarNavIcon: VAppBarNavIcon
|
93582
93633
|
VAppBarTitle: VAppBarTitle
|
93583
|
-
VBadge: VBadge
|
93584
|
-
VBanner: VBanner
|
93585
|
-
VBannerActions: VBannerActions
|
93586
|
-
VBannerText: VBannerText
|
93587
93634
|
VAutocomplete: VAutocomplete
|
93635
|
+
VAvatar: VAvatar
|
93636
|
+
VBadge: VBadge
|
93588
93637
|
VBottomNavigation: VBottomNavigation
|
93638
|
+
VBottomSheet: VBottomSheet
|
93589
93639
|
VBreadcrumbs: VBreadcrumbs
|
93590
93640
|
VBreadcrumbsItem: VBreadcrumbsItem
|
93591
93641
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
93592
|
-
VBottomSheet: VBottomSheet
|
93593
93642
|
VBtn: VBtn
|
93643
|
+
VBtnToggle: VBtnToggle
|
93594
93644
|
VCheckbox: VCheckbox
|
93595
93645
|
VCheckboxBtn: VCheckboxBtn
|
93596
|
-
VCarousel: VCarousel
|
93597
|
-
VCarouselItem: VCarouselItem
|
93598
|
-
VBtnToggle: VBtnToggle
|
93599
|
-
VBtnGroup: VBtnGroup
|
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
|
93607
93655
|
VChipGroup: VChipGroup
|
93656
|
+
VChip: VChip
|
93608
93657
|
VCombobox: VCombobox
|
93658
|
+
VCode: VCode
|
93659
|
+
VColorPicker: VColorPicker
|
93660
|
+
VDataTable: VDataTable
|
93661
|
+
VDataTableHeaders: VDataTableHeaders
|
93662
|
+
VDataTableFooter: VDataTableFooter
|
93663
|
+
VDataTableRows: VDataTableRows
|
93664
|
+
VDataTableRow: VDataTableRow
|
93665
|
+
VDataTableVirtual: VDataTableVirtual
|
93666
|
+
VDataTableServer: VDataTableServer
|
93667
|
+
VCounter: VCounter
|
93668
|
+
VDialog: VDialog
|
93609
93669
|
VDatePicker: VDatePicker
|
93610
93670
|
VDatePickerControls: VDatePickerControls
|
93611
93671
|
VDatePickerHeader: VDatePickerHeader
|
93612
93672
|
VDatePickerMonth: VDatePickerMonth
|
93613
93673
|
VDatePickerMonths: VDatePickerMonths
|
93614
93674
|
VDatePickerYears: VDatePickerYears
|
93615
|
-
|
93616
|
-
|
93617
|
-
|
93675
|
+
VDivider: VDivider
|
93676
|
+
VEmptyState: VEmptyState
|
93677
|
+
VFab: VFab
|
93618
93678
|
VExpansionPanels: VExpansionPanels
|
93619
93679
|
VExpansionPanel: VExpansionPanel
|
93620
93680
|
VExpansionPanelText: VExpansionPanelText
|
93621
93681
|
VExpansionPanelTitle: VExpansionPanelTitle
|
93622
|
-
VDivider: VDivider
|
93623
|
-
VEmptyState: VEmptyState
|
93624
|
-
VDataTable: VDataTable
|
93625
|
-
VDataTableHeaders: VDataTableHeaders
|
93626
|
-
VDataTableFooter: VDataTableFooter
|
93627
|
-
VDataTableRows: VDataTableRows
|
93628
|
-
VDataTableRow: VDataTableRow
|
93629
|
-
VDataTableVirtual: VDataTableVirtual
|
93630
|
-
VDataTableServer: VDataTableServer
|
93631
|
-
VDialog: VDialog
|
93632
93682
|
VField: VField
|
93633
93683
|
VFieldLabel: VFieldLabel
|
93634
93684
|
VFileInput: VFileInput
|
93635
93685
|
VFooter: VFooter
|
93636
|
-
VFab: VFab
|
93637
|
-
VItemGroup: VItemGroup
|
93638
|
-
VItem: VItem
|
93639
93686
|
VImg: VImg
|
93640
|
-
|
93687
|
+
VIcon: VIcon
|
93688
|
+
VComponentIcon: VComponentIcon
|
93689
|
+
VSvgIcon: VSvgIcon
|
93690
|
+
VLigatureIcon: VLigatureIcon
|
93691
|
+
VClassIcon: VClassIcon
|
93641
93692
|
VKbd: VKbd
|
93642
|
-
VInfiniteScroll: VInfiniteScroll
|
93643
93693
|
VInput: VInput
|
93644
|
-
|
93694
|
+
VItemGroup: VItemGroup
|
93695
|
+
VItem: VItem
|
93696
|
+
VLabel: VLabel
|
93645
93697
|
VList: VList
|
93646
93698
|
VListGroup: VListGroup
|
93647
93699
|
VListImg: VListImg
|
@@ -93653,53 +93705,49 @@ declare module 'vue' {
|
|
93653
93705
|
VListSubheader: VListSubheader
|
93654
93706
|
VMain: VMain
|
93655
93707
|
VNavigationDrawer: VNavigationDrawer
|
93656
|
-
VIcon: VIcon
|
93657
|
-
VComponentIcon: VComponentIcon
|
93658
|
-
VSvgIcon: VSvgIcon
|
93659
|
-
VLigatureIcon: VLigatureIcon
|
93660
|
-
VClassIcon: VClassIcon
|
93661
93708
|
VMessages: VMessages
|
93662
|
-
|
93709
|
+
VMenu: VMenu
|
93663
93710
|
VOtpInput: VOtpInput
|
93664
|
-
VProgressCircular: VProgressCircular
|
93665
93711
|
VOverlay: VOverlay
|
93666
|
-
VProgressLinear: VProgressLinear
|
93667
93712
|
VPagination: VPagination
|
93713
|
+
VNumberInput: VNumberInput
|
93714
|
+
VProgressLinear: VProgressLinear
|
93715
|
+
VProgressCircular: VProgressCircular
|
93668
93716
|
VRadioGroup: VRadioGroup
|
93669
|
-
VSelect: VSelect
|
93670
|
-
VRating: VRating
|
93671
|
-
VSlider: VSlider
|
93672
93717
|
VSelectionControlGroup: VSelectionControlGroup
|
93673
|
-
|
93718
|
+
VRating: VRating
|
93719
|
+
VSelect: VSelect
|
93674
93720
|
VSlideGroup: VSlideGroup
|
93675
93721
|
VSlideGroupItem: VSlideGroupItem
|
93722
|
+
VSelectionControl: VSelectionControl
|
93723
|
+
VSkeletonLoader: VSkeletonLoader
|
93724
|
+
VSlider: VSlider
|
93676
93725
|
VSheet: VSheet
|
93677
93726
|
VSnackbar: VSnackbar
|
93678
|
-
VSelectionControl: VSelectionControl
|
93679
|
-
VTab: VTab
|
93680
|
-
VTabs: VTabs
|
93681
|
-
VTabsWindow: VTabsWindow
|
93682
|
-
VTabsWindowItem: VTabsWindowItem
|
93683
|
-
VSystemBar: VSystemBar
|
93684
93727
|
VStepper: VStepper
|
93685
93728
|
VStepperActions: VStepperActions
|
93686
93729
|
VStepperHeader: VStepperHeader
|
93687
93730
|
VStepperItem: VStepperItem
|
93688
93731
|
VStepperWindow: VStepperWindow
|
93689
93732
|
VStepperWindowItem: VStepperWindowItem
|
93733
|
+
VSystemBar: VSystemBar
|
93734
|
+
VSwitch: VSwitch
|
93690
93735
|
VTable: VTable
|
93736
|
+
VTab: VTab
|
93737
|
+
VTabs: VTabs
|
93738
|
+
VTabsWindow: VTabsWindow
|
93739
|
+
VTabsWindowItem: VTabsWindowItem
|
93740
|
+
VTextField: VTextField
|
93691
93741
|
VTextarea: VTextarea
|
93692
|
-
|
93742
|
+
VTimePicker: VTimePicker
|
93743
|
+
VTimePickerClock: VTimePickerClock
|
93744
|
+
VTimePickerControls: VTimePickerControls
|
93693
93745
|
VTimeline: VTimeline
|
93694
93746
|
VTimelineItem: VTimelineItem
|
93695
93747
|
VToolbar: VToolbar
|
93696
93748
|
VToolbarTitle: VToolbarTitle
|
93697
93749
|
VToolbarItems: VToolbarItems
|
93698
93750
|
VTooltip: VTooltip
|
93699
|
-
VTimePicker: VTimePicker
|
93700
|
-
VTimePickerClock: VTimePickerClock
|
93701
|
-
VTimePickerControls: VTimePickerControls
|
93702
|
-
VTextField: VTextField
|
93703
93751
|
VTreeview: VTreeview
|
93704
93752
|
VTreeviewItem: VTreeviewItem
|
93705
93753
|
VTreeviewGroup: VTreeviewGroup
|
@@ -93708,25 +93756,29 @@ declare module 'vue' {
|
|
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
|
93715
93762
|
VSpacer: VSpacer
|
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
93770
|
VRadio: VRadio
|
93724
|
-
|
93771
|
+
VRangeSlider: VRangeSlider
|
93772
|
+
VNoSsr: VNoSsr
|
93725
93773
|
VSnackbarQueue: VSnackbarQueue
|
93774
|
+
VResponsive: VResponsive
|
93775
|
+
VBanner: VBanner
|
93776
|
+
VBannerActions: VBannerActions
|
93777
|
+
VBannerText: VBannerText
|
93726
93778
|
VSparkline: VSparkline
|
93727
93779
|
VSpeedDial: VSpeedDial
|
93728
|
-
VThemeProvider: VThemeProvider
|
93729
93780
|
VValidation: VValidation
|
93781
|
+
VThemeProvider: VThemeProvider
|
93730
93782
|
VVirtualScroll: VVirtualScroll
|
93731
93783
|
VFabTransition: VFabTransition
|
93732
93784
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -93744,25 +93796,25 @@ declare module 'vue' {
|
|
93744
93796
|
VExpandTransition: VExpandTransition
|
93745
93797
|
VExpandXTransition: VExpandXTransition
|
93746
93798
|
VDialogTransition: VDialogTransition
|
93747
|
-
|
93748
|
-
VFileUpload: VFileUpload
|
93749
|
-
VFileUploadItem: VFileUploadItem
|
93750
|
-
VColorInput: VColorInput
|
93799
|
+
VInfiniteScroll: VInfiniteScroll
|
93751
93800
|
VCalendar: VCalendar
|
93752
93801
|
VCalendarDay: VCalendarDay
|
93753
93802
|
VCalendarHeader: VCalendarHeader
|
93754
93803
|
VCalendarInterval: VCalendarInterval
|
93755
93804
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
93756
93805
|
VCalendarMonthDay: VCalendarMonthDay
|
93806
|
+
VColorInput: VColorInput
|
93757
93807
|
VIconBtn: VIconBtn
|
93808
|
+
VPicker: VPicker
|
93809
|
+
VPickerTitle: VPickerTitle
|
93810
|
+
VFileUpload: VFileUpload
|
93811
|
+
VFileUploadItem: VFileUploadItem
|
93758
93812
|
VStepperVertical: VStepperVertical
|
93759
93813
|
VStepperVerticalItem: VStepperVerticalItem
|
93760
93814
|
VStepperVerticalActions: VStepperVerticalActions
|
93761
|
-
VPicker: VPicker
|
93762
|
-
VPickerTitle: VPickerTitle
|
93763
93815
|
VHotkey: VHotkey
|
93764
|
-
VDateInput: VDateInput
|
93765
93816
|
VMaskInput: VMaskInput
|
93817
|
+
VDateInput: VDateInput
|
93766
93818
|
VPullToRefresh: VPullToRefresh
|
93767
93819
|
}
|
93768
93820
|
export interface GlobalDirectives {
|