@synerise/ds-operators 0.10.74 → 0.10.75
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 +8 -0
- package/dist/OperatorsDropdown/OperatorsDropdown.d.ts +2 -1
- package/dist/OperatorsDropdown/OperatorsDropdownGroupName.d.ts +2 -1
- package/dist/OperatorsDropdown/OperatorsDropdownItem.d.ts +2 -1
- package/dist/__specs__/data/Operators.data.d.ts +5 -4
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.10.75](https://github.com/Synerise/synerise-design/compare/@synerise/ds-operators@0.10.74...@synerise/ds-operators@0.10.75) (2024-05-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-operators
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.10.74](https://github.com/Synerise/synerise-design/compare/@synerise/ds-operators@0.10.73...@synerise/ds-operators@0.10.74) (2024-05-23)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-operators
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { OperatorsDropdownProps } from '../Operator.types';
|
|
2
|
-
declare const OperatorsDropdown: ({ texts, setSelected, groups, items, setDropdownVisible, value, }: OperatorsDropdownProps) => JSX.Element;
|
|
3
|
+
declare const OperatorsDropdown: ({ texts, setSelected, groups, items, setDropdownVisible, value, }: OperatorsDropdownProps) => React.JSX.Element;
|
|
3
4
|
export default OperatorsDropdown;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { OperatorsGroup, OperatorsItem } from '../Operator.types';
|
|
2
3
|
type OperatorsDropdownItemProps = {
|
|
3
4
|
item: OperatorsItem | OperatorsGroup;
|
|
@@ -8,5 +9,5 @@ type OperatorsDropdownItemProps = {
|
|
|
8
9
|
selected?: boolean;
|
|
9
10
|
className: string;
|
|
10
11
|
};
|
|
11
|
-
declare const OperatorsDropdownItem: ({ item, clearSearch, searchQuery, hideDropdown, select, selected, className, }: OperatorsDropdownItemProps) => JSX.Element;
|
|
12
|
+
declare const OperatorsDropdownItem: ({ item, clearSearch, searchQuery, hideDropdown, select, selected, className, }: OperatorsDropdownItemProps) => React.JSX.Element;
|
|
12
13
|
export default OperatorsDropdownItem;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
export declare const OPERATORS_TEXTS: {
|
|
2
3
|
buttonLabel: string;
|
|
3
4
|
searchPlaceholder: string;
|
|
@@ -8,7 +9,7 @@ export declare const OPERATORS_GROUPS: ({
|
|
|
8
9
|
name: string;
|
|
9
10
|
temsType: null;
|
|
10
11
|
tooltip: string;
|
|
11
|
-
icon: JSX.Element;
|
|
12
|
+
icon: React.JSX.Element;
|
|
12
13
|
defaultGroup: boolean;
|
|
13
14
|
itemsType?: undefined;
|
|
14
15
|
} | {
|
|
@@ -16,7 +17,7 @@ export declare const OPERATORS_GROUPS: ({
|
|
|
16
17
|
name: string;
|
|
17
18
|
itemsType: null;
|
|
18
19
|
tooltip: string;
|
|
19
|
-
icon: JSX.Element;
|
|
20
|
+
icon: React.JSX.Element;
|
|
20
21
|
defaultGroup: boolean;
|
|
21
22
|
temsType?: undefined;
|
|
22
23
|
})[];
|
|
@@ -27,7 +28,7 @@ export declare const OPERATORS_ITEMS: ({
|
|
|
27
28
|
name: string;
|
|
28
29
|
groupId: string;
|
|
29
30
|
group: string;
|
|
30
|
-
icon: JSX.Element;
|
|
31
|
+
icon: React.JSX.Element;
|
|
31
32
|
groupName?: undefined;
|
|
32
33
|
} | {
|
|
33
34
|
id: string;
|
|
@@ -36,6 +37,6 @@ export declare const OPERATORS_ITEMS: ({
|
|
|
36
37
|
name: string;
|
|
37
38
|
groupId: string;
|
|
38
39
|
group: string;
|
|
39
|
-
icon: JSX.Element;
|
|
40
|
+
icon: React.JSX.Element;
|
|
40
41
|
groupName: string;
|
|
41
42
|
})[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-operators",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.75",
|
|
4
4
|
"description": "Operators UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-button": "^0.20.
|
|
37
|
-
"@synerise/ds-dropdown": "^0.
|
|
38
|
-
"@synerise/ds-icon": "^0.
|
|
39
|
-
"@synerise/ds-menu": "^0.
|
|
40
|
-
"@synerise/ds-result": "^0.6.
|
|
41
|
-
"@synerise/ds-scrollbar": "^0.
|
|
42
|
-
"@synerise/ds-tabs": "^0.14.
|
|
43
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
44
|
-
"@synerise/ds-utils": "^0.
|
|
36
|
+
"@synerise/ds-button": "^0.20.1",
|
|
37
|
+
"@synerise/ds-dropdown": "^0.18.0",
|
|
38
|
+
"@synerise/ds-icon": "^0.62.0",
|
|
39
|
+
"@synerise/ds-menu": "^0.19.0",
|
|
40
|
+
"@synerise/ds-result": "^0.6.56",
|
|
41
|
+
"@synerise/ds-scrollbar": "^0.11.0",
|
|
42
|
+
"@synerise/ds-tabs": "^0.14.3",
|
|
43
|
+
"@synerise/ds-tooltip": "^0.14.29",
|
|
44
|
+
"@synerise/ds-utils": "^0.27.0",
|
|
45
45
|
"react-intl": "3.12.0",
|
|
46
46
|
"uuid": "^8.3.2"
|
|
47
47
|
},
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"@testing-library/react": "10.0.1",
|
|
56
56
|
"@testing-library/user-event": "^10.3.1"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "6bd94c78745df68ee3b853120a863ab24fc233ef"
|
|
59
59
|
}
|