@synerise/ds-condition 1.4.26 → 1.4.27
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/Condition.js +1 -1
- package/package.json +9 -9
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
|
+
## [1.4.27](https://github.com/Synerise/synerise-design/compare/@synerise/ds-condition@1.4.26...@synerise/ds-condition@1.4.27) (2025-10-31)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **sortable:** prevent rendering drop label when id is undef ([81898e8](https://github.com/Synerise/synerise-design/commit/81898e87348199cc540ac188b26ea0dd5e621f62))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [1.4.26](https://github.com/Synerise/synerise-design/compare/@synerise/ds-condition@1.4.25...@synerise/ds-condition@1.4.26) (2025-10-22)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-condition
|
package/dist/Condition.js
CHANGED
|
@@ -241,7 +241,7 @@ var Condition = function Condition(props) {
|
|
|
241
241
|
return /*#__PURE__*/React.createElement(ConditionStep, {
|
|
242
242
|
key: "step-id-" + step.id,
|
|
243
243
|
step: step,
|
|
244
|
-
isDragged: (draggedStep == null ? void 0 : draggedStep.id) === step.id,
|
|
244
|
+
isDragged: draggedStep && (draggedStep == null ? void 0 : draggedStep.id) === step.id,
|
|
245
245
|
isLast: index === steps.length - 1,
|
|
246
246
|
texts: allTexts,
|
|
247
247
|
index: index,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-condition",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.27",
|
|
4
4
|
"description": "Condition UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"types": "dist/index.d.ts",
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@synerise/ds-button": "^1.4.16",
|
|
39
|
-
"@synerise/ds-context-selector": "^1.1.
|
|
39
|
+
"@synerise/ds-context-selector": "^1.1.44",
|
|
40
40
|
"@synerise/ds-cruds": "^1.0.21",
|
|
41
|
-
"@synerise/ds-factors": "^1.5.
|
|
41
|
+
"@synerise/ds-factors": "^1.5.21",
|
|
42
42
|
"@synerise/ds-icon": "^1.7.3",
|
|
43
|
-
"@synerise/ds-inline-edit": "^1.0.
|
|
44
|
-
"@synerise/ds-input": "^1.4.
|
|
45
|
-
"@synerise/ds-operators": "^1.0.
|
|
46
|
-
"@synerise/ds-sortable": "^1.3.
|
|
47
|
-
"@synerise/ds-subject": "^1.0.
|
|
43
|
+
"@synerise/ds-inline-edit": "^1.0.38",
|
|
44
|
+
"@synerise/ds-input": "^1.4.2",
|
|
45
|
+
"@synerise/ds-operators": "^1.0.38",
|
|
46
|
+
"@synerise/ds-sortable": "^1.3.7",
|
|
47
|
+
"@synerise/ds-subject": "^1.0.39",
|
|
48
48
|
"@synerise/ds-tooltip": "^1.2.1",
|
|
49
49
|
"@synerise/ds-typography": "^1.0.22",
|
|
50
50
|
"@synerise/ds-utils": "^1.5.0",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"react-intl": ">=3.12.0 <= 6.8",
|
|
57
57
|
"styled-components": "^5.3.3"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "73989f3707121812fcd54f3e89e80f6228298689"
|
|
60
60
|
}
|