17.0.0 (@scion/components)
github-actions
released this
15 Nov 20:21
·
36 commits
to master
since this release
17.0.0 (2023-11-15)
Dependencies
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();
-