@vuetify/nightly 3.6.7-master.2024-05-28 → 3.6.7-master.2024-05-29

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 (37) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/attributes.json +39 -7
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +132 -132
  5. package/dist/json/tags.json +8 -0
  6. package/dist/json/web-types.json +82 -10
  7. package/dist/vuetify-labs.css +1493 -1490
  8. package/dist/vuetify-labs.d.ts +78 -18
  9. package/dist/vuetify-labs.esm.js +21 -8
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +21 -8
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +847 -844
  14. package/dist/vuetify.d.ts +86 -56
  15. package/dist/vuetify.esm.js +21 -8
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +21 -8
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +9 -9
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VDivider/VDivider.mjs +1 -1
  23. package/lib/components/VDivider/VDivider.mjs.map +1 -1
  24. package/lib/components/VSnackbar/VSnackbar.css +1 -1
  25. package/lib/components/VSnackbar/VSnackbar.sass +1 -1
  26. package/lib/components/VStepper/VStepper.mjs +18 -4
  27. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  28. package/lib/components/VStepper/VStepperItem.css +3 -0
  29. package/lib/components/VStepper/VStepperItem.sass +3 -0
  30. package/lib/components/VStepper/index.d.mts +43 -9
  31. package/lib/components/index.d.mts +39 -9
  32. package/lib/entry-bundler.mjs +1 -1
  33. package/lib/framework.mjs +1 -1
  34. package/lib/index.d.mts +47 -47
  35. package/lib/labs/VStepperVertical/index.d.mts +43 -9
  36. package/lib/labs/components.d.mts +3752 -3718
  37. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -58534,7 +58534,7 @@ declare const VStepper: {
58534
58534
  style: vue.StyleValue;
58535
58535
  disabled: boolean;
58536
58536
  tag: string;
58537
- mobile: boolean;
58537
+ mobile: boolean | null;
58538
58538
  items: readonly StepperItem[];
58539
58539
  mandatory: NonNullable<boolean | "force">;
58540
58540
  multiple: boolean;
@@ -58554,6 +58554,7 @@ declare const VStepper: {
58554
58554
  height?: string | number | undefined;
58555
58555
  theme?: string | undefined;
58556
58556
  color?: string | undefined;
58557
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
58557
58558
  border?: string | number | boolean | undefined;
58558
58559
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
58559
58560
  modelValue?: any;
@@ -58566,6 +58567,9 @@ declare const VStepper: {
58566
58567
  location?: Anchor | undefined;
58567
58568
  max?: number | undefined;
58568
58569
  bgColor?: string | undefined;
58570
+ completeIcon?: string | undefined;
58571
+ editIcon?: string | undefined;
58572
+ errorIcon?: string | undefined;
58569
58573
  } & {
58570
58574
  $children?: vue.VNodeChild | {
58571
58575
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -58620,7 +58624,7 @@ declare const VStepper: {
58620
58624
  style: vue.StyleValue;
58621
58625
  disabled: boolean;
58622
58626
  tag: string;
58623
- mobile: boolean;
58627
+ mobile: boolean | null;
58624
58628
  items: readonly StepperItem[];
58625
58629
  mandatory: NonNullable<boolean | "force">;
58626
58630
  multiple: boolean;
@@ -58640,6 +58644,7 @@ declare const VStepper: {
58640
58644
  height?: string | number | undefined;
58641
58645
  theme?: string | undefined;
58642
58646
  color?: string | undefined;
58647
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
58643
58648
  border?: string | number | boolean | undefined;
58644
58649
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
58645
58650
  modelValue?: any;
@@ -58652,6 +58657,9 @@ declare const VStepper: {
58652
58657
  location?: Anchor | undefined;
58653
58658
  max?: number | undefined;
58654
58659
  bgColor?: string | undefined;
58660
+ completeIcon?: string | undefined;
58661
+ editIcon?: string | undefined;
58662
+ errorIcon?: string | undefined;
58655
58663
  } & {
58656
58664
  $children?: vue.VNodeChild | {
58657
58665
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -58701,7 +58709,7 @@ declare const VStepper: {
58701
58709
  style: vue.StyleValue;
58702
58710
  disabled: boolean;
58703
58711
  tag: string;
58704
- mobile: boolean;
58712
+ mobile: boolean | null;
58705
58713
  modelValue: any;
58706
58714
  rounded: string | number | boolean;
58707
58715
  items: readonly StepperItem[];
@@ -58766,7 +58774,7 @@ declare const VStepper: {
58766
58774
  style: vue.StyleValue;
58767
58775
  disabled: boolean;
58768
58776
  tag: string;
58769
- mobile: boolean;
58777
+ mobile: boolean | null;
58770
58778
  items: readonly StepperItem[];
58771
58779
  mandatory: NonNullable<boolean | "force">;
58772
58780
  multiple: boolean;
@@ -58786,6 +58794,7 @@ declare const VStepper: {
58786
58794
  height?: string | number | undefined;
58787
58795
  theme?: string | undefined;
58788
58796
  color?: string | undefined;
58797
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
58789
58798
  border?: string | number | boolean | undefined;
58790
58799
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
58791
58800
  modelValue?: any;
@@ -58798,6 +58807,9 @@ declare const VStepper: {
58798
58807
  location?: Anchor | undefined;
58799
58808
  max?: number | undefined;
58800
58809
  bgColor?: string | undefined;
58810
+ completeIcon?: string | undefined;
58811
+ editIcon?: string | undefined;
58812
+ errorIcon?: string | undefined;
58801
58813
  } & {
58802
58814
  $children?: vue.VNodeChild | {
58803
58815
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -58850,7 +58862,7 @@ declare const VStepper: {
58850
58862
  style: vue.StyleValue;
58851
58863
  disabled: boolean;
58852
58864
  tag: string;
58853
- mobile: boolean;
58865
+ mobile: boolean | null;
58854
58866
  modelValue: any;
58855
58867
  rounded: string | number | boolean;
58856
58868
  items: readonly StepperItem[];
@@ -58875,7 +58887,7 @@ declare const VStepper: {
58875
58887
  style: vue.StyleValue;
58876
58888
  disabled: boolean;
58877
58889
  tag: string;
58878
- mobile: boolean;
58890
+ mobile: boolean | null;
58879
58891
  items: readonly StepperItem[];
58880
58892
  mandatory: NonNullable<boolean | "force">;
58881
58893
  multiple: boolean;
@@ -58895,6 +58907,7 @@ declare const VStepper: {
58895
58907
  height?: string | number | undefined;
58896
58908
  theme?: string | undefined;
58897
58909
  color?: string | undefined;
58910
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
58898
58911
  border?: string | number | boolean | undefined;
58899
58912
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
58900
58913
  modelValue?: any;
@@ -58907,6 +58920,9 @@ declare const VStepper: {
58907
58920
  location?: Anchor | undefined;
58908
58921
  max?: number | undefined;
58909
58922
  bgColor?: string | undefined;
58923
+ completeIcon?: string | undefined;
58924
+ editIcon?: string | undefined;
58925
+ errorIcon?: string | undefined;
58910
58926
  } & {
58911
58927
  $children?: vue.VNodeChild | {
58912
58928
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -58961,7 +58977,7 @@ declare const VStepper: {
58961
58977
  style: vue.StyleValue;
58962
58978
  disabled: boolean;
58963
58979
  tag: string;
58964
- mobile: boolean;
58980
+ mobile: boolean | null;
58965
58981
  modelValue: any;
58966
58982
  rounded: string | number | boolean;
58967
58983
  items: readonly StepperItem[];
@@ -59070,9 +59086,17 @@ declare const VStepper: {
59070
59086
  default: string;
59071
59087
  };
59072
59088
  disabled: BooleanConstructor;
59089
+ mobile: {
59090
+ type: PropType<boolean | null>;
59091
+ default: boolean;
59092
+ };
59093
+ mobileBreakpoint: PropType<number | DisplayBreakpoint>;
59073
59094
  altLabels: BooleanConstructor;
59074
59095
  bgColor: StringConstructor;
59096
+ completeIcon: StringConstructor;
59097
+ editIcon: StringConstructor;
59075
59098
  editable: BooleanConstructor;
59099
+ errorIcon: StringConstructor;
59076
59100
  hideActions: BooleanConstructor;
59077
59101
  items: {
59078
59102
  type: PropType<readonly StepperItem[]>;
@@ -59086,7 +59110,6 @@ declare const VStepper: {
59086
59110
  type: StringConstructor;
59087
59111
  default: string;
59088
59112
  };
59089
- mobile: BooleanConstructor;
59090
59113
  nonLinear: BooleanConstructor;
59091
59114
  flat: BooleanConstructor;
59092
59115
  }, vue.ExtractPropTypes<{
@@ -59145,9 +59168,17 @@ declare const VStepper: {
59145
59168
  default: string;
59146
59169
  };
59147
59170
  disabled: BooleanConstructor;
59171
+ mobile: {
59172
+ type: PropType<boolean | null>;
59173
+ default: boolean;
59174
+ };
59175
+ mobileBreakpoint: PropType<number | DisplayBreakpoint>;
59148
59176
  altLabels: BooleanConstructor;
59149
59177
  bgColor: StringConstructor;
59178
+ completeIcon: StringConstructor;
59179
+ editIcon: StringConstructor;
59150
59180
  editable: BooleanConstructor;
59181
+ errorIcon: StringConstructor;
59151
59182
  hideActions: BooleanConstructor;
59152
59183
  items: {
59153
59184
  type: PropType<readonly StepperItem[]>;
@@ -59161,7 +59192,6 @@ declare const VStepper: {
59161
59192
  type: StringConstructor;
59162
59193
  default: string;
59163
59194
  };
59164
- mobile: BooleanConstructor;
59165
59195
  nonLinear: BooleanConstructor;
59166
59196
  flat: BooleanConstructor;
59167
59197
  }>>;
@@ -73559,42 +73589,40 @@ declare module '@vue/runtime-core' {
73559
73589
  }
73560
73590
 
73561
73591
  export interface GlobalComponents {
73562
- VAlert: typeof import('vuetify/components')['VAlert']
73563
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73564
73592
  VAppBar: typeof import('vuetify/components')['VAppBar']
73565
73593
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
73566
73594
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
73567
- VApp: typeof import('vuetify/components')['VApp']
73568
- VBadge: typeof import('vuetify/components')['VBadge']
73569
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
73595
+ VAlert: typeof import('vuetify/components')['VAlert']
73596
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73570
73597
  VAvatar: typeof import('vuetify/components')['VAvatar']
73598
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
73571
73599
  VBanner: typeof import('vuetify/components')['VBanner']
73572
73600
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
73573
73601
  VBannerText: typeof import('vuetify/components')['VBannerText']
73574
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
73575
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
73576
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
73602
+ VBadge: typeof import('vuetify/components')['VBadge']
73577
73603
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
73578
73604
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
73579
73605
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
73606
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
73607
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73608
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
73580
73609
  VBtn: typeof import('vuetify/components')['VBtn']
73610
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
73581
73611
  VCard: typeof import('vuetify/components')['VCard']
73582
73612
  VCardActions: typeof import('vuetify/components')['VCardActions']
73583
73613
  VCardItem: typeof import('vuetify/components')['VCardItem']
73584
73614
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
73585
73615
  VCardText: typeof import('vuetify/components')['VCardText']
73586
73616
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
73587
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73588
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
73589
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
73590
73617
  VCarousel: typeof import('vuetify/components')['VCarousel']
73591
73618
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
73592
73619
  VChip: typeof import('vuetify/components')['VChip']
73593
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
73594
- VCombobox: typeof import('vuetify/components')['VCombobox']
73595
73620
  VCode: typeof import('vuetify/components')['VCode']
73596
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
73621
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
73622
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
73623
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
73597
73624
  VCounter: typeof import('vuetify/components')['VCounter']
73625
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
73598
73626
  VDataTable: typeof import('vuetify/components')['VDataTable']
73599
73627
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
73600
73628
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -73609,28 +73637,26 @@ declare module '@vue/runtime-core' {
73609
73637
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
73610
73638
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
73611
73639
  VDivider: typeof import('vuetify/components')['VDivider']
73612
- VDialog: typeof import('vuetify/components')['VDialog']
73613
- VFooter: typeof import('vuetify/components')['VFooter']
73640
+ VCombobox: typeof import('vuetify/components')['VCombobox']
73614
73641
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
73642
+ VDialog: typeof import('vuetify/components')['VDialog']
73643
+ VFileInput: typeof import('vuetify/components')['VFileInput']
73615
73644
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
73616
73645
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
73617
73646
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
73618
73647
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
73619
- VFileInput: typeof import('vuetify/components')['VFileInput']
73620
73648
  VField: typeof import('vuetify/components')['VField']
73621
73649
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
73650
+ VFooter: typeof import('vuetify/components')['VFooter']
73622
73651
  VFab: typeof import('vuetify/components')['VFab']
73623
- VImg: typeof import('vuetify/components')['VImg']
73624
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
73625
73652
  VIcon: typeof import('vuetify/components')['VIcon']
73626
73653
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
73627
73654
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
73628
73655
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
73629
73656
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
73630
73657
  VInput: typeof import('vuetify/components')['VInput']
73631
- VItemGroup: typeof import('vuetify/components')['VItemGroup']
73632
- VItem: typeof import('vuetify/components')['VItem']
73633
- VLabel: typeof import('vuetify/components')['VLabel']
73658
+ VImg: typeof import('vuetify/components')['VImg']
73659
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
73634
73660
  VList: typeof import('vuetify/components')['VList']
73635
73661
  VListGroup: typeof import('vuetify/components')['VListGroup']
73636
73662
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -73640,62 +73666,66 @@ declare module '@vue/runtime-core' {
73640
73666
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
73641
73667
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
73642
73668
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
73669
+ VLabel: typeof import('vuetify/components')['VLabel']
73670
+ VItemGroup: typeof import('vuetify/components')['VItemGroup']
73671
+ VItem: typeof import('vuetify/components')['VItem']
73643
73672
  VKbd: typeof import('vuetify/components')['VKbd']
73644
73673
  VMessages: typeof import('vuetify/components')['VMessages']
73645
73674
  VMain: typeof import('vuetify/components')['VMain']
73646
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
73647
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
73648
- VOverlay: typeof import('vuetify/components')['VOverlay']
73649
73675
  VMenu: typeof import('vuetify/components')['VMenu']
73676
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
73650
73677
  VPagination: typeof import('vuetify/components')['VPagination']
73678
+ VOverlay: typeof import('vuetify/components')['VOverlay']
73679
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
73651
73680
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
73652
73681
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
73653
73682
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
73654
73683
  VRating: typeof import('vuetify/components')['VRating']
73655
73684
  VSelect: typeof import('vuetify/components')['VSelect']
73656
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
73657
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73658
73685
  VSheet: typeof import('vuetify/components')['VSheet']
73659
- VSlider: typeof import('vuetify/components')['VSlider']
73686
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
73660
73687
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
73688
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73661
73689
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
73662
73690
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
73691
+ VSlider: typeof import('vuetify/components')['VSlider']
73663
73692
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
73664
- VSwitch: typeof import('vuetify/components')['VSwitch']
73665
73693
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
73694
+ VSwitch: typeof import('vuetify/components')['VSwitch']
73695
+ VTab: typeof import('vuetify/components')['VTab']
73696
+ VTabs: typeof import('vuetify/components')['VTabs']
73697
+ VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
73698
+ VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
73666
73699
  VStepper: typeof import('vuetify/components')['VStepper']
73667
73700
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
73668
73701
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
73669
73702
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
73670
73703
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
73671
73704
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
73672
- VTab: typeof import('vuetify/components')['VTab']
73673
- VTabs: typeof import('vuetify/components')['VTabs']
73674
- VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
73675
- VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
73705
+ VToolbar: typeof import('vuetify/components')['VToolbar']
73706
+ VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
73707
+ VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
73676
73708
  VTable: typeof import('vuetify/components')['VTable']
73677
- VTextarea: typeof import('vuetify/components')['VTextarea']
73709
+ VTextField: typeof import('vuetify/components')['VTextField']
73678
73710
  VTimeline: typeof import('vuetify/components')['VTimeline']
73679
73711
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
73680
- VTextField: typeof import('vuetify/components')['VTextField']
73712
+ VTextarea: typeof import('vuetify/components')['VTextarea']
73681
73713
  VTooltip: typeof import('vuetify/components')['VTooltip']
73682
73714
  VWindow: typeof import('vuetify/components')['VWindow']
73683
73715
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
73684
- VToolbar: typeof import('vuetify/components')['VToolbar']
73685
- VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
73686
- VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
73716
+ VApp: typeof import('vuetify/components')['VApp']
73687
73717
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
73688
73718
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
73689
73719
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
73690
- VForm: typeof import('vuetify/components')['VForm']
73691
- VHover: typeof import('vuetify/components')['VHover']
73692
73720
  VContainer: typeof import('vuetify/components')['VContainer']
73693
73721
  VCol: typeof import('vuetify/components')['VCol']
73694
73722
  VRow: typeof import('vuetify/components')['VRow']
73695
73723
  VSpacer: typeof import('vuetify/components')['VSpacer']
73724
+ VForm: typeof import('vuetify/components')['VForm']
73725
+ VHover: typeof import('vuetify/components')['VHover']
73726
+ VLazy: typeof import('vuetify/components')['VLazy']
73696
73727
  VLayout: typeof import('vuetify/components')['VLayout']
73697
73728
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
73698
- VLazy: typeof import('vuetify/components')['VLazy']
73699
73729
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
73700
73730
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
73701
73731
  VParallax: typeof import('vuetify/components')['VParallax']
@@ -73705,8 +73735,8 @@ declare module '@vue/runtime-core' {
73705
73735
  VSparkline: typeof import('vuetify/components')['VSparkline']
73706
73736
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
73707
73737
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
73708
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
73709
73738
  VValidation: typeof import('vuetify/components')['VValidation']
73739
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
73710
73740
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
73711
73741
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
73712
73742
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -73729,20 +73759,20 @@ declare module '@vue/runtime-core' {
73729
73759
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
73730
73760
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
73731
73761
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
73762
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73763
+ VTreeview: typeof import('vuetify/labs/components')['VTreeview']
73764
+ VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
73765
+ VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
73732
73766
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
73733
73767
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
73734
73768
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
73735
73769
  VPicker: typeof import('vuetify/labs/components')['VPicker']
73736
73770
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
73737
- VTreeview: typeof import('vuetify/labs/components')['VTreeview']
73738
- VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
73739
- VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
73740
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73741
73771
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
73742
73772
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
73743
73773
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
73744
73774
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
73745
- VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
73746
73775
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
73776
+ VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
73747
73777
  }
73748
73778
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.7-master.2024-05-28
2
+ * Vuetify v3.6.7-master.2024-05-29
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -9343,7 +9343,7 @@ const VDivider = genericComponent()({
9343
9343
  const dividerStyles = computed(() => {
9344
9344
  const styles = {};
9345
9345
  if (props.length) {
9346
- styles[props.vertical ? 'maxHeight' : 'maxWidth'] = convertToUnit(props.length);
9346
+ styles[props.vertical ? 'height' : 'width'] = convertToUnit(props.length);
9347
9347
  }
9348
9348
  if (props.thickness) {
9349
9349
  styles[props.vertical ? 'borderRightWidth' : 'borderTopWidth'] = convertToUnit(props.thickness);
@@ -26273,7 +26273,10 @@ const VStepperWindowItem = genericComponent()({
26273
26273
  const makeStepperProps = propsFactory({
26274
26274
  altLabels: Boolean,
26275
26275
  bgColor: String,
26276
+ completeIcon: String,
26277
+ editIcon: String,
26276
26278
  editable: Boolean,
26279
+ errorIcon: String,
26277
26280
  hideActions: Boolean,
26278
26281
  items: {
26279
26282
  type: Array,
@@ -26287,9 +26290,9 @@ const makeStepperProps = propsFactory({
26287
26290
  type: String,
26288
26291
  default: 'value'
26289
26292
  },
26290
- mobile: Boolean,
26291
26293
  nonLinear: Boolean,
26292
- flat: Boolean
26294
+ flat: Boolean,
26295
+ ...makeDisplayProps()
26293
26296
  }, 'Stepper');
26294
26297
  const makeVStepperProps = propsFactory({
26295
26298
  ...makeStepperProps(),
@@ -26317,6 +26320,13 @@ const VStepper = genericComponent()({
26317
26320
  selected
26318
26321
  } = useGroup(props, VStepperSymbol);
26319
26322
  const {
26323
+ displayClasses,
26324
+ mobile
26325
+ } = useDisplay(props);
26326
+ const {
26327
+ completeIcon,
26328
+ editIcon,
26329
+ errorIcon,
26320
26330
  color,
26321
26331
  editable,
26322
26332
  prevText,
@@ -26343,6 +26353,9 @@ const VStepper = genericComponent()({
26343
26353
  provideDefaults({
26344
26354
  VStepperItem: {
26345
26355
  editable,
26356
+ errorIcon,
26357
+ completeIcon,
26358
+ editIcon,
26346
26359
  prevText,
26347
26360
  nextText
26348
26361
  },
@@ -26364,8 +26377,8 @@ const VStepper = genericComponent()({
26364
26377
  'v-stepper--alt-labels': props.altLabels,
26365
26378
  'v-stepper--flat': props.flat,
26366
26379
  'v-stepper--non-linear': props.nonLinear,
26367
- 'v-stepper--mobile': props.mobile
26368
- }, props.class],
26380
+ 'v-stepper--mobile': mobile.value
26381
+ }, displayClasses.value, props.class],
26369
26382
  "style": props.style
26370
26383
  }), {
26371
26384
  default: () => [hasHeader && createVNode(VStepperHeader, {
@@ -28039,7 +28052,7 @@ function createVuetify$1() {
28039
28052
  goTo
28040
28053
  };
28041
28054
  }
28042
- const version$1 = "3.6.7-master.2024-05-28";
28055
+ const version$1 = "3.6.7-master.2024-05-29";
28043
28056
  createVuetify$1.version = version$1;
28044
28057
 
28045
28058
  // Vue's inject() can only be used in setup
@@ -28064,7 +28077,7 @@ const createVuetify = function () {
28064
28077
  ...options
28065
28078
  });
28066
28079
  };
28067
- const version = "3.6.7-master.2024-05-28";
28080
+ const version = "3.6.7-master.2024-05-29";
28068
28081
  createVuetify.version = version;
28069
28082
 
28070
28083
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };