@scion/workbench 18.0.0-beta.1 → 18.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_index.scss +3 -3
- package/design/_workbench-icon-font.scss +1 -1
- package/package.json +1 -1
package/_index.scss
CHANGED
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
* ```scss
|
|
100
100
|
* @use '@scion/workbench' with (
|
|
101
101
|
* $icon-font: (
|
|
102
|
-
* directory: '/path/to/font', // defaults to '/
|
|
102
|
+
* directory: '/path/to/font', // defaults to '/fonts' if omitted
|
|
103
103
|
* filename: 'scion-workbench-icons' // defaults to 'scion-workbench-icons' if omitted
|
|
104
104
|
* version: '1.0.0' // appended to the HTTP request to load the icon font, enabling browser cache invalidation when icons change
|
|
105
105
|
* );
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
* ```scss
|
|
117
117
|
* @use '@scion/workbench' with (
|
|
118
118
|
* $icon-font: (
|
|
119
|
-
* directory: 'path/to/font' // no leading slash, typically `
|
|
119
|
+
* directory: 'path/to/font' // no leading slash, typically `fonts`
|
|
120
120
|
* )
|
|
121
121
|
* );
|
|
122
122
|
* ```
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
* ```scss
|
|
135
135
|
* @use '@scion/workbench' with (
|
|
136
136
|
* $icon-font: (
|
|
137
|
-
* directory: '^path/to/font' // no leading slash but with a caret (^), typically `^
|
|
137
|
+
* directory: '^path/to/font' // no leading slash but with a caret (^), typically `^fonts`
|
|
138
138
|
* )
|
|
139
139
|
* );
|
|
140
140
|
* ```
|
|
@@ -21,7 +21,7 @@ $-default-icon-font-config: (
|
|
|
21
21
|
// To keep the workbench configuration minimal for Angular projects deployed in the context root, we reference font files by
|
|
22
22
|
// their root relative path. Consequently, applications deployed in a subdirectory require additional configuration depending
|
|
23
23
|
// on whether the application is built with esbuild or webpack.
|
|
24
|
-
directory: '/
|
|
24
|
+
directory: '/fonts',
|
|
25
25
|
filename: 'scion-workbench-icons',
|
|
26
26
|
version: $-version,
|
|
27
27
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scion/workbench",
|
|
3
|
-
"version": "18.0.0-beta.
|
|
3
|
+
"version": "18.0.0-beta.2",
|
|
4
4
|
"description": "SCION Workbench enables the creation of Angular web applications that require a flexible layout to arrange content side-by-side or stacked, all personalizable by the user via drag & drop.",
|
|
5
5
|
"license": "EPL-2.0",
|
|
6
6
|
"private": false,
|