@synergy-design-system/mcp 1.38.0 → 1.38.2

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
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.38.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1136](https://github.com/synergy-design-system/synergy-design-system/pull/1136) [`212b5bd`](https://github.com/synergy-design-system/synergy-design-system/commit/212b5bd29087b10d1fe0e6bbb94c97090b7b4f74) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-16
8
+
9
+ fix: 🐛 `<syn-alert>` close icon should be aligned to top (#1135)
10
+
11
+ Fixes an issue that was introduces in version `2.74.0`.
12
+ The close icons is now always aligned to the top of the `<syn-alert>` again.
13
+
14
+ ## 1.38.1
15
+
16
+ ### Patch Changes
17
+
18
+ - [#1133](https://github.com/synergy-design-system/synergy-design-system/pull/1133) [`82ea066`](https://github.com/synergy-design-system/synergy-design-system/commit/82ea066fa18e35831d94f22c7ac620135bc8c334) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-15
19
+
20
+ fix: 🐛 syn menu submenu rounding (#1131)
21
+
22
+ Fixes an issue with `<syn-menu-item>` when rendering submenus.
23
+ Submenus did not take the changed `border-radius` of `<syn-menu>` into account, leading to squared borders in the `SICK 2025` themes.
24
+
3
25
  ## 1.38.0
4
26
 
5
27
  ### Minor Changes
@@ -1 +1 @@
1
- a6d9d71f670414d272263898936fb59e
1
+ 2cfbef210cd00f5fddd6964b1717c148
@@ -73,6 +73,7 @@ export default css`
73
73
  * Close Icon
74
74
  */
75
75
  .alert__close-button {
76
+ align-self: start; /* #1135: Fix alignment for the close icon */
76
77
  color: var(--syn-typography-color-text);
77
78
  margin-block: calc(var(--syn-spacing-x-small) - var(--syn-panel-border-width));
78
79
  margin-inline-end: var(--syn-spacing-x-small);
@@ -160,4 +160,9 @@ export default css`
160
160
  :host(:not([type="checkmark"]):not([loading])) .menu-item__label {
161
161
  min-height: var(--syn-font-size-x-large);
162
162
  }
163
+
164
+ /* #1131: Make sure that slotted menus do show the correct border radius */
165
+ syn-popup::part(popup) {
166
+ border-radius: var(--syn-input-border-radius-medium);
167
+ }
163
168
  `;
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.74.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1136](https://github.com/synergy-design-system/synergy-design-system/pull/1136) [`212b5bd`](https://github.com/synergy-design-system/synergy-design-system/commit/212b5bd29087b10d1fe0e6bbb94c97090b7b4f74) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-16
8
+
9
+ fix: 🐛 `<syn-alert>` close icon should be aligned to top (#1135)
10
+
11
+ Fixes an issue that was introduces in version `2.74.0`.
12
+ The close icons is now always aligned to the top of the `<syn-alert>` again.
13
+
14
+ ## 2.74.1
15
+
16
+ ### Patch Changes
17
+
18
+ - [#1133](https://github.com/synergy-design-system/synergy-design-system/pull/1133) [`82ea066`](https://github.com/synergy-design-system/synergy-design-system/commit/82ea066fa18e35831d94f22c7ac620135bc8c334) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-15
19
+
20
+ fix: 🐛 syn menu submenu rounding (#1131)
21
+
22
+ Fixes an issue with `<syn-menu-item>` when rendering submenus.
23
+ Submenus did not take the changed `border-radius` of `<syn-menu>` into account, leading to squared borders in the `SICK 2025` themes.
24
+
3
25
  ## 2.74.0
4
26
 
5
27
  ### Minor Changes
package/package.json CHANGED
@@ -28,12 +28,12 @@
28
28
  "serve-handler": "^6.1.6",
29
29
  "ts-jest": "^29.4.0",
30
30
  "typescript": "^5.9.3",
31
- "@synergy-design-system/components": "2.74.0",
32
31
  "@synergy-design-system/docs": "0.1.0",
33
- "@synergy-design-system/eslint-config-syn": "^0.1.0",
32
+ "@synergy-design-system/components": "2.74.2",
34
33
  "@synergy-design-system/fonts": "1.0.0",
35
34
  "@synergy-design-system/styles": "1.9.0",
36
- "@synergy-design-system/tokens": "^2.46.0"
35
+ "@synergy-design-system/tokens": "^2.46.0",
36
+ "@synergy-design-system/eslint-config-syn": "^0.1.0"
37
37
  },
38
38
  "exports": {
39
39
  ".": {
@@ -67,7 +67,7 @@
67
67
  "directory": "packages/mcp"
68
68
  },
69
69
  "type": "module",
70
- "version": "1.38.0",
70
+ "version": "1.38.2",
71
71
  "scripts": {
72
72
  "build": "pnpm run build:ts && pnpm run build:metadata && pnpm build:hash",
73
73
  "build:all": "pnpm run build && pnpm run build:storybook",