@synerise/ds-tabs 0.14.10 → 0.15.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/Tabs.js +1 -0
- package/package.json +5 -5
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.15.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-tabs@0.14.10...@synerise/ds-tabs@0.15.0) (2024-07-31)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **storybook7:** added tags stories ([2574ff8](https://github.com/synerise/synerise-design/commit/2574ff8d4cccb85c25752b0d3a32818d2910b6e4))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.14.10](https://github.com/synerise/synerise-design/compare/@synerise/ds-tabs@0.14.9...@synerise/ds-tabs@0.14.10) (2024-07-26)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-tabs
|
package/dist/Tabs.js
CHANGED
|
@@ -185,6 +185,7 @@ var Tabs = function Tabs(_ref) {
|
|
|
185
185
|
var renderHelpers = useMemo(function () {
|
|
186
186
|
return /*#__PURE__*/React.createElement(S.HiddenTabs, {
|
|
187
187
|
ref: helperContainerRef,
|
|
188
|
+
"data-testid": "ds-tabs-hidden-helper",
|
|
188
189
|
className: "ds-hidden-helper"
|
|
189
190
|
}, items.map(function (tab, index) {
|
|
190
191
|
var key = "tabs-tab-helper-" + index;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-tabs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "Tabs UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@synerise/ds-button": "^0.21.4",
|
|
37
|
-
"@synerise/ds-dropdown": "^0.18.
|
|
37
|
+
"@synerise/ds-dropdown": "^0.18.7",
|
|
38
38
|
"@synerise/ds-icon": "^0.64.1",
|
|
39
|
-
"@synerise/ds-menu": "^0.19.
|
|
39
|
+
"@synerise/ds-menu": "^0.19.7",
|
|
40
40
|
"@synerise/ds-typography": "^0.15.1",
|
|
41
|
-
"@synerise/ds-utils": "^0.28.
|
|
41
|
+
"@synerise/ds-utils": "^0.28.1",
|
|
42
42
|
"classnames": "2.3.2",
|
|
43
43
|
"lodash": "4.17.15"
|
|
44
44
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"react": ">=16.9.0 <= 17.0.2",
|
|
49
49
|
"styled-components": "5.0.1"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "9780605713f2ee1cb62d79a8ab027058117c4e4a"
|
|
52
52
|
}
|