@idealyst/components 1.2.130 → 1.2.131

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.130",
3
+ "version": "1.2.131",
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.130",
59
+ "@idealyst/theme": "^1.2.131",
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.130",
115
- "@idealyst/tooling": "^1.2.130",
114
+ "@idealyst/theme": "^1.2.131",
115
+ "@idealyst/tooling": "^1.2.131",
116
116
  "@mdi/react": "^1.6.1",
117
117
  "@types/react": "^19.1.0",
118
118
  "react": "^19.1.0",
@@ -137,12 +137,14 @@ export const tableStyles = defineStyle('Table', (theme: Theme) => ({
137
137
  return {
138
138
  ...typeStyles,
139
139
  _web: {
140
- transition: 'background-color 0.2s ease',
140
+ transition: 'background-color 0.15s ease',
141
141
  borderBottom: (type === 'bordered' || type === 'striped')
142
142
  ? `1px solid ${theme.colors.border.primary}`
143
143
  : undefined,
144
144
  cursor: clickable ? 'pointer' : undefined,
145
- _hover: clickable ? { backgroundColor: theme.colors.surface.secondary } : {},
145
+ _hover: {
146
+ backgroundColor: theme.colors.surface.secondary,
147
+ },
146
148
  // Striped rows handled via CSS pseudo-selector
147
149
  ...(type === 'striped' ? {
148
150
  ':nth-child(even)': {
@@ -158,7 +160,7 @@ export const tableStyles = defineStyle('Table', (theme: Theme) => ({
158
160
  alignItems: 'center' as const,
159
161
  fontWeight: '600' as const,
160
162
  color: theme.colors.text.primary,
161
- borderBottomWidth: 2,
163
+ borderBottomWidth: 1,
162
164
  borderBottomColor: theme.colors.border.primary,
163
165
  variants: {
164
166
  type: {