Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 990 Bytes

CHANGELOG_WORKBENCH_LATEST.md

File metadata and controls

34 lines (24 loc) · 990 Bytes

18.0.0-beta.2 (2024-06-13)

Code Refactoring

  • workbench: change default icon font directory from /assets/fonts to /fonts (d347dae)

BREAKING CHANGES

  • workbench: The default icon font directory has changed from /assets/fonts to /fonts.

    To migrate:

    • Move the fonts folder from /src/assets to /public.
    • Include content of the public folder in angular.json:
      "assets": [
        {
          "glob": "**/*",
          "input": "public"
        }
      ]
    • Alternatively, to not change the folder structure, you can configure a custom path to the icon font directory in your styles.scss:
      use '@scion/workbench' with (
        $icon-font: (
          directory: 'assets/fonts'
        )
      );