@newskit-render/core 2.46.0-alpha.3 → 2.46.0-alpha.5
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/assets/fontFamily.ts +15 -3
- package/assets/fonts/Roboto-Bold.ttf +0 -0
- package/assets/fonts/Roboto-Light.ttf +0 -0
- package/assets/fonts/Roboto-Medium.ttf +0 -0
- package/assets/fonts/Roboto-Regular.ttf +0 -0
- package/package.json +5 -5
- package/pages/_app.tsx +2 -2
- package/assets/fonts/GillSansMTStd-Bold.otf +0 -0
- package/assets/fonts/GillSansMTStd-BoldCondensed.otf +0 -0
- package/assets/fonts/GillSansMTStd-BoldItalic.otf +0 -0
- package/assets/fonts/GillSansMTStd-Book.otf +0 -0
- package/assets/fonts/GillSansMTStd-BookItalic.otf +0 -0
- package/assets/fonts/GillSansMTStd-Condensed.otf +0 -0
- package/assets/fonts/GillSansMTStd-ExtraBold.otf +0 -0
- package/assets/fonts/GillSansMTStd-Heavy.otf +0 -0
- package/assets/fonts/GillSansMTStd-HeavyItalic.otf +0 -0
- package/assets/fonts/GillSansMTStd-Light.otf +0 -0
- package/assets/fonts/GillSansMTStd-LightItalic.otf +0 -0
- package/assets/fonts/GillSansMTStd-Medium.otf +0 -0
- package/assets/fonts/GillSansMTStd-MediumItalic.otf +0 -0
- package/assets/fonts/GillSansMTStd-UltraBold.otf +0 -0
- package/assets/fonts/GillSansMTStd-UltraBoldCond.otf +0 -0
package/assets/fontFamily.ts
CHANGED
|
@@ -152,10 +152,22 @@ const theSun = localFont({
|
|
|
152
152
|
display: 'swap',
|
|
153
153
|
})
|
|
154
154
|
|
|
155
|
-
const
|
|
155
|
+
const roboto = localFont({
|
|
156
156
|
src: [
|
|
157
157
|
{
|
|
158
|
-
path: './fonts/
|
|
158
|
+
path: './fonts/Roboto-Regular.ttf',
|
|
159
|
+
weight: '400',
|
|
160
|
+
style: 'normal',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
path: './fonts/Roboto-Medium.ttf',
|
|
164
|
+
weight: '500',
|
|
165
|
+
style: 'italic',
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
path: './fonts/Roboto-Bold.ttf',
|
|
169
|
+
weight: '700',
|
|
170
|
+
style: 'normal',
|
|
159
171
|
},
|
|
160
172
|
],
|
|
161
173
|
display: 'swap',
|
|
@@ -394,7 +406,7 @@ export {
|
|
|
394
406
|
poppins,
|
|
395
407
|
dmSans,
|
|
396
408
|
theSun,
|
|
397
|
-
|
|
409
|
+
roboto,
|
|
398
410
|
timesModern,
|
|
399
411
|
timesDigital,
|
|
400
412
|
montserrat,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newskit-render/core",
|
|
3
|
-
"version": "2.46.0-alpha.
|
|
3
|
+
"version": "2.46.0-alpha.5",
|
|
4
4
|
"description": "Newskit Render - Core package",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"@emotion/styled": "11.9.3",
|
|
42
42
|
"@newskit-render/api": "^1.6.6",
|
|
43
43
|
"@newskit-render/auth": "^1.3.10",
|
|
44
|
-
"@newskit-render/checkout": "^2.5.2-alpha.
|
|
44
|
+
"@newskit-render/checkout": "^2.5.2-alpha.2",
|
|
45
45
|
"@newskit-render/feature-flags": "^1.4.11",
|
|
46
46
|
"@newskit-render/feed": "^1.4.16",
|
|
47
|
-
"@newskit-render/my-account": "^4.
|
|
48
|
-
"@newskit-render/shared-components": "^2.6.0-alpha.
|
|
49
|
-
"@newskit-render/standalone-components": "^2.5.3-alpha.
|
|
47
|
+
"@newskit-render/my-account": "^4.5.0-alpha.1",
|
|
48
|
+
"@newskit-render/shared-components": "^2.6.0-alpha.2",
|
|
49
|
+
"@newskit-render/standalone-components": "^2.5.3-alpha.2",
|
|
50
50
|
"@newskit-render/validation": "^1.5.12",
|
|
51
51
|
"@next/font": "13.1.6",
|
|
52
52
|
"cross-fetch": "3.1.5",
|
package/pages/_app.tsx
CHANGED
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
poppins,
|
|
15
15
|
dmSans,
|
|
16
16
|
theSun,
|
|
17
|
-
|
|
17
|
+
roboto,
|
|
18
18
|
timesModern,
|
|
19
19
|
timesDigital,
|
|
20
20
|
montserrat,
|
|
@@ -49,7 +49,7 @@ function MyApp({ Component, pageProps, tenant }: MyAppProps) {
|
|
|
49
49
|
--poppins: ${poppins.style.fontFamily};
|
|
50
50
|
--dm-sans: ${dmSans.style.fontFamily};
|
|
51
51
|
--the-sun: ${theSun.style.fontFamily};
|
|
52
|
-
--
|
|
52
|
+
--roboto: ${roboto.style.fontFamily};
|
|
53
53
|
--times-modern: ${timesModern.style.fontFamily};
|
|
54
54
|
--times-digital: ${timesDigital.style.fontFamily};
|
|
55
55
|
--montserrat: ${montserrat.style.fontFamily};
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|