@synerise/ds-filter 0.17.3 → 0.18.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/Filter.js +4 -1
- package/dist/index.d.ts +1 -0
- package/package.json +6 -6
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.18.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.17.3...@synerise/ds-filter@0.18.0) (2024-03-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **input:** support autoresize to stretch to parent ([329c866](https://github.com/Synerise/synerise-design/commit/329c866cb54921ad1260ae217cb8c471e43b986e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.17.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.17.2...@synerise/ds-filter@0.17.3) (2024-02-21)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-filter
|
package/dist/Filter.js
CHANGED
|
@@ -291,6 +291,7 @@ var Filter = function Filter(_ref) {
|
|
|
291
291
|
var Component = component[expression.type];
|
|
292
292
|
var LogicComponent = expression.logic && component[expression.logic.type];
|
|
293
293
|
return /*#__PURE__*/React.createElement(S.ExpressionWrapper, {
|
|
294
|
+
"data-testid": "condition-step",
|
|
294
295
|
onTransitionEnd: handleTransitionEnd,
|
|
295
296
|
ref: function ref(element) {
|
|
296
297
|
return expressionRefs.current[expression.id] = element;
|
|
@@ -303,7 +304,9 @@ var Filter = function Filter(_ref) {
|
|
|
303
304
|
}
|
|
304
305
|
}, /*#__PURE__*/React.createElement(Component, _extends({}, expression.data, componentProps(expression, index), {
|
|
305
306
|
readOnly: readOnly
|
|
306
|
-
})), expression.logic && index + 1 < expressions.length && /*#__PURE__*/React.createElement(S.LogicWrapper,
|
|
307
|
+
})), expression.logic && index + 1 < expressions.length && /*#__PURE__*/React.createElement(S.LogicWrapper, {
|
|
308
|
+
"data-testid": "condition-logic"
|
|
309
|
+
}, /*#__PURE__*/React.createElement(LogicComponent, _extends({}, expression.logic.data, componentProps(expression.logic, index), {
|
|
307
310
|
readOnly: readOnly
|
|
308
311
|
}))));
|
|
309
312
|
}, [text.dropMeHere, componentProps, expressions.length, readOnly]);
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-filter",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "Filter UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-button": "^0.19.
|
|
37
|
-
"@synerise/ds-logic": "^0.8.
|
|
38
|
-
"@synerise/ds-step-card": "^0.
|
|
39
|
-
"@synerise/ds-utils": "^0.
|
|
36
|
+
"@synerise/ds-button": "^0.19.3",
|
|
37
|
+
"@synerise/ds-logic": "^0.8.25",
|
|
38
|
+
"@synerise/ds-step-card": "^0.11.0",
|
|
39
|
+
"@synerise/ds-utils": "^0.25.0",
|
|
40
40
|
"react-intl": "3.12.0",
|
|
41
41
|
"react-sortablejs": "^6.0.0",
|
|
42
42
|
"sortablejs": "1.15.1"
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"@testing-library/dom": "^7.0.2",
|
|
52
52
|
"@testing-library/jest-dom": "5.1.1"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "6b8da853a2bb4e993d89e9b0b3041216f0c9c976"
|
|
55
55
|
}
|