@synerise/ds-factors 0.22.23 → 0.22.25
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 +16 -0
- package/dist/FactorValue/DateRange/DateRange.d.ts +2 -1
- package/dist/FactorValue/Formula/Formula.d.ts +2 -1
- package/dist/FactorValue/Parameter/Parameter.d.ts +2 -1
- package/dist/FactorValue/Text/Text.d.ts +2 -1
- package/dist/Factors.d.ts +15 -15
- package/dist/style/Factors.style.d.ts +2 -1
- package/package.json +21 -21
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.22.25](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.22.24...@synerise/ds-factors@0.22.25) (2024-05-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-factors
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.22.24](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.22.23...@synerise/ds-factors@0.22.24) (2024-05-24)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-factors
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [0.22.23](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.22.22...@synerise/ds-factors@0.22.23) (2024-05-23)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @synerise/ds-factors
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { InputProps } from '../../Factors.types';
|
|
2
|
-
declare const DateRangeInput: ({ getPopupContainerOverride, value, onChange, error, texts, onDeactivate, readOnly, }: InputProps) => JSX.Element;
|
|
3
|
+
declare const DateRangeInput: ({ getPopupContainerOverride, value, onChange, error, texts, onDeactivate, readOnly, }: InputProps) => React.JSX.Element;
|
|
3
4
|
export default DateRangeInput;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { InputProps } from '../../Factors.types';
|
|
2
|
-
declare const FormulaInput: ({ value, error, onChange, withoutTypeSelector, texts, formulaEditor, readOnly, }: InputProps) => JSX.Element;
|
|
3
|
+
declare const FormulaInput: ({ value, error, onChange, withoutTypeSelector, texts, formulaEditor, readOnly, }: InputProps) => React.JSX.Element;
|
|
3
4
|
export default FormulaInput;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { InputProps } from '../../Factors.types';
|
|
2
|
-
declare const ParameterInput: ({ value, onChange, onParamsClick, parameters, texts, opened, preventAutoloadData, getPopupContainerOverride, onActivate, onDeactivate, readOnly, error, getMenuEntryProps, }: InputProps) => JSX.Element;
|
|
3
|
+
declare const ParameterInput: ({ value, onChange, onParamsClick, parameters, texts, opened, preventAutoloadData, getPopupContainerOverride, onActivate, onDeactivate, readOnly, error, getMenuEntryProps, }: InputProps) => React.JSX.Element;
|
|
3
4
|
export default ParameterInput;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { InputProps } from '../../Factors.types';
|
|
2
|
-
declare const TextInput: ({ value, onChange, texts, textType, autocompleteText, factorType, opened, onDeactivate, error, inputProps, getPopupContainerOverride, readOnly, }: InputProps) => JSX.Element;
|
|
3
|
+
declare const TextInput: ({ value, onChange, texts, textType, autocompleteText, factorType, opened, onDeactivate, error, inputProps, getPopupContainerOverride, readOnly, }: InputProps) => React.JSX.Element;
|
|
3
4
|
export default TextInput;
|
package/dist/Factors.d.ts
CHANGED
|
@@ -2,49 +2,49 @@ import * as React from 'react';
|
|
|
2
2
|
import { FactorsProps } from './Factors.types';
|
|
3
3
|
export declare const factorTypes: {
|
|
4
4
|
text: {
|
|
5
|
-
icon: JSX.Element;
|
|
5
|
+
icon: React.JSX.Element;
|
|
6
6
|
name: string;
|
|
7
|
-
input: ({ value, onChange, texts, textType, autocompleteText, factorType, opened, onDeactivate, error, inputProps, getPopupContainerOverride, readOnly, }: import("./Factors.types").InputProps) => JSX.Element;
|
|
7
|
+
input: ({ value, onChange, texts, textType, autocompleteText, factorType, opened, onDeactivate, error, inputProps, getPopupContainerOverride, readOnly, }: import("./Factors.types").InputProps) => React.JSX.Element;
|
|
8
8
|
};
|
|
9
9
|
number: {
|
|
10
|
-
icon: JSX.Element;
|
|
10
|
+
icon: React.JSX.Element;
|
|
11
11
|
name: string;
|
|
12
12
|
input: React.FC<import("./Factors.types").InputProps>;
|
|
13
13
|
};
|
|
14
14
|
parameter: {
|
|
15
|
-
icon: JSX.Element;
|
|
15
|
+
icon: React.JSX.Element;
|
|
16
16
|
name: string;
|
|
17
|
-
input: ({ value, onChange, onParamsClick, parameters, texts, opened, preventAutoloadData, getPopupContainerOverride, onActivate, onDeactivate, readOnly, error, getMenuEntryProps, }: import("./Factors.types").InputProps) => JSX.Element;
|
|
17
|
+
input: ({ value, onChange, onParamsClick, parameters, texts, opened, preventAutoloadData, getPopupContainerOverride, onActivate, onDeactivate, readOnly, error, getMenuEntryProps, }: import("./Factors.types").InputProps) => React.JSX.Element;
|
|
18
18
|
};
|
|
19
19
|
contextParameter: {
|
|
20
|
-
icon: JSX.Element;
|
|
20
|
+
icon: React.JSX.Element;
|
|
21
21
|
name: string;
|
|
22
|
-
input: ({ value, onChange, onParamsClick, parameters, texts, opened, preventAutoloadData, getPopupContainerOverride, onActivate, onDeactivate, readOnly, error, getMenuEntryProps, }: import("./Factors.types").InputProps) => JSX.Element;
|
|
22
|
+
input: ({ value, onChange, onParamsClick, parameters, texts, opened, preventAutoloadData, getPopupContainerOverride, onActivate, onDeactivate, readOnly, error, getMenuEntryProps, }: import("./Factors.types").InputProps) => React.JSX.Element;
|
|
23
23
|
};
|
|
24
24
|
dynamicKey: {
|
|
25
|
-
icon: JSX.Element;
|
|
25
|
+
icon: React.JSX.Element;
|
|
26
26
|
name: string;
|
|
27
27
|
input: React.FC<import("./Factors.types").InputProps>;
|
|
28
28
|
};
|
|
29
29
|
formula: {
|
|
30
|
-
icon: JSX.Element;
|
|
30
|
+
icon: React.JSX.Element;
|
|
31
31
|
name: string;
|
|
32
|
-
input: ({ value, error, onChange, withoutTypeSelector, texts, formulaEditor, readOnly, }: import("./Factors.types").InputProps) => JSX.Element;
|
|
32
|
+
input: ({ value, error, onChange, withoutTypeSelector, texts, formulaEditor, readOnly, }: import("./Factors.types").InputProps) => React.JSX.Element;
|
|
33
33
|
};
|
|
34
34
|
array: {
|
|
35
|
-
icon: JSX.Element;
|
|
35
|
+
icon: React.JSX.Element;
|
|
36
36
|
name: string;
|
|
37
|
-
input: ({ value, onChange, texts, textType, autocompleteText, factorType, opened, onDeactivate, error, inputProps, getPopupContainerOverride, readOnly, }: import("./Factors.types").InputProps) => JSX.Element;
|
|
37
|
+
input: ({ value, onChange, texts, textType, autocompleteText, factorType, opened, onDeactivate, error, inputProps, getPopupContainerOverride, readOnly, }: import("./Factors.types").InputProps) => React.JSX.Element;
|
|
38
38
|
};
|
|
39
39
|
date: {
|
|
40
|
-
icon: JSX.Element;
|
|
40
|
+
icon: React.JSX.Element;
|
|
41
41
|
name: string;
|
|
42
42
|
input: React.FC<import("./Factors.types").InputProps>;
|
|
43
43
|
};
|
|
44
44
|
dateRange: {
|
|
45
|
-
icon: JSX.Element;
|
|
45
|
+
icon: React.JSX.Element;
|
|
46
46
|
name: string;
|
|
47
|
-
input: ({ getPopupContainerOverride, value, onChange, error, texts, onDeactivate, readOnly, }: import("./Factors.types").InputProps) => JSX.Element;
|
|
47
|
+
input: ({ getPopupContainerOverride, value, onChange, error, texts, onDeactivate, readOnly, }: import("./Factors.types").InputProps) => React.JSX.Element;
|
|
48
48
|
};
|
|
49
49
|
};
|
|
50
50
|
declare const Factors: React.FC<FactorsProps>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const Group: import("styled-components").StyledComponent<({ children, label, errors, description, resetMargin, tooltip, ...antdInputGroupProps }: import("@synerise/ds-input/dist/InputGroup.types").Props) => import("react").JSX.Element, any, {
|
|
2
3
|
withoutTypeSelector: boolean;
|
|
3
4
|
}, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-factors",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.25",
|
|
4
4
|
"description": "Factors UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,25 +33,25 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-autocomplete": "^0.8.
|
|
37
|
-
"@synerise/ds-badge": "^0.7.
|
|
38
|
-
"@synerise/ds-button": "^0.20.
|
|
39
|
-
"@synerise/ds-date-picker": "^0.11.
|
|
40
|
-
"@synerise/ds-date-range-picker": "^0.28.
|
|
41
|
-
"@synerise/ds-dropdown": "^0.
|
|
42
|
-
"@synerise/ds-icon": "^0.
|
|
43
|
-
"@synerise/ds-information-card": "^0.4.
|
|
44
|
-
"@synerise/ds-inline-edit": "^0.7.
|
|
45
|
-
"@synerise/ds-input": "^0.21.
|
|
46
|
-
"@synerise/ds-input-number": "^0.9.
|
|
47
|
-
"@synerise/ds-menu": "^0.
|
|
48
|
-
"@synerise/ds-modal": "^0.17.
|
|
49
|
-
"@synerise/ds-result": "^0.6.
|
|
50
|
-
"@synerise/ds-scrollbar": "^0.
|
|
51
|
-
"@synerise/ds-skeleton": "^0.6.
|
|
52
|
-
"@synerise/ds-tabs": "^0.14.
|
|
53
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
54
|
-
"@synerise/ds-utils": "^0.
|
|
36
|
+
"@synerise/ds-autocomplete": "^0.8.4",
|
|
37
|
+
"@synerise/ds-badge": "^0.7.1",
|
|
38
|
+
"@synerise/ds-button": "^0.20.1",
|
|
39
|
+
"@synerise/ds-date-picker": "^0.11.2",
|
|
40
|
+
"@synerise/ds-date-range-picker": "^0.28.4",
|
|
41
|
+
"@synerise/ds-dropdown": "^0.18.0",
|
|
42
|
+
"@synerise/ds-icon": "^0.62.0",
|
|
43
|
+
"@synerise/ds-information-card": "^0.4.6",
|
|
44
|
+
"@synerise/ds-inline-edit": "^0.7.9",
|
|
45
|
+
"@synerise/ds-input": "^0.21.5",
|
|
46
|
+
"@synerise/ds-input-number": "^0.9.19",
|
|
47
|
+
"@synerise/ds-menu": "^0.19.0",
|
|
48
|
+
"@synerise/ds-modal": "^0.17.30",
|
|
49
|
+
"@synerise/ds-result": "^0.6.56",
|
|
50
|
+
"@synerise/ds-scrollbar": "^0.11.0",
|
|
51
|
+
"@synerise/ds-skeleton": "^0.6.1",
|
|
52
|
+
"@synerise/ds-tabs": "^0.14.3",
|
|
53
|
+
"@synerise/ds-tooltip": "^0.14.29",
|
|
54
|
+
"@synerise/ds-utils": "^0.27.0",
|
|
55
55
|
"lodash": "^4.17.19",
|
|
56
56
|
"react-intl": "3.12.0",
|
|
57
57
|
"react-window": "1.8.5",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"@testing-library/react": "10.0.1",
|
|
68
68
|
"@testing-library/user-event": "^10.3.1"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "6bd94c78745df68ee3b853120a863ab24fc233ef"
|
|
71
71
|
}
|