@synerise/ds-filter 0.14.2 → 0.14.4
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 +23 -0
- package/dist/Filter.js +2 -2
- package/dist/Filter.styles.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,29 @@
|
|
|
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.14.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.14.3...@synerise/ds-filter@0.14.4) (2023-01-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **filter:** add missing deps ([b557155](https://github.com/Synerise/synerise-design/commit/b55715533b7019ee8c68d750471112d273e7a6e5))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.14.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.14.2...@synerise/ds-filter@0.14.3) (2023-01-30)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **filter:** dropdown filter issue ([280c35f](https://github.com/Synerise/synerise-design/commit/280c35f3b7ee229eeab2898556d334c050d4c159))
|
|
23
|
+
* **filter:** set conditions prop ([fd0856a](https://github.com/Synerise/synerise-design/commit/fd0856a110fb5884b28269ccec1f9427c877ff58))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
## [0.14.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.14.1...@synerise/ds-filter@0.14.2) (2023-01-12)
|
|
7
30
|
|
|
8
31
|
**Note:** Version bump only for package @synerise/ds-filter
|
package/dist/Filter.js
CHANGED
|
@@ -221,9 +221,9 @@ var Filter = function Filter(_ref) {
|
|
|
221
221
|
setList: onChangeOrder
|
|
222
222
|
}), expressions.map(renderExpression)) : /*#__PURE__*/React.createElement(Placeholder, {
|
|
223
223
|
text: text.placeholder.chooseCondition
|
|
224
|
-
})
|
|
224
|
+
}), addFilterComponent && !readOnly && /*#__PURE__*/React.createElement(S.AddButtonWrapper, null, typeof addFilterComponent === 'function' ? addFilterComponent({
|
|
225
225
|
isLimitExceeded: isLimitExceeded
|
|
226
|
-
}) : addFilterComponent));
|
|
226
|
+
}) : addFilterComponent)));
|
|
227
227
|
};
|
|
228
228
|
|
|
229
229
|
export default Filter;
|
package/dist/Filter.styles.js
CHANGED
|
@@ -35,7 +35,7 @@ export var ExpressionWrapper = styled.div.withConfig({
|
|
|
35
35
|
export var AddButtonWrapper = styled.div.withConfig({
|
|
36
36
|
displayName: "Filterstyles__AddButtonWrapper",
|
|
37
37
|
componentId: "w5f27p-6"
|
|
38
|
-
})(["display:flex;align-items:flex-start;justify-content:flex-start;margin:24px 0 0;width:100%;"]);
|
|
38
|
+
})(["display:flex;align-items:flex-start;justify-content:flex-start;margin:24px 0 0;width:100%;position:relative;"]);
|
|
39
39
|
export var FilterTitle = styled.div.withConfig({
|
|
40
40
|
displayName: "Filterstyles__FilterTitle",
|
|
41
41
|
componentId: "w5f27p-7"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-filter",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.4",
|
|
4
4
|
"description": "Filter UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"@synerise/ds-step-card": "*",
|
|
44
44
|
"react": ">=16.9.0 < 17.0.0"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "fb8696a94e8372550676e4ba6ebdb2866f9fbf22"
|
|
47
47
|
}
|