@synerise/ds-sortable 1.1.2 → 1.2.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/CHANGELOG.md +20 -0
- package/dist/Sortable.d.ts +1 -1
- package/dist/Sortable.js +12 -49
- package/dist/Sortable.styles.d.ts +3 -0
- package/dist/Sortable.styles.js +1 -1
- package/dist/Sortable.types.d.ts +15 -4
- package/dist/SortableContainer.d.ts +4 -0
- package/dist/SortableContainer.js +76 -0
- package/dist/SortableItem.d.ts +1 -1
- package/dist/SortableItem.js +6 -2
- package/dist/index.d.ts +4 -1
- package/dist/index.js +4 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
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
|
+
# [1.2.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-sortable@1.1.3...@synerise/ds-sortable@1.2.0) (2025-06-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **column-manager:** removed unnecessary features ([152d3c0](https://github.com/Synerise/synerise-design/commit/152d3c0d87449977f8c4264bb7abd278210470e9))
|
|
12
|
+
* **filter:** change dnd lib and update ux ([f5a979e](https://github.com/Synerise/synerise-design/commit/f5a979e6c9e5d9c8251c3f57da8ce57c416dadab))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [1.1.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-sortable@1.1.2...@synerise/ds-sortable@1.1.3) (2025-05-26)
|
|
19
|
+
|
|
20
|
+
**Note:** Version bump only for package @synerise/ds-sortable
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
## [1.1.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-sortable@1.1.1...@synerise/ds-sortable@1.1.2) (2025-05-07)
|
|
7
27
|
|
|
8
28
|
**Note:** Version bump only for package @synerise/ds-sortable
|
package/dist/Sortable.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SortableProps, BaseItem } from './Sortable.types';
|
|
3
|
-
export declare const Sortable: <ItemType extends BaseItem>({ items, onOrderChange, ItemComponent, axis, }: SortableProps<ItemType>) => React.JSX.Element;
|
|
3
|
+
export declare const Sortable: <ItemType extends BaseItem>({ items, onOrderChange, ItemComponent, axis, placeholderCss, }: SortableProps<ItemType>) => React.JSX.Element;
|
|
4
4
|
export default Sortable;
|
package/dist/Sortable.js
CHANGED
|
@@ -1,43 +1,26 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import React, { useMemo, useState, useEffect } from 'react';
|
|
3
3
|
import { v4 as uuid } from 'uuid';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { restrictToVerticalAxis, restrictToHorizontalAxis, restrictToParentElement } from '@dnd-kit/modifiers';
|
|
4
|
+
import { DragOverlay } from '@dnd-kit/core';
|
|
5
|
+
import { restrictToParentElement } from '@dnd-kit/modifiers';
|
|
7
6
|
import { SortableItem } from './SortableItem';
|
|
7
|
+
import { SortableContainer } from './SortableContainer';
|
|
8
8
|
export var Sortable = function Sortable(_ref) {
|
|
9
9
|
var items = _ref.items,
|
|
10
10
|
onOrderChange = _ref.onOrderChange,
|
|
11
11
|
ItemComponent = _ref.ItemComponent,
|
|
12
|
-
axis = _ref.axis
|
|
12
|
+
axis = _ref.axis,
|
|
13
|
+
placeholderCss = _ref.placeholderCss;
|
|
13
14
|
var _useState = useState(items),
|
|
14
15
|
order = _useState[0],
|
|
15
16
|
setOrder = _useState[1];
|
|
16
17
|
var _useState2 = useState(),
|
|
17
18
|
activeItem = _useState2[0],
|
|
18
19
|
setActiveItem = _useState2[1];
|
|
19
|
-
var sensors = useSensors(useSensor(MouseSensor), useSensor(PointerSensor), useSensor(KeyboardSensor, {
|
|
20
|
-
coordinateGetter: sortableKeyboardCoordinates
|
|
21
|
-
}));
|
|
22
20
|
var sortableId = useMemo(function () {
|
|
23
21
|
return uuid();
|
|
24
22
|
}, []);
|
|
25
|
-
var handleDragEnd = function handleDragEnd(
|
|
26
|
-
var active = event.active,
|
|
27
|
-
over = event.over;
|
|
28
|
-
if (active.id !== (over == null ? void 0 : over.id)) {
|
|
29
|
-
setOrder(function (oldOrder) {
|
|
30
|
-
var oldIndex = oldOrder.findIndex(function (item) {
|
|
31
|
-
return item.id === active.id;
|
|
32
|
-
});
|
|
33
|
-
var newIndex = oldOrder.findIndex(function (item) {
|
|
34
|
-
return item.id === (over == null ? void 0 : over.id);
|
|
35
|
-
});
|
|
36
|
-
var updatedOrder = arrayMove(oldOrder, oldIndex, newIndex);
|
|
37
|
-
onOrderChange && onOrderChange(updatedOrder);
|
|
38
|
-
return updatedOrder;
|
|
39
|
-
});
|
|
40
|
-
}
|
|
23
|
+
var handleDragEnd = function handleDragEnd() {
|
|
41
24
|
setActiveItem(undefined);
|
|
42
25
|
};
|
|
43
26
|
var handleDragStart = function handleDragStart(event) {
|
|
@@ -48,37 +31,17 @@ export var Sortable = function Sortable(_ref) {
|
|
|
48
31
|
useEffect(function () {
|
|
49
32
|
setOrder(items);
|
|
50
33
|
}, [items]);
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
if (axis === 'y') {
|
|
56
|
-
return [restrictToVerticalAxis];
|
|
57
|
-
}
|
|
58
|
-
return [];
|
|
59
|
-
}, [axis]);
|
|
60
|
-
var sortingStrategy = useMemo(function () {
|
|
61
|
-
if (axis === 'x') {
|
|
62
|
-
return horizontalListSortingStrategy;
|
|
63
|
-
}
|
|
64
|
-
if (axis === 'y') {
|
|
65
|
-
return verticalListSortingStrategy;
|
|
66
|
-
}
|
|
67
|
-
return rectSortingStrategy;
|
|
68
|
-
}, [axis]);
|
|
69
|
-
return /*#__PURE__*/React.createElement(DndContext, {
|
|
70
|
-
sensors: sensors,
|
|
71
|
-
collisionDetection: closestCenter,
|
|
34
|
+
return /*#__PURE__*/React.createElement(SortableContainer, {
|
|
35
|
+
axis: axis,
|
|
36
|
+
items: items,
|
|
72
37
|
onDragEnd: handleDragEnd,
|
|
73
38
|
onDragStart: handleDragStart,
|
|
74
|
-
|
|
75
|
-
}, /*#__PURE__*/React.createElement(SortableContext, {
|
|
76
|
-
items: order,
|
|
77
|
-
strategy: sortingStrategy
|
|
39
|
+
onOrderChange: onOrderChange
|
|
78
40
|
}, order.map(function (item, index) {
|
|
79
41
|
return /*#__PURE__*/React.createElement(SortableItem, {
|
|
80
42
|
id: item.id,
|
|
81
43
|
index: index,
|
|
44
|
+
placeholderCss: placeholderCss,
|
|
82
45
|
isDragged: (activeItem == null ? void 0 : activeItem.id) === item.id,
|
|
83
46
|
key: "sortable-item-" + sortableId + "-" + item.id,
|
|
84
47
|
data: item,
|
|
@@ -88,6 +51,6 @@ export var Sortable = function Sortable(_ref) {
|
|
|
88
51
|
modifiers: [restrictToParentElement]
|
|
89
52
|
}, activeItem && /*#__PURE__*/React.createElement(ItemComponent, _extends({}, activeItem, {
|
|
90
53
|
index: -1
|
|
91
|
-
}))))
|
|
54
|
+
}))));
|
|
92
55
|
};
|
|
93
56
|
export default Sortable;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { ThemeProps } from '@synerise/ds-core';
|
|
2
|
+
import { Interpolation } from 'styled-components';
|
|
1
3
|
export declare const SortableItemContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
4
|
export declare const SortableItemWrapper: import("styled-components").StyledComponent<"div", any, {
|
|
3
5
|
isGrabbed: boolean;
|
|
4
6
|
isDragged: boolean;
|
|
7
|
+
placeholderCss?: Interpolation<ThemeProps>;
|
|
5
8
|
}, never>;
|
|
6
9
|
export declare const SortableItemHandle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
package/dist/Sortable.styles.js
CHANGED
|
@@ -7,7 +7,7 @@ export var SortableItemWrapper = styled.div.withConfig({
|
|
|
7
7
|
displayName: "Sortablestyles__SortableItemWrapper",
|
|
8
8
|
componentId: "sc-1ggkbms-1"
|
|
9
9
|
})(["", " ", ""], function (props) {
|
|
10
|
-
return props.isDragged && css(["", "{visibility:hidden;opacity:0;poiner-events:none;}position:relative;&:before{content:'';position:absolute;width:100%;height:100%;border:1px dashed ", ";background-color:", ";border-radius:3px;}"], SortableItemContent, props.theme.palette['blue-300'], props.theme.palette['blue-050']);
|
|
10
|
+
return props.isDragged && css(["", "{visibility:hidden;opacity:0;poiner-events:none;}position:relative;&:before{content:'';position:absolute;width:100%;height:100%;border:1px dashed ", ";background-color:", ";border-radius:3px;", "}"], SortableItemContent, props.theme.palette['blue-300'], props.theme.palette['blue-050'], props.placeholderCss);
|
|
11
11
|
}, function (props) {
|
|
12
12
|
return props.isGrabbed && css(["", "{background:", ";box-shadow:0px 16px 32px 0px rgba(35,41,54,0.1);}"], SortableItemContent, props.theme.palette.white);
|
|
13
13
|
});
|
package/dist/Sortable.types.d.ts
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import type { ReactNode, ReactElement, ComponentType } from 'react';
|
|
2
|
-
import type { DraggableAttributes, DraggableSyntheticListeners } from '@dnd-kit/core';
|
|
2
|
+
import type { DndContextProps, DraggableAttributes, DraggableSyntheticListeners } from '@dnd-kit/core';
|
|
3
|
+
import type { Interpolation } from 'styled-components';
|
|
3
4
|
import type { WithHTMLAttributes } from '@synerise/ds-utils';
|
|
5
|
+
import type { ThemeProps } from '@synerise/ds-core';
|
|
4
6
|
export type DragHandlePropType = DraggableAttributes & DraggableSyntheticListeners;
|
|
5
|
-
export type
|
|
7
|
+
export type RawBaseItem = {
|
|
6
8
|
id: string | number;
|
|
7
|
-
dragHandleProps?: DragHandlePropType;
|
|
8
9
|
};
|
|
9
|
-
type
|
|
10
|
+
export type BaseItem = RawBaseItem & {
|
|
11
|
+
dragHandleProps?: DraggableAttributes & DraggableSyntheticListeners;
|
|
12
|
+
};
|
|
13
|
+
export type WithIndex<T> = T & {
|
|
10
14
|
index: number;
|
|
11
15
|
};
|
|
12
16
|
type ItemComponent<ItemType extends WithIndex<BaseItem>> = ComponentType<ItemType> | ((props: ItemType) => ReactElement);
|
|
@@ -14,6 +18,7 @@ export type SortableItemProps<ItemType extends BaseItem> = WithHTMLAttributes<HT
|
|
|
14
18
|
children?: ReactNode;
|
|
15
19
|
id: string | number;
|
|
16
20
|
index: number;
|
|
21
|
+
placeholderCss?: Interpolation<ThemeProps>;
|
|
17
22
|
component: ItemComponent<WithIndex<ItemType>>;
|
|
18
23
|
data: ItemType;
|
|
19
24
|
isDragged?: boolean;
|
|
@@ -23,5 +28,11 @@ export type SortableProps<ItemType extends BaseItem> = {
|
|
|
23
28
|
axis?: 'x' | 'y';
|
|
24
29
|
ItemComponent: ItemComponent<WithIndex<ItemType>>;
|
|
25
30
|
onOrderChange?: (newOrder: ItemType[]) => void;
|
|
31
|
+
placeholderCss?: Interpolation<ThemeProps>;
|
|
32
|
+
};
|
|
33
|
+
export type SortableContainerProps<ItemType extends BaseItem> = Omit<DndContextProps, 'sensors' | 'collisionDetection' | 'modifiers'> & {
|
|
34
|
+
items: ItemType[];
|
|
35
|
+
axis?: 'x' | 'y';
|
|
36
|
+
onOrderChange?: (newOrder: ItemType[]) => void;
|
|
26
37
|
};
|
|
27
38
|
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { RawBaseItem, SortableContainerProps } from './Sortable.types';
|
|
3
|
+
export declare const SortableContainer: <ItemType extends RawBaseItem>({ items, onOrderChange, onDragStart, onDragEnd, axis, children, ...props }: SortableContainerProps<ItemType>) => React.JSX.Element;
|
|
4
|
+
export default SortableContainer;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
var _excluded = ["items", "onOrderChange", "onDragStart", "onDragEnd", "axis", "children"];
|
|
2
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
3
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
4
|
+
import React, { useMemo, useState, useEffect } from 'react';
|
|
5
|
+
import { DndContext, closestCenter, KeyboardSensor, PointerSensor, MouseSensor, useSensor, useSensors } from '@dnd-kit/core';
|
|
6
|
+
import { arrayMove, SortableContext, sortableKeyboardCoordinates, verticalListSortingStrategy, horizontalListSortingStrategy, rectSortingStrategy } from '@dnd-kit/sortable';
|
|
7
|
+
import { restrictToVerticalAxis, restrictToHorizontalAxis } from '@dnd-kit/modifiers';
|
|
8
|
+
export var SortableContainer = function SortableContainer(_ref) {
|
|
9
|
+
var items = _ref.items,
|
|
10
|
+
onOrderChange = _ref.onOrderChange,
|
|
11
|
+
onDragStart = _ref.onDragStart,
|
|
12
|
+
onDragEnd = _ref.onDragEnd,
|
|
13
|
+
axis = _ref.axis,
|
|
14
|
+
children = _ref.children,
|
|
15
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
16
|
+
var _useState = useState(items),
|
|
17
|
+
order = _useState[0],
|
|
18
|
+
setOrder = _useState[1];
|
|
19
|
+
var sensors = useSensors(useSensor(MouseSensor), useSensor(PointerSensor), useSensor(KeyboardSensor, {
|
|
20
|
+
coordinateGetter: sortableKeyboardCoordinates
|
|
21
|
+
}));
|
|
22
|
+
var handleDragEnd = function handleDragEnd(event) {
|
|
23
|
+
var active = event.active,
|
|
24
|
+
over = event.over;
|
|
25
|
+
if (active.id !== (over == null ? void 0 : over.id)) {
|
|
26
|
+
setOrder(function (oldOrder) {
|
|
27
|
+
var oldIndex = oldOrder.findIndex(function (item) {
|
|
28
|
+
return item.id === active.id;
|
|
29
|
+
});
|
|
30
|
+
var newIndex = oldOrder.findIndex(function (item) {
|
|
31
|
+
return item.id === (over == null ? void 0 : over.id);
|
|
32
|
+
});
|
|
33
|
+
var updatedOrder = arrayMove(oldOrder, oldIndex, newIndex);
|
|
34
|
+
onOrderChange && onOrderChange(updatedOrder);
|
|
35
|
+
return updatedOrder;
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
onDragEnd && onDragEnd(event);
|
|
39
|
+
};
|
|
40
|
+
var handleDragStart = function handleDragStart(event) {
|
|
41
|
+
onDragStart && onDragStart(event);
|
|
42
|
+
};
|
|
43
|
+
useEffect(function () {
|
|
44
|
+
setOrder(items);
|
|
45
|
+
}, [items]);
|
|
46
|
+
var contextModifiers = useMemo(function () {
|
|
47
|
+
if (axis === 'x') {
|
|
48
|
+
return [restrictToHorizontalAxis];
|
|
49
|
+
}
|
|
50
|
+
if (axis === 'y') {
|
|
51
|
+
return [restrictToVerticalAxis];
|
|
52
|
+
}
|
|
53
|
+
return [];
|
|
54
|
+
}, [axis]);
|
|
55
|
+
var sortingStrategy = useMemo(function () {
|
|
56
|
+
if (axis === 'x') {
|
|
57
|
+
return horizontalListSortingStrategy;
|
|
58
|
+
}
|
|
59
|
+
if (axis === 'y') {
|
|
60
|
+
return verticalListSortingStrategy;
|
|
61
|
+
}
|
|
62
|
+
return rectSortingStrategy;
|
|
63
|
+
}, [axis]);
|
|
64
|
+
return /*#__PURE__*/React.createElement(DndContext, _extends({
|
|
65
|
+
sensors: sensors,
|
|
66
|
+
collisionDetection: closestCenter,
|
|
67
|
+
modifiers: contextModifiers
|
|
68
|
+
}, props, {
|
|
69
|
+
onDragEnd: handleDragEnd,
|
|
70
|
+
onDragStart: handleDragStart
|
|
71
|
+
}), /*#__PURE__*/React.createElement(SortableContext, {
|
|
72
|
+
items: order,
|
|
73
|
+
strategy: sortingStrategy
|
|
74
|
+
}, children));
|
|
75
|
+
};
|
|
76
|
+
export default SortableContainer;
|
package/dist/SortableItem.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SortableItemProps, BaseItem } from './Sortable.types';
|
|
3
|
-
export declare const SortableItem: <ItemType extends BaseItem>({ id, data, index, isDragged, component: Component, style, ...htmlAttributes }: SortableItemProps<ItemType>) => React.JSX.Element;
|
|
3
|
+
export declare const SortableItem: <ItemType extends BaseItem>({ id, data, index, isDragged, component: Component, style, placeholderCss, ...htmlAttributes }: SortableItemProps<ItemType>) => React.JSX.Element;
|
package/dist/SortableItem.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var _excluded = ["id", "data", "index", "isDragged", "component", "style"];
|
|
1
|
+
var _excluded = ["id", "data", "index", "isDragged", "component", "style", "placeholderCss"];
|
|
2
2
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
3
3
|
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
4
4
|
import React from 'react';
|
|
@@ -13,6 +13,7 @@ export var SortableItem = function SortableItem(_ref) {
|
|
|
13
13
|
isDragged = _ref$isDragged === void 0 ? false : _ref$isDragged,
|
|
14
14
|
Component = _ref.component,
|
|
15
15
|
style = _ref.style,
|
|
16
|
+
placeholderCss = _ref.placeholderCss,
|
|
16
17
|
htmlAttributes = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
17
18
|
var _useSortable = useSortable({
|
|
18
19
|
id: id
|
|
@@ -33,10 +34,13 @@ export var SortableItem = function SortableItem(_ref) {
|
|
|
33
34
|
"data-testid": "ds-sortable-item"
|
|
34
35
|
}, htmlAttributes, {
|
|
35
36
|
isGrabbed: index === -1,
|
|
37
|
+
placeholderCss: placeholderCss,
|
|
36
38
|
isDragged: isDragged,
|
|
37
39
|
ref: setNodeRef
|
|
38
40
|
}), /*#__PURE__*/React.createElement(S.SortableItemContent, null, /*#__PURE__*/React.createElement(Component, _extends({}, data, {
|
|
39
41
|
index: index,
|
|
40
|
-
dragHandleProps: handleProps
|
|
42
|
+
dragHandleProps: handleProps,
|
|
43
|
+
isGrabbed: index === -1,
|
|
44
|
+
isDragged: isDragged
|
|
41
45
|
}))));
|
|
42
46
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
export { useDndMonitor } from '@dnd-kit/core';
|
|
2
|
+
export { arrayMove } from '@dnd-kit/sortable';
|
|
1
3
|
export { default } from './Sortable';
|
|
2
|
-
export
|
|
4
|
+
export { SortableContainer } from './SortableContainer';
|
|
5
|
+
export type { DragHandlePropType, SortableItemProps, SortableProps, BaseItem, WithIndex } from './Sortable.types';
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-sortable",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Sortable UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@dnd-kit/modifiers": "^7.0.0",
|
|
39
39
|
"@dnd-kit/sortable": "^8.0.0",
|
|
40
40
|
"@dnd-kit/utilities": "^3.2.2",
|
|
41
|
-
"@synerise/ds-utils": "^1.
|
|
41
|
+
"@synerise/ds-utils": "^1.2.0",
|
|
42
42
|
"uuid": "^8.3.2"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"react": ">=16.9.0 <= 18.3.1",
|
|
47
47
|
"styled-components": "^5.3.3"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "93bc81d59d20bc8f3bc80c5d56ae7f7c0838380d"
|
|
50
50
|
}
|