@synergy-design-system/mcp 2.9.0 → 2.11.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,27 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1211](https://github.com/synergy-design-system/synergy-design-system/pull/1211) [`8d3e2a7`](https://github.com/synergy-design-system/synergy-design-system/commit/8d3e2a712619cb94938083620168caafc091323f) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
8
+
9
+ feat: ✨ tokens: export muted color palette (#1210)
10
+
11
+ This release adds the muted color palette, as well as 3 new data color palettes from Figma to the `@synergy-design-system/tokens` package.
12
+
13
+ ## 2.10.0
14
+
15
+ ### Minor Changes
16
+
17
+ - [#1216](https://github.com/synergy-design-system/synergy-design-system/pull/1216) [`fa7ebf8`](https://github.com/synergy-design-system/synergy-design-system/commit/fa7ebf8ca9aef4e246f75688711c7dbb24cb25cb) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-06
18
+
19
+ feat: ✨ `<syn-combobox>` should support `maxlength` attribute (#1184)
20
+
21
+ This release adds the ability to set a maximal input length for `<syn-combobox>` via `<syn-combobox maxlength="5">`.
22
+ This provides the ability to set the maximal amount of free text input for the comboboxes input field.
23
+ It still allows to use options from the list of available options and works as a restriction for free text only.
24
+
3
25
  ## 2.9.0
4
26
 
5
27
  ### Minor Changes
@@ -1 +1 @@
1
- 9b61dd848d186c06c6cdfc4646c64d6f
1
+ 8ff3b2f94fdeb4b49a8f7f96d20fab34
@@ -265,6 +265,17 @@ and `hide()` methods and this attribute will reflect the combobox's open state.
265
265
  return this.nativeElement.label;
266
266
  }
267
267
 
268
+ /**
269
+ * The maximum length of input that will be considered valid.
270
+ */
271
+ @Input()
272
+ set maxlength(v: SynCombobox['maxlength']) {
273
+ this._ngZone.runOutsideAngular(() => (this.nativeElement.maxlength = v));
274
+ }
275
+ get maxlength(): SynCombobox['maxlength'] {
276
+ return this.nativeElement.maxlength;
277
+ }
278
+
268
279
  /**
269
280
  * The preferred placement of the combobox's menu.
270
281
  Note that the actual placement may vary as needed to keep the listbox inside of the viewport.
@@ -3,6 +3,7 @@
3
3
  /* eslint-disable no-underscore-dangle */
4
4
  import type { CSSResultGroup, PropertyValues, TemplateResult } from 'lit';
5
5
  import { classMap } from 'lit/directives/class-map.js';
6
+ import { ifDefined } from 'lit/directives/if-defined.js';
6
7
  import { html } from 'lit';
7
8
  import { property, query, state } from 'lit/decorators.js';
8
9
  import { unsafeHTML } from 'lit/directives/unsafe-html.js';
@@ -228,6 +229,9 @@ export default class SynCombobox extends SynergyElement implements SynergyFormCo
228
229
  /** The combobox's label. If you need to display HTML, use the `label` slot instead. */
229
230
  @property() label = '';
230
231
 
232
+ /** The maximum length of input that will be considered valid. */
233
+ @property({ type: Number }) maxlength: number;
234
+
231
235
  /**
232
236
  * The preferred placement of the combobox's menu.
233
237
  * Note that the actual placement may vary as needed to keep the listbox inside of the viewport.
@@ -1563,6 +1567,7 @@ export default class SynCombobox extends SynergyElement implements SynergyFormCo
1563
1567
  .disabled=${this.disabled}
1564
1568
  .readOnly=${this.readonly}
1565
1569
  .value=${this.displayLabel}
1570
+ maxlength=${ifDefined(this.maxlength)}
1566
1571
  autocomplete="off"
1567
1572
  spellcheck="false"
1568
1573
  autocapitalize="off"
@@ -135,6 +135,11 @@ and `hide()` methods and this attribute will reflect the combobox's open state.
135
135
  */
136
136
  label?: SynCombobox['label'];
137
137
 
138
+ /**
139
+ * The maximum length of input that will be considered valid.
140
+ */
141
+ maxlength?: SynCombobox['maxlength'];
142
+
138
143
  /**
139
144
  * The preferred placement of the combobox's menu.
140
145
  Note that the actual placement may vary as needed to keep the listbox inside of the viewport.
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.9.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`8d3e2a7`](https://github.com/synergy-design-system/synergy-design-system/commit/8d3e2a712619cb94938083620168caafc091323f)]:
8
+ - @synergy-design-system/tokens@3.9.0
9
+
10
+ ## 3.8.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [#1216](https://github.com/synergy-design-system/synergy-design-system/pull/1216) [`fa7ebf8`](https://github.com/synergy-design-system/synergy-design-system/commit/fa7ebf8ca9aef4e246f75688711c7dbb24cb25cb) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-06
15
+
16
+ feat: ✨ `<syn-combobox>` should support `maxlength` attribute (#1184)
17
+
18
+ This release adds the ability to set a maximal input length for `<syn-combobox>` via `<syn-combobox maxlength="5">`.
19
+ This provides the ability to set the maximal amount of free text input for the comboboxes input field.
20
+ It still allows to use options from the list of available options and works as a restriction for free text only.
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies []:
25
+ - @synergy-design-system/tokens@3.8.0
26
+
3
27
  ## 3.7.0
4
28
 
5
29
  ### Minor Changes
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1211](https://github.com/synergy-design-system/synergy-design-system/pull/1211) [`8d3e2a7`](https://github.com/synergy-design-system/synergy-design-system/commit/8d3e2a712619cb94938083620168caafc091323f) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-03-09
8
+
9
+ feat: ✨ tokens: export muted color palette (#1210)
10
+
11
+ This release adds the muted color palette, as well as 3 new data color palettes from Figma to the `@synergy-design-system/tokens` package.
12
+
13
+ ## 3.8.0
14
+
3
15
  ## 3.7.0
4
16
 
5
17
  ### Minor Changes
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.6.2
2
+ * @synergy-design-system/tokens version 3.8.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -93,6 +93,39 @@
93
93
  --syn-color-critical-800: #ffeba5;
94
94
  --syn-color-critical-900: #fff7d3;
95
95
  --syn-color-critical-950: #fffbec;
96
+ --syn-color-data-magenta-50: #51062c;
97
+ --syn-color-data-magenta-100: #85164f;
98
+ --syn-color-data-magenta-200: #a0145b;
99
+ --syn-color-data-magenta-300: #c1156e;
100
+ --syn-color-data-magenta-400: #e13393;
101
+ --syn-color-data-magenta-500: #ef45ab;
102
+ --syn-color-data-magenta-600: #f76fc5;
103
+ --syn-color-data-magenta-700: #fba6dd;
104
+ --syn-color-data-magenta-800: #fcceed;
105
+ --syn-color-data-magenta-900: #fce7f5;
106
+ --syn-color-data-magenta-950: #fdf2f9;
107
+ --syn-color-data-purple-50: #3c0151;
108
+ --syn-color-data-purple-100: #5e1679;
109
+ --syn-color-data-purple-200: #6f1395;
110
+ --syn-color-data-purple-300: #8515b6;
111
+ --syn-color-data-purple-400: #9d1edb;
112
+ --syn-color-data-purple-500: #b73ef7;
113
+ --syn-color-data-purple-600: #c457ff;
114
+ --syn-color-data-purple-700: #e0a7ff;
115
+ --syn-color-data-purple-800: #ebceff;
116
+ --syn-color-data-purple-900: #f6e7ff;
117
+ --syn-color-data-purple-950: #faf3ff;
118
+ --syn-color-data-teal-50: #002f33;
119
+ --syn-color-data-teal-100: #0d5354;
120
+ --syn-color-data-teal-200: #0a6365;
121
+ --syn-color-data-teal-300: #057f80;
122
+ --syn-color-data-teal-400: #009797;
123
+ --syn-color-data-teal-500: #04c8c3;
124
+ --syn-color-data-teal-600: #1de4dd;
125
+ --syn-color-data-teal-700: #51f7ec;
126
+ --syn-color-data-teal-800: #90fff3;
127
+ --syn-color-data-teal-900: #c7fff9;
128
+ --syn-color-data-teal-950: #effefc;
96
129
  --syn-color-error-50: #450709;
97
130
  --syn-color-error-100: #6c0c0e;
98
131
  --syn-color-error-200: #941013;
@@ -115,6 +148,17 @@
115
148
  --syn-color-info-800: #a6e9ff;
116
149
  --syn-color-info-900: #dff4ff;
117
150
  --syn-color-info-950: #effaff;
151
+ --syn-color-muted-50: #2a2120;
152
+ --syn-color-muted-100: #50423e;
153
+ --syn-color-muted-200: #614e4b;
154
+ --syn-color-muted-300: #765f58;
155
+ --syn-color-muted-400: #8d7269;
156
+ --syn-color-muted-500: #ab988c;
157
+ --syn-color-muted-600: #d5ccc5;
158
+ --syn-color-muted-700: #e6e1dc;
159
+ --syn-color-muted-800: #ece8e5;
160
+ --syn-color-muted-900: #f2f0ed;
161
+ --syn-color-muted-950: #f8f7f6;
118
162
  --syn-color-neutral-0: #000206;
119
163
  --syn-color-neutral-50: #00051a;
120
164
  --syn-color-neutral-100: #000a37;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.6.2
2
+ * @synergy-design-system/tokens version 3.8.0
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
@@ -433,6 +433,171 @@ export const SynColorCritical900 = 'var(--syn-color-critical-900)';
433
433
  */
434
434
  export const SynColorCritical950 = 'var(--syn-color-critical-950)';
435
435
 
436
+ /**
437
+ * @type {string}
438
+ */
439
+ export const SynColorDataMagenta50 = 'var(--syn-color-data-magenta-50)';
440
+
441
+ /**
442
+ * @type {string}
443
+ */
444
+ export const SynColorDataMagenta100 = 'var(--syn-color-data-magenta-100)';
445
+
446
+ /**
447
+ * @type {string}
448
+ */
449
+ export const SynColorDataMagenta200 = 'var(--syn-color-data-magenta-200)';
450
+
451
+ /**
452
+ * @type {string}
453
+ */
454
+ export const SynColorDataMagenta300 = 'var(--syn-color-data-magenta-300)';
455
+
456
+ /**
457
+ * @type {string}
458
+ */
459
+ export const SynColorDataMagenta400 = 'var(--syn-color-data-magenta-400)';
460
+
461
+ /**
462
+ * @type {string}
463
+ */
464
+ export const SynColorDataMagenta500 = 'var(--syn-color-data-magenta-500)';
465
+
466
+ /**
467
+ * @type {string}
468
+ */
469
+ export const SynColorDataMagenta600 = 'var(--syn-color-data-magenta-600)';
470
+
471
+ /**
472
+ * @type {string}
473
+ */
474
+ export const SynColorDataMagenta700 = 'var(--syn-color-data-magenta-700)';
475
+
476
+ /**
477
+ * @type {string}
478
+ */
479
+ export const SynColorDataMagenta800 = 'var(--syn-color-data-magenta-800)';
480
+
481
+ /**
482
+ * @type {string}
483
+ */
484
+ export const SynColorDataMagenta900 = 'var(--syn-color-data-magenta-900)';
485
+
486
+ /**
487
+ * @type {string}
488
+ */
489
+ export const SynColorDataMagenta950 = 'var(--syn-color-data-magenta-950)';
490
+
491
+ /**
492
+ * @type {string}
493
+ */
494
+ export const SynColorDataPurple50 = 'var(--syn-color-data-purple-50)';
495
+
496
+ /**
497
+ * @type {string}
498
+ */
499
+ export const SynColorDataPurple100 = 'var(--syn-color-data-purple-100)';
500
+
501
+ /**
502
+ * @type {string}
503
+ */
504
+ export const SynColorDataPurple200 = 'var(--syn-color-data-purple-200)';
505
+
506
+ /**
507
+ * @type {string}
508
+ */
509
+ export const SynColorDataPurple300 = 'var(--syn-color-data-purple-300)';
510
+
511
+ /**
512
+ * @type {string}
513
+ */
514
+ export const SynColorDataPurple400 = 'var(--syn-color-data-purple-400)';
515
+
516
+ /**
517
+ * @type {string}
518
+ */
519
+ export const SynColorDataPurple500 = 'var(--syn-color-data-purple-500)';
520
+
521
+ /**
522
+ * @type {string}
523
+ */
524
+ export const SynColorDataPurple600 = 'var(--syn-color-data-purple-600)';
525
+
526
+ /**
527
+ * @type {string}
528
+ */
529
+ export const SynColorDataPurple700 = 'var(--syn-color-data-purple-700)';
530
+
531
+ /**
532
+ * @type {string}
533
+ */
534
+ export const SynColorDataPurple800 = 'var(--syn-color-data-purple-800)';
535
+
536
+ /**
537
+ * @type {string}
538
+ */
539
+ export const SynColorDataPurple900 = 'var(--syn-color-data-purple-900)';
540
+
541
+ /**
542
+ * @type {string}
543
+ */
544
+ export const SynColorDataPurple950 = 'var(--syn-color-data-purple-950)';
545
+
546
+ /**
547
+ * @type {string}
548
+ */
549
+ export const SynColorDataTeal50 = 'var(--syn-color-data-teal-50)';
550
+
551
+ /**
552
+ * @type {string}
553
+ */
554
+ export const SynColorDataTeal100 = 'var(--syn-color-data-teal-100)';
555
+
556
+ /**
557
+ * @type {string}
558
+ */
559
+ export const SynColorDataTeal200 = 'var(--syn-color-data-teal-200)';
560
+
561
+ /**
562
+ * @type {string}
563
+ */
564
+ export const SynColorDataTeal300 = 'var(--syn-color-data-teal-300)';
565
+
566
+ /**
567
+ * @type {string}
568
+ */
569
+ export const SynColorDataTeal400 = 'var(--syn-color-data-teal-400)';
570
+
571
+ /**
572
+ * @type {string}
573
+ */
574
+ export const SynColorDataTeal500 = 'var(--syn-color-data-teal-500)';
575
+
576
+ /**
577
+ * @type {string}
578
+ */
579
+ export const SynColorDataTeal600 = 'var(--syn-color-data-teal-600)';
580
+
581
+ /**
582
+ * @type {string}
583
+ */
584
+ export const SynColorDataTeal700 = 'var(--syn-color-data-teal-700)';
585
+
586
+ /**
587
+ * @type {string}
588
+ */
589
+ export const SynColorDataTeal800 = 'var(--syn-color-data-teal-800)';
590
+
591
+ /**
592
+ * @type {string}
593
+ */
594
+ export const SynColorDataTeal900 = 'var(--syn-color-data-teal-900)';
595
+
596
+ /**
597
+ * @type {string}
598
+ */
599
+ export const SynColorDataTeal950 = 'var(--syn-color-data-teal-950)';
600
+
436
601
  /**
437
602
  * @type {string}
438
603
  */
@@ -543,6 +708,61 @@ export const SynColorInfo900 = 'var(--syn-color-info-900)';
543
708
  */
544
709
  export const SynColorInfo950 = 'var(--syn-color-info-950)';
545
710
 
711
+ /**
712
+ * @type {string}
713
+ */
714
+ export const SynColorMuted50 = 'var(--syn-color-muted-50)';
715
+
716
+ /**
717
+ * @type {string}
718
+ */
719
+ export const SynColorMuted100 = 'var(--syn-color-muted-100)';
720
+
721
+ /**
722
+ * @type {string}
723
+ */
724
+ export const SynColorMuted200 = 'var(--syn-color-muted-200)';
725
+
726
+ /**
727
+ * @type {string}
728
+ */
729
+ export const SynColorMuted300 = 'var(--syn-color-muted-300)';
730
+
731
+ /**
732
+ * @type {string}
733
+ */
734
+ export const SynColorMuted400 = 'var(--syn-color-muted-400)';
735
+
736
+ /**
737
+ * @type {string}
738
+ */
739
+ export const SynColorMuted500 = 'var(--syn-color-muted-500)';
740
+
741
+ /**
742
+ * @type {string}
743
+ */
744
+ export const SynColorMuted600 = 'var(--syn-color-muted-600)';
745
+
746
+ /**
747
+ * @type {string}
748
+ */
749
+ export const SynColorMuted700 = 'var(--syn-color-muted-700)';
750
+
751
+ /**
752
+ * @type {string}
753
+ */
754
+ export const SynColorMuted800 = 'var(--syn-color-muted-800)';
755
+
756
+ /**
757
+ * @type {string}
758
+ */
759
+ export const SynColorMuted900 = 'var(--syn-color-muted-900)';
760
+
761
+ /**
762
+ * @type {string}
763
+ */
764
+ export const SynColorMuted950 = 'var(--syn-color-muted-950)';
765
+
546
766
  /**
547
767
  * @type {string}
548
768
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.6.2
2
+ * @synergy-design-system/tokens version 3.8.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -93,6 +93,39 @@
93
93
  --syn-color-critical-800: #a1520b;
94
94
  --syn-color-critical-900: #82450c;
95
95
  --syn-color-critical-950: #462104;
96
+ --syn-color-data-magenta-50: #fdf2f9;
97
+ --syn-color-data-magenta-100: #fce7f5;
98
+ --syn-color-data-magenta-200: #fcceed;
99
+ --syn-color-data-magenta-300: #fba6dd;
100
+ --syn-color-data-magenta-400: #f76fc5;
101
+ --syn-color-data-magenta-500: #ef45ab;
102
+ --syn-color-data-magenta-600: #e13393;
103
+ --syn-color-data-magenta-700: #c1156e;
104
+ --syn-color-data-magenta-800: #a0145b;
105
+ --syn-color-data-magenta-900: #85164f;
106
+ --syn-color-data-magenta-950: #51062c;
107
+ --syn-color-data-purple-50: #faf3ff;
108
+ --syn-color-data-purple-100: #f6e7ff;
109
+ --syn-color-data-purple-200: #ebceff;
110
+ --syn-color-data-purple-300: #e0a7ff;
111
+ --syn-color-data-purple-400: #c457ff;
112
+ --syn-color-data-purple-500: #b73ef7;
113
+ --syn-color-data-purple-600: #9d1edb;
114
+ --syn-color-data-purple-700: #8515b6;
115
+ --syn-color-data-purple-800: #6f1395;
116
+ --syn-color-data-purple-900: #5e1679;
117
+ --syn-color-data-purple-950: #3c0151;
118
+ --syn-color-data-teal-50: #effefc;
119
+ --syn-color-data-teal-100: #c7fff9;
120
+ --syn-color-data-teal-200: #90fff3;
121
+ --syn-color-data-teal-300: #51f7ec;
122
+ --syn-color-data-teal-400: #1de4dd;
123
+ --syn-color-data-teal-500: #04c8c3;
124
+ --syn-color-data-teal-600: #009797;
125
+ --syn-color-data-teal-700: #057f80;
126
+ --syn-color-data-teal-800: #0a6365;
127
+ --syn-color-data-teal-900: #0d5354;
128
+ --syn-color-data-teal-950: #002f33;
96
129
  --syn-color-error-50: #fff1f1;
97
130
  --syn-color-error-100: #ffe3e4;
98
131
  --syn-color-error-200: #ffcfd1;
@@ -115,6 +148,17 @@
115
148
  --syn-color-info-800: #02628a;
116
149
  --syn-color-info-900: #085172;
117
150
  --syn-color-info-950: #06334b;
151
+ --syn-color-muted-50: #f8f7f6;
152
+ --syn-color-muted-100: #f2f0ed;
153
+ --syn-color-muted-200: #ece8e5;
154
+ --syn-color-muted-300: #e6e1dc;
155
+ --syn-color-muted-400: #d5ccc5;
156
+ --syn-color-muted-500: #ab988c;
157
+ --syn-color-muted-600: #8d7269;
158
+ --syn-color-muted-700: #765f58;
159
+ --syn-color-muted-800: #614e4b;
160
+ --syn-color-muted-900: #50423e;
161
+ --syn-color-muted-950: #2a2120;
118
162
  --syn-color-neutral-0: #ffffff;
119
163
  --syn-color-neutral-50: #f2f2f2;
120
164
  --syn-color-neutral-100: #e7e7e7;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.6.2
2
+ * @synergy-design-system/tokens version 3.8.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -93,6 +93,39 @@
93
93
  --syn-color-critical-800: #ffe685;
94
94
  --syn-color-critical-900: #fff2c5;
95
95
  --syn-color-critical-950: #fffbea;
96
+ --syn-color-data-magenta-50: #51062c;
97
+ --syn-color-data-magenta-100: #85164f;
98
+ --syn-color-data-magenta-200: #a0145b;
99
+ --syn-color-data-magenta-300: #c1156e;
100
+ --syn-color-data-magenta-400: #e13393;
101
+ --syn-color-data-magenta-500: #ef45ab;
102
+ --syn-color-data-magenta-600: #f76fc5;
103
+ --syn-color-data-magenta-700: #fba6dd;
104
+ --syn-color-data-magenta-800: #fcceed;
105
+ --syn-color-data-magenta-900: #fce7f5;
106
+ --syn-color-data-magenta-950: #fdf2f9;
107
+ --syn-color-data-purple-50: #3c0151;
108
+ --syn-color-data-purple-100: #5e1679;
109
+ --syn-color-data-purple-200: #6f1395;
110
+ --syn-color-data-purple-300: #8515b6;
111
+ --syn-color-data-purple-400: #9d1edb;
112
+ --syn-color-data-purple-500: #b73ef7;
113
+ --syn-color-data-purple-600: #c457ff;
114
+ --syn-color-data-purple-700: #e0a7ff;
115
+ --syn-color-data-purple-800: #ebceff;
116
+ --syn-color-data-purple-900: #f6e7ff;
117
+ --syn-color-data-purple-950: #faf3ff;
118
+ --syn-color-data-teal-50: #002f33;
119
+ --syn-color-data-teal-100: #0d5354;
120
+ --syn-color-data-teal-200: #0a6365;
121
+ --syn-color-data-teal-300: #057f80;
122
+ --syn-color-data-teal-400: #009797;
123
+ --syn-color-data-teal-500: #04c8c3;
124
+ --syn-color-data-teal-600: #1de4dd;
125
+ --syn-color-data-teal-700: #51f7ec;
126
+ --syn-color-data-teal-800: #90fff3;
127
+ --syn-color-data-teal-900: #c7fff9;
128
+ --syn-color-data-teal-950: #effefc;
96
129
  --syn-color-error-50: #4e010a;
97
130
  --syn-color-error-100: #8d0f1e;
98
131
  --syn-color-error-200: #ab091c;
@@ -115,6 +148,17 @@
115
148
  --syn-color-info-800: #b9e5fe;
116
149
  --syn-color-info-900: #e0f1fe;
117
150
  --syn-color-info-950: #f0f9ff;
151
+ --syn-color-muted-50: #31373a;
152
+ --syn-color-muted-100: #4c5357;
153
+ --syn-color-muted-200: #5e676b;
154
+ --syn-color-muted-300: #859298;
155
+ --syn-color-muted-400: #859298;
156
+ --syn-color-muted-500: #9ea9ae;
157
+ --syn-color-muted-600: #bac2c6;
158
+ --syn-color-muted-700: #d5dbdd;
159
+ --syn-color-muted-800: #e8ebec;
160
+ --syn-color-muted-900: #f2f3f6;
161
+ --syn-color-muted-950: #f9fafb;
118
162
  --syn-color-neutral-0: #000000;
119
163
  --syn-color-neutral-50: #31373a;
120
164
  --syn-color-neutral-100: #4c5357;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.6.2
2
+ * @synergy-design-system/tokens version 3.8.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -93,6 +93,39 @@
93
93
  --syn-color-critical-800: #983b08;
94
94
  --syn-color-critical-900: #7c310b;
95
95
  --syn-color-critical-950: #481700;
96
+ --syn-color-data-magenta-50: #fdf2f9;
97
+ --syn-color-data-magenta-100: #fce7f5;
98
+ --syn-color-data-magenta-200: #fcceed;
99
+ --syn-color-data-magenta-300: #fba6dd;
100
+ --syn-color-data-magenta-400: #f76fc5;
101
+ --syn-color-data-magenta-500: #ef45ab;
102
+ --syn-color-data-magenta-600: #e13393;
103
+ --syn-color-data-magenta-700: #c1156e;
104
+ --syn-color-data-magenta-800: #a0145b;
105
+ --syn-color-data-magenta-900: #85164f;
106
+ --syn-color-data-magenta-950: #51062c;
107
+ --syn-color-data-purple-50: #faf3ff;
108
+ --syn-color-data-purple-100: #f6e7ff;
109
+ --syn-color-data-purple-200: #ebceff;
110
+ --syn-color-data-purple-300: #e0a7ff;
111
+ --syn-color-data-purple-400: #c457ff;
112
+ --syn-color-data-purple-500: #b73ef7;
113
+ --syn-color-data-purple-600: #9d1edb;
114
+ --syn-color-data-purple-700: #8515b6;
115
+ --syn-color-data-purple-800: #6f1395;
116
+ --syn-color-data-purple-900: #5e1679;
117
+ --syn-color-data-purple-950: #3c0151;
118
+ --syn-color-data-teal-50: #effefc;
119
+ --syn-color-data-teal-100: #c7fff9;
120
+ --syn-color-data-teal-200: #90fff3;
121
+ --syn-color-data-teal-300: #51f7ec;
122
+ --syn-color-data-teal-400: #1de4dd;
123
+ --syn-color-data-teal-500: #04c8c3;
124
+ --syn-color-data-teal-600: #009797;
125
+ --syn-color-data-teal-700: #057f80;
126
+ --syn-color-data-teal-800: #0a6365;
127
+ --syn-color-data-teal-900: #0d5354;
128
+ --syn-color-data-teal-950: #002f33;
96
129
  --syn-color-error-50: #fff0f2;
97
130
  --syn-color-error-100: #ffdee2;
98
131
  --syn-color-error-200: #ffc3c9;
@@ -115,6 +148,17 @@
115
148
  --syn-color-info-800: #065786;
116
149
  --syn-color-info-900: #0b486f;
117
150
  --syn-color-info-950: #072e4a;
151
+ --syn-color-muted-50: #f9fafb;
152
+ --syn-color-muted-100: #f2f3f6;
153
+ --syn-color-muted-200: #e8ebec;
154
+ --syn-color-muted-300: #d5dbdd;
155
+ --syn-color-muted-400: #bac2c6;
156
+ --syn-color-muted-500: #9ea9ae;
157
+ --syn-color-muted-600: #859298;
158
+ --syn-color-muted-700: #737f85;
159
+ --syn-color-muted-800: #5e676b;
160
+ --syn-color-muted-900: #4c5357;
161
+ --syn-color-muted-950: #31373a;
118
162
  --syn-color-neutral-0: #ffffff;
119
163
  --syn-color-neutral-50: #f9fafb;
120
164
  --syn-color-neutral-100: #f2f3f6;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.6.2
2
+ * @synergy-design-system/tokens version 3.8.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -93,6 +93,39 @@
93
93
  --syn-color-critical-800: #ffeba5;
94
94
  --syn-color-critical-900: #fff7d3;
95
95
  --syn-color-critical-950: #fffbec;
96
+ --syn-color-data-magenta-50: #51062c;
97
+ --syn-color-data-magenta-100: #85164f;
98
+ --syn-color-data-magenta-200: #a0145b;
99
+ --syn-color-data-magenta-300: #c1156e;
100
+ --syn-color-data-magenta-400: #e13393;
101
+ --syn-color-data-magenta-500: #ef45ab;
102
+ --syn-color-data-magenta-600: #f76fc5;
103
+ --syn-color-data-magenta-700: #fba6dd;
104
+ --syn-color-data-magenta-800: #fcceed;
105
+ --syn-color-data-magenta-900: #fce7f5;
106
+ --syn-color-data-magenta-950: #fdf2f9;
107
+ --syn-color-data-purple-50: #3c0151;
108
+ --syn-color-data-purple-100: #5e1679;
109
+ --syn-color-data-purple-200: #6f1395;
110
+ --syn-color-data-purple-300: #8515b6;
111
+ --syn-color-data-purple-400: #9d1edb;
112
+ --syn-color-data-purple-500: #b73ef7;
113
+ --syn-color-data-purple-600: #c457ff;
114
+ --syn-color-data-purple-700: #e0a7ff;
115
+ --syn-color-data-purple-800: #ebceff;
116
+ --syn-color-data-purple-900: #f6e7ff;
117
+ --syn-color-data-purple-950: #faf3ff;
118
+ --syn-color-data-teal-50: #002f33;
119
+ --syn-color-data-teal-100: #0d5354;
120
+ --syn-color-data-teal-200: #0a6365;
121
+ --syn-color-data-teal-300: #057f80;
122
+ --syn-color-data-teal-400: #009797;
123
+ --syn-color-data-teal-500: #04c8c3;
124
+ --syn-color-data-teal-600: #1de4dd;
125
+ --syn-color-data-teal-700: #51f7ec;
126
+ --syn-color-data-teal-800: #90fff3;
127
+ --syn-color-data-teal-900: #c7fff9;
128
+ --syn-color-data-teal-950: #effefc;
96
129
  --syn-color-error-50: #450709;
97
130
  --syn-color-error-100: #6c0c0e;
98
131
  --syn-color-error-200: #941013;
@@ -115,6 +148,17 @@
115
148
  --syn-color-info-800: #a6e9ff;
116
149
  --syn-color-info-900: #dff4ff;
117
150
  --syn-color-info-950: #effaff;
151
+ --syn-color-muted-50: #2a2120;
152
+ --syn-color-muted-100: #50423e;
153
+ --syn-color-muted-200: #614e4b;
154
+ --syn-color-muted-300: #765f58;
155
+ --syn-color-muted-400: #8d7269;
156
+ --syn-color-muted-500: #ab988c;
157
+ --syn-color-muted-600: #d5ccc5;
158
+ --syn-color-muted-700: #e6e1dc;
159
+ --syn-color-muted-800: #ece8e5;
160
+ --syn-color-muted-900: #f2f0ed;
161
+ --syn-color-muted-950: #f8f7f6;
118
162
  --syn-color-neutral-0: #000206;
119
163
  --syn-color-neutral-50: #00051a;
120
164
  --syn-color-neutral-100: #000a37;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 3.6.2
2
+ * @synergy-design-system/tokens version 3.8.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
@@ -93,6 +93,39 @@
93
93
  --syn-color-critical-800: #a1520b;
94
94
  --syn-color-critical-900: #82450c;
95
95
  --syn-color-critical-950: #462104;
96
+ --syn-color-data-magenta-50: #fdf2f9;
97
+ --syn-color-data-magenta-100: #fce7f5;
98
+ --syn-color-data-magenta-200: #fcceed;
99
+ --syn-color-data-magenta-300: #fba6dd;
100
+ --syn-color-data-magenta-400: #f76fc5;
101
+ --syn-color-data-magenta-500: #ef45ab;
102
+ --syn-color-data-magenta-600: #e13393;
103
+ --syn-color-data-magenta-700: #c1156e;
104
+ --syn-color-data-magenta-800: #a0145b;
105
+ --syn-color-data-magenta-900: #85164f;
106
+ --syn-color-data-magenta-950: #51062c;
107
+ --syn-color-data-purple-50: #faf3ff;
108
+ --syn-color-data-purple-100: #f6e7ff;
109
+ --syn-color-data-purple-200: #ebceff;
110
+ --syn-color-data-purple-300: #e0a7ff;
111
+ --syn-color-data-purple-400: #c457ff;
112
+ --syn-color-data-purple-500: #b73ef7;
113
+ --syn-color-data-purple-600: #9d1edb;
114
+ --syn-color-data-purple-700: #8515b6;
115
+ --syn-color-data-purple-800: #6f1395;
116
+ --syn-color-data-purple-900: #5e1679;
117
+ --syn-color-data-purple-950: #3c0151;
118
+ --syn-color-data-teal-50: #effefc;
119
+ --syn-color-data-teal-100: #c7fff9;
120
+ --syn-color-data-teal-200: #90fff3;
121
+ --syn-color-data-teal-300: #51f7ec;
122
+ --syn-color-data-teal-400: #1de4dd;
123
+ --syn-color-data-teal-500: #04c8c3;
124
+ --syn-color-data-teal-600: #009797;
125
+ --syn-color-data-teal-700: #057f80;
126
+ --syn-color-data-teal-800: #0a6365;
127
+ --syn-color-data-teal-900: #0d5354;
128
+ --syn-color-data-teal-950: #002f33;
96
129
  --syn-color-error-50: #fff1f1;
97
130
  --syn-color-error-100: #ffe3e4;
98
131
  --syn-color-error-200: #ffcfd1;
@@ -115,6 +148,17 @@
115
148
  --syn-color-info-800: #02628a;
116
149
  --syn-color-info-900: #085172;
117
150
  --syn-color-info-950: #06334b;
151
+ --syn-color-muted-50: #f8f7f6;
152
+ --syn-color-muted-100: #f2f0ed;
153
+ --syn-color-muted-200: #ece8e5;
154
+ --syn-color-muted-300: #e6e1dc;
155
+ --syn-color-muted-400: #d5ccc5;
156
+ --syn-color-muted-500: #ab988c;
157
+ --syn-color-muted-600: #8d7269;
158
+ --syn-color-muted-700: #765f58;
159
+ --syn-color-muted-800: #614e4b;
160
+ --syn-color-muted-900: #50423e;
161
+ --syn-color-muted-950: #2a2120;
118
162
  --syn-color-neutral-0: #ffffff;
119
163
  --syn-color-neutral-50: #f2f2f2;
120
164
  --syn-color-neutral-100: #e7e7e7;
package/package.json CHANGED
@@ -28,12 +28,12 @@
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.7.0",
31
+ "@synergy-design-system/components": "3.9.0",
32
32
  "@synergy-design-system/docs": "0.1.0",
33
- "@synergy-design-system/styles": "2.0.1",
34
33
  "@synergy-design-system/eslint-config-syn": "^0.1.0",
35
- "@synergy-design-system/fonts": "1.0.3",
36
- "@synergy-design-system/tokens": "^3.7.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"
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.9.0",
70
+ "version": "2.11.0",
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",