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