@synerise/ds-core 0.33.0 → 0.34.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 +33 -0
- package/dist/i18n/en.json +17 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,39 @@
|
|
|
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.34.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.34.1...@synerise/ds-core@0.34.2) (2022-07-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **table:** fixes i18n in row selection component ([0e73b64](https://github.com/synerise/synerise-design/commit/0e73b644740c444b0115d2a6da040874883650fb))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.34.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.34.0...@synerise/ds-core@0.34.1) (2022-07-06)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **factors:** fixes factor types i18n ([5963bcf](https://github.com/synerise/synerise-design/commit/5963bcfdf070c152e02868144996160f438f36a1))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [0.34.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.33.0...@synerise/ds-core@0.34.0) (2022-04-29)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **condition:** clearing active step on deactivating inner components ([ad45310](https://github.com/synerise/synerise-design/commit/ad45310cde108e40b2b88c0a88bf801d679056db))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
6
39
|
# [0.33.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@0.32.1...@synerise/ds-core@0.33.0) (2022-04-05)
|
|
7
40
|
|
|
8
41
|
|
package/dist/i18n/en.json
CHANGED
|
@@ -27,6 +27,17 @@
|
|
|
27
27
|
"DYNAMIC_KEY": {
|
|
28
28
|
"VALUE_PLACEHOLDER": "Value",
|
|
29
29
|
"KEY_PLACEHOLDER": "Key"
|
|
30
|
+
},
|
|
31
|
+
"FACTOR_TYPES": {
|
|
32
|
+
"TEXT": "Text",
|
|
33
|
+
"NUMBER": "Number",
|
|
34
|
+
"ARRAY": "Array",
|
|
35
|
+
"PARAMETER": "Parameter",
|
|
36
|
+
"CONTEXT_PARAMETER": "Context parameter",
|
|
37
|
+
"DATE": "Date",
|
|
38
|
+
"DATE_RANGE": "Date range",
|
|
39
|
+
"DYNAMIC_KEY": "Dynamic key",
|
|
40
|
+
"FORMULA": "Formula"
|
|
30
41
|
}
|
|
31
42
|
},
|
|
32
43
|
"OPERATORS": {
|
|
@@ -141,7 +152,10 @@
|
|
|
141
152
|
"NO_MORE_DATA": "There are no more items to load",
|
|
142
153
|
"LOADING": "Loading more items",
|
|
143
154
|
"BACK_TO_TOP": "Back to top"
|
|
144
|
-
}
|
|
155
|
+
},
|
|
156
|
+
"SELECT_ALL": "Select all",
|
|
157
|
+
"UNSELECT_ALL": "Unselect all",
|
|
158
|
+
"SELECT_INVERT": "Invert selection"
|
|
145
159
|
},
|
|
146
160
|
"ICON-PICKER": {
|
|
147
161
|
"NO-RESULTS": "No results"
|
|
@@ -334,7 +348,8 @@
|
|
|
334
348
|
"DROP-LABEL": "Drop me here",
|
|
335
349
|
"MOVE-TOOLTIP": "Move",
|
|
336
350
|
"DUPLICATE-TOOLTIP": "Duplicate",
|
|
337
|
-
"REMOVE-TOOLTIP": "Delete"
|
|
351
|
+
"REMOVE-TOOLTIP": "Delete",
|
|
352
|
+
"AND-SUFFIX": "and"
|
|
338
353
|
},
|
|
339
354
|
"PLACEHOLDER": {
|
|
340
355
|
"CHOOSE-CONDITION": "Choose type of condition below"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.2",
|
|
4
4
|
"description": "Core Components for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"less-vars-loader": "1.1.0",
|
|
43
43
|
"webpack": "4.42.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "e28fd3bb9b226dbbddf22e7aee71bca89db58c4c"
|
|
46
46
|
}
|