@synerise/ds-tags 0.8.42 → 0.8.44
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/Tag/Tag.styles.js +2 -2
- package/package.json +10 -10
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.8.44](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@0.8.43...@synerise/ds-tags@0.8.44) (2024-05-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-tags
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.8.43](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@0.8.42...@synerise/ds-tags@0.8.43) (2024-05-10)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **tags:** ellipsis for name in tag ([7103a42](https://github.com/Synerise/synerise-design/commit/7103a42d71534aeab49be916e24d3a4b85066aaf))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.8.42](https://github.com/Synerise/synerise-design/compare/@synerise/ds-tags@0.8.41...@synerise/ds-tags@0.8.42) (2024-05-08)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-tags
|
package/dist/Tag/Tag.styles.js
CHANGED
|
@@ -44,7 +44,7 @@ var addonStyles = function addonStyles(props) {
|
|
|
44
44
|
export var TagName = styled.span.withConfig({
|
|
45
45
|
displayName: "Tagstyles__TagName",
|
|
46
46
|
componentId: "h010xe-0"
|
|
47
|
-
})(["
|
|
47
|
+
})(["white-space:nowrap;overflow:hidden;text-overflow:ellipsis;"]);
|
|
48
48
|
export var RemoveButton = styled.div.withConfig({
|
|
49
49
|
displayName: "Tagstyles__RemoveButton",
|
|
50
50
|
componentId: "h010xe-1"
|
|
@@ -98,7 +98,7 @@ var insertShapeStyles = function insertShapeStyles(props) {
|
|
|
98
98
|
export var Content = styled.div.withConfig({
|
|
99
99
|
displayName: "Tagstyles__Content",
|
|
100
100
|
componentId: "h010xe-2"
|
|
101
|
-
})(["position:relative;display:flex;align-items:center;flex-grow:0;flex-shrink:1;", ""], function (props) {
|
|
101
|
+
})(["position:relative;display:flex;align-items:center;flex-grow:0;flex-shrink:1;max-width:100%;", ""], function (props) {
|
|
102
102
|
return !!props.iconHover && "\n &&& {\n color:" + props.theme.palette['red-600'] + ";\n }\n";
|
|
103
103
|
});
|
|
104
104
|
export var PrefixWrapper = styled.div.withConfig({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-tags",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.44",
|
|
4
4
|
"description": "Tags UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-button": "^0.
|
|
37
|
-
"@synerise/ds-dropdown": "^0.17.
|
|
38
|
-
"@synerise/ds-icon": "^0.
|
|
39
|
-
"@synerise/ds-result": "^0.6.
|
|
40
|
-
"@synerise/ds-scrollbar": "^0.10.
|
|
41
|
-
"@synerise/ds-search-bar": "^0.6.
|
|
42
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
36
|
+
"@synerise/ds-button": "^0.20.0",
|
|
37
|
+
"@synerise/ds-dropdown": "^0.17.110",
|
|
38
|
+
"@synerise/ds-icon": "^0.61.0",
|
|
39
|
+
"@synerise/ds-result": "^0.6.55",
|
|
40
|
+
"@synerise/ds-scrollbar": "^0.10.5",
|
|
41
|
+
"@synerise/ds-search-bar": "^0.6.73",
|
|
42
|
+
"@synerise/ds-tooltip": "^0.14.28"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@synerise/ds-core": "*",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"styled-components": "5.0.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@synerise/ds-utils": "^0.26.
|
|
50
|
+
"@synerise/ds-utils": "^0.26.6",
|
|
51
51
|
"@testing-library/react": "10.0.1"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "fc089bbf34c691a313b3fa648851d7831a23e3d0"
|
|
54
54
|
}
|