Skip to content

Latest commit

 

History

History
35 lines (18 loc) · 1.37 KB

CHANGELOG_COMPONENTS_LATEST.md

File metadata and controls

35 lines (18 loc) · 1.37 KB

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.