Skip to content

17.0.0 (@scion/components)

Compare
Choose a tag to compare
@github-actions github-actions released this 15 Nov 20:21
· 36 commits to master since this release

17.0.0 (2023-11-15)

Dependencies

  • components: update @scion/components to Angular 17 (ac7f284), closes #174

BREAKING CHANGES

  • components: Updating @scion/components to Angular 17 introduced a breaking change.

    To migrate:

    • Update your application to Angular 17; for detailed migration instructions, refer to https://v17.angular.io/guide/update-to-latest-version;

    • Scrollbar-related mixins have been moved to the @scion/components/scrollbar SCSS module; migrate as follows:

      Before migration:

      @use '@scion/components' as sci-components;
      @include sci-components.scrollbar-hide-when-inactive();
      @include sci-components.scrollbar-position();

      After migration:

      @use '@scion/components/scrollbar' as sci-scrollbar;
      @include sci-scrollbar.scrollbar-hide-when-inactive();
      @include sci-scrollbar.scrollbar-position();