dhre-ui-kit 0.0.171 → 0.0.173
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/lib/index.js +40 -40
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +40 -40
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
- /package/src/assets/fonts/{MeraasAktiv_Bd.ttf → MeraasAktiv-Bold.ttf} +0 -0
- /package/src/assets/fonts/{MeraasAktiv_Lt.ttf → MeraasAktiv-Light.ttf} +0 -0
- /package/src/assets/fonts/{MeraasAktiv_Rg.ttf → MeraasAktiv-Regular.ttf} +0 -0
package/lib/index.mjs
CHANGED
|
@@ -276,44 +276,44 @@ const createFontStyle = (fontFamily, fontSize, lineHeight) => ({
|
|
|
276
276
|
fontFamily
|
|
277
277
|
});
|
|
278
278
|
const FONT_STYLES = {
|
|
279
|
-
[FontStyle.H1_BOLD]: createFontStyle("
|
|
280
|
-
[FontStyle.H2_BOLD]: createFontStyle("
|
|
281
|
-
[FontStyle.H3_BOLD]: createFontStyle("
|
|
282
|
-
[FontStyle.H4_BOLD]: createFontStyle("
|
|
283
|
-
[FontStyle.H5_BOLD]: createFontStyle("
|
|
284
|
-
[FontStyle.H6_BOLD]: createFontStyle("
|
|
285
|
-
[FontStyle.H7_BOLD]: createFontStyle("
|
|
286
|
-
[FontStyle.H8_BOLD]: createFontStyle("
|
|
287
|
-
[FontStyle.H1_REGULAR]: createFontStyle("
|
|
288
|
-
[FontStyle.H2_REGULAR]: createFontStyle("
|
|
289
|
-
[FontStyle.H3_REGULAR]: createFontStyle("
|
|
290
|
-
[FontStyle.H4_REGULAR]: createFontStyle("
|
|
291
|
-
[FontStyle.H5_REGULAR]: createFontStyle("
|
|
292
|
-
[FontStyle.H6_REGULAR]: createFontStyle("
|
|
293
|
-
[FontStyle.H7_REGULAR]: createFontStyle("
|
|
294
|
-
[FontStyle.H8_REGULAR]: createFontStyle("
|
|
295
|
-
[FontStyle.H1_LIGHT]: createFontStyle("
|
|
296
|
-
[FontStyle.H2_LIGHT]: createFontStyle("
|
|
297
|
-
[FontStyle.H3_LIGHT]: createFontStyle("
|
|
298
|
-
[FontStyle.H4_LIGHT]: createFontStyle("
|
|
299
|
-
[FontStyle.H5_LIGHT]: createFontStyle("
|
|
300
|
-
[FontStyle.H6_LIGHT]: createFontStyle("
|
|
301
|
-
[FontStyle.H7_LIGHT]: createFontStyle("
|
|
302
|
-
[FontStyle.H8_LIGHT]: createFontStyle("
|
|
303
|
-
[FontStyle.B1_BOLD]: createFontStyle("
|
|
304
|
-
[FontStyle.B2_BOLD]: createFontStyle("
|
|
305
|
-
[FontStyle.B3_BOLD]: createFontStyle("
|
|
306
|
-
[FontStyle.B4_BOLD]: createFontStyle("
|
|
307
|
-
[FontStyle.B1_REGULAR]: createFontStyle("
|
|
308
|
-
[FontStyle.B2_REGULAR]: createFontStyle("
|
|
309
|
-
[FontStyle.B3_REGULAR]: createFontStyle("
|
|
310
|
-
[FontStyle.B4_REGULAR]: createFontStyle("
|
|
311
|
-
[FontStyle.L1_BOLD]: createFontStyle("
|
|
312
|
-
[FontStyle.L2_BOLD]: createFontStyle("
|
|
313
|
-
[FontStyle.L3_BOLD]: createFontStyle("
|
|
314
|
-
[FontStyle.L1_REGULAR]: createFontStyle("
|
|
315
|
-
[FontStyle.L2_REGULAR]: createFontStyle("
|
|
316
|
-
[FontStyle.L3_REGULAR]: createFontStyle("
|
|
279
|
+
[FontStyle.H1_BOLD]: createFontStyle("MeraasAktiv-Bold", 40, 56),
|
|
280
|
+
[FontStyle.H2_BOLD]: createFontStyle("MeraasAktiv-Bold", 36, 50.4),
|
|
281
|
+
[FontStyle.H3_BOLD]: createFontStyle("MeraasAktiv-Bold", 32, 44.8),
|
|
282
|
+
[FontStyle.H4_BOLD]: createFontStyle("MeraasAktiv-Bold", 26, 36.4),
|
|
283
|
+
[FontStyle.H5_BOLD]: createFontStyle("MeraasAktiv-Bold", 24, 33.6),
|
|
284
|
+
[FontStyle.H6_BOLD]: createFontStyle("MeraasAktiv-Bold", 22, 30.8),
|
|
285
|
+
[FontStyle.H7_BOLD]: createFontStyle("MeraasAktiv-Bold", 20, 28),
|
|
286
|
+
[FontStyle.H8_BOLD]: createFontStyle("MeraasAktiv-Bold", 18, 25.2),
|
|
287
|
+
[FontStyle.H1_REGULAR]: createFontStyle("MeraasAktiv-Regular", 40, 56),
|
|
288
|
+
[FontStyle.H2_REGULAR]: createFontStyle("MeraasAktiv-Regular", 36, 50.4),
|
|
289
|
+
[FontStyle.H3_REGULAR]: createFontStyle("MeraasAktiv-Regular", 32, 44.8),
|
|
290
|
+
[FontStyle.H4_REGULAR]: createFontStyle("MeraasAktiv-Regular", 26, 36.4),
|
|
291
|
+
[FontStyle.H5_REGULAR]: createFontStyle("MeraasAktiv-Regular", 24, 33.6),
|
|
292
|
+
[FontStyle.H6_REGULAR]: createFontStyle("MeraasAktiv-Regular", 22, 30.8),
|
|
293
|
+
[FontStyle.H7_REGULAR]: createFontStyle("MeraasAktiv-Regular", 20, 28),
|
|
294
|
+
[FontStyle.H8_REGULAR]: createFontStyle("MeraasAktiv-Regular", 18, 25.2),
|
|
295
|
+
[FontStyle.H1_LIGHT]: createFontStyle("MeraasAktiv-Light", 40, 56),
|
|
296
|
+
[FontStyle.H2_LIGHT]: createFontStyle("MeraasAktiv-Light", 36, 50.4),
|
|
297
|
+
[FontStyle.H3_LIGHT]: createFontStyle("MeraasAktiv-Light", 32, 44.8),
|
|
298
|
+
[FontStyle.H4_LIGHT]: createFontStyle("MeraasAktiv-Light", 26, 36.4),
|
|
299
|
+
[FontStyle.H5_LIGHT]: createFontStyle("MeraasAktiv-Light", 24, 33.6),
|
|
300
|
+
[FontStyle.H6_LIGHT]: createFontStyle("MeraasAktiv-Light", 22, 30.8),
|
|
301
|
+
[FontStyle.H7_LIGHT]: createFontStyle("MeraasAktiv-Light", 20, 28),
|
|
302
|
+
[FontStyle.H8_LIGHT]: createFontStyle("MeraasAktiv-Light", 18, 25.2),
|
|
303
|
+
[FontStyle.B1_BOLD]: createFontStyle("MeraasAktiv-Bold", 20, 28),
|
|
304
|
+
[FontStyle.B2_BOLD]: createFontStyle("MeraasAktiv-Bold", 18, 25.2),
|
|
305
|
+
[FontStyle.B3_BOLD]: createFontStyle("MeraasAktiv-Bold", 16, 22.4),
|
|
306
|
+
[FontStyle.B4_BOLD]: createFontStyle("MeraasAktiv-Bold", 14, 22.4),
|
|
307
|
+
[FontStyle.B1_REGULAR]: createFontStyle("MeraasAktiv-Regular", 20, 28),
|
|
308
|
+
[FontStyle.B2_REGULAR]: createFontStyle("MeraasAktiv-Regular", 18, 25.2),
|
|
309
|
+
[FontStyle.B3_REGULAR]: createFontStyle("MeraasAktiv-Regular", 16, 22.4),
|
|
310
|
+
[FontStyle.B4_REGULAR]: createFontStyle("MeraasAktiv-Regular", 14, 22.4),
|
|
311
|
+
[FontStyle.L1_BOLD]: createFontStyle("MeraasAktiv-Bold", 14, 19.6),
|
|
312
|
+
[FontStyle.L2_BOLD]: createFontStyle("MeraasAktiv-Bold", 12, 16.8),
|
|
313
|
+
[FontStyle.L3_BOLD]: createFontStyle("MeraasAktiv-Bold", 10, 14),
|
|
314
|
+
[FontStyle.L1_REGULAR]: createFontStyle("MeraasAktiv-Regular", 14, 19.6),
|
|
315
|
+
[FontStyle.L2_REGULAR]: createFontStyle("MeraasAktiv-Regular", 12, 16.8),
|
|
316
|
+
[FontStyle.L3_REGULAR]: createFontStyle("MeraasAktiv-Regular", 10, 14)
|
|
317
317
|
};
|
|
318
318
|
|
|
319
319
|
const CustomTypography = ({
|
|
@@ -2142,7 +2142,7 @@ const CustomSearchBar = ({
|
|
|
2142
2142
|
styles$j.inputContainer,
|
|
2143
2143
|
{
|
|
2144
2144
|
height: verticalScale(height),
|
|
2145
|
-
borderColor: disabled ? disableBorderColor : value ? borderColor : "#
|
|
2145
|
+
borderColor: disabled ? disableBorderColor : value ? borderColor : "#686868"
|
|
2146
2146
|
},
|
|
2147
2147
|
inputContainerStyle
|
|
2148
2148
|
],
|
|
@@ -2973,7 +2973,7 @@ const createStyles$2 = (theme) => {
|
|
|
2973
2973
|
borderBottomColor: theme[Theme.BORDER_SEPERATOR_HEADER]
|
|
2974
2974
|
},
|
|
2975
2975
|
selectedItem: {
|
|
2976
|
-
borderBottomWidth:
|
|
2976
|
+
borderBottomWidth: 1,
|
|
2977
2977
|
borderBottomColor: theme[Theme.BORDER_INVERTED]
|
|
2978
2978
|
},
|
|
2979
2979
|
errorViewStyle: {
|