@uzum-tech/ui 1.4.1 → 1.5.0
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/dist/index.js +65374 -64281
- package/dist/index.prod.js +3 -3
- package/es/_internal/icons/SiderUnionBorder.js +1 -1
- package/es/_internal/index.d.ts +2 -0
- package/es/_internal/index.js +1 -0
- package/es/_internal/typography/index.d.ts +2 -0
- package/es/_internal/typography/index.js +1 -0
- package/es/_internal/typography/src/styles/text.cssr.d.ts +2 -0
- package/es/_internal/typography/src/styles/text.cssr.js +78 -0
- package/es/_internal/typography/src/text.d.ts +246 -0
- package/es/_internal/typography/src/text.js +79 -0
- package/es/_internal/typography/src/variants.d.ts +13 -0
- package/es/_internal/typography/src/variants.js +132 -0
- package/es/_internal/typography/styles/dark.d.ts +3 -0
- package/es/_internal/typography/styles/dark.js +8 -0
- package/es/_internal/typography/styles/index.d.ts +3 -0
- package/es/_internal/typography/styles/index.js +2 -0
- package/es/_internal/typography/styles/light.d.ts +24 -0
- package/es/_internal/typography/styles/light.js +28 -0
- package/es/_styles/common/_common.d.ts +2 -0
- package/es/_styles/common/_common.js +3 -1
- package/es/_styles/common/light.d.ts +2 -0
- package/es/action-card/index.d.ts +4 -0
- package/es/action-card/index.js +2 -0
- package/es/action-card/src/ActionCard.d.ts +313 -0
- package/es/action-card/src/ActionCard.js +101 -0
- package/es/action-card/src/styles/index.cssr.d.ts +2 -0
- package/es/action-card/src/styles/index.cssr.js +113 -0
- package/es/action-card/styles/dark.d.ts +3 -0
- package/es/action-card/styles/dark.js +11 -0
- package/es/action-card/styles/index.d.ts +3 -0
- package/es/action-card/styles/index.js +2 -0
- package/es/action-card/styles/light.d.ts +29 -0
- package/es/action-card/styles/light.js +33 -0
- package/es/avatar/src/Avatar.d.ts +13 -3
- package/es/avatar/src/Avatar.js +4 -3
- package/es/avatar/src/styles/index.cssr.js +3 -2
- package/es/avatar/styles/light.d.ts +1 -0
- package/es/avatar/styles/light.js +4 -3
- package/es/avatar-group/src/AvatarGroup.d.ts +10 -0
- package/es/avatar-group/styles/light.d.ts +1 -0
- package/es/badge/src/Badge.d.ts +10 -0
- package/es/badge/src/Badge.js +3 -2
- package/es/badge/src/styles/index.cssr.js +19 -1
- package/es/badge/styles/light.d.ts +1 -0
- package/es/badge/styles/light.js +4 -3
- package/es/components.d.ts +1 -0
- package/es/components.js +1 -0
- package/es/config-provider/src/internal-interface.d.ts +2 -0
- package/es/data-table/src/DataTable.d.ts +14 -0
- package/es/data-table/src/DataTable.js +3 -3
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +2 -0
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +2 -0
- package/es/data-table/src/TableParts/Body.d.ts +2 -0
- package/es/data-table/src/TableParts/Body.js +10 -1
- package/es/data-table/src/TableParts/BodySkeleton.d.ts +18 -0
- package/es/data-table/src/TableParts/BodySkeleton.js +52 -0
- package/es/data-table/src/TableParts/Header.d.ts +2 -0
- package/es/data-table/src/interface.d.ts +6 -0
- package/es/data-table/src/styles/index.cssr.js +1 -1
- package/es/data-table/styles/light.d.ts +2 -0
- package/es/data-table/styles/light.js +1 -1
- package/es/dialog/src/DialogProvider.d.ts +4 -0
- package/es/icon-wrapper/src/IconWrapper.d.ts +40 -9
- package/es/icon-wrapper/src/IconWrapper.js +23 -5
- package/es/icon-wrapper/src/interface.d.ts +1 -0
- package/es/icon-wrapper/src/interface.js +1 -0
- package/es/icon-wrapper/src/styles/index.cssr.js +17 -5
- package/es/layout/src/styles/layout-sider.cssr.js +1 -1
- package/es/modal/src/BodyWrapper.d.ts +1 -0
- package/es/modal/src/Modal.d.ts +9 -0
- package/es/modal/styles/light.d.ts +2 -0
- package/es/modal/styles/light.js +2 -1
- package/es/pagination/src/Pagination.d.ts +22 -0
- package/es/pagination/src/Pagination.js +4 -2
- package/es/pagination/src/styles/index.cssr.js +11 -0
- package/es/pagination/styles/light.d.ts +4 -0
- package/es/pagination/styles/light.js +7 -5
- package/es/spin/styles/light.js +3 -3
- package/es/steps/src/Step.d.ts +17 -0
- package/es/steps/src/Step.js +81 -25
- package/es/steps/src/Steps.d.ts +127 -1
- package/es/steps/src/Steps.js +4 -1
- package/es/steps/src/interface.d.ts +10 -2
- package/es/steps/src/interface.js +10 -1
- package/es/steps/src/styles/index.cssr.js +115 -3
- package/es/steps/styles/light.d.ts +14 -0
- package/es/steps/styles/light.js +16 -2
- package/es/theme-editor/src/ThemeEditor.d.ts +2 -0
- package/es/themes/dark.js +2 -0
- package/es/themes/light.js +2 -0
- package/es/toggle-button/src/ToggleButton.d.ts +13 -0
- package/es/toggle-button/src/ToggleButton.js +5 -2
- package/es/toggle-button/src/styles/toggle-button.cssr.js +3 -0
- package/es/typography/src/a.d.ts +27 -0
- package/es/typography/src/a.js +4 -1
- package/es/typography/src/blockquote.d.ts +27 -0
- package/es/typography/src/blockquote.js +4 -1
- package/es/typography/src/create-header.d.ts +27 -0
- package/es/typography/src/create-header.js +4 -1
- package/es/typography/src/headers.d.ts +108 -0
- package/es/typography/src/hr.d.ts +18 -0
- package/es/typography/src/hr.js +4 -0
- package/es/typography/src/li.js +4 -1
- package/es/typography/src/ol.d.ts +27 -0
- package/es/typography/src/ol.js +4 -1
- package/es/typography/src/p.d.ts +27 -0
- package/es/typography/src/p.js +4 -1
- package/es/typography/src/text.d.ts +128 -524
- package/es/typography/src/text.js +68 -69
- package/es/typography/src/ul.d.ts +27 -0
- package/es/typography/src/ul.js +4 -1
- package/es/typography/styles/light.d.ts +3 -0
- package/es/typography/styles/light.js +3 -0
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/icons/SiderUnionBorder.js +1 -1
- package/lib/_internal/index.d.ts +2 -0
- package/lib/_internal/index.js +4 -1
- package/lib/_internal/typography/index.d.ts +2 -0
- package/lib/_internal/typography/index.js +9 -0
- package/lib/_internal/typography/src/styles/text.cssr.d.ts +2 -0
- package/lib/_internal/typography/src/styles/text.cssr.js +83 -0
- package/lib/_internal/typography/src/text.d.ts +246 -0
- package/lib/_internal/typography/src/text.js +85 -0
- package/lib/_internal/typography/src/variants.d.ts +13 -0
- package/lib/_internal/typography/src/variants.js +137 -0
- package/lib/_internal/typography/styles/dark.d.ts +3 -0
- package/lib/_internal/typography/styles/dark.js +10 -0
- package/lib/_internal/typography/styles/index.d.ts +3 -0
- package/lib/_internal/typography/styles/index.js +10 -0
- package/lib/_internal/typography/styles/light.d.ts +24 -0
- package/lib/_internal/typography/styles/light.js +32 -0
- package/lib/_styles/common/_common.d.ts +2 -0
- package/lib/_styles/common/_common.js +3 -1
- package/lib/_styles/common/light.d.ts +2 -0
- package/lib/action-card/index.d.ts +4 -0
- package/lib/action-card/index.js +11 -0
- package/lib/action-card/src/ActionCard.d.ts +313 -0
- package/lib/action-card/src/ActionCard.js +107 -0
- package/lib/action-card/src/styles/index.cssr.d.ts +2 -0
- package/lib/action-card/src/styles/index.cssr.js +118 -0
- package/lib/action-card/styles/dark.d.ts +3 -0
- package/lib/action-card/styles/dark.js +13 -0
- package/lib/action-card/styles/index.d.ts +3 -0
- package/lib/action-card/styles/index.js +10 -0
- package/lib/action-card/styles/light.d.ts +29 -0
- package/lib/action-card/styles/light.js +37 -0
- package/lib/avatar/src/Avatar.d.ts +13 -3
- package/lib/avatar/src/Avatar.js +4 -3
- package/lib/avatar/src/styles/index.cssr.js +3 -2
- package/lib/avatar/styles/light.d.ts +1 -0
- package/lib/avatar/styles/light.js +4 -3
- package/lib/avatar-group/src/AvatarGroup.d.ts +10 -0
- package/lib/avatar-group/styles/light.d.ts +1 -0
- package/lib/badge/src/Badge.d.ts +10 -0
- package/lib/badge/src/Badge.js +3 -2
- package/lib/badge/src/styles/index.cssr.js +19 -1
- package/lib/badge/styles/light.d.ts +1 -0
- package/lib/badge/styles/light.js +4 -3
- package/lib/components.d.ts +1 -0
- package/lib/components.js +1 -0
- package/lib/config-provider/src/internal-interface.d.ts +2 -0
- package/lib/data-table/src/DataTable.d.ts +14 -0
- package/lib/data-table/src/DataTable.js +3 -3
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +2 -0
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +2 -0
- package/lib/data-table/src/TableParts/Body.d.ts +2 -0
- package/lib/data-table/src/TableParts/Body.js +10 -1
- package/lib/data-table/src/TableParts/BodySkeleton.d.ts +18 -0
- package/lib/data-table/src/TableParts/BodySkeleton.js +54 -0
- package/lib/data-table/src/TableParts/Header.d.ts +2 -0
- package/lib/data-table/src/interface.d.ts +6 -0
- package/lib/data-table/src/styles/index.cssr.js +1 -1
- package/lib/data-table/styles/light.d.ts +2 -0
- package/lib/data-table/styles/light.js +1 -1
- package/lib/dialog/src/DialogProvider.d.ts +4 -0
- package/lib/icon-wrapper/src/IconWrapper.d.ts +40 -9
- package/lib/icon-wrapper/src/IconWrapper.js +23 -5
- package/lib/icon-wrapper/src/interface.d.ts +1 -0
- package/lib/icon-wrapper/src/interface.js +2 -0
- package/lib/icon-wrapper/src/styles/index.cssr.js +16 -4
- package/lib/layout/src/styles/layout-sider.cssr.js +1 -1
- package/lib/modal/src/BodyWrapper.d.ts +1 -0
- package/lib/modal/src/Modal.d.ts +9 -0
- package/lib/modal/styles/light.d.ts +2 -0
- package/lib/modal/styles/light.js +2 -1
- package/lib/pagination/src/Pagination.d.ts +22 -0
- package/lib/pagination/src/Pagination.js +4 -2
- package/lib/pagination/src/styles/index.cssr.js +11 -0
- package/lib/pagination/styles/light.d.ts +4 -0
- package/lib/pagination/styles/light.js +7 -5
- package/lib/spin/styles/light.js +3 -3
- package/lib/steps/src/Step.d.ts +17 -0
- package/lib/steps/src/Step.js +81 -25
- package/lib/steps/src/Steps.d.ts +127 -1
- package/lib/steps/src/Steps.js +4 -1
- package/lib/steps/src/interface.d.ts +10 -2
- package/lib/steps/src/interface.js +11 -0
- package/lib/steps/src/styles/index.cssr.js +115 -3
- package/lib/steps/styles/light.d.ts +14 -0
- package/lib/steps/styles/light.js +16 -2
- package/lib/theme-editor/src/ThemeEditor.d.ts +2 -0
- package/lib/themes/dark.js +2 -0
- package/lib/themes/light.js +2 -0
- package/lib/toggle-button/src/ToggleButton.d.ts +13 -0
- package/lib/toggle-button/src/ToggleButton.js +5 -2
- package/lib/toggle-button/src/styles/toggle-button.cssr.js +3 -0
- package/lib/typography/src/a.d.ts +27 -0
- package/lib/typography/src/a.js +3 -0
- package/lib/typography/src/blockquote.d.ts +27 -0
- package/lib/typography/src/blockquote.js +3 -0
- package/lib/typography/src/create-header.d.ts +27 -0
- package/lib/typography/src/create-header.js +3 -0
- package/lib/typography/src/headers.d.ts +108 -0
- package/lib/typography/src/hr.d.ts +18 -0
- package/lib/typography/src/hr.js +4 -0
- package/lib/typography/src/li.js +3 -0
- package/lib/typography/src/ol.d.ts +27 -0
- package/lib/typography/src/ol.js +3 -0
- package/lib/typography/src/p.d.ts +27 -0
- package/lib/typography/src/p.js +3 -0
- package/lib/typography/src/text.d.ts +128 -524
- package/lib/typography/src/text.js +66 -70
- package/lib/typography/src/ul.d.ts +27 -0
- package/lib/typography/src/ul.js +3 -0
- package/lib/typography/styles/light.d.ts +3 -0
- package/lib/typography/styles/light.js +3 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/volar.d.ts +1 -0
- package/web-types.json +147 -96
package/lib/steps/src/Steps.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type PropType, ExtractPropTypes, Ref, Slots } from 'vue';
|
|
2
2
|
import type { MergedTheme } from '../../_mixins';
|
|
3
3
|
import type { ExtractPublicPropTypes } from '../../_utils';
|
|
4
|
-
import type { StepsTheme } from '../styles';
|
|
5
4
|
import { OnUpdateValue, StepsStatus, StepsVariant } from './interface';
|
|
5
|
+
import type { StepsTheme } from '../styles';
|
|
6
6
|
export declare const stepsProps: {
|
|
7
7
|
current: NumberConstructor;
|
|
8
8
|
status: {
|
|
@@ -23,16 +23,21 @@ export declare const stepsProps: {
|
|
|
23
23
|
theme: PropType<import("../../_mixins").Theme<"Steps", {
|
|
24
24
|
stepHeaderFontSizeSmall: string;
|
|
25
25
|
stepHeaderFontSizeMedium: string;
|
|
26
|
+
stepHeaderFontSizeLarge: string;
|
|
26
27
|
indicatorIndexFontSizeSmall: string;
|
|
27
28
|
indicatorIndexFontSizeMedium: string;
|
|
28
29
|
indicatorSizeSmall: string;
|
|
29
30
|
indicatorSizeMedium: string;
|
|
31
|
+
indicatorSizeDotted: string;
|
|
30
32
|
indicatorIconSizeSmall: string;
|
|
31
33
|
indicatorIconSizeMedium: string;
|
|
34
|
+
indicatorIconSizeOutline: string;
|
|
32
35
|
indicatorIconColorProcess: string;
|
|
33
36
|
indicatorIconColorWait: string;
|
|
34
37
|
indicatorIconColorFinish: string;
|
|
35
38
|
indicatorIconColorError: string;
|
|
39
|
+
indicatorIconColorOutline: string;
|
|
40
|
+
indicatorIconColorFinishDotted: string;
|
|
36
41
|
stepHeaderFontWeight: string;
|
|
37
42
|
indicatorTextColorProcess: string;
|
|
38
43
|
indicatorTextColorWait: string;
|
|
@@ -42,36 +47,50 @@ export declare const stepsProps: {
|
|
|
42
47
|
indicatorBorderColorWait: string;
|
|
43
48
|
indicatorBorderColorFinish: string;
|
|
44
49
|
indicatorBorderColorError: string;
|
|
50
|
+
indicatorBorderColorFinishOutline: string;
|
|
51
|
+
indicatorBorderRadiusOutline: string;
|
|
52
|
+
indicatorBorderRadiusFinishOutline: string;
|
|
45
53
|
indicatorColorProcess: string;
|
|
46
54
|
indicatorColorWait: string;
|
|
47
55
|
indicatorColorFinish: string;
|
|
48
56
|
indicatorColorError: string;
|
|
57
|
+
indicatorColorDotted: string;
|
|
58
|
+
indicatorBackgroundFinishOutline: string;
|
|
49
59
|
splitorColorProcess: string;
|
|
50
60
|
splitorColorWait: string;
|
|
51
61
|
splitorColorFinish: string;
|
|
52
62
|
splitorColorError: string;
|
|
63
|
+
splitorColorFinishDotted: string;
|
|
64
|
+
splitorColorDotted: string;
|
|
53
65
|
headerTextColorProcess: string;
|
|
54
66
|
headerTextColorWait: string;
|
|
55
67
|
headerTextColorFinish: string;
|
|
56
68
|
headerTextColorError: string;
|
|
57
69
|
descriptionTextColorProcess: string;
|
|
58
70
|
descriptionTextColorWait: string;
|
|
71
|
+
descriptionTextColorDotted: string;
|
|
59
72
|
descriptionTextColorFinish: string;
|
|
60
73
|
descriptionTextColorError: string;
|
|
74
|
+
stepHeight: string;
|
|
61
75
|
}, any>>;
|
|
62
76
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Steps", {
|
|
63
77
|
stepHeaderFontSizeSmall: string;
|
|
64
78
|
stepHeaderFontSizeMedium: string;
|
|
79
|
+
stepHeaderFontSizeLarge: string;
|
|
65
80
|
indicatorIndexFontSizeSmall: string;
|
|
66
81
|
indicatorIndexFontSizeMedium: string;
|
|
67
82
|
indicatorSizeSmall: string;
|
|
68
83
|
indicatorSizeMedium: string;
|
|
84
|
+
indicatorSizeDotted: string;
|
|
69
85
|
indicatorIconSizeSmall: string;
|
|
70
86
|
indicatorIconSizeMedium: string;
|
|
87
|
+
indicatorIconSizeOutline: string;
|
|
71
88
|
indicatorIconColorProcess: string;
|
|
72
89
|
indicatorIconColorWait: string;
|
|
73
90
|
indicatorIconColorFinish: string;
|
|
74
91
|
indicatorIconColorError: string;
|
|
92
|
+
indicatorIconColorOutline: string;
|
|
93
|
+
indicatorIconColorFinishDotted: string;
|
|
75
94
|
stepHeaderFontWeight: string;
|
|
76
95
|
indicatorTextColorProcess: string;
|
|
77
96
|
indicatorTextColorWait: string;
|
|
@@ -81,36 +100,50 @@ export declare const stepsProps: {
|
|
|
81
100
|
indicatorBorderColorWait: string;
|
|
82
101
|
indicatorBorderColorFinish: string;
|
|
83
102
|
indicatorBorderColorError: string;
|
|
103
|
+
indicatorBorderColorFinishOutline: string;
|
|
104
|
+
indicatorBorderRadiusOutline: string;
|
|
105
|
+
indicatorBorderRadiusFinishOutline: string;
|
|
84
106
|
indicatorColorProcess: string;
|
|
85
107
|
indicatorColorWait: string;
|
|
86
108
|
indicatorColorFinish: string;
|
|
87
109
|
indicatorColorError: string;
|
|
110
|
+
indicatorColorDotted: string;
|
|
111
|
+
indicatorBackgroundFinishOutline: string;
|
|
88
112
|
splitorColorProcess: string;
|
|
89
113
|
splitorColorWait: string;
|
|
90
114
|
splitorColorFinish: string;
|
|
91
115
|
splitorColorError: string;
|
|
116
|
+
splitorColorFinishDotted: string;
|
|
117
|
+
splitorColorDotted: string;
|
|
92
118
|
headerTextColorProcess: string;
|
|
93
119
|
headerTextColorWait: string;
|
|
94
120
|
headerTextColorFinish: string;
|
|
95
121
|
headerTextColorError: string;
|
|
96
122
|
descriptionTextColorProcess: string;
|
|
97
123
|
descriptionTextColorWait: string;
|
|
124
|
+
descriptionTextColorDotted: string;
|
|
98
125
|
descriptionTextColorFinish: string;
|
|
99
126
|
descriptionTextColorError: string;
|
|
127
|
+
stepHeight: string;
|
|
100
128
|
}, any>>>;
|
|
101
129
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Steps", {
|
|
102
130
|
stepHeaderFontSizeSmall: string;
|
|
103
131
|
stepHeaderFontSizeMedium: string;
|
|
132
|
+
stepHeaderFontSizeLarge: string;
|
|
104
133
|
indicatorIndexFontSizeSmall: string;
|
|
105
134
|
indicatorIndexFontSizeMedium: string;
|
|
106
135
|
indicatorSizeSmall: string;
|
|
107
136
|
indicatorSizeMedium: string;
|
|
137
|
+
indicatorSizeDotted: string;
|
|
108
138
|
indicatorIconSizeSmall: string;
|
|
109
139
|
indicatorIconSizeMedium: string;
|
|
140
|
+
indicatorIconSizeOutline: string;
|
|
110
141
|
indicatorIconColorProcess: string;
|
|
111
142
|
indicatorIconColorWait: string;
|
|
112
143
|
indicatorIconColorFinish: string;
|
|
113
144
|
indicatorIconColorError: string;
|
|
145
|
+
indicatorIconColorOutline: string;
|
|
146
|
+
indicatorIconColorFinishDotted: string;
|
|
114
147
|
stepHeaderFontWeight: string;
|
|
115
148
|
indicatorTextColorProcess: string;
|
|
116
149
|
indicatorTextColorWait: string;
|
|
@@ -120,22 +153,31 @@ export declare const stepsProps: {
|
|
|
120
153
|
indicatorBorderColorWait: string;
|
|
121
154
|
indicatorBorderColorFinish: string;
|
|
122
155
|
indicatorBorderColorError: string;
|
|
156
|
+
indicatorBorderColorFinishOutline: string;
|
|
157
|
+
indicatorBorderRadiusOutline: string;
|
|
158
|
+
indicatorBorderRadiusFinishOutline: string;
|
|
123
159
|
indicatorColorProcess: string;
|
|
124
160
|
indicatorColorWait: string;
|
|
125
161
|
indicatorColorFinish: string;
|
|
126
162
|
indicatorColorError: string;
|
|
163
|
+
indicatorColorDotted: string;
|
|
164
|
+
indicatorBackgroundFinishOutline: string;
|
|
127
165
|
splitorColorProcess: string;
|
|
128
166
|
splitorColorWait: string;
|
|
129
167
|
splitorColorFinish: string;
|
|
130
168
|
splitorColorError: string;
|
|
169
|
+
splitorColorFinishDotted: string;
|
|
170
|
+
splitorColorDotted: string;
|
|
131
171
|
headerTextColorProcess: string;
|
|
132
172
|
headerTextColorWait: string;
|
|
133
173
|
headerTextColorFinish: string;
|
|
134
174
|
headerTextColorError: string;
|
|
135
175
|
descriptionTextColorProcess: string;
|
|
136
176
|
descriptionTextColorWait: string;
|
|
177
|
+
descriptionTextColorDotted: string;
|
|
137
178
|
descriptionTextColorFinish: string;
|
|
138
179
|
descriptionTextColorError: string;
|
|
180
|
+
stepHeight: string;
|
|
139
181
|
}, any>>>;
|
|
140
182
|
};
|
|
141
183
|
export type StepsProps = ExtractPublicPropTypes<typeof stepsProps>;
|
|
@@ -166,16 +208,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
166
208
|
theme: PropType<import("../../_mixins").Theme<"Steps", {
|
|
167
209
|
stepHeaderFontSizeSmall: string;
|
|
168
210
|
stepHeaderFontSizeMedium: string;
|
|
211
|
+
stepHeaderFontSizeLarge: string;
|
|
169
212
|
indicatorIndexFontSizeSmall: string;
|
|
170
213
|
indicatorIndexFontSizeMedium: string;
|
|
171
214
|
indicatorSizeSmall: string;
|
|
172
215
|
indicatorSizeMedium: string;
|
|
216
|
+
indicatorSizeDotted: string;
|
|
173
217
|
indicatorIconSizeSmall: string;
|
|
174
218
|
indicatorIconSizeMedium: string;
|
|
219
|
+
indicatorIconSizeOutline: string;
|
|
175
220
|
indicatorIconColorProcess: string;
|
|
176
221
|
indicatorIconColorWait: string;
|
|
177
222
|
indicatorIconColorFinish: string;
|
|
178
223
|
indicatorIconColorError: string;
|
|
224
|
+
indicatorIconColorOutline: string;
|
|
225
|
+
indicatorIconColorFinishDotted: string;
|
|
179
226
|
stepHeaderFontWeight: string;
|
|
180
227
|
indicatorTextColorProcess: string;
|
|
181
228
|
indicatorTextColorWait: string;
|
|
@@ -185,36 +232,50 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
185
232
|
indicatorBorderColorWait: string;
|
|
186
233
|
indicatorBorderColorFinish: string;
|
|
187
234
|
indicatorBorderColorError: string;
|
|
235
|
+
indicatorBorderColorFinishOutline: string;
|
|
236
|
+
indicatorBorderRadiusOutline: string;
|
|
237
|
+
indicatorBorderRadiusFinishOutline: string;
|
|
188
238
|
indicatorColorProcess: string;
|
|
189
239
|
indicatorColorWait: string;
|
|
190
240
|
indicatorColorFinish: string;
|
|
191
241
|
indicatorColorError: string;
|
|
242
|
+
indicatorColorDotted: string;
|
|
243
|
+
indicatorBackgroundFinishOutline: string;
|
|
192
244
|
splitorColorProcess: string;
|
|
193
245
|
splitorColorWait: string;
|
|
194
246
|
splitorColorFinish: string;
|
|
195
247
|
splitorColorError: string;
|
|
248
|
+
splitorColorFinishDotted: string;
|
|
249
|
+
splitorColorDotted: string;
|
|
196
250
|
headerTextColorProcess: string;
|
|
197
251
|
headerTextColorWait: string;
|
|
198
252
|
headerTextColorFinish: string;
|
|
199
253
|
headerTextColorError: string;
|
|
200
254
|
descriptionTextColorProcess: string;
|
|
201
255
|
descriptionTextColorWait: string;
|
|
256
|
+
descriptionTextColorDotted: string;
|
|
202
257
|
descriptionTextColorFinish: string;
|
|
203
258
|
descriptionTextColorError: string;
|
|
259
|
+
stepHeight: string;
|
|
204
260
|
}, any>>;
|
|
205
261
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Steps", {
|
|
206
262
|
stepHeaderFontSizeSmall: string;
|
|
207
263
|
stepHeaderFontSizeMedium: string;
|
|
264
|
+
stepHeaderFontSizeLarge: string;
|
|
208
265
|
indicatorIndexFontSizeSmall: string;
|
|
209
266
|
indicatorIndexFontSizeMedium: string;
|
|
210
267
|
indicatorSizeSmall: string;
|
|
211
268
|
indicatorSizeMedium: string;
|
|
269
|
+
indicatorSizeDotted: string;
|
|
212
270
|
indicatorIconSizeSmall: string;
|
|
213
271
|
indicatorIconSizeMedium: string;
|
|
272
|
+
indicatorIconSizeOutline: string;
|
|
214
273
|
indicatorIconColorProcess: string;
|
|
215
274
|
indicatorIconColorWait: string;
|
|
216
275
|
indicatorIconColorFinish: string;
|
|
217
276
|
indicatorIconColorError: string;
|
|
277
|
+
indicatorIconColorOutline: string;
|
|
278
|
+
indicatorIconColorFinishDotted: string;
|
|
218
279
|
stepHeaderFontWeight: string;
|
|
219
280
|
indicatorTextColorProcess: string;
|
|
220
281
|
indicatorTextColorWait: string;
|
|
@@ -224,36 +285,50 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
224
285
|
indicatorBorderColorWait: string;
|
|
225
286
|
indicatorBorderColorFinish: string;
|
|
226
287
|
indicatorBorderColorError: string;
|
|
288
|
+
indicatorBorderColorFinishOutline: string;
|
|
289
|
+
indicatorBorderRadiusOutline: string;
|
|
290
|
+
indicatorBorderRadiusFinishOutline: string;
|
|
227
291
|
indicatorColorProcess: string;
|
|
228
292
|
indicatorColorWait: string;
|
|
229
293
|
indicatorColorFinish: string;
|
|
230
294
|
indicatorColorError: string;
|
|
295
|
+
indicatorColorDotted: string;
|
|
296
|
+
indicatorBackgroundFinishOutline: string;
|
|
231
297
|
splitorColorProcess: string;
|
|
232
298
|
splitorColorWait: string;
|
|
233
299
|
splitorColorFinish: string;
|
|
234
300
|
splitorColorError: string;
|
|
301
|
+
splitorColorFinishDotted: string;
|
|
302
|
+
splitorColorDotted: string;
|
|
235
303
|
headerTextColorProcess: string;
|
|
236
304
|
headerTextColorWait: string;
|
|
237
305
|
headerTextColorFinish: string;
|
|
238
306
|
headerTextColorError: string;
|
|
239
307
|
descriptionTextColorProcess: string;
|
|
240
308
|
descriptionTextColorWait: string;
|
|
309
|
+
descriptionTextColorDotted: string;
|
|
241
310
|
descriptionTextColorFinish: string;
|
|
242
311
|
descriptionTextColorError: string;
|
|
312
|
+
stepHeight: string;
|
|
243
313
|
}, any>>>;
|
|
244
314
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Steps", {
|
|
245
315
|
stepHeaderFontSizeSmall: string;
|
|
246
316
|
stepHeaderFontSizeMedium: string;
|
|
317
|
+
stepHeaderFontSizeLarge: string;
|
|
247
318
|
indicatorIndexFontSizeSmall: string;
|
|
248
319
|
indicatorIndexFontSizeMedium: string;
|
|
249
320
|
indicatorSizeSmall: string;
|
|
250
321
|
indicatorSizeMedium: string;
|
|
322
|
+
indicatorSizeDotted: string;
|
|
251
323
|
indicatorIconSizeSmall: string;
|
|
252
324
|
indicatorIconSizeMedium: string;
|
|
325
|
+
indicatorIconSizeOutline: string;
|
|
253
326
|
indicatorIconColorProcess: string;
|
|
254
327
|
indicatorIconColorWait: string;
|
|
255
328
|
indicatorIconColorFinish: string;
|
|
256
329
|
indicatorIconColorError: string;
|
|
330
|
+
indicatorIconColorOutline: string;
|
|
331
|
+
indicatorIconColorFinishDotted: string;
|
|
257
332
|
stepHeaderFontWeight: string;
|
|
258
333
|
indicatorTextColorProcess: string;
|
|
259
334
|
indicatorTextColorWait: string;
|
|
@@ -263,22 +338,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
263
338
|
indicatorBorderColorWait: string;
|
|
264
339
|
indicatorBorderColorFinish: string;
|
|
265
340
|
indicatorBorderColorError: string;
|
|
341
|
+
indicatorBorderColorFinishOutline: string;
|
|
342
|
+
indicatorBorderRadiusOutline: string;
|
|
343
|
+
indicatorBorderRadiusFinishOutline: string;
|
|
266
344
|
indicatorColorProcess: string;
|
|
267
345
|
indicatorColorWait: string;
|
|
268
346
|
indicatorColorFinish: string;
|
|
269
347
|
indicatorColorError: string;
|
|
348
|
+
indicatorColorDotted: string;
|
|
349
|
+
indicatorBackgroundFinishOutline: string;
|
|
270
350
|
splitorColorProcess: string;
|
|
271
351
|
splitorColorWait: string;
|
|
272
352
|
splitorColorFinish: string;
|
|
273
353
|
splitorColorError: string;
|
|
354
|
+
splitorColorFinishDotted: string;
|
|
355
|
+
splitorColorDotted: string;
|
|
274
356
|
headerTextColorProcess: string;
|
|
275
357
|
headerTextColorWait: string;
|
|
276
358
|
headerTextColorFinish: string;
|
|
277
359
|
headerTextColorError: string;
|
|
278
360
|
descriptionTextColorProcess: string;
|
|
279
361
|
descriptionTextColorWait: string;
|
|
362
|
+
descriptionTextColorDotted: string;
|
|
280
363
|
descriptionTextColorFinish: string;
|
|
281
364
|
descriptionTextColorError: string;
|
|
365
|
+
stepHeight: string;
|
|
282
366
|
}, any>>>;
|
|
283
367
|
}, {
|
|
284
368
|
mergedClsPrefix: Ref<string>;
|
|
@@ -303,16 +387,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
303
387
|
theme: PropType<import("../../_mixins").Theme<"Steps", {
|
|
304
388
|
stepHeaderFontSizeSmall: string;
|
|
305
389
|
stepHeaderFontSizeMedium: string;
|
|
390
|
+
stepHeaderFontSizeLarge: string;
|
|
306
391
|
indicatorIndexFontSizeSmall: string;
|
|
307
392
|
indicatorIndexFontSizeMedium: string;
|
|
308
393
|
indicatorSizeSmall: string;
|
|
309
394
|
indicatorSizeMedium: string;
|
|
395
|
+
indicatorSizeDotted: string;
|
|
310
396
|
indicatorIconSizeSmall: string;
|
|
311
397
|
indicatorIconSizeMedium: string;
|
|
398
|
+
indicatorIconSizeOutline: string;
|
|
312
399
|
indicatorIconColorProcess: string;
|
|
313
400
|
indicatorIconColorWait: string;
|
|
314
401
|
indicatorIconColorFinish: string;
|
|
315
402
|
indicatorIconColorError: string;
|
|
403
|
+
indicatorIconColorOutline: string;
|
|
404
|
+
indicatorIconColorFinishDotted: string;
|
|
316
405
|
stepHeaderFontWeight: string;
|
|
317
406
|
indicatorTextColorProcess: string;
|
|
318
407
|
indicatorTextColorWait: string;
|
|
@@ -322,36 +411,50 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
322
411
|
indicatorBorderColorWait: string;
|
|
323
412
|
indicatorBorderColorFinish: string;
|
|
324
413
|
indicatorBorderColorError: string;
|
|
414
|
+
indicatorBorderColorFinishOutline: string;
|
|
415
|
+
indicatorBorderRadiusOutline: string;
|
|
416
|
+
indicatorBorderRadiusFinishOutline: string;
|
|
325
417
|
indicatorColorProcess: string;
|
|
326
418
|
indicatorColorWait: string;
|
|
327
419
|
indicatorColorFinish: string;
|
|
328
420
|
indicatorColorError: string;
|
|
421
|
+
indicatorColorDotted: string;
|
|
422
|
+
indicatorBackgroundFinishOutline: string;
|
|
329
423
|
splitorColorProcess: string;
|
|
330
424
|
splitorColorWait: string;
|
|
331
425
|
splitorColorFinish: string;
|
|
332
426
|
splitorColorError: string;
|
|
427
|
+
splitorColorFinishDotted: string;
|
|
428
|
+
splitorColorDotted: string;
|
|
333
429
|
headerTextColorProcess: string;
|
|
334
430
|
headerTextColorWait: string;
|
|
335
431
|
headerTextColorFinish: string;
|
|
336
432
|
headerTextColorError: string;
|
|
337
433
|
descriptionTextColorProcess: string;
|
|
338
434
|
descriptionTextColorWait: string;
|
|
435
|
+
descriptionTextColorDotted: string;
|
|
339
436
|
descriptionTextColorFinish: string;
|
|
340
437
|
descriptionTextColorError: string;
|
|
438
|
+
stepHeight: string;
|
|
341
439
|
}, any>>;
|
|
342
440
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Steps", {
|
|
343
441
|
stepHeaderFontSizeSmall: string;
|
|
344
442
|
stepHeaderFontSizeMedium: string;
|
|
443
|
+
stepHeaderFontSizeLarge: string;
|
|
345
444
|
indicatorIndexFontSizeSmall: string;
|
|
346
445
|
indicatorIndexFontSizeMedium: string;
|
|
347
446
|
indicatorSizeSmall: string;
|
|
348
447
|
indicatorSizeMedium: string;
|
|
448
|
+
indicatorSizeDotted: string;
|
|
349
449
|
indicatorIconSizeSmall: string;
|
|
350
450
|
indicatorIconSizeMedium: string;
|
|
451
|
+
indicatorIconSizeOutline: string;
|
|
351
452
|
indicatorIconColorProcess: string;
|
|
352
453
|
indicatorIconColorWait: string;
|
|
353
454
|
indicatorIconColorFinish: string;
|
|
354
455
|
indicatorIconColorError: string;
|
|
456
|
+
indicatorIconColorOutline: string;
|
|
457
|
+
indicatorIconColorFinishDotted: string;
|
|
355
458
|
stepHeaderFontWeight: string;
|
|
356
459
|
indicatorTextColorProcess: string;
|
|
357
460
|
indicatorTextColorWait: string;
|
|
@@ -361,36 +464,50 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
361
464
|
indicatorBorderColorWait: string;
|
|
362
465
|
indicatorBorderColorFinish: string;
|
|
363
466
|
indicatorBorderColorError: string;
|
|
467
|
+
indicatorBorderColorFinishOutline: string;
|
|
468
|
+
indicatorBorderRadiusOutline: string;
|
|
469
|
+
indicatorBorderRadiusFinishOutline: string;
|
|
364
470
|
indicatorColorProcess: string;
|
|
365
471
|
indicatorColorWait: string;
|
|
366
472
|
indicatorColorFinish: string;
|
|
367
473
|
indicatorColorError: string;
|
|
474
|
+
indicatorColorDotted: string;
|
|
475
|
+
indicatorBackgroundFinishOutline: string;
|
|
368
476
|
splitorColorProcess: string;
|
|
369
477
|
splitorColorWait: string;
|
|
370
478
|
splitorColorFinish: string;
|
|
371
479
|
splitorColorError: string;
|
|
480
|
+
splitorColorFinishDotted: string;
|
|
481
|
+
splitorColorDotted: string;
|
|
372
482
|
headerTextColorProcess: string;
|
|
373
483
|
headerTextColorWait: string;
|
|
374
484
|
headerTextColorFinish: string;
|
|
375
485
|
headerTextColorError: string;
|
|
376
486
|
descriptionTextColorProcess: string;
|
|
377
487
|
descriptionTextColorWait: string;
|
|
488
|
+
descriptionTextColorDotted: string;
|
|
378
489
|
descriptionTextColorFinish: string;
|
|
379
490
|
descriptionTextColorError: string;
|
|
491
|
+
stepHeight: string;
|
|
380
492
|
}, any>>>;
|
|
381
493
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Steps", {
|
|
382
494
|
stepHeaderFontSizeSmall: string;
|
|
383
495
|
stepHeaderFontSizeMedium: string;
|
|
496
|
+
stepHeaderFontSizeLarge: string;
|
|
384
497
|
indicatorIndexFontSizeSmall: string;
|
|
385
498
|
indicatorIndexFontSizeMedium: string;
|
|
386
499
|
indicatorSizeSmall: string;
|
|
387
500
|
indicatorSizeMedium: string;
|
|
501
|
+
indicatorSizeDotted: string;
|
|
388
502
|
indicatorIconSizeSmall: string;
|
|
389
503
|
indicatorIconSizeMedium: string;
|
|
504
|
+
indicatorIconSizeOutline: string;
|
|
390
505
|
indicatorIconColorProcess: string;
|
|
391
506
|
indicatorIconColorWait: string;
|
|
392
507
|
indicatorIconColorFinish: string;
|
|
393
508
|
indicatorIconColorError: string;
|
|
509
|
+
indicatorIconColorOutline: string;
|
|
510
|
+
indicatorIconColorFinishDotted: string;
|
|
394
511
|
stepHeaderFontWeight: string;
|
|
395
512
|
indicatorTextColorProcess: string;
|
|
396
513
|
indicatorTextColorWait: string;
|
|
@@ -400,22 +517,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
400
517
|
indicatorBorderColorWait: string;
|
|
401
518
|
indicatorBorderColorFinish: string;
|
|
402
519
|
indicatorBorderColorError: string;
|
|
520
|
+
indicatorBorderColorFinishOutline: string;
|
|
521
|
+
indicatorBorderRadiusOutline: string;
|
|
522
|
+
indicatorBorderRadiusFinishOutline: string;
|
|
403
523
|
indicatorColorProcess: string;
|
|
404
524
|
indicatorColorWait: string;
|
|
405
525
|
indicatorColorFinish: string;
|
|
406
526
|
indicatorColorError: string;
|
|
527
|
+
indicatorColorDotted: string;
|
|
528
|
+
indicatorBackgroundFinishOutline: string;
|
|
407
529
|
splitorColorProcess: string;
|
|
408
530
|
splitorColorWait: string;
|
|
409
531
|
splitorColorFinish: string;
|
|
410
532
|
splitorColorError: string;
|
|
533
|
+
splitorColorFinishDotted: string;
|
|
534
|
+
splitorColorDotted: string;
|
|
411
535
|
headerTextColorProcess: string;
|
|
412
536
|
headerTextColorWait: string;
|
|
413
537
|
headerTextColorFinish: string;
|
|
414
538
|
headerTextColorError: string;
|
|
415
539
|
descriptionTextColorProcess: string;
|
|
416
540
|
descriptionTextColorWait: string;
|
|
541
|
+
descriptionTextColorDotted: string;
|
|
417
542
|
descriptionTextColorFinish: string;
|
|
418
543
|
descriptionTextColorError: string;
|
|
544
|
+
stepHeight: string;
|
|
419
545
|
}, any>>>;
|
|
420
546
|
}>>, {
|
|
421
547
|
size: "small" | "medium";
|
package/lib/steps/src/Steps.js
CHANGED
|
@@ -7,6 +7,7 @@ exports.stepsInjectionKey = exports.stepsProps = void 0;
|
|
|
7
7
|
const vue_1 = require("vue");
|
|
8
8
|
const _mixins_1 = require("../../_mixins");
|
|
9
9
|
const _utils_1 = require("../../_utils");
|
|
10
|
+
const interface_1 = require("./interface");
|
|
10
11
|
const styles_1 = require("../styles");
|
|
11
12
|
const index_cssr_1 = __importDefault(require("./styles/index.cssr"));
|
|
12
13
|
function stepWithIndex(step, i) {
|
|
@@ -51,11 +52,13 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
51
52
|
};
|
|
52
53
|
},
|
|
53
54
|
render() {
|
|
55
|
+
var _a, _b;
|
|
54
56
|
const { mergedClsPrefix } = this;
|
|
55
57
|
return ((0, vue_1.h)("div", { class: [
|
|
56
58
|
`${mergedClsPrefix}-steps`,
|
|
59
|
+
`${mergedClsPrefix}-steps--${this.variant}-variant`,
|
|
57
60
|
this.rtlEnabled && `${mergedClsPrefix}-steps--rtl`,
|
|
58
|
-
(
|
|
61
|
+
((_b = (_a = interface_1.variantConfigs[this.variant]) === null || _a === void 0 ? void 0 : _a.vertical) !== null && _b !== void 0 ? _b : this.vertical) &&
|
|
59
62
|
`${mergedClsPrefix}-steps--vertical`
|
|
60
63
|
] }, stepsWithIndex((0, _utils_1.flatten)((0, _utils_1.getSlot)(this)))));
|
|
61
64
|
}
|
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
import { VNodeChild } from 'vue';
|
|
2
2
|
import { MaybeArray } from '../../_utils';
|
|
3
3
|
export type StepsStatus = 'process' | 'finish' | 'error' | 'wait';
|
|
4
|
-
export type StepsVariant = 'default' | 'history';
|
|
4
|
+
export type StepsVariant = 'default' | 'history' | 'outline' | 'dotted';
|
|
5
5
|
export type OnUpdateValue = MaybeArray<(current: number) => void>;
|
|
6
|
+
export interface VariantConfig {
|
|
7
|
+
rendersSplitor?: boolean;
|
|
8
|
+
vertical?: boolean;
|
|
9
|
+
showDescription?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare const defaultVariantConfig: Required<VariantConfig>;
|
|
12
|
+
export declare const variantConfigs: Partial<Record<StepsVariant, VariantConfig>>;
|
|
6
13
|
export type IconRenderer = {
|
|
7
14
|
[K in StepsVariant]: Record<string, () => VNodeChild | null>;
|
|
8
15
|
};
|
|
9
16
|
export interface VariantBehaviors {
|
|
10
17
|
variant: StepsVariant;
|
|
11
|
-
|
|
18
|
+
isVertical: boolean;
|
|
12
19
|
shouldRenderSplitor: boolean;
|
|
20
|
+
showDescription: boolean;
|
|
13
21
|
}
|
|
@@ -1,2 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.variantConfigs = exports.defaultVariantConfig = void 0;
|
|
4
|
+
exports.defaultVariantConfig = {
|
|
5
|
+
rendersSplitor: true,
|
|
6
|
+
vertical: false,
|
|
7
|
+
showDescription: true
|
|
8
|
+
};
|
|
9
|
+
exports.variantConfigs = {
|
|
10
|
+
history: { vertical: true, rendersSplitor: true },
|
|
11
|
+
outline: { rendersSplitor: false, showDescription: false },
|
|
12
|
+
dotted: { rendersSplitor: true, showDescription: true }
|
|
13
|
+
};
|
|
@@ -19,16 +19,117 @@ const icon_switch_cssr_1 = require("../../../_styles/transitions/icon-switch.css
|
|
|
19
19
|
// --u-step-header-font-size
|
|
20
20
|
// --u-step-header-font-weight
|
|
21
21
|
// --u-step-icon-color
|
|
22
|
+
// --u-indicator-border-radius--outline
|
|
23
|
+
// --u-indicator-border-radius-finish--outline
|
|
24
|
+
// --u-indicator-background-finish--outline
|
|
25
|
+
// --u-indicator-icon-color--outline
|
|
26
|
+
// --u-indicator-icon-color-finish--outline
|
|
27
|
+
// --u-indicator-icon-size--outline
|
|
28
|
+
// --u-indicator-index-font-size--outline
|
|
29
|
+
// --u-step-header-font-size--dotted
|
|
30
|
+
// --u-description-text-color--dotted
|
|
31
|
+
// --u-indicator-color--dotted
|
|
32
|
+
// --u-splitor-color--dotted
|
|
33
|
+
// --u-splitor-color-finish--dotted
|
|
34
|
+
// --u-indicator-size--dotted
|
|
35
|
+
// --u-indicator-color-finish--dotted
|
|
22
36
|
exports.default = (0, cssr_1.cB)('steps', `
|
|
23
37
|
width: 100%;
|
|
24
38
|
display: flex;
|
|
25
|
-
`, [(0, cssr_1.
|
|
39
|
+
`, [(0, cssr_1.cM)('outline-variant', `
|
|
40
|
+
gap: 16px;
|
|
41
|
+
width: fit-content;
|
|
42
|
+
`), (0, cssr_1.cB)('step', `
|
|
26
43
|
position: relative;
|
|
27
44
|
display: flex;
|
|
28
45
|
flex: 1;
|
|
29
46
|
`, [(0, cssr_1.cM)('disabled', 'cursor: not-allowed'), (0, cssr_1.cM)('clickable', `
|
|
30
47
|
cursor: pointer;
|
|
31
|
-
`), (0, cssr_1.c)('&:last-child', [(0, cssr_1.cB)('step-splitor', 'display: none;')])
|
|
48
|
+
`), (0, cssr_1.c)('&:last-child', [(0, cssr_1.cB)('step-splitor', 'display: none;')]), (0, cssr_1.cM)('outline-variant', [(0, cssr_1.c)('&', `
|
|
49
|
+
box-shadow: 0 0 0 2px var(--u-splitor-color);
|
|
50
|
+
display: flex;
|
|
51
|
+
height: var(--u-step-height);
|
|
52
|
+
padding: 0 12px 0 8px;
|
|
53
|
+
align-items: center;
|
|
54
|
+
gap: 12px;
|
|
55
|
+
border-radius: var(--u-indicator-border-radius--outline);
|
|
56
|
+
`), (0, cssr_1.cB)('step-content-header', `
|
|
57
|
+
margin: 0px;
|
|
58
|
+
`), (0, cssr_1.c)('>', [(0, cssr_1.cB)('step-indicator', `
|
|
59
|
+
box-shadow: none;
|
|
60
|
+
border: none;
|
|
61
|
+
`, [(0, cssr_1.cB)('step-indicator-slot', `
|
|
62
|
+
`, [(0, cssr_1.cE)('index', `
|
|
63
|
+
font-size: var(--u-indicator-index-font-size--outline);
|
|
64
|
+
position: absolute;
|
|
65
|
+
top: 50%;
|
|
66
|
+
left: 50%;
|
|
67
|
+
transform: translate(-50%, -50%);
|
|
68
|
+
`), (0, cssr_1.cB)('base-icon', `
|
|
69
|
+
position: absolute;
|
|
70
|
+
top: 50%;
|
|
71
|
+
left: 50%;
|
|
72
|
+
transform: translate(-50%, -50%);
|
|
73
|
+
`)])])]), (0, cssr_1.cM)('process-status', [(0, cssr_1.cB)('step-indicator', `
|
|
74
|
+
background-color: var(--u-indicator-icon-color--outline);
|
|
75
|
+
`, [(0, cssr_1.cB)('step-indicator-slot', [(0, cssr_1.cE)('index', `
|
|
76
|
+
color: var(--u-indicator-text-color--outline);
|
|
77
|
+
`), (0, cssr_1.cB)('base-icon', `
|
|
78
|
+
color: var(--u-indicator-icon-color--outline);
|
|
79
|
+
`)])])]), (0, cssr_1.cM)('finish-status', [`
|
|
80
|
+
box-shadow: 0 0 0 2px var(--u-indicator-border-color-finish--outline);
|
|
81
|
+
`, (0, cssr_1.c)('>', [(0, cssr_1.cB)('step-indicator', `
|
|
82
|
+
border-radius: var(--u-indicator-border-radius-finish--outline);
|
|
83
|
+
background-color: var(--u-indicator-background-finish--outline);
|
|
84
|
+
`, [(0, cssr_1.cB)('step-indicator-slot', `
|
|
85
|
+
height: var(--u-indicator-icon-size--outline);
|
|
86
|
+
width: var(--u-indicator-icon-size--outline);
|
|
87
|
+
font-size: var(--u-indicator-icon-size--outline);
|
|
88
|
+
line-height: var(--u-indicator-icon-size--outline);
|
|
89
|
+
`, [(0, cssr_1.cB)('base-icon', `
|
|
90
|
+
color: var(--u-indicator-icon-color-finish--outline);
|
|
91
|
+
`)])])])])]), (0, cssr_1.cM)('dotted-variant', [(0, cssr_1.c)('&', `
|
|
92
|
+
align-items: baseline;
|
|
93
|
+
`, [(0, cssr_1.cM)('process-status', [(0, cssr_1.cB)('step-indicator', [(0, cssr_1.cB)('step-indicator-slot', `
|
|
94
|
+
background-color: var(--u-indicator-color);
|
|
95
|
+
`), (0, cssr_1.cB)('step-splitor', `
|
|
96
|
+
background-color: var(--u-indicator-color);
|
|
97
|
+
`)])]), (0, cssr_1.cM)('finish-status', [(0, cssr_1.cB)('step-indicator', [(0, cssr_1.cB)('step-indicator-slot', `
|
|
98
|
+
background-color: var(--u-indicator-color-finish--dotted);
|
|
99
|
+
`), (0, cssr_1.cB)('step-splitor', `
|
|
100
|
+
background-color: var(--u-splitor-color-finish--dotted);
|
|
101
|
+
`)])]), (0, cssr_1.cM)('error-status', [(0, cssr_1.cB)('step-indicator', [(0, cssr_1.cB)('step-indicator-slot', `
|
|
102
|
+
background-color: var(--u-indicator-color);
|
|
103
|
+
`), (0, cssr_1.cB)('step-splitor', `
|
|
104
|
+
background-color: var(--u-splitor-color);
|
|
105
|
+
`)])])]), (0, cssr_1.cB)('step', `
|
|
106
|
+
align-items: baseline;
|
|
107
|
+
`), (0, cssr_1.cB)('step-indicator', `
|
|
108
|
+
background-color: transparent;
|
|
109
|
+
box-shadow: none;
|
|
110
|
+
width: var(--u-indicator-size--dotted);
|
|
111
|
+
height: var(--u-indicator-size--dotted);
|
|
112
|
+
`, [(0, cssr_1.cB)('step-indicator-slot', `
|
|
113
|
+
background-color: var(--u-indicator-color--dotted);
|
|
114
|
+
border-radius: 50%;
|
|
115
|
+
height: 10px;
|
|
116
|
+
width: 10px;
|
|
117
|
+
`)]), (0, cssr_1.cB)('step-content', `
|
|
118
|
+
display: flex;
|
|
119
|
+
justify-content: center;
|
|
120
|
+
flex-direction: column;
|
|
121
|
+
margin-left: 6px;
|
|
122
|
+
`, [(0, cssr_1.cB)('step-content-header', `
|
|
123
|
+
margin: 0;
|
|
124
|
+
font-size: var(--u-step-header-font-size--dotted);
|
|
125
|
+
font-weight: 500;
|
|
126
|
+
`), (0, cssr_1.cE)('description', `
|
|
127
|
+
margin-left: 0;
|
|
128
|
+
color: var(--u-description-text-color--dotted);
|
|
129
|
+
font-size: var(--u-step-header-font-size--dotted);
|
|
130
|
+
font-weight: 500;
|
|
131
|
+
line-height: 24px;
|
|
132
|
+
`)])])]), (0, cssr_1.cB)('step-splitor', `
|
|
32
133
|
background-color: var(--u-splitor-color);
|
|
33
134
|
margin-top: calc(var(--u-step-header-font-size) / 2);
|
|
34
135
|
height: 6px;
|
|
@@ -142,4 +243,15 @@ exports.default = (0, cssr_1.cB)('steps', `
|
|
|
142
243
|
margin: 0 !important;
|
|
143
244
|
left: calc(var(--u-indicator-size) / 2);
|
|
144
245
|
height: calc(100% - var(--u-indicator-size));
|
|
145
|
-
`)])]), (0, cssr_1.cB)('step-content', [(0, cssr_1.cE)('description', 'margin-top: 8px;')])])])])
|
|
246
|
+
`)])]), (0, cssr_1.cB)('step-content', [(0, cssr_1.cE)('description', 'margin-top: 8px;')])])])]), (0, cssr_1.cM)('outline-variant', [(0, cssr_1.c)('>', [(0, cssr_1.cB)('step', `
|
|
247
|
+
margin: 0;
|
|
248
|
+
padding: 0 12px 0 8px;
|
|
249
|
+
height: var(--u-step-height);
|
|
250
|
+
flex: auto;
|
|
251
|
+
`)])]), (0, cssr_1.cM)('dotted-variant', [(0, cssr_1.c)('>', [(0, cssr_1.cB)('step', [(0, cssr_1.cB)('step-splitor', `
|
|
252
|
+
background-color: var(--u-splitor-color--dotted);
|
|
253
|
+
bottom: -8px;
|
|
254
|
+
width: 2px;
|
|
255
|
+
left: calc(var(--u-indicator-size--dotted) / 2 - 1px);
|
|
256
|
+
height: calc(100% - var(--u-indicator-size--dotted)/2 - 10px);
|
|
257
|
+
`)])])])])]);
|