@vuetify/nightly 3.9.1-dev.2025-07-17 → 3.9.2-master.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.
Files changed (61) hide show
  1. package/CHANGELOG.md +3 -14
  2. package/dist/json/attributes.json +3514 -3534
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +192 -192
  5. package/dist/json/tags.json +0 -5
  6. package/dist/json/web-types.json +19798 -6490
  7. package/dist/vuetify-labs.cjs +88 -278
  8. package/dist/vuetify-labs.css +4475 -4477
  9. package/dist/vuetify-labs.d.ts +64 -126
  10. package/dist/vuetify-labs.esm.js +88 -278
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +88 -278
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +79 -240
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +2683 -2685
  17. package/dist/vuetify.d.ts +64 -116
  18. package/dist/vuetify.esm.js +79 -240
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +79 -240
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +702 -724
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.js +0 -1
  26. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  27. package/lib/components/VCombobox/VCombobox.js +0 -1
  28. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  29. package/lib/components/VFileInput/VFileInput.d.ts +0 -15
  30. package/lib/components/VFileInput/VFileInput.js +9 -38
  31. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  32. package/lib/components/VList/VList.js +1 -2
  33. package/lib/components/VList/VList.js.map +1 -1
  34. package/lib/components/VList/VListItem.js +1 -7
  35. package/lib/components/VList/VListItem.js.map +1 -1
  36. package/lib/components/VProgressLinear/VProgressLinear.css +1 -1
  37. package/lib/components/VProgressLinear/VProgressLinear.d.ts +0 -75
  38. package/lib/components/VProgressLinear/VProgressLinear.js +6 -32
  39. package/lib/components/VProgressLinear/VProgressLinear.js.map +1 -1
  40. package/lib/components/VProgressLinear/VProgressLinear.sass +2 -2
  41. package/lib/components/VSelect/VSelect.js +0 -1
  42. package/lib/components/VSelect/VSelect.js.map +1 -1
  43. package/lib/components/VTreeview/VTreeview.js +2 -3
  44. package/lib/components/VTreeview/VTreeview.js.map +1 -1
  45. package/lib/components/VTreeview/VTreeviewChildren.js +59 -59
  46. package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
  47. package/lib/entry-bundler.js +1 -1
  48. package/lib/entry-bundler.js.map +1 -1
  49. package/lib/framework.d.ts +64 -64
  50. package/lib/framework.js +1 -1
  51. package/lib/framework.js.map +1 -1
  52. package/lib/labs/VFileUpload/VFileUpload.d.ts +0 -15
  53. package/lib/labs/VFileUpload/VFileUpload.js +9 -39
  54. package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
  55. package/package.json +1 -1
  56. package/lib/components/VProgressLinear/chunks.d.ts +0 -55
  57. package/lib/components/VProgressLinear/chunks.js +0 -62
  58. package/lib/components/VProgressLinear/chunks.js.map +0 -1
  59. package/lib/composables/fileFilter.d.ts +0 -18
  60. package/lib/composables/fileFilter.js +0 -38
  61. package/lib/composables/fileFilter.js.map +0 -1
package/dist/vuetify.d.ts CHANGED
@@ -47687,7 +47687,6 @@ declare const VFileInput: {
47687
47687
  centerAffix?: boolean | undefined;
47688
47688
  hint?: string | undefined;
47689
47689
  hideDetails?: boolean | "auto" | undefined;
47690
- filterByType?: string | undefined;
47691
47690
  } & {
47692
47691
  $children?: vue.VNodeChild | {
47693
47692
  $stable?: boolean;
@@ -47764,7 +47763,6 @@ declare const VFileInput: {
47764
47763
  "onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
47765
47764
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
47766
47765
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
47767
- onRejected?: ((files: File[]) => any) | undefined;
47768
47766
  }, Omit<Omit<{
47769
47767
  $: vue.ComponentInternalInstance;
47770
47768
  $data: {};
@@ -48001,7 +47999,6 @@ declare const VFileInput: {
48001
47999
  'mousedown:control': (e: MouseEvent) => true;
48002
48000
  'update:focused': (focused: boolean) => true;
48003
48001
  'update:modelValue': (files: File | File[]) => true;
48004
- rejected: (files: File[]) => true;
48005
48002
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
48006
48003
  flat: boolean;
48007
48004
  reverse: boolean;
@@ -48132,7 +48129,6 @@ declare const VFileInput: {
48132
48129
  centerAffix?: boolean | undefined;
48133
48130
  hint?: string | undefined;
48134
48131
  hideDetails?: boolean | "auto" | undefined;
48135
- filterByType?: string | undefined;
48136
48132
  } & {
48137
48133
  $children?: vue.VNodeChild | {
48138
48134
  $stable?: boolean;
@@ -48209,7 +48205,6 @@ declare const VFileInput: {
48209
48205
  "onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
48210
48206
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
48211
48207
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
48212
- onRejected?: ((files: File[]) => any) | undefined;
48213
48208
  }, Omit<Omit<{
48214
48209
  $: vue.ComponentInternalInstance;
48215
48210
  $data: {};
@@ -48546,7 +48541,6 @@ declare const VFileInput: {
48546
48541
  centerAffix?: boolean | undefined;
48547
48542
  hint?: string | undefined;
48548
48543
  hideDetails?: boolean | "auto" | undefined;
48549
- filterByType?: string | undefined;
48550
48544
  } & {
48551
48545
  $children?: vue.VNodeChild | {
48552
48546
  $stable?: boolean;
@@ -48623,7 +48617,6 @@ declare const VFileInput: {
48623
48617
  "onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
48624
48618
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
48625
48619
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
48626
- onRejected?: ((files: File[]) => any) | undefined;
48627
48620
  }, Omit<Omit<{
48628
48621
  $: vue.ComponentInternalInstance;
48629
48622
  $data: {};
@@ -48860,7 +48853,6 @@ declare const VFileInput: {
48860
48853
  'mousedown:control': (e: MouseEvent) => true;
48861
48854
  'update:focused': (focused: boolean) => true;
48862
48855
  'update:modelValue': (files: File | File[]) => true;
48863
- rejected: (files: File[]) => true;
48864
48856
  }, string, {
48865
48857
  flat: boolean;
48866
48858
  reverse: boolean;
@@ -48973,7 +48965,6 @@ declare const VFileInput: {
48973
48965
  'onClick:clear': PropType<(args_0: MouseEvent) => void>;
48974
48966
  'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
48975
48967
  'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
48976
- filterByType: StringConstructor;
48977
48968
  modelValue: {
48978
48969
  type: PropType<File[] | File | null>;
48979
48970
  default: (props: any) => never[] | null;
@@ -49099,7 +49090,6 @@ declare const VFileInput: {
49099
49090
  'onClick:clear': PropType<(args_0: MouseEvent) => void>;
49100
49091
  'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
49101
49092
  'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
49102
- filterByType: StringConstructor;
49103
49093
  modelValue: {
49104
49094
  type: PropType<File[] | File | null>;
49105
49095
  default: (props: any) => never[] | null;
@@ -62007,9 +61997,6 @@ declare const VProgressLinear: {
62007
61997
  indeterminate: boolean;
62008
61998
  modelValue: string | number;
62009
61999
  tile: boolean;
62010
- chunkCount: string | number;
62011
- chunkWidth: string | number;
62012
- chunkGap: string | number;
62013
62000
  bufferValue: string | number;
62014
62001
  clickable: boolean;
62015
62002
  striped: boolean;
@@ -62065,9 +62052,6 @@ declare const VProgressLinear: {
62065
62052
  modelValue: string | number;
62066
62053
  rounded: string | number | boolean;
62067
62054
  tile: boolean;
62068
- chunkCount: string | number;
62069
- chunkWidth: string | number;
62070
- chunkGap: string | number;
62071
62055
  bufferValue: string | number;
62072
62056
  clickable: boolean;
62073
62057
  striped: boolean;
@@ -62097,9 +62081,6 @@ declare const VProgressLinear: {
62097
62081
  indeterminate: boolean;
62098
62082
  modelValue: string | number;
62099
62083
  tile: boolean;
62100
- chunkCount: string | number;
62101
- chunkWidth: string | number;
62102
- chunkGap: string | number;
62103
62084
  bufferValue: string | number;
62104
62085
  clickable: boolean;
62105
62086
  striped: boolean;
@@ -62153,9 +62134,6 @@ declare const VProgressLinear: {
62153
62134
  modelValue: string | number;
62154
62135
  rounded: string | number | boolean;
62155
62136
  tile: boolean;
62156
- chunkCount: string | number;
62157
- chunkWidth: string | number;
62158
- chunkGap: string | number;
62159
62137
  bufferValue: string | number;
62160
62138
  clickable: boolean;
62161
62139
  striped: boolean;
@@ -62177,9 +62155,6 @@ declare const VProgressLinear: {
62177
62155
  indeterminate: boolean;
62178
62156
  modelValue: string | number;
62179
62157
  tile: boolean;
62180
- chunkCount: string | number;
62181
- chunkWidth: string | number;
62182
- chunkGap: string | number;
62183
62158
  bufferValue: string | number;
62184
62159
  clickable: boolean;
62185
62160
  striped: boolean;
@@ -62235,9 +62210,6 @@ declare const VProgressLinear: {
62235
62210
  modelValue: string | number;
62236
62211
  rounded: string | number | boolean;
62237
62212
  tile: boolean;
62238
- chunkCount: string | number;
62239
- chunkWidth: string | number;
62240
- chunkGap: string | number;
62241
62213
  bufferValue: string | number;
62242
62214
  clickable: boolean;
62243
62215
  striped: boolean;
@@ -62267,18 +62239,6 @@ declare const VProgressLinear: {
62267
62239
  type: vue.PropType<vue.StyleValue>;
62268
62240
  default: null;
62269
62241
  };
62270
- chunkCount: {
62271
- type: (StringConstructor | NumberConstructor)[];
62272
- default: null;
62273
- };
62274
- chunkWidth: {
62275
- type: (StringConstructor | NumberConstructor)[];
62276
- default: null;
62277
- };
62278
- chunkGap: {
62279
- type: (StringConstructor | NumberConstructor)[];
62280
- default: number;
62281
- };
62282
62242
  absolute: BooleanConstructor;
62283
62243
  active: {
62284
62244
  type: BooleanConstructor;
@@ -62332,18 +62292,6 @@ declare const VProgressLinear: {
62332
62292
  type: vue.PropType<vue.StyleValue>;
62333
62293
  default: null;
62334
62294
  };
62335
- chunkCount: {
62336
- type: (StringConstructor | NumberConstructor)[];
62337
- default: null;
62338
- };
62339
- chunkWidth: {
62340
- type: (StringConstructor | NumberConstructor)[];
62341
- default: null;
62342
- };
62343
- chunkGap: {
62344
- type: (StringConstructor | NumberConstructor)[];
62345
- default: number;
62346
- };
62347
62295
  absolute: BooleanConstructor;
62348
62296
  active: {
62349
62297
  type: BooleanConstructor;
@@ -95414,48 +95362,41 @@ declare module 'vue' {
95414
95362
  $children?: VNodeChild
95415
95363
  }
95416
95364
  export interface GlobalComponents {
95417
- VAlert: VAlert
95418
- VAlertTitle: VAlertTitle
95419
95365
  VApp: VApp
95420
95366
  VAutocomplete: VAutocomplete
95367
+ VAvatar: VAvatar
95368
+ VAlert: VAlert
95369
+ VAlertTitle: VAlertTitle
95421
95370
  VAppBar: VAppBar
95422
95371
  VAppBarNavIcon: VAppBarNavIcon
95423
95372
  VAppBarTitle: VAppBarTitle
95424
- VAvatar: VAvatar
95425
95373
  VBadge: VBadge
95426
- VBreadcrumbs: VBreadcrumbs
95427
- VBreadcrumbsItem: VBreadcrumbsItem
95428
- VBreadcrumbsDivider: VBreadcrumbsDivider
95429
- VBottomNavigation: VBottomNavigation
95430
95374
  VBanner: VBanner
95431
95375
  VBannerActions: VBannerActions
95432
95376
  VBannerText: VBannerText
95433
95377
  VBottomSheet: VBottomSheet
95434
- VBtnGroup: VBtnGroup
95378
+ VBreadcrumbs: VBreadcrumbs
95379
+ VBreadcrumbsItem: VBreadcrumbsItem
95380
+ VBreadcrumbsDivider: VBreadcrumbsDivider
95435
95381
  VBtn: VBtn
95382
+ VBottomNavigation: VBottomNavigation
95383
+ VBtnToggle: VBtnToggle
95384
+ VBtnGroup: VBtnGroup
95385
+ VCheckbox: VCheckbox
95386
+ VCheckboxBtn: VCheckboxBtn
95436
95387
  VCard: VCard
95437
95388
  VCardActions: VCardActions
95438
95389
  VCardItem: VCardItem
95439
95390
  VCardSubtitle: VCardSubtitle
95440
95391
  VCardText: VCardText
95441
95392
  VCardTitle: VCardTitle
95442
- VCheckbox: VCheckbox
95443
- VCheckboxBtn: VCheckboxBtn
95444
- VBtnToggle: VBtnToggle
95393
+ VChip: VChip
95445
95394
  VCarousel: VCarousel
95446
95395
  VCarouselItem: VCarouselItem
95447
- VChip: VChip
95448
- VCombobox: VCombobox
95449
- VChipGroup: VChipGroup
95450
- VCode: VCode
95451
- VDatePicker: VDatePicker
95452
- VDatePickerControls: VDatePickerControls
95453
- VDatePickerHeader: VDatePickerHeader
95454
- VDatePickerMonth: VDatePickerMonth
95455
- VDatePickerMonths: VDatePickerMonths
95456
- VDatePickerYears: VDatePickerYears
95457
95396
  VColorPicker: VColorPicker
95458
95397
  VCounter: VCounter
95398
+ VCode: VCode
95399
+ VCombobox: VCombobox
95459
95400
  VDataTable: VDataTable
95460
95401
  VDataTableHeaders: VDataTableHeaders
95461
95402
  VDataTableFooter: VDataTableFooter
@@ -95463,25 +95404,37 @@ declare module 'vue' {
95463
95404
  VDataTableRow: VDataTableRow
95464
95405
  VDataTableVirtual: VDataTableVirtual
95465
95406
  VDataTableServer: VDataTableServer
95466
- VDialog: VDialog
95467
- VEmptyState: VEmptyState
95407
+ VDatePicker: VDatePicker
95408
+ VDatePickerControls: VDatePickerControls
95409
+ VDatePickerHeader: VDatePickerHeader
95410
+ VDatePickerMonth: VDatePickerMonth
95411
+ VDatePickerMonths: VDatePickerMonths
95412
+ VDatePickerYears: VDatePickerYears
95413
+ VChipGroup: VChipGroup
95414
+ VDivider: VDivider
95415
+ VField: VField
95416
+ VFieldLabel: VFieldLabel
95468
95417
  VExpansionPanels: VExpansionPanels
95469
95418
  VExpansionPanel: VExpansionPanel
95470
95419
  VExpansionPanelText: VExpansionPanelText
95471
95420
  VExpansionPanelTitle: VExpansionPanelTitle
95472
- VField: VField
95473
- VFieldLabel: VFieldLabel
95474
- VDivider: VDivider
95475
95421
  VFab: VFab
95422
+ VDialog: VDialog
95476
95423
  VFooter: VFooter
95477
95424
  VFileInput: VFileInput
95478
- VImg: VImg
95479
95425
  VIcon: VIcon
95480
95426
  VComponentIcon: VComponentIcon
95481
95427
  VSvgIcon: VSvgIcon
95482
95428
  VLigatureIcon: VLigatureIcon
95483
95429
  VClassIcon: VClassIcon
95484
95430
  VInput: VInput
95431
+ VInfiniteScroll: VInfiniteScroll
95432
+ VImg: VImg
95433
+ VKbd: VKbd
95434
+ VItemGroup: VItemGroup
95435
+ VItem: VItem
95436
+ VLabel: VLabel
95437
+ VNavigationDrawer: VNavigationDrawer
95485
95438
  VList: VList
95486
95439
  VListGroup: VListGroup
95487
95440
  VListImg: VListImg
@@ -95491,84 +95444,80 @@ declare module 'vue' {
95491
95444
  VListItemSubtitle: VListItemSubtitle
95492
95445
  VListItemTitle: VListItemTitle
95493
95446
  VListSubheader: VListSubheader
95494
- VInfiniteScroll: VInfiniteScroll
95495
- VItemGroup: VItemGroup
95496
- VItem: VItem
95497
95447
  VMain: VMain
95498
95448
  VMenu: VMenu
95449
+ VOtpInput: VOtpInput
95499
95450
  VMessages: VMessages
95500
- VNavigationDrawer: VNavigationDrawer
95501
95451
  VNumberInput: VNumberInput
95502
- VOtpInput: VOtpInput
95503
95452
  VOverlay: VOverlay
95504
- VProgressCircular: VProgressCircular
95505
95453
  VPagination: VPagination
95506
95454
  VProgressLinear: VProgressLinear
95507
- VRadioGroup: VRadioGroup
95455
+ VProgressCircular: VProgressCircular
95508
95456
  VRating: VRating
95509
- VSelectionControl: VSelectionControl
95510
95457
  VSelect: VSelect
95511
95458
  VSelectionControlGroup: VSelectionControlGroup
95512
- VSheet: VSheet
95513
95459
  VSlideGroup: VSlideGroup
95514
95460
  VSlideGroupItem: VSlideGroupItem
95461
+ VSelectionControl: VSelectionControl
95515
95462
  VSkeletonLoader: VSkeletonLoader
95463
+ VSheet: VSheet
95516
95464
  VSlider: VSlider
95465
+ VSnackbar: VSnackbar
95517
95466
  VStepper: VStepper
95518
95467
  VStepperActions: VStepperActions
95519
95468
  VStepperHeader: VStepperHeader
95520
95469
  VStepperItem: VStepperItem
95521
95470
  VStepperWindow: VStepperWindow
95522
95471
  VStepperWindowItem: VStepperWindowItem
95523
- VLabel: VLabel
95524
- VSystemBar: VSystemBar
95472
+ VSwitch: VSwitch
95525
95473
  VTab: VTab
95526
95474
  VTabs: VTabs
95527
95475
  VTabsWindow: VTabsWindow
95528
95476
  VTabsWindowItem: VTabsWindowItem
95529
- VSwitch: VSwitch
95530
- VTextarea: VTextarea
95531
- VTable: VTable
95532
95477
  VTextField: VTextField
95478
+ VTable: VTable
95479
+ VSystemBar: VSystemBar
95480
+ VTextarea: VTextarea
95533
95481
  VTimeline: VTimeline
95534
95482
  VTimelineItem: VTimelineItem
95535
- VToolbar: VToolbar
95536
- VToolbarTitle: VToolbarTitle
95537
- VToolbarItems: VToolbarItems
95483
+ VTooltip: VTooltip
95484
+ VTimePicker: VTimePicker
95485
+ VTimePickerClock: VTimePickerClock
95486
+ VTimePickerControls: VTimePickerControls
95538
95487
  VTreeview: VTreeview
95539
95488
  VTreeviewItem: VTreeviewItem
95540
95489
  VTreeviewGroup: VTreeviewGroup
95541
- VTooltip: VTooltip
95490
+ VToolbar: VToolbar
95491
+ VToolbarTitle: VToolbarTitle
95492
+ VToolbarItems: VToolbarItems
95542
95493
  VWindow: VWindow
95543
95494
  VWindowItem: VWindowItem
95544
- VSnackbar: VSnackbar
95545
- VDataIterator: VDataIterator
95546
95495
  VDefaultsProvider: VDefaultsProvider
95547
- VForm: VForm
95496
+ VDataIterator: VDataIterator
95548
95497
  VContainer: VContainer
95549
95498
  VCol: VCol
95550
95499
  VRow: VRow
95551
95500
  VSpacer: VSpacer
95501
+ VConfirmEdit: VConfirmEdit
95502
+ VForm: VForm
95503
+ VHover: VHover
95504
+ VLazy: VLazy
95552
95505
  VLayout: VLayout
95553
95506
  VLayoutItem: VLayoutItem
95554
- VLazy: VLazy
95555
- VHover: VHover
95556
95507
  VLocaleProvider: VLocaleProvider
95557
95508
  VNoSsr: VNoSsr
95509
+ VRadioGroup: VRadioGroup
95510
+ VEmptyState: VEmptyState
95558
95511
  VParallax: VParallax
95559
95512
  VRadio: VRadio
95560
95513
  VRangeSlider: VRangeSlider
95561
95514
  VResponsive: VResponsive
95562
- VSpeedDial: VSpeedDial
95563
95515
  VSparkline: VSparkline
95564
- VKbd: VKbd
95565
95516
  VSnackbarQueue: VSnackbarQueue
95566
- VTimePicker: VTimePicker
95567
- VTimePickerClock: VTimePickerClock
95568
- VTimePickerControls: VTimePickerControls
95517
+ VSpeedDial: VSpeedDial
95569
95518
  VThemeProvider: VThemeProvider
95570
- VValidation: VValidation
95571
95519
  VVirtualScroll: VVirtualScroll
95520
+ VValidation: VValidation
95572
95521
  VFabTransition: VFabTransition
95573
95522
  VDialogBottomTransition: VDialogBottomTransition
95574
95523
  VDialogTopTransition: VDialogTopTransition
@@ -95585,23 +95534,22 @@ declare module 'vue' {
95585
95534
  VExpandTransition: VExpandTransition
95586
95535
  VExpandXTransition: VExpandXTransition
95587
95536
  VDialogTransition: VDialogTransition
95588
- VConfirmEdit: VConfirmEdit
95589
- VIconBtn: VIconBtn
95590
- VColorInput: VColorInput
95591
- VStepperVertical: VStepperVertical
95592
- VStepperVerticalItem: VStepperVerticalItem
95593
- VStepperVerticalActions: VStepperVerticalActions
95537
+ VFileUpload: VFileUpload
95538
+ VFileUploadItem: VFileUploadItem
95594
95539
  VCalendar: VCalendar
95595
95540
  VCalendarDay: VCalendarDay
95596
95541
  VCalendarHeader: VCalendarHeader
95597
95542
  VCalendarInterval: VCalendarInterval
95598
95543
  VCalendarIntervalEvent: VCalendarIntervalEvent
95599
95544
  VCalendarMonthDay: VCalendarMonthDay
95600
- VFileUpload: VFileUpload
95601
- VFileUploadItem: VFileUploadItem
95602
95545
  VPicker: VPicker
95603
95546
  VPickerTitle: VPickerTitle
95547
+ VStepperVertical: VStepperVertical
95548
+ VStepperVerticalItem: VStepperVerticalItem
95549
+ VStepperVerticalActions: VStepperVerticalActions
95550
+ VColorInput: VColorInput
95604
95551
  VHotkey: VHotkey
95552
+ VIconBtn: VIconBtn
95605
95553
  VDateInput: VDateInput
95606
95554
  VMaskInput: VMaskInput
95607
95555
  VPullToRefresh: VPullToRefresh