@vuetify/nightly 3.8.4-dev.2025-05-07 → 3.8.4-master.2025-05-07

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 (49) hide show
  1. package/CHANGELOG.md +3 -20
  2. package/dist/json/attributes.json +2498 -2506
  3. package/dist/json/importMap-labs.json +28 -28
  4. package/dist/json/importMap.json +138 -138
  5. package/dist/json/tags.json +0 -2
  6. package/dist/json/web-types.json +4444 -4464
  7. package/dist/vuetify-labs.cjs +31 -111
  8. package/dist/vuetify-labs.css +5389 -5412
  9. package/dist/vuetify-labs.d.ts +60 -93
  10. package/dist/vuetify-labs.esm.js +32 -112
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +31 -111
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +31 -111
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +5755 -5778
  17. package/dist/vuetify.d.ts +60 -93
  18. package/dist/vuetify.esm.js +32 -112
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +31 -111
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +1172 -1178
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VBtnGroup/VBtnGroup.css +7 -30
  26. package/lib/components/VBtnGroup/VBtnGroup.d.ts +32 -58
  27. package/lib/components/VBtnGroup/VBtnGroup.js +3 -7
  28. package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
  29. package/lib/components/VBtnGroup/VBtnGroup.sass +17 -44
  30. package/lib/components/VBtnToggle/VBtnToggle.d.ts +0 -25
  31. package/lib/components/VInput/VInput.d.ts +1 -1
  32. package/lib/components/VOverlay/VOverlay.css +1 -1
  33. package/lib/components/VOverlay/_variables.scss +1 -1
  34. package/lib/composables/calendar.d.ts +0 -1
  35. package/lib/composables/calendar.js.map +1 -1
  36. package/lib/composables/theme.d.ts +1 -6
  37. package/lib/composables/theme.js +26 -94
  38. package/lib/composables/theme.js.map +1 -1
  39. package/lib/composables/virtual.js +1 -6
  40. package/lib/composables/virtual.js.map +1 -1
  41. package/lib/entry-bundler.js +1 -1
  42. package/lib/entry-bundler.js.map +1 -1
  43. package/lib/framework.d.ts +50 -55
  44. package/lib/framework.js +1 -1
  45. package/lib/framework.js.map +1 -1
  46. package/lib/util/globals.d.ts +0 -1
  47. package/lib/util/globals.js +0 -1
  48. package/lib/util/globals.js.map +1 -1
  49. package/package.json +1 -1
@@ -133,12 +133,11 @@ type DeepPartial<T> = T extends object ? {
133
133
  } : T;
134
134
  type ThemeOptions = false | {
135
135
  cspNonce?: string;
136
- defaultTheme?: 'light' | 'dark' | 'system' | string;
136
+ defaultTheme?: string;
137
137
  variations?: false | VariationsOptions;
138
138
  themes?: Record<string, ThemeDefinition>;
139
139
  stylesheetId?: string;
140
140
  scope?: string;
141
- unimportant?: boolean;
142
141
  };
143
142
  type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
144
143
  interface VariationsOptions {
@@ -175,15 +174,11 @@ interface OnColors {
175
174
  'on-info': string;
176
175
  }
177
176
  interface ThemeInstance {
178
- change: (themeName: string) => void;
179
- cycle: (themeArray?: string[]) => void;
180
- toggle: (themeArray?: [string, string]) => void;
181
177
  readonly isDisabled: boolean;
182
178
  readonly themes: Ref<Record<string, InternalThemeDefinition>>;
183
179
  readonly name: Readonly<Ref<string>>;
184
180
  readonly current: DeepReadonly<Ref<InternalThemeDefinition>>;
185
181
  readonly computedThemes: DeepReadonly<Ref<Record<string, InternalThemeDefinition>>>;
186
- readonly prefix: string;
187
182
  readonly themeClasses: Readonly<Ref<string | undefined>>;
188
183
  readonly styles: Readonly<Ref<string>>;
189
184
  readonly global: {
@@ -22124,7 +22119,6 @@ type VBtn = InstanceType<typeof VBtn>;
22124
22119
  declare const VBtnGroup: {
22125
22120
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
22126
22121
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22127
- direction: "horizontal" | "vertical";
22128
22122
  style: vue.StyleValue;
22129
22123
  tag: string | JSXComponent;
22130
22124
  density: Density;
@@ -22149,7 +22143,6 @@ declare const VBtnGroup: {
22149
22143
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
22150
22144
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
22151
22145
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22152
- direction: "horizontal" | "vertical";
22153
22146
  style: vue.StyleValue;
22154
22147
  tag: string | JSXComponent;
22155
22148
  density: Density;
@@ -22167,7 +22160,6 @@ declare const VBtnGroup: {
22167
22160
  Defaults: {};
22168
22161
  }, {
22169
22162
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22170
- direction: "horizontal" | "vertical";
22171
22163
  style: vue.StyleValue;
22172
22164
  tag: string | JSXComponent;
22173
22165
  density: Density;
@@ -22192,7 +22184,6 @@ declare const VBtnGroup: {
22192
22184
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
22193
22185
  }, {}, {}, {}, {}, {
22194
22186
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22195
- direction: "horizontal" | "vertical";
22196
22187
  style: vue.StyleValue;
22197
22188
  tag: string | JSXComponent;
22198
22189
  density: Density;
@@ -22205,7 +22196,6 @@ declare const VBtnGroup: {
22205
22196
  __isSuspense?: never;
22206
22197
  } & vue.ComponentOptionsBase<{
22207
22198
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22208
- direction: "horizontal" | "vertical";
22209
22199
  style: vue.StyleValue;
22210
22200
  tag: string | JSXComponent;
22211
22201
  density: Density;
@@ -22230,7 +22220,6 @@ declare const VBtnGroup: {
22230
22220
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
22231
22221
  }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
22232
22222
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22233
- direction: "horizontal" | "vertical";
22234
22223
  style: vue.StyleValue;
22235
22224
  tag: string | JSXComponent;
22236
22225
  density: Density;
@@ -22242,13 +22231,13 @@ declare const VBtnGroup: {
22242
22231
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
22243
22232
  color: StringConstructor;
22244
22233
  variant: {
22245
- type: PropType<Variant$2>;
22234
+ type: vue.PropType<Variant$2>;
22246
22235
  default: string;
22247
22236
  validator: (v: any) => boolean;
22248
22237
  };
22249
22238
  theme: StringConstructor;
22250
22239
  tag: {
22251
- type: PropType<string | JSXComponent>;
22240
+ type: vue.PropType<string | JSXComponent>;
22252
22241
  default: string;
22253
22242
  };
22254
22243
  rounded: {
@@ -22261,32 +22250,28 @@ declare const VBtnGroup: {
22261
22250
  validator(v: any): boolean;
22262
22251
  };
22263
22252
  density: {
22264
- type: PropType<Density>;
22253
+ type: vue.PropType<Density>;
22265
22254
  default: string;
22266
22255
  validator: (v: any) => boolean;
22267
22256
  };
22268
- class: PropType<ClassValue>;
22257
+ class: vue.PropType<ClassValue>;
22269
22258
  style: {
22270
- type: PropType<vue.StyleValue>;
22259
+ type: vue.PropType<vue.StyleValue>;
22271
22260
  default: null;
22272
22261
  };
22273
22262
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
22274
22263
  baseColor: StringConstructor;
22275
22264
  divided: BooleanConstructor;
22276
- direction: {
22277
- type: PropType<"horizontal" | "vertical">;
22278
- default: string;
22279
- };
22280
22265
  }, vue.ExtractPropTypes<{
22281
22266
  color: StringConstructor;
22282
22267
  variant: {
22283
- type: PropType<Variant$2>;
22268
+ type: vue.PropType<Variant$2>;
22284
22269
  default: string;
22285
22270
  validator: (v: any) => boolean;
22286
22271
  };
22287
22272
  theme: StringConstructor;
22288
22273
  tag: {
22289
- type: PropType<string | JSXComponent>;
22274
+ type: vue.PropType<string | JSXComponent>;
22290
22275
  default: string;
22291
22276
  };
22292
22277
  rounded: {
@@ -22299,22 +22284,18 @@ declare const VBtnGroup: {
22299
22284
  validator(v: any): boolean;
22300
22285
  };
22301
22286
  density: {
22302
- type: PropType<Density>;
22287
+ type: vue.PropType<Density>;
22303
22288
  default: string;
22304
22289
  validator: (v: any) => boolean;
22305
22290
  };
22306
- class: PropType<ClassValue>;
22291
+ class: vue.PropType<ClassValue>;
22307
22292
  style: {
22308
- type: PropType<vue.StyleValue>;
22293
+ type: vue.PropType<vue.StyleValue>;
22309
22294
  default: null;
22310
22295
  };
22311
22296
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
22312
22297
  baseColor: StringConstructor;
22313
22298
  divided: BooleanConstructor;
22314
- direction: {
22315
- type: PropType<"horizontal" | "vertical">;
22316
- default: string;
22317
- };
22318
22299
  }>>;
22319
22300
  type VBtnGroup = InstanceType<typeof VBtnGroup>;
22320
22301
 
@@ -22327,7 +22308,6 @@ type VBtnToggleSlots = {
22327
22308
  declare const VBtnToggle: {
22328
22309
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
22329
22310
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22330
- direction: "horizontal" | "vertical";
22331
22311
  style: vue.StyleValue;
22332
22312
  disabled: boolean;
22333
22313
  multiple: boolean;
@@ -22354,7 +22334,6 @@ declare const VBtnToggle: {
22354
22334
  'update:modelValue': (value: any) => true;
22355
22335
  }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
22356
22336
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22357
- direction: "horizontal" | "vertical";
22358
22337
  style: vue.StyleValue;
22359
22338
  disabled: boolean;
22360
22339
  multiple: boolean;
@@ -22374,7 +22353,6 @@ declare const VBtnToggle: {
22374
22353
  Defaults: {};
22375
22354
  }, {
22376
22355
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22377
- direction: "horizontal" | "vertical";
22378
22356
  style: vue.StyleValue;
22379
22357
  disabled: boolean;
22380
22358
  multiple: boolean;
@@ -22399,7 +22377,6 @@ declare const VBtnToggle: {
22399
22377
  select: (id: string, value: boolean) => void;
22400
22378
  }, {}, {}, {}, {
22401
22379
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22402
- direction: "horizontal" | "vertical";
22403
22380
  style: vue.StyleValue;
22404
22381
  disabled: boolean;
22405
22382
  multiple: boolean;
@@ -22414,7 +22391,6 @@ declare const VBtnToggle: {
22414
22391
  __isSuspense?: never;
22415
22392
  } & vue.ComponentOptionsBase<{
22416
22393
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22417
- direction: "horizontal" | "vertical";
22418
22394
  style: vue.StyleValue;
22419
22395
  disabled: boolean;
22420
22396
  multiple: boolean;
@@ -22441,7 +22417,6 @@ declare const VBtnToggle: {
22441
22417
  'update:modelValue': (value: any) => true;
22442
22418
  }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, string, {
22443
22419
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
22444
- direction: "horizontal" | "vertical";
22445
22420
  style: vue.StyleValue;
22446
22421
  disabled: boolean;
22447
22422
  multiple: boolean;
@@ -22498,10 +22473,6 @@ declare const VBtnToggle: {
22498
22473
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
22499
22474
  baseColor: StringConstructor;
22500
22475
  divided: BooleanConstructor;
22501
- direction: {
22502
- type: vue.PropType<"horizontal" | "vertical">;
22503
- default: string;
22504
- };
22505
22476
  }, vue.ExtractPropTypes<{
22506
22477
  modelValue: {
22507
22478
  type: null;
@@ -22545,10 +22516,6 @@ declare const VBtnToggle: {
22545
22516
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
22546
22517
  baseColor: StringConstructor;
22547
22518
  divided: BooleanConstructor;
22548
- direction: {
22549
- type: vue.PropType<"horizontal" | "vertical">;
22550
- default: string;
22551
- };
22552
22519
  }>>;
22553
22520
  type VBtnToggle = InstanceType<typeof VBtnToggle>;
22554
22521
 
@@ -100701,20 +100668,23 @@ declare module 'vue' {
100701
100668
  }
100702
100669
  export interface GlobalComponents {
100703
100670
  VApp: VApp
100671
+ VAppBar: VAppBar
100672
+ VAppBarNavIcon: VAppBarNavIcon
100673
+ VAppBarTitle: VAppBarTitle
100704
100674
  VAlert: VAlert
100705
100675
  VAlertTitle: VAlertTitle
100706
100676
  VAvatar: VAvatar
100707
- VBadge: VBadge
100708
100677
  VAutocomplete: VAutocomplete
100709
- VBottomSheet: VBottomSheet
100710
100678
  VBanner: VBanner
100711
100679
  VBannerActions: VBannerActions
100712
100680
  VBannerText: VBannerText
100681
+ VBottomSheet: VBottomSheet
100713
100682
  VBreadcrumbs: VBreadcrumbs
100714
100683
  VBreadcrumbsItem: VBreadcrumbsItem
100715
100684
  VBreadcrumbsDivider: VBreadcrumbsDivider
100716
- VBottomNavigation: VBottomNavigation
100685
+ VBadge: VBadge
100717
100686
  VBtn: VBtn
100687
+ VBtnToggle: VBtnToggle
100718
100688
  VCard: VCard
100719
100689
  VCardActions: VCardActions
100720
100690
  VCardItem: VCardItem
@@ -100722,17 +100692,14 @@ declare module 'vue' {
100722
100692
  VCardText: VCardText
100723
100693
  VCardTitle: VCardTitle
100724
100694
  VBtnGroup: VBtnGroup
100695
+ VCarousel: VCarousel
100696
+ VCarouselItem: VCarouselItem
100725
100697
  VCheckbox: VCheckbox
100726
100698
  VCheckboxBtn: VCheckboxBtn
100727
- VBtnToggle: VBtnToggle
100728
100699
  VChip: VChip
100729
- VCarousel: VCarousel
100730
- VCarouselItem: VCarouselItem
100731
- VChipGroup: VChipGroup
100732
- VCode: VCode
100733
- VColorPicker: VColorPicker
100700
+ VBottomNavigation: VBottomNavigation
100734
100701
  VCombobox: VCombobox
100735
- VCounter: VCounter
100702
+ VColorPicker: VColorPicker
100736
100703
  VDataTable: VDataTable
100737
100704
  VDataTableHeaders: VDataTableHeaders
100738
100705
  VDataTableFooter: VDataTableFooter
@@ -100740,24 +100707,28 @@ declare module 'vue' {
100740
100707
  VDataTableRow: VDataTableRow
100741
100708
  VDataTableVirtual: VDataTableVirtual
100742
100709
  VDataTableServer: VDataTableServer
100710
+ VChipGroup: VChipGroup
100711
+ VDivider: VDivider
100712
+ VCounter: VCounter
100713
+ VDialog: VDialog
100714
+ VCode: VCode
100743
100715
  VDatePicker: VDatePicker
100744
100716
  VDatePickerControls: VDatePickerControls
100745
100717
  VDatePickerHeader: VDatePickerHeader
100746
100718
  VDatePickerMonth: VDatePickerMonth
100747
100719
  VDatePickerMonths: VDatePickerMonths
100748
100720
  VDatePickerYears: VDatePickerYears
100749
- VDialog: VDialog
100750
100721
  VEmptyState: VEmptyState
100751
- VFileInput: VFileInput
100752
- VDivider: VDivider
100753
- VFab: VFab
100754
100722
  VExpansionPanels: VExpansionPanels
100755
100723
  VExpansionPanel: VExpansionPanel
100756
100724
  VExpansionPanelText: VExpansionPanelText
100757
100725
  VExpansionPanelTitle: VExpansionPanelTitle
100758
- VFooter: VFooter
100726
+ VFab: VFab
100759
100727
  VField: VField
100760
100728
  VFieldLabel: VFieldLabel
100729
+ VFileInput: VFileInput
100730
+ VFooter: VFooter
100731
+ VImg: VImg
100761
100732
  VIcon: VIcon
100762
100733
  VComponentIcon: VComponentIcon
100763
100734
  VSvgIcon: VSvgIcon
@@ -100766,12 +100737,11 @@ declare module 'vue' {
100766
100737
  VInfiniteScroll: VInfiniteScroll
100767
100738
  VItemGroup: VItemGroup
100768
100739
  VItem: VItem
100769
- VKbd: VKbd
100770
- VAppBar: VAppBar
100771
- VAppBarNavIcon: VAppBarNavIcon
100772
- VAppBarTitle: VAppBarTitle
100773
100740
  VInput: VInput
100741
+ VKbd: VKbd
100774
100742
  VLabel: VLabel
100743
+ VMain: VMain
100744
+ VMenu: VMenu
100775
100745
  VList: VList
100776
100746
  VListGroup: VListGroup
100777
100747
  VListImg: VListImg
@@ -100781,26 +100751,24 @@ declare module 'vue' {
100781
100751
  VListItemSubtitle: VListItemSubtitle
100782
100752
  VListItemTitle: VListItemTitle
100783
100753
  VListSubheader: VListSubheader
100784
- VMain: VMain
100785
- VMessages: VMessages
100786
100754
  VOtpInput: VOtpInput
100787
- VMenu: VMenu
100788
100755
  VNumberInput: VNumberInput
100789
- VNavigationDrawer: VNavigationDrawer
100790
100756
  VOverlay: VOverlay
100791
- VProgressCircular: VProgressCircular
100757
+ VMessages: VMessages
100792
100758
  VPagination: VPagination
100759
+ VProgressCircular: VProgressCircular
100760
+ VProgressLinear: VProgressLinear
100793
100761
  VRadioGroup: VRadioGroup
100794
100762
  VRating: VRating
100795
- VSelect: VSelect
100796
- VProgressLinear: VProgressLinear
100763
+ VSelectionControlGroup: VSelectionControlGroup
100797
100764
  VSheet: VSheet
100798
- VSlider: VSlider
100799
- VSelectionControl: VSelectionControl
100800
- VSnackbar: VSnackbar
100765
+ VSelect: VSelect
100801
100766
  VSkeletonLoader: VSkeletonLoader
100802
100767
  VSlideGroup: VSlideGroup
100803
100768
  VSlideGroupItem: VSlideGroupItem
100769
+ VSlider: VSlider
100770
+ VSnackbar: VSnackbar
100771
+ VSelectionControl: VSelectionControl
100804
100772
  VStepper: VStepper
100805
100773
  VStepperActions: VStepperActions
100806
100774
  VStepperHeader: VStepperHeader
@@ -100809,42 +100777,40 @@ declare module 'vue' {
100809
100777
  VStepperWindowItem: VStepperWindowItem
100810
100778
  VSwitch: VSwitch
100811
100779
  VSystemBar: VSystemBar
100812
- VTab: VTab
100813
- VTabs: VTabs
100814
- VTabsWindow: VTabsWindow
100815
- VTabsWindowItem: VTabsWindowItem
100816
100780
  VTable: VTable
100781
+ VTextField: VTextField
100817
100782
  VTextarea: VTextarea
100818
100783
  VToolbar: VToolbar
100819
100784
  VToolbarTitle: VToolbarTitle
100820
100785
  VToolbarItems: VToolbarItems
100821
- VTextField: VTextField
100822
100786
  VTooltip: VTooltip
100823
100787
  VTimeline: VTimeline
100824
100788
  VTimelineItem: VTimelineItem
100825
100789
  VWindow: VWindow
100826
100790
  VWindowItem: VWindowItem
100791
+ VNavigationDrawer: VNavigationDrawer
100827
100792
  VConfirmEdit: VConfirmEdit
100828
- VDataIterator: VDataIterator
100829
100793
  VDefaultsProvider: VDefaultsProvider
100794
+ VDataIterator: VDataIterator
100795
+ VForm: VForm
100830
100796
  VContainer: VContainer
100831
100797
  VCol: VCol
100832
100798
  VRow: VRow
100833
100799
  VSpacer: VSpacer
100834
- VForm: VForm
100835
100800
  VHover: VHover
100836
100801
  VLayout: VLayout
100837
100802
  VLayoutItem: VLayoutItem
100838
100803
  VLazy: VLazy
100839
- VParallax: VParallax
100840
100804
  VLocaleProvider: VLocaleProvider
100841
100805
  VNoSsr: VNoSsr
100842
100806
  VRadio: VRadio
100807
+ VParallax: VParallax
100843
100808
  VRangeSlider: VRangeSlider
100844
100809
  VResponsive: VResponsive
100845
100810
  VSnackbarQueue: VSnackbarQueue
100846
100811
  VSparkline: VSparkline
100847
- VSelectionControlGroup: VSelectionControlGroup
100812
+ VSpeedDial: VSpeedDial
100813
+ VValidation: VValidation
100848
100814
  VThemeProvider: VThemeProvider
100849
100815
  VVirtualScroll: VVirtualScroll
100850
100816
  VFabTransition: VFabTransition
@@ -100863,29 +100829,30 @@ declare module 'vue' {
100863
100829
  VExpandTransition: VExpandTransition
100864
100830
  VExpandXTransition: VExpandXTransition
100865
100831
  VDialogTransition: VDialogTransition
100866
- VImg: VImg
100867
- VValidation: VValidation
100868
- VSpeedDial: VSpeedDial
100832
+ VTab: VTab
100833
+ VTabs: VTabs
100834
+ VTabsWindow: VTabsWindow
100835
+ VTabsWindowItem: VTabsWindowItem
100836
+ VFileUpload: VFileUpload
100837
+ VFileUploadItem: VFileUploadItem
100838
+ VIconBtn: VIconBtn
100869
100839
  VCalendar: VCalendar
100870
100840
  VCalendarDay: VCalendarDay
100871
100841
  VCalendarHeader: VCalendarHeader
100872
100842
  VCalendarInterval: VCalendarInterval
100873
100843
  VCalendarIntervalEvent: VCalendarIntervalEvent
100874
100844
  VCalendarMonthDay: VCalendarMonthDay
100875
- VIconBtn: VIconBtn
100876
- VPicker: VPicker
100877
- VPickerTitle: VPickerTitle
100878
100845
  VStepperVertical: VStepperVertical
100879
100846
  VStepperVerticalItem: VStepperVerticalItem
100880
100847
  VStepperVerticalActions: VStepperVerticalActions
100881
- VTimePicker: VTimePicker
100882
- VTimePickerClock: VTimePickerClock
100883
- VTimePickerControls: VTimePickerControls
100884
- VFileUpload: VFileUpload
100885
- VFileUploadItem: VFileUploadItem
100848
+ VPicker: VPicker
100849
+ VPickerTitle: VPickerTitle
100886
100850
  VTreeview: VTreeview
100887
100851
  VTreeviewItem: VTreeviewItem
100888
100852
  VTreeviewGroup: VTreeviewGroup
100853
+ VTimePicker: VTimePicker
100854
+ VTimePickerClock: VTimePickerClock
100855
+ VTimePickerControls: VTimePickerControls
100889
100856
  VDateInput: VDateInput
100890
100857
  VPullToRefresh: VPullToRefresh
100891
100858
  }