@synerise/ds-condition 0.22.6 → 0.22.8
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/ConditionStep/ConditionStep.js +1 -1
- package/package.json +10 -10
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
|
+
## [0.22.8](https://github.com/Synerise/synerise-design/compare/@synerise/ds-condition@0.22.7...@synerise/ds-condition@0.22.8) (2024-04-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-condition
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.22.7](https://github.com/Synerise/synerise-design/compare/@synerise/ds-condition@0.22.6...@synerise/ds-condition@0.22.7) (2024-04-03)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **condition:** child contexts readOnly without condition readOnly ([59304ba](https://github.com/Synerise/synerise-design/commit/59304ba115f8c778a732351bbe7c42cae377fca0))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.22.6](https://github.com/Synerise/synerise-design/compare/@synerise/ds-condition@0.22.5...@synerise/ds-condition@0.22.6) (2024-04-02)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-condition
|
|
@@ -212,7 +212,7 @@ export var ConditionStep = function ConditionStep(_ref) {
|
|
|
212
212
|
onSelectItem: function onSelectItem(value) {
|
|
213
213
|
return selectContext(value, step.id);
|
|
214
214
|
},
|
|
215
|
-
readOnly: readOnly
|
|
215
|
+
readOnly: step.context.readOnly || readOnly
|
|
216
216
|
}))), /*#__PURE__*/React.createElement(S.ConditionRows, null, step.conditions.length > 0 && step.conditions.map(renderConditionRow), addConditionButton), !updateStepName && withCruds && /*#__PURE__*/React.createElement(S.StepConditionCruds, {
|
|
217
217
|
onDuplicate: duplicateStep ? function () {
|
|
218
218
|
return duplicateStep(step.id);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-condition",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.8",
|
|
4
4
|
"description": "Condition UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@synerise/ds-button": "^0.19.6",
|
|
37
|
-
"@synerise/ds-context-selector": "^0.21.
|
|
38
|
-
"@synerise/ds-cruds": "^0.5.
|
|
39
|
-
"@synerise/ds-factors": "^0.22.
|
|
37
|
+
"@synerise/ds-context-selector": "^0.21.7",
|
|
38
|
+
"@synerise/ds-cruds": "^0.5.4",
|
|
39
|
+
"@synerise/ds-factors": "^0.22.7",
|
|
40
40
|
"@synerise/ds-icon": "^0.60.6",
|
|
41
|
-
"@synerise/ds-inline-edit": "^0.6.
|
|
42
|
-
"@synerise/ds-input": "^0.20.
|
|
43
|
-
"@synerise/ds-operators": "^0.10.
|
|
44
|
-
"@synerise/ds-subject": "^0.9.
|
|
45
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
41
|
+
"@synerise/ds-inline-edit": "^0.6.104",
|
|
42
|
+
"@synerise/ds-input": "^0.20.5",
|
|
43
|
+
"@synerise/ds-operators": "^0.10.65",
|
|
44
|
+
"@synerise/ds-subject": "^0.9.91",
|
|
45
|
+
"@synerise/ds-tooltip": "^0.14.24",
|
|
46
46
|
"@synerise/ds-utils": "^0.26.2",
|
|
47
47
|
"lodash": "^4.17.19",
|
|
48
48
|
"react-intl": "3.12.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"@testing-library/jest-dom": "5.1.1",
|
|
59
59
|
"@testing-library/react": "10.0.1"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "84c9ff34c60369cc819ab1d4307373fafaf06462"
|
|
62
62
|
}
|