github-actions
released this
29 Nov 12:57
·
5 commits
to master
since this release
19.0.0 (2024-11-29)
Dependencies
- components: update
@scion/components
to Angular 19 (0918769)
Performance Improvements
- components/viewport: avoid change detection cycle when scrolling the viewport (402b408)
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:
inject(NgZone).run(() => { ... });
Deprecations
- components:
SciDimensionModule
,SciViewportModule
,SciSashboxModule
,SciSplitterModule
andSciThrobberModule
have been deprecated. Import respective standalone components and directives instead. The modules will be removed in a future release.