@idealyst/theme 1.3.2 → 1.3.3
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/package.json +2 -2
- package/src/lightTheme.ts +5 -5
- package/src/theme/structures.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idealyst/theme",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "Theming system for Idealyst Framework",
|
|
5
5
|
"readme": "README.md",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"publish:npm": "npm publish"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@idealyst/tooling": "^1.3.
|
|
66
|
+
"@idealyst/tooling": "^1.3.3"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"react-native-unistyles": ">=3.0.0"
|
package/src/lightTheme.ts
CHANGED
|
@@ -255,11 +255,11 @@ export const lightTheme = createTheme()
|
|
|
255
255
|
xl: { fontSize: 24, lineHeight: 31.92 },
|
|
256
256
|
},
|
|
257
257
|
tabBar: {
|
|
258
|
-
xs: { fontSize:
|
|
259
|
-
sm: { fontSize:
|
|
260
|
-
md: { fontSize:
|
|
261
|
-
lg: { fontSize:
|
|
262
|
-
xl: { fontSize:
|
|
258
|
+
xs: { fontSize: 11, lineHeight: 16, padding: 6, paddingBottom: 8, pillPaddingVertical: 2, pillPaddingHorizontal: 8 },
|
|
259
|
+
sm: { fontSize: 12, lineHeight: 18, padding: 8, paddingBottom: 10, pillPaddingVertical: 3, pillPaddingHorizontal: 10 },
|
|
260
|
+
md: { fontSize: 14, lineHeight: 20, padding: 10, paddingBottom: 12, pillPaddingVertical: 4, pillPaddingHorizontal: 12 },
|
|
261
|
+
lg: { fontSize: 16, lineHeight: 24, padding: 12, paddingBottom: 14, pillPaddingVertical: 6, pillPaddingHorizontal: 16 },
|
|
262
|
+
xl: { fontSize: 18, lineHeight: 28, padding: 14, paddingBottom: 16, pillPaddingVertical: 8, pillPaddingHorizontal: 20 },
|
|
263
263
|
},
|
|
264
264
|
table: {
|
|
265
265
|
xs: { padding: 6, fontSize: 12, lineHeight: 16, headerPadding: 4, headerFontSize: 11, headerLineHeight: 14 },
|
package/src/theme/structures.ts
CHANGED