@synerise/ds-filter 0.9.1 → 0.9.2
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 +12 -0
- package/dist/Filter.js +2 -2
- package/dist/Filter.types.d.ts +4 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.9.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.9.1...@synerise/ds-filter@0.9.2) (2022-06-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **filter:** adds ability to override default translation ([ea9d27c](https://github.com/Synerise/synerise-design/commit/ea9d27c018678539a5b835273b8110175334d51b))
|
|
12
|
+
* **filter:** update text prop types ([663e4f9](https://github.com/Synerise/synerise-design/commit/663e4f9ecd327e5414f8424d43711dc2c3f0c563))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [0.9.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-filter@0.9.0...@synerise/ds-filter@0.9.1) (2022-06-15)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @synerise/ds-filter
|
package/dist/Filter.js
CHANGED
|
@@ -118,14 +118,14 @@ var Filter = function Filter(_ref) {
|
|
|
118
118
|
id: 'DS.STEP-CARD.DUPLICATE'
|
|
119
119
|
})
|
|
120
120
|
}, texts == null ? void 0 : texts.step),
|
|
121
|
-
placeholder: {
|
|
121
|
+
placeholder: _objectSpread({
|
|
122
122
|
chooseCondition: formatMessage({
|
|
123
123
|
id: 'DS.PLACEHOLDER.CHOOSE-CONDITION'
|
|
124
124
|
}),
|
|
125
125
|
getPreview: formatMessage({
|
|
126
126
|
id: 'DS.PLACEHOLDER.GET-PREVIEW'
|
|
127
127
|
})
|
|
128
|
-
}
|
|
128
|
+
}, texts == null ? void 0 : texts.placeholder)
|
|
129
129
|
});
|
|
130
130
|
}, [formatMessage, texts]);
|
|
131
131
|
var getContextTypeTexts = React.useCallback(function (expression) {
|
package/dist/Filter.types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-filter",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
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": "ba00650b327ad60ca34761d45e404695d0666b7f"
|
|
47
47
|
}
|