@gostudent/shared-ui-library 1.5.0-DT-16758.1 → 1.5.0
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/dist/fonts/work-sans-latin-400-normal.woff2 +0 -0
- package/dist/fonts/work-sans-latin-500-normal.woff2 +0 -0
- package/dist/fonts/work-sans-latin-600-normal.woff2 +0 -0
- package/dist/fonts/work-sans-latin-700-normal.woff2 +0 -0
- package/dist/themes/theme-gs.css +32 -0
- package/dist/themes/theme-sk.css +32 -0
- package/package.json +2 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/themes/theme-gs.css
CHANGED
|
@@ -367,6 +367,38 @@
|
|
|
367
367
|
}
|
|
368
368
|
|
|
369
369
|
|
|
370
|
+
@font-face {
|
|
371
|
+
font-family: "Work Sans";
|
|
372
|
+
src: url('../fonts/work-sans-latin-400-normal.woff2') format('woff2');
|
|
373
|
+
font-weight: 400;
|
|
374
|
+
font-style: normal;
|
|
375
|
+
font-display: swap;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
@font-face {
|
|
379
|
+
font-family: "Work Sans";
|
|
380
|
+
src: url('../fonts/work-sans-latin-500-normal.woff2') format('woff2');
|
|
381
|
+
font-weight: 500;
|
|
382
|
+
font-style: normal;
|
|
383
|
+
font-display: swap;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
@font-face {
|
|
387
|
+
font-family: "Work Sans";
|
|
388
|
+
src: url('../fonts/work-sans-latin-600-normal.woff2') format('woff2');
|
|
389
|
+
font-weight: 600;
|
|
390
|
+
font-style: normal;
|
|
391
|
+
font-display: swap;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
@font-face {
|
|
395
|
+
font-family: "Work Sans";
|
|
396
|
+
src: url('../fonts/work-sans-latin-700-normal.woff2') format('woff2');
|
|
397
|
+
font-weight: 700;
|
|
398
|
+
font-style: normal;
|
|
399
|
+
font-display: swap;
|
|
400
|
+
}
|
|
401
|
+
|
|
370
402
|
* {
|
|
371
403
|
-webkit-font-smoothing: antialiased;
|
|
372
404
|
-moz-osx-font-smoothing: grayscale;
|
package/dist/themes/theme-sk.css
CHANGED
|
@@ -377,6 +377,38 @@
|
|
|
377
377
|
}
|
|
378
378
|
|
|
379
379
|
|
|
380
|
+
@font-face {
|
|
381
|
+
font-family: "Work Sans";
|
|
382
|
+
src: url('../fonts/work-sans-latin-400-normal.woff2') format('woff2');
|
|
383
|
+
font-weight: 400;
|
|
384
|
+
font-style: normal;
|
|
385
|
+
font-display: swap;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
@font-face {
|
|
389
|
+
font-family: "Work Sans";
|
|
390
|
+
src: url('../fonts/work-sans-latin-500-normal.woff2') format('woff2');
|
|
391
|
+
font-weight: 500;
|
|
392
|
+
font-style: normal;
|
|
393
|
+
font-display: swap;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
@font-face {
|
|
397
|
+
font-family: "Work Sans";
|
|
398
|
+
src: url('../fonts/work-sans-latin-600-normal.woff2') format('woff2');
|
|
399
|
+
font-weight: 600;
|
|
400
|
+
font-style: normal;
|
|
401
|
+
font-display: swap;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
@font-face {
|
|
405
|
+
font-family: "Work Sans";
|
|
406
|
+
src: url('../fonts/work-sans-latin-700-normal.woff2') format('woff2');
|
|
407
|
+
font-weight: 700;
|
|
408
|
+
font-style: normal;
|
|
409
|
+
font-display: swap;
|
|
410
|
+
}
|
|
411
|
+
|
|
380
412
|
* {
|
|
381
413
|
-webkit-font-smoothing: antialiased;
|
|
382
414
|
-moz-osx-font-smoothing: grayscale;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gostudent/shared-ui-library",
|
|
3
|
-
"version": "1.5.0
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@commitlint/cli": "^18.4.4",
|
|
98
98
|
"@commitlint/config-conventional": "^18.4.4",
|
|
99
|
+
"@fontsource/work-sans": "^5.2.8",
|
|
99
100
|
"@gostudent/semantic-release-config": "2.3.0",
|
|
100
101
|
"@storybook/addon-essentials": "8.6.15",
|
|
101
102
|
"@storybook/addon-interactions": "8.6.15",
|