@synerise/ds-step-card 0.9.20 → 0.10.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 +11 -0
- package/dist/StepCard.d.ts +2 -1
- package/dist/StepCard.js +134 -4
- package/dist/StepCard.styles.d.ts +11 -0
- package/dist/StepCard.styles.js +38 -9
- package/dist/StepCard.types.d.ts +9 -3
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.10.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-step-card@0.9.20...@synerise/ds-step-card@0.10.0) (2023-12-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **filter:** reorder cruds in filter step conditions ([8d4019b](https://github.com/Synerise/synerise-design/commit/8d4019b49c7579000e093aabbcd31a75626d9c1c))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.9.20](https://github.com/Synerise/synerise-design/compare/@synerise/ds-step-card@0.9.19...@synerise/ds-step-card@0.9.20) (2023-12-13)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-step-card
|
package/dist/StepCard.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { StepCardProps } from './StepCard.types';
|
|
3
|
+
export declare const REORDER_THROTTLE = 1000;
|
|
3
4
|
declare const StepCard: React.ForwardRefExoticComponent<StepCardProps & React.RefAttributes<HTMLDivElement>>;
|
|
4
5
|
export default StepCard;
|
package/dist/StepCard.js
CHANGED
|
@@ -4,17 +4,24 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
4
4
|
|
|
5
5
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
6
6
|
|
|
7
|
-
import
|
|
7
|
+
import React, { useRef, forwardRef, useEffect, useMemo, useState, createRef } from 'react';
|
|
8
8
|
import { useIntl } from 'react-intl';
|
|
9
9
|
import Matching from '@synerise/ds-logic/dist/Matching/Matching';
|
|
10
10
|
import Cruds from '@synerise/ds-cruds';
|
|
11
|
+
import { InlineAlert } from '@synerise/ds-alert';
|
|
11
12
|
import { DragHandleM } from '@synerise/ds-icon';
|
|
12
13
|
import { Title } from '@synerise/ds-typography';
|
|
13
14
|
import * as S from './StepCard.styles';
|
|
14
|
-
var
|
|
15
|
+
export var REORDER_THROTTLE = 1000;
|
|
16
|
+
var MOVE_SUCCESS_FEEDBACK_DURATION = 2000;
|
|
17
|
+
var StepCard = forwardRef(function (_ref, ref) {
|
|
15
18
|
var children = _ref.children,
|
|
16
19
|
onDelete = _ref.onDelete,
|
|
17
20
|
onDuplicate = _ref.onDuplicate,
|
|
21
|
+
onMove = _ref.onMove,
|
|
22
|
+
expressionIndex = _ref.expressionIndex,
|
|
23
|
+
expressionMoved = _ref.expressionMoved,
|
|
24
|
+
expressionCount = _ref.expressionCount,
|
|
18
25
|
footer = _ref.footer,
|
|
19
26
|
matching = _ref.matching,
|
|
20
27
|
onChangeMatching = _ref.onChangeMatching,
|
|
@@ -28,7 +35,7 @@ var StepCard = React.forwardRef(function (_ref, ref) {
|
|
|
28
35
|
var _useIntl = useIntl(),
|
|
29
36
|
formatMessage = _useIntl.formatMessage;
|
|
30
37
|
|
|
31
|
-
var text =
|
|
38
|
+
var text = useMemo(function () {
|
|
32
39
|
return _objectSpread({
|
|
33
40
|
matching: formatMessage({
|
|
34
41
|
id: 'DS.MATCHING.PERFORMED'
|
|
@@ -48,6 +55,14 @@ var StepCard = React.forwardRef(function (_ref, ref) {
|
|
|
48
55
|
moveTooltip: formatMessage({
|
|
49
56
|
id: 'DS.STEP-CARD.MOVE'
|
|
50
57
|
}),
|
|
58
|
+
moveUpTooltip: formatMessage({
|
|
59
|
+
id: 'DS.STEP-CARD.MOVE-UP',
|
|
60
|
+
defaultMessage: 'Move Up'
|
|
61
|
+
}),
|
|
62
|
+
moveDownTooltip: formatMessage({
|
|
63
|
+
id: 'DS.STEP-CARD.MOVE-DOWN',
|
|
64
|
+
defaultMessage: 'Move Down'
|
|
65
|
+
}),
|
|
51
66
|
deleteTooltip: formatMessage({
|
|
52
67
|
id: 'DS.STEP-CARD.DELETE'
|
|
53
68
|
}),
|
|
@@ -57,18 +72,133 @@ var StepCard = React.forwardRef(function (_ref, ref) {
|
|
|
57
72
|
}, texts);
|
|
58
73
|
}, [formatMessage, texts]);
|
|
59
74
|
|
|
75
|
+
var _useState = useState(0),
|
|
76
|
+
moveByOffset = _useState[0],
|
|
77
|
+
setMoveByOffset = _useState[1];
|
|
78
|
+
|
|
79
|
+
var moveUpInactive = expressionIndex + moveByOffset <= 0;
|
|
80
|
+
var moveDownInactive = expressionIndex + moveByOffset >= expressionCount - 1;
|
|
81
|
+
var timeoutMovedRef = useRef(null);
|
|
82
|
+
|
|
83
|
+
var _useState2 = useState(expressionMoved),
|
|
84
|
+
recentlyMoved = _useState2[0],
|
|
85
|
+
setRecentlyMoved = _useState2[1];
|
|
86
|
+
|
|
87
|
+
var spinnerRef = createRef();
|
|
88
|
+
var countDownSpinnerElement = /*#__PURE__*/React.createElement(S.CountDownWrapper, null, /*#__PURE__*/React.createElement("svg", {
|
|
89
|
+
viewBox: "0 0 24 24"
|
|
90
|
+
}, /*#__PURE__*/React.createElement(S.CountDownSpinner, {
|
|
91
|
+
"data-test": moveByOffset,
|
|
92
|
+
duration: REORDER_THROTTLE / 1000,
|
|
93
|
+
"stroke-dashoffset": "40",
|
|
94
|
+
"stroke-linecap": "butt"
|
|
95
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
96
|
+
ref: spinnerRef,
|
|
97
|
+
r: "5",
|
|
98
|
+
cx: "12",
|
|
99
|
+
cy: "12",
|
|
100
|
+
fill: "transparent",
|
|
101
|
+
transform: "rotate(-90,12,12)"
|
|
102
|
+
}))));
|
|
103
|
+
|
|
104
|
+
var resetAnimation = function resetAnimation() {
|
|
105
|
+
if (spinnerRef.current && spinnerRef.current.parentElement) {
|
|
106
|
+
var svgGroupElem = spinnerRef.current.parentElement;
|
|
107
|
+
svgGroupElem.style.transitionProperty = 'none';
|
|
108
|
+
svgGroupElem.style.strokeDashoffset = '75';
|
|
109
|
+
}
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
var startAnimation = function startAnimation() {
|
|
113
|
+
if (spinnerRef.current && spinnerRef.current.parentElement) {
|
|
114
|
+
var svgGroupElem = spinnerRef.current.parentElement;
|
|
115
|
+
svgGroupElem.style.transitionDuration = REORDER_THROTTLE / 1000 + "s";
|
|
116
|
+
svgGroupElem.style.transitionProperty = 'stroke-dashoffset';
|
|
117
|
+
svgGroupElem.style.strokeDashoffset = '40';
|
|
118
|
+
}
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
var onMoveUp = function onMoveUp() {
|
|
122
|
+
if (!moveUpInactive) {
|
|
123
|
+
resetAnimation();
|
|
124
|
+
setMoveByOffset(moveByOffset - 1);
|
|
125
|
+
}
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
var onMoveDown = function onMoveDown() {
|
|
129
|
+
if (!moveDownInactive) {
|
|
130
|
+
resetAnimation();
|
|
131
|
+
setMoveByOffset(moveByOffset + 1);
|
|
132
|
+
}
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
useEffect(function () {
|
|
136
|
+
if (expressionMoved) {
|
|
137
|
+
setRecentlyMoved(expressionMoved);
|
|
138
|
+
timeoutMovedRef.current = setTimeout(function () {
|
|
139
|
+
return setRecentlyMoved(false);
|
|
140
|
+
}, MOVE_SUCCESS_FEEDBACK_DURATION);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
return resetMoveSuccess;
|
|
144
|
+
}, [expressionMoved, expressionIndex]);
|
|
145
|
+
|
|
146
|
+
var resetMoveSuccess = function resetMoveSuccess() {
|
|
147
|
+
timeoutMovedRef.current && clearTimeout(timeoutMovedRef.current);
|
|
148
|
+
setRecentlyMoved(false);
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
useEffect(function () {
|
|
152
|
+
var timer;
|
|
153
|
+
var timer2;
|
|
154
|
+
|
|
155
|
+
if (moveByOffset !== 0) {
|
|
156
|
+
timer = setTimeout(function () {
|
|
157
|
+
onMove(expressionIndex, moveByOffset);
|
|
158
|
+
setMoveByOffset(0);
|
|
159
|
+
}, REORDER_THROTTLE);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
resetAnimation();
|
|
163
|
+
|
|
164
|
+
if (moveByOffset) {
|
|
165
|
+
timer2 = setTimeout(startAnimation, 0);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
return function () {
|
|
169
|
+
timer && clearTimeout(timer);
|
|
170
|
+
timer2 && clearTimeout(timer2);
|
|
171
|
+
};
|
|
172
|
+
});
|
|
173
|
+
var moveByOffsetLabel = "Move " + Math.abs(moveByOffset) + " " + (moveByOffset < 0 ? 'up' : 'down') + "...";
|
|
174
|
+
|
|
60
175
|
var renderRightSide = function renderRightSide() {
|
|
61
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, !readOnly && /*#__PURE__*/React.createElement(S.CrudsWrapper, null, /*#__PURE__*/React.createElement(
|
|
176
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, !readOnly && /*#__PURE__*/React.createElement(S.CrudsWrapper, null, /*#__PURE__*/React.createElement(S.MoveByOffset, {
|
|
177
|
+
offset: moveByOffset
|
|
178
|
+
}, countDownSpinnerElement, " ", /*#__PURE__*/React.createElement(S.MoveByOffsetLabel, null, moveByOffsetLabel)), /*#__PURE__*/React.createElement(Cruds, {
|
|
179
|
+
onMoveUp: onMoveUp,
|
|
180
|
+
moveUpTooltip: text.moveUpTooltip,
|
|
181
|
+
moveUpInactive: moveUpInactive,
|
|
182
|
+
onMoveDown: onMoveDown,
|
|
183
|
+
moveDownTooltip: text.moveDownTooltip,
|
|
184
|
+
moveDownInactive: moveDownInactive,
|
|
62
185
|
deleteTooltip: text.deleteTooltip,
|
|
63
186
|
onDelete: onDelete,
|
|
64
187
|
duplicateTooltip: text.duplicateTooltip,
|
|
65
188
|
onDuplicate: onDuplicate
|
|
189
|
+
})), recentlyMoved && /*#__PURE__*/React.createElement(S.RecentlyMoved, {
|
|
190
|
+
duration: MOVE_SUCCESS_FEEDBACK_DURATION
|
|
191
|
+
}, /*#__PURE__*/React.createElement(InlineAlert, {
|
|
192
|
+
type: "success",
|
|
193
|
+
message: "Moved"
|
|
66
194
|
})), headerRightSide);
|
|
67
195
|
};
|
|
68
196
|
|
|
69
197
|
return /*#__PURE__*/React.createElement(S.Container, {
|
|
70
198
|
ref: ref
|
|
71
199
|
}, isHeaderVisible && /*#__PURE__*/React.createElement(S.Header, {
|
|
200
|
+
onMouseOver: resetMoveSuccess,
|
|
201
|
+
onFocus: resetMoveSuccess,
|
|
72
202
|
className: "step-card-drag-handler"
|
|
73
203
|
}, /*#__PURE__*/React.createElement(S.LeftSide, {
|
|
74
204
|
readOnly: readOnly
|
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
+
export declare const RecentlyMoved: import("styled-components").StyledComponent<"span", any, {
|
|
4
|
+
duration: number;
|
|
5
|
+
}, never>;
|
|
6
|
+
export declare const CountDownWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
7
|
+
export declare const MoveByOffsetLabel: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
8
|
+
export declare const CountDownSpinner: import("styled-components").StyledComponent<"g", any, {
|
|
9
|
+
duration: number;
|
|
10
|
+
}, never>;
|
|
11
|
+
export declare const MoveByOffset: import("styled-components").StyledComponent<"span", any, {
|
|
12
|
+
offset: number;
|
|
13
|
+
}, never>;
|
|
3
14
|
export declare const CrudsWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
15
|
export declare const DragIcon: import("styled-components").StyledComponent<import("react").FC<import("@synerise/ds-icon").IconProps>, any, {}, never>;
|
|
5
16
|
export declare const Header: import("styled-components").StyledComponent<"div", any, {}, never>;
|
package/dist/StepCard.styles.js
CHANGED
|
@@ -1,41 +1,70 @@
|
|
|
1
|
-
import styled from 'styled-components';
|
|
1
|
+
import styled, { keyframes } from 'styled-components';
|
|
2
2
|
import Icon from '@synerise/ds-icon';
|
|
3
|
+
var fadeout = keyframes(["from{opacity:1}to{opacity:0;}"]);
|
|
3
4
|
export var Container = styled.div.withConfig({
|
|
4
5
|
displayName: "StepCardstyles__Container",
|
|
5
6
|
componentId: "sc-45dbps-0"
|
|
6
7
|
})(["display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;width:100%;background-color:", ";border-radius:3px;box-shadow:0 4px 12px 0 #2329360a;min-width:594px;"], function (props) {
|
|
7
8
|
return props.theme.palette.white;
|
|
8
9
|
});
|
|
10
|
+
export var RecentlyMoved = styled.span.withConfig({
|
|
11
|
+
displayName: "StepCardstyles__RecentlyMoved",
|
|
12
|
+
componentId: "sc-45dbps-1"
|
|
13
|
+
})(["animation:", " 0.1s linear ", "s 1 forwards;"], fadeout, function (props) {
|
|
14
|
+
return (props.duration - 200) / 1000;
|
|
15
|
+
});
|
|
16
|
+
export var CountDownWrapper = styled.div.withConfig({
|
|
17
|
+
displayName: "StepCardstyles__CountDownWrapper",
|
|
18
|
+
componentId: "sc-45dbps-2"
|
|
19
|
+
})(["vertical-align:middle;display:inline-block;width:24px;height:24px;color:inherit;"]);
|
|
20
|
+
export var MoveByOffsetLabel = styled.span.withConfig({
|
|
21
|
+
displayName: "StepCardstyles__MoveByOffsetLabel",
|
|
22
|
+
componentId: "sc-45dbps-3"
|
|
23
|
+
})([""]);
|
|
24
|
+
export var CountDownSpinner = styled.g.withConfig({
|
|
25
|
+
displayName: "StepCardstyles__CountDownSpinner",
|
|
26
|
+
componentId: "sc-45dbps-4"
|
|
27
|
+
})(["stroke:", ";stroke-width:2px;stroke-dasharray:75;transition:stroke-dashoffset ", "s linear;"], function (props) {
|
|
28
|
+
return props.theme.palette['grey-500'];
|
|
29
|
+
}, function (props) {
|
|
30
|
+
return props.duration;
|
|
31
|
+
});
|
|
32
|
+
export var MoveByOffset = styled.span.withConfig({
|
|
33
|
+
displayName: "StepCardstyles__MoveByOffset",
|
|
34
|
+
componentId: "sc-45dbps-5"
|
|
35
|
+
})(["display:flex;align-items:center;gap:2px;", "{display:", ";}"], MoveByOffsetLabel, function (props) {
|
|
36
|
+
return props.offset === 0 ? 'none' : 'block';
|
|
37
|
+
});
|
|
9
38
|
export var CrudsWrapper = styled.div.withConfig({
|
|
10
39
|
displayName: "StepCardstyles__CrudsWrapper",
|
|
11
|
-
componentId: "sc-45dbps-
|
|
40
|
+
componentId: "sc-45dbps-6"
|
|
12
41
|
})(["display:flex;flex-direction:row;align-items:center;justify-content:flex-end;opacity:0;visibility:hidden;"]);
|
|
13
42
|
export var DragIcon = styled(Icon).withConfig({
|
|
14
43
|
displayName: "StepCardstyles__DragIcon",
|
|
15
|
-
componentId: "sc-45dbps-
|
|
44
|
+
componentId: "sc-45dbps-7"
|
|
16
45
|
})(["visibility:hidden;opacity:0;"]);
|
|
17
46
|
export var Header = styled.div.withConfig({
|
|
18
47
|
displayName: "StepCardstyles__Header",
|
|
19
|
-
componentId: "sc-45dbps-
|
|
20
|
-
})(["display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:22px 0;margin:0 24px 0 0;width:100%;max-width:calc(100% - 24px);position:relative;cursor:grab;&:hover{", "{opacity:1;visibility:visible;}", "{visibility:visible;opacity:1;}}"], CrudsWrapper, DragIcon);
|
|
48
|
+
componentId: "sc-45dbps-8"
|
|
49
|
+
})(["display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:22px 0;margin:0 24px 0 0;width:100%;max-width:calc(100% - 24px);position:relative;cursor:grab;&:hover{", "{display:none;}", "{opacity:1;visibility:visible;}", "{visibility:visible;opacity:1;}}"], RecentlyMoved, CrudsWrapper, DragIcon);
|
|
21
50
|
export var LeftSide = styled.div.withConfig({
|
|
22
51
|
displayName: "StepCardstyles__LeftSide",
|
|
23
|
-
componentId: "sc-45dbps-
|
|
52
|
+
componentId: "sc-45dbps-9"
|
|
24
53
|
})(["display:flex;flex-direction:row;align-items:center;justify-content:flex-start;padding-left:", ";> *{margin-right:8px;}"], function (_ref) {
|
|
25
54
|
var readOnly = _ref.readOnly;
|
|
26
55
|
return readOnly ? '32px' : '0';
|
|
27
56
|
});
|
|
28
57
|
export var RightSide = styled.div.withConfig({
|
|
29
58
|
displayName: "StepCardstyles__RightSide",
|
|
30
|
-
componentId: "sc-45dbps-
|
|
59
|
+
componentId: "sc-45dbps-10"
|
|
31
60
|
})(["display:flex;flex-direction:row;align-items:center;justify-content:flex-start;> *{margin-left:8px;}"]);
|
|
32
61
|
export var Body = styled.div.withConfig({
|
|
33
62
|
displayName: "StepCardstyles__Body",
|
|
34
|
-
componentId: "sc-45dbps-
|
|
63
|
+
componentId: "sc-45dbps-11"
|
|
35
64
|
})(["padding:0 0 24px;width:100%;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;.ds-conditions{&:first-of-type{padding-top:0;}&:last-of-type{padding-bottom:0;}}"]);
|
|
36
65
|
export var Footer = styled.div.withConfig({
|
|
37
66
|
displayName: "StepCardstyles__Footer",
|
|
38
|
-
componentId: "sc-45dbps-
|
|
67
|
+
componentId: "sc-45dbps-12"
|
|
39
68
|
})(["background-color:rgba(249,250,251,0.6);border-top:1px solid ", ";padding:16px 24px;display:flex;flex-direction:row;align-items:center;justify-content:flex-end;width:100%;> *{margin-left:8px;}"], function (props) {
|
|
40
69
|
return props.theme.palette['grey-100'];
|
|
41
70
|
});
|
package/dist/StepCard.types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
2
|
export type StepCardTexts = {
|
|
3
3
|
matching: string;
|
|
4
4
|
notMatching: string;
|
|
@@ -6,19 +6,25 @@ export type StepCardTexts = {
|
|
|
6
6
|
notConditionType: string;
|
|
7
7
|
namePlaceholder: string;
|
|
8
8
|
moveTooltip: string;
|
|
9
|
+
moveUpTooltip: string;
|
|
10
|
+
moveDownTooltip: string;
|
|
9
11
|
deleteTooltip: string;
|
|
10
12
|
duplicateTooltip: string;
|
|
11
13
|
};
|
|
12
14
|
export type StepCardProps = {
|
|
13
|
-
footer?:
|
|
15
|
+
footer?: ReactNode;
|
|
14
16
|
matching: boolean;
|
|
15
17
|
name: string;
|
|
16
18
|
onChangeName: (name: string) => void;
|
|
17
19
|
onChangeMatching: (matching: boolean) => void;
|
|
18
20
|
onDelete: () => void;
|
|
19
21
|
onDuplicate: () => void;
|
|
22
|
+
onMove: (index: number, offset: number) => void;
|
|
23
|
+
expressionIndex: number;
|
|
24
|
+
expressionCount: number;
|
|
25
|
+
expressionMoved?: boolean;
|
|
20
26
|
texts?: StepCardTexts;
|
|
21
27
|
isHeaderVisible?: boolean;
|
|
22
28
|
readOnly?: boolean;
|
|
23
|
-
headerRightSide?:
|
|
29
|
+
headerRightSide?: ReactNode;
|
|
24
30
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-step-card",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "StepCard UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-
|
|
36
|
+
"@synerise/ds-alert": "^0.8.0",
|
|
37
|
+
"@synerise/ds-cruds": "^0.4.0",
|
|
37
38
|
"@synerise/ds-icon": "^0.58.9",
|
|
38
39
|
"@synerise/ds-logic": "^0.8.18",
|
|
39
40
|
"@synerise/ds-typography": "^0.14.1",
|
|
@@ -49,5 +50,5 @@
|
|
|
49
50
|
"@testing-library/dom": "^7.0.2",
|
|
50
51
|
"@testing-library/jest-dom": "5.1.1"
|
|
51
52
|
},
|
|
52
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "0a23e5f431033a6180383d3e0e19e885b5a66778"
|
|
53
54
|
}
|