@idealyst/components 1.2.145 → 1.2.147
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.
|
|
3
|
+
"version": "1.2.147",
|
|
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.
|
|
59
|
+
"@idealyst/theme": "^1.2.147",
|
|
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.
|
|
115
|
-
"@idealyst/tooling": "^1.2.
|
|
114
|
+
"@idealyst/theme": "^1.2.147",
|
|
115
|
+
"@idealyst/tooling": "^1.2.147",
|
|
116
116
|
"@mdi/react": "^1.6.1",
|
|
117
117
|
"@types/react": "^19.1.0",
|
|
118
118
|
"react": "^19.1.0",
|
|
@@ -97,7 +97,6 @@ export const tableStyles = defineStyle('Table', (theme: Theme) => ({
|
|
|
97
97
|
footerCell: (_props: TableDynamicProps) => ({
|
|
98
98
|
flexDirection: 'row' as const,
|
|
99
99
|
alignItems: 'center' as const,
|
|
100
|
-
fontWeight: '600' as const,
|
|
101
100
|
color: theme.colors.text.primary,
|
|
102
101
|
borderTopWidth: 1,
|
|
103
102
|
borderTopColor: theme.colors.border.primary,
|
|
@@ -110,8 +109,8 @@ export const tableStyles = defineStyle('Table', (theme: Theme) => ({
|
|
|
110
109
|
size: {
|
|
111
110
|
paddingVertical: theme.sizes.$table.headerPadding,
|
|
112
111
|
paddingHorizontal: theme.sizes.$table.padding,
|
|
113
|
-
fontSize: theme.sizes.$table.
|
|
114
|
-
lineHeight: theme.sizes.$table.
|
|
112
|
+
fontSize: theme.sizes.$table.fontSize,
|
|
113
|
+
lineHeight: theme.sizes.$table.lineHeight,
|
|
115
114
|
},
|
|
116
115
|
},
|
|
117
116
|
_web: {
|
|
@@ -163,8 +162,8 @@ export const tableStyles = defineStyle('Table', (theme: Theme) => ({
|
|
|
163
162
|
headerCell: (_props: TableDynamicProps) => ({
|
|
164
163
|
flexDirection: 'row' as const,
|
|
165
164
|
alignItems: 'center' as const,
|
|
166
|
-
fontWeight: '
|
|
167
|
-
color: theme.colors.text.
|
|
165
|
+
fontWeight: '500' as const,
|
|
166
|
+
color: theme.colors.text.secondary,
|
|
168
167
|
borderBottomWidth: 1,
|
|
169
168
|
borderBottomColor: theme.colors.border.primary,
|
|
170
169
|
variants: {
|
|
@@ -176,8 +175,8 @@ export const tableStyles = defineStyle('Table', (theme: Theme) => ({
|
|
|
176
175
|
size: {
|
|
177
176
|
paddingVertical: theme.sizes.$table.headerPadding,
|
|
178
177
|
paddingHorizontal: theme.sizes.$table.padding,
|
|
179
|
-
fontSize: theme.sizes.$table.
|
|
180
|
-
lineHeight: theme.sizes.$table.
|
|
178
|
+
fontSize: theme.sizes.$table.fontSize,
|
|
179
|
+
lineHeight: theme.sizes.$table.lineHeight,
|
|
181
180
|
},
|
|
182
181
|
},
|
|
183
182
|
_web: {
|