@synergy-design-system/mcp 2.3.0 → 2.4.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,24 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1182](https://github.com/synergy-design-system/synergy-design-system/pull/1182) [`460f8c2`](https://github.com/synergy-design-system/synergy-design-system/commit/460f8c22dfdc305d3990ba0af4b4aefc451fa8ea) Thanks [@kirchsuSICKAG](https://github.com/kirchsuSICKAG)! - Released on: 2026-02-19
8
+
9
+ fix: 🐛 Dependency updates (#258)
10
+
11
+ - Updated dependencies [[`460f8c2`](https://github.com/synergy-design-system/synergy-design-system/commit/460f8c22dfdc305d3990ba0af4b4aefc451fa8ea)]:
12
+ - @synergy-design-system/assets@2.0.1
13
+
14
+ ## 2.4.0
15
+
16
+ ### Minor Changes
17
+
18
+ - Released on: 2026-02-17
19
+
20
+ chore: ✨ Update MCP with latest metadata
21
+
3
22
  ## 2.3.0
4
23
 
5
24
  ### Minor Changes
@@ -1 +1 @@
1
- 1a29dc1518c723ce97428da6e384beb8
1
+ c8bcf282abcae6742354cf271ba13252
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1182](https://github.com/synergy-design-system/synergy-design-system/pull/1182) [`460f8c2`](https://github.com/synergy-design-system/synergy-design-system/commit/460f8c22dfdc305d3990ba0af4b4aefc451fa8ea) Thanks [@kirchsuSICKAG](https://github.com/kirchsuSICKAG)! - Released on: 2026-02-19
8
+
9
+ fix: 🐛 Dependency updates (#258)
10
+
3
11
  ## 2.0.0
4
12
 
5
13
  ### Major Changes
@@ -89,9 +89,9 @@ export default class SynHeader extends SynergyElement {
89
89
 
90
90
  private toggleBurgerMenu() {
91
91
  switch (this.burgerMenu) {
92
- case 'closed': this.burgerMenu = 'open'; break;
93
- case 'open': this.burgerMenu = 'closed'; break;
94
- default: break;
92
+ case 'closed': this.burgerMenu = 'open'; break;
93
+ case 'open': this.burgerMenu = 'closed'; break;
94
+ default: break;
95
95
  }
96
96
  }
97
97
 
@@ -578,46 +578,46 @@ export default class SynRange extends SynergyElement implements SynergyFormContr
578
578
  let value = currentValue;
579
579
 
580
580
  switch (event.key) {
581
- case 'ArrowUp':
582
- case 'Up':
583
- value = Math.min(currentValue + this.step, this.max);
584
- break;
585
- case 'ArrowDown':
586
- case 'Down':
587
- value = Math.max(currentValue - this.step, this.min);
588
- break;
589
- case 'ArrowLeft':
590
- case 'Left':
591
- value = this.#rtl
592
- ? Math.min(currentValue + this.step, this.max)
593
- : Math.max(currentValue - this.step, this.min);
594
- break;
595
- case 'ArrowRight':
596
- case 'Right':
597
- value = this.#rtl
598
- ? Math.max(currentValue - this.step, this.min)
599
- : Math.min(currentValue + this.step, this.max);
600
- break;
601
- case 'PageUp':
602
- value = Math.min(
603
- currentValue + ((this.max - this.min) / 5),
604
- this.max,
605
- );
606
- break;
607
- case 'PageDown':
608
- value = Math.max(
609
- (currentValue - (this.max - this.min) / 5),
610
- this.min,
611
- );
612
- break;
613
- case 'Home':
614
- value = this.min;
615
- break;
616
- case 'End':
617
- value = this.max;
618
- break;
619
- default:
620
- return;
581
+ case 'ArrowUp':
582
+ case 'Up':
583
+ value = Math.min(currentValue + this.step, this.max);
584
+ break;
585
+ case 'ArrowDown':
586
+ case 'Down':
587
+ value = Math.max(currentValue - this.step, this.min);
588
+ break;
589
+ case 'ArrowLeft':
590
+ case 'Left':
591
+ value = this.#rtl
592
+ ? Math.min(currentValue + this.step, this.max)
593
+ : Math.max(currentValue - this.step, this.min);
594
+ break;
595
+ case 'ArrowRight':
596
+ case 'Right':
597
+ value = this.#rtl
598
+ ? Math.max(currentValue - this.step, this.min)
599
+ : Math.min(currentValue + this.step, this.max);
600
+ break;
601
+ case 'PageUp':
602
+ value = Math.min(
603
+ currentValue + ((this.max - this.min) / 5),
604
+ this.max,
605
+ );
606
+ break;
607
+ case 'PageDown':
608
+ value = Math.max(
609
+ (currentValue - (this.max - this.min) / 5),
610
+ this.min,
611
+ );
612
+ break;
613
+ case 'Home':
614
+ value = this.min;
615
+ break;
616
+ case 'End':
617
+ value = this.max;
618
+ break;
619
+ default:
620
+ return;
621
621
  }
622
622
 
623
623
  if (value !== currentValue) {
@@ -208,14 +208,14 @@ export default class SynSideNav extends SynergyElement {
208
208
  this.drawer.forceVisibility(this.variant !== 'default');
209
209
 
210
210
  switch (this.variant) {
211
- case 'rail':
211
+ case 'rail':
212
212
  // For hover handling
213
- this.addMouseListener();
214
- break;
215
- case 'sticky':
216
- case 'default':
217
- default:
218
- this.removeMouseListener();
213
+ this.addMouseListener();
214
+ break;
215
+ case 'sticky':
216
+ case 'default':
217
+ default:
218
+ this.removeMouseListener();
219
219
  }
220
220
  }
221
221
 
@@ -316,20 +316,20 @@ export default class SynSideNav extends SynergyElement {
316
316
  });
317
317
 
318
318
  switch (this.variant) {
319
- case 'rail':
319
+ case 'rail':
320
320
  // Wait for the drawer`s update to be completed
321
321
  // eslint-disable-next-line @typescript-eslint/no-floating-promises
322
- this.drawer.updateComplete.then(() => {
323
- this.addMouseListener();
324
- });
325
- break;
326
- case 'sticky': break;
327
- case 'default':
328
- default:
329
- if (this.noFocusTrapping) {
322
+ this.drawer.updateComplete.then(() => {
323
+ this.addMouseListener();
324
+ });
325
+ break;
326
+ case 'sticky': break;
327
+ case 'default':
328
+ default:
329
+ if (this.noFocusTrapping) {
330
330
  // Disable the focus trapping of the modal
331
- this.drawer.modal.activateExternal();
332
- }
331
+ this.drawer.modal.activateExternal();
332
+ }
333
333
  }
334
334
  }
335
335
 
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1182](https://github.com/synergy-design-system/synergy-design-system/pull/1182) [`460f8c2`](https://github.com/synergy-design-system/synergy-design-system/commit/460f8c22dfdc305d3990ba0af4b4aefc451fa8ea) Thanks [@kirchsuSICKAG](https://github.com/kirchsuSICKAG)! - Released on: 2026-02-19
8
+
9
+ fix: 🐛 Dependency updates (#258)
10
+
11
+ - Updated dependencies [[`460f8c2`](https://github.com/synergy-design-system/synergy-design-system/commit/460f8c22dfdc305d3990ba0af4b4aefc451fa8ea)]:
12
+ - @synergy-design-system/tokens@3.2.1
13
+
3
14
  ## 3.2.0
4
15
 
5
16
  ### Minor Changes
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1182](https://github.com/synergy-design-system/synergy-design-system/pull/1182) [`460f8c2`](https://github.com/synergy-design-system/synergy-design-system/commit/460f8c22dfdc305d3990ba0af4b4aefc451fa8ea) Thanks [@kirchsuSICKAG](https://github.com/kirchsuSICKAG)! - Released on: 2026-02-19
8
+
9
+ fix: 🐛 Dependency updates (#258)
10
+
3
11
  ## 1.0.2
4
12
 
5
13
  ### Patch Changes
@@ -8,12 +8,12 @@
8
8
  "@synergy-design-system/eslint-config-syn": "workspace:^",
9
9
  "@synergy-design-system/stylelint-config-syn": "workspace:^",
10
10
  "eslint": "^9.39.2",
11
- "ora": "^9.0.0",
11
+ "ora": "^9.3.0",
12
12
  "postcss": "^8.5.6",
13
13
  "postcss-header": "^3.0.3",
14
14
  "postcss-import": "^16.1.1",
15
15
  "postcss-url": "^10.1.3",
16
- "stylelint": "^16.26.1"
16
+ "stylelint": "^17.3.0"
17
17
  },
18
18
  "exports": {
19
19
  ".": {
@@ -68,5 +68,5 @@
68
68
  "lint": "pnpm run /^lint:.*/"
69
69
  },
70
70
  "type": "module",
71
- "version": "1.0.2"
71
+ "version": "1.0.3"
72
72
  }
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1182](https://github.com/synergy-design-system/synergy-design-system/pull/1182) [`460f8c2`](https://github.com/synergy-design-system/synergy-design-system/commit/460f8c22dfdc305d3990ba0af4b4aefc451fa8ea) Thanks [@kirchsuSICKAG](https://github.com/kirchsuSICKAG)! - Released on: 2026-02-19
8
+
9
+ fix: 🐛 Dependency updates (#258)
10
+
11
+ - Updated dependencies [[`460f8c2`](https://github.com/synergy-design-system/synergy-design-system/commit/460f8c22dfdc305d3990ba0af4b4aefc451fa8ea)]:
12
+ - @synergy-design-system/tokens@3.2.1
13
+
3
14
  ## 2.0.0
4
15
 
5
16
  ### Major Changes
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1182](https://github.com/synergy-design-system/synergy-design-system/pull/1182) [`460f8c2`](https://github.com/synergy-design-system/synergy-design-system/commit/460f8c22dfdc305d3990ba0af4b4aefc451fa8ea) Thanks [@kirchsuSICKAG](https://github.com/kirchsuSICKAG)! - Released on: 2026-02-19
8
+
9
+ fix: 🐛 Dependency updates (#258)
10
+
3
11
  ## 3.2.0
4
12
 
5
13
  ## 3.1.0
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.1.0
2
+ * @synergy-design-system/tokens version 3.2.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.1.0
2
+ * @synergy-design-system/tokens version 3.2.0
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.1.0
2
+ * @synergy-design-system/tokens version 3.2.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.1.0
2
+ * @synergy-design-system/tokens version 3.2.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.1.0
2
+ * @synergy-design-system/tokens version 3.2.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.1.0
2
+ * @synergy-design-system/tokens version 3.2.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.1.0
2
+ * @synergy-design-system/tokens version 3.2.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
package/package.json CHANGED
@@ -7,33 +7,33 @@
7
7
  "syn-mcp": "./dist/bin/start.js"
8
8
  },
9
9
  "dependencies": {
10
- "@modelcontextprotocol/sdk": "^1.25.2",
11
- "globby": "^16.1.0",
12
- "zod": "^3.25.76",
13
- "@synergy-design-system/assets": "2.0.0"
10
+ "@modelcontextprotocol/sdk": "^1.26.0",
11
+ "globby": "^16.1.1",
12
+ "zod": "^4.3.6",
13
+ "@synergy-design-system/assets": "2.0.1"
14
14
  },
15
15
  "description": "MCP Server for the Synergy Design System",
16
16
  "devDependencies": {
17
17
  "@types/jest": "^30.0.0",
18
- "@types/node": "^24.0.0",
18
+ "@types/node": "^24.10.13",
19
19
  "@types/serve-handler": "^6.1.4",
20
20
  "change-case": "^5.4.4",
21
21
  "custom-elements-manifest": "^2.1.0",
22
22
  "eslint": "^9.39.2",
23
23
  "jest": "^30.2.0",
24
- "ora": "^9.0.0",
25
- "playwright": "^1.57.0",
26
- "prettier": "^3.7.4",
27
- "rimraf": "^6.1.2",
24
+ "ora": "^9.3.0",
25
+ "playwright": "^1.58.2",
26
+ "prettier": "^3.8.1",
27
+ "rimraf": "^6.1.3",
28
28
  "serve-handler": "^6.1.6",
29
29
  "ts-jest": "^29.4.6",
30
30
  "typescript": "^5.9.3",
31
- "@synergy-design-system/components": "3.2.0",
32
- "@synergy-design-system/fonts": "1.0.2",
33
- "@synergy-design-system/eslint-config-syn": "^0.1.0",
34
- "@synergy-design-system/styles": "2.0.0",
31
+ "@synergy-design-system/components": "3.2.1",
32
+ "@synergy-design-system/fonts": "1.0.3",
35
33
  "@synergy-design-system/docs": "0.1.0",
36
- "@synergy-design-system/tokens": "^3.2.0"
34
+ "@synergy-design-system/eslint-config-syn": "^0.1.0",
35
+ "@synergy-design-system/styles": "2.0.1",
36
+ "@synergy-design-system/tokens": "^3.2.1"
37
37
  },
38
38
  "exports": {
39
39
  ".": {
@@ -67,7 +67,7 @@
67
67
  "directory": "packages/mcp"
68
68
  },
69
69
  "type": "module",
70
- "version": "2.3.0",
70
+ "version": "2.4.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",