@synerise/ds-operators 0.10.77 → 0.11.0
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
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.11.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-operators@0.10.78...@synerise/ds-operators@0.11.0) (2024-07-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **operators:** used list-item instead of menu ([c9f07bc](https://github.com/Synerise/synerise-design/commit/c9f07bc6f4932b3fb8dfd944b6ceaaaa16359ddc))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.10.78](https://github.com/Synerise/synerise-design/compare/@synerise/ds-operators@0.10.77...@synerise/ds-operators@0.10.78) (2024-06-27)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @synerise/ds-operators
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.10.77](https://github.com/Synerise/synerise-design/compare/@synerise/ds-operators@0.10.76...@synerise/ds-operators@0.10.77) (2024-06-21)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-operators
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import Menu from '@synerise/ds-menu';
|
|
2
1
|
export declare const TabsWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
2
|
export declare const ContentPlaceholder: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
|
-
export declare const ItemsList: import("styled-components").StyledComponent<
|
|
3
|
+
export declare const ItemsList: import("styled-components").StyledComponent<"div", any, {
|
|
5
4
|
contentHeight?: number | undefined;
|
|
6
5
|
}, never>;
|
|
7
6
|
export declare const SearchResult: import("styled-components").StyledComponent<"span", any, {}, never>;
|
package/dist/Operators.style.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import styled from 'styled-components';
|
|
2
|
-
import Menu from '@synerise/ds-menu';
|
|
3
2
|
export var TabsWrapper = styled.div.withConfig({
|
|
4
3
|
displayName: "Operatorsstyle__TabsWrapper",
|
|
5
4
|
componentId: "vzf1ol-0"
|
|
@@ -8,10 +7,12 @@ export var ContentPlaceholder = styled.div.withConfig({
|
|
|
8
7
|
displayName: "Operatorsstyle__ContentPlaceholder",
|
|
9
8
|
componentId: "vzf1ol-1"
|
|
10
9
|
})(["height:100px;"]);
|
|
11
|
-
export var ItemsList = styled
|
|
10
|
+
export var ItemsList = styled.div.withConfig({
|
|
12
11
|
displayName: "Operatorsstyle__ItemsList",
|
|
13
12
|
componentId: "vzf1ol-2"
|
|
14
|
-
})(["width:100%;", ""], function (props) {
|
|
13
|
+
})(["width:100%;backgorund:", ";", ""], function (props) {
|
|
14
|
+
return props.theme.palette.white;
|
|
15
|
+
}, function (props) {
|
|
15
16
|
return props.contentHeight !== undefined && "height: " + props.contentHeight + "px;";
|
|
16
17
|
});
|
|
17
18
|
export var SearchResult = styled.span.withConfig({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import Icon, { CheckS } from '@synerise/ds-icon';
|
|
3
|
-
import
|
|
3
|
+
import ListItem from '@synerise/ds-list-item';
|
|
4
4
|
import { theme } from '@synerise/ds-core';
|
|
5
5
|
|
|
6
6
|
var OperatorsDropdownItem = function OperatorsDropdownItem(_ref) {
|
|
@@ -11,8 +11,7 @@ var OperatorsDropdownItem = function OperatorsDropdownItem(_ref) {
|
|
|
11
11
|
select = _ref.select,
|
|
12
12
|
selected = _ref.selected,
|
|
13
13
|
className = _ref.className;
|
|
14
|
-
return /*#__PURE__*/React.createElement(
|
|
15
|
-
// TODO change into listitem
|
|
14
|
+
return /*#__PURE__*/React.createElement(ListItem, {
|
|
16
15
|
className: className,
|
|
17
16
|
key: item.name + item.id,
|
|
18
17
|
prefixel: searchQuery && /*#__PURE__*/React.createElement(Icon, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-operators",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Operators UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-button": "^0.21.
|
|
37
|
-
"@synerise/ds-dropdown": "^0.18.
|
|
38
|
-
"@synerise/ds-icon": "^0.
|
|
39
|
-
"@synerise/ds-
|
|
40
|
-
"@synerise/ds-result": "^0.6.
|
|
41
|
-
"@synerise/ds-scrollbar": "^0.11.
|
|
42
|
-
"@synerise/ds-tabs": "^0.14.
|
|
43
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
36
|
+
"@synerise/ds-button": "^0.21.1",
|
|
37
|
+
"@synerise/ds-dropdown": "^0.18.3",
|
|
38
|
+
"@synerise/ds-icon": "^0.63.0",
|
|
39
|
+
"@synerise/ds-list-item": "^0.3.0",
|
|
40
|
+
"@synerise/ds-result": "^0.6.58",
|
|
41
|
+
"@synerise/ds-scrollbar": "^0.11.2",
|
|
42
|
+
"@synerise/ds-tabs": "^0.14.7",
|
|
43
|
+
"@synerise/ds-tooltip": "^0.14.31",
|
|
44
44
|
"@synerise/ds-utils": "^0.27.0",
|
|
45
45
|
"react-intl": "3.12.0",
|
|
46
46
|
"uuid": "^8.3.2"
|
|
@@ -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": "0692552b018dc9c8042f18c773f88890c9ad3270"
|
|
59
59
|
}
|