@idealyst/theme 1.2.144 → 1.2.146

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.144",
3
+ "version": "1.2.146",
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.144"
66
+ "@idealyst/tooling": "^1.2.146"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "react-native-unistyles": ">=3.0.0"
package/src/lightTheme.ts CHANGED
@@ -262,11 +262,11 @@ export const lightTheme = createTheme()
262
262
  xl: { fontSize: 20, lineHeight: 32, padding: 12, paddingBottom: 14 },
263
263
  },
264
264
  table: {
265
- xs: { padding: 6, fontSize: 12, lineHeight: 16, headerFontSize: 11, headerLineHeight: 14 },
266
- sm: { padding: 8, fontSize: 13, lineHeight: 18, headerFontSize: 12, headerLineHeight: 16 },
267
- md: { padding: 16, fontSize: 14, lineHeight: 20, headerFontSize: 12, headerLineHeight: 16 },
268
- lg: { padding: 24, fontSize: 15, lineHeight: 22, headerFontSize: 13, headerLineHeight: 18 },
269
- xl: { padding: 32, fontSize: 16, lineHeight: 24, headerFontSize: 14, headerLineHeight: 20 },
265
+ xs: { padding: 6, fontSize: 12, lineHeight: 16, headerPadding: 4, headerFontSize: 11, headerLineHeight: 14 },
266
+ sm: { padding: 8, fontSize: 13, lineHeight: 18, headerPadding: 6, headerFontSize: 12, headerLineHeight: 16 },
267
+ md: { padding: 16, fontSize: 14, lineHeight: 20, headerPadding: 10, headerFontSize: 12, headerLineHeight: 16 },
268
+ lg: { padding: 24, fontSize: 15, lineHeight: 22, headerPadding: 16, headerFontSize: 13, headerLineHeight: 18 },
269
+ xl: { padding: 32, fontSize: 16, lineHeight: 24, headerPadding: 20, headerFontSize: 14, headerLineHeight: 20 },
270
270
  },
271
271
  tooltip: {
272
272
  xs: { fontSize: 11, padding: 4 },
@@ -249,6 +249,7 @@ export type TableSizeValue = {
249
249
  padding: SizeValue;
250
250
  fontSize: SizeValue;
251
251
  lineHeight: SizeValue;
252
+ headerPadding: SizeValue;
252
253
  headerFontSize: SizeValue;
253
254
  headerLineHeight: SizeValue;
254
255
  };