@aleph-alpha/config-css 0.21.0 → 0.21.1
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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/dist/index.js +531 -526
- package/package.json +3 -3
- package/src/presetWebFontsAlephAlpha.ts +37 -13
- package/src/utils/convert-fonts.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@
|
|
|
5
5
|
- Updated config-prettier to 0.3.117
|
|
6
6
|
- Updated config-eslint to 0.3.183
|
|
7
7
|
|
|
8
|
+
## [0.21.1](https://github.com/Aleph-Alpha/frontend-hub/compare/config-css-preset-0.21.0...config-css-preset-0.21.1) (2026-03-17)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **config-css-preset:** update font path ([#172](https://github.com/Aleph-Alpha/frontend-hub/issues/172)) ([c1db399](https://github.com/Aleph-Alpha/frontend-hub/commit/c1db39950f7035264e250aed14db7f4ee3daa3d8))
|
|
14
|
+
|
|
8
15
|
## [0.21.0](https://github.com/Aleph-Alpha/frontend-hub/compare/config-css-preset-0.20.0...config-css-preset-0.21.0) (2026-03-16)
|
|
9
16
|
|
|
10
17
|
|
package/README.md
CHANGED
|
@@ -131,7 +131,7 @@ This will:
|
|
|
131
131
|
The generated TypeScript file will look like:
|
|
132
132
|
|
|
133
133
|
```typescript
|
|
134
|
-
export const montserrat600 = 'data
|
|
134
|
+
export const montserrat600 = 'data:font/woff2;base64,<base64-encoded-font-data>';
|
|
135
135
|
```
|
|
136
136
|
|
|
137
137
|
## Config CSS Preset helps in UI Customization
|