@idealyst/components 1.2.144 → 1.2.145

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/components",
3
- "version": "1.2.144",
3
+ "version": "1.2.145",
4
4
  "description": "Shared component library for React and React Native",
5
5
  "documentation": "https://github.com/IdealystIO/idealyst-framework/tree/main/packages/components#readme",
6
6
  "readme": "README.md",
@@ -56,7 +56,7 @@
56
56
  "publish:npm": "npm publish"
57
57
  },
58
58
  "peerDependencies": {
59
- "@idealyst/theme": "^1.2.144",
59
+ "@idealyst/theme": "^1.2.145",
60
60
  "@mdi/js": ">=7.0.0",
61
61
  "@mdi/react": ">=1.0.0",
62
62
  "@react-native-vector-icons/common": ">=12.0.0",
@@ -111,8 +111,8 @@
111
111
  },
112
112
  "devDependencies": {
113
113
  "@idealyst/blur": "^1.2.40",
114
- "@idealyst/theme": "^1.2.144",
115
- "@idealyst/tooling": "^1.2.144",
114
+ "@idealyst/theme": "^1.2.145",
115
+ "@idealyst/tooling": "^1.2.145",
116
116
  "@mdi/react": "^1.6.1",
117
117
  "@types/react": "^19.1.0",
118
118
  "react": "^19.1.0",
@@ -108,7 +108,8 @@ export const tableStyles = defineStyle('Table', (theme: Theme) => ({
108
108
  right: { textAlign: 'right' as const, justifyContent: 'flex-end' as const },
109
109
  },
110
110
  size: {
111
- padding: theme.sizes.$table.padding,
111
+ paddingVertical: theme.sizes.$table.headerPadding,
112
+ paddingHorizontal: theme.sizes.$table.padding,
112
113
  fontSize: theme.sizes.$table.headerFontSize,
113
114
  lineHeight: theme.sizes.$table.headerLineHeight,
114
115
  },
@@ -173,7 +174,8 @@ export const tableStyles = defineStyle('Table', (theme: Theme) => ({
173
174
  right: { textAlign: 'right' as const, justifyContent: 'flex-end' as const },
174
175
  },
175
176
  size: {
176
- padding: theme.sizes.$table.padding,
177
+ paddingVertical: theme.sizes.$table.headerPadding,
178
+ paddingHorizontal: theme.sizes.$table.padding,
177
179
  fontSize: theme.sizes.$table.headerFontSize,
178
180
  lineHeight: theme.sizes.$table.headerLineHeight,
179
181
  },