@synergy-design-system/mcp 1.38.1 → 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,16 @@
|
|
|
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
|
+
|
|
3
14
|
## 1.38.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/metadata/checksum.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
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);
|
|
@@ -1,5 +1,16 @@
|
|
|
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
|
+
|
|
3
14
|
## 2.74.1
|
|
4
15
|
|
|
5
16
|
### Patch 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.1",
|
|
32
|
-
"@synergy-design-system/eslint-config-syn": "^0.1.0",
|
|
33
|
-
"@synergy-design-system/styles": "1.9.0",
|
|
34
31
|
"@synergy-design-system/docs": "0.1.0",
|
|
32
|
+
"@synergy-design-system/components": "2.74.2",
|
|
35
33
|
"@synergy-design-system/fonts": "1.0.0",
|
|
36
|
-
"@synergy-design-system/
|
|
34
|
+
"@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"
|
|
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.
|
|
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",
|