@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.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>>;
|
@@ -47684,6 +47685,7 @@ declare const VFileInput: {
|
|
47684
47685
|
centerAffix?: boolean | undefined;
|
47685
47686
|
hint?: string | undefined;
|
47686
47687
|
hideDetails?: boolean | "auto" | undefined;
|
47688
|
+
filterByType?: string | undefined;
|
47687
47689
|
} & {
|
47688
47690
|
$children?: vue.VNodeChild | {
|
47689
47691
|
$stable?: boolean;
|
@@ -47760,6 +47762,7 @@ declare const VFileInput: {
|
|
47760
47762
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
47761
47763
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
47762
47764
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
47765
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
47763
47766
|
}, Omit<Omit<{
|
47764
47767
|
$: vue.ComponentInternalInstance;
|
47765
47768
|
$data: {};
|
@@ -47996,6 +47999,7 @@ declare const VFileInput: {
|
|
47996
47999
|
'mousedown:control': (e: MouseEvent) => true;
|
47997
48000
|
'update:focused': (focused: boolean) => true;
|
47998
48001
|
'update:modelValue': (files: File | File[]) => true;
|
48002
|
+
rejected: (files: File[]) => true;
|
47999
48003
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
48000
48004
|
flat: boolean;
|
48001
48005
|
reverse: boolean;
|
@@ -48126,6 +48130,7 @@ declare const VFileInput: {
|
|
48126
48130
|
centerAffix?: boolean | undefined;
|
48127
48131
|
hint?: string | undefined;
|
48128
48132
|
hideDetails?: boolean | "auto" | undefined;
|
48133
|
+
filterByType?: string | undefined;
|
48129
48134
|
} & {
|
48130
48135
|
$children?: vue.VNodeChild | {
|
48131
48136
|
$stable?: boolean;
|
@@ -48202,6 +48207,7 @@ declare const VFileInput: {
|
|
48202
48207
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
48203
48208
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
48204
48209
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
48210
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
48205
48211
|
}, Omit<Omit<{
|
48206
48212
|
$: vue.ComponentInternalInstance;
|
48207
48213
|
$data: {};
|
@@ -48538,6 +48544,7 @@ declare const VFileInput: {
|
|
48538
48544
|
centerAffix?: boolean | undefined;
|
48539
48545
|
hint?: string | undefined;
|
48540
48546
|
hideDetails?: boolean | "auto" | undefined;
|
48547
|
+
filterByType?: string | undefined;
|
48541
48548
|
} & {
|
48542
48549
|
$children?: vue.VNodeChild | {
|
48543
48550
|
$stable?: boolean;
|
@@ -48614,6 +48621,7 @@ declare const VFileInput: {
|
|
48614
48621
|
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
48615
48622
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
48616
48623
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
48624
|
+
onRejected?: ((files: File[]) => any) | undefined;
|
48617
48625
|
}, Omit<Omit<{
|
48618
48626
|
$: vue.ComponentInternalInstance;
|
48619
48627
|
$data: {};
|
@@ -48850,6 +48858,7 @@ declare const VFileInput: {
|
|
48850
48858
|
'mousedown:control': (e: MouseEvent) => true;
|
48851
48859
|
'update:focused': (focused: boolean) => true;
|
48852
48860
|
'update:modelValue': (files: File | File[]) => true;
|
48861
|
+
rejected: (files: File[]) => true;
|
48853
48862
|
}, string, {
|
48854
48863
|
flat: boolean;
|
48855
48864
|
reverse: boolean;
|
@@ -48962,6 +48971,7 @@ declare const VFileInput: {
|
|
48962
48971
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
48963
48972
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
48964
48973
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
48974
|
+
filterByType: StringConstructor;
|
48965
48975
|
modelValue: {
|
48966
48976
|
type: PropType<File[] | File | null>;
|
48967
48977
|
default: (props: any) => never[] | null;
|
@@ -49087,6 +49097,7 @@ declare const VFileInput: {
|
|
49087
49097
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
49088
49098
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
49089
49099
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
49100
|
+
filterByType: StringConstructor;
|
49090
49101
|
modelValue: {
|
49091
49102
|
type: PropType<File[] | File | null>;
|
49092
49103
|
default: (props: any) => never[] | null;
|
@@ -61994,6 +62005,9 @@ declare const VProgressLinear: {
|
|
61994
62005
|
indeterminate: boolean;
|
61995
62006
|
modelValue: string | number;
|
61996
62007
|
tile: boolean;
|
62008
|
+
chunkCount: string | number;
|
62009
|
+
chunkWidth: string | number;
|
62010
|
+
chunkGap: string | number;
|
61997
62011
|
bufferValue: string | number;
|
61998
62012
|
clickable: boolean;
|
61999
62013
|
striped: boolean;
|
@@ -62049,6 +62063,9 @@ declare const VProgressLinear: {
|
|
62049
62063
|
modelValue: string | number;
|
62050
62064
|
rounded: string | number | boolean;
|
62051
62065
|
tile: boolean;
|
62066
|
+
chunkCount: string | number;
|
62067
|
+
chunkWidth: string | number;
|
62068
|
+
chunkGap: string | number;
|
62052
62069
|
bufferValue: string | number;
|
62053
62070
|
clickable: boolean;
|
62054
62071
|
striped: boolean;
|
@@ -62078,6 +62095,9 @@ declare const VProgressLinear: {
|
|
62078
62095
|
indeterminate: boolean;
|
62079
62096
|
modelValue: string | number;
|
62080
62097
|
tile: boolean;
|
62098
|
+
chunkCount: string | number;
|
62099
|
+
chunkWidth: string | number;
|
62100
|
+
chunkGap: string | number;
|
62081
62101
|
bufferValue: string | number;
|
62082
62102
|
clickable: boolean;
|
62083
62103
|
striped: boolean;
|
@@ -62131,6 +62151,9 @@ declare const VProgressLinear: {
|
|
62131
62151
|
modelValue: string | number;
|
62132
62152
|
rounded: string | number | boolean;
|
62133
62153
|
tile: boolean;
|
62154
|
+
chunkCount: string | number;
|
62155
|
+
chunkWidth: string | number;
|
62156
|
+
chunkGap: string | number;
|
62134
62157
|
bufferValue: string | number;
|
62135
62158
|
clickable: boolean;
|
62136
62159
|
striped: boolean;
|
@@ -62152,6 +62175,9 @@ declare const VProgressLinear: {
|
|
62152
62175
|
indeterminate: boolean;
|
62153
62176
|
modelValue: string | number;
|
62154
62177
|
tile: boolean;
|
62178
|
+
chunkCount: string | number;
|
62179
|
+
chunkWidth: string | number;
|
62180
|
+
chunkGap: string | number;
|
62155
62181
|
bufferValue: string | number;
|
62156
62182
|
clickable: boolean;
|
62157
62183
|
striped: boolean;
|
@@ -62207,6 +62233,9 @@ declare const VProgressLinear: {
|
|
62207
62233
|
modelValue: string | number;
|
62208
62234
|
rounded: string | number | boolean;
|
62209
62235
|
tile: boolean;
|
62236
|
+
chunkCount: string | number;
|
62237
|
+
chunkWidth: string | number;
|
62238
|
+
chunkGap: string | number;
|
62210
62239
|
bufferValue: string | number;
|
62211
62240
|
clickable: boolean;
|
62212
62241
|
striped: boolean;
|
@@ -62236,6 +62265,18 @@ declare const VProgressLinear: {
|
|
62236
62265
|
type: vue.PropType<vue.StyleValue>;
|
62237
62266
|
default: null;
|
62238
62267
|
};
|
62268
|
+
chunkCount: {
|
62269
|
+
type: (StringConstructor | NumberConstructor)[];
|
62270
|
+
default: null;
|
62271
|
+
};
|
62272
|
+
chunkWidth: {
|
62273
|
+
type: (StringConstructor | NumberConstructor)[];
|
62274
|
+
default: null;
|
62275
|
+
};
|
62276
|
+
chunkGap: {
|
62277
|
+
type: (StringConstructor | NumberConstructor)[];
|
62278
|
+
default: number;
|
62279
|
+
};
|
62239
62280
|
absolute: BooleanConstructor;
|
62240
62281
|
active: {
|
62241
62282
|
type: BooleanConstructor;
|
@@ -62289,6 +62330,18 @@ declare const VProgressLinear: {
|
|
62289
62330
|
type: vue.PropType<vue.StyleValue>;
|
62290
62331
|
default: null;
|
62291
62332
|
};
|
62333
|
+
chunkCount: {
|
62334
|
+
type: (StringConstructor | NumberConstructor)[];
|
62335
|
+
default: null;
|
62336
|
+
};
|
62337
|
+
chunkWidth: {
|
62338
|
+
type: (StringConstructor | NumberConstructor)[];
|
62339
|
+
default: null;
|
62340
|
+
};
|
62341
|
+
chunkGap: {
|
62342
|
+
type: (StringConstructor | NumberConstructor)[];
|
62343
|
+
default: number;
|
62344
|
+
};
|
62292
62345
|
absolute: BooleanConstructor;
|
62293
62346
|
active: {
|
62294
62347
|
type: BooleanConstructor;
|
@@ -95376,41 +95429,46 @@ declare module 'vue' {
|
|
95376
95429
|
}
|
95377
95430
|
export interface GlobalComponents {
|
95378
95431
|
VApp: VApp
|
95379
|
-
VAlert: VAlert
|
95380
|
-
VAlertTitle: VAlertTitle
|
95381
|
-
VAvatar: VAvatar
|
95382
95432
|
VAppBar: VAppBar
|
95383
95433
|
VAppBarNavIcon: VAppBarNavIcon
|
95384
95434
|
VAppBarTitle: VAppBarTitle
|
95385
|
-
VAutocomplete: VAutocomplete
|
95386
95435
|
VBadge: VBadge
|
95436
|
+
VAutocomplete: VAutocomplete
|
95437
|
+
VAvatar: VAvatar
|
95438
|
+
VBreadcrumbs: VBreadcrumbs
|
95439
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
95440
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
95441
|
+
VBottomSheet: VBottomSheet
|
95442
|
+
VBtn: VBtn
|
95387
95443
|
VBanner: VBanner
|
95388
95444
|
VBannerActions: VBannerActions
|
95389
95445
|
VBannerText: VBannerText
|
95390
95446
|
VBottomNavigation: VBottomNavigation
|
95391
|
-
VBottomSheet: VBottomSheet
|
95392
|
-
VBtnGroup: VBtnGroup
|
95393
|
-
VBtn: VBtn
|
95394
|
-
VCheckbox: VCheckbox
|
95395
|
-
VCheckboxBtn: VCheckboxBtn
|
95396
95447
|
VBtnToggle: VBtnToggle
|
95397
|
-
VBreadcrumbs: VBreadcrumbs
|
95398
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
95399
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
95400
|
-
VCarousel: VCarousel
|
95401
|
-
VCarouselItem: VCarouselItem
|
95402
|
-
VChipGroup: VChipGroup
|
95403
|
-
VCode: VCode
|
95404
|
-
VChip: VChip
|
95405
|
-
VCombobox: VCombobox
|
95406
95448
|
VCard: VCard
|
95407
95449
|
VCardActions: VCardActions
|
95408
95450
|
VCardItem: VCardItem
|
95409
95451
|
VCardSubtitle: VCardSubtitle
|
95410
95452
|
VCardText: VCardText
|
95411
95453
|
VCardTitle: VCardTitle
|
95454
|
+
VChip: VChip
|
95455
|
+
VChipGroup: VChipGroup
|
95456
|
+
VBtnGroup: VBtnGroup
|
95457
|
+
VCarousel: VCarousel
|
95458
|
+
VCarouselItem: VCarouselItem
|
95459
|
+
VCheckbox: VCheckbox
|
95460
|
+
VCheckboxBtn: VCheckboxBtn
|
95412
95461
|
VColorPicker: VColorPicker
|
95462
|
+
VCode: VCode
|
95463
|
+
VDatePicker: VDatePicker
|
95464
|
+
VDatePickerControls: VDatePickerControls
|
95465
|
+
VDatePickerHeader: VDatePickerHeader
|
95466
|
+
VDatePickerMonth: VDatePickerMonth
|
95467
|
+
VDatePickerMonths: VDatePickerMonths
|
95468
|
+
VDatePickerYears: VDatePickerYears
|
95469
|
+
VCombobox: VCombobox
|
95413
95470
|
VCounter: VCounter
|
95471
|
+
VDivider: VDivider
|
95414
95472
|
VDataTable: VDataTable
|
95415
95473
|
VDataTableHeaders: VDataTableHeaders
|
95416
95474
|
VDataTableFooter: VDataTableFooter
|
@@ -95419,35 +95477,26 @@ declare module 'vue' {
|
|
95419
95477
|
VDataTableVirtual: VDataTableVirtual
|
95420
95478
|
VDataTableServer: VDataTableServer
|
95421
95479
|
VDialog: VDialog
|
95422
|
-
|
95423
|
-
VDatePickerControls: VDatePickerControls
|
95424
|
-
VDatePickerHeader: VDatePickerHeader
|
95425
|
-
VDatePickerMonth: VDatePickerMonth
|
95426
|
-
VDatePickerMonths: VDatePickerMonths
|
95427
|
-
VDatePickerYears: VDatePickerYears
|
95480
|
+
VEmptyState: VEmptyState
|
95428
95481
|
VExpansionPanels: VExpansionPanels
|
95429
95482
|
VExpansionPanel: VExpansionPanel
|
95430
95483
|
VExpansionPanelText: VExpansionPanelText
|
95431
95484
|
VExpansionPanelTitle: VExpansionPanelTitle
|
95432
|
-
VFab: VFab
|
95433
|
-
VDivider: VDivider
|
95434
|
-
VEmptyState: VEmptyState
|
95435
|
-
VField: VField
|
95436
|
-
VFieldLabel: VFieldLabel
|
95437
95485
|
VFileInput: VFileInput
|
95438
|
-
|
95486
|
+
VFooter: VFooter
|
95487
|
+
VFab: VFab
|
95439
95488
|
VIcon: VIcon
|
95440
95489
|
VComponentIcon: VComponentIcon
|
95441
95490
|
VSvgIcon: VSvgIcon
|
95442
95491
|
VLigatureIcon: VLigatureIcon
|
95443
95492
|
VClassIcon: VClassIcon
|
95444
|
-
VInput: VInput
|
95445
|
-
VKbd: VKbd
|
95446
95493
|
VInfiniteScroll: VInfiniteScroll
|
95447
95494
|
VItemGroup: VItemGroup
|
95448
95495
|
VItem: VItem
|
95496
|
+
VImg: VImg
|
95497
|
+
VKbd: VKbd
|
95498
|
+
VInput: VInput
|
95449
95499
|
VLabel: VLabel
|
95450
|
-
VMessages: VMessages
|
95451
95500
|
VList: VList
|
95452
95501
|
VListGroup: VListGroup
|
95453
95502
|
VListImg: VListImg
|
@@ -95458,71 +95507,77 @@ declare module 'vue' {
|
|
95458
95507
|
VListItemTitle: VListItemTitle
|
95459
95508
|
VListSubheader: VListSubheader
|
95460
95509
|
VMenu: VMenu
|
95461
|
-
|
95462
|
-
VMain: VMain
|
95510
|
+
VMessages: VMessages
|
95463
95511
|
VNumberInput: VNumberInput
|
95512
|
+
VMain: VMain
|
95513
|
+
VPagination: VPagination
|
95464
95514
|
VOtpInput: VOtpInput
|
95465
95515
|
VOverlay: VOverlay
|
95466
|
-
VPagination: VPagination
|
95467
|
-
VProgressCircular: VProgressCircular
|
95468
95516
|
VProgressLinear: VProgressLinear
|
95469
95517
|
VRadioGroup: VRadioGroup
|
95518
|
+
VNavigationDrawer: VNavigationDrawer
|
95470
95519
|
VRating: VRating
|
95471
|
-
|
95520
|
+
VField: VField
|
95521
|
+
VFieldLabel: VFieldLabel
|
95472
95522
|
VSelect: VSelect
|
95473
|
-
VSheet: VSheet
|
95474
95523
|
VSelectionControlGroup: VSelectionControlGroup
|
95524
|
+
VSelectionControl: VSelectionControl
|
95475
95525
|
VSkeletonLoader: VSkeletonLoader
|
95476
|
-
|
95477
|
-
VSlideGroupItem: VSlideGroupItem
|
95478
|
-
VSlider: VSlider
|
95526
|
+
VSheet: VSheet
|
95479
95527
|
VSnackbar: VSnackbar
|
95528
|
+
VSlider: VSlider
|
95529
|
+
VSwitch: VSwitch
|
95530
|
+
VTable: VTable
|
95480
95531
|
VStepper: VStepper
|
95481
95532
|
VStepperActions: VStepperActions
|
95482
95533
|
VStepperHeader: VStepperHeader
|
95483
95534
|
VStepperItem: VStepperItem
|
95484
95535
|
VStepperWindow: VStepperWindow
|
95485
95536
|
VStepperWindowItem: VStepperWindowItem
|
95486
|
-
VSwitch: VSwitch
|
95487
|
-
VSystemBar: VSystemBar
|
95488
|
-
VTextField: VTextField
|
95489
|
-
VTextarea: VTextarea
|
95490
95537
|
VTab: VTab
|
95491
95538
|
VTabs: VTabs
|
95492
95539
|
VTabsWindow: VTabsWindow
|
95493
95540
|
VTabsWindowItem: VTabsWindowItem
|
95494
|
-
|
95495
|
-
|
95496
|
-
|
95497
|
-
|
95541
|
+
VTextarea: VTextarea
|
95542
|
+
VSystemBar: VSystemBar
|
95543
|
+
VTimeline: VTimeline
|
95544
|
+
VTimelineItem: VTimelineItem
|
95498
95545
|
VTimePicker: VTimePicker
|
95499
95546
|
VTimePickerClock: VTimePickerClock
|
95500
95547
|
VTimePickerControls: VTimePickerControls
|
95501
|
-
|
95502
|
-
|
95503
|
-
|
95548
|
+
VToolbar: VToolbar
|
95549
|
+
VToolbarTitle: VToolbarTitle
|
95550
|
+
VToolbarItems: VToolbarItems
|
95504
95551
|
VTooltip: VTooltip
|
95505
95552
|
VWindow: VWindow
|
95506
95553
|
VWindowItem: VWindowItem
|
95554
|
+
VAlert: VAlert
|
95555
|
+
VAlertTitle: VAlertTitle
|
95507
95556
|
VConfirmEdit: VConfirmEdit
|
95508
|
-
|
95557
|
+
VSlideGroup: VSlideGroup
|
95558
|
+
VSlideGroupItem: VSlideGroupItem
|
95509
95559
|
VDefaultsProvider: VDefaultsProvider
|
95510
95560
|
VForm: VForm
|
95511
95561
|
VContainer: VContainer
|
95512
95562
|
VCol: VCol
|
95513
95563
|
VRow: VRow
|
95514
95564
|
VSpacer: VSpacer
|
95565
|
+
VTreeview: VTreeview
|
95566
|
+
VTreeviewItem: VTreeviewItem
|
95567
|
+
VTreeviewGroup: VTreeviewGroup
|
95515
95568
|
VHover: VHover
|
95516
|
-
VLayout: VLayout
|
95517
|
-
VLayoutItem: VLayoutItem
|
95518
|
-
VLazy: VLazy
|
95519
95569
|
VLocaleProvider: VLocaleProvider
|
95570
|
+
VLazy: VLazy
|
95520
95571
|
VNoSsr: VNoSsr
|
95521
95572
|
VParallax: VParallax
|
95522
95573
|
VRadio: VRadio
|
95523
95574
|
VRangeSlider: VRangeSlider
|
95524
95575
|
VResponsive: VResponsive
|
95576
|
+
VSparkline: VSparkline
|
95577
|
+
VSnackbarQueue: VSnackbarQueue
|
95525
95578
|
VSpeedDial: VSpeedDial
|
95579
|
+
VProgressCircular: VProgressCircular
|
95580
|
+
VTextField: VTextField
|
95526
95581
|
VThemeProvider: VThemeProvider
|
95527
95582
|
VValidation: VValidation
|
95528
95583
|
VVirtualScroll: VVirtualScroll
|
@@ -95542,36 +95597,34 @@ declare module 'vue' {
|
|
95542
95597
|
VExpandTransition: VExpandTransition
|
95543
95598
|
VExpandXTransition: VExpandXTransition
|
95544
95599
|
VDialogTransition: VDialogTransition
|
95545
|
-
|
95546
|
-
|
95547
|
-
|
95548
|
-
VTimeline: VTimeline
|
95549
|
-
VTimelineItem: VTimelineItem
|
95600
|
+
VDataIterator: VDataIterator
|
95601
|
+
VLayout: VLayout
|
95602
|
+
VLayoutItem: VLayoutItem
|
95550
95603
|
VCalendar: VCalendar
|
95551
95604
|
VCalendarDay: VCalendarDay
|
95552
95605
|
VCalendarHeader: VCalendarHeader
|
95553
95606
|
VCalendarInterval: VCalendarInterval
|
95554
95607
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
95555
95608
|
VCalendarMonthDay: VCalendarMonthDay
|
95609
|
+
VColorInput: VColorInput
|
95610
|
+
VIconBtn: VIconBtn
|
95556
95611
|
VFileUpload: VFileUpload
|
95557
95612
|
VFileUploadItem: VFileUploadItem
|
95558
|
-
|
95613
|
+
VPicker: VPicker
|
95614
|
+
VPickerTitle: VPickerTitle
|
95559
95615
|
VStepperVertical: VStepperVertical
|
95560
95616
|
VStepperVerticalItem: VStepperVerticalItem
|
95561
95617
|
VStepperVerticalActions: VStepperVerticalActions
|
95562
|
-
VPicker: VPicker
|
95563
|
-
VPickerTitle: VPickerTitle
|
95564
|
-
VIconBtn: VIconBtn
|
95565
|
-
VHotkey: VHotkey
|
95566
|
-
VPie: VPie
|
95567
|
-
VPieSegment: VPieSegment
|
95568
|
-
VPieTooltip: VPieTooltip
|
95569
95618
|
VVideo: VVideo
|
95570
95619
|
VVideoControls: VVideoControls
|
95571
95620
|
VVideoVolume: VVideoVolume
|
95621
|
+
VPie: VPie
|
95622
|
+
VPieSegment: VPieSegment
|
95623
|
+
VPieTooltip: VPieTooltip
|
95624
|
+
VHotkey: VHotkey
|
95572
95625
|
VDateInput: VDateInput
|
95573
|
-
VMaskInput: VMaskInput
|
95574
95626
|
VPullToRefresh: VPullToRefresh
|
95627
|
+
VMaskInput: VMaskInput
|
95575
95628
|
}
|
95576
95629
|
export interface GlobalDirectives {
|
95577
95630
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|