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