@synergy-design-system/mcp 1.6.1 → 1.6.2

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,3 +1,10 @@
1
+ # [@synergy-design-system/mcp-v1.6.2](https://github.com/synergy-design-system/synergy-design-system/compare/mcp/1.6.1...mcp/1.6.2) (2025-10-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * 🐛 Synergy does not work with Typescript 5.9.x ([#1027](https://github.com/synergy-design-system/synergy-design-system/issues/1027)) ([7f6921c](https://github.com/synergy-design-system/synergy-design-system/commit/7f6921cccb536a9a91e7d61b487fef2ad62dc831))
7
+
1
8
  # [@synergy-design-system/mcp-v1.6.1](https://github.com/synergy-design-system/synergy-design-system/compare/mcp/1.6.0...mcp/1.6.1) (2025-09-30)
2
9
 
3
10
 
@@ -1 +1 @@
1
- 265c7f6e05d6b1c319e3d8accbb4f950
1
+ 18fcbda4eac37b507ca3eb507699801d
@@ -414,8 +414,10 @@ implied, allowing any numeric value.
414
414
  * Indicates whether the browser's autocorrect feature is on or off.
415
415
  */
416
416
  @Input()
417
- set autocorrect(v: SynInput['autocorrect']) {
418
- this._ngZone.runOutsideAngular(() => (this.nativeElement.autocorrect = v));
417
+ set autocorrect(v: '' | SynInput['autocorrect']) {
418
+ this._ngZone.runOutsideAngular(
419
+ () => (this.nativeElement.autocorrect = v === '' || v),
420
+ );
419
421
  }
420
422
  get autocorrect(): SynInput['autocorrect'] {
421
423
  return this.nativeElement.autocorrect;
@@ -196,7 +196,15 @@ export default class SynInput extends SynergyElement implements SynergyFormContr
196
196
  @property() autocapitalize: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
197
197
 
198
198
  /** Indicates whether the browser's autocorrect feature is on or off. */
199
- @property() autocorrect: 'off' | 'on';
199
+ @property({
200
+ attribute: 'autocorrect',
201
+ reflect: true,
202
+ converter: {
203
+ fromAttribute: (value: string) => value === '' || value === 'on',
204
+ toAttribute: (value: boolean) => (value ? 'on' : 'off')
205
+ },
206
+ type: Boolean,
207
+ }) autocorrect: boolean;
200
208
 
201
209
  /**
202
210
  * Specifies what permission the browser has to provide assistance in filling out form field values. Refer to
@@ -832,7 +840,7 @@ export default class SynInput extends SynergyElement implements SynergyFormContr
832
840
  .value=${live(this.value)}
833
841
  autocapitalize=${ifDefined(this.autocapitalize)}
834
842
  autocomplete=${ifDefined(this.autocomplete)}
835
- autocorrect=${ifDefined(this.autocorrect)}
843
+ autocorrect=${ifDefined(this.autocorrect ? undefined : 'off')}
836
844
  ?autofocus=${this.autofocus}
837
845
  spellcheck=${this.spellcheck}
838
846
  pattern=${ifDefined(this.pattern)}
@@ -287,8 +287,10 @@ the same document or shadow root for this to work.
287
287
  * Indicates whether the browser's autocorrect feature is on or off.
288
288
  */
289
289
  @Input()
290
- set autocorrect(v: SynTextarea['autocorrect']) {
291
- this._ngZone.runOutsideAngular(() => (this.nativeElement.autocorrect = v));
290
+ set autocorrect(v: '' | SynTextarea['autocorrect']) {
291
+ this._ngZone.runOutsideAngular(
292
+ () => (this.nativeElement.autocorrect = v === '' || v),
293
+ );
292
294
  }
293
295
  get autocorrect(): SynTextarea['autocorrect'] {
294
296
  return this.nativeElement.autocorrect;
@@ -113,7 +113,15 @@ export default class SynTextarea extends SynergyElement implements SynergyFormCo
113
113
  @property() autocapitalize: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
114
114
 
115
115
  /** Indicates whether the browser's autocorrect feature is on or off. */
116
- @property() autocorrect: string;
116
+ @property({
117
+ attribute: 'autocorrect',
118
+ reflect: true,
119
+ converter: {
120
+ fromAttribute: (value: string) => value === '' || value === 'on',
121
+ toAttribute: (value: boolean) => (value ? 'on' : 'off')
122
+ },
123
+ type: Boolean,
124
+ }) autocorrect: boolean;
117
125
 
118
126
  /**
119
127
  * Specifies what permission the browser has to provide assistance in filling out form field values. Refer to
@@ -370,7 +378,7 @@ export default class SynTextarea extends SynergyElement implements SynergyFormCo
370
378
  minlength=${ifDefined(this.minlength)}
371
379
  maxlength=${ifDefined(this.maxlength)}
372
380
  autocapitalize=${ifDefined(this.autocapitalize)}
373
- autocorrect=${ifDefined(this.autocorrect)}
381
+ autocorrect=${ifDefined(this.autocorrect ? undefined : 'off')}
374
382
  ?autofocus=${this.autofocus}
375
383
  spellcheck=${ifDefined(this.spellcheck)}
376
384
  enterkeyhint=${ifDefined(this.enterkeyhint)}
@@ -1,3 +1,10 @@
1
+ # [@synergy-design-system/components-v2.45.2](https://github.com/synergy-design-system/synergy-design-system/compare/components/2.45.1...components/2.45.2) (2025-10-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * 🐛 Synergy does not work with Typescript 5.9.x ([#1027](https://github.com/synergy-design-system/synergy-design-system/issues/1027)) ([7f6921c](https://github.com/synergy-design-system/synergy-design-system/commit/7f6921cccb536a9a91e7d61b487fef2ad62dc831))
7
+
1
8
  # [@synergy-design-system/components-v2.45.1](https://github.com/synergy-design-system/synergy-design-system/compare/components/2.45.0...components/2.45.1) (2025-09-30)
2
9
 
3
10
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.26.0
2
+ * @synergy-design-system/tokens version 2.26.1
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.26.0
2
+ * @synergy-design-system/tokens version 2.26.1
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.26.0
2
+ * @synergy-design-system/tokens version 2.26.1
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.26.0
2
+ * @synergy-design-system/tokens version 2.26.1
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.26.0
2
+ * @synergy-design-system/tokens version 2.26.1
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.26.0
2
+ * @synergy-design-system/tokens version 2.26.1
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.26.0
2
+ * @synergy-design-system/tokens version 2.26.1
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly, this file was auto-generated.
5
5
  */
package/package.json CHANGED
@@ -33,11 +33,11 @@
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.45.1",
37
36
  "@synergy-design-system/docs": "0.1.0",
38
- "@synergy-design-system/tokens": "^2.26.1",
39
37
  "@synergy-design-system/eslint-config-syn": "^0.1.0",
40
- "@synergy-design-system/styles": "1.8.0"
38
+ "@synergy-design-system/components": "2.45.2",
39
+ "@synergy-design-system/styles": "1.8.0",
40
+ "@synergy-design-system/tokens": "^2.26.1"
41
41
  },
42
42
  "exports": {
43
43
  ".": {
@@ -122,7 +122,7 @@
122
122
  "directory": "packages/mcp"
123
123
  },
124
124
  "type": "module",
125
- "version": "1.6.1",
125
+ "version": "1.6.2",
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",