@vuetify/nightly 3.6.7-master.2024-05-27 → 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.
- package/CHANGELOG.md +8 -2
- package/dist/json/attributes.json +39 -7
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +146 -146
- package/dist/json/tags.json +8 -0
- package/dist/json/web-types.json +84 -12
- package/dist/vuetify-labs.css +2617 -2614
- package/dist/vuetify-labs.d.ts +78 -18
- package/dist/vuetify-labs.esm.js +27 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +27 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +723 -720
- package/dist/vuetify.d.ts +85 -55
- package/dist/vuetify.esm.js +21 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +21 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDivider/VDivider.mjs +1 -1
- package/lib/components/VDivider/VDivider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.css +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +1 -1
- package/lib/components/VStepper/VStepper.mjs +18 -4
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.css +3 -0
- package/lib/components/VStepper/VStepperItem.sass +3 -0
- package/lib/components/VStepper/index.d.mts +43 -9
- package/lib/components/index.d.mts +39 -9
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- package/lib/labs/VNumberInput/VNumberInput.mjs +7 -0
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VStepperVertical/index.d.mts +43 -9
- package/lib/labs/components.d.mts +3752 -3718
- 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,48 +73589,39 @@ declare module '@vue/runtime-core' {
|
|
73559
73589
|
}
|
73560
73590
|
|
73561
73591
|
export interface GlobalComponents {
|
73562
|
-
VApp: typeof import('vuetify/components')['VApp']
|
73563
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
73564
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
73565
73592
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
73566
73593
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
73567
73594
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
73595
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
73596
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
73597
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73598
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73568
73599
|
VBanner: typeof import('vuetify/components')['VBanner']
|
73569
73600
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
73570
73601
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
73571
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73572
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73573
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73574
73602
|
VBadge: typeof import('vuetify/components')['VBadge']
|
73575
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73576
73603
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
73577
73604
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
73578
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']
|
73579
73609
|
VBtn: typeof import('vuetify/components')['VBtn']
|
73610
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73580
73611
|
VCard: typeof import('vuetify/components')['VCard']
|
73581
73612
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
73582
73613
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
73583
73614
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
73584
73615
|
VCardText: typeof import('vuetify/components')['VCardText']
|
73585
73616
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
73586
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
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
73620
|
VCode: typeof import('vuetify/components')['VCode']
|
73594
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73595
73621
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73596
|
-
|
73597
|
-
|
73598
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
73599
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
73600
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
73601
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
73622
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73623
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73602
73624
|
VCounter: typeof import('vuetify/components')['VCounter']
|
73603
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
73604
73625
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73605
73626
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
73606
73627
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
@@ -73609,29 +73630,33 @@ declare module '@vue/runtime-core' {
|
|
73609
73630
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
73610
73631
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
73611
73632
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
73633
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
73634
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
73635
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
73636
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
73637
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
73638
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
73612
73639
|
VDivider: typeof import('vuetify/components')['VDivider']
|
73640
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73641
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73642
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
73643
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
73613
73644
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
73614
73645
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
73615
73646
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
73616
73647
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
73617
73648
|
VField: typeof import('vuetify/components')['VField']
|
73618
73649
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73619
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73620
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
73621
|
-
VFab: typeof import('vuetify/components')['VFab']
|
73622
73650
|
VFooter: typeof import('vuetify/components')['VFooter']
|
73623
|
-
|
73624
|
-
VInput: typeof import('vuetify/components')['VInput']
|
73625
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73651
|
+
VFab: typeof import('vuetify/components')['VFab']
|
73626
73652
|
VIcon: typeof import('vuetify/components')['VIcon']
|
73627
73653
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
73628
73654
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
73629
73655
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
73630
73656
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
73631
|
-
|
73632
|
-
|
73633
|
-
|
73634
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
73657
|
+
VInput: typeof import('vuetify/components')['VInput']
|
73658
|
+
VImg: typeof import('vuetify/components')['VImg']
|
73659
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73635
73660
|
VList: typeof import('vuetify/components')['VList']
|
73636
73661
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
73637
73662
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -73641,27 +73666,32 @@ declare module '@vue/runtime-core' {
|
|
73641
73666
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
73642
73667
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
73643
73668
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
73644
|
-
|
73645
|
-
|
73669
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
73670
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
73671
|
+
VItem: typeof import('vuetify/components')['VItem']
|
73672
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
73646
73673
|
VMessages: typeof import('vuetify/components')['VMessages']
|
73647
|
-
|
73674
|
+
VMain: typeof import('vuetify/components')['VMain']
|
73675
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
73648
73676
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
73649
73677
|
VPagination: typeof import('vuetify/components')['VPagination']
|
73650
73678
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73679
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
73651
73680
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
73652
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
73653
73681
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
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
73685
|
VSheet: typeof import('vuetify/components')['VSheet']
|
73686
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73658
73687
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
73659
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
73660
73688
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
73661
73689
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
73662
73690
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
73663
73691
|
VSlider: typeof import('vuetify/components')['VSlider']
|
73692
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
73664
73693
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73694
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73665
73695
|
VTab: typeof import('vuetify/components')['VTab']
|
73666
73696
|
VTabs: typeof import('vuetify/components')['VTabs']
|
73667
73697
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
@@ -73672,18 +73702,18 @@ declare module '@vue/runtime-core' {
|
|
73672
73702
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
73673
73703
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
73674
73704
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
73675
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
73676
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73677
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73678
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73679
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
73680
|
-
VTable: typeof import('vuetify/components')['VTable']
|
73681
73705
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
73682
73706
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
73683
73707
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
73708
|
+
VTable: typeof import('vuetify/components')['VTable']
|
73709
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
73710
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73711
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73712
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
73684
73713
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73685
73714
|
VWindow: typeof import('vuetify/components')['VWindow']
|
73686
73715
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
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']
|
@@ -73693,17 +73723,17 @@ declare module '@vue/runtime-core' {
|
|
73693
73723
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
73694
73724
|
VForm: typeof import('vuetify/components')['VForm']
|
73695
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']
|
73702
73732
|
VRadio: typeof import('vuetify/components')['VRadio']
|
73703
73733
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
73704
73734
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
73705
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
73706
73735
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73736
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
73707
73737
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
73708
73738
|
VValidation: typeof import('vuetify/components')['VValidation']
|
73709
73739
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
@@ -73730,14 +73760,14 @@ declare module '@vue/runtime-core' {
|
|
73730
73760
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
73731
73761
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
73732
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']
|
73733
73766
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
73734
73767
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
73735
73768
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
73736
73769
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73737
73770
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73738
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
73739
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
73740
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
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']
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.7-master.2024-05-
|
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 ? '
|
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':
|
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-
|
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-
|
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 };
|