@cuby-ui/core 0.0.393 → 0.0.394
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/fonts/Nunito-ExtraBoldItalic.eot +0 -0
- package/fonts/Nunito-ExtraBoldItalic.otf +0 -0
- package/fonts/Nunito-ExtraBoldItalic.svg +9508 -0
- package/fonts/Nunito-ExtraBoldItalic.ttf +0 -0
- package/fonts/Nunito-ExtraBoldItalic.woff +0 -0
- package/fonts/Nunito-ExtraBoldItalic.woff2 +0 -0
- package/package.json +4 -4
- package/styles/fonts.scss +14 -0
- package/styles/theme.scss +2 -1
- package/styles/variables/fonts.scss +1 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuby-ui/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.394",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
7
7
|
"@angular/elements": ">=18.0.0",
|
|
8
8
|
"@angular/forms": ">=18.0.0",
|
|
9
|
-
"@cuby-ui/api": "^0.0.
|
|
10
|
-
"@cuby-ui/cdk": "^0.0.
|
|
11
|
-
"@cuby-ui/icons": "^0.0.
|
|
9
|
+
"@cuby-ui/api": "^0.0.394",
|
|
10
|
+
"@cuby-ui/cdk": "^0.0.394",
|
|
11
|
+
"@cuby-ui/icons": "^0.0.394",
|
|
12
12
|
"@editorjs/editorjs": "2.29.1",
|
|
13
13
|
"@editorjs/header": "^2.8.1",
|
|
14
14
|
"@editorjs/list": "^1.9.0",
|
package/styles/fonts.scss
CHANGED
|
@@ -53,3 +53,17 @@
|
|
|
53
53
|
url('../fonts/Inter-Bold.svg#Inter-Bold') format('svg'),
|
|
54
54
|
url('../fonts/Inter-Bold.otf') format('otf');
|
|
55
55
|
}
|
|
56
|
+
|
|
57
|
+
@font-face {
|
|
58
|
+
font-family: Nunito_Italic;
|
|
59
|
+
font-style: italic;
|
|
60
|
+
font-weight: 800;
|
|
61
|
+
src: url('../fonts/Nunito-ExtraBoldItalic.eot');
|
|
62
|
+
src:
|
|
63
|
+
url('../fonts/Nunito-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
|
|
64
|
+
url('../fonts/Nunito-ExtraBoldItalic.woff2') format('woff2'),
|
|
65
|
+
url('../fonts/Nunito-ExtraBoldItalic.woff') format('woff'),
|
|
66
|
+
url('../fonts/Nunito-ExtraBoldItalic.ttf') format('truetype'),
|
|
67
|
+
url('../fonts/Nunito-ExtraBoldItalic.svg#Nunito-ExtraBold') format('svg'),
|
|
68
|
+
url('../fonts/Nunito-ExtraBoldItalic.otf') format('otf');
|
|
69
|
+
}
|
package/styles/theme.scss
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
--cui-main-font: Inter, sans-serif;
|
|
3
|
+
--cui-nunito-italic-font: Nunito_Italic, Inter, sans-serif;
|
|
3
4
|
|
|
4
5
|
--cui-black: #000000;
|
|
5
6
|
|
|
@@ -411,4 +412,4 @@
|
|
|
411
412
|
--cui-yellow-bg: var(--cui-yellow-600);
|
|
412
413
|
--cui-lavender-bg: var(--cui-lavender-900);
|
|
413
414
|
--cui-violet-bg: var(-cui-violet-600);
|
|
414
|
-
}
|
|
415
|
+
}
|