@ornikar/kitt-universal 29.4.1-canary.2269ca599b5583fc6238639eb399d62b3abcf0a1.0 → 29.4.1-canary.cbb5dfd9b37cae9e4b2943cbcdd994e53c1d96d8.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/CHANGELOG.md +3 -3
- package/dist/definitions/native-base/KittNativeBaseProvider.d.ts +2 -4
- package/dist/definitions/native-base/KittNativeBaseProvider.d.ts.map +1 -1
- package/dist/definitions/themes/default.d.ts +0 -1
- package/dist/definitions/themes/default.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/typography.d.ts +0 -1
- package/dist/definitions/themes/late-ocean/typography.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +5 -4
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +5 -4
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +5 -4
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.js +4 -3
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +5 -4
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.mjs +4 -3
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +5 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +4 -3
- package/dist/index.es.web.js.map +1 -1
- package/dist/linaria-themes-metro.es.android.js +0 -1
- package/dist/linaria-themes-metro.es.android.js.map +1 -1
- package/dist/linaria-themes-metro.es.ios.js +0 -1
- package/dist/linaria-themes-metro.es.ios.js.map +1 -1
- package/dist/linaria-themes-node-22.17.cjs.js +0 -1
- package/dist/linaria-themes-node-22.17.cjs.js.map +1 -1
- package/dist/linaria-themes-node-22.17.cjs.web.js +0 -1
- package/dist/linaria-themes-node-22.17.cjs.web.js.map +1 -1
- package/dist/linaria-themes-node-22.17.es.mjs +0 -1
- package/dist/linaria-themes-node-22.17.es.mjs.map +1 -1
- package/dist/linaria-themes-node-22.17.es.web.mjs +0 -1
- package/dist/linaria-themes-node-22.17.es.web.mjs.map +1 -1
- package/dist/linaria-themes.es.js +0 -1
- package/dist/linaria-themes.es.js.map +1 -1
- package/dist/linaria-themes.es.web.js +0 -1
- package/dist/linaria-themes.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -2111,7 +2111,6 @@ const typography = {
|
|
|
2111
2111
|
contentCaps: {
|
|
2112
2112
|
fontFamily: {
|
|
2113
2113
|
native: {
|
|
2114
|
-
regular: 'GTStandardNarrow',
|
|
2115
2114
|
bold: 'GTStandardNarrowBold'
|
|
2116
2115
|
},
|
|
2117
2116
|
web: {
|
|
@@ -3162,7 +3161,7 @@ function getUniversalFontWeight(type, variant, typographyFamily) {
|
|
|
3162
3161
|
ThrowErrorIfInvalidVariant(variant, value, 'regular');
|
|
3163
3162
|
resolvedVariant = 'regular';
|
|
3164
3163
|
}
|
|
3165
|
-
webFontWeight[typeName] = resolvedVariant
|
|
3164
|
+
webFontWeight[typeName] = `${typographyFamily}.${resolvedVariant}`;
|
|
3166
3165
|
nativeFontFamily[typeName] = `${typographyFamily}.${resolvedVariant}`;
|
|
3167
3166
|
});
|
|
3168
3167
|
return {
|
|
@@ -10989,18 +10988,20 @@ function createKittNativeBaseCustomTheme(theme, appTheme) {
|
|
|
10989
10988
|
fontWeights: {
|
|
10990
10989
|
headings: {
|
|
10991
10990
|
regular: theme.typography.types.headings.fontWeight.regular,
|
|
10991
|
+
semibold: theme.typography.types.headings.fontWeight.semibold,
|
|
10992
10992
|
bold: theme.typography.types.headings.fontWeight.bold
|
|
10993
10993
|
},
|
|
10994
10994
|
bodies: {
|
|
10995
10995
|
regular: theme.typography.types.bodies.fontWeight.regular,
|
|
10996
|
-
// TODO [
|
|
10996
|
+
// TODO [expo@>=53]: Check if still needed with new expo-fonts version
|
|
10997
10997
|
bold: Platform.OS === 'android' ? 400 : theme.typography.types.bodies.fontWeight.bold
|
|
10998
10998
|
},
|
|
10999
10999
|
labels: {
|
|
11000
11000
|
semibold: theme.typography.types.labels.fontWeight.semibold
|
|
11001
11001
|
},
|
|
11002
11002
|
contentCaps: {
|
|
11003
|
-
|
|
11003
|
+
// TODO [expo@>=53]: Check if still needed with new expo-fonts version
|
|
11004
|
+
bold: Platform.OS === 'android' ? 400 : theme.typography.types.contentCaps.fontWeight.bold
|
|
11004
11005
|
}
|
|
11005
11006
|
},
|
|
11006
11007
|
fonts: {
|