@hh.ru/magritte-ui-stepper 1.0.10 → 1.0.11
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/Content.js +1 -1
- package/Marker.js +1 -1
- package/Step.js +1 -1
- package/Stepper.js +1 -1
- package/index.css +63 -71
- package/index.js +1 -1
- package/package.json +4 -4
- package/stepper-BfW6dCr0.js +5 -0
- package/stepper-BfW6dCr0.js.map +1 -0
- package/stepper-DKIamJnT.js +0 -5
- package/stepper-DKIamJnT.js.map +0 -1
package/Content.js
CHANGED
|
@@ -3,7 +3,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
3
3
|
import { forwardRef, Fragment } from 'react';
|
|
4
4
|
import classnames from 'classnames';
|
|
5
5
|
import { useDisabled } from '@hh.ru/magritte-common-use-disabled';
|
|
6
|
-
import { s as styles } from './stepper-
|
|
6
|
+
import { s as styles } from './stepper-BfW6dCr0.js';
|
|
7
7
|
|
|
8
8
|
const StepperContent = forwardRef(({ children, onClick }, ref) => {
|
|
9
9
|
const Wrapper = onClick ? 'button' : Fragment;
|
package/Marker.js
CHANGED
|
@@ -3,7 +3,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
3
3
|
import classnames from 'classnames';
|
|
4
4
|
import { useDisabled } from '@hh.ru/magritte-common-use-disabled';
|
|
5
5
|
import { isIconElement } from '@hh.ru/magritte-ui-icon';
|
|
6
|
-
import { s as styles } from './stepper-
|
|
6
|
+
import { s as styles } from './stepper-BfW6dCr0.js';
|
|
7
7
|
|
|
8
8
|
const StepperMarker = ({ children }) => {
|
|
9
9
|
const isDisabled = useDisabled();
|
package/Step.js
CHANGED
|
@@ -4,7 +4,7 @@ import { forwardRef, isValidElement, Children, cloneElement } from 'react';
|
|
|
4
4
|
import classnames from 'classnames';
|
|
5
5
|
import { useDisabled, DisabledContext } from '@hh.ru/magritte-common-use-disabled';
|
|
6
6
|
import { StepperContent } from './Content.js';
|
|
7
|
-
import { s as styles } from './stepper-
|
|
7
|
+
import { s as styles } from './stepper-BfW6dCr0.js';
|
|
8
8
|
|
|
9
9
|
const StepperStep = forwardRef(({ 'data-qa': dataQa = 'magritte-stepper-step', disabled = false, children, onClick, selected, style = 'neutral', }, ref) => {
|
|
10
10
|
const isDisabled = !!(useDisabled() || disabled);
|
package/Stepper.js
CHANGED
|
@@ -3,7 +3,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
3
3
|
import { forwardRef, Children, cloneElement, Fragment } from 'react';
|
|
4
4
|
import classnames from 'classnames';
|
|
5
5
|
import { useDisabled, DisabledContext } from '@hh.ru/magritte-common-use-disabled';
|
|
6
|
-
import { s as styles } from './stepper-
|
|
6
|
+
import { s as styles } from './stepper-BfW6dCr0.js';
|
|
7
7
|
|
|
8
8
|
const Stepper = forwardRef(({ selectedStep = null, onStepClick, orientation = 'vertical', 'data-qa': dataQa = 'magritte-stepper', 'aria-label': ariaLabel, disabled, children, }, ref) => {
|
|
9
9
|
const isDisabled = !!(useDisabled() || disabled);
|
package/index.css
CHANGED
|
@@ -1,177 +1,169 @@
|
|
|
1
1
|
:root{
|
|
2
|
-
--magritte-color-background-state-secondary-hovered-v23-2-
|
|
3
|
-
--magritte-color-stroke-neutral-v23-2-
|
|
4
|
-
--magritte-color-stroke-positive-v23-2-
|
|
5
|
-
--magritte-color-stroke-state-focused-accessible-v23-2-
|
|
2
|
+
--magritte-color-background-state-secondary-hovered-v23-2-2:#F1F4F9;
|
|
3
|
+
--magritte-color-stroke-neutral-v23-2-2:#DCE3EB;
|
|
4
|
+
--magritte-color-stroke-positive-v23-2-2:#0dc267;
|
|
5
|
+
--magritte-color-stroke-state-focused-accessible-v23-2-2:#0070ff7a;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.magritte-night-theme{
|
|
9
|
-
--magritte-color-background-state-secondary-hovered-v23-2-
|
|
10
|
-
--magritte-color-stroke-neutral-v23-2-
|
|
11
|
-
--magritte-color-stroke-positive-v23-2-
|
|
12
|
-
--magritte-color-stroke-state-focused-accessible-v23-2-1:#0070ff7a;
|
|
9
|
+
--magritte-color-background-state-secondary-hovered-v23-2-2:#303030;
|
|
10
|
+
--magritte-color-stroke-neutral-v23-2-2:#303030;
|
|
11
|
+
--magritte-color-stroke-positive-v23-2-2:#10b55f;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
.magritte-zp-day-theme{
|
|
16
|
-
--magritte-color-background-state-secondary-hovered-v23-2-1:#F1F4F9;
|
|
17
|
-
--magritte-color-stroke-neutral-v23-2-1:#DCE3EB;
|
|
18
|
-
--magritte-color-stroke-positive-v23-2-1:#0dc267;
|
|
19
|
-
--magritte-color-stroke-state-focused-accessible-v23-2-1:#0070ff7a;
|
|
20
|
-
}
|
|
21
|
-
.magritte-stepper___bf9CG_1-0-10{
|
|
13
|
+
.magritte-stepper___bf9CG_1-0-11{
|
|
22
14
|
display:flex;
|
|
23
15
|
flex:1 1;
|
|
24
16
|
list-style:none;
|
|
25
17
|
}
|
|
26
|
-
.magritte-stepper-horizontal___54ih5_1-0-
|
|
18
|
+
.magritte-stepper-horizontal___54ih5_1-0-11{
|
|
27
19
|
flex-direction:row;
|
|
28
20
|
}
|
|
29
|
-
.magritte-stepper-horizontal___54ih5_1-0-
|
|
21
|
+
.magritte-stepper-horizontal___54ih5_1-0-11 .magritte-step___7YXV2_1-0-11{
|
|
30
22
|
flex-direction:column;
|
|
31
23
|
}
|
|
32
|
-
.magritte-stepper-horizontal___54ih5_1-0-
|
|
24
|
+
.magritte-stepper-horizontal___54ih5_1-0-11 .magritte-marker-container___ZuSOj_1-0-11{
|
|
33
25
|
flex-direction:row;
|
|
34
26
|
padding:0 12px 0 0;
|
|
35
27
|
}
|
|
36
|
-
.magritte-stepper-horizontal___54ih5_1-0-
|
|
28
|
+
.magritte-stepper-horizontal___54ih5_1-0-11 .magritte-marker-container___ZuSOj_1-0-11.magritte-marker-container-with-icon___rBC1i_1-0-11{
|
|
37
29
|
padding:0 8px 0 0;
|
|
38
30
|
}
|
|
39
|
-
.magritte-stepper-horizontal___54ih5_1-0-
|
|
31
|
+
.magritte-stepper-horizontal___54ih5_1-0-11 .magritte-marker-container___ZuSOj_1-0-11::after{
|
|
40
32
|
border-width:0;
|
|
41
33
|
border-top-width:1px;
|
|
42
34
|
}
|
|
43
|
-
.magritte-stepper-horizontal___54ih5_1-0-
|
|
35
|
+
.magritte-stepper-horizontal___54ih5_1-0-11 .magritte-marker-wrapper___m-Hsn_1-0-11{
|
|
44
36
|
padding:0 12px 0 0;
|
|
45
37
|
}
|
|
46
|
-
.magritte-stepper-horizontal___54ih5_1-0-
|
|
38
|
+
.magritte-stepper-horizontal___54ih5_1-0-11 .magritte-marker-container-with-icon___rBC1i_1-0-11 .magritte-marker-wrapper___m-Hsn_1-0-11{
|
|
47
39
|
padding:0 8px 0 0;
|
|
48
40
|
}
|
|
49
|
-
.magritte-stepper-horizontal___54ih5_1-0-
|
|
41
|
+
.magritte-stepper-horizontal___54ih5_1-0-11 .magritte-content-container___KPIiS_1-0-11{
|
|
50
42
|
padding:8px 24px 0 0;
|
|
51
43
|
}
|
|
52
|
-
.magritte-stepper-horizontal___54ih5_1-0-
|
|
44
|
+
.magritte-stepper-horizontal___54ih5_1-0-11 .magritte-marker-container-with-icon___rBC1i_1-0-11 + .magritte-content-container___KPIiS_1-0-11{
|
|
53
45
|
padding:12px 24px 0 0;
|
|
54
46
|
}
|
|
55
|
-
.magritte-stepper-horizontal___54ih5_1-0-
|
|
47
|
+
.magritte-stepper-horizontal___54ih5_1-0-11 .magritte-step___7YXV2_1-0-11:last-of-type .magritte-content-container___KPIiS_1-0-11{
|
|
56
48
|
padding-right:0;
|
|
57
49
|
}
|
|
58
|
-
.magritte-content-container___KPIiS_1-0-
|
|
50
|
+
.magritte-content-container___KPIiS_1-0-11{
|
|
59
51
|
order:2;
|
|
60
52
|
}
|
|
61
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
53
|
+
.magritte-stepper-vertical___032Tm_1-0-11{
|
|
62
54
|
flex-direction:column;
|
|
63
55
|
}
|
|
64
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
56
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-step___7YXV2_1-0-11{
|
|
65
57
|
flex-direction:row;
|
|
66
58
|
}
|
|
67
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
68
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
59
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-content-container___KPIiS_1-0-11,
|
|
60
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-step-button___xSXUO_1-0-11{
|
|
69
61
|
flex:1 1;
|
|
70
62
|
}
|
|
71
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
63
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-marker-container___ZuSOj_1-0-11{
|
|
72
64
|
flex-direction:column;
|
|
73
65
|
padding:4px 0 8px;
|
|
74
66
|
}
|
|
75
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
67
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-marker-container___ZuSOj_1-0-11.magritte-marker-container-with-icon___rBC1i_1-0-11{
|
|
76
68
|
padding-bottom:4px;
|
|
77
69
|
}
|
|
78
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
70
|
+
.magritte-stepper-vertical___032Tm_1-0-11.magritte-stepper-no-content___AEmtQ_1-0-11 .magritte-marker-container___ZuSOj_1-0-11{
|
|
79
71
|
padding-right:0;
|
|
80
72
|
}
|
|
81
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
73
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-marker-container___ZuSOj_1-0-11::after{
|
|
82
74
|
border-width:0;
|
|
83
75
|
border-left-width:1px;
|
|
84
76
|
}
|
|
85
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
77
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-marker-wrapper___m-Hsn_1-0-11{
|
|
86
78
|
padding:0 0 12px;
|
|
87
79
|
}
|
|
88
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
80
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-marker-container-with-icon___rBC1i_1-0-11 .magritte-marker-wrapper___m-Hsn_1-0-11{
|
|
89
81
|
padding:0 0 8px;
|
|
90
82
|
}
|
|
91
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
83
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-content-container___KPIiS_1-0-11{
|
|
92
84
|
padding:0 0 24px 12px;
|
|
93
85
|
}
|
|
94
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
95
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
96
|
-
.magritte-stepper-vertical___032Tm_1-0-
|
|
86
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-step___7YXV2_1-0-11:last-of-type .magritte-content-container___KPIiS_1-0-11,
|
|
87
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-step___7YXV2_1-0-11:last-of-type .magritte-marker-container___ZuSOj_1-0-11,
|
|
88
|
+
.magritte-stepper-vertical___032Tm_1-0-11 .magritte-step___7YXV2_1-0-11:last-of-type .magritte-marker-wrapper___m-Hsn_1-0-11{
|
|
97
89
|
padding-bottom:0;
|
|
98
90
|
}
|
|
99
|
-
.magritte-step___7YXV2_1-0-
|
|
91
|
+
.magritte-step___7YXV2_1-0-11:last-of-type.magritte-step-no-content___mTIaO_1-0-11{
|
|
100
92
|
flex:0 0;
|
|
101
93
|
}
|
|
102
|
-
.magritte-step___7YXV2_1-0-
|
|
103
|
-
.magritte-step___7YXV2_1-0-
|
|
94
|
+
.magritte-step___7YXV2_1-0-11:last-of-type.magritte-step-no-content___mTIaO_1-0-11 .magritte-marker-container___ZuSOj_1-0-11,
|
|
95
|
+
.magritte-step___7YXV2_1-0-11:last-of-type.magritte-step-no-content___mTIaO_1-0-11 .magritte-marker-wrapper___m-Hsn_1-0-11{
|
|
104
96
|
padding:0;
|
|
105
97
|
}
|
|
106
|
-
.magritte-step___7YXV2_1-0-
|
|
98
|
+
.magritte-step___7YXV2_1-0-11{
|
|
107
99
|
display:flex;
|
|
108
100
|
flex:1 1;
|
|
109
101
|
}
|
|
110
|
-
.magritte-marker-container___ZuSOj_1-0-
|
|
102
|
+
.magritte-marker-container___ZuSOj_1-0-11{
|
|
111
103
|
order:1;
|
|
112
104
|
display:flex;
|
|
113
105
|
align-items:center;
|
|
114
106
|
}
|
|
115
|
-
.magritte-marker-container-disabled___lJ-PA_1-0-
|
|
107
|
+
.magritte-marker-container-disabled___lJ-PA_1-0-11{
|
|
116
108
|
opacity:0.5;
|
|
117
109
|
}
|
|
118
|
-
.magritte-step___7YXV2_1-0-
|
|
110
|
+
.magritte-step___7YXV2_1-0-11:not(:last-of-type) .magritte-marker-container___ZuSOj_1-0-11::after{
|
|
119
111
|
flex:1 1;
|
|
120
112
|
content:'';
|
|
121
113
|
border-style:solid;
|
|
122
114
|
}
|
|
123
|
-
.magritte-step-style-neutral___061j4_1-0-
|
|
124
|
-
border-color:var(--magritte-color-stroke-neutral-v23-2-
|
|
115
|
+
.magritte-step-style-neutral___061j4_1-0-11 .magritte-marker-container___ZuSOj_1-0-11::after{
|
|
116
|
+
border-color:var(--magritte-color-stroke-neutral-v23-2-2);
|
|
125
117
|
}
|
|
126
|
-
.magritte-step-style-positive___9jcvm_1-0-
|
|
127
|
-
border-color:var(--magritte-color-stroke-positive-v23-2-
|
|
118
|
+
.magritte-step-style-positive___9jcvm_1-0-11 .magritte-marker-container___ZuSOj_1-0-11::after{
|
|
119
|
+
border-color:var(--magritte-color-stroke-positive-v23-2-2);
|
|
128
120
|
}
|
|
129
|
-
.magritte-step-style-warning___NboIv_1-0-
|
|
130
|
-
border-color:var(--magritte-color-stroke-neutral-v23-2-
|
|
121
|
+
.magritte-step-style-warning___NboIv_1-0-11 .magritte-marker-container___ZuSOj_1-0-11::after{
|
|
122
|
+
border-color:var(--magritte-color-stroke-neutral-v23-2-2);
|
|
131
123
|
}
|
|
132
|
-
.magritte-step-style-negative___w1AbF_1-0-
|
|
133
|
-
border-color:var(--magritte-color-stroke-neutral-v23-2-
|
|
124
|
+
.magritte-step-style-negative___w1AbF_1-0-11 .magritte-marker-container___ZuSOj_1-0-11::after{
|
|
125
|
+
border-color:var(--magritte-color-stroke-neutral-v23-2-2);
|
|
134
126
|
}
|
|
135
|
-
.magritte-marker-wrapper___m-Hsn_1-0-
|
|
127
|
+
.magritte-marker-wrapper___m-Hsn_1-0-11{
|
|
136
128
|
display:flex;
|
|
137
129
|
flex:0 0;
|
|
138
130
|
}
|
|
139
|
-
.magritte-marker-divider-wrapper___PGB27_1-0-
|
|
131
|
+
.magritte-marker-divider-wrapper___PGB27_1-0-11{
|
|
140
132
|
display:inline-block;
|
|
141
133
|
flex:1 1;
|
|
142
134
|
}
|
|
143
|
-
.magritte-content-container___KPIiS_1-0-
|
|
144
|
-
.magritte-step-button___xSXUO_1-0-
|
|
135
|
+
.magritte-content-container___KPIiS_1-0-11,
|
|
136
|
+
.magritte-step-button___xSXUO_1-0-11{
|
|
145
137
|
display:flex;
|
|
146
138
|
flex-direction:column;
|
|
147
139
|
align-items:flex-start;
|
|
148
140
|
gap:12px;
|
|
149
141
|
}
|
|
150
|
-
.magritte-content-interactive___Cd9wI_1-0-
|
|
142
|
+
.magritte-content-interactive___Cd9wI_1-0-11{
|
|
151
143
|
align-items:stretch;
|
|
152
144
|
}
|
|
153
|
-
.magritte-step-button___xSXUO_1-0-
|
|
145
|
+
.magritte-step-button___xSXUO_1-0-11{
|
|
154
146
|
margin:-4px -8px;
|
|
155
147
|
padding:4px 8px;
|
|
156
148
|
border-radius:12px;
|
|
157
149
|
cursor:default;
|
|
158
150
|
}
|
|
159
|
-
.magritte-step-button___xSXUO_1-0-
|
|
151
|
+
.magritte-step-button___xSXUO_1-0-11:not(:disabled){
|
|
160
152
|
cursor:pointer;
|
|
161
153
|
}
|
|
162
154
|
@media (min-width: 1020px){
|
|
163
|
-
body.magritte-old-layout .magritte-step-button___xSXUO_1-0-
|
|
164
|
-
background-color:var(--magritte-color-background-state-secondary-hovered-v23-2-
|
|
155
|
+
body.magritte-old-layout .magritte-step-button___xSXUO_1-0-11:hover:not(:disabled){
|
|
156
|
+
background-color:var(--magritte-color-background-state-secondary-hovered-v23-2-2);
|
|
165
157
|
}
|
|
166
158
|
}
|
|
167
159
|
@media (min-width: 1024px){
|
|
168
|
-
body:not(.magritte-old-layout) .magritte-step-button___xSXUO_1-0-
|
|
169
|
-
background-color:var(--magritte-color-background-state-secondary-hovered-v23-2-
|
|
160
|
+
body:not(.magritte-old-layout) .magritte-step-button___xSXUO_1-0-11:hover:not(:disabled){
|
|
161
|
+
background-color:var(--magritte-color-background-state-secondary-hovered-v23-2-2);
|
|
170
162
|
}
|
|
171
163
|
}
|
|
172
|
-
.magritte-step-button___xSXUO_1-0-
|
|
173
|
-
background-color:var(--magritte-color-background-state-secondary-hovered-v23-2-
|
|
164
|
+
.magritte-step-button___xSXUO_1-0-11:active:not(:disabled){
|
|
165
|
+
background-color:var(--magritte-color-background-state-secondary-hovered-v23-2-2);
|
|
174
166
|
}
|
|
175
|
-
.magritte-step-button___xSXUO_1-0-
|
|
176
|
-
outline:4px solid var(--magritte-color-stroke-state-focused-accessible-v23-2-
|
|
167
|
+
.magritte-step-button___xSXUO_1-0-11.focus-visible{
|
|
168
|
+
outline:4px solid var(--magritte-color-stroke-state-focused-accessible-v23-2-2);
|
|
177
169
|
}
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hh.ru/magritte-ui-stepper",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"sideEffects": [
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@hh.ru/magritte-common-use-disabled": "1.0.13",
|
|
26
|
-
"@hh.ru/magritte-design-tokens": "23.2.
|
|
26
|
+
"@hh.ru/magritte-design-tokens": "23.2.2",
|
|
27
27
|
"@hh.ru/magritte-ui-breakpoint": "6.0.1",
|
|
28
|
-
"@hh.ru/magritte-ui-icon": "12.3.
|
|
28
|
+
"@hh.ru/magritte-ui-icon": "12.3.3"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"classnames": ">=2.3.2",
|
|
32
32
|
"react": ">=18.2.0"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "b2ab15b73592666625ff3b84e10f3cc1bcee9cbc"
|
|
35
35
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import './index.css';
|
|
2
|
+
var styles = {"stepper":"magritte-stepper___bf9CG_1-0-11","stepper-horizontal":"magritte-stepper-horizontal___54ih5_1-0-11","stepperHorizontal":"magritte-stepper-horizontal___54ih5_1-0-11","step":"magritte-step___7YXV2_1-0-11","marker-container":"magritte-marker-container___ZuSOj_1-0-11","markerContainer":"magritte-marker-container___ZuSOj_1-0-11","marker-container-with-icon":"magritte-marker-container-with-icon___rBC1i_1-0-11","markerContainerWithIcon":"magritte-marker-container-with-icon___rBC1i_1-0-11","marker-wrapper":"magritte-marker-wrapper___m-Hsn_1-0-11","markerWrapper":"magritte-marker-wrapper___m-Hsn_1-0-11","content-container":"magritte-content-container___KPIiS_1-0-11","contentContainer":"magritte-content-container___KPIiS_1-0-11","stepper-vertical":"magritte-stepper-vertical___032Tm_1-0-11","stepperVertical":"magritte-stepper-vertical___032Tm_1-0-11","step-button":"magritte-step-button___xSXUO_1-0-11","stepButton":"magritte-step-button___xSXUO_1-0-11","stepper-no-content":"magritte-stepper-no-content___AEmtQ_1-0-11","stepperNoContent":"magritte-stepper-no-content___AEmtQ_1-0-11","step-no-content":"magritte-step-no-content___mTIaO_1-0-11","stepNoContent":"magritte-step-no-content___mTIaO_1-0-11","marker-container-disabled":"magritte-marker-container-disabled___lJ-PA_1-0-11","markerContainerDisabled":"magritte-marker-container-disabled___lJ-PA_1-0-11","step-style-neutral":"magritte-step-style-neutral___061j4_1-0-11","stepStyleNeutral":"magritte-step-style-neutral___061j4_1-0-11","step-style-positive":"magritte-step-style-positive___9jcvm_1-0-11","stepStylePositive":"magritte-step-style-positive___9jcvm_1-0-11","step-style-warning":"magritte-step-style-warning___NboIv_1-0-11","stepStyleWarning":"magritte-step-style-warning___NboIv_1-0-11","step-style-negative":"magritte-step-style-negative___w1AbF_1-0-11","stepStyleNegative":"magritte-step-style-negative___w1AbF_1-0-11","marker-divider-wrapper":"magritte-marker-divider-wrapper___PGB27_1-0-11","markerDividerWrapper":"magritte-marker-divider-wrapper___PGB27_1-0-11","content-interactive":"magritte-content-interactive___Cd9wI_1-0-11","contentInteractive":"magritte-content-interactive___Cd9wI_1-0-11"};
|
|
3
|
+
|
|
4
|
+
export { styles as s };
|
|
5
|
+
//# sourceMappingURL=stepper-BfW6dCr0.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stepper-BfW6dCr0.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
package/stepper-DKIamJnT.js
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import './index.css';
|
|
2
|
-
var styles = {"stepper":"magritte-stepper___bf9CG_1-0-10","stepper-horizontal":"magritte-stepper-horizontal___54ih5_1-0-10","stepperHorizontal":"magritte-stepper-horizontal___54ih5_1-0-10","step":"magritte-step___7YXV2_1-0-10","marker-container":"magritte-marker-container___ZuSOj_1-0-10","markerContainer":"magritte-marker-container___ZuSOj_1-0-10","marker-container-with-icon":"magritte-marker-container-with-icon___rBC1i_1-0-10","markerContainerWithIcon":"magritte-marker-container-with-icon___rBC1i_1-0-10","marker-wrapper":"magritte-marker-wrapper___m-Hsn_1-0-10","markerWrapper":"magritte-marker-wrapper___m-Hsn_1-0-10","content-container":"magritte-content-container___KPIiS_1-0-10","contentContainer":"magritte-content-container___KPIiS_1-0-10","stepper-vertical":"magritte-stepper-vertical___032Tm_1-0-10","stepperVertical":"magritte-stepper-vertical___032Tm_1-0-10","step-button":"magritte-step-button___xSXUO_1-0-10","stepButton":"magritte-step-button___xSXUO_1-0-10","stepper-no-content":"magritte-stepper-no-content___AEmtQ_1-0-10","stepperNoContent":"magritte-stepper-no-content___AEmtQ_1-0-10","step-no-content":"magritte-step-no-content___mTIaO_1-0-10","stepNoContent":"magritte-step-no-content___mTIaO_1-0-10","marker-container-disabled":"magritte-marker-container-disabled___lJ-PA_1-0-10","markerContainerDisabled":"magritte-marker-container-disabled___lJ-PA_1-0-10","step-style-neutral":"magritte-step-style-neutral___061j4_1-0-10","stepStyleNeutral":"magritte-step-style-neutral___061j4_1-0-10","step-style-positive":"magritte-step-style-positive___9jcvm_1-0-10","stepStylePositive":"magritte-step-style-positive___9jcvm_1-0-10","step-style-warning":"magritte-step-style-warning___NboIv_1-0-10","stepStyleWarning":"magritte-step-style-warning___NboIv_1-0-10","step-style-negative":"magritte-step-style-negative___w1AbF_1-0-10","stepStyleNegative":"magritte-step-style-negative___w1AbF_1-0-10","marker-divider-wrapper":"magritte-marker-divider-wrapper___PGB27_1-0-10","markerDividerWrapper":"magritte-marker-divider-wrapper___PGB27_1-0-10","content-interactive":"magritte-content-interactive___Cd9wI_1-0-10","contentInteractive":"magritte-content-interactive___Cd9wI_1-0-10"};
|
|
3
|
-
|
|
4
|
-
export { styles as s };
|
|
5
|
-
//# sourceMappingURL=stepper-DKIamJnT.js.map
|
package/stepper-DKIamJnT.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"stepper-DKIamJnT.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|