@synerise/ds-operators 0.12.2 → 0.13.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 +11 -0
- package/dist/OperatorsDropdown/OperatorsDropdown.js +2 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.13.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-operators@0.12.2...@synerise/ds-operators@0.13.0) (2024-09-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **tabs:** add tooltip prop ([798cd81](https://github.com/Synerise/synerise-design/commit/798cd819be1b2bd55883302da4cb1290278d1919))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.12.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-operators@0.12.1...@synerise/ds-operators@0.12.2) (2024-09-11)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -143,7 +143,8 @@ var OperatorsDropdown = function OperatorsDropdown(_ref) {
|
|
|
143
143
|
var getTabs = useMemo(function () {
|
|
144
144
|
return (groups == null ? void 0 : groups.map(function (group) {
|
|
145
145
|
return {
|
|
146
|
-
icon: group.icon
|
|
146
|
+
icon: group.icon,
|
|
147
|
+
tooltip: group.tooltip
|
|
147
148
|
};
|
|
148
149
|
})) || [];
|
|
149
150
|
}, [groups]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-operators",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
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.21.
|
|
37
|
-
"@synerise/ds-dropdown": "^0.18.
|
|
38
|
-
"@synerise/ds-icon": "^0.65.
|
|
39
|
-
"@synerise/ds-list-item": "^0.4.
|
|
40
|
-
"@synerise/ds-result": "^0.7.
|
|
41
|
-
"@synerise/ds-scrollbar": "^0.11.
|
|
42
|
-
"@synerise/ds-tabs": "^0.
|
|
43
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
44
|
-
"@synerise/ds-utils": "^0.29.
|
|
36
|
+
"@synerise/ds-button": "^0.21.10",
|
|
37
|
+
"@synerise/ds-dropdown": "^0.18.14",
|
|
38
|
+
"@synerise/ds-icon": "^0.65.5",
|
|
39
|
+
"@synerise/ds-list-item": "^0.4.10",
|
|
40
|
+
"@synerise/ds-result": "^0.7.4",
|
|
41
|
+
"@synerise/ds-scrollbar": "^0.11.10",
|
|
42
|
+
"@synerise/ds-tabs": "^0.16.0",
|
|
43
|
+
"@synerise/ds-tooltip": "^0.14.40",
|
|
44
|
+
"@synerise/ds-utils": "^0.29.2",
|
|
45
45
|
"react-intl": "3.12.0",
|
|
46
46
|
"uuid": "^8.3.2"
|
|
47
47
|
},
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"react": ">=16.9.0 <= 17.0.2",
|
|
51
51
|
"styled-components": "5.0.1"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "6f3231e4a9e0720ffee61b748488cecd590da6e6"
|
|
54
54
|
}
|