-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
787341a
commit 1aea586
Showing
3 changed files
with
95 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,35 @@ | ||
## [18.1.1](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/compare/components-18.1.0...components-18.1.1) (2024-10-28) | ||
# [19.0.0](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/compare/components-18.1.1...components-19.0.0) (2024-11-29) | ||
|
||
|
||
### Dependencies | ||
|
||
* **components:** update `@scion/components` to Angular 19 ([0918769](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/commit/0918769fa37a77e31cd3fe281e11578399ec437c)) | ||
|
||
|
||
### Performance Improvements | ||
|
||
* **components/dimension:** avoid unnecessary change detection cycles ([948061e](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/commit/948061e2382f48fb697b2f639875b1ddc167483c)) | ||
* **components/viewport:** avoid change detection cycle when scrolling the viewport ([402b408](https://github.com/SchweizerischeBundesbahnen/scion-toolkit/commit/402b408b91ba2b7feca76def5289499458d353e4)) | ||
|
||
|
||
### Dependencies | ||
### BREAKING CHANGES | ||
|
||
* **components:** Updating `@scion/components` to Angular 19 introduced a breaking change. | ||
|
||
To migrate: | ||
- Update your application to Angular 19; for detailed migration instructions, refer to https://v19.angular.dev/update-guide; | ||
* **components/viewport:** Changed viewport to emit scroll events outside the Angular zone. | ||
|
||
To handle scroll events inside the Angular zone, e.g., if updating component bindings, manually synchronize with the Angular zone, as follows: | ||
|
||
```ts | ||
inject(NgZone).run(() => { | ||
... | ||
}); | ||
``` | ||
|
||
|
||
* **components:** SCION Components requires `@scion/toolkit` version `1.6.0` or later. | ||
### Deprecations | ||
|
||
* **components:** `SciDimensionModule`, `SciViewportModule`, `SciSashboxModule`, `SciSplitterModule` and `SciThrobberModule` have been deprecated. Import respective standalone components and directives instead. The modules will be removed in a future release. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters