@synerise/ds-step-card 1.1.0 → 1.2.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/CHANGELOG.md +19 -0
- package/dist/StepCard.js +1 -1
- package/dist/hooks/useDefaultTexts.d.ts +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-step-card@1.2.0...@synerise/ds-step-card@1.2.1) (2025-06-26)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-step-card
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.2.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-step-card@1.1.0...@synerise/ds-step-card@1.2.0) (2025-06-24)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **condition:** sortable lib ([8cbc3f5](https://github.com/Synerise/synerise-design/commit/8cbc3f5956ce9138f1a6b0a5eb0e7cd85bb7f4e7))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [1.1.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-step-card@1.0.10...@synerise/ds-step-card@1.1.0) (2025-06-05)
|
|
7
26
|
|
|
8
27
|
|
package/dist/StepCard.js
CHANGED
|
@@ -142,7 +142,7 @@ var StepCard = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
142
142
|
}, /*#__PURE__*/React.createElement(InlineAlert, {
|
|
143
143
|
type: "success",
|
|
144
144
|
message: "Moved"
|
|
145
|
-
})), renderHeaderRightSide
|
|
145
|
+
})), renderHeaderRightSide ? renderHeaderRightSide(dragIndex != null ? dragIndex : expressionIndex) : headerRightSide);
|
|
146
146
|
};
|
|
147
147
|
return /*#__PURE__*/React.createElement(S.Container, {
|
|
148
148
|
isDragged: isDragged,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { StepCardTexts } from 'StepCard.types';
|
|
1
|
+
import { StepCardTexts } from '../StepCard.types';
|
|
2
2
|
export declare const useDefaultTexts: (texts?: Partial<StepCardTexts>) => StepCardTexts;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-step-card",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "StepCard UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
],
|
|
35
35
|
"types": "dist/index.d.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@synerise/ds-alert": "^1.1.
|
|
38
|
-
"@synerise/ds-cruds": "^1.0.
|
|
39
|
-
"@synerise/ds-icon": "^1.5.
|
|
40
|
-
"@synerise/ds-logic": "^1.1.
|
|
41
|
-
"@synerise/ds-typography": "^1.0.
|
|
42
|
-
"@synerise/ds-utils": "^1.
|
|
37
|
+
"@synerise/ds-alert": "^1.1.6",
|
|
38
|
+
"@synerise/ds-cruds": "^1.0.12",
|
|
39
|
+
"@synerise/ds-icon": "^1.5.3",
|
|
40
|
+
"@synerise/ds-logic": "^1.1.2",
|
|
41
|
+
"@synerise/ds-typography": "^1.0.12",
|
|
42
|
+
"@synerise/ds-utils": "^1.3.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@synerise/ds-core": "*",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"react-intl": ">=3.12.0 <= 6.8",
|
|
48
48
|
"styled-components": "^5.3.3"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "11fe1d29b2ac23e70c3d5e6ce8ae20201a619a34"
|
|
51
51
|
}
|