@hh.ru/magritte-ui-tree-selector 1.3.0 → 1.3.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/Item.js CHANGED
@@ -2,7 +2,7 @@ import './index.css';
2
2
  import { jsxs, jsx } from 'react/jsx-runtime';
3
3
  import { useMemo } from 'react';
4
4
  import classnames from 'classnames';
5
- import { s as styles, I as ItemContent } from './ItemContent-6703f666.js';
5
+ import { s as styles, I as ItemContent } from './ItemContent-74eb482b.js';
6
6
  import '@hh.ru/magritte-ui-cell';
7
7
  import '@hh.ru/magritte-ui-icon/icon';
8
8
  import './Action.js';
@@ -7,7 +7,7 @@ import { DotFilledSize24, ChevronDownOutlinedSize24, ChevronUpOutlinedSize24 } f
7
7
  import { Action } from './Action.js';
8
8
  import { Text } from '@hh.ru/magritte-ui-typography';
9
9
 
10
- var styles = {"wrapper":"magritte-wrapper___GHKV6_1-3-0","letter":"magritte-letter___yZOCU_1-3-0","icon":"magritte-icon___kO3Fj_1-3-0","space":"magritte-space___xTO79_1-3-0","iconActive":"magritte-iconActive___4yrG5_1-3-0","content":"magritte-content___ZRc6R_1-3-0","with-shift":"magritte-with-shift___ZErxZ_1-3-0","withShift":"magritte-with-shift___ZErxZ_1-3-0","with-indent":"magritte-with-indent___MH9Vy_1-3-0","withIndent":"magritte-with-indent___MH9Vy_1-3-0","item":"magritte-item___2LtOL_1-3-0","children":"magritte-children___kq-eq_1-3-0","with-two-boxes":"magritte-with-two-boxes___LWOy2_1-3-0","withTwoBoxes":"magritte-with-two-boxes___LWOy2_1-3-0","with-three-boxes":"magritte-with-three-boxes___cyVao_1-3-0","withThreeBoxes":"magritte-with-three-boxes___cyVao_1-3-0"};
10
+ var styles = {"wrapper":"magritte-wrapper___GHKV6_1-3-1","letter":"magritte-letter___yZOCU_1-3-1","icon":"magritte-icon___kO3Fj_1-3-1","space":"magritte-space___xTO79_1-3-1","iconActive":"magritte-iconActive___4yrG5_1-3-1","content":"magritte-content___ZRc6R_1-3-1","with-shift":"magritte-with-shift___ZErxZ_1-3-1","withShift":"magritte-with-shift___ZErxZ_1-3-1","with-indent":"magritte-with-indent___MH9Vy_1-3-1","withIndent":"magritte-with-indent___MH9Vy_1-3-1","item":"magritte-item___2LtOL_1-3-1","children":"magritte-children___kq-eq_1-3-1","with-two-boxes":"magritte-with-two-boxes___LWOy2_1-3-1","withTwoBoxes":"magritte-with-two-boxes___LWOy2_1-3-1","with-three-boxes":"magritte-with-three-boxes___cyVao_1-3-1","withThreeBoxes":"magritte-with-three-boxes___cyVao_1-3-1"};
11
11
 
12
12
  const ItemContent = ({ item, hasAction, hasChildren, letter, expanded, onExpansion, hasLetterOnLevel, selected, onChange, indeterminate, singleChoice, hasDot, maxControlsOnLevel, }) => {
13
13
  const handleExpandableClick = useCallback(() => onExpansion && onExpansion(item.id), [item.id, onExpansion]);
@@ -19,4 +19,4 @@ const ItemContent = ({ item, hasAction, hasChildren, letter, expanded, onExpansi
19
19
  };
20
20
 
21
21
  export { ItemContent as I, styles as s };
22
- //# sourceMappingURL=ItemContent-6703f666.js.map
22
+ //# sourceMappingURL=ItemContent-74eb482b.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ItemContent-6703f666.js","sources":["../src/ItemContent.tsx"],"sourcesContent":["import { ReactElement, useCallback } from 'react';\nimport classnames from 'classnames';\n\nimport { Cell, CellText } from '@hh.ru/magritte-ui-cell';\nimport { ChevronDownOutlinedSize24, ChevronUpOutlinedSize24, DotFilledSize24 } from '@hh.ru/magritte-ui-icon/icon';\nimport { Action } from '@hh.ru/magritte-ui-tree-selector/Action';\nimport { AdditionalDefault, TreeModel } from '@hh.ru/magritte-ui-tree-selector/collection/types';\nimport { Text } from '@hh.ru/magritte-ui-typography';\n\nimport styles from './tree-selector-item.less';\n\ninterface ItemContent<A extends AdditionalDefault> {\n item: TreeModel<A>;\n hasChildren: boolean;\n hasAction: boolean;\n letter?: string;\n onExpansion: (id: string) => void;\n expanded?: boolean;\n selected: boolean;\n onChange: (id: string, isSelected: boolean) => void;\n indeterminate: boolean;\n singleChoice?: boolean;\n hasLetterOnLevel: boolean;\n hasDot: boolean;\n maxControlsOnLevel: number;\n}\n\nconst ItemContent = <A extends AdditionalDefault>({\n item,\n hasAction,\n hasChildren,\n letter,\n expanded,\n onExpansion,\n hasLetterOnLevel,\n selected,\n onChange,\n indeterminate,\n singleChoice,\n hasDot,\n maxControlsOnLevel,\n}: ItemContent<A>): ReactElement => {\n const handleExpandableClick = useCallback(() => onExpansion && onExpansion(item.id), [item.id, onExpansion]);\n const currentActionCount = +hasDot + +hasAction + +hasChildren;\n const neededSpacesCount = maxControlsOnLevel - currentActionCount;\n\n return (\n <div className={styles.wrapper}>\n {(letter || hasLetterOnLevel) && (\n <div className={styles.letter}>\n {letter && (\n <Text typography=\"subtitle-1-semibold\" style=\"secondary\" Element=\"span\">\n {letter}\n </Text>\n )}\n </div>\n )}\n {hasDot && (\n <div className={styles.icon}>\n <DotFilledSize24 initial=\"tertiary\" />\n </div>\n )}\n\n {[...Array(neededSpacesCount).keys()].map((_, i) => (\n <div key={i} className={styles.space} />\n ))}\n\n {hasChildren && (\n <div\n className={classnames(styles.icon, {\n [styles.iconActive]: hasChildren,\n })}\n onClick={handleExpandableClick}\n >\n {expanded && <ChevronDownOutlinedSize24 initial=\"tertiary\" />}\n {!expanded && <ChevronUpOutlinedSize24 initial=\"tertiary\" />}\n </div>\n )}\n\n <Cell\n left={\n hasAction ? (\n <Action\n selected={selected}\n onChange={onChange}\n id={item.id}\n indeterminate={indeterminate}\n singleChoice={singleChoice}\n />\n ) : undefined\n }\n >\n <CellText>{item.text}</CellText>\n </Cell>\n </div>\n );\n};\n\nexport { ItemContent };\n"],"names":["_jsxs","_jsx"],"mappings":";;;;;;;;;;AA2BA,MAAM,WAAW,GAAG,CAA8B,EAC9C,IAAI,EACJ,SAAS,EACT,WAAW,EACX,MAAM,EACN,QAAQ,EACR,WAAW,EACX,gBAAgB,EAChB,QAAQ,EACR,QAAQ,EACR,aAAa,EACb,YAAY,EACZ,MAAM,EACN,kBAAkB,GACL,KAAkB;IAC/B,MAAM,qBAAqB,GAAG,WAAW,CAAC,MAAM,WAAW,IAAI,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,WAAW,CAAC,CAAC,CAAC;IAC7G,MAAM,kBAAkB,GAAG,CAAC,MAAM,GAAG,CAAC,SAAS,GAAG,CAAC,WAAW,CAAC;AAC/D,IAAA,MAAM,iBAAiB,GAAG,kBAAkB,GAAG,kBAAkB,CAAC;IAElE,QACIA,IAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,OAAO,EAAA,QAAA,EAAA,CACzB,CAAC,MAAM,IAAI,gBAAgB,MACxBC,GAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,MAAM,EAAA,QAAA,EACxB,MAAM,KACHA,GAAA,CAAC,IAAI,EAAC,EAAA,UAAU,EAAC,qBAAqB,EAAC,KAAK,EAAC,WAAW,EAAC,OAAO,EAAC,MAAM,EAAA,QAAA,EAClE,MAAM,EACJ,CAAA,CACV,EACC,CAAA,CACT,EACA,MAAM,KACHA,GAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,IAAI,YACvBA,GAAC,CAAA,eAAe,EAAC,EAAA,OAAO,EAAC,UAAU,GAAG,EACpC,CAAA,CACT,EAEA,CAAC,GAAG,KAAK,CAAC,iBAAiB,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,MAC3CA,GAAA,CAAA,KAAA,EAAA,EAAa,SAAS,EAAE,MAAM,CAAC,KAAK,EAA1B,EAAA,CAAC,CAA6B,CAC3C,CAAC,EAED,WAAW,KACRD,IACI,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE;AAC/B,oBAAA,CAAC,MAAM,CAAC,UAAU,GAAG,WAAW;AACnC,iBAAA,CAAC,EACF,OAAO,EAAE,qBAAqB,EAAA,QAAA,EAAA,CAE7B,QAAQ,IAAIC,GAAA,CAAC,yBAAyB,EAAA,EAAC,OAAO,EAAC,UAAU,EAAG,CAAA,EAC5D,CAAC,QAAQ,IAAIA,GAAC,CAAA,uBAAuB,IAAC,OAAO,EAAC,UAAU,EAAA,CAAG,IAC1D,CACT,EAEDA,GAAC,CAAA,IAAI,IACD,IAAI,EACA,SAAS,IACLA,GAAA,CAAC,MAAM,EAAA,EACH,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,QAAQ,EAClB,EAAE,EAAE,IAAI,CAAC,EAAE,EACX,aAAa,EAAE,aAAa,EAC5B,YAAY,EAAE,YAAY,GAC5B,IACF,SAAS,EAGjB,QAAA,EAAAA,GAAA,CAAC,QAAQ,EAAA,EAAA,QAAA,EAAE,IAAI,CAAC,IAAI,GAAY,EAC7B,CAAA,CAAA,EAAA,CACL,EACR;AACN;;;;"}
1
+ {"version":3,"file":"ItemContent-74eb482b.js","sources":["../src/ItemContent.tsx"],"sourcesContent":["import { ReactElement, useCallback } from 'react';\nimport classnames from 'classnames';\n\nimport { Cell, CellText } from '@hh.ru/magritte-ui-cell';\nimport { ChevronDownOutlinedSize24, ChevronUpOutlinedSize24, DotFilledSize24 } from '@hh.ru/magritte-ui-icon/icon';\nimport { Action } from '@hh.ru/magritte-ui-tree-selector/Action';\nimport { AdditionalDefault, TreeModel } from '@hh.ru/magritte-ui-tree-selector/collection/types';\nimport { Text } from '@hh.ru/magritte-ui-typography';\n\nimport styles from './tree-selector-item.less';\n\ninterface ItemContent<A extends AdditionalDefault> {\n item: TreeModel<A>;\n hasChildren: boolean;\n hasAction: boolean;\n letter?: string;\n onExpansion: (id: string) => void;\n expanded?: boolean;\n selected: boolean;\n onChange: (id: string, isSelected: boolean) => void;\n indeterminate: boolean;\n singleChoice?: boolean;\n hasLetterOnLevel: boolean;\n hasDot: boolean;\n maxControlsOnLevel: number;\n}\n\nconst ItemContent = <A extends AdditionalDefault>({\n item,\n hasAction,\n hasChildren,\n letter,\n expanded,\n onExpansion,\n hasLetterOnLevel,\n selected,\n onChange,\n indeterminate,\n singleChoice,\n hasDot,\n maxControlsOnLevel,\n}: ItemContent<A>): ReactElement => {\n const handleExpandableClick = useCallback(() => onExpansion && onExpansion(item.id), [item.id, onExpansion]);\n const currentActionCount = +hasDot + +hasAction + +hasChildren;\n const neededSpacesCount = maxControlsOnLevel - currentActionCount;\n\n return (\n <div className={styles.wrapper}>\n {(letter || hasLetterOnLevel) && (\n <div className={styles.letter}>\n {letter && (\n <Text typography=\"subtitle-1-semibold\" style=\"secondary\" Element=\"span\">\n {letter}\n </Text>\n )}\n </div>\n )}\n {hasDot && (\n <div className={styles.icon}>\n <DotFilledSize24 initial=\"tertiary\" />\n </div>\n )}\n\n {[...Array(neededSpacesCount).keys()].map((_, i) => (\n <div key={i} className={styles.space} />\n ))}\n\n {hasChildren && (\n <div\n className={classnames(styles.icon, {\n [styles.iconActive]: hasChildren,\n })}\n onClick={handleExpandableClick}\n >\n {expanded && <ChevronDownOutlinedSize24 initial=\"tertiary\" />}\n {!expanded && <ChevronUpOutlinedSize24 initial=\"tertiary\" />}\n </div>\n )}\n\n <Cell\n left={\n hasAction ? (\n <Action\n selected={selected}\n onChange={onChange}\n id={item.id}\n indeterminate={indeterminate}\n singleChoice={singleChoice}\n />\n ) : undefined\n }\n >\n <CellText>{item.text}</CellText>\n </Cell>\n </div>\n );\n};\n\nexport { ItemContent };\n"],"names":["_jsxs","_jsx"],"mappings":";;;;;;;;;;AA2BA,MAAM,WAAW,GAAG,CAA8B,EAC9C,IAAI,EACJ,SAAS,EACT,WAAW,EACX,MAAM,EACN,QAAQ,EACR,WAAW,EACX,gBAAgB,EAChB,QAAQ,EACR,QAAQ,EACR,aAAa,EACb,YAAY,EACZ,MAAM,EACN,kBAAkB,GACL,KAAkB;IAC/B,MAAM,qBAAqB,GAAG,WAAW,CAAC,MAAM,WAAW,IAAI,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,WAAW,CAAC,CAAC,CAAC;IAC7G,MAAM,kBAAkB,GAAG,CAAC,MAAM,GAAG,CAAC,SAAS,GAAG,CAAC,WAAW,CAAC;AAC/D,IAAA,MAAM,iBAAiB,GAAG,kBAAkB,GAAG,kBAAkB,CAAC;IAElE,QACIA,IAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,OAAO,EAAA,QAAA,EAAA,CACzB,CAAC,MAAM,IAAI,gBAAgB,MACxBC,GAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,MAAM,EAAA,QAAA,EACxB,MAAM,KACHA,GAAA,CAAC,IAAI,EAAC,EAAA,UAAU,EAAC,qBAAqB,EAAC,KAAK,EAAC,WAAW,EAAC,OAAO,EAAC,MAAM,EAAA,QAAA,EAClE,MAAM,EACJ,CAAA,CACV,EACC,CAAA,CACT,EACA,MAAM,KACHA,GAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,IAAI,YACvBA,GAAC,CAAA,eAAe,EAAC,EAAA,OAAO,EAAC,UAAU,GAAG,EACpC,CAAA,CACT,EAEA,CAAC,GAAG,KAAK,CAAC,iBAAiB,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,MAC3CA,GAAA,CAAA,KAAA,EAAA,EAAa,SAAS,EAAE,MAAM,CAAC,KAAK,EAA1B,EAAA,CAAC,CAA6B,CAC3C,CAAC,EAED,WAAW,KACRD,IACI,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE;AAC/B,oBAAA,CAAC,MAAM,CAAC,UAAU,GAAG,WAAW;AACnC,iBAAA,CAAC,EACF,OAAO,EAAE,qBAAqB,EAAA,QAAA,EAAA,CAE7B,QAAQ,IAAIC,GAAA,CAAC,yBAAyB,EAAA,EAAC,OAAO,EAAC,UAAU,EAAG,CAAA,EAC5D,CAAC,QAAQ,IAAIA,GAAC,CAAA,uBAAuB,IAAC,OAAO,EAAC,UAAU,EAAA,CAAG,IAC1D,CACT,EAEDA,GAAC,CAAA,IAAI,IACD,IAAI,EACA,SAAS,IACLA,GAAA,CAAC,MAAM,EAAA,EACH,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,QAAQ,EAClB,EAAE,EAAE,IAAI,CAAC,EAAE,EACX,aAAa,EAAE,aAAa,EAC5B,YAAY,EAAE,YAAY,GAC5B,IACF,SAAS,EAGjB,QAAA,EAAAA,GAAA,CAAC,QAAQ,EAAA,EAAA,QAAA,EAAE,IAAI,CAAC,IAAI,GAAY,EAC7B,CAAA,CAAA,EAAA,CACL,EACR;AACN;;;;"}
package/ItemContent.js CHANGED
@@ -6,6 +6,6 @@ import '@hh.ru/magritte-ui-cell';
6
6
  import '@hh.ru/magritte-ui-icon/icon';
7
7
  import './Action.js';
8
8
  import '@hh.ru/magritte-ui-typography';
9
- export { I as ItemContent } from './ItemContent-6703f666.js';
9
+ export { I as ItemContent } from './ItemContent-74eb482b.js';
10
10
  import '@hh.ru/magritte-ui-checkbox-radio';
11
11
  //# sourceMappingURL=ItemContent.js.map
package/ItemsList.js CHANGED
@@ -3,7 +3,7 @@ import { jsx, Fragment } from 'react/jsx-runtime';
3
3
  import { Item } from './Item.js';
4
4
  import 'react';
5
5
  import 'classnames';
6
- import './ItemContent-6703f666.js';
6
+ import './ItemContent-74eb482b.js';
7
7
  import '@hh.ru/magritte-ui-cell';
8
8
  import '@hh.ru/magritte-ui-icon/icon';
9
9
  import './Action.js';
package/TreeSelector.js CHANGED
@@ -12,7 +12,7 @@ import { useIndeterminate } from './useIndeterminate.js';
12
12
  import { useRenderInput } from './useRenderInput.js';
13
13
  import './Item.js';
14
14
  import 'classnames';
15
- import './ItemContent-6703f666.js';
15
+ import './ItemContent-74eb482b.js';
16
16
  import '@hh.ru/magritte-ui-cell';
17
17
  import '@hh.ru/magritte-ui-icon/icon';
18
18
  import './Action.js';
@@ -10,7 +10,7 @@ import '@hh.ru/magritte-ui-spacing';
10
10
  import './ItemsList.js';
11
11
  import './Item.js';
12
12
  import 'classnames';
13
- import './ItemContent-6703f666.js';
13
+ import './ItemContent-74eb482b.js';
14
14
  import '@hh.ru/magritte-ui-cell';
15
15
  import '@hh.ru/magritte-ui-icon/icon';
16
16
  import './Action.js';
package/index.css CHANGED
@@ -1,38 +1,38 @@
1
- .magritte-wrapper___GHKV6_1-3-0{
1
+ .magritte-wrapper___GHKV6_1-3-1{
2
2
  display:flex;
3
3
  padding:12px 0;
4
4
  gap:12px;
5
5
  align-items:center;
6
6
  }
7
- .magritte-letter___yZOCU_1-3-0{
7
+ .magritte-letter___yZOCU_1-3-1{
8
8
  width:24px;
9
9
  flex-shrink:0;
10
10
  text-align:center;
11
11
  }
12
- .magritte-icon___kO3Fj_1-3-0,
13
- .magritte-space___xTO79_1-3-0{
12
+ .magritte-icon___kO3Fj_1-3-1,
13
+ .magritte-space___xTO79_1-3-1{
14
14
  flex-shrink:0;
15
15
  line-height:0;
16
16
  width:24px;
17
17
  }
18
- .magritte-iconActive___4yrG5_1-3-0{
18
+ .magritte-iconActive___4yrG5_1-3-1{
19
19
  cursor:pointer;
20
20
  }
21
- .magritte-content___ZRc6R_1-3-0{
21
+ .magritte-content___ZRc6R_1-3-1{
22
22
  flex-grow:1;
23
23
  }
24
- .magritte-with-shift___ZErxZ_1-3-0{
24
+ .magritte-with-shift___ZErxZ_1-3-1{
25
25
  margin-left:-36px;
26
26
  }
27
- .magritte-with-indent___MH9Vy_1-3-0{
27
+ .magritte-with-indent___MH9Vy_1-3-1{
28
28
  margin-left:36px;
29
29
  }
30
- .magritte-item___2LtOL_1-3-0 > .magritte-children___kq-eq_1-3-0{
30
+ .magritte-item___2LtOL_1-3-1 > .magritte-children___kq-eq_1-3-1{
31
31
  padding-left:36px;
32
32
  }
33
- .magritte-item___2LtOL_1-3-0.magritte-with-two-boxes___LWOy2_1-3-0 > .magritte-children___kq-eq_1-3-0{
33
+ .magritte-item___2LtOL_1-3-1.magritte-with-two-boxes___LWOy2_1-3-1 > .magritte-children___kq-eq_1-3-1{
34
34
  padding-left:72px;
35
35
  }
36
- .magritte-item___2LtOL_1-3-0.magritte-with-three-boxes___cyVao_1-3-0 > .magritte-children___kq-eq_1-3-0{
36
+ .magritte-item___2LtOL_1-3-1.magritte-with-three-boxes___cyVao_1-3-1 > .magritte-children___kq-eq_1-3-1{
37
37
  padding-left:108px;
38
38
  }
package/index.js CHANGED
@@ -9,7 +9,7 @@ import '@hh.ru/magritte-ui-spacing';
9
9
  import './ItemsList.js';
10
10
  import './Item.js';
11
11
  import 'classnames';
12
- import './ItemContent-6703f666.js';
12
+ import './ItemContent-74eb482b.js';
13
13
  import '@hh.ru/magritte-ui-cell';
14
14
  import '@hh.ru/magritte-ui-icon/icon';
15
15
  import './Action.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hh.ru/magritte-ui-tree-selector",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "sideEffects": [
@@ -23,10 +23,10 @@
23
23
  "@hh.ru/magritte-ui-breakpoint": "4.0.2",
24
24
  "@hh.ru/magritte-ui-card": "6.0.5",
25
25
  "@hh.ru/magritte-ui-cell": "2.2.12",
26
- "@hh.ru/magritte-ui-checkable-card": "3.0.7",
26
+ "@hh.ru/magritte-ui-checkable-card": "3.0.8",
27
27
  "@hh.ru/magritte-ui-checkbox-radio": "3.0.3",
28
28
  "@hh.ru/magritte-ui-icon": "7.1.7",
29
- "@hh.ru/magritte-ui-input": "5.0.20",
29
+ "@hh.ru/magritte-ui-input": "5.0.21",
30
30
  "@hh.ru/magritte-ui-mock-component": "1.0.10",
31
31
  "@hh.ru/magritte-ui-spacing": "2.0.23",
32
32
  "@hh.ru/magritte-ui-theme-provider": "1.1.23",
@@ -39,5 +39,5 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "5815a9517809d677236d58c1e823e76c5a17468c"
42
+ "gitHead": "98a8e09926b544aea2b9255436cf0605ad12e3f1"
43
43
  }