@hh.ru/magritte-ui-stepper 1.0.1 → 1.0.3

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 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-CV0xwEd1.js';
6
+ import { s as styles } from './stepper-CodJTfl5.js';
7
7
 
8
8
  const StepperContent = forwardRef(({ children, onClick }, ref) => {
9
9
  const Wrapper = onClick ? 'button' : Fragment;
package/Marker.js CHANGED
@@ -2,12 +2,12 @@ import './index.css';
2
2
  import { jsx } from 'react/jsx-runtime';
3
3
  import classnames from 'classnames';
4
4
  import { useDisabled } from '@hh.ru/magritte-common-use-disabled';
5
- import { isIconComponent } from '@hh.ru/magritte-ui-icon';
6
- import { s as styles } from './stepper-CV0xwEd1.js';
5
+ import { isIconElement } from '@hh.ru/magritte-ui-icon';
6
+ import { s as styles } from './stepper-CodJTfl5.js';
7
7
 
8
8
  const StepperMarker = ({ children }) => {
9
9
  const isDisabled = useDisabled();
10
- const isIcon = isIconComponent(children);
10
+ const isIcon = isIconElement(children);
11
11
  return (jsx("div", { className: classnames(styles.markerContainer, {
12
12
  [styles.markerContainerDisabled]: isDisabled,
13
13
  [styles.markerContainerWithIcon]: isIcon,
package/Marker.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"Marker.js","sources":["../src/Marker.tsx"],"sourcesContent":["import type { FC, PropsWithChildren } from 'react';\nimport classnames from 'classnames';\n\nimport { useDisabled } from '@hh.ru/magritte-common-use-disabled';\nimport { isIconComponent } from '@hh.ru/magritte-ui-icon';\n\nimport styles from './stepper.less';\n\nexport const StepperMarker: FC<PropsWithChildren> = ({ children }) => {\n const isDisabled = useDisabled();\n const isIcon = isIconComponent(children);\n\n return (\n <div\n className={classnames(styles.markerContainer, {\n [styles.markerContainerDisabled]: isDisabled,\n [styles.markerContainerWithIcon]: isIcon,\n })}\n role=\"img\"\n >\n <div className={styles.markerWrapper}>{children}</div>\n </div>\n );\n};\n"],"names":["_jsx"],"mappings":";;;;;;MAQa,aAAa,GAA0B,CAAC,EAAE,QAAQ,EAAE,KAAI;AACjE,IAAA,MAAM,UAAU,GAAG,WAAW,EAAE,CAAC;AACjC,IAAA,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,CAAC;IAEzC,QACIA,aACI,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,eAAe,EAAE;AAC1C,YAAA,CAAC,MAAM,CAAC,uBAAuB,GAAG,UAAU;AAC5C,YAAA,CAAC,MAAM,CAAC,uBAAuB,GAAG,MAAM;AAC3C,SAAA,CAAC,EACF,IAAI,EAAC,KAAK,EAAA,QAAA,EAEVA,aAAK,SAAS,EAAE,MAAM,CAAC,aAAa,EAAG,QAAA,EAAA,QAAQ,EAAO,CAAA,EAAA,CACpD,EACR;AACN;;;;"}
1
+ {"version":3,"file":"Marker.js","sources":["../src/Marker.tsx"],"sourcesContent":["import type { FC, PropsWithChildren } from 'react';\nimport classnames from 'classnames';\n\nimport { useDisabled } from '@hh.ru/magritte-common-use-disabled';\nimport { isIconElement } from '@hh.ru/magritte-ui-icon';\n\nimport styles from './stepper.less';\n\nexport const StepperMarker: FC<PropsWithChildren> = ({ children }) => {\n const isDisabled = useDisabled();\n const isIcon = isIconElement(children);\n\n return (\n <div\n className={classnames(styles.markerContainer, {\n [styles.markerContainerDisabled]: isDisabled,\n [styles.markerContainerWithIcon]: isIcon,\n })}\n role=\"img\"\n >\n <div className={styles.markerWrapper}>{children}</div>\n </div>\n );\n};\n"],"names":["_jsx"],"mappings":";;;;;;MAQa,aAAa,GAA0B,CAAC,EAAE,QAAQ,EAAE,KAAI;AACjE,IAAA,MAAM,UAAU,GAAG,WAAW,EAAE,CAAC;AACjC,IAAA,MAAM,MAAM,GAAG,aAAa,CAAC,QAAQ,CAAC,CAAC;IAEvC,QACIA,aACI,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,eAAe,EAAE;AAC1C,YAAA,CAAC,MAAM,CAAC,uBAAuB,GAAG,UAAU;AAC5C,YAAA,CAAC,MAAM,CAAC,uBAAuB,GAAG,MAAM;AAC3C,SAAA,CAAC,EACF,IAAI,EAAC,KAAK,EAAA,QAAA,EAEVA,aAAK,SAAS,EAAE,MAAM,CAAC,aAAa,EAAG,QAAA,EAAA,QAAQ,EAAO,CAAA,EAAA,CACpD,EACR;AACN;;;;"}
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-CV0xwEd1.js';
7
+ import { s as styles } from './stepper-CodJTfl5.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-CV0xwEd1.js';
6
+ import { s as styles } from './stepper-CodJTfl5.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
@@ -16,158 +16,158 @@
16
16
  --magritte-color-stroke-positive-v22-1-0:#0dc267;
17
17
  --magritte-color-stroke-state-focused-accessible-v22-1-0:#0070ff7a;
18
18
  }
19
- .magritte-stepper___bf9CG_1-0-1{
19
+ .magritte-stepper___bf9CG_1-0-3{
20
20
  display:flex;
21
21
  flex:1 1;
22
22
  list-style:none;
23
23
  }
24
- .magritte-stepper-horizontal___54ih5_1-0-1{
24
+ .magritte-stepper-horizontal___54ih5_1-0-3{
25
25
  flex-direction:row;
26
26
  }
27
- .magritte-stepper-horizontal___54ih5_1-0-1 .magritte-step___7YXV2_1-0-1{
27
+ .magritte-stepper-horizontal___54ih5_1-0-3 .magritte-step___7YXV2_1-0-3{
28
28
  flex-direction:column;
29
29
  }
30
- .magritte-stepper-horizontal___54ih5_1-0-1 .magritte-marker-container___ZuSOj_1-0-1{
30
+ .magritte-stepper-horizontal___54ih5_1-0-3 .magritte-marker-container___ZuSOj_1-0-3{
31
31
  flex-direction:row;
32
32
  padding:0 12px 0 0;
33
33
  }
34
- .magritte-stepper-horizontal___54ih5_1-0-1 .magritte-marker-container___ZuSOj_1-0-1.magritte-marker-container-with-icon___rBC1i_1-0-1{
34
+ .magritte-stepper-horizontal___54ih5_1-0-3 .magritte-marker-container___ZuSOj_1-0-3.magritte-marker-container-with-icon___rBC1i_1-0-3{
35
35
  padding:0 8px 0 0;
36
36
  }
37
- .magritte-stepper-horizontal___54ih5_1-0-1 .magritte-marker-container___ZuSOj_1-0-1::after{
37
+ .magritte-stepper-horizontal___54ih5_1-0-3 .magritte-marker-container___ZuSOj_1-0-3::after{
38
38
  border-width:0;
39
39
  border-top-width:1px;
40
40
  }
41
- .magritte-stepper-horizontal___54ih5_1-0-1 .magritte-marker-wrapper___m-Hsn_1-0-1{
41
+ .magritte-stepper-horizontal___54ih5_1-0-3 .magritte-marker-wrapper___m-Hsn_1-0-3{
42
42
  padding:0 12px 0 0;
43
43
  }
44
- .magritte-stepper-horizontal___54ih5_1-0-1 .magritte-marker-container-with-icon___rBC1i_1-0-1 .magritte-marker-wrapper___m-Hsn_1-0-1{
44
+ .magritte-stepper-horizontal___54ih5_1-0-3 .magritte-marker-container-with-icon___rBC1i_1-0-3 .magritte-marker-wrapper___m-Hsn_1-0-3{
45
45
  padding:0 8px 0 0;
46
46
  }
47
- .magritte-stepper-horizontal___54ih5_1-0-1 .magritte-content-container___KPIiS_1-0-1{
47
+ .magritte-stepper-horizontal___54ih5_1-0-3 .magritte-content-container___KPIiS_1-0-3{
48
48
  padding:8px 24px 0 0;
49
49
  }
50
- .magritte-stepper-horizontal___54ih5_1-0-1 .magritte-marker-container-with-icon___rBC1i_1-0-1 + .magritte-content-container___KPIiS_1-0-1{
50
+ .magritte-stepper-horizontal___54ih5_1-0-3 .magritte-marker-container-with-icon___rBC1i_1-0-3 + .magritte-content-container___KPIiS_1-0-3{
51
51
  padding:12px 24px 0 0;
52
52
  }
53
- .magritte-stepper-horizontal___54ih5_1-0-1 .magritte-step___7YXV2_1-0-1:last-of-type .magritte-content-container___KPIiS_1-0-1{
53
+ .magritte-stepper-horizontal___54ih5_1-0-3 .magritte-step___7YXV2_1-0-3:last-of-type .magritte-content-container___KPIiS_1-0-3{
54
54
  padding-right:0;
55
55
  }
56
- .magritte-content-container___KPIiS_1-0-1{
56
+ .magritte-content-container___KPIiS_1-0-3{
57
57
  order:2;
58
58
  }
59
- .magritte-stepper-vertical___032Tm_1-0-1{
59
+ .magritte-stepper-vertical___032Tm_1-0-3{
60
60
  flex-direction:column;
61
61
  }
62
- .magritte-stepper-vertical___032Tm_1-0-1 .magritte-step___7YXV2_1-0-1{
62
+ .magritte-stepper-vertical___032Tm_1-0-3 .magritte-step___7YXV2_1-0-3{
63
63
  flex-direction:row;
64
64
  }
65
- .magritte-stepper-vertical___032Tm_1-0-1 .magritte-content-container___KPIiS_1-0-1,
66
- .magritte-stepper-vertical___032Tm_1-0-1 .magritte-step-button___xSXUO_1-0-1{
65
+ .magritte-stepper-vertical___032Tm_1-0-3 .magritte-content-container___KPIiS_1-0-3,
66
+ .magritte-stepper-vertical___032Tm_1-0-3 .magritte-step-button___xSXUO_1-0-3{
67
67
  flex:1 1;
68
68
  }
69
- .magritte-stepper-vertical___032Tm_1-0-1 .magritte-marker-container___ZuSOj_1-0-1{
69
+ .magritte-stepper-vertical___032Tm_1-0-3 .magritte-marker-container___ZuSOj_1-0-3{
70
70
  flex-direction:column;
71
71
  padding:4px 0 8px;
72
72
  }
73
- .magritte-stepper-vertical___032Tm_1-0-1 .magritte-marker-container___ZuSOj_1-0-1.magritte-marker-container-with-icon___rBC1i_1-0-1{
73
+ .magritte-stepper-vertical___032Tm_1-0-3 .magritte-marker-container___ZuSOj_1-0-3.magritte-marker-container-with-icon___rBC1i_1-0-3{
74
74
  padding-bottom:4px;
75
75
  }
76
- .magritte-stepper-vertical___032Tm_1-0-1.magritte-stepper-no-content___AEmtQ_1-0-1 .magritte-marker-container___ZuSOj_1-0-1{
76
+ .magritte-stepper-vertical___032Tm_1-0-3.magritte-stepper-no-content___AEmtQ_1-0-3 .magritte-marker-container___ZuSOj_1-0-3{
77
77
  padding-right:0;
78
78
  }
79
- .magritte-stepper-vertical___032Tm_1-0-1 .magritte-marker-container___ZuSOj_1-0-1::after{
79
+ .magritte-stepper-vertical___032Tm_1-0-3 .magritte-marker-container___ZuSOj_1-0-3::after{
80
80
  border-width:0;
81
81
  border-left-width:1px;
82
82
  }
83
- .magritte-stepper-vertical___032Tm_1-0-1 .magritte-marker-wrapper___m-Hsn_1-0-1{
83
+ .magritte-stepper-vertical___032Tm_1-0-3 .magritte-marker-wrapper___m-Hsn_1-0-3{
84
84
  padding:0 0 12px;
85
85
  }
86
- .magritte-stepper-vertical___032Tm_1-0-1 .magritte-marker-container-with-icon___rBC1i_1-0-1 .magritte-marker-wrapper___m-Hsn_1-0-1{
86
+ .magritte-stepper-vertical___032Tm_1-0-3 .magritte-marker-container-with-icon___rBC1i_1-0-3 .magritte-marker-wrapper___m-Hsn_1-0-3{
87
87
  padding:0 0 8px;
88
88
  }
89
- .magritte-stepper-vertical___032Tm_1-0-1 .magritte-content-container___KPIiS_1-0-1{
89
+ .magritte-stepper-vertical___032Tm_1-0-3 .magritte-content-container___KPIiS_1-0-3{
90
90
  padding:0 0 24px 12px;
91
91
  }
92
- .magritte-stepper-vertical___032Tm_1-0-1 .magritte-step___7YXV2_1-0-1:last-of-type .magritte-content-container___KPIiS_1-0-1{
92
+ .magritte-stepper-vertical___032Tm_1-0-3 .magritte-step___7YXV2_1-0-3:last-of-type .magritte-content-container___KPIiS_1-0-3{
93
93
  padding-bottom:0;
94
94
  }
95
- .magritte-step___7YXV2_1-0-1:last-of-type.magritte-step-no-content___mTIaO_1-0-1{
95
+ .magritte-step___7YXV2_1-0-3:last-of-type.magritte-step-no-content___mTIaO_1-0-3{
96
96
  flex:0 0;
97
97
  }
98
- .magritte-step___7YXV2_1-0-1:last-of-type.magritte-step-no-content___mTIaO_1-0-1 .magritte-marker-container___ZuSOj_1-0-1,
99
- .magritte-step___7YXV2_1-0-1:last-of-type.magritte-step-no-content___mTIaO_1-0-1 .magritte-marker-wrapper___m-Hsn_1-0-1{
98
+ .magritte-step___7YXV2_1-0-3:last-of-type.magritte-step-no-content___mTIaO_1-0-3 .magritte-marker-container___ZuSOj_1-0-3,
99
+ .magritte-step___7YXV2_1-0-3:last-of-type.magritte-step-no-content___mTIaO_1-0-3 .magritte-marker-wrapper___m-Hsn_1-0-3{
100
100
  padding:0;
101
101
  }
102
- .magritte-step___7YXV2_1-0-1{
102
+ .magritte-step___7YXV2_1-0-3{
103
103
  display:flex;
104
104
  flex:1 1;
105
105
  }
106
- .magritte-marker-container___ZuSOj_1-0-1{
106
+ .magritte-marker-container___ZuSOj_1-0-3{
107
107
  order:1;
108
108
  display:flex;
109
109
  align-items:center;
110
110
  }
111
- .magritte-marker-container-disabled___lJ-PA_1-0-1{
111
+ .magritte-marker-container-disabled___lJ-PA_1-0-3{
112
112
  opacity:0.5;
113
113
  }
114
- .magritte-step___7YXV2_1-0-1:not(:last-of-type) .magritte-marker-container___ZuSOj_1-0-1::after{
114
+ .magritte-step___7YXV2_1-0-3:not(:last-of-type) .magritte-marker-container___ZuSOj_1-0-3::after{
115
115
  flex:1 1;
116
116
  content:'';
117
117
  border-style:solid;
118
118
  }
119
- .magritte-step-style-neutral___061j4_1-0-1 .magritte-marker-container___ZuSOj_1-0-1::after{
119
+ .magritte-step-style-neutral___061j4_1-0-3 .magritte-marker-container___ZuSOj_1-0-3::after{
120
120
  border-color:var(--magritte-color-stroke-neutral-v22-1-0);
121
121
  }
122
- .magritte-step-style-positive___9jcvm_1-0-1 .magritte-marker-container___ZuSOj_1-0-1::after{
122
+ .magritte-step-style-positive___9jcvm_1-0-3 .magritte-marker-container___ZuSOj_1-0-3::after{
123
123
  border-color:var(--magritte-color-stroke-positive-v22-1-0);
124
124
  }
125
- .magritte-step-style-warning___NboIv_1-0-1 .magritte-marker-container___ZuSOj_1-0-1::after{
125
+ .magritte-step-style-warning___NboIv_1-0-3 .magritte-marker-container___ZuSOj_1-0-3::after{
126
126
  border-color:var(--magritte-color-stroke-neutral-v22-1-0);
127
127
  }
128
- .magritte-step-style-negative___w1AbF_1-0-1 .magritte-marker-container___ZuSOj_1-0-1::after{
128
+ .magritte-step-style-negative___w1AbF_1-0-3 .magritte-marker-container___ZuSOj_1-0-3::after{
129
129
  border-color:var(--magritte-color-stroke-neutral-v22-1-0);
130
130
  }
131
- .magritte-marker-wrapper___m-Hsn_1-0-1{
131
+ .magritte-marker-wrapper___m-Hsn_1-0-3{
132
132
  display:flex;
133
133
  flex:0 0;
134
134
  }
135
- .magritte-marker-divider-wrapper___PGB27_1-0-1{
135
+ .magritte-marker-divider-wrapper___PGB27_1-0-3{
136
136
  display:inline-block;
137
137
  flex:1 1;
138
138
  }
139
- .magritte-content-container___KPIiS_1-0-1,
140
- .magritte-step-button___xSXUO_1-0-1{
139
+ .magritte-content-container___KPIiS_1-0-3,
140
+ .magritte-step-button___xSXUO_1-0-3{
141
141
  display:flex;
142
142
  flex-direction:column;
143
143
  align-items:flex-start;
144
144
  gap:12px;
145
145
  }
146
- .magritte-content-interactive___Cd9wI_1-0-1{
146
+ .magritte-content-interactive___Cd9wI_1-0-3{
147
147
  align-items:stretch;
148
148
  }
149
- .magritte-step-button___xSXUO_1-0-1{
149
+ .magritte-step-button___xSXUO_1-0-3{
150
150
  margin:-4px -8px;
151
151
  padding:4px 8px;
152
152
  border-radius:12px;
153
153
  cursor:default;
154
154
  }
155
- .magritte-step-button___xSXUO_1-0-1:not(:disabled){
155
+ .magritte-step-button___xSXUO_1-0-3:not(:disabled){
156
156
  cursor:pointer;
157
157
  }
158
158
  @media (min-width: 1020px){
159
- body.magritte-old-layout .magritte-step-button___xSXUO_1-0-1:hover:not(:disabled){
159
+ body.magritte-old-layout .magritte-step-button___xSXUO_1-0-3:hover:not(:disabled){
160
160
  background-color:var(--magritte-color-background-state-secondary-hovered-v22-1-0);
161
161
  }
162
162
  }
163
163
  @media (min-width: 1024px){
164
- body:not(.magritte-old-layout) .magritte-step-button___xSXUO_1-0-1:hover:not(:disabled){
164
+ body:not(.magritte-old-layout) .magritte-step-button___xSXUO_1-0-3:hover:not(:disabled){
165
165
  background-color:var(--magritte-color-background-state-secondary-hovered-v22-1-0);
166
166
  }
167
167
  }
168
- .magritte-step-button___xSXUO_1-0-1:active:not(:disabled){
168
+ .magritte-step-button___xSXUO_1-0-3:active:not(:disabled){
169
169
  background-color:var(--magritte-color-background-state-secondary-hovered-v22-1-0);
170
170
  }
171
- .magritte-step-button___xSXUO_1-0-1.focus-visible{
171
+ .magritte-step-button___xSXUO_1-0-3.focus-visible{
172
172
  outline:4px solid var(--magritte-color-stroke-state-focused-accessible-v22-1-0);
173
173
  }
package/index.js CHANGED
@@ -7,6 +7,6 @@ import 'react/jsx-runtime';
7
7
  import 'react';
8
8
  import 'classnames';
9
9
  import '@hh.ru/magritte-common-use-disabled';
10
- import './stepper-CV0xwEd1.js';
10
+ import './stepper-CodJTfl5.js';
11
11
  import '@hh.ru/magritte-ui-icon';
12
12
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hh.ru/magritte-ui-stepper",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "sideEffects": [
@@ -25,11 +25,11 @@
25
25
  "@hh.ru/magritte-common-use-disabled": "1.0.12",
26
26
  "@hh.ru/magritte-design-tokens": "22.1.0",
27
27
  "@hh.ru/magritte-ui-breakpoint": "6.0.0",
28
- "@hh.ru/magritte-ui-icon": "12.0.0"
28
+ "@hh.ru/magritte-ui-icon": "12.2.0"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "classnames": ">=2.3.2",
32
32
  "react": ">=18.2.0"
33
33
  },
34
- "gitHead": "b33df89ee2467f582ff290503045fd6382aecd60"
34
+ "gitHead": "47439eecca7941fc790be441ba065be7824490bf"
35
35
  }
@@ -0,0 +1,5 @@
1
+ import './index.css';
2
+ var styles = {"stepper":"magritte-stepper___bf9CG_1-0-3","stepper-horizontal":"magritte-stepper-horizontal___54ih5_1-0-3","stepperHorizontal":"magritte-stepper-horizontal___54ih5_1-0-3","step":"magritte-step___7YXV2_1-0-3","marker-container":"magritte-marker-container___ZuSOj_1-0-3","markerContainer":"magritte-marker-container___ZuSOj_1-0-3","marker-container-with-icon":"magritte-marker-container-with-icon___rBC1i_1-0-3","markerContainerWithIcon":"magritte-marker-container-with-icon___rBC1i_1-0-3","marker-wrapper":"magritte-marker-wrapper___m-Hsn_1-0-3","markerWrapper":"magritte-marker-wrapper___m-Hsn_1-0-3","content-container":"magritte-content-container___KPIiS_1-0-3","contentContainer":"magritte-content-container___KPIiS_1-0-3","stepper-vertical":"magritte-stepper-vertical___032Tm_1-0-3","stepperVertical":"magritte-stepper-vertical___032Tm_1-0-3","step-button":"magritte-step-button___xSXUO_1-0-3","stepButton":"magritte-step-button___xSXUO_1-0-3","stepper-no-content":"magritte-stepper-no-content___AEmtQ_1-0-3","stepperNoContent":"magritte-stepper-no-content___AEmtQ_1-0-3","step-no-content":"magritte-step-no-content___mTIaO_1-0-3","stepNoContent":"magritte-step-no-content___mTIaO_1-0-3","marker-container-disabled":"magritte-marker-container-disabled___lJ-PA_1-0-3","markerContainerDisabled":"magritte-marker-container-disabled___lJ-PA_1-0-3","step-style-neutral":"magritte-step-style-neutral___061j4_1-0-3","stepStyleNeutral":"magritte-step-style-neutral___061j4_1-0-3","step-style-positive":"magritte-step-style-positive___9jcvm_1-0-3","stepStylePositive":"magritte-step-style-positive___9jcvm_1-0-3","step-style-warning":"magritte-step-style-warning___NboIv_1-0-3","stepStyleWarning":"magritte-step-style-warning___NboIv_1-0-3","step-style-negative":"magritte-step-style-negative___w1AbF_1-0-3","stepStyleNegative":"magritte-step-style-negative___w1AbF_1-0-3","marker-divider-wrapper":"magritte-marker-divider-wrapper___PGB27_1-0-3","markerDividerWrapper":"magritte-marker-divider-wrapper___PGB27_1-0-3","content-interactive":"magritte-content-interactive___Cd9wI_1-0-3","contentInteractive":"magritte-content-interactive___Cd9wI_1-0-3"};
3
+
4
+ export { styles as s };
5
+ //# sourceMappingURL=stepper-CodJTfl5.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-CodJTfl5.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
@@ -1,5 +0,0 @@
1
- import './index.css';
2
- var styles = {"stepper":"magritte-stepper___bf9CG_1-0-1","stepper-horizontal":"magritte-stepper-horizontal___54ih5_1-0-1","stepperHorizontal":"magritte-stepper-horizontal___54ih5_1-0-1","step":"magritte-step___7YXV2_1-0-1","marker-container":"magritte-marker-container___ZuSOj_1-0-1","markerContainer":"magritte-marker-container___ZuSOj_1-0-1","marker-container-with-icon":"magritte-marker-container-with-icon___rBC1i_1-0-1","markerContainerWithIcon":"magritte-marker-container-with-icon___rBC1i_1-0-1","marker-wrapper":"magritte-marker-wrapper___m-Hsn_1-0-1","markerWrapper":"magritte-marker-wrapper___m-Hsn_1-0-1","content-container":"magritte-content-container___KPIiS_1-0-1","contentContainer":"magritte-content-container___KPIiS_1-0-1","stepper-vertical":"magritte-stepper-vertical___032Tm_1-0-1","stepperVertical":"magritte-stepper-vertical___032Tm_1-0-1","step-button":"magritte-step-button___xSXUO_1-0-1","stepButton":"magritte-step-button___xSXUO_1-0-1","stepper-no-content":"magritte-stepper-no-content___AEmtQ_1-0-1","stepperNoContent":"magritte-stepper-no-content___AEmtQ_1-0-1","step-no-content":"magritte-step-no-content___mTIaO_1-0-1","stepNoContent":"magritte-step-no-content___mTIaO_1-0-1","marker-container-disabled":"magritte-marker-container-disabled___lJ-PA_1-0-1","markerContainerDisabled":"magritte-marker-container-disabled___lJ-PA_1-0-1","step-style-neutral":"magritte-step-style-neutral___061j4_1-0-1","stepStyleNeutral":"magritte-step-style-neutral___061j4_1-0-1","step-style-positive":"magritte-step-style-positive___9jcvm_1-0-1","stepStylePositive":"magritte-step-style-positive___9jcvm_1-0-1","step-style-warning":"magritte-step-style-warning___NboIv_1-0-1","stepStyleWarning":"magritte-step-style-warning___NboIv_1-0-1","step-style-negative":"magritte-step-style-negative___w1AbF_1-0-1","stepStyleNegative":"magritte-step-style-negative___w1AbF_1-0-1","marker-divider-wrapper":"magritte-marker-divider-wrapper___PGB27_1-0-1","markerDividerWrapper":"magritte-marker-divider-wrapper___PGB27_1-0-1","content-interactive":"magritte-content-interactive___Cd9wI_1-0-1","contentInteractive":"magritte-content-interactive___Cd9wI_1-0-1"};
3
-
4
- export { styles as s };
5
- //# sourceMappingURL=stepper-CV0xwEd1.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"stepper-CV0xwEd1.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}