@synergy-design-system/mcp 1.38.2 → 1.38.4

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,28 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.38.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1139](https://github.com/synergy-design-system/synergy-design-system/pull/1139) [`6cc7376`](https://github.com/synergy-design-system/synergy-design-system/commit/6cc737681f2b137702f3e95b0a666ae6f28b5039) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-16
8
+
9
+ fix: 🐛 Incorrect offset of submenu items when submenu opens to the left (#1009)
10
+
11
+ Fixes an issue that leads to incorrect offsets when a nested `<syn-menu>` is opened to the left instead of to the right.
12
+
13
+ ## 1.38.3
14
+
15
+ ### Patch Changes
16
+
17
+ - [#1137](https://github.com/synergy-design-system/synergy-design-system/pull/1137) [`f7c0662`](https://github.com/synergy-design-system/synergy-design-system/commit/f7c0662d80dacd3aae6f4bd8559aadc399025858) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-16
18
+
19
+ fix: 🐛 SICK Intl Semibold does not display correctly on Windows (#1124)
20
+
21
+ This release fixes an issue that only appears when using Windows 10 and 11.
22
+ The exported font used cleartype annotations which lead to broken renderings on certain font sizes.
23
+
24
+ > We are still in the process of optimizing `SICK Intl` and are actively working on a solution for current problems like blurry rendering.
25
+
3
26
  ## 1.38.2
4
27
 
5
28
  ### Patch Changes
@@ -1 +1 @@
1
- 2cfbef210cd00f5fddd6964b1717c148
1
+ 6a2396efaec02a827d527a41ab32d3e0
@@ -165,4 +165,13 @@ export default css`
165
165
  syn-popup::part(popup) {
166
166
  border-radius: var(--syn-input-border-radius-medium);
167
167
  }
168
+
169
+ /**
170
+ * #1009: Adjust the position for submenus when they are opened to the left, too.
171
+ * This works because the data-current-placement attribute is set on the popup accordingly.
172
+ * We do not use the actual placement attribute, because it does not update when the placement changes
173
+ */
174
+ syn-popup[data-current-placement^="left"]::part(popup) {
175
+ margin-left: calc(-1 * var(--submenu-offset));
176
+ }
168
177
  `;
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.74.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1139](https://github.com/synergy-design-system/synergy-design-system/pull/1139) [`6cc7376`](https://github.com/synergy-design-system/synergy-design-system/commit/6cc737681f2b137702f3e95b0a666ae6f28b5039) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-16
8
+
9
+ fix: 🐛 Incorrect offset of submenu items when submenu opens to the left (#1009)
10
+
11
+ Fixes an issue that leads to incorrect offsets when a nested `<syn-menu>` is opened to the left instead of to the right.
12
+
3
13
  ## 2.74.2
4
14
 
5
15
  ### Patch Changes
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1137](https://github.com/synergy-design-system/synergy-design-system/pull/1137) [`f7c0662`](https://github.com/synergy-design-system/synergy-design-system/commit/f7c0662d80dacd3aae6f4bd8559aadc399025858) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-12-16
8
+
9
+ fix: 🐛 SICK Intl Semibold does not display correctly on Windows (#1124)
10
+
11
+ This release fixes an issue that only appears when using Windows 10 and 11.
12
+ The exported font used cleartype annotations which lead to broken renderings on certain font sizes.
13
+
14
+ > We are still in the process of optimizing `SICK Intl` and are actively working on a solution for current problems like blurry rendering.
15
+
3
16
  ## 1.0.0
4
17
 
5
18
  ### Major Changes
@@ -155,3 +155,10 @@ This package uses PostCSS to generate multiple font distribution formats:
155
155
  - Base64 inline CSS for self-contained usage
156
156
 
157
157
  The inline version is automatically generated during build and includes the font files as data URIs.
158
+
159
+ ### Steps for updating SICK Intl
160
+
161
+ When updating SICK Intl to the latest version, please make sure to:
162
+
163
+ - Use the [Font Squirrel Webfont Generator](https://www.fontsquirrel.com/tools/webfont-generator)
164
+ - Use the export settings in the `export-configs` folder of this package.
@@ -68,5 +68,5 @@
68
68
  "lint": "pnpm run /^lint:.*/"
69
69
  },
70
70
  "type": "module",
71
- "version": "1.0.0"
71
+ "version": "1.0.1"
72
72
  }
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.3",
32
+ "@synergy-design-system/eslint-config-syn": "^0.1.0",
31
33
  "@synergy-design-system/docs": "0.1.0",
32
- "@synergy-design-system/components": "2.74.2",
33
- "@synergy-design-system/fonts": "1.0.0",
34
+ "@synergy-design-system/fonts": "1.0.1",
34
35
  "@synergy-design-system/styles": "1.9.0",
35
- "@synergy-design-system/tokens": "^2.46.0",
36
- "@synergy-design-system/eslint-config-syn": "^0.1.0"
36
+ "@synergy-design-system/tokens": "^2.46.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.2",
70
+ "version": "1.38.4",
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",