@alfalab/core-components-steps 3.0.1 → 3.0.2
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 +31 -31
- 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 +31 -31
- 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 +31 -31
- 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 +2 -2
|
@@ -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_13cd7 {
|
|
37
37
|
display: flex;
|
|
38
38
|
outline: none;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.steps__step_13cd7.steps__horizontal_13cd7 {
|
|
41
41
|
flex-grow: 1;
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.steps__step_13cd7:not(.steps__vertical_13cd7) {
|
|
44
44
|
align-items: center;
|
|
45
45
|
}
|
|
46
|
-
.
|
|
46
|
+
.steps__step_13cd7:last-of-type .steps__textWrapper_13cd7.steps__vertical_13cd7 {
|
|
47
47
|
margin-bottom: var(--gap-0);
|
|
48
48
|
}
|
|
49
|
-
.
|
|
49
|
+
.steps__step_13cd7.steps__interactive_13cd7:not(.steps__disabled_13cd7):hover {
|
|
50
50
|
cursor: pointer;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.steps__step_13cd7.steps__disabled_13cd7:hover .steps__text_13cd7 {
|
|
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_13cd7.steps__disabled_13cd7 .steps__indicator_13cd7 {
|
|
57
57
|
cursor: inherit;
|
|
58
58
|
}
|
|
59
|
-
.
|
|
59
|
+
.steps__indicator_13cd7 {
|
|
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_13cd7.steps__vertical_13cd7 {
|
|
66
66
|
flex-direction: column;
|
|
67
67
|
margin-right: var(--gap-8);
|
|
68
68
|
}
|
|
69
|
-
.
|
|
69
|
+
.steps__option_13cd7 {
|
|
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_13cd7.steps__vertical_13cd7 {
|
|
85
85
|
margin-top: var(--gap-8);
|
|
86
86
|
}
|
|
87
|
-
.
|
|
87
|
+
.steps__dash_13cd7 {
|
|
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_13cd7.steps__completed_13cd7 {
|
|
94
94
|
border-top: var(--steps-dash-border);
|
|
95
95
|
}
|
|
96
|
-
.
|
|
96
|
+
.steps__dash_13cd7.steps__vertical_13cd7 {
|
|
97
97
|
min-width: 0;
|
|
98
98
|
min-width: initial;
|
|
99
99
|
min-height: 8px;
|
|
@@ -102,19 +102,19 @@
|
|
|
102
102
|
border-left: 2px solid var(--color-light-neutral-translucent-300);
|
|
103
103
|
border-top: none;
|
|
104
104
|
}
|
|
105
|
-
.
|
|
105
|
+
.steps__dash_13cd7.steps__completed_13cd7.steps__vertical_13cd7 {
|
|
106
106
|
border-left: var(--steps-dash-border);
|
|
107
107
|
}
|
|
108
|
-
.
|
|
108
|
+
.steps__textWrapper_13cd7.steps__vertical_13cd7 {
|
|
109
109
|
min-height: 48px;
|
|
110
110
|
}
|
|
111
|
-
.
|
|
111
|
+
.steps__textWrapper_13cd7.steps__vertical_13cd7.steps__gap-24_13cd7 {
|
|
112
112
|
margin-bottom: var(--gap-8);
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.steps__textWrapper_13cd7.steps__vertical_13cd7.steps__gap-32_13cd7 {
|
|
115
115
|
margin-bottom: var(--gap-16);
|
|
116
116
|
}
|
|
117
|
-
.
|
|
117
|
+
.steps__text_13cd7 {
|
|
118
118
|
font-size: 16px;
|
|
119
119
|
line-height: 24px;
|
|
120
120
|
font-weight: 400;
|
|
@@ -127,24 +127,24 @@
|
|
|
127
127
|
height: -moz-min-content;
|
|
128
128
|
height: min-content;
|
|
129
129
|
}
|
|
130
|
-
.
|
|
130
|
+
.steps__text_13cd7.steps__interactive_13cd7:not(.steps__disabled_13cd7):hover {
|
|
131
131
|
background: var(--color-light-transparent-default-hover);
|
|
132
132
|
}
|
|
133
|
-
.
|
|
133
|
+
.steps__text_13cd7.steps__interactive_13cd7:not(.steps__disabled_13cd7):active {
|
|
134
134
|
background: var(--color-light-transparent-default-press);
|
|
135
135
|
}
|
|
136
|
-
.
|
|
136
|
+
.steps__focused_13cd7 {
|
|
137
137
|
outline: var(--gap-2) solid var(--focus-color);
|
|
138
138
|
outline-offset: var(--gap-2);
|
|
139
139
|
}
|
|
140
|
-
.
|
|
140
|
+
.steps__selected_13cd7 .steps__text_13cd7 {
|
|
141
141
|
color: var(--color-light-text-primary);
|
|
142
142
|
}
|
|
143
|
-
.
|
|
143
|
+
.steps__selected_13cd7 .steps__option_13cd7 {
|
|
144
144
|
color: var(--color-light-text-primary-inverted);
|
|
145
145
|
background: var(--color-light-neutral-translucent-1300);
|
|
146
146
|
}
|
|
147
|
-
.
|
|
147
|
+
.steps__checkbox_13cd7 {
|
|
148
148
|
display: flex;
|
|
149
149
|
justify-content: center;
|
|
150
150
|
align-items: center;
|
|
@@ -153,26 +153,26 @@
|
|
|
153
153
|
height: 20px;
|
|
154
154
|
border: 2px solid var(--color-light-neutral-translucent-300);
|
|
155
155
|
}
|
|
156
|
-
.
|
|
156
|
+
.steps__dot_13cd7 {
|
|
157
157
|
width: 10px;
|
|
158
158
|
height: 10px;
|
|
159
159
|
border-radius: var(--border-radius-circle);
|
|
160
160
|
background: var(--color-light-neutral-translucent-300);
|
|
161
161
|
}
|
|
162
|
-
.
|
|
162
|
+
.steps__selected_13cd7 .steps__checkbox_13cd7 {
|
|
163
163
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
164
164
|
}
|
|
165
|
-
.
|
|
165
|
+
.steps__selected_13cd7 .steps__checkbox_13cd7 .steps__dot_13cd7 {
|
|
166
166
|
background: var(--color-light-neutral-translucent-1300);
|
|
167
167
|
}
|
|
168
|
-
.
|
|
168
|
+
.steps__option_13cd7:not(.steps__error_13cd7).steps__unordered_13cd7 {
|
|
169
169
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
170
170
|
background: initial;
|
|
171
171
|
}
|
|
172
|
-
.
|
|
172
|
+
.steps__completedIndicator_13cd7 > [class*='positive'] {
|
|
173
173
|
color: var(--steps-option-svg-color);
|
|
174
174
|
background-color: var(--steps-option-svg-color);
|
|
175
175
|
}
|
|
176
|
-
.
|
|
176
|
+
.steps__fullWidth_13cd7 {
|
|
177
177
|
width: 100%;
|
|
178
178
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
require('./index.css');
|
|
4
4
|
|
|
5
|
-
var styles = {"step":"
|
|
5
|
+
var styles = {"step":"steps__step_13cd7","horizontal":"steps__horizontal_13cd7","vertical":"steps__vertical_13cd7","textWrapper":"steps__textWrapper_13cd7","interactive":"steps__interactive_13cd7","disabled":"steps__disabled_13cd7","text":"steps__text_13cd7","indicator":"steps__indicator_13cd7","option":"steps__option_13cd7","dash":"steps__dash_13cd7","completed":"steps__completed_13cd7","gap-24":"steps__gap-24_13cd7","gap-32":"steps__gap-32_13cd7","focused":"steps__focused_13cd7","selected":"steps__selected_13cd7","checkbox":"steps__checkbox_13cd7","dot":"steps__dot_13cd7","error":"steps__error_13cd7","unordered":"steps__unordered_13cd7","completedIndicator":"steps__completedIndicator_13cd7","fullWidth":"steps__fullWidth_13cd7"};
|
|
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_13cd7 {
|
|
37
37
|
display: flex;
|
|
38
38
|
outline: none;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.steps__step_13cd7.steps__horizontal_13cd7 {
|
|
41
41
|
flex-grow: 1;
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.steps__step_13cd7:not(.steps__vertical_13cd7) {
|
|
44
44
|
align-items: center;
|
|
45
45
|
}
|
|
46
|
-
.
|
|
46
|
+
.steps__step_13cd7:last-of-type .steps__textWrapper_13cd7.steps__vertical_13cd7 {
|
|
47
47
|
margin-bottom: var(--gap-0);
|
|
48
48
|
}
|
|
49
|
-
.
|
|
49
|
+
.steps__step_13cd7.steps__interactive_13cd7:not(.steps__disabled_13cd7):hover {
|
|
50
50
|
cursor: pointer;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.steps__step_13cd7.steps__disabled_13cd7:hover .steps__text_13cd7 {
|
|
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_13cd7.steps__disabled_13cd7 .steps__indicator_13cd7 {
|
|
57
57
|
cursor: inherit;
|
|
58
58
|
}
|
|
59
|
-
.
|
|
59
|
+
.steps__indicator_13cd7 {
|
|
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_13cd7.steps__vertical_13cd7 {
|
|
66
66
|
flex-direction: column;
|
|
67
67
|
margin-right: var(--gap-8);
|
|
68
68
|
}
|
|
69
|
-
.
|
|
69
|
+
.steps__option_13cd7 {
|
|
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_13cd7.steps__vertical_13cd7 {
|
|
85
85
|
margin-top: var(--gap-8);
|
|
86
86
|
}
|
|
87
|
-
.
|
|
87
|
+
.steps__dash_13cd7 {
|
|
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_13cd7.steps__completed_13cd7 {
|
|
94
94
|
border-top: var(--steps-dash-border);
|
|
95
95
|
}
|
|
96
|
-
.
|
|
96
|
+
.steps__dash_13cd7.steps__vertical_13cd7 {
|
|
97
97
|
min-width: 0;
|
|
98
98
|
min-width: initial;
|
|
99
99
|
min-height: 8px;
|
|
@@ -102,19 +102,19 @@
|
|
|
102
102
|
border-left: 2px solid var(--color-light-neutral-translucent-300);
|
|
103
103
|
border-top: none;
|
|
104
104
|
}
|
|
105
|
-
.
|
|
105
|
+
.steps__dash_13cd7.steps__completed_13cd7.steps__vertical_13cd7 {
|
|
106
106
|
border-left: var(--steps-dash-border);
|
|
107
107
|
}
|
|
108
|
-
.
|
|
108
|
+
.steps__textWrapper_13cd7.steps__vertical_13cd7 {
|
|
109
109
|
min-height: 48px;
|
|
110
110
|
}
|
|
111
|
-
.
|
|
111
|
+
.steps__textWrapper_13cd7.steps__vertical_13cd7.steps__gap-24_13cd7 {
|
|
112
112
|
margin-bottom: var(--gap-8);
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.steps__textWrapper_13cd7.steps__vertical_13cd7.steps__gap-32_13cd7 {
|
|
115
115
|
margin-bottom: var(--gap-16);
|
|
116
116
|
}
|
|
117
|
-
.
|
|
117
|
+
.steps__text_13cd7 {
|
|
118
118
|
font-size: 16px;
|
|
119
119
|
line-height: 24px;
|
|
120
120
|
font-weight: 400;
|
|
@@ -127,24 +127,24 @@
|
|
|
127
127
|
height: -moz-min-content;
|
|
128
128
|
height: min-content;
|
|
129
129
|
}
|
|
130
|
-
.
|
|
130
|
+
.steps__text_13cd7.steps__interactive_13cd7:not(.steps__disabled_13cd7):hover {
|
|
131
131
|
background: var(--color-light-transparent-default-hover);
|
|
132
132
|
}
|
|
133
|
-
.
|
|
133
|
+
.steps__text_13cd7.steps__interactive_13cd7:not(.steps__disabled_13cd7):active {
|
|
134
134
|
background: var(--color-light-transparent-default-press);
|
|
135
135
|
}
|
|
136
|
-
.
|
|
136
|
+
.steps__focused_13cd7 {
|
|
137
137
|
outline: var(--gap-2) solid var(--focus-color);
|
|
138
138
|
outline-offset: var(--gap-2);
|
|
139
139
|
}
|
|
140
|
-
.
|
|
140
|
+
.steps__selected_13cd7 .steps__text_13cd7 {
|
|
141
141
|
color: var(--color-light-text-primary);
|
|
142
142
|
}
|
|
143
|
-
.
|
|
143
|
+
.steps__selected_13cd7 .steps__option_13cd7 {
|
|
144
144
|
color: var(--color-light-text-primary-inverted);
|
|
145
145
|
background: var(--color-light-neutral-translucent-1300);
|
|
146
146
|
}
|
|
147
|
-
.
|
|
147
|
+
.steps__checkbox_13cd7 {
|
|
148
148
|
display: flex;
|
|
149
149
|
justify-content: center;
|
|
150
150
|
align-items: center;
|
|
@@ -153,26 +153,26 @@
|
|
|
153
153
|
height: 20px;
|
|
154
154
|
border: 2px solid var(--color-light-neutral-translucent-300);
|
|
155
155
|
}
|
|
156
|
-
.
|
|
156
|
+
.steps__dot_13cd7 {
|
|
157
157
|
width: 10px;
|
|
158
158
|
height: 10px;
|
|
159
159
|
border-radius: var(--border-radius-circle);
|
|
160
160
|
background: var(--color-light-neutral-translucent-300);
|
|
161
161
|
}
|
|
162
|
-
.
|
|
162
|
+
.steps__selected_13cd7 .steps__checkbox_13cd7 {
|
|
163
163
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
164
164
|
}
|
|
165
|
-
.
|
|
165
|
+
.steps__selected_13cd7 .steps__checkbox_13cd7 .steps__dot_13cd7 {
|
|
166
166
|
background: var(--color-light-neutral-translucent-1300);
|
|
167
167
|
}
|
|
168
|
-
.
|
|
168
|
+
.steps__option_13cd7:not(.steps__error_13cd7).steps__unordered_13cd7 {
|
|
169
169
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
170
170
|
background: initial;
|
|
171
171
|
}
|
|
172
|
-
.
|
|
172
|
+
.steps__completedIndicator_13cd7 > [class*='positive'] {
|
|
173
173
|
color: var(--steps-option-svg-color);
|
|
174
174
|
background-color: var(--steps-option-svg-color);
|
|
175
175
|
}
|
|
176
|
-
.
|
|
176
|
+
.steps__fullWidth_13cd7 {
|
|
177
177
|
width: 100%;
|
|
178
178
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
var styles = {"step":"
|
|
3
|
+
var styles = {"step":"steps__step_13cd7","horizontal":"steps__horizontal_13cd7","vertical":"steps__vertical_13cd7","textWrapper":"steps__textWrapper_13cd7","interactive":"steps__interactive_13cd7","disabled":"steps__disabled_13cd7","text":"steps__text_13cd7","indicator":"steps__indicator_13cd7","option":"steps__option_13cd7","dash":"steps__dash_13cd7","completed":"steps__completed_13cd7","gap-24":"steps__gap-24_13cd7","gap-32":"steps__gap-32_13cd7","focused":"steps__focused_13cd7","selected":"steps__selected_13cd7","checkbox":"steps__checkbox_13cd7","dot":"steps__dot_13cd7","error":"steps__error_13cd7","unordered":"steps__unordered_13cd7","completedIndicator":"steps__completedIndicator_13cd7","fullWidth":"steps__fullWidth_13cd7"};
|
|
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_1e4vf {
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
flex-direction: row;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.steps__component_1e4vf.steps__vertical_1e4vf {
|
|
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_1e4vf","vertical":"steps__vertical_1e4vf"};
|
|
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_1e4vf {
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
flex-direction: row;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.steps__component_1e4vf.steps__vertical_1e4vf {
|
|
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_1e4vf","vertical":"steps__vertical_1e4vf"};
|
|
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_13cd7 {
|
|
37
37
|
display: flex;
|
|
38
38
|
outline: none;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.steps__step_13cd7.steps__horizontal_13cd7 {
|
|
41
41
|
flex-grow: 1;
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.steps__step_13cd7:not(.steps__vertical_13cd7) {
|
|
44
44
|
align-items: center;
|
|
45
45
|
}
|
|
46
|
-
.
|
|
46
|
+
.steps__step_13cd7:last-of-type .steps__textWrapper_13cd7.steps__vertical_13cd7 {
|
|
47
47
|
margin-bottom: var(--gap-0);
|
|
48
48
|
}
|
|
49
|
-
.
|
|
49
|
+
.steps__step_13cd7.steps__interactive_13cd7:not(.steps__disabled_13cd7):hover {
|
|
50
50
|
cursor: pointer;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.steps__step_13cd7.steps__disabled_13cd7:hover .steps__text_13cd7 {
|
|
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_13cd7.steps__disabled_13cd7 .steps__indicator_13cd7 {
|
|
57
57
|
cursor: inherit;
|
|
58
58
|
}
|
|
59
|
-
.
|
|
59
|
+
.steps__indicator_13cd7 {
|
|
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_13cd7.steps__vertical_13cd7 {
|
|
66
66
|
flex-direction: column;
|
|
67
67
|
margin-right: var(--gap-8);
|
|
68
68
|
}
|
|
69
|
-
.
|
|
69
|
+
.steps__option_13cd7 {
|
|
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_13cd7.steps__vertical_13cd7 {
|
|
85
85
|
margin-top: var(--gap-8);
|
|
86
86
|
}
|
|
87
|
-
.
|
|
87
|
+
.steps__dash_13cd7 {
|
|
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_13cd7.steps__completed_13cd7 {
|
|
94
94
|
border-top: var(--steps-dash-border);
|
|
95
95
|
}
|
|
96
|
-
.
|
|
96
|
+
.steps__dash_13cd7.steps__vertical_13cd7 {
|
|
97
97
|
min-width: 0;
|
|
98
98
|
min-width: initial;
|
|
99
99
|
min-height: 8px;
|
|
@@ -102,19 +102,19 @@
|
|
|
102
102
|
border-left: 2px solid var(--color-light-neutral-translucent-300);
|
|
103
103
|
border-top: none;
|
|
104
104
|
}
|
|
105
|
-
.
|
|
105
|
+
.steps__dash_13cd7.steps__completed_13cd7.steps__vertical_13cd7 {
|
|
106
106
|
border-left: var(--steps-dash-border);
|
|
107
107
|
}
|
|
108
|
-
.
|
|
108
|
+
.steps__textWrapper_13cd7.steps__vertical_13cd7 {
|
|
109
109
|
min-height: 48px;
|
|
110
110
|
}
|
|
111
|
-
.
|
|
111
|
+
.steps__textWrapper_13cd7.steps__vertical_13cd7.steps__gap-24_13cd7 {
|
|
112
112
|
margin-bottom: var(--gap-8);
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.steps__textWrapper_13cd7.steps__vertical_13cd7.steps__gap-32_13cd7 {
|
|
115
115
|
margin-bottom: var(--gap-16);
|
|
116
116
|
}
|
|
117
|
-
.
|
|
117
|
+
.steps__text_13cd7 {
|
|
118
118
|
font-size: 16px;
|
|
119
119
|
line-height: 24px;
|
|
120
120
|
font-weight: 400;
|
|
@@ -127,24 +127,24 @@
|
|
|
127
127
|
height: -moz-min-content;
|
|
128
128
|
height: min-content;
|
|
129
129
|
}
|
|
130
|
-
.
|
|
130
|
+
.steps__text_13cd7.steps__interactive_13cd7:not(.steps__disabled_13cd7):hover {
|
|
131
131
|
background: var(--color-light-transparent-default-hover);
|
|
132
132
|
}
|
|
133
|
-
.
|
|
133
|
+
.steps__text_13cd7.steps__interactive_13cd7:not(.steps__disabled_13cd7):active {
|
|
134
134
|
background: var(--color-light-transparent-default-press);
|
|
135
135
|
}
|
|
136
|
-
.
|
|
136
|
+
.steps__focused_13cd7 {
|
|
137
137
|
outline: var(--gap-2) solid var(--focus-color);
|
|
138
138
|
outline-offset: var(--gap-2);
|
|
139
139
|
}
|
|
140
|
-
.
|
|
140
|
+
.steps__selected_13cd7 .steps__text_13cd7 {
|
|
141
141
|
color: var(--color-light-text-primary);
|
|
142
142
|
}
|
|
143
|
-
.
|
|
143
|
+
.steps__selected_13cd7 .steps__option_13cd7 {
|
|
144
144
|
color: var(--color-light-text-primary-inverted);
|
|
145
145
|
background: var(--color-light-neutral-translucent-1300);
|
|
146
146
|
}
|
|
147
|
-
.
|
|
147
|
+
.steps__checkbox_13cd7 {
|
|
148
148
|
display: flex;
|
|
149
149
|
justify-content: center;
|
|
150
150
|
align-items: center;
|
|
@@ -153,26 +153,26 @@
|
|
|
153
153
|
height: 20px;
|
|
154
154
|
border: 2px solid var(--color-light-neutral-translucent-300);
|
|
155
155
|
}
|
|
156
|
-
.
|
|
156
|
+
.steps__dot_13cd7 {
|
|
157
157
|
width: 10px;
|
|
158
158
|
height: 10px;
|
|
159
159
|
border-radius: var(--border-radius-circle);
|
|
160
160
|
background: var(--color-light-neutral-translucent-300);
|
|
161
161
|
}
|
|
162
|
-
.
|
|
162
|
+
.steps__selected_13cd7 .steps__checkbox_13cd7 {
|
|
163
163
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
164
164
|
}
|
|
165
|
-
.
|
|
165
|
+
.steps__selected_13cd7 .steps__checkbox_13cd7 .steps__dot_13cd7 {
|
|
166
166
|
background: var(--color-light-neutral-translucent-1300);
|
|
167
167
|
}
|
|
168
|
-
.
|
|
168
|
+
.steps__option_13cd7:not(.steps__error_13cd7).steps__unordered_13cd7 {
|
|
169
169
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
170
170
|
background: initial;
|
|
171
171
|
}
|
|
172
|
-
.
|
|
172
|
+
.steps__completedIndicator_13cd7 > [class*='positive'] {
|
|
173
173
|
color: var(--steps-option-svg-color);
|
|
174
174
|
background-color: var(--steps-option-svg-color);
|
|
175
175
|
}
|
|
176
|
-
.
|
|
176
|
+
.steps__fullWidth_13cd7 {
|
|
177
177
|
width: 100%;
|
|
178
178
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
const styles = {"step":"
|
|
3
|
+
const styles = {"step":"steps__step_13cd7","horizontal":"steps__horizontal_13cd7","vertical":"steps__vertical_13cd7","textWrapper":"steps__textWrapper_13cd7","interactive":"steps__interactive_13cd7","disabled":"steps__disabled_13cd7","text":"steps__text_13cd7","indicator":"steps__indicator_13cd7","option":"steps__option_13cd7","dash":"steps__dash_13cd7","completed":"steps__completed_13cd7","gap-24":"steps__gap-24_13cd7","gap-32":"steps__gap-32_13cd7","focused":"steps__focused_13cd7","selected":"steps__selected_13cd7","checkbox":"steps__checkbox_13cd7","dot":"steps__dot_13cd7","error":"steps__error_13cd7","unordered":"steps__unordered_13cd7","completedIndicator":"steps__completedIndicator_13cd7","fullWidth":"steps__fullWidth_13cd7"};
|
|
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_1e4vf {
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
flex-direction: row;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.steps__component_1e4vf.steps__vertical_1e4vf {
|
|
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_1e4vf","vertical":"steps__vertical_1e4vf"};
|
|
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.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"module": "./esm/index.js",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@alfalab/core-components-badge": "^7.0.1",
|
|
14
|
-
"@alfalab/core-components-shared": "^2.0
|
|
14
|
+
"@alfalab/core-components-shared": "^2.1.0",
|
|
15
15
|
"@alfalab/hooks": "^1.13.1",
|
|
16
16
|
"@alfalab/icons-glyph": "^2.260.0",
|
|
17
17
|
"classnames": "^2.5.1",
|