@synerise/ds-popconfirm 0.10.11 → 0.10.13
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/Popconfirm.styles.js +1 -1
- package/package.json +3 -3
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.13](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@0.10.12...@synerise/ds-popconfirm@0.10.13) (2023-08-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **popconfirm:** tweaks to title styles ([629be2c](https://github.com/Synerise/synerise-design/commit/629be2c0bb8fd1765c134c59757f85995a309215))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.10.12](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@0.10.11...@synerise/ds-popconfirm@0.10.12) (2023-08-20)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @synerise/ds-popconfirm
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.10.11](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@0.10.10...@synerise/ds-popconfirm@0.10.11) (2023-07-26)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @synerise/ds-popconfirm
|
|
@@ -30,7 +30,7 @@ export var PopconfirmContent = styled.div.withConfig({
|
|
|
30
30
|
export var PopconfirmTitle = styled.div.withConfig({
|
|
31
31
|
displayName: "Popconfirmstyles__PopconfirmTitle",
|
|
32
32
|
componentId: "sc-19dzptq-2"
|
|
33
|
-
})(["font-size:14px;line-height:1.43;color:", ";font-weight:500;padding-top:2px;
|
|
33
|
+
})(["font-size:14px;line-height:1.43;color:", ";font-weight:500;padding-top:2px;text-overflow:ellipsis;overflow:hidden;"], function (props) {
|
|
34
34
|
return props.theme.palette['grey-800'];
|
|
35
35
|
});
|
|
36
36
|
export var PopconfirmButton = styled(Button).withConfig({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-popconfirm",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.13",
|
|
4
4
|
"description": "Popconfirm UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
],
|
|
33
33
|
"types": "dist/index.d.ts",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-button": "^0.
|
|
35
|
+
"@synerise/ds-button": "^0.18.0",
|
|
36
36
|
"@synerise/ds-icon": "^0.58.0",
|
|
37
37
|
"@synerise/ds-typography": "^0.12.8",
|
|
38
38
|
"@synerise/ds-utils": "^0.19.0"
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@synerise/ds-utils": "^0.11.5"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "1f03e5affd1f22c9d3c7b4f1401887263d32d3d5"
|
|
49
49
|
}
|