@alfalab/core-components-steps 3.0.0 → 3.0.1
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 +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_giir9 {
|
|
37
37
|
display: flex;
|
|
38
38
|
outline: none;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.steps__step_giir9.steps__horizontal_giir9 {
|
|
41
41
|
flex-grow: 1;
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.steps__step_giir9:not(.steps__vertical_giir9) {
|
|
44
44
|
align-items: center;
|
|
45
45
|
}
|
|
46
|
-
.
|
|
46
|
+
.steps__step_giir9:last-of-type .steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
47
47
|
margin-bottom: var(--gap-0);
|
|
48
48
|
}
|
|
49
|
-
.
|
|
49
|
+
.steps__step_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
50
50
|
cursor: pointer;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.steps__step_giir9.steps__disabled_giir9:hover .steps__text_giir9 {
|
|
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_giir9.steps__disabled_giir9 .steps__indicator_giir9 {
|
|
57
57
|
cursor: inherit;
|
|
58
58
|
}
|
|
59
|
-
.
|
|
59
|
+
.steps__indicator_giir9 {
|
|
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_giir9.steps__vertical_giir9 {
|
|
66
66
|
flex-direction: column;
|
|
67
67
|
margin-right: var(--gap-8);
|
|
68
68
|
}
|
|
69
|
-
.
|
|
69
|
+
.steps__option_giir9 {
|
|
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_giir9.steps__vertical_giir9 {
|
|
85
85
|
margin-top: var(--gap-8);
|
|
86
86
|
}
|
|
87
|
-
.
|
|
87
|
+
.steps__dash_giir9 {
|
|
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_giir9.steps__completed_giir9 {
|
|
94
94
|
border-top: var(--steps-dash-border);
|
|
95
95
|
}
|
|
96
|
-
.
|
|
96
|
+
.steps__dash_giir9.steps__vertical_giir9 {
|
|
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_giir9.steps__completed_giir9.steps__vertical_giir9 {
|
|
106
106
|
border-left: var(--steps-dash-border);
|
|
107
107
|
}
|
|
108
|
-
.
|
|
108
|
+
.steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
109
109
|
min-height: 48px;
|
|
110
110
|
}
|
|
111
|
-
.
|
|
111
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-24_giir9 {
|
|
112
112
|
margin-bottom: var(--gap-8);
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-32_giir9 {
|
|
115
115
|
margin-bottom: var(--gap-16);
|
|
116
116
|
}
|
|
117
|
-
.
|
|
117
|
+
.steps__text_giir9 {
|
|
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_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
131
131
|
background: var(--color-light-transparent-default-hover);
|
|
132
132
|
}
|
|
133
|
-
.
|
|
133
|
+
.steps__text_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):active {
|
|
134
134
|
background: var(--color-light-transparent-default-press);
|
|
135
135
|
}
|
|
136
|
-
.
|
|
136
|
+
.steps__focused_giir9 {
|
|
137
137
|
outline: var(--gap-2) solid var(--focus-color);
|
|
138
138
|
outline-offset: var(--gap-2);
|
|
139
139
|
}
|
|
140
|
-
.
|
|
140
|
+
.steps__selected_giir9 .steps__text_giir9 {
|
|
141
141
|
color: var(--color-light-text-primary);
|
|
142
142
|
}
|
|
143
|
-
.
|
|
143
|
+
.steps__selected_giir9 .steps__option_giir9 {
|
|
144
144
|
color: var(--color-light-text-primary-inverted);
|
|
145
145
|
background: var(--color-light-neutral-translucent-1300);
|
|
146
146
|
}
|
|
147
|
-
.
|
|
147
|
+
.steps__checkbox_giir9 {
|
|
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_giir9 {
|
|
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_giir9 .steps__checkbox_giir9 {
|
|
163
163
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
164
164
|
}
|
|
165
|
-
.
|
|
165
|
+
.steps__selected_giir9 .steps__checkbox_giir9 .steps__dot_giir9 {
|
|
166
166
|
background: var(--color-light-neutral-translucent-1300);
|
|
167
167
|
}
|
|
168
|
-
.
|
|
168
|
+
.steps__option_giir9:not(.steps__error_giir9).steps__unordered_giir9 {
|
|
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_giir9 > [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_giir9 {
|
|
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_giir9","horizontal":"steps__horizontal_giir9","vertical":"steps__vertical_giir9","textWrapper":"steps__textWrapper_giir9","interactive":"steps__interactive_giir9","disabled":"steps__disabled_giir9","text":"steps__text_giir9","indicator":"steps__indicator_giir9","option":"steps__option_giir9","dash":"steps__dash_giir9","completed":"steps__completed_giir9","gap-24":"steps__gap-24_giir9","gap-32":"steps__gap-32_giir9","focused":"steps__focused_giir9","selected":"steps__selected_giir9","checkbox":"steps__checkbox_giir9","dot":"steps__dot_giir9","error":"steps__error_giir9","unordered":"steps__unordered_giir9","completedIndicator":"steps__completedIndicator_giir9","fullWidth":"steps__fullWidth_giir9"};
|
|
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_giir9 {
|
|
37
37
|
display: flex;
|
|
38
38
|
outline: none;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.steps__step_giir9.steps__horizontal_giir9 {
|
|
41
41
|
flex-grow: 1;
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.steps__step_giir9:not(.steps__vertical_giir9) {
|
|
44
44
|
align-items: center;
|
|
45
45
|
}
|
|
46
|
-
.
|
|
46
|
+
.steps__step_giir9:last-of-type .steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
47
47
|
margin-bottom: var(--gap-0);
|
|
48
48
|
}
|
|
49
|
-
.
|
|
49
|
+
.steps__step_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
50
50
|
cursor: pointer;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.steps__step_giir9.steps__disabled_giir9:hover .steps__text_giir9 {
|
|
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_giir9.steps__disabled_giir9 .steps__indicator_giir9 {
|
|
57
57
|
cursor: inherit;
|
|
58
58
|
}
|
|
59
|
-
.
|
|
59
|
+
.steps__indicator_giir9 {
|
|
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_giir9.steps__vertical_giir9 {
|
|
66
66
|
flex-direction: column;
|
|
67
67
|
margin-right: var(--gap-8);
|
|
68
68
|
}
|
|
69
|
-
.
|
|
69
|
+
.steps__option_giir9 {
|
|
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_giir9.steps__vertical_giir9 {
|
|
85
85
|
margin-top: var(--gap-8);
|
|
86
86
|
}
|
|
87
|
-
.
|
|
87
|
+
.steps__dash_giir9 {
|
|
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_giir9.steps__completed_giir9 {
|
|
94
94
|
border-top: var(--steps-dash-border);
|
|
95
95
|
}
|
|
96
|
-
.
|
|
96
|
+
.steps__dash_giir9.steps__vertical_giir9 {
|
|
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_giir9.steps__completed_giir9.steps__vertical_giir9 {
|
|
106
106
|
border-left: var(--steps-dash-border);
|
|
107
107
|
}
|
|
108
|
-
.
|
|
108
|
+
.steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
109
109
|
min-height: 48px;
|
|
110
110
|
}
|
|
111
|
-
.
|
|
111
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-24_giir9 {
|
|
112
112
|
margin-bottom: var(--gap-8);
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-32_giir9 {
|
|
115
115
|
margin-bottom: var(--gap-16);
|
|
116
116
|
}
|
|
117
|
-
.
|
|
117
|
+
.steps__text_giir9 {
|
|
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_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
131
131
|
background: var(--color-light-transparent-default-hover);
|
|
132
132
|
}
|
|
133
|
-
.
|
|
133
|
+
.steps__text_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):active {
|
|
134
134
|
background: var(--color-light-transparent-default-press);
|
|
135
135
|
}
|
|
136
|
-
.
|
|
136
|
+
.steps__focused_giir9 {
|
|
137
137
|
outline: var(--gap-2) solid var(--focus-color);
|
|
138
138
|
outline-offset: var(--gap-2);
|
|
139
139
|
}
|
|
140
|
-
.
|
|
140
|
+
.steps__selected_giir9 .steps__text_giir9 {
|
|
141
141
|
color: var(--color-light-text-primary);
|
|
142
142
|
}
|
|
143
|
-
.
|
|
143
|
+
.steps__selected_giir9 .steps__option_giir9 {
|
|
144
144
|
color: var(--color-light-text-primary-inverted);
|
|
145
145
|
background: var(--color-light-neutral-translucent-1300);
|
|
146
146
|
}
|
|
147
|
-
.
|
|
147
|
+
.steps__checkbox_giir9 {
|
|
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_giir9 {
|
|
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_giir9 .steps__checkbox_giir9 {
|
|
163
163
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
164
164
|
}
|
|
165
|
-
.
|
|
165
|
+
.steps__selected_giir9 .steps__checkbox_giir9 .steps__dot_giir9 {
|
|
166
166
|
background: var(--color-light-neutral-translucent-1300);
|
|
167
167
|
}
|
|
168
|
-
.
|
|
168
|
+
.steps__option_giir9:not(.steps__error_giir9).steps__unordered_giir9 {
|
|
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_giir9 > [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_giir9 {
|
|
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_giir9","horizontal":"steps__horizontal_giir9","vertical":"steps__vertical_giir9","textWrapper":"steps__textWrapper_giir9","interactive":"steps__interactive_giir9","disabled":"steps__disabled_giir9","text":"steps__text_giir9","indicator":"steps__indicator_giir9","option":"steps__option_giir9","dash":"steps__dash_giir9","completed":"steps__completed_giir9","gap-24":"steps__gap-24_giir9","gap-32":"steps__gap-32_giir9","focused":"steps__focused_giir9","selected":"steps__selected_giir9","checkbox":"steps__checkbox_giir9","dot":"steps__dot_giir9","error":"steps__error_giir9","unordered":"steps__unordered_giir9","completedIndicator":"steps__completedIndicator_giir9","fullWidth":"steps__fullWidth_giir9"};
|
|
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_16um7 {
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
flex-direction: row;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.steps__component_16um7.steps__vertical_16um7 {
|
|
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_16um7","vertical":"steps__vertical_16um7"};
|
|
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_16um7 {
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
flex-direction: row;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.steps__component_16um7.steps__vertical_16um7 {
|
|
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_16um7","vertical":"steps__vertical_16um7"};
|
|
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_giir9 {
|
|
37
37
|
display: flex;
|
|
38
38
|
outline: none;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.steps__step_giir9.steps__horizontal_giir9 {
|
|
41
41
|
flex-grow: 1;
|
|
42
42
|
}
|
|
43
|
-
.
|
|
43
|
+
.steps__step_giir9:not(.steps__vertical_giir9) {
|
|
44
44
|
align-items: center;
|
|
45
45
|
}
|
|
46
|
-
.
|
|
46
|
+
.steps__step_giir9:last-of-type .steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
47
47
|
margin-bottom: var(--gap-0);
|
|
48
48
|
}
|
|
49
|
-
.
|
|
49
|
+
.steps__step_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
50
50
|
cursor: pointer;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.steps__step_giir9.steps__disabled_giir9:hover .steps__text_giir9 {
|
|
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_giir9.steps__disabled_giir9 .steps__indicator_giir9 {
|
|
57
57
|
cursor: inherit;
|
|
58
58
|
}
|
|
59
|
-
.
|
|
59
|
+
.steps__indicator_giir9 {
|
|
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_giir9.steps__vertical_giir9 {
|
|
66
66
|
flex-direction: column;
|
|
67
67
|
margin-right: var(--gap-8);
|
|
68
68
|
}
|
|
69
|
-
.
|
|
69
|
+
.steps__option_giir9 {
|
|
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_giir9.steps__vertical_giir9 {
|
|
85
85
|
margin-top: var(--gap-8);
|
|
86
86
|
}
|
|
87
|
-
.
|
|
87
|
+
.steps__dash_giir9 {
|
|
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_giir9.steps__completed_giir9 {
|
|
94
94
|
border-top: var(--steps-dash-border);
|
|
95
95
|
}
|
|
96
|
-
.
|
|
96
|
+
.steps__dash_giir9.steps__vertical_giir9 {
|
|
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_giir9.steps__completed_giir9.steps__vertical_giir9 {
|
|
106
106
|
border-left: var(--steps-dash-border);
|
|
107
107
|
}
|
|
108
|
-
.
|
|
108
|
+
.steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
109
109
|
min-height: 48px;
|
|
110
110
|
}
|
|
111
|
-
.
|
|
111
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-24_giir9 {
|
|
112
112
|
margin-bottom: var(--gap-8);
|
|
113
113
|
}
|
|
114
|
-
.
|
|
114
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-32_giir9 {
|
|
115
115
|
margin-bottom: var(--gap-16);
|
|
116
116
|
}
|
|
117
|
-
.
|
|
117
|
+
.steps__text_giir9 {
|
|
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_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
131
131
|
background: var(--color-light-transparent-default-hover);
|
|
132
132
|
}
|
|
133
|
-
.
|
|
133
|
+
.steps__text_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):active {
|
|
134
134
|
background: var(--color-light-transparent-default-press);
|
|
135
135
|
}
|
|
136
|
-
.
|
|
136
|
+
.steps__focused_giir9 {
|
|
137
137
|
outline: var(--gap-2) solid var(--focus-color);
|
|
138
138
|
outline-offset: var(--gap-2);
|
|
139
139
|
}
|
|
140
|
-
.
|
|
140
|
+
.steps__selected_giir9 .steps__text_giir9 {
|
|
141
141
|
color: var(--color-light-text-primary);
|
|
142
142
|
}
|
|
143
|
-
.
|
|
143
|
+
.steps__selected_giir9 .steps__option_giir9 {
|
|
144
144
|
color: var(--color-light-text-primary-inverted);
|
|
145
145
|
background: var(--color-light-neutral-translucent-1300);
|
|
146
146
|
}
|
|
147
|
-
.
|
|
147
|
+
.steps__checkbox_giir9 {
|
|
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_giir9 {
|
|
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_giir9 .steps__checkbox_giir9 {
|
|
163
163
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
164
164
|
}
|
|
165
|
-
.
|
|
165
|
+
.steps__selected_giir9 .steps__checkbox_giir9 .steps__dot_giir9 {
|
|
166
166
|
background: var(--color-light-neutral-translucent-1300);
|
|
167
167
|
}
|
|
168
|
-
.
|
|
168
|
+
.steps__option_giir9:not(.steps__error_giir9).steps__unordered_giir9 {
|
|
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_giir9 > [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_giir9 {
|
|
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_giir9","horizontal":"steps__horizontal_giir9","vertical":"steps__vertical_giir9","textWrapper":"steps__textWrapper_giir9","interactive":"steps__interactive_giir9","disabled":"steps__disabled_giir9","text":"steps__text_giir9","indicator":"steps__indicator_giir9","option":"steps__option_giir9","dash":"steps__dash_giir9","completed":"steps__completed_giir9","gap-24":"steps__gap-24_giir9","gap-32":"steps__gap-32_giir9","focused":"steps__focused_giir9","selected":"steps__selected_giir9","checkbox":"steps__checkbox_giir9","dot":"steps__dot_giir9","error":"steps__error_giir9","unordered":"steps__unordered_giir9","completedIndicator":"steps__completedIndicator_giir9","fullWidth":"steps__fullWidth_giir9"};
|
|
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_16um7 {
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
flex-direction: row;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.steps__component_16um7.steps__vertical_16um7 {
|
|
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_16um7","vertical":"steps__vertical_16um7"};
|
|
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.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"main": "index.js",
|
|
11
11
|
"module": "./esm/index.js",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@alfalab/core-components-badge": "^7.0.
|
|
14
|
-
"@alfalab/core-components-shared": "^2.0.
|
|
13
|
+
"@alfalab/core-components-badge": "^7.0.1",
|
|
14
|
+
"@alfalab/core-components-shared": "^2.0.1",
|
|
15
15
|
"@alfalab/hooks": "^1.13.1",
|
|
16
16
|
"@alfalab/icons-glyph": "^2.260.0",
|
|
17
17
|
"classnames": "^2.5.1",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"access": "public",
|
|
26
26
|
"directory": "dist"
|
|
27
27
|
},
|
|
28
|
-
"themesVersion": "15.0.
|
|
29
|
-
"varsVersion": "11.0.
|
|
28
|
+
"themesVersion": "15.0.1",
|
|
29
|
+
"varsVersion": "11.0.1"
|
|
30
30
|
}
|