@vuetify/nightly 3.6.3-dev.2024-05-03 → 3.6.3-dev.2024-05-14

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 (45) hide show
  1. package/CHANGELOG.md +8 -2
  2. package/dist/json/attributes.json +20 -0
  3. package/dist/json/importMap-labs.json +4 -4
  4. package/dist/json/importMap.json +144 -144
  5. package/dist/json/tags.json +5 -0
  6. package/dist/json/web-types.json +47 -1
  7. package/dist/vuetify-labs.css +2500 -2493
  8. package/dist/vuetify-labs.d.ts +117 -75
  9. package/dist/vuetify-labs.esm.js +11 -5
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +11 -5
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +475 -468
  14. package/dist/vuetify.d.ts +149 -107
  15. package/dist/vuetify.esm.js +11 -5
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +11 -5
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +10 -10
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAppBar/index.d.mts +6 -0
  23. package/lib/components/VAutocomplete/index.d.mts +12 -12
  24. package/lib/components/VAvatar/VAvatar.css +7 -0
  25. package/lib/components/VAvatar/VAvatar.mjs +6 -1
  26. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  27. package/lib/components/VAvatar/VAvatar.sass +1 -0
  28. package/lib/components/VAvatar/_variables.scss +13 -0
  29. package/lib/components/VAvatar/index.d.mts +6 -0
  30. package/lib/components/VBreadcrumbs/index.d.mts +8 -8
  31. package/lib/components/VBtn/VBtn.mjs +3 -1
  32. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  33. package/lib/components/VBtn/index.d.mts +6 -0
  34. package/lib/components/VCombobox/index.d.mts +12 -12
  35. package/lib/components/VFab/index.d.mts +6 -0
  36. package/lib/components/VList/index.d.mts +12 -12
  37. package/lib/components/VSelect/index.d.mts +12 -12
  38. package/lib/components/VTabs/index.d.mts +21 -3
  39. package/lib/components/index.d.mts +101 -59
  40. package/lib/entry-bundler.mjs +1 -1
  41. package/lib/framework.mjs +1 -1
  42. package/lib/index.d.mts +48 -48
  43. package/lib/labs/VTreeview/index.d.mts +16 -16
  44. package/lib/labs/components.d.mts +16 -16
  45. package/package.json +1 -1
@@ -16,7 +16,7 @@ export const createVuetify = function () {
16
16
  ...options
17
17
  });
18
18
  };
19
- export const version = "3.6.3-dev.2024-05-03";
19
+ export const version = "3.6.3-dev.2024-05-14";
20
20
  createVuetify.version = version;
21
21
  export { blueprints, components, directives };
22
22
  export * from "./composables/index.mjs";
package/lib/framework.mjs CHANGED
@@ -97,7 +97,7 @@ export function createVuetify() {
97
97
  goTo
98
98
  };
99
99
  }
100
- export const version = "3.6.3-dev.2024-05-03";
100
+ export const version = "3.6.3-dev.2024-05-14";
101
101
  createVuetify.version = version;
102
102
 
103
103
  // Vue's inject() can only be used in setup
package/lib/index.d.mts CHANGED
@@ -493,49 +493,42 @@ declare module '@vue/runtime-core' {
493
493
  }
494
494
 
495
495
  export interface GlobalComponents {
496
- VAlert: typeof import('vuetify/components')['VAlert']
497
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
496
+ VApp: typeof import('vuetify/components')['VApp']
498
497
  VAppBar: typeof import('vuetify/components')['VAppBar']
499
498
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
500
499
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
500
+ VAvatar: typeof import('vuetify/components')['VAvatar']
501
+ VAlert: typeof import('vuetify/components')['VAlert']
502
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
503
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
504
+ VBadge: typeof import('vuetify/components')['VBadge']
501
505
  VBanner: typeof import('vuetify/components')['VBanner']
502
506
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
503
507
  VBannerText: typeof import('vuetify/components')['VBannerText']
504
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
505
- VAvatar: typeof import('vuetify/components')['VAvatar']
506
- VApp: typeof import('vuetify/components')['VApp']
507
- VBadge: typeof import('vuetify/components')['VBadge']
508
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
509
508
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
510
509
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
511
510
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
512
511
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
513
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
514
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
515
512
  VBtn: typeof import('vuetify/components')['VBtn']
513
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
516
514
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
517
- VChip: typeof import('vuetify/components')['VChip']
518
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
519
- VCarousel: typeof import('vuetify/components')['VCarousel']
520
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
521
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
522
515
  VCard: typeof import('vuetify/components')['VCard']
523
516
  VCardActions: typeof import('vuetify/components')['VCardActions']
524
517
  VCardItem: typeof import('vuetify/components')['VCardItem']
525
518
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
526
519
  VCardText: typeof import('vuetify/components')['VCardText']
527
520
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
521
+ VCarousel: typeof import('vuetify/components')['VCarousel']
522
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
523
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
524
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
525
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
526
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
527
+ VChip: typeof import('vuetify/components')['VChip']
528
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
528
529
  VCode: typeof import('vuetify/components')['VCode']
529
530
  VCombobox: typeof import('vuetify/components')['VCombobox']
530
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
531
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
532
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
533
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
534
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
535
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
536
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
537
531
  VCounter: typeof import('vuetify/components')['VCounter']
538
- VDialog: typeof import('vuetify/components')['VDialog']
539
532
  VDataTable: typeof import('vuetify/components')['VDataTable']
540
533
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
541
534
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -543,9 +536,15 @@ declare module '@vue/runtime-core' {
543
536
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
544
537
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
545
538
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
546
- VDivider: typeof import('vuetify/components')['VDivider']
539
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
540
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
541
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
542
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
543
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
544
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
547
545
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
548
- VFileInput: typeof import('vuetify/components')['VFileInput']
546
+ VDialog: typeof import('vuetify/components')['VDialog']
547
+ VDivider: typeof import('vuetify/components')['VDivider']
549
548
  VField: typeof import('vuetify/components')['VField']
550
549
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
551
550
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
@@ -554,19 +553,19 @@ declare module '@vue/runtime-core' {
554
553
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
555
554
  VFooter: typeof import('vuetify/components')['VFooter']
556
555
  VFab: typeof import('vuetify/components')['VFab']
557
- VImg: typeof import('vuetify/components')['VImg']
556
+ VFileInput: typeof import('vuetify/components')['VFileInput']
558
557
  VIcon: typeof import('vuetify/components')['VIcon']
559
558
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
560
559
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
561
560
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
562
561
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
563
- VInput: typeof import('vuetify/components')['VInput']
564
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
565
- VKbd: typeof import('vuetify/components')['VKbd']
562
+ VImg: typeof import('vuetify/components')['VImg']
566
563
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
567
564
  VItem: typeof import('vuetify/components')['VItem']
568
- VMain: typeof import('vuetify/components')['VMain']
565
+ VInput: typeof import('vuetify/components')['VInput']
569
566
  VLabel: typeof import('vuetify/components')['VLabel']
567
+ VKbd: typeof import('vuetify/components')['VKbd']
568
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
570
569
  VList: typeof import('vuetify/components')['VList']
571
570
  VListGroup: typeof import('vuetify/components')['VListGroup']
572
571
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -576,40 +575,41 @@ declare module '@vue/runtime-core' {
576
575
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
577
576
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
578
577
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
579
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
580
578
  VMenu: typeof import('vuetify/components')['VMenu']
579
+ VMain: typeof import('vuetify/components')['VMain']
580
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
581
581
  VMessages: typeof import('vuetify/components')['VMessages']
582
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
583
- VOverlay: typeof import('vuetify/components')['VOverlay']
584
582
  VPagination: typeof import('vuetify/components')['VPagination']
585
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
583
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
584
+ VOverlay: typeof import('vuetify/components')['VOverlay']
586
585
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
586
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
587
587
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
588
- VRating: typeof import('vuetify/components')['VRating']
589
588
  VSelect: typeof import('vuetify/components')['VSelect']
590
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
591
- VSheet: typeof import('vuetify/components')['VSheet']
589
+ VRating: typeof import('vuetify/components')['VRating']
592
590
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
591
+ VSheet: typeof import('vuetify/components')['VSheet']
592
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
593
593
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
594
- VSlider: typeof import('vuetify/components')['VSlider']
595
- VTab: typeof import('vuetify/components')['VTab']
596
- VTabs: typeof import('vuetify/components')['VTabs']
597
- VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
598
- VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
599
594
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
600
595
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
601
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
596
+ VSlider: typeof import('vuetify/components')['VSlider']
602
597
  VStepper: typeof import('vuetify/components')['VStepper']
603
598
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
604
599
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
605
600
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
606
601
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
607
602
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
608
- VTable: typeof import('vuetify/components')['VTable']
609
- VSwitch: typeof import('vuetify/components')['VSwitch']
610
- VTextarea: typeof import('vuetify/components')['VTextarea']
611
603
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
604
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
605
+ VTextarea: typeof import('vuetify/components')['VTextarea']
606
+ VSwitch: typeof import('vuetify/components')['VSwitch']
607
+ VTab: typeof import('vuetify/components')['VTab']
608
+ VTabs: typeof import('vuetify/components')['VTabs']
609
+ VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
610
+ VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
612
611
  VTextField: typeof import('vuetify/components')['VTextField']
612
+ VTable: typeof import('vuetify/components')['VTable']
613
613
  VTimeline: typeof import('vuetify/components')['VTimeline']
614
614
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
615
615
  VToolbar: typeof import('vuetify/components')['VToolbar']
@@ -621,16 +621,16 @@ declare module '@vue/runtime-core' {
621
621
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
622
622
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
623
623
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
624
+ VForm: typeof import('vuetify/components')['VForm']
624
625
  VContainer: typeof import('vuetify/components')['VContainer']
625
626
  VCol: typeof import('vuetify/components')['VCol']
626
627
  VRow: typeof import('vuetify/components')['VRow']
627
628
  VSpacer: typeof import('vuetify/components')['VSpacer']
628
- VForm: typeof import('vuetify/components')['VForm']
629
629
  VHover: typeof import('vuetify/components')['VHover']
630
630
  VLayout: typeof import('vuetify/components')['VLayout']
631
631
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
632
- VLazy: typeof import('vuetify/components')['VLazy']
633
632
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
633
+ VLazy: typeof import('vuetify/components')['VLazy']
634
634
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
635
635
  VParallax: typeof import('vuetify/components')['VParallax']
636
636
  VRadio: typeof import('vuetify/components')['VRadio']
@@ -663,10 +663,10 @@ declare module '@vue/runtime-core' {
663
663
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
664
664
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
665
665
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
666
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
667
666
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
668
667
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
669
668
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
669
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
670
670
  VPicker: typeof import('vuetify/labs/components')['VPicker']
671
671
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
672
672
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
@@ -191,10 +191,10 @@ declare const VTreeview: {
191
191
  baseColor?: string | undefined;
192
192
  selected?: readonly unknown[] | undefined;
193
193
  bgColor?: string | undefined;
194
+ activeColor?: string | undefined;
194
195
  activeClass?: string | undefined;
195
196
  opened?: readonly unknown[] | undefined;
196
197
  activeStrategy?: SelectStrategy | undefined;
197
- activeColor?: string | undefined;
198
198
  customFilter?: FilterFunction | undefined;
199
199
  customKeyFilter?: FilterKeyFunctions | undefined;
200
200
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -274,10 +274,10 @@ declare const VTreeview: {
274
274
  baseColor?: string | undefined;
275
275
  selected?: readonly unknown[] | undefined;
276
276
  bgColor?: string | undefined;
277
+ activeColor?: string | undefined;
277
278
  activeClass?: string | undefined;
278
279
  opened?: readonly unknown[] | undefined;
279
280
  activeStrategy?: SelectStrategy | undefined;
280
- activeColor?: string | undefined;
281
281
  customFilter?: FilterFunction | undefined;
282
282
  customKeyFilter?: FilterKeyFunctions | undefined;
283
283
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -447,10 +447,10 @@ declare const VTreeview: {
447
447
  baseColor?: string | undefined;
448
448
  selected?: readonly unknown[] | undefined;
449
449
  bgColor?: string | undefined;
450
+ activeColor?: string | undefined;
450
451
  activeClass?: string | undefined;
451
452
  opened?: readonly unknown[] | undefined;
452
453
  activeStrategy?: SelectStrategy | undefined;
453
- activeColor?: string | undefined;
454
454
  customFilter?: FilterFunction | undefined;
455
455
  customKeyFilter?: FilterKeyFunctions | undefined;
456
456
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -549,10 +549,10 @@ declare const VTreeview: {
549
549
  baseColor?: string | undefined;
550
550
  selected?: readonly unknown[] | undefined;
551
551
  bgColor?: string | undefined;
552
+ activeColor?: string | undefined;
552
553
  activeClass?: string | undefined;
553
554
  opened?: readonly unknown[] | undefined;
554
555
  activeStrategy?: SelectStrategy | undefined;
555
- activeColor?: string | undefined;
556
556
  customFilter?: FilterFunction | undefined;
557
557
  customKeyFilter?: FilterKeyFunctions | undefined;
558
558
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -740,6 +740,7 @@ declare const VTreeview: {
740
740
  baseColor: StringConstructor;
741
741
  selected: vue.PropType<readonly unknown[]>;
742
742
  bgColor: StringConstructor;
743
+ activeColor: StringConstructor;
743
744
  slim: {
744
745
  type: vue.PropType<boolean>;
745
746
  default: boolean;
@@ -767,7 +768,6 @@ declare const VTreeview: {
767
768
  type: vue.PropType<NonNullable<NonNullable<OpenStrategyProp>>>;
768
769
  default: NonNullable<NonNullable<OpenStrategyProp>>;
769
770
  };
770
- activeColor: StringConstructor;
771
771
  collapseIcon: {
772
772
  type: vue.PropType<string>;
773
773
  default: string;
@@ -870,6 +870,7 @@ declare const VTreeview: {
870
870
  baseColor: StringConstructor;
871
871
  selected: vue.PropType<readonly unknown[]>;
872
872
  bgColor: StringConstructor;
873
+ activeColor: StringConstructor;
873
874
  slim: {
874
875
  type: vue.PropType<boolean>;
875
876
  default: boolean;
@@ -897,7 +898,6 @@ declare const VTreeview: {
897
898
  type: vue.PropType<NonNullable<NonNullable<OpenStrategyProp>>>;
898
899
  default: NonNullable<NonNullable<OpenStrategyProp>>;
899
900
  };
900
- activeColor: StringConstructor;
901
901
  collapseIcon: {
902
902
  type: vue.PropType<string>;
903
903
  default: string;
@@ -990,12 +990,12 @@ declare const VTreeviewItem: {
990
990
  minWidth?: string | number | undefined;
991
991
  elevation?: string | number | undefined;
992
992
  baseColor?: string | undefined;
993
+ activeColor?: string | undefined;
993
994
  prependIcon?: IconValue | undefined;
994
995
  appendIcon?: IconValue | undefined;
995
996
  activeClass?: string | undefined;
996
997
  appendAvatar?: string | undefined;
997
998
  prependAvatar?: string | undefined;
998
- activeColor?: string | undefined;
999
999
  subtitle?: string | number | undefined;
1000
1000
  lines?: "one" | "two" | "three" | undefined;
1001
1001
  toggleIcon?: IconValue | undefined;
@@ -1107,12 +1107,12 @@ declare const VTreeviewItem: {
1107
1107
  minWidth?: string | number | undefined;
1108
1108
  elevation?: string | number | undefined;
1109
1109
  baseColor?: string | undefined;
1110
+ activeColor?: string | undefined;
1110
1111
  prependIcon?: IconValue | undefined;
1111
1112
  appendIcon?: IconValue | undefined;
1112
1113
  activeClass?: string | undefined;
1113
1114
  appendAvatar?: string | undefined;
1114
1115
  prependAvatar?: string | undefined;
1115
- activeColor?: string | undefined;
1116
1116
  subtitle?: string | number | undefined;
1117
1117
  lines?: "one" | "two" | "three" | undefined;
1118
1118
  toggleIcon?: IconValue | undefined;
@@ -1280,12 +1280,12 @@ declare const VTreeviewItem: {
1280
1280
  minWidth?: string | number | undefined;
1281
1281
  elevation?: string | number | undefined;
1282
1282
  baseColor?: string | undefined;
1283
+ activeColor?: string | undefined;
1283
1284
  prependIcon?: IconValue | undefined;
1284
1285
  appendIcon?: IconValue | undefined;
1285
1286
  activeClass?: string | undefined;
1286
1287
  appendAvatar?: string | undefined;
1287
1288
  prependAvatar?: string | undefined;
1288
- activeColor?: string | undefined;
1289
1289
  subtitle?: string | number | undefined;
1290
1290
  lines?: "one" | "two" | "three" | undefined;
1291
1291
  toggleIcon?: IconValue | undefined;
@@ -1419,12 +1419,12 @@ declare const VTreeviewItem: {
1419
1419
  minWidth?: string | number | undefined;
1420
1420
  elevation?: string | number | undefined;
1421
1421
  baseColor?: string | undefined;
1422
+ activeColor?: string | undefined;
1422
1423
  prependIcon?: IconValue | undefined;
1423
1424
  appendIcon?: IconValue | undefined;
1424
1425
  activeClass?: string | undefined;
1425
1426
  appendAvatar?: string | undefined;
1426
1427
  prependAvatar?: string | undefined;
1427
- activeColor?: string | undefined;
1428
1428
  subtitle?: string | number | undefined;
1429
1429
  lines?: "one" | "two" | "three" | undefined;
1430
1430
  toggleIcon?: IconValue | undefined;
@@ -1724,9 +1724,9 @@ declare const VTreeviewGroup: {
1724
1724
  value?: any;
1725
1725
  color?: string | undefined;
1726
1726
  baseColor?: string | undefined;
1727
+ activeColor?: string | undefined;
1727
1728
  prependIcon?: IconValue | undefined;
1728
1729
  appendIcon?: IconValue | undefined;
1729
- activeColor?: string | undefined;
1730
1730
  } & {
1731
1731
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
1732
1732
  default?: (() => vue.VNodeChild) | undefined;
@@ -1760,9 +1760,9 @@ declare const VTreeviewGroup: {
1760
1760
  value?: any;
1761
1761
  color?: string | undefined;
1762
1762
  baseColor?: string | undefined;
1763
+ activeColor?: string | undefined;
1763
1764
  prependIcon?: IconValue | undefined;
1764
1765
  appendIcon?: IconValue | undefined;
1765
- activeColor?: string | undefined;
1766
1766
  } & {
1767
1767
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
1768
1768
  default?: (() => vue.VNodeChild) | undefined;
@@ -1819,9 +1819,9 @@ declare const VTreeviewGroup: {
1819
1819
  value?: any;
1820
1820
  color?: string | undefined;
1821
1821
  baseColor?: string | undefined;
1822
+ activeColor?: string | undefined;
1822
1823
  prependIcon?: IconValue | undefined;
1823
1824
  appendIcon?: IconValue | undefined;
1824
- activeColor?: string | undefined;
1825
1825
  } & {
1826
1826
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
1827
1827
  default?: (() => vue.VNodeChild) | undefined;
@@ -1865,9 +1865,9 @@ declare const VTreeviewGroup: {
1865
1865
  value?: any;
1866
1866
  color?: string | undefined;
1867
1867
  baseColor?: string | undefined;
1868
+ activeColor?: string | undefined;
1868
1869
  prependIcon?: IconValue | undefined;
1869
1870
  appendIcon?: IconValue | undefined;
1870
- activeColor?: string | undefined;
1871
1871
  } & {
1872
1872
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
1873
1873
  default?: (() => vue.VNodeChild) | undefined;
@@ -1919,9 +1919,9 @@ declare const VTreeviewGroup: {
1919
1919
  default: string;
1920
1920
  };
1921
1921
  baseColor: StringConstructor;
1922
+ activeColor: StringConstructor;
1922
1923
  prependIcon: vue.PropType<IconValue>;
1923
1924
  appendIcon: vue.PropType<IconValue>;
1924
- activeColor: StringConstructor;
1925
1925
  collapseIcon: Omit<{
1926
1926
  type: vue.PropType<IconValue>;
1927
1927
  default: string;
@@ -1951,9 +1951,9 @@ declare const VTreeviewGroup: {
1951
1951
  default: string;
1952
1952
  };
1953
1953
  baseColor: StringConstructor;
1954
+ activeColor: StringConstructor;
1954
1955
  prependIcon: vue.PropType<IconValue>;
1955
1956
  appendIcon: vue.PropType<IconValue>;
1956
- activeColor: StringConstructor;
1957
1957
  collapseIcon: Omit<{
1958
1958
  type: vue.PropType<IconValue>;
1959
1959
  default: string;
@@ -7797,10 +7797,10 @@ declare const VTreeview: {
7797
7797
  baseColor?: string | undefined;
7798
7798
  selected?: readonly unknown[] | undefined;
7799
7799
  bgColor?: string | undefined;
7800
+ activeColor?: string | undefined;
7800
7801
  activeClass?: string | undefined;
7801
7802
  opened?: readonly unknown[] | undefined;
7802
7803
  activeStrategy?: SelectStrategy | undefined;
7803
- activeColor?: string | undefined;
7804
7804
  customFilter?: FilterFunction | undefined;
7805
7805
  customKeyFilter?: FilterKeyFunctions | undefined;
7806
7806
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -7880,10 +7880,10 @@ declare const VTreeview: {
7880
7880
  baseColor?: string | undefined;
7881
7881
  selected?: readonly unknown[] | undefined;
7882
7882
  bgColor?: string | undefined;
7883
+ activeColor?: string | undefined;
7883
7884
  activeClass?: string | undefined;
7884
7885
  opened?: readonly unknown[] | undefined;
7885
7886
  activeStrategy?: SelectStrategy | undefined;
7886
- activeColor?: string | undefined;
7887
7887
  customFilter?: FilterFunction | undefined;
7888
7888
  customKeyFilter?: FilterKeyFunctions | undefined;
7889
7889
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -8053,10 +8053,10 @@ declare const VTreeview: {
8053
8053
  baseColor?: string | undefined;
8054
8054
  selected?: readonly unknown[] | undefined;
8055
8055
  bgColor?: string | undefined;
8056
+ activeColor?: string | undefined;
8056
8057
  activeClass?: string | undefined;
8057
8058
  opened?: readonly unknown[] | undefined;
8058
8059
  activeStrategy?: SelectStrategy | undefined;
8059
- activeColor?: string | undefined;
8060
8060
  customFilter?: FilterFunction | undefined;
8061
8061
  customKeyFilter?: FilterKeyFunctions | undefined;
8062
8062
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -8155,10 +8155,10 @@ declare const VTreeview: {
8155
8155
  baseColor?: string | undefined;
8156
8156
  selected?: readonly unknown[] | undefined;
8157
8157
  bgColor?: string | undefined;
8158
+ activeColor?: string | undefined;
8158
8159
  activeClass?: string | undefined;
8159
8160
  opened?: readonly unknown[] | undefined;
8160
8161
  activeStrategy?: SelectStrategy | undefined;
8161
- activeColor?: string | undefined;
8162
8162
  customFilter?: FilterFunction | undefined;
8163
8163
  customKeyFilter?: FilterKeyFunctions | undefined;
8164
8164
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -8346,6 +8346,7 @@ declare const VTreeview: {
8346
8346
  baseColor: StringConstructor;
8347
8347
  selected: vue.PropType<readonly unknown[]>;
8348
8348
  bgColor: StringConstructor;
8349
+ activeColor: StringConstructor;
8349
8350
  slim: {
8350
8351
  type: vue.PropType<boolean>;
8351
8352
  default: boolean;
@@ -8373,7 +8374,6 @@ declare const VTreeview: {
8373
8374
  type: vue.PropType<NonNullable<NonNullable<OpenStrategyProp>>>;
8374
8375
  default: NonNullable<NonNullable<OpenStrategyProp>>;
8375
8376
  };
8376
- activeColor: StringConstructor;
8377
8377
  collapseIcon: {
8378
8378
  type: vue.PropType<string>;
8379
8379
  default: string;
@@ -8476,6 +8476,7 @@ declare const VTreeview: {
8476
8476
  baseColor: StringConstructor;
8477
8477
  selected: vue.PropType<readonly unknown[]>;
8478
8478
  bgColor: StringConstructor;
8479
+ activeColor: StringConstructor;
8479
8480
  slim: {
8480
8481
  type: vue.PropType<boolean>;
8481
8482
  default: boolean;
@@ -8503,7 +8504,6 @@ declare const VTreeview: {
8503
8504
  type: vue.PropType<NonNullable<NonNullable<OpenStrategyProp>>>;
8504
8505
  default: NonNullable<NonNullable<OpenStrategyProp>>;
8505
8506
  };
8506
- activeColor: StringConstructor;
8507
8507
  collapseIcon: {
8508
8508
  type: vue.PropType<string>;
8509
8509
  default: string;
@@ -8596,12 +8596,12 @@ declare const VTreeviewItem: {
8596
8596
  minWidth?: string | number | undefined;
8597
8597
  elevation?: string | number | undefined;
8598
8598
  baseColor?: string | undefined;
8599
+ activeColor?: string | undefined;
8599
8600
  prependIcon?: IconValue | undefined;
8600
8601
  appendIcon?: IconValue | undefined;
8601
8602
  activeClass?: string | undefined;
8602
8603
  appendAvatar?: string | undefined;
8603
8604
  prependAvatar?: string | undefined;
8604
- activeColor?: string | undefined;
8605
8605
  subtitle?: string | number | undefined;
8606
8606
  lines?: "one" | "two" | "three" | undefined;
8607
8607
  toggleIcon?: IconValue | undefined;
@@ -8713,12 +8713,12 @@ declare const VTreeviewItem: {
8713
8713
  minWidth?: string | number | undefined;
8714
8714
  elevation?: string | number | undefined;
8715
8715
  baseColor?: string | undefined;
8716
+ activeColor?: string | undefined;
8716
8717
  prependIcon?: IconValue | undefined;
8717
8718
  appendIcon?: IconValue | undefined;
8718
8719
  activeClass?: string | undefined;
8719
8720
  appendAvatar?: string | undefined;
8720
8721
  prependAvatar?: string | undefined;
8721
- activeColor?: string | undefined;
8722
8722
  subtitle?: string | number | undefined;
8723
8723
  lines?: "one" | "two" | "three" | undefined;
8724
8724
  toggleIcon?: IconValue | undefined;
@@ -8886,12 +8886,12 @@ declare const VTreeviewItem: {
8886
8886
  minWidth?: string | number | undefined;
8887
8887
  elevation?: string | number | undefined;
8888
8888
  baseColor?: string | undefined;
8889
+ activeColor?: string | undefined;
8889
8890
  prependIcon?: IconValue | undefined;
8890
8891
  appendIcon?: IconValue | undefined;
8891
8892
  activeClass?: string | undefined;
8892
8893
  appendAvatar?: string | undefined;
8893
8894
  prependAvatar?: string | undefined;
8894
- activeColor?: string | undefined;
8895
8895
  subtitle?: string | number | undefined;
8896
8896
  lines?: "one" | "two" | "three" | undefined;
8897
8897
  toggleIcon?: IconValue | undefined;
@@ -9025,12 +9025,12 @@ declare const VTreeviewItem: {
9025
9025
  minWidth?: string | number | undefined;
9026
9026
  elevation?: string | number | undefined;
9027
9027
  baseColor?: string | undefined;
9028
+ activeColor?: string | undefined;
9028
9029
  prependIcon?: IconValue | undefined;
9029
9030
  appendIcon?: IconValue | undefined;
9030
9031
  activeClass?: string | undefined;
9031
9032
  appendAvatar?: string | undefined;
9032
9033
  prependAvatar?: string | undefined;
9033
- activeColor?: string | undefined;
9034
9034
  subtitle?: string | number | undefined;
9035
9035
  lines?: "one" | "two" | "three" | undefined;
9036
9036
  toggleIcon?: IconValue | undefined;
@@ -9330,9 +9330,9 @@ declare const VTreeviewGroup: {
9330
9330
  value?: any;
9331
9331
  color?: string | undefined;
9332
9332
  baseColor?: string | undefined;
9333
+ activeColor?: string | undefined;
9333
9334
  prependIcon?: IconValue | undefined;
9334
9335
  appendIcon?: IconValue | undefined;
9335
- activeColor?: string | undefined;
9336
9336
  } & {
9337
9337
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
9338
9338
  default?: (() => vue.VNodeChild) | undefined;
@@ -9366,9 +9366,9 @@ declare const VTreeviewGroup: {
9366
9366
  value?: any;
9367
9367
  color?: string | undefined;
9368
9368
  baseColor?: string | undefined;
9369
+ activeColor?: string | undefined;
9369
9370
  prependIcon?: IconValue | undefined;
9370
9371
  appendIcon?: IconValue | undefined;
9371
- activeColor?: string | undefined;
9372
9372
  } & {
9373
9373
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
9374
9374
  default?: (() => vue.VNodeChild) | undefined;
@@ -9425,9 +9425,9 @@ declare const VTreeviewGroup: {
9425
9425
  value?: any;
9426
9426
  color?: string | undefined;
9427
9427
  baseColor?: string | undefined;
9428
+ activeColor?: string | undefined;
9428
9429
  prependIcon?: IconValue | undefined;
9429
9430
  appendIcon?: IconValue | undefined;
9430
- activeColor?: string | undefined;
9431
9431
  } & {
9432
9432
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
9433
9433
  default?: (() => vue.VNodeChild) | undefined;
@@ -9471,9 +9471,9 @@ declare const VTreeviewGroup: {
9471
9471
  value?: any;
9472
9472
  color?: string | undefined;
9473
9473
  baseColor?: string | undefined;
9474
+ activeColor?: string | undefined;
9474
9475
  prependIcon?: IconValue | undefined;
9475
9476
  appendIcon?: IconValue | undefined;
9476
- activeColor?: string | undefined;
9477
9477
  } & {
9478
9478
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
9479
9479
  default?: (() => vue.VNodeChild) | undefined;
@@ -9525,9 +9525,9 @@ declare const VTreeviewGroup: {
9525
9525
  default: string;
9526
9526
  };
9527
9527
  baseColor: StringConstructor;
9528
+ activeColor: StringConstructor;
9528
9529
  prependIcon: vue.PropType<IconValue>;
9529
9530
  appendIcon: vue.PropType<IconValue>;
9530
- activeColor: StringConstructor;
9531
9531
  collapseIcon: Omit<{
9532
9532
  type: vue.PropType<IconValue>;
9533
9533
  default: string;
@@ -9557,9 +9557,9 @@ declare const VTreeviewGroup: {
9557
9557
  default: string;
9558
9558
  };
9559
9559
  baseColor: StringConstructor;
9560
+ activeColor: StringConstructor;
9560
9561
  prependIcon: vue.PropType<IconValue>;
9561
9562
  appendIcon: vue.PropType<IconValue>;
9562
- activeColor: StringConstructor;
9563
9563
  collapseIcon: Omit<{
9564
9564
  type: vue.PropType<IconValue>;
9565
9565
  default: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.6.3-dev.2024-05-03",
4
+ "version": "3.6.3-dev.2024-05-14",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"