@alfalab/core-components-steps 3.0.1-alfasans → 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 +35 -38
- 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/cssm/components/step/index.module.css +4 -7
- package/esm/components/step/index.css +35 -38
- 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 +35 -38
- 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/moderncssm/components/step/index.module.css +2 -4
- package/package.json +5 -5
|
@@ -23,9 +23,8 @@
|
|
|
23
23
|
--gap-16: var(--gap-m);
|
|
24
24
|
}
|
|
25
25
|
:root {
|
|
26
|
-
--font-family-
|
|
27
|
-
|
|
28
|
-
Helvetica, sans-serif;
|
|
26
|
+
--font-family-system:
|
|
27
|
+
system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
|
|
29
28
|
}
|
|
30
29
|
:root {
|
|
31
30
|
--focus-color: var(--color-light-status-info);
|
|
@@ -34,45 +33,44 @@
|
|
|
34
33
|
--steps-option-svg-color: var(--color-light-status-positive);
|
|
35
34
|
--steps-dash-border: 2px solid var(--color-light-status-positive);
|
|
36
35
|
}
|
|
37
|
-
.
|
|
36
|
+
.steps__step_giir9 {
|
|
38
37
|
display: flex;
|
|
39
38
|
outline: none;
|
|
40
39
|
}
|
|
41
|
-
.
|
|
40
|
+
.steps__step_giir9.steps__horizontal_giir9 {
|
|
42
41
|
flex-grow: 1;
|
|
43
42
|
}
|
|
44
|
-
.
|
|
43
|
+
.steps__step_giir9:not(.steps__vertical_giir9) {
|
|
45
44
|
align-items: center;
|
|
46
45
|
}
|
|
47
|
-
.
|
|
46
|
+
.steps__step_giir9:last-of-type .steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
48
47
|
margin-bottom: var(--gap-0);
|
|
49
48
|
}
|
|
50
|
-
.
|
|
49
|
+
.steps__step_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
51
50
|
cursor: pointer;
|
|
52
51
|
}
|
|
53
|
-
.
|
|
52
|
+
.steps__step_giir9.steps__disabled_giir9:hover .steps__text_giir9 {
|
|
54
53
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
55
54
|
background: initial;
|
|
56
55
|
}
|
|
57
|
-
.
|
|
56
|
+
.steps__step_giir9.steps__disabled_giir9 .steps__indicator_giir9 {
|
|
58
57
|
cursor: inherit;
|
|
59
58
|
}
|
|
60
|
-
.
|
|
59
|
+
.steps__indicator_giir9 {
|
|
61
60
|
cursor: pointer;
|
|
62
61
|
display: flex;
|
|
63
62
|
align-items: center;
|
|
64
63
|
margin-right: var(--gap-4);
|
|
65
64
|
}
|
|
66
|
-
.
|
|
65
|
+
.steps__indicator_giir9.steps__vertical_giir9 {
|
|
67
66
|
flex-direction: column;
|
|
68
67
|
margin-right: var(--gap-8);
|
|
69
68
|
}
|
|
70
|
-
.
|
|
69
|
+
.steps__option_giir9 {
|
|
71
70
|
font-size: 14px;
|
|
72
71
|
line-height: 20px;
|
|
73
72
|
font-weight: 700;
|
|
74
|
-
|
|
75
|
-
font-family: var(--font-family-alfasans);
|
|
73
|
+
font-family: var(--font-family-system);
|
|
76
74
|
|
|
77
75
|
display: flex;
|
|
78
76
|
align-items: center;
|
|
@@ -83,19 +81,19 @@
|
|
|
83
81
|
height: 24px;
|
|
84
82
|
border-radius: var(--border-radius-circle);
|
|
85
83
|
}
|
|
86
|
-
.
|
|
84
|
+
.steps__option_giir9.steps__vertical_giir9 {
|
|
87
85
|
margin-top: var(--gap-8);
|
|
88
86
|
}
|
|
89
|
-
.
|
|
87
|
+
.steps__dash_giir9 {
|
|
90
88
|
flex: 1 1 auto;
|
|
91
89
|
min-width: 24px;
|
|
92
90
|
border-top: 2px solid var(--color-light-neutral-translucent-300);
|
|
93
91
|
margin-right: var(--gap-8);
|
|
94
92
|
}
|
|
95
|
-
.
|
|
93
|
+
.steps__dash_giir9.steps__completed_giir9 {
|
|
96
94
|
border-top: var(--steps-dash-border);
|
|
97
95
|
}
|
|
98
|
-
.
|
|
96
|
+
.steps__dash_giir9.steps__vertical_giir9 {
|
|
99
97
|
min-width: 0;
|
|
100
98
|
min-width: initial;
|
|
101
99
|
min-height: 8px;
|
|
@@ -104,24 +102,23 @@
|
|
|
104
102
|
border-left: 2px solid var(--color-light-neutral-translucent-300);
|
|
105
103
|
border-top: none;
|
|
106
104
|
}
|
|
107
|
-
.
|
|
105
|
+
.steps__dash_giir9.steps__completed_giir9.steps__vertical_giir9 {
|
|
108
106
|
border-left: var(--steps-dash-border);
|
|
109
107
|
}
|
|
110
|
-
.
|
|
108
|
+
.steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
111
109
|
min-height: 48px;
|
|
112
110
|
}
|
|
113
|
-
.
|
|
111
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-24_giir9 {
|
|
114
112
|
margin-bottom: var(--gap-8);
|
|
115
113
|
}
|
|
116
|
-
.
|
|
114
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-32_giir9 {
|
|
117
115
|
margin-bottom: var(--gap-16);
|
|
118
116
|
}
|
|
119
|
-
.
|
|
117
|
+
.steps__text_giir9 {
|
|
120
118
|
font-size: 16px;
|
|
121
119
|
line-height: 24px;
|
|
122
120
|
font-weight: 400;
|
|
123
|
-
|
|
124
|
-
font-family: var(--font-family-alfasans);
|
|
121
|
+
font-family: var(--font-family-system);
|
|
125
122
|
|
|
126
123
|
transition: background 0.2s;
|
|
127
124
|
padding: var(--gap-8);
|
|
@@ -130,24 +127,24 @@
|
|
|
130
127
|
height: -moz-min-content;
|
|
131
128
|
height: min-content;
|
|
132
129
|
}
|
|
133
|
-
.
|
|
130
|
+
.steps__text_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
134
131
|
background: var(--color-light-transparent-default-hover);
|
|
135
132
|
}
|
|
136
|
-
.
|
|
133
|
+
.steps__text_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):active {
|
|
137
134
|
background: var(--color-light-transparent-default-press);
|
|
138
135
|
}
|
|
139
|
-
.
|
|
136
|
+
.steps__focused_giir9 {
|
|
140
137
|
outline: var(--gap-2) solid var(--focus-color);
|
|
141
138
|
outline-offset: var(--gap-2);
|
|
142
139
|
}
|
|
143
|
-
.
|
|
140
|
+
.steps__selected_giir9 .steps__text_giir9 {
|
|
144
141
|
color: var(--color-light-text-primary);
|
|
145
142
|
}
|
|
146
|
-
.
|
|
143
|
+
.steps__selected_giir9 .steps__option_giir9 {
|
|
147
144
|
color: var(--color-light-text-primary-inverted);
|
|
148
145
|
background: var(--color-light-neutral-translucent-1300);
|
|
149
146
|
}
|
|
150
|
-
.
|
|
147
|
+
.steps__checkbox_giir9 {
|
|
151
148
|
display: flex;
|
|
152
149
|
justify-content: center;
|
|
153
150
|
align-items: center;
|
|
@@ -156,26 +153,26 @@
|
|
|
156
153
|
height: 20px;
|
|
157
154
|
border: 2px solid var(--color-light-neutral-translucent-300);
|
|
158
155
|
}
|
|
159
|
-
.
|
|
156
|
+
.steps__dot_giir9 {
|
|
160
157
|
width: 10px;
|
|
161
158
|
height: 10px;
|
|
162
159
|
border-radius: var(--border-radius-circle);
|
|
163
160
|
background: var(--color-light-neutral-translucent-300);
|
|
164
161
|
}
|
|
165
|
-
.
|
|
162
|
+
.steps__selected_giir9 .steps__checkbox_giir9 {
|
|
166
163
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
167
164
|
}
|
|
168
|
-
.
|
|
165
|
+
.steps__selected_giir9 .steps__checkbox_giir9 .steps__dot_giir9 {
|
|
169
166
|
background: var(--color-light-neutral-translucent-1300);
|
|
170
167
|
}
|
|
171
|
-
.
|
|
168
|
+
.steps__option_giir9:not(.steps__error_giir9).steps__unordered_giir9 {
|
|
172
169
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
173
170
|
background: initial;
|
|
174
171
|
}
|
|
175
|
-
.
|
|
172
|
+
.steps__completedIndicator_giir9 > [class*='positive'] {
|
|
176
173
|
color: var(--steps-option-svg-color);
|
|
177
174
|
background-color: var(--steps-option-svg-color);
|
|
178
175
|
}
|
|
179
|
-
.
|
|
176
|
+
.steps__fullWidth_giir9 {
|
|
180
177
|
width: 100%;
|
|
181
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
|
|
@@ -23,9 +23,8 @@
|
|
|
23
23
|
--gap-16: var(--gap-m);
|
|
24
24
|
}
|
|
25
25
|
:root {
|
|
26
|
-
--font-family-
|
|
27
|
-
|
|
28
|
-
Helvetica, sans-serif;
|
|
26
|
+
--font-family-system:
|
|
27
|
+
system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
|
|
29
28
|
}
|
|
30
29
|
:root {
|
|
31
30
|
--focus-color: var(--color-light-status-info);
|
|
@@ -71,8 +70,7 @@
|
|
|
71
70
|
font-size: 14px;
|
|
72
71
|
line-height: 20px;
|
|
73
72
|
font-weight: 700;
|
|
74
|
-
|
|
75
|
-
font-family: var(--font-family-alfasans);
|
|
73
|
+
font-family: var(--font-family-system);
|
|
76
74
|
|
|
77
75
|
display: flex;
|
|
78
76
|
align-items: center;
|
|
@@ -120,8 +118,7 @@
|
|
|
120
118
|
font-size: 16px;
|
|
121
119
|
line-height: 24px;
|
|
122
120
|
font-weight: 400;
|
|
123
|
-
|
|
124
|
-
font-family: var(--font-family-alfasans);
|
|
121
|
+
font-family: var(--font-family-system);
|
|
125
122
|
|
|
126
123
|
transition: background 0.2s;
|
|
127
124
|
padding: var(--gap-8);
|
|
@@ -23,9 +23,8 @@
|
|
|
23
23
|
--gap-16: var(--gap-m);
|
|
24
24
|
}
|
|
25
25
|
:root {
|
|
26
|
-
--font-family-
|
|
27
|
-
|
|
28
|
-
Helvetica, sans-serif;
|
|
26
|
+
--font-family-system:
|
|
27
|
+
system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
|
|
29
28
|
}
|
|
30
29
|
:root {
|
|
31
30
|
--focus-color: var(--color-light-status-info);
|
|
@@ -34,45 +33,44 @@
|
|
|
34
33
|
--steps-option-svg-color: var(--color-light-status-positive);
|
|
35
34
|
--steps-dash-border: 2px solid var(--color-light-status-positive);
|
|
36
35
|
}
|
|
37
|
-
.
|
|
36
|
+
.steps__step_giir9 {
|
|
38
37
|
display: flex;
|
|
39
38
|
outline: none;
|
|
40
39
|
}
|
|
41
|
-
.
|
|
40
|
+
.steps__step_giir9.steps__horizontal_giir9 {
|
|
42
41
|
flex-grow: 1;
|
|
43
42
|
}
|
|
44
|
-
.
|
|
43
|
+
.steps__step_giir9:not(.steps__vertical_giir9) {
|
|
45
44
|
align-items: center;
|
|
46
45
|
}
|
|
47
|
-
.
|
|
46
|
+
.steps__step_giir9:last-of-type .steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
48
47
|
margin-bottom: var(--gap-0);
|
|
49
48
|
}
|
|
50
|
-
.
|
|
49
|
+
.steps__step_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
51
50
|
cursor: pointer;
|
|
52
51
|
}
|
|
53
|
-
.
|
|
52
|
+
.steps__step_giir9.steps__disabled_giir9:hover .steps__text_giir9 {
|
|
54
53
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
55
54
|
background: initial;
|
|
56
55
|
}
|
|
57
|
-
.
|
|
56
|
+
.steps__step_giir9.steps__disabled_giir9 .steps__indicator_giir9 {
|
|
58
57
|
cursor: inherit;
|
|
59
58
|
}
|
|
60
|
-
.
|
|
59
|
+
.steps__indicator_giir9 {
|
|
61
60
|
cursor: pointer;
|
|
62
61
|
display: flex;
|
|
63
62
|
align-items: center;
|
|
64
63
|
margin-right: var(--gap-4);
|
|
65
64
|
}
|
|
66
|
-
.
|
|
65
|
+
.steps__indicator_giir9.steps__vertical_giir9 {
|
|
67
66
|
flex-direction: column;
|
|
68
67
|
margin-right: var(--gap-8);
|
|
69
68
|
}
|
|
70
|
-
.
|
|
69
|
+
.steps__option_giir9 {
|
|
71
70
|
font-size: 14px;
|
|
72
71
|
line-height: 20px;
|
|
73
72
|
font-weight: 700;
|
|
74
|
-
|
|
75
|
-
font-family: var(--font-family-alfasans);
|
|
73
|
+
font-family: var(--font-family-system);
|
|
76
74
|
|
|
77
75
|
display: flex;
|
|
78
76
|
align-items: center;
|
|
@@ -83,19 +81,19 @@
|
|
|
83
81
|
height: 24px;
|
|
84
82
|
border-radius: var(--border-radius-circle);
|
|
85
83
|
}
|
|
86
|
-
.
|
|
84
|
+
.steps__option_giir9.steps__vertical_giir9 {
|
|
87
85
|
margin-top: var(--gap-8);
|
|
88
86
|
}
|
|
89
|
-
.
|
|
87
|
+
.steps__dash_giir9 {
|
|
90
88
|
flex: 1 1 auto;
|
|
91
89
|
min-width: 24px;
|
|
92
90
|
border-top: 2px solid var(--color-light-neutral-translucent-300);
|
|
93
91
|
margin-right: var(--gap-8);
|
|
94
92
|
}
|
|
95
|
-
.
|
|
93
|
+
.steps__dash_giir9.steps__completed_giir9 {
|
|
96
94
|
border-top: var(--steps-dash-border);
|
|
97
95
|
}
|
|
98
|
-
.
|
|
96
|
+
.steps__dash_giir9.steps__vertical_giir9 {
|
|
99
97
|
min-width: 0;
|
|
100
98
|
min-width: initial;
|
|
101
99
|
min-height: 8px;
|
|
@@ -104,24 +102,23 @@
|
|
|
104
102
|
border-left: 2px solid var(--color-light-neutral-translucent-300);
|
|
105
103
|
border-top: none;
|
|
106
104
|
}
|
|
107
|
-
.
|
|
105
|
+
.steps__dash_giir9.steps__completed_giir9.steps__vertical_giir9 {
|
|
108
106
|
border-left: var(--steps-dash-border);
|
|
109
107
|
}
|
|
110
|
-
.
|
|
108
|
+
.steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
111
109
|
min-height: 48px;
|
|
112
110
|
}
|
|
113
|
-
.
|
|
111
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-24_giir9 {
|
|
114
112
|
margin-bottom: var(--gap-8);
|
|
115
113
|
}
|
|
116
|
-
.
|
|
114
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-32_giir9 {
|
|
117
115
|
margin-bottom: var(--gap-16);
|
|
118
116
|
}
|
|
119
|
-
.
|
|
117
|
+
.steps__text_giir9 {
|
|
120
118
|
font-size: 16px;
|
|
121
119
|
line-height: 24px;
|
|
122
120
|
font-weight: 400;
|
|
123
|
-
|
|
124
|
-
font-family: var(--font-family-alfasans);
|
|
121
|
+
font-family: var(--font-family-system);
|
|
125
122
|
|
|
126
123
|
transition: background 0.2s;
|
|
127
124
|
padding: var(--gap-8);
|
|
@@ -130,24 +127,24 @@
|
|
|
130
127
|
height: -moz-min-content;
|
|
131
128
|
height: min-content;
|
|
132
129
|
}
|
|
133
|
-
.
|
|
130
|
+
.steps__text_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
134
131
|
background: var(--color-light-transparent-default-hover);
|
|
135
132
|
}
|
|
136
|
-
.
|
|
133
|
+
.steps__text_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):active {
|
|
137
134
|
background: var(--color-light-transparent-default-press);
|
|
138
135
|
}
|
|
139
|
-
.
|
|
136
|
+
.steps__focused_giir9 {
|
|
140
137
|
outline: var(--gap-2) solid var(--focus-color);
|
|
141
138
|
outline-offset: var(--gap-2);
|
|
142
139
|
}
|
|
143
|
-
.
|
|
140
|
+
.steps__selected_giir9 .steps__text_giir9 {
|
|
144
141
|
color: var(--color-light-text-primary);
|
|
145
142
|
}
|
|
146
|
-
.
|
|
143
|
+
.steps__selected_giir9 .steps__option_giir9 {
|
|
147
144
|
color: var(--color-light-text-primary-inverted);
|
|
148
145
|
background: var(--color-light-neutral-translucent-1300);
|
|
149
146
|
}
|
|
150
|
-
.
|
|
147
|
+
.steps__checkbox_giir9 {
|
|
151
148
|
display: flex;
|
|
152
149
|
justify-content: center;
|
|
153
150
|
align-items: center;
|
|
@@ -156,26 +153,26 @@
|
|
|
156
153
|
height: 20px;
|
|
157
154
|
border: 2px solid var(--color-light-neutral-translucent-300);
|
|
158
155
|
}
|
|
159
|
-
.
|
|
156
|
+
.steps__dot_giir9 {
|
|
160
157
|
width: 10px;
|
|
161
158
|
height: 10px;
|
|
162
159
|
border-radius: var(--border-radius-circle);
|
|
163
160
|
background: var(--color-light-neutral-translucent-300);
|
|
164
161
|
}
|
|
165
|
-
.
|
|
162
|
+
.steps__selected_giir9 .steps__checkbox_giir9 {
|
|
166
163
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
167
164
|
}
|
|
168
|
-
.
|
|
165
|
+
.steps__selected_giir9 .steps__checkbox_giir9 .steps__dot_giir9 {
|
|
169
166
|
background: var(--color-light-neutral-translucent-1300);
|
|
170
167
|
}
|
|
171
|
-
.
|
|
168
|
+
.steps__option_giir9:not(.steps__error_giir9).steps__unordered_giir9 {
|
|
172
169
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
173
170
|
background: initial;
|
|
174
171
|
}
|
|
175
|
-
.
|
|
172
|
+
.steps__completedIndicator_giir9 > [class*='positive'] {
|
|
176
173
|
color: var(--steps-option-svg-color);
|
|
177
174
|
background-color: var(--steps-option-svg-color);
|
|
178
175
|
}
|
|
179
|
-
.
|
|
176
|
+
.steps__fullWidth_giir9 {
|
|
180
177
|
width: 100%;
|
|
181
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
|
|
@@ -23,9 +23,8 @@
|
|
|
23
23
|
--gap-16: var(--gap-m);
|
|
24
24
|
}
|
|
25
25
|
:root {
|
|
26
|
-
--font-family-
|
|
27
|
-
|
|
28
|
-
Helvetica, sans-serif;
|
|
26
|
+
--font-family-system:
|
|
27
|
+
system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
|
|
29
28
|
}
|
|
30
29
|
:root {
|
|
31
30
|
--focus-color: var(--color-light-status-info);
|
|
@@ -34,45 +33,44 @@
|
|
|
34
33
|
--steps-option-svg-color: var(--color-light-status-positive);
|
|
35
34
|
--steps-dash-border: 2px solid var(--color-light-status-positive);
|
|
36
35
|
}
|
|
37
|
-
.
|
|
36
|
+
.steps__step_giir9 {
|
|
38
37
|
display: flex;
|
|
39
38
|
outline: none;
|
|
40
39
|
}
|
|
41
|
-
.
|
|
40
|
+
.steps__step_giir9.steps__horizontal_giir9 {
|
|
42
41
|
flex-grow: 1;
|
|
43
42
|
}
|
|
44
|
-
.
|
|
43
|
+
.steps__step_giir9:not(.steps__vertical_giir9) {
|
|
45
44
|
align-items: center;
|
|
46
45
|
}
|
|
47
|
-
.
|
|
46
|
+
.steps__step_giir9:last-of-type .steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
48
47
|
margin-bottom: var(--gap-0);
|
|
49
48
|
}
|
|
50
|
-
.
|
|
49
|
+
.steps__step_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
51
50
|
cursor: pointer;
|
|
52
51
|
}
|
|
53
|
-
.
|
|
52
|
+
.steps__step_giir9.steps__disabled_giir9:hover .steps__text_giir9 {
|
|
54
53
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
55
54
|
background: initial;
|
|
56
55
|
}
|
|
57
|
-
.
|
|
56
|
+
.steps__step_giir9.steps__disabled_giir9 .steps__indicator_giir9 {
|
|
58
57
|
cursor: inherit;
|
|
59
58
|
}
|
|
60
|
-
.
|
|
59
|
+
.steps__indicator_giir9 {
|
|
61
60
|
cursor: pointer;
|
|
62
61
|
display: flex;
|
|
63
62
|
align-items: center;
|
|
64
63
|
margin-right: var(--gap-4);
|
|
65
64
|
}
|
|
66
|
-
.
|
|
65
|
+
.steps__indicator_giir9.steps__vertical_giir9 {
|
|
67
66
|
flex-direction: column;
|
|
68
67
|
margin-right: var(--gap-8);
|
|
69
68
|
}
|
|
70
|
-
.
|
|
69
|
+
.steps__option_giir9 {
|
|
71
70
|
font-size: 14px;
|
|
72
71
|
line-height: 20px;
|
|
73
72
|
font-weight: 700;
|
|
74
|
-
|
|
75
|
-
font-family: var(--font-family-alfasans);
|
|
73
|
+
font-family: var(--font-family-system);
|
|
76
74
|
|
|
77
75
|
display: flex;
|
|
78
76
|
align-items: center;
|
|
@@ -83,19 +81,19 @@
|
|
|
83
81
|
height: 24px;
|
|
84
82
|
border-radius: var(--border-radius-circle);
|
|
85
83
|
}
|
|
86
|
-
.
|
|
84
|
+
.steps__option_giir9.steps__vertical_giir9 {
|
|
87
85
|
margin-top: var(--gap-8);
|
|
88
86
|
}
|
|
89
|
-
.
|
|
87
|
+
.steps__dash_giir9 {
|
|
90
88
|
flex: 1 1 auto;
|
|
91
89
|
min-width: 24px;
|
|
92
90
|
border-top: 2px solid var(--color-light-neutral-translucent-300);
|
|
93
91
|
margin-right: var(--gap-8);
|
|
94
92
|
}
|
|
95
|
-
.
|
|
93
|
+
.steps__dash_giir9.steps__completed_giir9 {
|
|
96
94
|
border-top: var(--steps-dash-border);
|
|
97
95
|
}
|
|
98
|
-
.
|
|
96
|
+
.steps__dash_giir9.steps__vertical_giir9 {
|
|
99
97
|
min-width: 0;
|
|
100
98
|
min-width: initial;
|
|
101
99
|
min-height: 8px;
|
|
@@ -104,24 +102,23 @@
|
|
|
104
102
|
border-left: 2px solid var(--color-light-neutral-translucent-300);
|
|
105
103
|
border-top: none;
|
|
106
104
|
}
|
|
107
|
-
.
|
|
105
|
+
.steps__dash_giir9.steps__completed_giir9.steps__vertical_giir9 {
|
|
108
106
|
border-left: var(--steps-dash-border);
|
|
109
107
|
}
|
|
110
|
-
.
|
|
108
|
+
.steps__textWrapper_giir9.steps__vertical_giir9 {
|
|
111
109
|
min-height: 48px;
|
|
112
110
|
}
|
|
113
|
-
.
|
|
111
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-24_giir9 {
|
|
114
112
|
margin-bottom: var(--gap-8);
|
|
115
113
|
}
|
|
116
|
-
.
|
|
114
|
+
.steps__textWrapper_giir9.steps__vertical_giir9.steps__gap-32_giir9 {
|
|
117
115
|
margin-bottom: var(--gap-16);
|
|
118
116
|
}
|
|
119
|
-
.
|
|
117
|
+
.steps__text_giir9 {
|
|
120
118
|
font-size: 16px;
|
|
121
119
|
line-height: 24px;
|
|
122
120
|
font-weight: 400;
|
|
123
|
-
|
|
124
|
-
font-family: var(--font-family-alfasans);
|
|
121
|
+
font-family: var(--font-family-system);
|
|
125
122
|
|
|
126
123
|
transition: background 0.2s;
|
|
127
124
|
padding: var(--gap-8);
|
|
@@ -130,24 +127,24 @@
|
|
|
130
127
|
height: -moz-min-content;
|
|
131
128
|
height: min-content;
|
|
132
129
|
}
|
|
133
|
-
.
|
|
130
|
+
.steps__text_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):hover {
|
|
134
131
|
background: var(--color-light-transparent-default-hover);
|
|
135
132
|
}
|
|
136
|
-
.
|
|
133
|
+
.steps__text_giir9.steps__interactive_giir9:not(.steps__disabled_giir9):active {
|
|
137
134
|
background: var(--color-light-transparent-default-press);
|
|
138
135
|
}
|
|
139
|
-
.
|
|
136
|
+
.steps__focused_giir9 {
|
|
140
137
|
outline: var(--gap-2) solid var(--focus-color);
|
|
141
138
|
outline-offset: var(--gap-2);
|
|
142
139
|
}
|
|
143
|
-
.
|
|
140
|
+
.steps__selected_giir9 .steps__text_giir9 {
|
|
144
141
|
color: var(--color-light-text-primary);
|
|
145
142
|
}
|
|
146
|
-
.
|
|
143
|
+
.steps__selected_giir9 .steps__option_giir9 {
|
|
147
144
|
color: var(--color-light-text-primary-inverted);
|
|
148
145
|
background: var(--color-light-neutral-translucent-1300);
|
|
149
146
|
}
|
|
150
|
-
.
|
|
147
|
+
.steps__checkbox_giir9 {
|
|
151
148
|
display: flex;
|
|
152
149
|
justify-content: center;
|
|
153
150
|
align-items: center;
|
|
@@ -156,26 +153,26 @@
|
|
|
156
153
|
height: 20px;
|
|
157
154
|
border: 2px solid var(--color-light-neutral-translucent-300);
|
|
158
155
|
}
|
|
159
|
-
.
|
|
156
|
+
.steps__dot_giir9 {
|
|
160
157
|
width: 10px;
|
|
161
158
|
height: 10px;
|
|
162
159
|
border-radius: var(--border-radius-circle);
|
|
163
160
|
background: var(--color-light-neutral-translucent-300);
|
|
164
161
|
}
|
|
165
|
-
.
|
|
162
|
+
.steps__selected_giir9 .steps__checkbox_giir9 {
|
|
166
163
|
border: 2px solid var(--color-light-neutral-translucent-1300);
|
|
167
164
|
}
|
|
168
|
-
.
|
|
165
|
+
.steps__selected_giir9 .steps__checkbox_giir9 .steps__dot_giir9 {
|
|
169
166
|
background: var(--color-light-neutral-translucent-1300);
|
|
170
167
|
}
|
|
171
|
-
.
|
|
168
|
+
.steps__option_giir9:not(.steps__error_giir9).steps__unordered_giir9 {
|
|
172
169
|
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
|
173
170
|
background: initial;
|
|
174
171
|
}
|
|
175
|
-
.
|
|
172
|
+
.steps__completedIndicator_giir9 > [class*='positive'] {
|
|
176
173
|
color: var(--steps-option-svg-color);
|
|
177
174
|
background-color: var(--steps-option-svg-color);
|
|
178
175
|
}
|
|
179
|
-
.
|
|
176
|
+
.steps__fullWidth_giir9 {
|
|
180
177
|
width: 100%;
|
|
181
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
|
|
@@ -51,8 +51,7 @@
|
|
|
51
51
|
font-size: 14px;
|
|
52
52
|
line-height: 20px;
|
|
53
53
|
font-weight: 700;
|
|
54
|
-
|
|
55
|
-
font-family: var(--font-family-alfasans);
|
|
54
|
+
font-family: var(--font-family-system);
|
|
56
55
|
|
|
57
56
|
display: flex;
|
|
58
57
|
align-items: center;
|
|
@@ -109,8 +108,7 @@
|
|
|
109
108
|
font-size: 16px;
|
|
110
109
|
line-height: 24px;
|
|
111
110
|
font-weight: 400;
|
|
112
|
-
|
|
113
|
-
font-family: var(--font-family-alfasans);
|
|
111
|
+
font-family: var(--font-family-system);
|
|
114
112
|
|
|
115
113
|
transition: background 0.2s;
|
|
116
114
|
padding: var(--gap-8);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfalab/core-components-steps",
|
|
3
|
-
"version": "3.0.1
|
|
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.1
|
|
14
|
-
"@alfalab/core-components-shared": "2.0.1
|
|
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.1
|
|
29
|
-
"varsVersion": "11.0.1
|
|
28
|
+
"themesVersion": "15.0.1",
|
|
29
|
+
"varsVersion": "11.0.1"
|
|
30
30
|
}
|