@synergy-design-system/mcp 2.11.0 → 2.12.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.
Files changed (25) hide show
  1. package/CHANGELOG.md +80 -0
  2. package/metadata/checksum.txt +1 -1
  3. package/metadata/packages/assets/CHANGELOG.md +8 -0
  4. package/metadata/packages/components/components/syn-divider/component.styles.ts +2 -4
  5. package/metadata/packages/components/components/syn-divider/component.ts +1 -2
  6. package/metadata/packages/components/components/syn-header/component.angular.ts +1 -0
  7. package/metadata/packages/components/components/syn-header/component.react.ts +1 -0
  8. package/metadata/packages/components/components/syn-header/component.styles.ts +2 -1
  9. package/metadata/packages/components/components/syn-header/component.ts +45 -3
  10. package/metadata/packages/components/components/syn-header/component.vue +1 -0
  11. package/metadata/packages/components/static/CHANGELOG.md +85 -0
  12. package/metadata/packages/fonts/CHANGELOG.md +8 -0
  13. package/metadata/packages/fonts/package.json +4 -4
  14. package/metadata/packages/styles/CHANGELOG.md +11 -0
  15. package/metadata/packages/tokens/CHANGELOG.md +77 -0
  16. package/metadata/packages/tokens/dark.css +1 -1
  17. package/metadata/packages/tokens/index.js +1 -1
  18. package/metadata/packages/tokens/light.css +1 -1
  19. package/metadata/packages/tokens/sick2018_dark.css +1 -1
  20. package/metadata/packages/tokens/sick2018_light.css +1 -1
  21. package/metadata/packages/tokens/sick2025_dark.css +1 -1
  22. package/metadata/packages/tokens/sick2025_light.css +1 -1
  23. package/metadata/static/components/syn-header/docs.md +65 -0
  24. package/package.json +10 -10
  25. package/metadata/packages/components/components/syn-divider/component.custom.styles.ts +0 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,85 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1223](https://github.com/synergy-design-system/synergy-design-system/pull/1223) [`60b2845`](https://github.com/synergy-design-system/synergy-design-system/commit/60b2845fc089c2508f7e4a2b068b359fad166288) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
8
+
9
+ fix: 🐛 dependency updates (#258)
10
+
11
+ - Updated dependencies [[`60b2845`](https://github.com/synergy-design-system/synergy-design-system/commit/60b2845fc089c2508f7e4a2b068b359fad166288)]:
12
+ - @synergy-design-system/assets@2.0.2
13
+
14
+ ## 2.12.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [#1209](https://github.com/synergy-design-system/synergy-design-system/pull/1209) [`5704a96`](https://github.com/synergy-design-system/synergy-design-system/commit/5704a96fbe2d0481822a30ce171a01df960c82f1) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
19
+
20
+ feat: ✨ Allow `<syn-divider>` as a separator in meta-navigation of `<syn-header>` (#1130)
21
+
22
+ This release adds the possiblity to use `<syn-divider>` as a separator between items in the `<syn-header>` metanavigation.
23
+ It will automatically set the correct `height` on vertically aligned `<syn-dividers>`.
24
+
25
+ You may use it via:
26
+
27
+ ```html
28
+ <syn-header label="App Name">
29
+ <nav slot="meta-navigation">
30
+ <syn-icon-button
31
+ name="settings_outline"
32
+ label="Settings"
33
+ ></syn-icon-button>
34
+ <syn-icon-button
35
+ name="insert_chart_outlined"
36
+ label="Analytics"
37
+ ></syn-icon-button>
38
+ <syn-divider vertical></syn-divider>
39
+ <syn-icon-button name="dark_mode" label="Dark Mode"></syn-icon-button>
40
+ <syn-divider vertical></syn-divider>
41
+ <syn-icon-button name="language" label="Language"></syn-icon-button>
42
+ <syn-icon-button name="login" label="Login"></syn-icon-button>
43
+ </nav>
44
+ </syn-header>
45
+ ```
46
+
47
+ or via directly slotting the `<syn-divider>` via
48
+
49
+ ```html
50
+ <syn-header label="App Name">
51
+ <syn-icon-button
52
+ slot="meta-navigation"
53
+ name="settings_outline"
54
+ label="Settings"
55
+ ></syn-icon-button>
56
+ <syn-icon-button
57
+ slot="meta-navigation"
58
+ name="insert_chart_outlined"
59
+ label="Analytics"
60
+ ></syn-icon-button>
61
+ <syn-divider vertical slot="meta-navigation"></syn-divider>
62
+ <syn-icon-button
63
+ slot="meta-navigation"
64
+ name="dark_mode"
65
+ label="Dark Mode"
66
+ ></syn-icon-button>
67
+ <syn-divider vertical slot="meta-navigation"></syn-divider>
68
+ <syn-icon-button
69
+ slot="meta-navigation"
70
+ name="language"
71
+ label="Language"
72
+ ></syn-icon-button>
73
+ <syn-icon-button
74
+ slot="meta-navigation"
75
+ name="login"
76
+ label="Login"
77
+ ></syn-icon-button>
78
+ </syn-header>
79
+ ```
80
+
81
+ `<syn-header>` now also exposes a new `cssproperty` `--metanavigation-item-size` that can be used to define the size of rendered `<syn-icon-buttons>`, as well as the height of `<syn-divider>`
82
+
3
83
  ## 2.11.0
4
84
 
5
85
  ### Minor Changes
@@ -1 +1 @@
1
- 8ff3b2f94fdeb4b49a8f7f96d20fab34
1
+ e863d3d1ecb673b5485041d4f4a8b704
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1223](https://github.com/synergy-design-system/synergy-design-system/pull/1223) [`60b2845`](https://github.com/synergy-design-system/synergy-design-system/commit/60b2845fc089c2508f7e4a2b068b359fad166288) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
8
+
9
+ fix: 🐛 dependency updates (#258)
10
+
3
11
  ## 2.0.1
4
12
 
5
13
  ### Patch Changes
@@ -1,8 +1,6 @@
1
- /* eslint-disable */
2
1
  import { css } from 'lit';
3
2
 
4
3
  export default css`
5
- /* stylelint-disable */
6
4
  :host {
7
5
  --color: var(--syn-panel-border-color);
8
6
  --width: var(--syn-panel-border-width);
@@ -10,15 +8,15 @@ export default css`
10
8
  }
11
9
 
12
10
  :host(:not([vertical])) {
13
- display: block;
14
11
  border-top: solid var(--width) var(--color);
12
+ display: block;
15
13
  margin: var(--spacing) 0;
16
14
  }
17
15
 
18
16
  :host([vertical]) {
17
+ border-left: solid var(--width) var(--color);
19
18
  display: inline-block;
20
19
  height: 100%;
21
- border-left: solid var(--width) var(--color);
22
20
  margin: 0 var(--spacing);
23
21
  }
24
22
  `;
@@ -4,7 +4,6 @@ import { watch } from '../../internal/watch.js';
4
4
  import componentStyles from '../../styles/component.styles.js';
5
5
  import SynergyElement from '../../internal/synergy-element.js';
6
6
  import styles from './divider.styles.js';
7
- import customStyles from './divider.custom.styles.js';
8
7
  import type { CSSResultGroup } from 'lit';
9
8
 
10
9
  /**
@@ -18,7 +17,7 @@ import type { CSSResultGroup } from 'lit';
18
17
  * @cssproperty --spacing - The spacing of the divider.
19
18
  */
20
19
  export default class SynDivider extends SynergyElement {
21
- static styles: CSSResultGroup = [componentStyles, styles, customStyles];
20
+ static styles: CSSResultGroup = [componentStyles, styles];
22
21
 
23
22
  /** Draws the divider in a vertical orientation. */
24
23
  @property({ type: Boolean, reflect: true }) vertical = false;
@@ -49,6 +49,7 @@ import '@synergy-design-system/components/components/header/header.js';
49
49
  * @csspart burger-menu-toggle-button - The button that toggles the burger menu
50
50
  *
51
51
  * @cssproperty --sticky-position - The position of the sticky header from the top of the viewport. Defaults to the top of the screen.
52
+ * @cssproperty --metanavigation-item-size - The size of the items in the meta navigation. Also used for the height of dividers in the meta navigation. Defaults to var(--syn-font-size-x-large)
52
53
  */
53
54
  @Component({
54
55
  selector: 'syn-header',
@@ -46,6 +46,7 @@ Component.define('syn-header');
46
46
  * @csspart burger-menu-toggle-button - The button that toggles the burger menu
47
47
  *
48
48
  * @cssproperty --sticky-position - The position of the sticky header from the top of the viewport. Defaults to the top of the screen.
49
+ * @cssproperty --metanavigation-item-size - The size of the items in the meta navigation. Also used for the height of dividers in the meta navigation. Defaults to var(--syn-font-size-x-large)
49
50
  */
50
51
  export const SynHeader = createComponent({
51
52
  displayName: 'SynHeader',
@@ -3,6 +3,7 @@ import { css } from 'lit';
3
3
  export default css`
4
4
  :host {
5
5
  --sticky-position: 0;
6
+ --metanavigation-item-size: var(--syn-font-size-x-large);
6
7
 
7
8
  display: block;
8
9
  }
@@ -82,7 +83,7 @@ export default css`
82
83
  .header__meta-navigation ::slotted(*) {
83
84
  color: var(--syn-interactive-quiet-color);
84
85
  display: contents;
85
- font-size: var(--syn-font-size-x-large);
86
+ font-size: var(--metanavigation-item-size);
86
87
  }
87
88
 
88
89
  /**
@@ -1,7 +1,6 @@
1
- /* eslint-disable @typescript-eslint/unbound-method */
2
1
  import { classMap } from 'lit/directives/class-map.js';
3
2
  import { html } from 'lit/static-html.js';
4
- import { property, state } from 'lit/decorators.js';
3
+ import { property, query, state } from 'lit/decorators.js';
5
4
  import type { CSSResultGroup } from 'lit';
6
5
  import SynergyElement from '../../internal/synergy-element.js';
7
6
  import { HasSlotController } from '../../internal/slot.js';
@@ -11,6 +10,7 @@ import SynIcon from '../icon/icon.js';
11
10
  import type SynSideNav from '../side-nav/side-nav.component.js';
12
11
  import { LocalizeController } from '../../utilities/localize.js';
13
12
  import { watch } from '../../internal/watch.js';
13
+ import type SynDivider from '../divider/divider.component.js';
14
14
 
15
15
  /**
16
16
  * @summary The <syn-header /> element provides a generic application header
@@ -43,6 +43,7 @@ import { watch } from '../../internal/watch.js';
43
43
  * @csspart burger-menu-toggle-button - The button that toggles the burger menu
44
44
  *
45
45
  * @cssproperty --sticky-position - The position of the sticky header from the top of the viewport. Defaults to the top of the screen.
46
+ * @cssproperty --metanavigation-item-size - The size of the items in the meta navigation. Also used for the height of dividers in the meta navigation. Defaults to var(--syn-font-size-x-large)
46
47
  */
47
48
  export default class SynHeader extends SynergyElement {
48
49
  static styles: CSSResultGroup = [
@@ -68,6 +69,8 @@ export default class SynHeader extends SynergyElement {
68
69
  */
69
70
  private isSideNavAnimating = false;
70
71
 
72
+ @query('slot[name="meta-navigation"]') private metaNavigationSlot: HTMLSlotElement;
73
+
71
74
  /**
72
75
  * The headers label. If you need to display HTML, use the `label` slot instead.
73
76
  */
@@ -128,6 +131,43 @@ export default class SynHeader extends SynergyElement {
128
131
  }
129
132
  }
130
133
 
134
+ /**
135
+ * #1130: Automatically set the correct styles for vertical syn-dividers in the meta navigation.
136
+ * Dividers may be slotted directly in the meta navigation or be nested in another element, e.g. a wrapper for the meta navigation.
137
+ * Horizontal dividers are not supported in the meta navigation and we don't want to override any styles for them that might be set by the user.
138
+ */
139
+ private updateMetaNavigation() {
140
+ const foundDividers: SynDivider[] = [];
141
+ this.metaNavigationSlot
142
+ // Get all slotted children.
143
+ // Needed because we may also have dividers in a wrapper that is used for the meta navigation
144
+ .assignedElements({ flatten: true })
145
+ .forEach(el => {
146
+ if (el.tagName.toLowerCase() === 'syn-divider') {
147
+ foundDividers.push(el as SynDivider);
148
+ } else {
149
+ const directChildDividers = el.querySelectorAll<SynDivider>(':scope > syn-divider');
150
+ if (directChildDividers.length) {
151
+ foundDividers.push(...directChildDividers);
152
+ }
153
+ }
154
+ });
155
+
156
+ // Set the correct styles for the found dividers
157
+ // - --spacing: var(--syn-spacing-x-small) makes the spacing slightly narrower,
158
+ // - align-self: center makes sure the divider is centered in the meta navigation,
159
+ // - height: var(--metanavigation-item-size) makes sure the divider has the same height as the other items in the meta navigation.
160
+ // We use this approach as it is faster than 3 separate style changes and we can be sure to not override any other styles that might be set on the divider.
161
+ const cssText = '--spacing: var(--syn-spacing-x-small); align-self: center; display: flex; height: var(--metanavigation-item-size);';
162
+
163
+ foundDividers
164
+ .filter(divider => divider.hasAttribute('vertical'))
165
+ .forEach(divider => {
166
+ // eslint-disable-next-line no-param-reassign
167
+ divider.style.cssText += cssText;
168
+ });
169
+ }
170
+
131
171
  @watch('burgerMenu', { waitUntilFirstUpdate: true })
132
172
  handleBurgerMenu() {
133
173
  const myEvt: keyof GlobalEventHandlersEventMap = `syn-burger-menu-${this.burgerMenu}`;
@@ -203,6 +243,7 @@ export default class SynHeader extends SynergyElement {
203
243
  }
204
244
 
205
245
  render() {
246
+ /* eslint-disable @typescript-eslint/unbound-method */
206
247
  const hasNavigation = this.hasSlotController.test('navigation');
207
248
  const showBurgerMenu = this.burgerMenu !== 'hidden';
208
249
  return html`
@@ -254,7 +295,7 @@ export default class SynHeader extends SynergyElement {
254
295
  </div>
255
296
 
256
297
  <div part="meta-navigation" class="header__meta-navigation">
257
- <slot name="meta-navigation"></slot>
298
+ <slot @slotchange=${this.updateMetaNavigation} name="meta-navigation"></slot>
258
299
  </div>
259
300
  </div>
260
301
  <!-- /.header__content -->
@@ -264,5 +305,6 @@ export default class SynHeader extends SynergyElement {
264
305
  </div>
265
306
  </header>
266
307
  `;
308
+ /* eslint-enable @typescript-eslint/unbound-method */
267
309
  }
268
310
  }
@@ -36,6 +36,7 @@
36
36
  * @csspart burger-menu-toggle-button - The button that toggles the burger menu
37
37
  *
38
38
  * @cssproperty --sticky-position - The position of the sticky header from the top of the viewport. Defaults to the top of the screen.
39
+ * @cssproperty --metanavigation-item-size - The size of the items in the meta navigation. Also used for the height of dividers in the meta navigation. Defaults to var(--syn-font-size-x-large)
39
40
  */
40
41
  import { computed, ref } from 'vue';
41
42
  import '@synergy-design-system/components/components/header/header.js';
@@ -1,5 +1,90 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1223](https://github.com/synergy-design-system/synergy-design-system/pull/1223) [`60b2845`](https://github.com/synergy-design-system/synergy-design-system/commit/60b2845fc089c2508f7e4a2b068b359fad166288) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
8
+
9
+ fix: 🐛 dependency updates (#258)
10
+
11
+ - Updated dependencies [[`60b2845`](https://github.com/synergy-design-system/synergy-design-system/commit/60b2845fc089c2508f7e4a2b068b359fad166288)]:
12
+ - @synergy-design-system/tokens@3.10.1
13
+
14
+ ## 3.10.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [#1209](https://github.com/synergy-design-system/synergy-design-system/pull/1209) [`5704a96`](https://github.com/synergy-design-system/synergy-design-system/commit/5704a96fbe2d0481822a30ce171a01df960c82f1) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
19
+
20
+ feat: ✨ Allow `<syn-divider>` as a separator in meta-navigation of `<syn-header>` (#1130)
21
+
22
+ This release adds the possiblity to use `<syn-divider>` as a separator between items in the `<syn-header>` metanavigation.
23
+ It will automatically set the correct `height` on vertically aligned `<syn-dividers>`.
24
+
25
+ You may use it via:
26
+
27
+ ```html
28
+ <syn-header label="App Name">
29
+ <nav slot="meta-navigation">
30
+ <syn-icon-button
31
+ name="settings_outline"
32
+ label="Settings"
33
+ ></syn-icon-button>
34
+ <syn-icon-button
35
+ name="insert_chart_outlined"
36
+ label="Analytics"
37
+ ></syn-icon-button>
38
+ <syn-divider vertical></syn-divider>
39
+ <syn-icon-button name="dark_mode" label="Dark Mode"></syn-icon-button>
40
+ <syn-divider vertical></syn-divider>
41
+ <syn-icon-button name="language" label="Language"></syn-icon-button>
42
+ <syn-icon-button name="login" label="Login"></syn-icon-button>
43
+ </nav>
44
+ </syn-header>
45
+ ```
46
+
47
+ or via directly slotting the `<syn-divider>` via
48
+
49
+ ```html
50
+ <syn-header label="App Name">
51
+ <syn-icon-button
52
+ slot="meta-navigation"
53
+ name="settings_outline"
54
+ label="Settings"
55
+ ></syn-icon-button>
56
+ <syn-icon-button
57
+ slot="meta-navigation"
58
+ name="insert_chart_outlined"
59
+ label="Analytics"
60
+ ></syn-icon-button>
61
+ <syn-divider vertical slot="meta-navigation"></syn-divider>
62
+ <syn-icon-button
63
+ slot="meta-navigation"
64
+ name="dark_mode"
65
+ label="Dark Mode"
66
+ ></syn-icon-button>
67
+ <syn-divider vertical slot="meta-navigation"></syn-divider>
68
+ <syn-icon-button
69
+ slot="meta-navigation"
70
+ name="language"
71
+ label="Language"
72
+ ></syn-icon-button>
73
+ <syn-icon-button
74
+ slot="meta-navigation"
75
+ name="login"
76
+ label="Login"
77
+ ></syn-icon-button>
78
+ </syn-header>
79
+ ```
80
+
81
+ `<syn-header>` now also exposes a new `cssproperty` `--metanavigation-item-size` that can be used to define the size of rendered `<syn-icon-buttons>`, as well as the height of `<syn-divider>`
82
+
83
+ ### Patch Changes
84
+
85
+ - Updated dependencies [[`5704a96`](https://github.com/synergy-design-system/synergy-design-system/commit/5704a96fbe2d0481822a30ce171a01df960c82f1)]:
86
+ - @synergy-design-system/tokens@3.10.0
87
+
3
88
  ## 3.9.0
4
89
 
5
90
  ### Patch Changes
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1223](https://github.com/synergy-design-system/synergy-design-system/pull/1223) [`60b2845`](https://github.com/synergy-design-system/synergy-design-system/commit/60b2845fc089c2508f7e4a2b068b359fad166288) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
8
+
9
+ fix: 🐛 dependency updates (#258)
10
+
3
11
  ## 1.0.3
4
12
 
5
13
  ### Patch Changes
@@ -7,13 +7,13 @@
7
7
  "devDependencies": {
8
8
  "@synergy-design-system/eslint-config-syn": "workspace:^",
9
9
  "@synergy-design-system/stylelint-config-syn": "workspace:^",
10
- "eslint": "^9.39.2",
10
+ "eslint": "^9.39.4",
11
11
  "ora": "^9.3.0",
12
- "postcss": "^8.5.6",
12
+ "postcss": "^8.5.8",
13
13
  "postcss-header": "^3.0.3",
14
14
  "postcss-import": "^16.1.1",
15
15
  "postcss-url": "^10.1.3",
16
- "stylelint": "^17.3.0"
16
+ "stylelint": "^17.4.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.3"
71
+ "version": "1.0.4"
72
72
  }
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1223](https://github.com/synergy-design-system/synergy-design-system/pull/1223) [`60b2845`](https://github.com/synergy-design-system/synergy-design-system/commit/60b2845fc089c2508f7e4a2b068b359fad166288) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
8
+
9
+ fix: 🐛 dependency updates (#258)
10
+
11
+ - Updated dependencies [[`60b2845`](https://github.com/synergy-design-system/synergy-design-system/commit/60b2845fc089c2508f7e4a2b068b359fad166288)]:
12
+ - @synergy-design-system/tokens@3.10.1
13
+
3
14
  ## 2.0.1
4
15
 
5
16
  ### Patch Changes
@@ -1,5 +1,82 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1223](https://github.com/synergy-design-system/synergy-design-system/pull/1223) [`60b2845`](https://github.com/synergy-design-system/synergy-design-system/commit/60b2845fc089c2508f7e4a2b068b359fad166288) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
8
+
9
+ fix: 🐛 dependency updates (#258)
10
+
11
+ ## 3.10.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#1209](https://github.com/synergy-design-system/synergy-design-system/pull/1209) [`5704a96`](https://github.com/synergy-design-system/synergy-design-system/commit/5704a96fbe2d0481822a30ce171a01df960c82f1) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
16
+
17
+ feat: ✨ Allow `<syn-divider>` as a separator in meta-navigation of `<syn-header>` (#1130)
18
+
19
+ This release adds the possiblity to use `<syn-divider>` as a separator between items in the `<syn-header>` metanavigation.
20
+ It will automatically set the correct `height` on vertically aligned `<syn-dividers>`.
21
+
22
+ You may use it via:
23
+
24
+ ```html
25
+ <syn-header label="App Name">
26
+ <nav slot="meta-navigation">
27
+ <syn-icon-button
28
+ name="settings_outline"
29
+ label="Settings"
30
+ ></syn-icon-button>
31
+ <syn-icon-button
32
+ name="insert_chart_outlined"
33
+ label="Analytics"
34
+ ></syn-icon-button>
35
+ <syn-divider vertical></syn-divider>
36
+ <syn-icon-button name="dark_mode" label="Dark Mode"></syn-icon-button>
37
+ <syn-divider vertical></syn-divider>
38
+ <syn-icon-button name="language" label="Language"></syn-icon-button>
39
+ <syn-icon-button name="login" label="Login"></syn-icon-button>
40
+ </nav>
41
+ </syn-header>
42
+ ```
43
+
44
+ or via directly slotting the `<syn-divider>` via
45
+
46
+ ```html
47
+ <syn-header label="App Name">
48
+ <syn-icon-button
49
+ slot="meta-navigation"
50
+ name="settings_outline"
51
+ label="Settings"
52
+ ></syn-icon-button>
53
+ <syn-icon-button
54
+ slot="meta-navigation"
55
+ name="insert_chart_outlined"
56
+ label="Analytics"
57
+ ></syn-icon-button>
58
+ <syn-divider vertical slot="meta-navigation"></syn-divider>
59
+ <syn-icon-button
60
+ slot="meta-navigation"
61
+ name="dark_mode"
62
+ label="Dark Mode"
63
+ ></syn-icon-button>
64
+ <syn-divider vertical slot="meta-navigation"></syn-divider>
65
+ <syn-icon-button
66
+ slot="meta-navigation"
67
+ name="language"
68
+ label="Language"
69
+ ></syn-icon-button>
70
+ <syn-icon-button
71
+ slot="meta-navigation"
72
+ name="login"
73
+ label="Login"
74
+ ></syn-icon-button>
75
+ </syn-header>
76
+ ```
77
+
78
+ `<syn-header>` now also exposes a new `cssproperty` `--metanavigation-item-size` that can be used to define the size of rendered `<syn-icon-buttons>`, as well as the height of `<syn-divider>`
79
+
3
80
  ## 3.9.0
4
81
 
5
82
  ### Minor Changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.8.0
2
+ * @synergy-design-system/tokens version 3.10.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.8.0
2
+ * @synergy-design-system/tokens version 3.10.0
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.8.0
2
+ * @synergy-design-system/tokens version 3.10.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.8.0
2
+ * @synergy-design-system/tokens version 3.10.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.8.0
2
+ * @synergy-design-system/tokens version 3.10.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.8.0
2
+ * @synergy-design-system/tokens version 3.10.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.8.0
2
+ * @synergy-design-system/tokens version 3.10.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -107,6 +107,71 @@ Use the Meta Navigation slot to add additional functionalities to your applicati
107
107
 
108
108
  ---
109
109
 
110
+ ## Meta Navigation With Dividers
111
+
112
+ If you need different icon groups or a separator between them, add a <syn-divider> between them.
113
+
114
+ ```html
115
+ <syn-header label="App Name" burger-menu="hidden">
116
+ <nav slot="meta-navigation">
117
+ <syn-icon-button
118
+ name="settings_outline"
119
+ label="Settings"
120
+ size="inherit"
121
+ color="currentColor"
122
+ ></syn-icon-button>
123
+ <syn-icon-button
124
+ name="insert_chart_outlined"
125
+ label="Analytics"
126
+ size="inherit"
127
+ color="currentColor"
128
+ ></syn-icon-button>
129
+ <syn-divider
130
+ vertical=""
131
+ role="separator"
132
+ aria-orientation="vertical"
133
+ style="
134
+ --spacing: var(--syn-spacing-x-small);
135
+ align-self: center;
136
+ display: flex;
137
+ height: var(--metanavigation-item-size);
138
+ "
139
+ ></syn-divider>
140
+ <syn-icon-button
141
+ name="dark_mode"
142
+ label="Dark Mode"
143
+ size="inherit"
144
+ color="currentColor"
145
+ ></syn-icon-button>
146
+ <syn-divider
147
+ vertical=""
148
+ role="separator"
149
+ aria-orientation="vertical"
150
+ style="
151
+ --spacing: var(--syn-spacing-x-small);
152
+ align-self: center;
153
+ display: flex;
154
+ height: var(--metanavigation-item-size);
155
+ "
156
+ ></syn-divider>
157
+ <syn-icon-button
158
+ name="language"
159
+ label="Language"
160
+ size="inherit"
161
+ color="currentColor"
162
+ ></syn-icon-button>
163
+ <syn-icon-button
164
+ name="login"
165
+ label="Login"
166
+ size="inherit"
167
+ color="currentColor"
168
+ ></syn-icon-button>
169
+ </nav>
170
+ </syn-header>
171
+ ```
172
+
173
+ ---
174
+
110
175
  ## Navigation
111
176
 
112
177
  Use the top navigation slot to add syn-navigation and horizontal syn-navigation-items.
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.26.0",
10
+ "@modelcontextprotocol/sdk": "^1.27.1",
11
11
  "globby": "^16.1.1",
12
12
  "zod": "^4.3.6",
13
- "@synergy-design-system/assets": "2.0.1"
13
+ "@synergy-design-system/assets": "2.0.2"
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.10.13",
18
+ "@types/node": "^24.12.0",
19
19
  "@types/serve-handler": "^6.1.4",
20
20
  "change-case": "^5.4.4",
21
21
  "custom-elements-manifest": "^2.1.0",
22
- "eslint": "^9.39.2",
22
+ "eslint": "^9.39.4",
23
23
  "jest": "^30.2.0",
24
24
  "ora": "^9.3.0",
25
25
  "playwright": "^1.58.2",
26
26
  "prettier": "^3.8.1",
27
27
  "rimraf": "^6.1.3",
28
- "serve-handler": "^6.1.6",
28
+ "serve-handler": "^6.1.7",
29
29
  "ts-jest": "^29.4.6",
30
30
  "typescript": "^5.9.3",
31
- "@synergy-design-system/components": "3.9.0",
31
+ "@synergy-design-system/components": "3.10.1",
32
32
  "@synergy-design-system/docs": "0.1.0",
33
33
  "@synergy-design-system/eslint-config-syn": "^0.1.0",
34
- "@synergy-design-system/styles": "2.0.1",
35
- "@synergy-design-system/tokens": "^3.9.0",
36
- "@synergy-design-system/fonts": "1.0.3"
34
+ "@synergy-design-system/tokens": "^3.10.1",
35
+ "@synergy-design-system/styles": "2.0.2",
36
+ "@synergy-design-system/fonts": "1.0.4"
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.11.0",
70
+ "version": "2.12.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",
@@ -1,5 +0,0 @@
1
- import { css } from 'lit';
2
-
3
- export default css`
4
- /* Write custom CSS here */
5
- `;