@synergy-design-system/mcp 1.26.0 → 1.28.0

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,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.28.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1082](https://github.com/synergy-design-system/synergy-design-system/pull/1082) [`e27f95b`](https://github.com/synergy-design-system/synergy-design-system/commit/e27f95ba3e5bd1f494db80ad51d0c1957b8d2204) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-11-27
8
+
9
+ feat: ✨ Brand updates for `<syn-tab-group>`, `<syn-tab-panel>` and `<syn-tab>` (#969)
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [[`e27f95b`](https://github.com/synergy-design-system/synergy-design-system/commit/e27f95ba3e5bd1f494db80ad51d0c1957b8d2204)]:
14
+ - @synergy-design-system/assets@1.24.0
15
+
16
+ ## 1.27.0
17
+
18
+ ### Minor Changes
19
+
20
+ - Released on: 2025-11-27
21
+
22
+ chore: ✨ Update MCP with latest metadata
23
+
3
24
  ## 1.26.0
4
25
 
5
26
  ### Minor Changes
@@ -1 +1 @@
1
- 92bcfd1fb50bde3e54887102c73e457a
1
+ 14e8579fc883b677b3b4e22496687484
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.24.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1082](https://github.com/synergy-design-system/synergy-design-system/pull/1082) [`e27f95b`](https://github.com/synergy-design-system/synergy-design-system/commit/e27f95ba3e5bd1f494db80ad51d0c1957b8d2204) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-11-27
8
+
9
+ feat: ✨ Brand updates for `<syn-tab-group>`, `<syn-tab-panel>` and `<syn-tab>` (#969)
10
+
3
11
  ## 1.23.0
4
12
 
5
13
  ### Minor Changes
@@ -1,8 +1,6 @@
1
1
  import { css } from 'lit';
2
2
 
3
3
  export default css`
4
- /* Write custom CSS here */
5
-
6
4
  :host {
7
5
  --background-color: none;
8
6
  --border-width: var(--syn-border-width-none);
@@ -48,14 +46,13 @@ export default css`
48
46
  }
49
47
 
50
48
  .tab:hover:not(.tab--disabled) {
51
- color: var(--syn-color-primary-700);
49
+ color: var(--syn-interactive-emphasis-color, var(--syn-color-primary-700));
52
50
  }
53
51
 
54
- .tab.tab--active:not(.tab--disabled) {
52
+ .tab.tab--active:not(:hover):not(.tab--disabled) {
55
53
  color: var(--syn-typography-color-text);
56
54
  }
57
55
 
58
-
59
56
  /**
60
57
  * Closable
61
58
  */
@@ -64,7 +61,7 @@ export default css`
64
61
  }
65
62
 
66
63
  .tab__close-button {
67
- color: var(--syn-color-neutral-500);
64
+ color: var(--syn-input-icon-icon-clearable-color, var(--syn-color-neutral-500));
68
65
  font-size: var(--syn-font-size-x-large);
69
66
  margin-inline-start: var(--syn-spacing-2x-small);
70
67
  }
@@ -74,7 +71,7 @@ export default css`
74
71
  }
75
72
 
76
73
  .tab__close-button::part(base):hover {
77
- color: var(--syn-color-primary-700);
74
+ color: var(--syn-input-icon-icon-clearable-color-hover, var(--syn-color-primary-700));
78
75
  }
79
76
 
80
77
  .tab--active {
@@ -89,4 +86,9 @@ export default css`
89
86
  font-size: var(--syn-font-size-x-large);
90
87
  margin-inline-end: var(--syn-spacing-x-small);
91
88
  }
89
+
90
+ /* #969: Prevent interactive color when close button is hovered */
91
+ .tab.tab--closable:hover:has(.tab__close-button:hover) {
92
+ color: var(--syn-typography-color-text);
93
+ }
92
94
  `;
@@ -5,8 +5,9 @@ export default css`
5
5
  /* Write custom CSS here */
6
6
  :host {
7
7
  --track-width: var(--syn-border-width-small);
8
- --track-color: var(--syn-color-neutral-300);
8
+ --track-color: var(--syn-panel-border-color);
9
9
  --indicator-width: var(--syn-border-width-x-large);
10
+ --indicator-color: var(--syn-interactive-emphasis-color, var(--syn-color-primary-600));
10
11
  }
11
12
 
12
13
  /* we need to augment the size of the height of the tab-group__nav to make the focus outline and the hiding white border visible of the tab because of overflow-x value */
@@ -24,25 +25,14 @@ export default css`
24
25
  */
25
26
  .tab-group--top .tab-group__indicator {
26
27
  border-bottom: solid var(--indicator-width) var(--indicator-color);
27
- bottom: 0;
28
28
  }
29
29
 
30
30
  .tab-group--start .tab-group__indicator {
31
31
  border-right: solid var(--indicator-width) var(--indicator-color);
32
- right: 0;
33
- }
34
-
35
- .tab-group--start.tab-group--rtl .tab-group__indicator {
36
- left: 0;
37
32
  }
38
33
 
39
34
  .tab-group--end .tab-group__indicator {
40
35
  border-inline-start: solid var(--indicator-width) var(--indicator-color);
41
- left: 0;
42
- }
43
-
44
- .tab-group--end.tab-group--rtl .tab-group__indicator {
45
- right: 0;
46
36
  }
47
37
 
48
38
  /**
@@ -195,7 +185,7 @@ export default css`
195
185
  .tab-group__scroll-button {
196
186
  /* we need to move the scroll buttons to the top, to align the borders with the border of the tab-group--nav */
197
187
  bottom: var(--syn-panel-border-width);
198
- color: var(--syn-color-neutral-950);
188
+ color: var(--syn-interactive-quiet-color, var(--syn-color-neutral-950));
199
189
  font-size: var(--syn-font-size-medium);
200
190
  width: calc(var(--syn-spacing-x-large) + var( --syn-spacing-2x-small));
201
191
  }
@@ -204,28 +194,8 @@ export default css`
204
194
  padding: calc(var(--syn-spacing-small) - var(--syn-spacing-3x-small));
205
195
  }
206
196
 
207
- /* Make sure the direction of the chevrons match the scrolling directions. */
208
- .tab-group--has-scroll-controls:not(.tab-group--rtl) .tab-group__scroll-button--start,
209
- .tab-group--rtl .tab-group__scroll-button--end {
210
- rotate: 180deg;
211
- }
212
-
213
- .tab-group--has-scroll-controls:not(.tab-group--contained) .tab-group__scroll-button--start {
214
- border-top: solid var(--track-width) var(--track-color);
215
- }
216
-
217
- .tab-group--has-scroll-controls:not(.tab-group--contained) .tab-group__scroll-button--end {
218
- border-bottom: solid var(--track-width) var(--track-color);
219
- }
220
-
221
- .tab-group--rtl:not(.tab-group--contained) .tab-group__scroll-button--start {
197
+ .tab-group--has-scroll-controls:not(.tab-group--contained) .tab-group__scroll-button {
222
198
  border-bottom: solid var(--track-width) var(--track-color);
223
- border-top: none;
224
- }
225
-
226
- .tab-group--rtl:not(.tab-group--contained) .tab-group__scroll-button--end {
227
- border-bottom: none;
228
- border-top: solid var(--track-width) var(--track-color);
229
199
  }
230
200
 
231
201
  /**
@@ -474,6 +474,7 @@ export default class SynTabGroup extends SynergyElement {
474
474
  }
475
475
 
476
476
  render() {
477
+ const isRtl = this.localize.dir() === 'rtl';
477
478
 
478
479
  return html`
479
480
  <div
@@ -502,7 +503,7 @@ export default class SynTabGroup extends SynergyElement {
502
503
  'tab-group__scroll-button--start': true,
503
504
  'tab-group__scroll-button--start--hidden': this.shouldHideScrollStartButton
504
505
  })}
505
- name="chevron-right"
506
+ name=${isRtl ? 'tabs-right' : 'tabs-left'}
506
507
  library="system"
507
508
  tabindex="-1"
508
509
  aria-hidden="true"
@@ -532,7 +533,7 @@ export default class SynTabGroup extends SynergyElement {
532
533
  'tab-group__scroll-button--end': true,
533
534
  'tab-group__scroll-button--end--hidden': this.shouldHideScrollEndButton
534
535
  })}
535
- name="chevron-right"
536
+ name=${isRtl ? 'tabs-left' : 'tabs-right'}
536
537
  library="system"
537
538
  tabindex="-1"
538
539
  aria-hidden="true"
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.65.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1082](https://github.com/synergy-design-system/synergy-design-system/pull/1082) [`e27f95b`](https://github.com/synergy-design-system/synergy-design-system/commit/e27f95ba3e5bd1f494db80ad51d0c1957b8d2204) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-11-27
8
+
9
+ feat: ✨ Brand updates for `<syn-tab-group>`, `<syn-tab-panel>` and `<syn-tab>` (#969)
10
+
11
+ ## 2.64.1
12
+
13
+ ### Patch Changes
14
+
15
+ - [#1098](https://github.com/synergy-design-system/synergy-design-system/pull/1098) [`92973ed`](https://github.com/synergy-design-system/synergy-design-system/commit/92973ed0242ceb836dfe662cbe8e81b7a5364c2e) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2025-11-27
16
+
17
+ fix: 🐛 angular validator api fix (#1097)
18
+
19
+ Validators do not use the internal `_enabled` property anymore.
20
+
3
21
  ## 2.64.0
4
22
 
5
23
  ### Minor Changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.43.0
2
+ * @synergy-design-system/tokens version 2.44.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 2.43.0
2
+ * @synergy-design-system/tokens version 2.44.0
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.43.0
2
+ * @synergy-design-system/tokens version 2.44.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 2.43.0
2
+ * @synergy-design-system/tokens version 2.44.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 2.43.0
2
+ * @synergy-design-system/tokens version 2.44.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 2.43.0
2
+ * @synergy-design-system/tokens version 2.44.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 2.43.0
2
+ * @synergy-design-system/tokens version 2.44.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -225,8 +225,8 @@
225
225
  --syn-input-width: var(--syn-border-width-small);
226
226
  --syn-interactive-background-color-hover: #f2f0ed;
227
227
  --syn-interactive-emphasis-color: var(--syn-color-primary-700);
228
- --syn-interactive-emphasis-color-active: var(--syn-color-primary-950);
229
- --syn-interactive-emphasis-color-hover: var(--syn-color-primary-900);
228
+ --syn-interactive-emphasis-color-active: var(--syn-color-primary-1000);
229
+ --syn-interactive-emphasis-color-hover: var(--syn-color-primary-1000);
230
230
  --syn-interactive-quiet-color: var(--syn-color-neutral-950);
231
231
  --syn-interactive-quiet-color-active: var(--syn-color-primary-800);
232
232
  --syn-interactive-quiet-color-hover: var(--syn-color-primary-700);
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "@modelcontextprotocol/sdk": "^1.19.1",
11
11
  "globby": "^15.0.0",
12
12
  "zod": "^3.25.76",
13
- "@synergy-design-system/assets": "1.23.0"
13
+ "@synergy-design-system/assets": "1.24.0"
14
14
  },
15
15
  "description": "MCP Server for the Synergy Design System",
16
16
  "devDependencies": {
@@ -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.64.0",
31
+ "@synergy-design-system/components": "2.65.0",
32
32
  "@synergy-design-system/docs": "0.1.0",
33
- "@synergy-design-system/eslint-config-syn": "^0.1.0",
34
33
  "@synergy-design-system/styles": "1.9.0",
35
- "@synergy-design-system/tokens": "^2.44.0"
34
+ "@synergy-design-system/tokens": "^2.44.0",
35
+ "@synergy-design-system/eslint-config-syn": "^0.1.0"
36
36
  },
37
37
  "exports": {
38
38
  ".": {
@@ -66,7 +66,7 @@
66
66
  "directory": "packages/mcp"
67
67
  },
68
68
  "type": "module",
69
- "version": "1.26.0",
69
+ "version": "1.28.0",
70
70
  "scripts": {
71
71
  "build": "pnpm run build:ts && pnpm run build:metadata && pnpm build:hash",
72
72
  "build:all": "pnpm run build && pnpm run build:storybook",