@synerise/ds-information-card 2.0.7 → 2.0.9
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 +22 -0
- package/dist/InformationCard.styles.js +1 -1
- package/package.json +21 -21
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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
|
+
## [2.0.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-information-card@2.0.8...@synerise/ds-information-card@2.0.9) (2026-09-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **information-card:** keep background on buttons inside the card ([87240f6](https://github.com/Synerise/synerise-design/commit/87240f63f9c9778a833eaf56e1fc138294b4f723))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [2.0.8](https://github.com/Synerise/synerise-design/compare/@synerise/ds-information-card@2.0.7...@synerise/ds-information-card@2.0.8) (2026-09-22)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **core:** move test helpers to a ./testing subpath export ([b38cd82](https://github.com/Synerise/synerise-design/commit/b38cd82c956111d2331d5c1e0efd1935366f1139))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [2.0.7](https://github.com/Synerise/synerise-design/compare/@synerise/ds-information-card@2.0.6...@synerise/ds-information-card@2.0.7) (2026-09-18)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @synerise/ds-information-card
|
|
@@ -56,7 +56,7 @@ const InfoCardSlide = /* @__PURE__ */ styled.div.withConfig({
|
|
|
56
56
|
const InfoCardWrapper = /* @__PURE__ */ styled.div.withConfig({
|
|
57
57
|
displayName: "InformationCardstyles__InfoCardWrapper",
|
|
58
58
|
componentId: "sc-zxu5qa-11"
|
|
59
|
-
})(["margin-left:", ";width:", "px;overflow:hidden;color:", ";text-align:left;font-size:13px;", "{width:", "px;display:flex;transition:left 0.3s;position:relative;left:", ";}", "{width:", "px;height:min-content;}overflow-wrap:anywhere;background-color:white;border-radius:3px;box-shadow:", ";", "{font-weight:400;gap:16px;", "}", "{padding-top:0;display:flex;flex-direction:column;gap:8px;}", "{padding:16px 16px 1px 16px;margin-bottom:0;}", "{align-self:center;margin-left:10px;margin-right:10px;}", "{margin:0;gap:2px;}", "{margin:0;}", "", "{margin-bottom:0;font-size:14px;}", "", "{font-size:11px;}
|
|
59
|
+
})(["margin-left:", ";width:", "px;overflow:hidden;color:", ";text-align:left;font-size:13px;", "{width:", "px;display:flex;transition:left 0.3s;position:relative;left:", ";}", "{width:", "px;height:min-content;}overflow-wrap:anywhere;background-color:white;border-radius:3px;box-shadow:", ";", "{font-weight:400;gap:16px;", "}", "{padding-top:0;display:flex;flex-direction:column;gap:8px;}", "{padding:16px 16px 1px 16px;margin-bottom:0;}", "{align-self:center;margin-left:10px;margin-right:10px;}", "{margin:0;gap:2px;}", "{margin:0;}", "", "{margin-bottom:0;font-size:14px;}", "", "{font-size:11px;}"], (props) => props.asTooltip ? "0" : "8px", INFOCARD_WIDTH, (props) => props.theme.palette["grey-600"], InfoCardSlidesWrapper, (props) => props.hasActionsMenu ? INFOCARD_WIDTH * 2 : INFOCARD_WIDTH, (props) => props.isActionsMenuVisible ? `-${INFOCARD_WIDTH}px` : "0", InfoCardSlide, INFOCARD_WIDTH, (props) => props.asTooltip ? "unset" : "0 16px 32px 0 rgba(35, 41, 54, 0.1)", CardStyles.Card.Container, (props) => !props.hasFooter && css(["padding-bottom:8px;margin-bottom:1px;"]), CardStyles.Card.PaddingWrapper, CardStyles.Card.Header, CardStyles.Card.IconContainer, CardStyles.Card.HeaderContent, CardStyles.Card.TitleWrapper, CardStyles.Card.Title, CardStyles.Card.Title, CardStyles.Card.Description, CardStyles.Card.Description);
|
|
60
60
|
const AlertWrapper = /* @__PURE__ */ styled.div.withConfig({
|
|
61
61
|
displayName: "InformationCardstyles__AlertWrapper",
|
|
62
62
|
componentId: "sc-zxu5qa-12"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-information-card",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"description": "InformationCard UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -44,25 +44,25 @@
|
|
|
44
44
|
"types": "dist/index.d.ts",
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@floating-ui/react": "^0.27.16",
|
|
47
|
-
"@synerise/ds-avatar": "^2.0.
|
|
48
|
-
"@synerise/ds-badge": "^2.0.
|
|
49
|
-
"@synerise/ds-button": "^2.
|
|
50
|
-
"@synerise/ds-card": "^2.0.
|
|
51
|
-
"@synerise/ds-copy-icon": "^2.0.
|
|
52
|
-
"@synerise/ds-description": "^2.0.
|
|
53
|
-
"@synerise/ds-divider": "^2.0.
|
|
54
|
-
"@synerise/ds-dropdown": "^2.1.
|
|
55
|
-
"@synerise/ds-icon": "^2.
|
|
56
|
-
"@synerise/ds-inline-alert": "^2.0.
|
|
57
|
-
"@synerise/ds-list-item": "^2.1.
|
|
58
|
-
"@synerise/ds-popover": "^2.0.
|
|
59
|
-
"@synerise/ds-scrollbar": "^2.0.
|
|
60
|
-
"@synerise/ds-skeleton": "^2.0.
|
|
61
|
-
"@synerise/ds-status": "^2.0.
|
|
62
|
-
"@synerise/ds-subtle-form": "^2.1.
|
|
63
|
-
"@synerise/ds-tooltip": "^2.0.
|
|
64
|
-
"@synerise/ds-typography": "^2.0.
|
|
65
|
-
"@synerise/ds-utils": "^2.
|
|
47
|
+
"@synerise/ds-avatar": "^2.0.6",
|
|
48
|
+
"@synerise/ds-badge": "^2.0.6",
|
|
49
|
+
"@synerise/ds-button": "^2.1.1",
|
|
50
|
+
"@synerise/ds-card": "^2.0.6",
|
|
51
|
+
"@synerise/ds-copy-icon": "^2.0.6",
|
|
52
|
+
"@synerise/ds-description": "^2.0.6",
|
|
53
|
+
"@synerise/ds-divider": "^2.0.6",
|
|
54
|
+
"@synerise/ds-dropdown": "^2.1.3",
|
|
55
|
+
"@synerise/ds-icon": "^2.2.0",
|
|
56
|
+
"@synerise/ds-inline-alert": "^2.0.5",
|
|
57
|
+
"@synerise/ds-list-item": "^2.1.3",
|
|
58
|
+
"@synerise/ds-popover": "^2.0.3",
|
|
59
|
+
"@synerise/ds-scrollbar": "^2.0.5",
|
|
60
|
+
"@synerise/ds-skeleton": "^2.0.6",
|
|
61
|
+
"@synerise/ds-status": "^2.0.6",
|
|
62
|
+
"@synerise/ds-subtle-form": "^2.1.4",
|
|
63
|
+
"@synerise/ds-tooltip": "^2.0.6",
|
|
64
|
+
"@synerise/ds-typography": "^2.0.6",
|
|
65
|
+
"@synerise/ds-utils": "^2.2.0",
|
|
66
66
|
"uuid": "^8.3.2"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"styled-components": "^5.3.3",
|
|
73
73
|
"vitest": "4"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "6b725db2b0de1a2dfc6e9a3744f6c2fb2a04cc04"
|
|
76
76
|
}
|