@synerise/ds-information-card 0.3.12 → 0.3.14
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/InformationCard.styles.js +1 -1
- package/package.json +6 -6
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.3.14](https://github.com/Synerise/synerise-design/compare/@synerise/ds-information-card@0.3.13...@synerise/ds-information-card@0.3.14) (2023-05-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-information-card
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.3.13](https://github.com/Synerise/synerise-design/compare/@synerise/ds-information-card@0.3.12...@synerise/ds-information-card@0.3.13) (2023-04-26)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **information-card:** sets correct width on wrapper ([5f2da0d](https://github.com/Synerise/synerise-design/commit/5f2da0dcdfe78784303d82b1208bea24e8a67f62))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.3.12](https://github.com/Synerise/synerise-design/compare/@synerise/ds-information-card@0.3.11...@synerise/ds-information-card@0.3.12) (2023-04-19)
|
|
7
26
|
|
|
8
27
|
|
|
@@ -25,7 +25,7 @@ export var ActionButtonContainer = styled.div.withConfig({
|
|
|
25
25
|
export var InfoCardWrapper = styled.div.withConfig({
|
|
26
26
|
displayName: "InformationCardstyles__InfoCardWrapper",
|
|
27
27
|
componentId: "zxu5qa-3"
|
|
28
|
-
})(["margin-left:", ";", "{background-color:white;margin-bottom:1px;font-weight:400;
|
|
28
|
+
})(["margin-left:", ";width:294px;", "{background-color:white;margin-bottom:1px;font-weight:400;padding:16px 16px 8px 16px;border-radius:3px;box-shadow:", ";}", "{padding-top:0;}", "{padding:0 0 1px 0;margin-bottom:8px;}", "{align-self:center;margin-left:10px;margin-right:10px;}", "{margin:0;}", "", "{margin-bottom:0;font-size:14px;}", "{width:32px;height:32px;}.ds-button{background:transparent;}.btn-focus,.btn-focus:hover{box-shadow:unset;}"], function (props) {
|
|
29
29
|
return props.asTooltip ? '0' : '8px';
|
|
30
30
|
}, CardContainer, function (props) {
|
|
31
31
|
return props.asTooltip ? 'unset' : '0 16px 32px 0 rgba(35, 41, 54, 0.1)';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-information-card",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.14",
|
|
4
4
|
"description": "InformationCard UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@synerise/ds-alert": "^0.4.4",
|
|
37
|
-
"@synerise/ds-avatar": "^0.14.
|
|
38
|
-
"@synerise/ds-card": "^0.14.
|
|
39
|
-
"@synerise/ds-description": "^0.3.
|
|
40
|
-
"@synerise/ds-subtle-form": "^0.9.
|
|
37
|
+
"@synerise/ds-avatar": "^0.14.65",
|
|
38
|
+
"@synerise/ds-card": "^0.14.3",
|
|
39
|
+
"@synerise/ds-description": "^0.3.65",
|
|
40
|
+
"@synerise/ds-subtle-form": "^0.9.54",
|
|
41
41
|
"@synerise/ds-typography": "^0.12.7"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@synerise/ds-core": "^0.31.2",
|
|
45
45
|
"react": ">=16.9.0 < 17.0.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "5808615a55859820c255189f77977725ec79cd7d"
|
|
48
48
|
}
|