@alfalab/core-components-steps 3.0.6-dcfcd74d3c8fc8c265f6df2ad7d04cbada7c6479 → 3.0.7
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/components/step/index.css +32 -32
- package/components/step/index.module.css.js +1 -1
- package/components/step-indicator/index.css +1 -1
- package/components/step-indicator/index.module.css.js +1 -1
- package/esm/components/step/index.css +32 -32
- package/esm/components/step/index.module.css.js +1 -1
- package/esm/components/step-indicator/index.css +1 -1
- package/esm/components/step-indicator/index.module.css.js +1 -1
- package/esm/index.css +2 -2
- package/esm/index.module.css.js +1 -1
- package/index.css +2 -2
- package/index.module.css.js +1 -1
- package/modern/components/step/index.css +32 -32
- package/modern/components/step/index.module.css.js +1 -1
- package/modern/components/step-indicator/index.css +1 -1
- package/modern/components/step-indicator/index.module.css.js +1 -1
- package/modern/index.css +2 -2
- package/modern/index.module.css.js +1 -1
- package/package.json +5 -5
|
@@ -33,40 +33,40 @@
|
|
|
33
33
|
--steps-option-svg-color: var(--color-light-status-positive);
|
|
34
34
|
--steps-dash-border: 2px solid var(--color-light-status-positive);
|
|
35
35
|
}
|
|
36
|
-
.
|
|
36
|
+
.steps__step_yvcgu {
|
|
37
37
|
display: flex;
|
|
38
38
|
outline: none;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.steps__step_yvcgu.steps__horizontal_yvcgu {
|
|
41
41
|
flex-grow: 1;
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.steps__step_yvcgu:not(.steps__vertical_yvcgu) {
|
|
44
44
|
align-items: center;
|
|
45
45
|
}
|
|
46
|
-
.
|
|
46
|
+
.steps__step_yvcgu:last-of-type .steps__textWrapper_yvcgu.steps__vertical_yvcgu {
|
|
47
47
|
margin-bottom: var(--gap-0);
|
|
48
48
|
}
|
|
49
|
-
.
|
|
49
|
+
.steps__step_yvcgu.steps__interactive_yvcgu:not(.steps__disabled_yvcgu):hover {
|
|
50
50
|
cursor: pointer;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.steps__step_yvcgu.steps__disabled_yvcgu:hover .steps__text_yvcgu {
|
|
53
53
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
54
54
|
background: initial;
|
|
55
55
|
}
|
|
56
|
-
.
|
|
56
|
+
.steps__step_yvcgu.steps__disabled_yvcgu .steps__indicator_yvcgu {
|
|
57
57
|
cursor: inherit;
|
|
58
58
|
}
|
|
59
|
-
.
|
|
59
|
+
.steps__indicator_yvcgu {
|
|
60
60
|
cursor: pointer;
|
|
61
61
|
display: flex;
|
|
62
62
|
align-items: center;
|
|
63
63
|
margin-right: var(--gap-4);
|
|
64
64
|
}
|
|
65
|
-
.
|
|
65
|
+
.steps__indicator_yvcgu.steps__vertical_yvcgu {
|
|
66
66
|
flex-direction: column;
|
|
67
67
|
margin-right: var(--gap-8);
|
|
68
68
|
}
|
|
69
|
-
.
|
|
69
|
+
.steps__option_yvcgu {
|
|
70
70
|
font-size: 14px;
|
|
71
71
|
line-height: 20px;
|
|
72
72
|
font-weight: 700;
|
|
@@ -81,19 +81,19 @@
|
|
|
81
81
|
height: 24px;
|
|
82
82
|
border-radius: var(--border-radius-circle);
|
|
83
83
|
}
|
|
84
|
-
.
|
|
84
|
+
.steps__option_yvcgu.steps__vertical_yvcgu {
|
|
85
85
|
margin-top: var(--gap-8);
|
|
86
86
|
}
|
|
87
|
-
.
|
|
87
|
+
.steps__dash_yvcgu {
|
|
88
88
|
flex: 1 1 auto;
|
|
89
89
|
min-width: 24px;
|
|
90
90
|
border-top: 2px solid var(--color-light-neutral-translucent-300);
|
|
91
91
|
margin-right: var(--gap-8);
|
|
92
92
|
}
|
|
93
|
-
.
|
|
93
|
+
.steps__dash_yvcgu.steps__completed_yvcgu {
|
|
94
94
|
border-top: var(--steps-dash-border);
|
|
95
95
|
}
|
|
96
|
-
.
|
|
96
|
+
.steps__dash_yvcgu.steps__vertical_yvcgu {
|
|
97
97
|
min-width: 0;
|
|
98
98
|
min-width: initial;
|
|
99
99
|
min-height: 8px;
|
|
@@ -102,22 +102,22 @@
|
|
|
102
102
|
border-left: 2px solid var(--color-light-neutral-translucent-300);
|
|
103
103
|
border-top: none;
|
|
104
104
|
}
|
|
105
|
-
.
|
|
105
|
+
.steps__dash_yvcgu.steps__completed_yvcgu.steps__vertical_yvcgu {
|
|
106
106
|
border-left: var(--steps-dash-border);
|
|
107
107
|
}
|
|
108
|
-
.
|
|
108
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu {
|
|
109
109
|
min-height: 48px;
|
|
110
110
|
}
|
|
111
|
-
.
|
|
111
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu.steps__gap-24_yvcgu {
|
|
112
112
|
margin-bottom: var(--gap-8);
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu.steps__gap-32_yvcgu {
|
|
115
115
|
margin-bottom: var(--gap-16);
|
|
116
116
|
}
|
|
117
|
-
.
|
|
117
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu.steps__fullWidth_yvcgu {
|
|
118
118
|
width: 100%;
|
|
119
119
|
}
|
|
120
|
-
.
|
|
120
|
+
.steps__text_yvcgu {
|
|
121
121
|
font-size: 16px;
|
|
122
122
|
line-height: 24px;
|
|
123
123
|
font-weight: 400;
|
|
@@ -131,24 +131,24 @@
|
|
|
131
131
|
height: min-content;
|
|
132
132
|
box-sizing: border-box;
|
|
133
133
|
}
|
|
134
|
-
.
|
|
134
|
+
.steps__text_yvcgu.steps__interactive_yvcgu:not(.steps__disabled_yvcgu):hover {
|
|
135
135
|
background: var(--color-light-transparent-default-hover);
|
|
136
136
|
}
|
|
137
|
-
.
|
|
137
|
+
.steps__text_yvcgu.steps__interactive_yvcgu:not(.steps__disabled_yvcgu):active {
|
|
138
138
|
background: var(--color-light-transparent-default-press);
|
|
139
139
|
}
|
|
140
|
-
.
|
|
140
|
+
.steps__focused_yvcgu {
|
|
141
141
|
outline: var(--gap-2) solid var(--focus-color);
|
|
142
142
|
outline-offset: var(--gap-2);
|
|
143
143
|
}
|
|
144
|
-
.
|
|
144
|
+
.steps__selected_yvcgu .steps__text_yvcgu {
|
|
145
145
|
color: var(--color-light-text-primary);
|
|
146
146
|
}
|
|
147
|
-
.
|
|
147
|
+
.steps__selected_yvcgu .steps__option_yvcgu {
|
|
148
148
|
color: var(--color-light-text-primary-inverted);
|
|
149
149
|
background: var(--color-light-neutral-translucent-1300);
|
|
150
150
|
}
|
|
151
|
-
.
|
|
151
|
+
.steps__checkbox_yvcgu {
|
|
152
152
|
display: flex;
|
|
153
153
|
justify-content: center;
|
|
154
154
|
align-items: center;
|
|
@@ -157,25 +157,25 @@
|
|
|
157
157
|
height: 20px;
|
|
158
158
|
border: 2px solid var(--color-light-neutral-translucent-300);
|
|
159
159
|
}
|
|
160
|
-
.
|
|
160
|
+
.steps__dot_yvcgu {
|
|
161
161
|
width: 10px;
|
|
162
162
|
height: 10px;
|
|
163
163
|
border-radius: var(--border-radius-circle);
|
|
164
164
|
background: var(--color-light-neutral-translucent-300);
|
|
165
165
|
}
|
|
166
|
-
.
|
|
166
|
+
.steps__selected_yvcgu .steps__checkbox_yvcgu {
|
|
167
167
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
168
168
|
}
|
|
169
|
-
.
|
|
169
|
+
.steps__selected_yvcgu .steps__checkbox_yvcgu .steps__dot_yvcgu {
|
|
170
170
|
background: var(--color-light-neutral-translucent-1300);
|
|
171
171
|
}
|
|
172
|
-
.
|
|
172
|
+
.steps__option_yvcgu:not(.steps__error_yvcgu).steps__unordered_yvcgu {
|
|
173
173
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
174
174
|
background: initial;
|
|
175
175
|
}
|
|
176
|
-
.
|
|
176
|
+
.steps__completedIndicator_yvcgu[class*='positive-checkmark'] {
|
|
177
177
|
background-color: var(--steps-option-svg-color);
|
|
178
178
|
}
|
|
179
|
-
.
|
|
179
|
+
.steps__fullWidth_yvcgu {
|
|
180
180
|
width: 100%;
|
|
181
181
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
require('./index.css');
|
|
4
4
|
|
|
5
|
-
var styles = {"step":"
|
|
5
|
+
var styles = {"step":"steps__step_yvcgu","horizontal":"steps__horizontal_yvcgu","vertical":"steps__vertical_yvcgu","textWrapper":"steps__textWrapper_yvcgu","interactive":"steps__interactive_yvcgu","disabled":"steps__disabled_yvcgu","text":"steps__text_yvcgu","indicator":"steps__indicator_yvcgu","option":"steps__option_yvcgu","dash":"steps__dash_yvcgu","completed":"steps__completed_yvcgu","gap-24":"steps__gap-24_yvcgu","gap-32":"steps__gap-32_yvcgu","fullWidth":"steps__fullWidth_yvcgu","focused":"steps__focused_yvcgu","selected":"steps__selected_yvcgu","checkbox":"steps__checkbox_yvcgu","dot":"steps__dot_yvcgu","error":"steps__error_yvcgu","unordered":"steps__unordered_yvcgu","completedIndicator":"steps__completedIndicator_yvcgu"};
|
|
6
6
|
|
|
7
7
|
module.exports = styles;
|
|
8
8
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -33,40 +33,40 @@
|
|
|
33
33
|
--steps-option-svg-color: var(--color-light-status-positive);
|
|
34
34
|
--steps-dash-border: 2px solid var(--color-light-status-positive);
|
|
35
35
|
}
|
|
36
|
-
.
|
|
36
|
+
.steps__step_yvcgu {
|
|
37
37
|
display: flex;
|
|
38
38
|
outline: none;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.steps__step_yvcgu.steps__horizontal_yvcgu {
|
|
41
41
|
flex-grow: 1;
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.steps__step_yvcgu:not(.steps__vertical_yvcgu) {
|
|
44
44
|
align-items: center;
|
|
45
45
|
}
|
|
46
|
-
.
|
|
46
|
+
.steps__step_yvcgu:last-of-type .steps__textWrapper_yvcgu.steps__vertical_yvcgu {
|
|
47
47
|
margin-bottom: var(--gap-0);
|
|
48
48
|
}
|
|
49
|
-
.
|
|
49
|
+
.steps__step_yvcgu.steps__interactive_yvcgu:not(.steps__disabled_yvcgu):hover {
|
|
50
50
|
cursor: pointer;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.steps__step_yvcgu.steps__disabled_yvcgu:hover .steps__text_yvcgu {
|
|
53
53
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
54
54
|
background: initial;
|
|
55
55
|
}
|
|
56
|
-
.
|
|
56
|
+
.steps__step_yvcgu.steps__disabled_yvcgu .steps__indicator_yvcgu {
|
|
57
57
|
cursor: inherit;
|
|
58
58
|
}
|
|
59
|
-
.
|
|
59
|
+
.steps__indicator_yvcgu {
|
|
60
60
|
cursor: pointer;
|
|
61
61
|
display: flex;
|
|
62
62
|
align-items: center;
|
|
63
63
|
margin-right: var(--gap-4);
|
|
64
64
|
}
|
|
65
|
-
.
|
|
65
|
+
.steps__indicator_yvcgu.steps__vertical_yvcgu {
|
|
66
66
|
flex-direction: column;
|
|
67
67
|
margin-right: var(--gap-8);
|
|
68
68
|
}
|
|
69
|
-
.
|
|
69
|
+
.steps__option_yvcgu {
|
|
70
70
|
font-size: 14px;
|
|
71
71
|
line-height: 20px;
|
|
72
72
|
font-weight: 700;
|
|
@@ -81,19 +81,19 @@
|
|
|
81
81
|
height: 24px;
|
|
82
82
|
border-radius: var(--border-radius-circle);
|
|
83
83
|
}
|
|
84
|
-
.
|
|
84
|
+
.steps__option_yvcgu.steps__vertical_yvcgu {
|
|
85
85
|
margin-top: var(--gap-8);
|
|
86
86
|
}
|
|
87
|
-
.
|
|
87
|
+
.steps__dash_yvcgu {
|
|
88
88
|
flex: 1 1 auto;
|
|
89
89
|
min-width: 24px;
|
|
90
90
|
border-top: 2px solid var(--color-light-neutral-translucent-300);
|
|
91
91
|
margin-right: var(--gap-8);
|
|
92
92
|
}
|
|
93
|
-
.
|
|
93
|
+
.steps__dash_yvcgu.steps__completed_yvcgu {
|
|
94
94
|
border-top: var(--steps-dash-border);
|
|
95
95
|
}
|
|
96
|
-
.
|
|
96
|
+
.steps__dash_yvcgu.steps__vertical_yvcgu {
|
|
97
97
|
min-width: 0;
|
|
98
98
|
min-width: initial;
|
|
99
99
|
min-height: 8px;
|
|
@@ -102,22 +102,22 @@
|
|
|
102
102
|
border-left: 2px solid var(--color-light-neutral-translucent-300);
|
|
103
103
|
border-top: none;
|
|
104
104
|
}
|
|
105
|
-
.
|
|
105
|
+
.steps__dash_yvcgu.steps__completed_yvcgu.steps__vertical_yvcgu {
|
|
106
106
|
border-left: var(--steps-dash-border);
|
|
107
107
|
}
|
|
108
|
-
.
|
|
108
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu {
|
|
109
109
|
min-height: 48px;
|
|
110
110
|
}
|
|
111
|
-
.
|
|
111
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu.steps__gap-24_yvcgu {
|
|
112
112
|
margin-bottom: var(--gap-8);
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu.steps__gap-32_yvcgu {
|
|
115
115
|
margin-bottom: var(--gap-16);
|
|
116
116
|
}
|
|
117
|
-
.
|
|
117
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu.steps__fullWidth_yvcgu {
|
|
118
118
|
width: 100%;
|
|
119
119
|
}
|
|
120
|
-
.
|
|
120
|
+
.steps__text_yvcgu {
|
|
121
121
|
font-size: 16px;
|
|
122
122
|
line-height: 24px;
|
|
123
123
|
font-weight: 400;
|
|
@@ -131,24 +131,24 @@
|
|
|
131
131
|
height: min-content;
|
|
132
132
|
box-sizing: border-box;
|
|
133
133
|
}
|
|
134
|
-
.
|
|
134
|
+
.steps__text_yvcgu.steps__interactive_yvcgu:not(.steps__disabled_yvcgu):hover {
|
|
135
135
|
background: var(--color-light-transparent-default-hover);
|
|
136
136
|
}
|
|
137
|
-
.
|
|
137
|
+
.steps__text_yvcgu.steps__interactive_yvcgu:not(.steps__disabled_yvcgu):active {
|
|
138
138
|
background: var(--color-light-transparent-default-press);
|
|
139
139
|
}
|
|
140
|
-
.
|
|
140
|
+
.steps__focused_yvcgu {
|
|
141
141
|
outline: var(--gap-2) solid var(--focus-color);
|
|
142
142
|
outline-offset: var(--gap-2);
|
|
143
143
|
}
|
|
144
|
-
.
|
|
144
|
+
.steps__selected_yvcgu .steps__text_yvcgu {
|
|
145
145
|
color: var(--color-light-text-primary);
|
|
146
146
|
}
|
|
147
|
-
.
|
|
147
|
+
.steps__selected_yvcgu .steps__option_yvcgu {
|
|
148
148
|
color: var(--color-light-text-primary-inverted);
|
|
149
149
|
background: var(--color-light-neutral-translucent-1300);
|
|
150
150
|
}
|
|
151
|
-
.
|
|
151
|
+
.steps__checkbox_yvcgu {
|
|
152
152
|
display: flex;
|
|
153
153
|
justify-content: center;
|
|
154
154
|
align-items: center;
|
|
@@ -157,25 +157,25 @@
|
|
|
157
157
|
height: 20px;
|
|
158
158
|
border: 2px solid var(--color-light-neutral-translucent-300);
|
|
159
159
|
}
|
|
160
|
-
.
|
|
160
|
+
.steps__dot_yvcgu {
|
|
161
161
|
width: 10px;
|
|
162
162
|
height: 10px;
|
|
163
163
|
border-radius: var(--border-radius-circle);
|
|
164
164
|
background: var(--color-light-neutral-translucent-300);
|
|
165
165
|
}
|
|
166
|
-
.
|
|
166
|
+
.steps__selected_yvcgu .steps__checkbox_yvcgu {
|
|
167
167
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
168
168
|
}
|
|
169
|
-
.
|
|
169
|
+
.steps__selected_yvcgu .steps__checkbox_yvcgu .steps__dot_yvcgu {
|
|
170
170
|
background: var(--color-light-neutral-translucent-1300);
|
|
171
171
|
}
|
|
172
|
-
.
|
|
172
|
+
.steps__option_yvcgu:not(.steps__error_yvcgu).steps__unordered_yvcgu {
|
|
173
173
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
174
174
|
background: initial;
|
|
175
175
|
}
|
|
176
|
-
.
|
|
176
|
+
.steps__completedIndicator_yvcgu[class*='positive-checkmark'] {
|
|
177
177
|
background-color: var(--steps-option-svg-color);
|
|
178
178
|
}
|
|
179
|
-
.
|
|
179
|
+
.steps__fullWidth_yvcgu {
|
|
180
180
|
width: 100%;
|
|
181
181
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
var styles = {"step":"
|
|
3
|
+
var styles = {"step":"steps__step_yvcgu","horizontal":"steps__horizontal_yvcgu","vertical":"steps__vertical_yvcgu","textWrapper":"steps__textWrapper_yvcgu","interactive":"steps__interactive_yvcgu","disabled":"steps__disabled_yvcgu","text":"steps__text_yvcgu","indicator":"steps__indicator_yvcgu","option":"steps__option_yvcgu","dash":"steps__dash_yvcgu","completed":"steps__completed_yvcgu","gap-24":"steps__gap-24_yvcgu","gap-32":"steps__gap-32_yvcgu","fullWidth":"steps__fullWidth_yvcgu","focused":"steps__focused_yvcgu","selected":"steps__selected_yvcgu","checkbox":"steps__checkbox_yvcgu","dot":"steps__dot_yvcgu","error":"steps__error_yvcgu","unordered":"steps__unordered_yvcgu","completedIndicator":"steps__completedIndicator_yvcgu"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
package/esm/index.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
.
|
|
1
|
+
.steps__component_fu7we {
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
flex-direction: row;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.steps__component_fu7we.steps__vertical_fu7we {
|
|
7
7
|
flex-direction: column;
|
|
8
8
|
align-items: flex-start;
|
|
9
9
|
}
|
package/esm/index.module.css.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
var styles = {"component":"
|
|
3
|
+
var styles = {"component":"steps__component_fu7we","vertical":"steps__vertical_fu7we"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
package/index.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
.
|
|
1
|
+
.steps__component_fu7we {
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
flex-direction: row;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.steps__component_fu7we.steps__vertical_fu7we {
|
|
7
7
|
flex-direction: column;
|
|
8
8
|
align-items: flex-start;
|
|
9
9
|
}
|
package/index.module.css.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
require('./index.css');
|
|
4
4
|
|
|
5
|
-
var styles = {"component":"
|
|
5
|
+
var styles = {"component":"steps__component_fu7we","vertical":"steps__vertical_fu7we"};
|
|
6
6
|
|
|
7
7
|
module.exports = styles;
|
|
8
8
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -33,40 +33,40 @@
|
|
|
33
33
|
--steps-option-svg-color: var(--color-light-status-positive);
|
|
34
34
|
--steps-dash-border: 2px solid var(--color-light-status-positive);
|
|
35
35
|
}
|
|
36
|
-
.
|
|
36
|
+
.steps__step_yvcgu {
|
|
37
37
|
display: flex;
|
|
38
38
|
outline: none;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.steps__step_yvcgu.steps__horizontal_yvcgu {
|
|
41
41
|
flex-grow: 1;
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.steps__step_yvcgu:not(.steps__vertical_yvcgu) {
|
|
44
44
|
align-items: center;
|
|
45
45
|
}
|
|
46
|
-
.
|
|
46
|
+
.steps__step_yvcgu:last-of-type .steps__textWrapper_yvcgu.steps__vertical_yvcgu {
|
|
47
47
|
margin-bottom: var(--gap-0);
|
|
48
48
|
}
|
|
49
|
-
.
|
|
49
|
+
.steps__step_yvcgu.steps__interactive_yvcgu:not(.steps__disabled_yvcgu):hover {
|
|
50
50
|
cursor: pointer;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.steps__step_yvcgu.steps__disabled_yvcgu:hover .steps__text_yvcgu {
|
|
53
53
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
54
54
|
background: initial;
|
|
55
55
|
}
|
|
56
|
-
.
|
|
56
|
+
.steps__step_yvcgu.steps__disabled_yvcgu .steps__indicator_yvcgu {
|
|
57
57
|
cursor: inherit;
|
|
58
58
|
}
|
|
59
|
-
.
|
|
59
|
+
.steps__indicator_yvcgu {
|
|
60
60
|
cursor: pointer;
|
|
61
61
|
display: flex;
|
|
62
62
|
align-items: center;
|
|
63
63
|
margin-right: var(--gap-4);
|
|
64
64
|
}
|
|
65
|
-
.
|
|
65
|
+
.steps__indicator_yvcgu.steps__vertical_yvcgu {
|
|
66
66
|
flex-direction: column;
|
|
67
67
|
margin-right: var(--gap-8);
|
|
68
68
|
}
|
|
69
|
-
.
|
|
69
|
+
.steps__option_yvcgu {
|
|
70
70
|
font-size: 14px;
|
|
71
71
|
line-height: 20px;
|
|
72
72
|
font-weight: 700;
|
|
@@ -81,19 +81,19 @@
|
|
|
81
81
|
height: 24px;
|
|
82
82
|
border-radius: var(--border-radius-circle);
|
|
83
83
|
}
|
|
84
|
-
.
|
|
84
|
+
.steps__option_yvcgu.steps__vertical_yvcgu {
|
|
85
85
|
margin-top: var(--gap-8);
|
|
86
86
|
}
|
|
87
|
-
.
|
|
87
|
+
.steps__dash_yvcgu {
|
|
88
88
|
flex: 1 1 auto;
|
|
89
89
|
min-width: 24px;
|
|
90
90
|
border-top: 2px solid var(--color-light-neutral-translucent-300);
|
|
91
91
|
margin-right: var(--gap-8);
|
|
92
92
|
}
|
|
93
|
-
.
|
|
93
|
+
.steps__dash_yvcgu.steps__completed_yvcgu {
|
|
94
94
|
border-top: var(--steps-dash-border);
|
|
95
95
|
}
|
|
96
|
-
.
|
|
96
|
+
.steps__dash_yvcgu.steps__vertical_yvcgu {
|
|
97
97
|
min-width: 0;
|
|
98
98
|
min-width: initial;
|
|
99
99
|
min-height: 8px;
|
|
@@ -102,22 +102,22 @@
|
|
|
102
102
|
border-left: 2px solid var(--color-light-neutral-translucent-300);
|
|
103
103
|
border-top: none;
|
|
104
104
|
}
|
|
105
|
-
.
|
|
105
|
+
.steps__dash_yvcgu.steps__completed_yvcgu.steps__vertical_yvcgu {
|
|
106
106
|
border-left: var(--steps-dash-border);
|
|
107
107
|
}
|
|
108
|
-
.
|
|
108
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu {
|
|
109
109
|
min-height: 48px;
|
|
110
110
|
}
|
|
111
|
-
.
|
|
111
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu.steps__gap-24_yvcgu {
|
|
112
112
|
margin-bottom: var(--gap-8);
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu.steps__gap-32_yvcgu {
|
|
115
115
|
margin-bottom: var(--gap-16);
|
|
116
116
|
}
|
|
117
|
-
.
|
|
117
|
+
.steps__textWrapper_yvcgu.steps__vertical_yvcgu.steps__fullWidth_yvcgu {
|
|
118
118
|
width: 100%;
|
|
119
119
|
}
|
|
120
|
-
.
|
|
120
|
+
.steps__text_yvcgu {
|
|
121
121
|
font-size: 16px;
|
|
122
122
|
line-height: 24px;
|
|
123
123
|
font-weight: 400;
|
|
@@ -131,24 +131,24 @@
|
|
|
131
131
|
height: min-content;
|
|
132
132
|
box-sizing: border-box;
|
|
133
133
|
}
|
|
134
|
-
.
|
|
134
|
+
.steps__text_yvcgu.steps__interactive_yvcgu:not(.steps__disabled_yvcgu):hover {
|
|
135
135
|
background: var(--color-light-transparent-default-hover);
|
|
136
136
|
}
|
|
137
|
-
.
|
|
137
|
+
.steps__text_yvcgu.steps__interactive_yvcgu:not(.steps__disabled_yvcgu):active {
|
|
138
138
|
background: var(--color-light-transparent-default-press);
|
|
139
139
|
}
|
|
140
|
-
.
|
|
140
|
+
.steps__focused_yvcgu {
|
|
141
141
|
outline: var(--gap-2) solid var(--focus-color);
|
|
142
142
|
outline-offset: var(--gap-2);
|
|
143
143
|
}
|
|
144
|
-
.
|
|
144
|
+
.steps__selected_yvcgu .steps__text_yvcgu {
|
|
145
145
|
color: var(--color-light-text-primary);
|
|
146
146
|
}
|
|
147
|
-
.
|
|
147
|
+
.steps__selected_yvcgu .steps__option_yvcgu {
|
|
148
148
|
color: var(--color-light-text-primary-inverted);
|
|
149
149
|
background: var(--color-light-neutral-translucent-1300);
|
|
150
150
|
}
|
|
151
|
-
.
|
|
151
|
+
.steps__checkbox_yvcgu {
|
|
152
152
|
display: flex;
|
|
153
153
|
justify-content: center;
|
|
154
154
|
align-items: center;
|
|
@@ -157,25 +157,25 @@
|
|
|
157
157
|
height: 20px;
|
|
158
158
|
border: 2px solid var(--color-light-neutral-translucent-300);
|
|
159
159
|
}
|
|
160
|
-
.
|
|
160
|
+
.steps__dot_yvcgu {
|
|
161
161
|
width: 10px;
|
|
162
162
|
height: 10px;
|
|
163
163
|
border-radius: var(--border-radius-circle);
|
|
164
164
|
background: var(--color-light-neutral-translucent-300);
|
|
165
165
|
}
|
|
166
|
-
.
|
|
166
|
+
.steps__selected_yvcgu .steps__checkbox_yvcgu {
|
|
167
167
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
168
168
|
}
|
|
169
|
-
.
|
|
169
|
+
.steps__selected_yvcgu .steps__checkbox_yvcgu .steps__dot_yvcgu {
|
|
170
170
|
background: var(--color-light-neutral-translucent-1300);
|
|
171
171
|
}
|
|
172
|
-
.
|
|
172
|
+
.steps__option_yvcgu:not(.steps__error_yvcgu).steps__unordered_yvcgu {
|
|
173
173
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
174
174
|
background: initial;
|
|
175
175
|
}
|
|
176
|
-
.
|
|
176
|
+
.steps__completedIndicator_yvcgu[class*='positive-checkmark'] {
|
|
177
177
|
background-color: var(--steps-option-svg-color);
|
|
178
178
|
}
|
|
179
|
-
.
|
|
179
|
+
.steps__fullWidth_yvcgu {
|
|
180
180
|
width: 100%;
|
|
181
181
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
const styles = {"step":"
|
|
3
|
+
const styles = {"step":"steps__step_yvcgu","horizontal":"steps__horizontal_yvcgu","vertical":"steps__vertical_yvcgu","textWrapper":"steps__textWrapper_yvcgu","interactive":"steps__interactive_yvcgu","disabled":"steps__disabled_yvcgu","text":"steps__text_yvcgu","indicator":"steps__indicator_yvcgu","option":"steps__option_yvcgu","dash":"steps__dash_yvcgu","completed":"steps__completed_yvcgu","gap-24":"steps__gap-24_yvcgu","gap-32":"steps__gap-32_yvcgu","fullWidth":"steps__fullWidth_yvcgu","focused":"steps__focused_yvcgu","selected":"steps__selected_yvcgu","checkbox":"steps__checkbox_yvcgu","dot":"steps__dot_yvcgu","error":"steps__error_yvcgu","unordered":"steps__unordered_yvcgu","completedIndicator":"steps__completedIndicator_yvcgu"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
package/modern/index.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
.
|
|
1
|
+
.steps__component_fu7we {
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
flex-direction: row;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.steps__component_fu7we.steps__vertical_fu7we {
|
|
7
7
|
flex-direction: column;
|
|
8
8
|
align-items: flex-start;
|
|
9
9
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
const styles = {"component":"
|
|
3
|
+
const styles = {"component":"steps__component_fu7we","vertical":"steps__vertical_fu7we"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfalab/core-components-steps",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@alfalab/core-components-badge": "^7.0.2",
|
|
17
|
-
"@alfalab/core-components-shared": "2.2.
|
|
17
|
+
"@alfalab/core-components-shared": "^2.2.1",
|
|
18
18
|
"@alfalab/core-components-status-badge": "^3.0.2",
|
|
19
|
-
"@alfalab/hooks": "^1.
|
|
19
|
+
"@alfalab/hooks": "^1.17.0",
|
|
20
20
|
"classnames": "^2.5.1",
|
|
21
21
|
"tslib": "^2.4.0"
|
|
22
22
|
},
|
|
@@ -28,6 +28,6 @@
|
|
|
28
28
|
"access": "public",
|
|
29
29
|
"directory": "dist"
|
|
30
30
|
},
|
|
31
|
-
"themesVersion": "15.0
|
|
32
|
-
"varsVersion": "11.0
|
|
31
|
+
"themesVersion": "15.1.0",
|
|
32
|
+
"varsVersion": "11.1.0"
|
|
33
33
|
}
|