@synergy-design-system/react 2.77.1 → 3.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,50 @@
1
1
  # @synergy-design-system/react
2
2
 
3
+ ## 3.1.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`96dff2e`](https://github.com/synergy-design-system/synergy-design-system/commit/96dff2ebb47cee901f72773664ee864db5653219)]:
8
+ - @synergy-design-system/components@3.1.0
9
+ - @synergy-design-system/tokens@3.1.0
10
+
11
+ ## 3.0.0
12
+
13
+ ### Major Changes
14
+
15
+ - [#1160](https://github.com/synergy-design-system/synergy-design-system/pull/1160) [`669cbcb`](https://github.com/synergy-design-system/synergy-design-system/commit/669cbcb9cccce72134beac99ac12a2591f3e3c74) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-02-02
16
+
17
+ feat: 💥 Component updates and deprecations for Synergy 3.0
18
+
19
+ This release removes deprecated attributes, updates defaults, and improves bundle size by removing fallback variables.
20
+
21
+ **Key Changes:**
22
+ - **Breaking:** Removed `hoist` attribute from `<syn-combobox>`, `<syn-dropdown>`, `<syn-select>`, and `<syn-tooltip>` (no longer needed with Popover API support)
23
+ - **Breaking:** Removed `strategy` attribute from `<syn-popup>` (no longer needed with Popover API support)
24
+ - **Breaking:** Removed `rail` attribute from `<syn-side-nav>` (use `variant="rail"` instead)
25
+ - **Breaking:** Changed default for `<syn-input>` `numeric-strategy` from "native" to "modern"
26
+ - **Breaking:** Variable fallbacks removed - all CSS custom property fallbacks have been eliminated to reduce bundle size
27
+ - **Breaking:** Token package alignment - components now has a `peerDependency` on `@synergy-design-system/tokens@^3.0.0`
28
+ - **Breaking:** Angular support - removed support for Angular 16 and 17 (no longer actively maintained)
29
+ - **Deprecation Notice:** Icon migration utilities (`migrateIconName`, `migrateIconNameFilled`, `migrationLibrary`) are now deprecated
30
+ - **Deprecation Notice:** `enableExperimentalSettingEmitEvents` is now deprecated in favor of `enableSettingEmitEvents`
31
+
32
+ **Migration Steps:**
33
+ - Remove all `hoist` and `strategy` attributes from affected components
34
+ - Update `<syn-side-nav rail>` to `<syn-side-nav variant="rail">`
35
+ - Remove `numeric-strategy="modern"` from `<syn-input>` as it's now the default
36
+ - Update Angular projects to version 18 or higher
37
+ - Replace `enableExperimentalSettingEmitEvents` with `enableSettingEmitEvents`
38
+ - Ensure matching versions of components and tokens packages
39
+
40
+ For detailed migration instructions, please refer to the [breaking changes documentation](https://synergy-design-system.github.io/?path=/docs/packages-components-breaking-changes--docs).
41
+
42
+ ### Patch Changes
43
+
44
+ - Updated dependencies [[`669cbcb`](https://github.com/synergy-design-system/synergy-design-system/commit/669cbcb9cccce72134beac99ac12a2591f3e3c74), [`669cbcb`](https://github.com/synergy-design-system/synergy-design-system/commit/669cbcb9cccce72134beac99ac12a2591f3e3c74)]:
45
+ - @synergy-design-system/components@3.0.0
46
+ - @synergy-design-system/tokens@3.0.0
47
+
3
48
  ## 2.77.1
4
49
 
5
50
  ### Patch Changes
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "dependencies": {
7
7
  "@lit/react": "^1.0.8",
8
- "@synergy-design-system/components": "^2.77.1"
8
+ "@synergy-design-system/components": "3.1.0"
9
9
  },
10
10
  "description": "React wrappers for the Synergy Design System",
11
11
  "exports": {
@@ -43,12 +43,12 @@
43
43
  "directory": "packages/react"
44
44
  },
45
45
  "type": "module",
46
- "version": "2.77.1",
46
+ "version": "3.1.0",
47
47
  "devDependencies": {
48
48
  "@types/react": "^19.2.7",
49
49
  "react": "^19.2.3"
50
50
  },
51
51
  "peerDependencies": {
52
- "@synergy-design-system/tokens": "^2.48.2"
52
+ "@synergy-design-system/tokens": "3.1.0"
53
53
  }
54
54
  }