Skip to content

19.0.0 (@scion/components)

Latest
Compare
Choose a tag to compare
@github-actions 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:

  • 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 and SciThrobberModule have been deprecated. Import respective standalone components and directives instead. The modules will be removed in a future release.