@idealyst/theme 1.3.2 → 1.3.4

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.3.2",
3
+ "version": "1.3.4",
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.2"
66
+ "@idealyst/tooling": "^1.3.4"
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: 12, lineHeight: 18, padding: 4, paddingBottom: 6 },
259
- sm: { fontSize: 14, lineHeight: 20, padding: 6, paddingBottom: 8 },
260
- md: { fontSize: 16, lineHeight: 24, padding: 8, paddingBottom: 10 },
261
- lg: { fontSize: 18, lineHeight: 28, padding: 10, paddingBottom: 12 },
262
- xl: { fontSize: 20, lineHeight: 32, padding: 12, paddingBottom: 14 },
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 },
@@ -243,6 +243,8 @@ export type TabBarSizeValue = {
243
243
  lineHeight: SizeValue;
244
244
  padding: SizeValue;
245
245
  paddingBottom: SizeValue;
246
+ pillPaddingVertical: SizeValue;
247
+ pillPaddingHorizontal: SizeValue;
246
248
  };
247
249
 
248
250
  export type TableSizeValue = {