@synerise/ds-result 1.0.56 → 1.0.58

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 CHANGED
@@ -3,6 +3,16 @@
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
+ ## [1.0.58](https://github.com/Synerise/synerise-design/compare/@synerise/ds-result@1.0.57...@synerise/ds-result@1.0.58) (2026-05-11)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-result
9
+
10
+ ## [1.0.57](https://github.com/Synerise/synerise-design/compare/@synerise/ds-result@1.0.56...@synerise/ds-result@1.0.57) (2026-05-04)
11
+
12
+ ### Bug Fixes
13
+
14
+ - add exports field to all component packages for correct ESM detection ([6eccfde](https://github.com/Synerise/synerise-design/commit/6eccfde8f2dd73c59860793231fbd7bcd61813b4))
15
+
6
16
  ## [1.0.56](https://github.com/Synerise/synerise-design/compare/@synerise/ds-result@1.0.55...@synerise/ds-result@1.0.56) (2026-04-29)
7
17
 
8
18
  **Note:** Version bump only for package @synerise/ds-result
@@ -12,7 +12,7 @@ const Description = /* @__PURE__ */ styled(T.Description).withConfig({
12
12
  const ButtonContainer = /* @__PURE__ */ styled.div.withConfig({
13
13
  displayName: "Resultstyles__ButtonContainer",
14
14
  componentId: "sc-wep21m-2"
15
- })(["text-align:center;width:100%;", "{margin:0 4px;&:first-of-type{margin-left:0;}&:last-of-type{margin-right:0;}}"], ButtonStyles.Button.AntdButton);
15
+ })(["text-align:center;width:100%;", "{margin:0 4px;&:first-of-type{margin-left:0;}&:last-of-type{margin-right:0;}}"], ButtonStyles.Button.StyledButton);
16
16
  const PanelContainer = /* @__PURE__ */ styled.div.withConfig({
17
17
  displayName: "Resultstyles__PanelContainer",
18
18
  componentId: "sc-wep21m-3"
package/package.json CHANGED
@@ -1,10 +1,19 @@
1
1
  {
2
2
  "name": "@synerise/ds-result",
3
- "version": "1.0.56",
3
+ "version": "1.0.58",
4
4
  "description": "Result UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
7
7
  "main": "dist/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ },
14
+ "./dist/*.js": "./dist/*.js",
15
+ "./dist/*": "./dist/*.js"
16
+ },
8
17
  "files": [
9
18
  "/dist",
10
19
  "CHANGELOG.md",
@@ -32,9 +41,9 @@
32
41
  ],
33
42
  "types": "dist/index.d.ts",
34
43
  "dependencies": {
35
- "@synerise/ds-button": "^1.5.25",
36
- "@synerise/ds-icon": "^1.17.2",
37
- "@synerise/ds-typography": "^1.1.20"
44
+ "@synerise/ds-button": "^1.5.27",
45
+ "@synerise/ds-icon": "^1.17.3",
46
+ "@synerise/ds-typography": "^1.1.21"
38
47
  },
39
48
  "peerDependencies": {
40
49
  "@synerise/ds-core": "*",
@@ -42,5 +51,5 @@
42
51
  "styled-components": "^5.3.3",
43
52
  "vitest": "4"
44
53
  },
45
- "gitHead": "82150f1e50f5a3e19682c68e4eec9ae441950327"
54
+ "gitHead": "0418fb6d3b67c35d3c8bacfe53ce01528c6b6153"
46
55
  }