@synerise/ds-factors 0.14.4 → 0.14.7
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 +28 -0
- package/dist/FactorValue/Date/Date.js +1 -1
- package/dist/Factors.types.d.ts +1 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
|
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.7](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.14.6...@synerise/ds-factors@0.14.7) (2022-06-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-factors
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.14.6](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.14.5...@synerise/ds-factors@0.14.6) (2022-06-23)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-factors
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [0.14.5](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.14.4...@synerise/ds-factors@0.14.5) (2022-06-17)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **factors:** disabled factor options ([1f805b8](https://github.com/Synerise/synerise-design/commit/1f805b8152c24a669d32e8a3b43f844e75e21db8))
|
|
28
|
+
* **factors:** fixes welders-3765 ([1e1e8f4](https://github.com/Synerise/synerise-design/commit/1e1e8f41d2c36a59e8b1f86a34def74c5f3f457d))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
6
34
|
## [0.14.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.14.3...@synerise/ds-factors@0.14.4) (2022-06-15)
|
|
7
35
|
|
|
8
36
|
|
|
@@ -23,7 +23,7 @@ var DateInput = function DateInput(_ref) {
|
|
|
23
23
|
onClear: handleClear,
|
|
24
24
|
onApply: changeHandler,
|
|
25
25
|
onValueChange: changeHandler,
|
|
26
|
-
value: value,
|
|
26
|
+
value: value ? new Date(String(value)) : undefined,
|
|
27
27
|
showTime: true,
|
|
28
28
|
useStartOfDay: true,
|
|
29
29
|
texts: texts.datePicker,
|
package/dist/Factors.types.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export declare type ParameterItem = {
|
|
|
30
30
|
name: string;
|
|
31
31
|
groupId: React.ReactText;
|
|
32
32
|
icon?: React.ReactNode;
|
|
33
|
+
disabled?: boolean;
|
|
33
34
|
};
|
|
34
35
|
export declare type FactorValueType = string | number | Date | undefined | DynamicKeyValueType | FormulaValueType | ParameterValueType | Partial<DateFilter>;
|
|
35
36
|
export declare type SelectedFactorType = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-factors",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.7",
|
|
4
4
|
"description": "Factors UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -35,17 +35,17 @@
|
|
|
35
35
|
"@synerise/ds-autocomplete": "^0.4.12",
|
|
36
36
|
"@synerise/ds-badge": "^0.6.4",
|
|
37
37
|
"@synerise/ds-button": "^0.17.2",
|
|
38
|
-
"@synerise/ds-date-picker": "^0.6.
|
|
39
|
-
"@synerise/ds-date-range-picker": "^0.
|
|
38
|
+
"@synerise/ds-date-picker": "^0.6.20",
|
|
39
|
+
"@synerise/ds-date-range-picker": "^0.13.1",
|
|
40
40
|
"@synerise/ds-dropdown": "^0.17.18",
|
|
41
41
|
"@synerise/ds-icon": "^0.49.0",
|
|
42
|
-
"@synerise/ds-inline-edit": "^0.6.
|
|
42
|
+
"@synerise/ds-inline-edit": "^0.6.14",
|
|
43
43
|
"@synerise/ds-input": "^0.18.10",
|
|
44
44
|
"@synerise/ds-input-number": "^0.6.11",
|
|
45
|
-
"@synerise/ds-menu": "^0.
|
|
45
|
+
"@synerise/ds-menu": "^0.15.0",
|
|
46
46
|
"@synerise/ds-modal": "^0.15.9",
|
|
47
47
|
"@synerise/ds-result": "^0.6.9",
|
|
48
|
-
"@synerise/ds-tabs": "^0.13.
|
|
48
|
+
"@synerise/ds-tabs": "^0.13.13",
|
|
49
49
|
"@synerise/ds-typography": "^0.12.2",
|
|
50
50
|
"@synerise/ds-utils": "^0.19.0",
|
|
51
51
|
"classnames": "^2.2.6",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"@synerise/ds-core": "*",
|
|
56
56
|
"react": ">=16.9.0 < 17.0.0"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "3df224bc0e56a55beaa9df7e0dcfbda4c04631ad"
|
|
59
59
|
}
|