19.0.0 (2024-11-29)
- components: update
@scion/components
to Angular 19 (0918769)
- components/viewport: avoid change detection cycle when scrolling the viewport (402b408)
-
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(() => { ... });
- 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.