@synergy-design-system/mcp 1.38.0 → 1.38.1

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,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.38.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ fix: 🐛 syn menu submenu rounding (#1131)
10
+
11
+ Fixes an issue with `<syn-menu-item>` when rendering submenus.
12
+ Submenus did not take the changed `border-radius` of `<syn-menu>` into account, leading to squared borders in the `SICK 2025` themes.
13
+
3
14
  ## 1.38.0
4
15
 
5
16
  ### Minor Changes
@@ -1 +1 @@
1
- a6d9d71f670414d272263898936fb59e
1
+ ad66baabe30abdbbfb394f24e54b654b
@@ -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,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.74.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ fix: 🐛 syn menu submenu rounding (#1131)
10
+
11
+ Fixes an issue with `<syn-menu-item>` when rendering submenus.
12
+ Submenus did not take the changed `border-radius` of `<syn-menu>` into account, leading to squared borders in the `SICK 2025` themes.
13
+
3
14
  ## 2.74.0
4
15
 
5
16
  ### Minor Changes
package/package.json CHANGED
@@ -28,11 +28,11 @@
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
- "@synergy-design-system/docs": "0.1.0",
31
+ "@synergy-design-system/components": "2.74.1",
33
32
  "@synergy-design-system/eslint-config-syn": "^0.1.0",
34
- "@synergy-design-system/fonts": "1.0.0",
35
33
  "@synergy-design-system/styles": "1.9.0",
34
+ "@synergy-design-system/docs": "0.1.0",
35
+ "@synergy-design-system/fonts": "1.0.0",
36
36
  "@synergy-design-system/tokens": "^2.46.0"
37
37
  },
38
38
  "exports": {
@@ -67,7 +67,7 @@
67
67
  "directory": "packages/mcp"
68
68
  },
69
69
  "type": "module",
70
- "version": "1.38.0",
70
+ "version": "1.38.1",
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",