@synerise/ds-items-roll 0.7.14 → 0.7.16

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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.7.16](https://github.com/Synerise/synerise-design/compare/@synerise/ds-items-roll@0.7.15...@synerise/ds-items-roll@0.7.16) (2024-11-22)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-items-roll
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.7.15](https://github.com/Synerise/synerise-design/compare/@synerise/ds-items-roll@0.7.14...@synerise/ds-items-roll@0.7.15) (2024-11-21)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-items-roll
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.7.14](https://github.com/Synerise/synerise-design/compare/@synerise/ds-items-roll@0.7.13...@synerise/ds-items-roll@0.7.14) (2024-11-12)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-items-roll
@@ -1,5 +1,4 @@
1
1
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
-
3
2
  import React from 'react';
4
3
  import styled from 'styled-components';
5
4
  import Dropdown from '@synerise/ds-dropdown';
@@ -10,7 +9,6 @@ var ItemMenu = styled(Menu).withConfig({
10
9
  displayName: "Extras__ItemMenu",
11
10
  componentId: "sc-1cdoprb-0"
12
11
  })(["padding:8px;"]);
13
-
14
12
  var Extras = function Extras(_ref) {
15
13
  var actions = _ref.actions;
16
14
  return /*#__PURE__*/React.createElement(Dropdown, {
@@ -30,5 +28,4 @@ var Extras = function Extras(_ref) {
30
28
  component: /*#__PURE__*/React.createElement(OptionHorizontalM, null)
31
29
  })));
32
30
  };
33
-
34
31
  export default Extras;
package/dist/ItemsRoll.js CHANGED
@@ -1,44 +1,39 @@
1
1
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
2
-
3
2
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
-
5
3
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
-
7
4
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
8
-
9
5
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
10
-
11
6
  import React from 'react';
12
7
  import { useIntl } from 'react-intl';
13
8
  import { Footer, Header, List } from './ItemsRollComponents';
14
9
  import * as S from './ItemsRoll.styles';
15
10
  export var ItemsRoll = function ItemsRoll(_ref) {
16
11
  var actions = _ref.actions,
17
- changeSelectionIcon = _ref.changeSelectionIcon,
18
- changeSelectionDropdownProps = _ref.changeSelectionDropdownProps,
19
- className = _ref.className,
20
- customSidebarActions = _ref.customSidebarActions,
21
- groups = _ref.groups,
22
- hideSearch = _ref.hideSearch,
23
- items = _ref.items,
24
- _ref$maxToShowItems = _ref.maxToShowItems,
25
- maxToShowItems = _ref$maxToShowItems === void 0 ? 10 : _ref$maxToShowItems,
26
- onClearAll = _ref.onClearAll,
27
- onChangeSelection = _ref.onChangeSelection,
28
- onItemClick = _ref.onItemClick,
29
- onItemRemove = _ref.onItemRemove,
30
- onSearchClear = _ref.onSearchClear,
31
- onSearch = _ref.onSearch,
32
- searchValue = _ref.searchValue,
33
- searchPlaceholder = _ref.searchPlaceholder,
34
- _ref$showMoreStep = _ref.showMoreStep,
35
- showMoreStep = _ref$showMoreStep === void 0 ? 10 : _ref$showMoreStep,
36
- style = _ref.style,
37
- texts = _ref.texts,
38
- useFooter = _ref.useFooter,
39
- useVirtualizedList = _ref.useVirtualizedList,
40
- virtualizedRowWidth = _ref.virtualizedRowWidth,
41
- virtualizedRowHeight = _ref.virtualizedRowHeight;
12
+ changeSelectionIcon = _ref.changeSelectionIcon,
13
+ changeSelectionDropdownProps = _ref.changeSelectionDropdownProps,
14
+ className = _ref.className,
15
+ customSidebarActions = _ref.customSidebarActions,
16
+ groups = _ref.groups,
17
+ hideSearch = _ref.hideSearch,
18
+ items = _ref.items,
19
+ _ref$maxToShowItems = _ref.maxToShowItems,
20
+ maxToShowItems = _ref$maxToShowItems === void 0 ? 10 : _ref$maxToShowItems,
21
+ onClearAll = _ref.onClearAll,
22
+ onChangeSelection = _ref.onChangeSelection,
23
+ onItemClick = _ref.onItemClick,
24
+ onItemRemove = _ref.onItemRemove,
25
+ onSearchClear = _ref.onSearchClear,
26
+ onSearch = _ref.onSearch,
27
+ searchValue = _ref.searchValue,
28
+ searchPlaceholder = _ref.searchPlaceholder,
29
+ _ref$showMoreStep = _ref.showMoreStep,
30
+ showMoreStep = _ref$showMoreStep === void 0 ? 10 : _ref$showMoreStep,
31
+ style = _ref.style,
32
+ texts = _ref.texts,
33
+ useFooter = _ref.useFooter,
34
+ useVirtualizedList = _ref.useVirtualizedList,
35
+ virtualizedRowWidth = _ref.virtualizedRowWidth,
36
+ virtualizedRowHeight = _ref.virtualizedRowHeight;
42
37
  var intl = useIntl();
43
38
  var defaultTexts = {
44
39
  changeSelectionLabel: intl.formatMessage({
@@ -79,11 +74,9 @@ export var ItemsRoll = function ItemsRoll(_ref) {
79
74
  })
80
75
  };
81
76
  var allTexts = texts ? _objectSpread({}, defaultTexts, {}, texts) : defaultTexts;
82
-
83
77
  var _React$useState = React.useState(maxToShowItems),
84
- visibleItemsAmount = _React$useState[0],
85
- setVisibleItemsAmount = _React$useState[1];
86
-
78
+ visibleItemsAmount = _React$useState[0],
79
+ setVisibleItemsAmount = _React$useState[1];
87
80
  React.useEffect(function () {
88
81
  setVisibleItemsAmount(maxToShowItems);
89
82
  }, [maxToShowItems]);
@@ -12,10 +12,10 @@ export declare const SearchWrapper: import("styled-components").StyledComponent<
12
12
  export declare const ShowButton: import("styled-components").StyledComponent<typeof Button, any, {}, never>;
13
13
  export declare const ShowButtonLabel: import("styled-components").StyledComponent<"span", any, {}, never>;
14
14
  export declare const ClearButton: import("styled-components").StyledComponent<typeof Button, any, {}, never>;
15
- export declare const ArrowIcon: import("styled-components").StyledComponent<import("react").FC<import("@synerise/ds-icon").IconProps>, any, {}, never>;
15
+ export declare const ArrowIcon: import("styled-components").StyledComponent<({ name, component, className, ...rest }: import("@synerise/ds-icon").IconProps) => import("react").JSX.Element, any, {}, never>;
16
16
  export declare const NoResults: import("styled-components").StyledComponent<"div", any, {}, never>;
17
17
  export declare const NoResultIconWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
18
18
  export declare const Divider: import("styled-components").StyledComponent<({ marginBottom, marginTop, style, labelAbove, labelBelow, ...antdDividerProps }: import("@synerise/ds-divider").DividerProps) => import("react").JSX.Element, any, {
19
19
  footer?: boolean | undefined;
20
20
  }, never>;
21
- export declare const WarningIcon: import("styled-components").StyledComponent<import("react").FC<import("@synerise/ds-icon").IconProps>, any, {}, never>;
21
+ export declare const WarningIcon: import("styled-components").StyledComponent<({ name, component, className, ...rest }: import("@synerise/ds-icon").IconProps) => import("react").JSX.Element, any, {}, never>;
@@ -2,10 +2,9 @@ import React from 'react';
2
2
  import Popconfirm from '@synerise/ds-popconfirm';
3
3
  import Icon, { ArrowDownCircleM, ArrowUpCircleM, CloseS, WarningFillM } from '@synerise/ds-icon';
4
4
  import * as S from '../ItemsRoll.styles';
5
-
6
5
  var ShowLessButton = function ShowLessButton(_ref) {
7
6
  var showDefaultItemsAmount = _ref.showDefaultItemsAmount,
8
- showLessLabel = _ref.showLessLabel;
7
+ showLessLabel = _ref.showLessLabel;
9
8
  return /*#__PURE__*/React.createElement(S.ShowButton, {
10
9
  type: "ghost",
11
10
  mode: "icon-label",
@@ -17,12 +16,11 @@ var ShowLessButton = function ShowLessButton(_ref) {
17
16
  className: "bold-label"
18
17
  }, showLessLabel));
19
18
  };
20
-
21
19
  var ShowMoreButton = function ShowMoreButton(_ref2) {
22
20
  var showLabel = _ref2.showLabel,
23
- moreLabel = _ref2.moreLabel,
24
- showAdditionalItems = _ref2.showAdditionalItems,
25
- getShowMoreNumber = _ref2.getShowMoreNumber;
21
+ moreLabel = _ref2.moreLabel,
22
+ showAdditionalItems = _ref2.showAdditionalItems,
23
+ getShowMoreNumber = _ref2.getShowMoreNumber;
26
24
  return /*#__PURE__*/React.createElement(S.ShowButton, {
27
25
  type: "ghost",
28
26
  mode: "icon-label",
@@ -34,19 +32,18 @@ var ShowMoreButton = function ShowMoreButton(_ref2) {
34
32
  className: "bold-label"
35
33
  }, getShowMoreNumber), " ", moreLabel));
36
34
  };
37
-
38
35
  var Footer = function Footer(_ref3) {
39
36
  var allTexts = _ref3.allTexts,
40
- itemsCount = _ref3.itemsCount,
41
- _ref3$maxToShowItems = _ref3.maxToShowItems,
42
- maxToShowItems = _ref3$maxToShowItems === void 0 ? 10 : _ref3$maxToShowItems,
43
- onClearAll = _ref3.onClearAll,
44
- showAdditionalItems = _ref3.showAdditionalItems,
45
- showDefaultItemsAmount = _ref3.showDefaultItemsAmount,
46
- _ref3$showMoreStep = _ref3.showMoreStep,
47
- showMoreStep = _ref3$showMoreStep === void 0 ? 10 : _ref3$showMoreStep,
48
- visibleItemsCount = _ref3.visibleItemsCount,
49
- searchMode = _ref3.searchMode;
37
+ itemsCount = _ref3.itemsCount,
38
+ _ref3$maxToShowItems = _ref3.maxToShowItems,
39
+ maxToShowItems = _ref3$maxToShowItems === void 0 ? 10 : _ref3$maxToShowItems,
40
+ onClearAll = _ref3.onClearAll,
41
+ showAdditionalItems = _ref3.showAdditionalItems,
42
+ showDefaultItemsAmount = _ref3.showDefaultItemsAmount,
43
+ _ref3$showMoreStep = _ref3.showMoreStep,
44
+ showMoreStep = _ref3$showMoreStep === void 0 ? 10 : _ref3$showMoreStep,
45
+ visibleItemsCount = _ref3.visibleItemsCount,
46
+ searchMode = _ref3.searchMode;
50
47
  var getShowMoreNumber = React.useMemo(function () {
51
48
  return visibleItemsCount + showMoreStep < itemsCount ? showMoreStep : itemsCount - visibleItemsCount;
52
49
  }, [itemsCount, showMoreStep, visibleItemsCount]);
@@ -96,5 +93,4 @@ var Footer = function Footer(_ref3) {
96
93
  size: 22
97
94
  }), allTexts.clearAllLabel)))) : null;
98
95
  };
99
-
100
96
  export default Footer;
@@ -5,21 +5,20 @@ import Dropdown from '@synerise/ds-dropdown';
5
5
  import { NOOP } from '@synerise/ds-utils';
6
6
  import Extras from '../Extras';
7
7
  import * as S from '../ItemsRoll.styles';
8
-
9
8
  var Header = function Header(_ref) {
10
9
  var actions = _ref.actions,
11
- allTexts = _ref.allTexts,
12
- _ref$changeSelectionI = _ref.changeSelectionIcon,
13
- ChangeSelectionIcon = _ref$changeSelectionI === void 0 ? EditM : _ref$changeSelectionI,
14
- changeSelectionDropdownProps = _ref.changeSelectionDropdownProps,
15
- customSidebarActions = _ref.customSidebarActions,
16
- hideSearch = _ref.hideSearch,
17
- itemsCount = _ref.itemsCount,
18
- onChangeSelection = _ref.onChangeSelection,
19
- onSearch = _ref.onSearch,
20
- searchValue = _ref.searchValue,
21
- onSearchClear = _ref.onSearchClear,
22
- searchPlaceholder = _ref.searchPlaceholder;
10
+ allTexts = _ref.allTexts,
11
+ _ref$changeSelectionI = _ref.changeSelectionIcon,
12
+ ChangeSelectionIcon = _ref$changeSelectionI === void 0 ? EditM : _ref$changeSelectionI,
13
+ changeSelectionDropdownProps = _ref.changeSelectionDropdownProps,
14
+ customSidebarActions = _ref.customSidebarActions,
15
+ hideSearch = _ref.hideSearch,
16
+ itemsCount = _ref.itemsCount,
17
+ onChangeSelection = _ref.onChangeSelection,
18
+ onSearch = _ref.onSearch,
19
+ searchValue = _ref.searchValue,
20
+ onSearchClear = _ref.onSearchClear,
21
+ searchPlaceholder = _ref.searchPlaceholder;
23
22
  var ChangeSelectionButton = React.useMemo(function () {
24
23
  return /*#__PURE__*/React.createElement(S.ChangeSelection, {
25
24
  type: "ghost",
@@ -41,5 +40,4 @@ var Header = function Header(_ref) {
41
40
  actions: actions
42
41
  })));
43
42
  };
44
-
45
43
  export default Header;
@@ -6,9 +6,9 @@ import { RemoveIconWrapper } from './ItemRemoveIcon.styles';
6
6
  // eslint-disable-next-line import/prefer-default-export
7
7
  export var RemoveIcon = function RemoveIcon(_ref) {
8
8
  var id = _ref.id,
9
- handleRemove = _ref.handleRemove,
10
- tooltipLabel = _ref.tooltipLabel,
11
- group = _ref.group;
9
+ handleRemove = _ref.handleRemove,
10
+ tooltipLabel = _ref.tooltipLabel,
11
+ group = _ref.group;
12
12
  return /*#__PURE__*/React.createElement(Tooltip, {
13
13
  title: tooltipLabel
14
14
  }, /*#__PURE__*/React.createElement(RemoveIconWrapper, null, /*#__PURE__*/React.createElement(Icon, {
@@ -1,5 +1,6 @@
1
- import styled from 'styled-components'; // eslint-disable-next-line import/prefer-default-export
1
+ import styled from 'styled-components';
2
2
 
3
+ // eslint-disable-next-line import/prefer-default-export
3
4
  export var RemoveIconWrapper = styled.div.withConfig({
4
5
  displayName: "ItemRemoveIconstyles__RemoveIconWrapper",
5
6
  componentId: "sc-1uw1dzt-0"
@@ -10,20 +10,19 @@ export var itemsInGroup = function itemsInGroup(group, items) {
10
10
  return item.group === group;
11
11
  });
12
12
  };
13
-
14
13
  var List = function List(_ref) {
15
14
  var groups = _ref.groups,
16
- items = _ref.items,
17
- onItemClick = _ref.onItemClick,
18
- onItemRemove = _ref.onItemRemove,
19
- noResultsLabel = _ref.noResultsLabel,
20
- removeTooltipLabel = _ref.removeTooltipLabel,
21
- searchValue = _ref.searchValue,
22
- useVirtualizedList = _ref.useVirtualizedList,
23
- visibleItems = _ref.visibleItems,
24
- _ref$virtualizedRowHe = _ref.virtualizedRowHeight,
25
- virtualizedRowHeight = _ref$virtualizedRowHe === void 0 ? 32 : _ref$virtualizedRowHe,
26
- virtualizedRowWidth = _ref.virtualizedRowWidth;
15
+ items = _ref.items,
16
+ onItemClick = _ref.onItemClick,
17
+ onItemRemove = _ref.onItemRemove,
18
+ noResultsLabel = _ref.noResultsLabel,
19
+ removeTooltipLabel = _ref.removeTooltipLabel,
20
+ searchValue = _ref.searchValue,
21
+ useVirtualizedList = _ref.useVirtualizedList,
22
+ visibleItems = _ref.visibleItems,
23
+ _ref$virtualizedRowHe = _ref.virtualizedRowHeight,
24
+ virtualizedRowHeight = _ref$virtualizedRowHe === void 0 ? 32 : _ref$virtualizedRowHe,
25
+ virtualizedRowWidth = _ref.virtualizedRowWidth;
27
26
  return visibleItems.length === 0 ? /*#__PURE__*/React.createElement(S.NoResults, null, /*#__PURE__*/React.createElement(S.NoResultIconWrapper, null, /*#__PURE__*/React.createElement(Icon, {
28
27
  component: /*#__PURE__*/React.createElement(SearchNoResultsM, null),
29
28
  size: 25
@@ -70,5 +69,4 @@ var List = function List(_ref) {
70
69
  });
71
70
  })));
72
71
  };
73
-
74
72
  export default List;
@@ -1,25 +1,21 @@
1
1
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
-
3
2
  import React from 'react';
4
3
  import { NOOP } from '@synerise/ds-utils';
5
4
  import { RemoveIcon } from './ItemRemoveIcon';
6
5
  import * as S from './ListItem.styles';
7
-
8
6
  var ItemElement = function ItemElement(_ref) {
9
7
  var item = _ref.item,
10
- group = _ref.group,
11
- highlight = _ref.highlight,
12
- onItemClick = _ref.onItemClick,
13
- onItemRemove = _ref.onItemRemove,
14
- removeTooltipLabel = _ref.removeTooltipLabel;
8
+ group = _ref.group,
9
+ highlight = _ref.highlight,
10
+ onItemClick = _ref.onItemClick,
11
+ onItemRemove = _ref.onItemRemove,
12
+ removeTooltipLabel = _ref.removeTooltipLabel;
15
13
  var onClick = React.useCallback(function () {
16
14
  return onItemClick && onItemClick(item.id, group);
17
15
  }, [onItemClick, item.id, group]);
18
-
19
16
  var renderSuffixElement = function renderSuffixElement(hovered) {
20
17
  return item.suffixel instanceof Function ? item.suffixel(hovered) : item.suffixel;
21
18
  };
22
-
23
19
  return /*#__PURE__*/React.createElement(S.ListItem, _extends({}, item, {
24
20
  className: "items-roll-list-item",
25
21
  highlight: highlight,
@@ -35,5 +31,4 @@ var ItemElement = function ItemElement(_ref) {
35
31
  onClick: onClick
36
32
  }), item.text);
37
33
  };
38
-
39
34
  export default ItemElement;
@@ -1,30 +1,26 @@
1
1
  var _excluded = ["suffixel"];
2
-
3
2
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
4
-
5
3
  import React from 'react';
6
4
  import Menu from '@synerise/ds-menu';
7
5
  import { NOOP } from '@synerise/ds-utils';
8
6
  import * as S from './ListItem.styles';
9
7
  import { RemoveIcon } from './ItemRemoveIcon';
10
-
11
8
  var ItemRenderer = function ItemRenderer(_ref) {
12
9
  var highlight = _ref.highlight,
13
- onItemClick = _ref.onItemClick,
14
- onItemRemove = _ref.onItemRemove,
15
- tooltipLabel = _ref.tooltipLabel,
16
- group = _ref.group;
10
+ onItemClick = _ref.onItemClick,
11
+ onItemRemove = _ref.onItemRemove,
12
+ tooltipLabel = _ref.tooltipLabel,
13
+ group = _ref.group;
17
14
  return function (_ref2) {
18
15
  var index = _ref2.index,
19
- style = _ref2.style,
20
- data = _ref2.data;
21
-
16
+ style = _ref2.style,
17
+ data = _ref2.data;
22
18
  // eslint-disable-next-line react-hooks/rules-of-hooks
23
19
  var _ref3 = data[index],
24
- suffixel = _ref3.suffixel,
25
- item = _objectWithoutPropertiesLoose(_ref3, _excluded); // eslint-disable-next-line react-hooks/rules-of-hooks
26
-
20
+ suffixel = _ref3.suffixel,
21
+ item = _objectWithoutPropertiesLoose(_ref3, _excluded);
27
22
 
23
+ // eslint-disable-next-line react-hooks/rules-of-hooks
28
24
  var onClick = React.useCallback(function () {
29
25
  return onItemClick && onItemClick(item.id, group);
30
26
  }, [item.id]);
@@ -43,5 +39,4 @@ var ItemRenderer = function ItemRenderer(_ref) {
43
39
  }, item.text));
44
40
  };
45
41
  };
46
-
47
42
  export default ItemRenderer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-items-roll",
3
- "version": "0.7.14",
3
+ "version": "0.7.16",
4
4
  "description": "ItemsRoll UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -34,15 +34,15 @@
34
34
  ],
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
- "@synerise/ds-button": "^0.21.18",
38
- "@synerise/ds-divider": "^0.7.14",
39
- "@synerise/ds-dropdown": "^0.18.23",
40
- "@synerise/ds-icon": "^0.66.4",
41
- "@synerise/ds-menu": "^0.20.5",
42
- "@synerise/ds-popconfirm": "^0.10.59",
43
- "@synerise/ds-search": "^0.9.18",
44
- "@synerise/ds-tooltip": "^0.14.48",
45
- "@synerise/ds-utils": "^0.31.1",
37
+ "@synerise/ds-button": "^0.21.19",
38
+ "@synerise/ds-divider": "^0.7.15",
39
+ "@synerise/ds-dropdown": "^0.18.24",
40
+ "@synerise/ds-icon": "^0.67.0",
41
+ "@synerise/ds-menu": "^0.20.6",
42
+ "@synerise/ds-popconfirm": "^0.10.61",
43
+ "@synerise/ds-search": "^0.9.19",
44
+ "@synerise/ds-tooltip": "^0.14.49",
45
+ "@synerise/ds-utils": "^0.31.2",
46
46
  "react-window": "^1.8.5"
47
47
  },
48
48
  "peerDependencies": {
@@ -50,5 +50,5 @@
50
50
  "react": ">=16.9.0 <= 17.0.2",
51
51
  "styled-components": "5.0.1"
52
52
  },
53
- "gitHead": "8d26191fc0475407e0691b9b183761ad3cd7c87d"
53
+ "gitHead": "e9897e5ecb13a9c022f5ed002db76e4ab78318c5"
54
54
  }