@synerise/ds-tags 0.9.5 → 0.10.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 +19 -0
- package/dist/Tags.js +2 -0
- package/dist/index.d.ts +1 -0
- package/package.json +7 -7
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.10.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@0.9.6...@synerise/ds-tags@0.10.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
|
+
|
|
17
|
+
## [0.9.6](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@0.9.5...@synerise/ds-tags@0.9.6) (2024-07-26)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @synerise/ds-tags
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.9.5](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@0.9.4...@synerise/ds-tags@0.9.5) (2024-07-15)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-tags
|
package/dist/Tags.js
CHANGED
|
@@ -117,10 +117,12 @@ var Tags = function Tags(_ref) {
|
|
|
117
117
|
padding: '12px'
|
|
118
118
|
}
|
|
119
119
|
}, isCreatable && /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(S.CreateTagDropdownButton, {
|
|
120
|
+
"data-testid": "ds-tags-create-button",
|
|
120
121
|
type: "ghost",
|
|
121
122
|
onClick: onCreateNewTag,
|
|
122
123
|
marginless: !isSeperated
|
|
123
124
|
}, addIcon, /*#__PURE__*/React.createElement("span", null, texts && texts.createTagButtonLabel), /*#__PURE__*/React.createElement("strong", null, searchQuery)), isSeperated && /*#__PURE__*/React.createElement(S.Seperator, null)), !emptyPool && /*#__PURE__*/React.createElement(S.DropdownTagsContainer, {
|
|
125
|
+
"data-testid": "ds-tags-available-tags",
|
|
124
126
|
isCreatable: !!isCreatable
|
|
125
127
|
}, selectablePool && selectablePool.map(function (tag) {
|
|
126
128
|
return (
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-tags",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Tags UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-button": "^0.21.
|
|
37
|
-
"@synerise/ds-dropdown": "^0.18.
|
|
36
|
+
"@synerise/ds-button": "^0.21.4",
|
|
37
|
+
"@synerise/ds-dropdown": "^0.18.7",
|
|
38
38
|
"@synerise/ds-icon": "^0.64.1",
|
|
39
|
-
"@synerise/ds-result": "^0.6.
|
|
39
|
+
"@synerise/ds-result": "^0.6.61",
|
|
40
40
|
"@synerise/ds-scrollbar": "^0.11.4",
|
|
41
|
-
"@synerise/ds-search-bar": "^0.6.
|
|
42
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
41
|
+
"@synerise/ds-search-bar": "^0.6.82",
|
|
42
|
+
"@synerise/ds-tooltip": "^0.14.34"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@synerise/ds-core": "*",
|
|
46
46
|
"react": ">=16.9.0 <= 17.0.2",
|
|
47
47
|
"styled-components": "5.0.1"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "9780605713f2ee1cb62d79a8ab027058117c4e4a"
|
|
50
50
|
}
|