-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps(workbench): update @scion/workbench to Angular 17
closes #485 BREAKING CHANGE: Updating `@scion/workbench` to Angular 17 introduced a breaking change. To migrate: - update your application to Angular 17.x; for detailed migration instructions, refer to https://v17.angular.io/guide/update-to-latest-version; - update @scion/components to version 17; for detailed migration instructions, refer to https://github.com/SchweizerischeBundesbahnen/scion-toolkit/blob/master/CHANGELOG_COMPONENTS.md; - If deploying the application in a subdirectory, use a relative directory path for the browser to load the icon files relative to the document base URL (as specified in the `<base>` HTML tag). Note that using a relative path requires to exclude the icon files from the application build. Depending on building the application with esbuild `@angular-devkit/build-angular:application` or webpack `@angular-devkit/build-angular:browser`, different steps are required to exclude the icons from the build. ** Using @angular-devkit/build-angular:application (esbuild) ** Configure the `@scion/workbench` SCSS module to load the icon font relative to the document base URL: ```scss use '@scion/workbench' with ( $icon-font: ( directory: 'path/to/font' // no leading slash, typically `assets/fonts` ) ; `` Add the path to the `externalDependencies` build option in the `angular.json` file: ```json "externalDependencies": [ "path/to/font/scion-workbench-icons.*" ] ``` ** Using @angular-devkit/build-angular:browser (webpack) ** Configure the `@scion/workbench` SCSS module to load the icon font relative to the document base URL: ```scss use '@scion/workbench' with ( $icon-font: ( directory: '^path/to/font' // no leading slash but with a caret (^), typically `^assets/fonts` ) ); ```
- Loading branch information
1 parent
9c8bba3
commit 2b6449f
Showing
27 changed files
with
10,596 additions
and
12,188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.