@idealyst/theme 1.2.121 → 1.2.123

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idealyst/theme",
3
- "version": "1.2.121",
3
+ "version": "1.2.123",
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.2.121"
66
+ "@idealyst/tooling": "^1.2.123"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "react-native-unistyles": ">=3.0.0"
package/src/lightTheme.ts CHANGED
@@ -254,11 +254,11 @@ export const lightTheme = createTheme()
254
254
  xl: { fontSize: 24, lineHeight: 31.92 },
255
255
  },
256
256
  tabBar: {
257
- xs: { fontSize: 12, lineHeight: 18, padding: 6 },
258
- sm: { fontSize: 14, lineHeight: 20, padding: 8 },
259
- md: { fontSize: 16, lineHeight: 24, padding: 12 },
260
- lg: { fontSize: 18, lineHeight: 28, padding: 16 },
261
- xl: { fontSize: 20, lineHeight: 32, padding: 20 },
257
+ xs: { fontSize: 12, lineHeight: 18, padding: 6, paddingBottom: 10 },
258
+ sm: { fontSize: 14, lineHeight: 20, padding: 8, paddingBottom: 12 },
259
+ md: { fontSize: 16, lineHeight: 24, padding: 12, paddingBottom: 16 },
260
+ lg: { fontSize: 18, lineHeight: 28, padding: 16, paddingBottom: 20 },
261
+ xl: { fontSize: 20, lineHeight: 32, padding: 20, paddingBottom: 24 },
262
262
  },
263
263
  table: {
264
264
  xs: { padding: 6, fontSize: 12, lineHeight: 16 },
@@ -242,6 +242,7 @@ export type TabBarSizeValue = {
242
242
  fontSize: SizeValue;
243
243
  lineHeight: SizeValue;
244
244
  padding: SizeValue;
245
+ paddingBottom: SizeValue;
245
246
  };
246
247
 
247
248
  export type TableSizeValue = {