@hh.ru/magritte-ui-stepper 1.0.30 → 1.1.0

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--f8piype.js';
6
+ import { s as styles } from './stepper-CQfYi_17.js';
7
7
 
8
8
  const StepperContent = forwardRef(({ children, onClick }, ref) => {
9
9
  const Wrapper = onClick ? 'button' : Fragment;
package/Marker.d.ts CHANGED
@@ -1,2 +1,5 @@
1
1
  import type { FC, PropsWithChildren } from 'react';
2
- export declare const StepperMarker: FC<PropsWithChildren>;
2
+ export interface StepperMarkerProps extends PropsWithChildren {
3
+ size?: 16 | 40;
4
+ }
5
+ export declare const StepperMarker: FC<StepperMarkerProps>;
package/Marker.js CHANGED
@@ -2,16 +2,17 @@ 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 { isIconElement } from '@hh.ru/magritte-ui-icon';
6
- import { s as styles } from './stepper--f8piype.js';
5
+ import { isIconElement, IconDynamic } from '@hh.ru/magritte-ui-icon';
6
+ import { s as styles } from './stepper-CQfYi_17.js';
7
7
 
8
- const StepperMarker = ({ children }) => {
9
- const isDisabled = useDisabled();
8
+ const StepperMarker = ({ children, size }) => {
10
9
  const isIcon = isIconElement(children);
10
+ const isDisabled = useDisabled();
11
+ const style = size ? { minWidth: `${size}px`, minHeight: `${size}px` } : {};
11
12
  return (jsx("div", { className: classnames(styles.markerContainer, {
12
13
  [styles.markerContainerDisabled]: isDisabled,
13
14
  [styles.markerContainerWithIcon]: isIcon,
14
- }), role: "img", children: jsx("div", { className: styles.markerWrapper, children: children }) }));
15
+ }), role: "img", style: style, children: jsx("div", { className: styles.markerWrapper, children: jsx(IconDynamic, { children: children }) }) }));
15
16
  };
16
17
 
17
18
  export { StepperMarker };
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 { 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;;;;"}
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, IconDynamic } from '@hh.ru/magritte-ui-icon';\n\nimport styles from './stepper.less';\n\nexport interface StepperMarkerProps extends PropsWithChildren {\n size?: 16 | 40;\n}\n\nexport const StepperMarker: FC<StepperMarkerProps> = ({ children, size }) => {\n const isIcon = isIconElement(children);\n const isDisabled = useDisabled();\n const style = size ? { minWidth: `${size}px`, minHeight: `${size}px` } : {};\n\n return (\n <div\n className={classnames(styles.markerContainer, {\n [styles.markerContainerDisabled]: isDisabled,\n [styles.markerContainerWithIcon]: isIcon,\n })}\n role=\"img\"\n style={style}\n >\n <div className={styles.markerWrapper}>\n <IconDynamic>{children}</IconDynamic>\n </div>\n </div>\n );\n};\n"],"names":["_jsx"],"mappings":";;;;;;AAYa,MAAA,aAAa,GAA2B,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAI;AACxE,IAAA,MAAM,MAAM,GAAG,aAAa,CAAC,QAAQ,CAAC,CAAC;AACvC,IAAA,MAAM,UAAU,GAAG,WAAW,EAAE,CAAC;IACjC,MAAM,KAAK,GAAG,IAAI,GAAG,EAAE,QAAQ,EAAE,CAAG,EAAA,IAAI,IAAI,EAAE,SAAS,EAAE,CAAA,EAAG,IAAI,CAAA,EAAA,CAAI,EAAE,GAAG,EAAE,CAAC;IAE5E,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;SAC3C,CAAC,EACF,IAAI,EAAC,KAAK,EACV,KAAK,EAAE,KAAK,EAEZ,QAAA,EAAAA,GAAA,CAAA,KAAA,EAAA,EAAK,SAAS,EAAE,MAAM,CAAC,aAAa,EAChC,QAAA,EAAAA,GAAA,CAAC,WAAW,EAAA,EAAA,QAAA,EAAE,QAAQ,EAAe,CAAA,EAAA,CACnC,EACJ,CAAA,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--f8piype.js';
7
+ import { s as styles } from './stepper-CQfYi_17.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--f8piype.js';
6
+ import { s as styles } from './stepper-CQfYi_17.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
@@ -10,160 +10,158 @@
10
10
  --magritte-color-stroke-neutral-v24-1-0:#303030;
11
11
  --magritte-color-stroke-positive-v24-1-0:#10b55f;
12
12
  }
13
- .magritte-stepper___bf9CG_1-0-30{
13
+ .magritte-stepper___bf9CG_1-1-0{
14
14
  display:flex;
15
15
  flex:1 1;
16
16
  list-style:none;
17
17
  }
18
- .magritte-stepper-horizontal___54ih5_1-0-30{
18
+ .magritte-stepper-horizontal___54ih5_1-1-0{
19
19
  flex-direction:row;
20
20
  }
21
- .magritte-stepper-horizontal___54ih5_1-0-30 .magritte-step___7YXV2_1-0-30{
21
+ .magritte-stepper-horizontal___54ih5_1-1-0 .magritte-step___7YXV2_1-1-0{
22
22
  flex-direction:column;
23
23
  }
24
- .magritte-stepper-horizontal___54ih5_1-0-30 .magritte-marker-container___ZuSOj_1-0-30{
24
+ .magritte-stepper-horizontal___54ih5_1-1-0 .magritte-marker-container___ZuSOj_1-1-0{
25
25
  flex-direction:row;
26
26
  padding:0 12px 0 0;
27
27
  }
28
- .magritte-stepper-horizontal___54ih5_1-0-30 .magritte-marker-container___ZuSOj_1-0-30.magritte-marker-container-with-icon___rBC1i_1-0-30{
28
+ .magritte-stepper-horizontal___54ih5_1-1-0 .magritte-marker-container___ZuSOj_1-1-0.magritte-marker-container-with-icon___rBC1i_1-1-0{
29
29
  padding:0 8px 0 0;
30
30
  }
31
- .magritte-stepper-horizontal___54ih5_1-0-30 .magritte-marker-container___ZuSOj_1-0-30::after{
31
+ .magritte-stepper-horizontal___54ih5_1-1-0 .magritte-marker-container___ZuSOj_1-1-0::after{
32
32
  border-width:0;
33
33
  border-top-width:1px;
34
34
  }
35
- .magritte-stepper-horizontal___54ih5_1-0-30 .magritte-marker-wrapper___m-Hsn_1-0-30{
35
+ .magritte-stepper-horizontal___54ih5_1-1-0 .magritte-marker-wrapper___m-Hsn_1-1-0{
36
36
  padding:0 12px 0 0;
37
37
  }
38
- .magritte-stepper-horizontal___54ih5_1-0-30 .magritte-marker-container-with-icon___rBC1i_1-0-30 .magritte-marker-wrapper___m-Hsn_1-0-30{
38
+ .magritte-stepper-horizontal___54ih5_1-1-0 .magritte-marker-container-with-icon___rBC1i_1-1-0 .magritte-marker-wrapper___m-Hsn_1-1-0{
39
39
  padding:0 8px 0 0;
40
40
  }
41
- .magritte-stepper-horizontal___54ih5_1-0-30 .magritte-content-container___KPIiS_1-0-30{
42
- padding:8px 24px 0 0;
43
- }
44
- .magritte-stepper-horizontal___54ih5_1-0-30 .magritte-marker-container-with-icon___rBC1i_1-0-30 + .magritte-content-container___KPIiS_1-0-30{
41
+ .magritte-stepper-horizontal___54ih5_1-1-0 .magritte-content-container___KPIiS_1-1-0{
45
42
  padding:12px 24px 0 0;
46
43
  }
47
- .magritte-stepper-horizontal___54ih5_1-0-30 .magritte-step___7YXV2_1-0-30:last-of-type .magritte-content-container___KPIiS_1-0-30{
44
+ .magritte-stepper-horizontal___54ih5_1-1-0 .magritte-step___7YXV2_1-1-0:last-of-type .magritte-content-container___KPIiS_1-1-0{
48
45
  padding-right:0;
49
46
  }
50
- .magritte-content-container___KPIiS_1-0-30{
47
+ .magritte-content-container___KPIiS_1-1-0{
51
48
  order:2;
52
49
  }
53
- .magritte-stepper-vertical___032Tm_1-0-30{
50
+ .magritte-stepper-vertical___032Tm_1-1-0{
54
51
  flex-direction:column;
55
52
  }
56
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-step___7YXV2_1-0-30{
53
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-step___7YXV2_1-1-0{
57
54
  flex-direction:row;
58
55
  }
59
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-content-container___KPIiS_1-0-30,
60
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-step-button___xSXUO_1-0-30{
56
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-content-container___KPIiS_1-1-0,
57
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-step-button___xSXUO_1-1-0{
61
58
  flex:1 1;
62
59
  }
63
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-marker-container___ZuSOj_1-0-30{
60
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-marker-container___ZuSOj_1-1-0{
64
61
  flex-direction:column;
65
62
  padding:4px 0 8px;
66
63
  }
67
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-marker-container___ZuSOj_1-0-30.magritte-marker-container-with-icon___rBC1i_1-0-30{
64
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-marker-container___ZuSOj_1-1-0.magritte-marker-container-with-icon___rBC1i_1-1-0{
68
65
  padding-bottom:4px;
69
66
  }
70
- .magritte-stepper-vertical___032Tm_1-0-30.magritte-stepper-no-content___AEmtQ_1-0-30 .magritte-marker-container___ZuSOj_1-0-30{
67
+ .magritte-stepper-vertical___032Tm_1-1-0.magritte-stepper-no-content___AEmtQ_1-1-0 .magritte-marker-container___ZuSOj_1-1-0{
71
68
  padding-right:0;
72
69
  }
73
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-marker-container___ZuSOj_1-0-30::after{
70
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-marker-container___ZuSOj_1-1-0::after{
74
71
  border-width:0;
75
72
  border-left-width:1px;
76
73
  }
77
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-marker-wrapper___m-Hsn_1-0-30{
74
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-marker-wrapper___m-Hsn_1-1-0{
78
75
  padding:0 0 12px;
79
76
  }
80
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-marker-container-with-icon___rBC1i_1-0-30 .magritte-marker-wrapper___m-Hsn_1-0-30{
77
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-marker-container-with-icon___rBC1i_1-1-0 .magritte-marker-wrapper___m-Hsn_1-1-0{
81
78
  padding:0 0 8px;
82
79
  }
83
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-content-container___KPIiS_1-0-30{
80
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-content-container___KPIiS_1-1-0{
84
81
  padding:0 0 24px 12px;
85
82
  }
86
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-step___7YXV2_1-0-30:last-of-type .magritte-content-container___KPIiS_1-0-30,
87
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-step___7YXV2_1-0-30:last-of-type .magritte-marker-container___ZuSOj_1-0-30,
88
- .magritte-stepper-vertical___032Tm_1-0-30 .magritte-step___7YXV2_1-0-30:last-of-type .magritte-marker-wrapper___m-Hsn_1-0-30{
83
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-step___7YXV2_1-1-0:last-of-type .magritte-content-container___KPIiS_1-1-0,
84
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-step___7YXV2_1-1-0:last-of-type .magritte-marker-container___ZuSOj_1-1-0,
85
+ .magritte-stepper-vertical___032Tm_1-1-0 .magritte-step___7YXV2_1-1-0:last-of-type .magritte-marker-wrapper___m-Hsn_1-1-0{
89
86
  padding-bottom:0;
90
87
  }
91
- .magritte-step___7YXV2_1-0-30:last-of-type.magritte-step-no-content___mTIaO_1-0-30{
88
+ .magritte-step___7YXV2_1-1-0:last-of-type.magritte-step-no-content___mTIaO_1-1-0{
92
89
  flex:0 0;
93
90
  }
94
- .magritte-step___7YXV2_1-0-30:last-of-type.magritte-step-no-content___mTIaO_1-0-30 .magritte-marker-container___ZuSOj_1-0-30,
95
- .magritte-step___7YXV2_1-0-30:last-of-type.magritte-step-no-content___mTIaO_1-0-30 .magritte-marker-wrapper___m-Hsn_1-0-30{
91
+ .magritte-step___7YXV2_1-1-0:last-of-type.magritte-step-no-content___mTIaO_1-1-0 .magritte-marker-container___ZuSOj_1-1-0,
92
+ .magritte-step___7YXV2_1-1-0:last-of-type.magritte-step-no-content___mTIaO_1-1-0 .magritte-marker-wrapper___m-Hsn_1-1-0{
96
93
  padding:0;
97
94
  }
98
- .magritte-step___7YXV2_1-0-30{
95
+ .magritte-step___7YXV2_1-1-0{
99
96
  display:flex;
100
97
  flex:1 1;
101
98
  }
102
- .magritte-marker-container___ZuSOj_1-0-30{
99
+ .magritte-marker-container___ZuSOj_1-1-0{
103
100
  order:1;
104
101
  display:flex;
105
102
  align-items:center;
106
103
  }
107
- .magritte-marker-container-disabled___lJ-PA_1-0-30{
104
+ .magritte-marker-container-disabled___lJ-PA_1-1-0::after{
108
105
  opacity:0.5;
109
106
  }
110
- .magritte-step___7YXV2_1-0-30:not(:last-of-type) .magritte-marker-container___ZuSOj_1-0-30::after{
107
+ .magritte-step___7YXV2_1-1-0:not(:last-of-type) .magritte-marker-container___ZuSOj_1-1-0::after{
111
108
  flex:1 1;
112
109
  content:'';
113
110
  border-style:solid;
114
111
  }
115
- .magritte-step-style-neutral___061j4_1-0-30 .magritte-marker-container___ZuSOj_1-0-30::after{
112
+ .magritte-step-style-neutral___061j4_1-1-0 .magritte-marker-container___ZuSOj_1-1-0::after{
116
113
  border-color:var(--magritte-color-stroke-neutral-v24-1-0);
117
114
  }
118
- .magritte-step-style-positive___9jcvm_1-0-30 .magritte-marker-container___ZuSOj_1-0-30::after{
115
+ .magritte-step-style-positive___9jcvm_1-1-0 .magritte-marker-container___ZuSOj_1-1-0::after{
119
116
  border-color:var(--magritte-color-stroke-positive-v24-1-0);
120
117
  }
121
- .magritte-step-style-warning___NboIv_1-0-30 .magritte-marker-container___ZuSOj_1-0-30::after{
118
+ .magritte-step-style-warning___NboIv_1-1-0 .magritte-marker-container___ZuSOj_1-1-0::after{
122
119
  border-color:var(--magritte-color-stroke-neutral-v24-1-0);
123
120
  }
124
- .magritte-step-style-negative___w1AbF_1-0-30 .magritte-marker-container___ZuSOj_1-0-30::after{
121
+ .magritte-step-style-negative___w1AbF_1-1-0 .magritte-marker-container___ZuSOj_1-1-0::after{
125
122
  border-color:var(--magritte-color-stroke-neutral-v24-1-0);
126
123
  }
127
- .magritte-marker-wrapper___m-Hsn_1-0-30{
124
+ .magritte-marker-wrapper___m-Hsn_1-1-0{
128
125
  display:flex;
129
126
  flex:0 0;
127
+ line-height:0;
130
128
  }
131
- .magritte-marker-divider-wrapper___PGB27_1-0-30{
129
+ .magritte-marker-divider-wrapper___PGB27_1-1-0{
132
130
  display:inline-block;
133
131
  flex:1 1;
134
132
  }
135
- .magritte-content-container___KPIiS_1-0-30,
136
- .magritte-step-button___xSXUO_1-0-30{
133
+ .magritte-content-container___KPIiS_1-1-0,
134
+ .magritte-step-button___xSXUO_1-1-0{
137
135
  display:flex;
138
136
  flex-direction:column;
139
137
  align-items:flex-start;
140
138
  gap:12px;
141
139
  }
142
- .magritte-content-interactive___Cd9wI_1-0-30{
140
+ .magritte-content-interactive___Cd9wI_1-1-0{
143
141
  align-items:stretch;
144
142
  }
145
- .magritte-step-button___xSXUO_1-0-30{
143
+ .magritte-step-button___xSXUO_1-1-0{
146
144
  margin:-4px -8px;
147
145
  padding:4px 8px;
148
146
  border-radius:12px;
149
147
  cursor:default;
150
148
  }
151
- .magritte-step-button___xSXUO_1-0-30:not(:disabled){
149
+ .magritte-step-button___xSXUO_1-1-0:not(:disabled){
152
150
  cursor:pointer;
153
151
  }
154
152
  @media (min-width: 1020px){
155
- body.magritte-old-layout .magritte-step-button___xSXUO_1-0-30:hover:not(:disabled){
153
+ body.magritte-old-layout .magritte-step-button___xSXUO_1-1-0:hover:not(:disabled){
156
154
  background-color:var(--magritte-color-background-state-secondary-hovered-v24-1-0);
157
155
  }
158
156
  }
159
157
  @media (min-width: 1024px){
160
- body:not(.magritte-old-layout) .magritte-step-button___xSXUO_1-0-30:hover:not(:disabled){
158
+ body:not(.magritte-old-layout) .magritte-step-button___xSXUO_1-1-0:hover:not(:disabled){
161
159
  background-color:var(--magritte-color-background-state-secondary-hovered-v24-1-0);
162
160
  }
163
161
  }
164
- .magritte-step-button___xSXUO_1-0-30:active:not(:disabled){
162
+ .magritte-step-button___xSXUO_1-1-0:active:not(:disabled){
165
163
  background-color:var(--magritte-color-background-state-secondary-hovered-v24-1-0);
166
164
  }
167
- .magritte-step-button___xSXUO_1-0-30.focus-visible{
165
+ .magritte-step-button___xSXUO_1-1-0.focus-visible{
168
166
  outline:4px solid var(--magritte-color-stroke-state-focused-accessible-v24-1-0);
169
167
  }
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export * from '@hh.ru/magritte-ui-stepper/Stepper';
2
2
  export { StepperStep, type StepExternalProps as StepperStepProps } from '@hh.ru/magritte-ui-stepper/Step';
3
3
  export { StepperContent } from '@hh.ru/magritte-ui-stepper/Content';
4
- export { StepperMarker } from '@hh.ru/magritte-ui-stepper/Marker';
4
+ export { StepperMarker, type StepperMarkerProps } from '@hh.ru/magritte-ui-stepper/Marker';
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--f8piype.js';
10
+ import './stepper-CQfYi_17.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.30",
3
+ "version": "1.1.0",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "sideEffects": [
@@ -32,5 +32,5 @@
32
32
  "classnames": ">=2.3.2",
33
33
  "react": ">=18.2.0"
34
34
  },
35
- "gitHead": "3bec23f33a604ce69a0649560716934949bdfe29"
35
+ "gitHead": "2c8a954924cead701c07fc597413a7083fe880a8"
36
36
  }
@@ -0,0 +1,5 @@
1
+ import './index.css';
2
+ var styles = {"stepper":"magritte-stepper___bf9CG_1-1-0","stepper-horizontal":"magritte-stepper-horizontal___54ih5_1-1-0","stepperHorizontal":"magritte-stepper-horizontal___54ih5_1-1-0","step":"magritte-step___7YXV2_1-1-0","marker-container":"magritte-marker-container___ZuSOj_1-1-0","markerContainer":"magritte-marker-container___ZuSOj_1-1-0","marker-container-with-icon":"magritte-marker-container-with-icon___rBC1i_1-1-0","markerContainerWithIcon":"magritte-marker-container-with-icon___rBC1i_1-1-0","marker-wrapper":"magritte-marker-wrapper___m-Hsn_1-1-0","markerWrapper":"magritte-marker-wrapper___m-Hsn_1-1-0","content-container":"magritte-content-container___KPIiS_1-1-0","contentContainer":"magritte-content-container___KPIiS_1-1-0","stepper-vertical":"magritte-stepper-vertical___032Tm_1-1-0","stepperVertical":"magritte-stepper-vertical___032Tm_1-1-0","step-button":"magritte-step-button___xSXUO_1-1-0","stepButton":"magritte-step-button___xSXUO_1-1-0","stepper-no-content":"magritte-stepper-no-content___AEmtQ_1-1-0","stepperNoContent":"magritte-stepper-no-content___AEmtQ_1-1-0","step-no-content":"magritte-step-no-content___mTIaO_1-1-0","stepNoContent":"magritte-step-no-content___mTIaO_1-1-0","marker-container-disabled":"magritte-marker-container-disabled___lJ-PA_1-1-0","markerContainerDisabled":"magritte-marker-container-disabled___lJ-PA_1-1-0","step-style-neutral":"magritte-step-style-neutral___061j4_1-1-0","stepStyleNeutral":"magritte-step-style-neutral___061j4_1-1-0","step-style-positive":"magritte-step-style-positive___9jcvm_1-1-0","stepStylePositive":"magritte-step-style-positive___9jcvm_1-1-0","step-style-warning":"magritte-step-style-warning___NboIv_1-1-0","stepStyleWarning":"magritte-step-style-warning___NboIv_1-1-0","step-style-negative":"magritte-step-style-negative___w1AbF_1-1-0","stepStyleNegative":"magritte-step-style-negative___w1AbF_1-1-0","marker-divider-wrapper":"magritte-marker-divider-wrapper___PGB27_1-1-0","markerDividerWrapper":"magritte-marker-divider-wrapper___PGB27_1-1-0","content-interactive":"magritte-content-interactive___Cd9wI_1-1-0","contentInteractive":"magritte-content-interactive___Cd9wI_1-1-0"};
3
+
4
+ export { styles as s };
5
+ //# sourceMappingURL=stepper-CQfYi_17.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stepper-CQfYi_17.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
@@ -1,5 +0,0 @@
1
- import './index.css';
2
- var styles = {"stepper":"magritte-stepper___bf9CG_1-0-30","stepper-horizontal":"magritte-stepper-horizontal___54ih5_1-0-30","stepperHorizontal":"magritte-stepper-horizontal___54ih5_1-0-30","step":"magritte-step___7YXV2_1-0-30","marker-container":"magritte-marker-container___ZuSOj_1-0-30","markerContainer":"magritte-marker-container___ZuSOj_1-0-30","marker-container-with-icon":"magritte-marker-container-with-icon___rBC1i_1-0-30","markerContainerWithIcon":"magritte-marker-container-with-icon___rBC1i_1-0-30","marker-wrapper":"magritte-marker-wrapper___m-Hsn_1-0-30","markerWrapper":"magritte-marker-wrapper___m-Hsn_1-0-30","content-container":"magritte-content-container___KPIiS_1-0-30","contentContainer":"magritte-content-container___KPIiS_1-0-30","stepper-vertical":"magritte-stepper-vertical___032Tm_1-0-30","stepperVertical":"magritte-stepper-vertical___032Tm_1-0-30","step-button":"magritte-step-button___xSXUO_1-0-30","stepButton":"magritte-step-button___xSXUO_1-0-30","stepper-no-content":"magritte-stepper-no-content___AEmtQ_1-0-30","stepperNoContent":"magritte-stepper-no-content___AEmtQ_1-0-30","step-no-content":"magritte-step-no-content___mTIaO_1-0-30","stepNoContent":"magritte-step-no-content___mTIaO_1-0-30","marker-container-disabled":"magritte-marker-container-disabled___lJ-PA_1-0-30","markerContainerDisabled":"magritte-marker-container-disabled___lJ-PA_1-0-30","step-style-neutral":"magritte-step-style-neutral___061j4_1-0-30","stepStyleNeutral":"magritte-step-style-neutral___061j4_1-0-30","step-style-positive":"magritte-step-style-positive___9jcvm_1-0-30","stepStylePositive":"magritte-step-style-positive___9jcvm_1-0-30","step-style-warning":"magritte-step-style-warning___NboIv_1-0-30","stepStyleWarning":"magritte-step-style-warning___NboIv_1-0-30","step-style-negative":"magritte-step-style-negative___w1AbF_1-0-30","stepStyleNegative":"magritte-step-style-negative___w1AbF_1-0-30","marker-divider-wrapper":"magritte-marker-divider-wrapper___PGB27_1-0-30","markerDividerWrapper":"magritte-marker-divider-wrapper___PGB27_1-0-30","content-interactive":"magritte-content-interactive___Cd9wI_1-0-30","contentInteractive":"magritte-content-interactive___Cd9wI_1-0-30"};
3
-
4
- export { styles as s };
5
- //# sourceMappingURL=stepper--f8piype.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"stepper--f8piype.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}