@hh.ru/magritte-ui-tree-selector 1.5.0 → 1.5.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-5f2f2dea.js';
5
+ import { s as styles, I as ItemContent } from './ItemContent-cec51c98.js';
6
6
  import '@hh.ru/magritte-ui-icon/icon';
7
7
  import './Action.js';
8
8
  import '@hh.ru/magritte-ui-checkbox-radio';
@@ -7,7 +7,7 @@ import { Action } from './Action.js';
7
7
  import { TreeSelectorItemBase } from './TreeSelectorItemBase.js';
8
8
  import { Text } from '@hh.ru/magritte-ui-typography';
9
9
 
10
- var styles = {"wrapper":"magritte-wrapper___GHKV6_1-5-0","letter":"magritte-letter___yZOCU_1-5-0","icon":"magritte-icon___kO3Fj_1-5-0","space":"magritte-space___xTO79_1-5-0","iconActive":"magritte-iconActive___4yrG5_1-5-0","content":"magritte-content___ZRc6R_1-5-0","with-shift":"magritte-with-shift___ZErxZ_1-5-0","withShift":"magritte-with-shift___ZErxZ_1-5-0","with-indent":"magritte-with-indent___MH9Vy_1-5-0","withIndent":"magritte-with-indent___MH9Vy_1-5-0","item":"magritte-item___2LtOL_1-5-0","children":"magritte-children___kq-eq_1-5-0","with-two-boxes":"magritte-with-two-boxes___LWOy2_1-5-0","withTwoBoxes":"magritte-with-two-boxes___LWOy2_1-5-0","with-three-boxes":"magritte-with-three-boxes___cyVao_1-5-0","withThreeBoxes":"magritte-with-three-boxes___cyVao_1-5-0"};
10
+ var styles = {"wrapper":"magritte-wrapper___GHKV6_1-5-1","letter":"magritte-letter___yZOCU_1-5-1","icon":"magritte-icon___kO3Fj_1-5-1","space":"magritte-space___xTO79_1-5-1","iconActive":"magritte-iconActive___4yrG5_1-5-1","content":"magritte-content___ZRc6R_1-5-1","with-shift":"magritte-with-shift___ZErxZ_1-5-1","withShift":"magritte-with-shift___ZErxZ_1-5-1","with-indent":"magritte-with-indent___MH9Vy_1-5-1","withIndent":"magritte-with-indent___MH9Vy_1-5-1","item":"magritte-item___2LtOL_1-5-1","children":"magritte-children___kq-eq_1-5-1","with-two-boxes":"magritte-with-two-boxes___LWOy2_1-5-1","withTwoBoxes":"magritte-with-two-boxes___LWOy2_1-5-1","with-three-boxes":"magritte-with-three-boxes___cyVao_1-5-1","withThreeBoxes":"magritte-with-three-boxes___cyVao_1-5-1"};
11
11
 
12
12
  const ItemContent = ({ item, hasAction, hasChildren, letter, isExpanded, isDisabled, onExpansion, hasLetterOnLevel, isSelected, onChange, isIndeterminate, singleChoice, hasDot, maxControlsOnLevel, isSearch, renderItemForDesktop = TreeSelectorItemBase, }) => {
13
13
  const handleExpandableClick = useCallback(() => onExpansion && onExpansion(item.id), [item.id, onExpansion]);
@@ -20,4 +20,4 @@ const ItemContent = ({ item, hasAction, hasChildren, letter, isExpanded, isDisab
20
20
  };
21
21
 
22
22
  export { ItemContent as I, styles as s };
23
- //# sourceMappingURL=ItemContent-5f2f2dea.js.map
23
+ //# sourceMappingURL=ItemContent-cec51c98.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ItemContent-5f2f2dea.js","sources":["../src/ItemContent.tsx"],"sourcesContent":["import { ReactElement, useCallback } from 'react';\nimport classnames from 'classnames';\n\nimport { ChevronDownOutlinedSize24, ChevronUpOutlinedSize24, DotFilledSize24 } from '@hh.ru/magritte-ui-icon/icon';\nimport { Action } from '@hh.ru/magritte-ui-tree-selector/Action';\nimport { TreeSelectorItemBase } from '@hh.ru/magritte-ui-tree-selector/TreeSelectorItemBase';\nimport { AdditionalDefault, TreeModel } from '@hh.ru/magritte-ui-tree-selector/collection/types';\nimport { RenderItem } from '@hh.ru/magritte-ui-tree-selector/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 isExpanded: boolean;\n isSelected: boolean;\n isDisabled: boolean;\n onChange: (id: string, isSelected: boolean) => void;\n isIndeterminate: boolean;\n singleChoice?: boolean;\n hasLetterOnLevel: boolean;\n hasDot: boolean;\n maxControlsOnLevel: number;\n renderItemForDesktop?: RenderItem;\n isSearch: boolean;\n}\n\nconst ItemContent = <A extends AdditionalDefault>({\n item,\n hasAction,\n hasChildren,\n letter,\n isExpanded,\n isDisabled,\n onExpansion,\n hasLetterOnLevel,\n isSelected,\n onChange,\n isIndeterminate,\n singleChoice,\n hasDot,\n maxControlsOnLevel,\n isSearch,\n renderItemForDesktop = TreeSelectorItemBase,\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 const input = hasAction ? (\n <Action\n selected={isSelected}\n onChange={onChange}\n id={item.id}\n indeterminate={isIndeterminate}\n singleChoice={singleChoice}\n />\n ) : undefined;\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 {isExpanded && <ChevronDownOutlinedSize24 initial=\"tertiary\" />}\n {!isExpanded && <ChevronUpOutlinedSize24 initial=\"tertiary\" />}\n </div>\n )}\n {renderItemForDesktop({ disabled: isDisabled, input, item, isSearch, isParent: hasChildren })}\n </div>\n );\n};\n\nexport { ItemContent };\n"],"names":["_jsx","_jsxs"],"mappings":";;;;;;;;;;AA+BA,MAAM,WAAW,GAAG,CAA8B,EAC9C,IAAI,EACJ,SAAS,EACT,WAAW,EACX,MAAM,EACN,UAAU,EACV,UAAU,EACV,WAAW,EACX,gBAAgB,EAChB,UAAU,EACV,QAAQ,EACR,eAAe,EACf,YAAY,EACZ,MAAM,EACN,kBAAkB,EAClB,QAAQ,EACR,oBAAoB,GAAG,oBAAoB,GAC9B,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;AAElE,IAAA,MAAM,KAAK,GAAG,SAAS,IACnBA,GAAA,CAAC,MAAM,EAAA,EACH,QAAQ,EAAE,UAAU,EACpB,QAAQ,EAAE,QAAQ,EAClB,EAAE,EAAE,IAAI,CAAC,EAAE,EACX,aAAa,EAAE,eAAe,EAC9B,YAAY,EAAE,YAAY,EAC5B,CAAA,IACF,SAAS,CAAC;IAEd,QACIC,IAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,OAAO,EAAA,QAAA,EAAA,CACzB,CAAC,MAAM,IAAI,gBAAgB,MACxBD,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,KACRC,IACI,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE;AAC/B,oBAAA,CAAC,MAAM,CAAC,UAAU,GAAG,WAAW;iBACnC,CAAC,EACF,OAAO,EAAE,qBAAqB,aAE7B,UAAU,IAAID,GAAC,CAAA,yBAAyB,EAAC,EAAA,OAAO,EAAC,UAAU,EAAA,CAAG,EAC9D,CAAC,UAAU,IAAIA,GAAC,CAAA,uBAAuB,EAAC,EAAA,OAAO,EAAC,UAAU,GAAG,CAC5D,EAAA,CAAA,CACT,EACA,oBAAoB,CAAC,EAAE,QAAQ,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,CAAC,CAC3F,EAAA,CAAA,EACR;AACN;;;;"}
1
+ {"version":3,"file":"ItemContent-cec51c98.js","sources":["../src/ItemContent.tsx"],"sourcesContent":["import { ReactElement, useCallback } from 'react';\nimport classnames from 'classnames';\n\nimport { ChevronDownOutlinedSize24, ChevronUpOutlinedSize24, DotFilledSize24 } from '@hh.ru/magritte-ui-icon/icon';\nimport { Action } from '@hh.ru/magritte-ui-tree-selector/Action';\nimport { TreeSelectorItemBase } from '@hh.ru/magritte-ui-tree-selector/TreeSelectorItemBase';\nimport { AdditionalDefault, TreeModel } from '@hh.ru/magritte-ui-tree-selector/collection/types';\nimport { RenderItem } from '@hh.ru/magritte-ui-tree-selector/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 isExpanded: boolean;\n isSelected: boolean;\n isDisabled: boolean;\n onChange: (id: string, isSelected: boolean) => void;\n isIndeterminate: boolean;\n singleChoice?: boolean;\n hasLetterOnLevel: boolean;\n hasDot: boolean;\n maxControlsOnLevel: number;\n renderItemForDesktop?: RenderItem;\n isSearch: boolean;\n}\n\nconst ItemContent = <A extends AdditionalDefault>({\n item,\n hasAction,\n hasChildren,\n letter,\n isExpanded,\n isDisabled,\n onExpansion,\n hasLetterOnLevel,\n isSelected,\n onChange,\n isIndeterminate,\n singleChoice,\n hasDot,\n maxControlsOnLevel,\n isSearch,\n renderItemForDesktop = TreeSelectorItemBase,\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 const input = hasAction ? (\n <Action\n selected={isSelected}\n onChange={onChange}\n id={item.id}\n indeterminate={isIndeterminate}\n singleChoice={singleChoice}\n />\n ) : undefined;\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 {isExpanded && <ChevronDownOutlinedSize24 initial=\"tertiary\" />}\n {!isExpanded && <ChevronUpOutlinedSize24 initial=\"tertiary\" />}\n </div>\n )}\n {renderItemForDesktop({ disabled: isDisabled, input, item, isSearch, isParent: hasChildren })}\n </div>\n );\n};\n\nexport { ItemContent };\n"],"names":["_jsx","_jsxs"],"mappings":";;;;;;;;;;AA+BA,MAAM,WAAW,GAAG,CAA8B,EAC9C,IAAI,EACJ,SAAS,EACT,WAAW,EACX,MAAM,EACN,UAAU,EACV,UAAU,EACV,WAAW,EACX,gBAAgB,EAChB,UAAU,EACV,QAAQ,EACR,eAAe,EACf,YAAY,EACZ,MAAM,EACN,kBAAkB,EAClB,QAAQ,EACR,oBAAoB,GAAG,oBAAoB,GAC9B,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;AAElE,IAAA,MAAM,KAAK,GAAG,SAAS,IACnBA,GAAA,CAAC,MAAM,EAAA,EACH,QAAQ,EAAE,UAAU,EACpB,QAAQ,EAAE,QAAQ,EAClB,EAAE,EAAE,IAAI,CAAC,EAAE,EACX,aAAa,EAAE,eAAe,EAC9B,YAAY,EAAE,YAAY,EAC5B,CAAA,IACF,SAAS,CAAC;IAEd,QACIC,IAAK,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,MAAM,CAAC,OAAO,EAAA,QAAA,EAAA,CACzB,CAAC,MAAM,IAAI,gBAAgB,MACxBD,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,KACRC,IACI,CAAA,KAAA,EAAA,EAAA,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE;AAC/B,oBAAA,CAAC,MAAM,CAAC,UAAU,GAAG,WAAW;iBACnC,CAAC,EACF,OAAO,EAAE,qBAAqB,aAE7B,UAAU,IAAID,GAAC,CAAA,yBAAyB,EAAC,EAAA,OAAO,EAAC,UAAU,EAAA,CAAG,EAC9D,CAAC,UAAU,IAAIA,GAAC,CAAA,uBAAuB,EAAC,EAAA,OAAO,EAAC,UAAU,GAAG,CAC5D,EAAA,CAAA,CACT,EACA,oBAAoB,CAAC,EAAE,QAAQ,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,CAAC,CAC3F,EAAA,CAAA,EACR;AACN;;;;"}
package/ItemContent.js CHANGED
@@ -6,7 +6,7 @@ import '@hh.ru/magritte-ui-icon/icon';
6
6
  import './Action.js';
7
7
  import './TreeSelectorItemBase.js';
8
8
  import '@hh.ru/magritte-ui-typography';
9
- export { I as ItemContent } from './ItemContent-5f2f2dea.js';
9
+ export { I as ItemContent } from './ItemContent-cec51c98.js';
10
10
  import '@hh.ru/magritte-ui-checkbox-radio';
11
11
  import '@hh.ru/magritte-ui-cell';
12
12
  //# 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-5f2f2dea.js';
6
+ import './ItemContent-cec51c98.js';
7
7
  import '@hh.ru/magritte-ui-icon/icon';
8
8
  import './Action.js';
9
9
  import '@hh.ru/magritte-ui-checkbox-radio';
package/TreeSelector.js CHANGED
@@ -11,7 +11,7 @@ import '@hh.ru/magritte-ui-spacing';
11
11
  import './ItemsList.js';
12
12
  import './Item.js';
13
13
  import 'classnames';
14
- import './ItemContent-5f2f2dea.js';
14
+ import './ItemContent-cec51c98.js';
15
15
  import '@hh.ru/magritte-ui-icon/icon';
16
16
  import './Action.js';
17
17
  import '@hh.ru/magritte-ui-checkbox-radio';
@@ -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-5f2f2dea.js';
15
+ import './ItemContent-cec51c98.js';
16
16
  import '@hh.ru/magritte-ui-icon/icon';
17
17
  import './Action.js';
18
18
  import '@hh.ru/magritte-ui-checkbox-radio';
package/index.css CHANGED
@@ -1,10 +1,10 @@
1
- .magritte-wrapper___GHKV6_1-5-0{
1
+ .magritte-wrapper___GHKV6_1-5-1{
2
2
  display:flex;
3
3
  padding:12px 0;
4
4
  gap:12px;
5
5
  align-items:flex-start;
6
6
  }
7
- .magritte-letter___yZOCU_1-5-0{
7
+ .magritte-letter___yZOCU_1-5-1{
8
8
  width:24px;
9
9
  height:24px;
10
10
  display:flex;
@@ -12,30 +12,30 @@
12
12
  justify-content:center;
13
13
  flex-shrink:0;
14
14
  }
15
- .magritte-icon___kO3Fj_1-5-0,
16
- .magritte-space___xTO79_1-5-0{
15
+ .magritte-icon___kO3Fj_1-5-1,
16
+ .magritte-space___xTO79_1-5-1{
17
17
  flex-shrink:0;
18
18
  line-height:0;
19
19
  width:24px;
20
20
  }
21
- .magritte-iconActive___4yrG5_1-5-0{
21
+ .magritte-iconActive___4yrG5_1-5-1{
22
22
  cursor:pointer;
23
23
  }
24
- .magritte-content___ZRc6R_1-5-0{
24
+ .magritte-content___ZRc6R_1-5-1{
25
25
  flex-grow:1;
26
26
  }
27
- .magritte-with-shift___ZErxZ_1-5-0{
27
+ .magritte-with-shift___ZErxZ_1-5-1{
28
28
  margin-left:-36px;
29
29
  }
30
- .magritte-with-indent___MH9Vy_1-5-0{
30
+ .magritte-with-indent___MH9Vy_1-5-1{
31
31
  margin-left:36px;
32
32
  }
33
- .magritte-item___2LtOL_1-5-0 > .magritte-children___kq-eq_1-5-0{
33
+ .magritte-item___2LtOL_1-5-1 > .magritte-children___kq-eq_1-5-1{
34
34
  padding-left:36px;
35
35
  }
36
- .magritte-item___2LtOL_1-5-0.magritte-with-two-boxes___LWOy2_1-5-0 > .magritte-children___kq-eq_1-5-0{
36
+ .magritte-item___2LtOL_1-5-1.magritte-with-two-boxes___LWOy2_1-5-1 > .magritte-children___kq-eq_1-5-1{
37
37
  padding-left:72px;
38
38
  }
39
- .magritte-item___2LtOL_1-5-0.magritte-with-three-boxes___cyVao_1-5-0 > .magritte-children___kq-eq_1-5-0{
39
+ .magritte-item___2LtOL_1-5-1.magritte-with-three-boxes___cyVao_1-5-1 > .magritte-children___kq-eq_1-5-1{
40
40
  padding-left:108px;
41
41
  }
package/index.js CHANGED
@@ -19,7 +19,7 @@ import '@hh.ru/magritte-ui-spacing';
19
19
  import './ItemsList.js';
20
20
  import './Item.js';
21
21
  import 'classnames';
22
- import './ItemContent-5f2f2dea.js';
22
+ import './ItemContent-cec51c98.js';
23
23
  import '@hh.ru/magritte-ui-icon/icon';
24
24
  import './Action.js';
25
25
  import '@hh.ru/magritte-ui-checkbox-radio';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hh.ru/magritte-ui-tree-selector",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "sideEffects": [
@@ -21,12 +21,12 @@
21
21
  "dependencies": {
22
22
  "@hh.ru/magritte-common-fuzzy-search": "1.0.4",
23
23
  "@hh.ru/magritte-ui-breakpoint": "4.0.2",
24
- "@hh.ru/magritte-ui-card": "6.0.7",
25
- "@hh.ru/magritte-ui-cell": "3.0.0",
26
- "@hh.ru/magritte-ui-checkable-card": "3.0.10",
24
+ "@hh.ru/magritte-ui-card": "6.0.8",
25
+ "@hh.ru/magritte-ui-cell": "3.0.1",
26
+ "@hh.ru/magritte-ui-checkable-card": "3.0.11",
27
27
  "@hh.ru/magritte-ui-checkbox-radio": "3.0.4",
28
28
  "@hh.ru/magritte-ui-icon": "7.1.8",
29
- "@hh.ru/magritte-ui-input": "5.0.22",
29
+ "@hh.ru/magritte-ui-input": "5.0.23",
30
30
  "@hh.ru/magritte-ui-mock-component": "1.0.10",
31
31
  "@hh.ru/magritte-ui-spacing": "2.0.24",
32
32
  "@hh.ru/magritte-ui-theme-provider": "1.1.24",
@@ -39,5 +39,5 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "26ba0596d6146e10c0db6d981c668f9a583fdf9c"
42
+ "gitHead": "4480faadc19af08673481a84a62f77d081e9be2e"
43
43
  }