@synergy-design-system/mcp 1.8.0 → 1.8.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 +7 -0
- package/metadata/checksum.txt +1 -1
- package/metadata/packages/components/components/syn-popup/component.ts +2 -1
- package/metadata/packages/components/static/CHANGELOG.md +7 -0
- package/metadata/packages/tokens/dark.css +1 -1
- package/metadata/packages/tokens/index.js +1 -1
- package/metadata/packages/tokens/light.css +1 -1
- package/metadata/packages/tokens/sick2018_dark.css +1 -1
- package/metadata/packages/tokens/sick2018_light.css +1 -1
- package/metadata/packages/tokens/sick2025_dark.css +1 -1
- package/metadata/packages/tokens/sick2025_light.css +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@synergy-design-system/mcp-v1.8.1](https://github.com/synergy-design-system/synergy-design-system/compare/mcp/1.8.0...mcp/1.8.1) (2025-10-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 🐛 Testing syn-popup in angular results in console errors ([#1042](https://github.com/synergy-design-system/synergy-design-system/issues/1042)) ([544e01a](https://github.com/synergy-design-system/synergy-design-system/commit/544e01a1227e4760c76d7a74238a224c7ca31a18))
|
|
7
|
+
|
|
1
8
|
# [@synergy-design-system/mcp-v1.8.0](https://github.com/synergy-design-system/synergy-design-system/compare/mcp/1.7.1...mcp/1.8.0) (2025-10-13)
|
|
2
9
|
|
|
3
10
|
|
package/metadata/checksum.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
2aa231f77cace1440ed7c78f6d5a4459
|
|
@@ -302,7 +302,8 @@ export default class SynPopup extends SynergyElement {
|
|
|
302
302
|
private async stop(): Promise<void> {
|
|
303
303
|
return new Promise(resolve => {
|
|
304
304
|
if (SUPPORTS_POPOVER) {
|
|
305
|
-
this.popup
|
|
305
|
+
// #1041 In some testing frameworks the disconnectedCallback is called too early so this.popup is not yet available
|
|
306
|
+
this.popup?.hidePopover?.();
|
|
306
307
|
}
|
|
307
308
|
if (this.cleanup) {
|
|
308
309
|
this.cleanup();
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@synergy-design-system/components-v2.47.1](https://github.com/synergy-design-system/synergy-design-system/compare/components/2.47.0...components/2.47.1) (2025-10-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 🐛 Testing syn-popup in angular results in console errors ([#1042](https://github.com/synergy-design-system/synergy-design-system/issues/1042)) ([544e01a](https://github.com/synergy-design-system/synergy-design-system/commit/544e01a1227e4760c76d7a74238a224c7ca31a18))
|
|
7
|
+
|
|
1
8
|
# [@synergy-design-system/components-v2.47.0](https://github.com/synergy-design-system/synergy-design-system/compare/components/2.46.1...components/2.47.0) (2025-10-13)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"semantic-release-monorepo": "7.0.5",
|
|
34
34
|
"ts-jest": "^29.4.0",
|
|
35
35
|
"typescript": "^5.8.3",
|
|
36
|
+
"@synergy-design-system/components": "2.47.1",
|
|
36
37
|
"@synergy-design-system/docs": "0.1.0",
|
|
37
38
|
"@synergy-design-system/eslint-config-syn": "^0.1.0",
|
|
38
39
|
"@synergy-design-system/styles": "1.8.0",
|
|
39
|
-
"@synergy-design-system/components": "2.47.0",
|
|
40
40
|
"@synergy-design-system/tokens": "^2.28.0"
|
|
41
41
|
},
|
|
42
42
|
"exports": {
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"directory": "packages/mcp"
|
|
123
123
|
},
|
|
124
124
|
"type": "module",
|
|
125
|
-
"version": "1.8.
|
|
125
|
+
"version": "1.8.1",
|
|
126
126
|
"scripts": {
|
|
127
127
|
"build": "pnpm run build:ts && pnpm run build:metadata && pnpm build:hash",
|
|
128
128
|
"build:all": "pnpm run build && pnpm run build:storybook",
|