@idealyst/components 1.2.122 → 1.2.123
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.123",
|
|
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.123",
|
|
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.123",
|
|
115
|
+
"@idealyst/tooling": "^1.2.123",
|
|
116
116
|
"@mdi/react": "^1.6.1",
|
|
117
117
|
"@types/react": "^19.1.0",
|
|
118
118
|
"react": "^19.1.0",
|
package/src/Menu/Menu.styles.tsx
CHANGED
|
@@ -155,6 +155,14 @@ export const menuStyles = defineStyle('Menu', (theme: Theme) => ({
|
|
|
155
155
|
height: theme.sizes.$menu.iconSize,
|
|
156
156
|
fontSize: theme.sizes.$menu.iconSize,
|
|
157
157
|
},
|
|
158
|
+
intent: {
|
|
159
|
+
neutral: {},
|
|
160
|
+
primary: { color: theme.intents.primary.primary },
|
|
161
|
+
success: { color: theme.intents.success.primary },
|
|
162
|
+
danger: { color: theme.intents.danger.primary },
|
|
163
|
+
warning: { color: theme.intents.warning.primary },
|
|
164
|
+
info: { color: theme.intents.info.primary },
|
|
165
|
+
},
|
|
158
166
|
},
|
|
159
167
|
}),
|
|
160
168
|
|
|
@@ -165,6 +173,14 @@ export const menuStyles = defineStyle('Menu', (theme: Theme) => ({
|
|
|
165
173
|
size: {
|
|
166
174
|
fontSize: theme.sizes.$menu.labelFontSize,
|
|
167
175
|
},
|
|
176
|
+
intent: {
|
|
177
|
+
neutral: {},
|
|
178
|
+
primary: { color: theme.intents.primary.primary },
|
|
179
|
+
success: { color: theme.intents.success.primary },
|
|
180
|
+
danger: { color: theme.intents.danger.primary },
|
|
181
|
+
warning: { color: theme.intents.warning.primary },
|
|
182
|
+
info: { color: theme.intents.info.primary },
|
|
183
|
+
},
|
|
168
184
|
},
|
|
169
185
|
}),
|
|
170
186
|
}));
|
|
@@ -20,9 +20,10 @@ const MenuItem = forwardRef<IdealystElement, MenuItemProps>(({ item, onPress, si
|
|
|
20
20
|
});
|
|
21
21
|
|
|
22
22
|
// Call styles as functions to get theme-reactive styles
|
|
23
|
-
const
|
|
24
|
-
const
|
|
25
|
-
const
|
|
23
|
+
const intent = item.intent || 'neutral';
|
|
24
|
+
const itemStyle = (menuItemStyles.item as any)({ intent });
|
|
25
|
+
const iconStyle = (menuItemStyles.icon as any)({ intent });
|
|
26
|
+
const labelStyle = (menuItemStyles.label as any)({ intent });
|
|
26
27
|
|
|
27
28
|
// Extract icon size from theme variant (fontSize is set by $menu.iconSize)
|
|
28
29
|
const iconSize = iconStyle.fontSize || iconStyle.width || 20;
|
|
@@ -118,6 +118,14 @@ export const menuItemStyles = defineStyle('MenuItem', (theme: Theme) => ({
|
|
|
118
118
|
height: theme.sizes.$menu.iconSize,
|
|
119
119
|
fontSize: theme.sizes.$menu.iconSize,
|
|
120
120
|
},
|
|
121
|
+
intent: {
|
|
122
|
+
neutral: {},
|
|
123
|
+
primary: { color: theme.intents.primary.primary },
|
|
124
|
+
success: { color: theme.intents.success.primary },
|
|
125
|
+
danger: { color: theme.intents.danger.primary },
|
|
126
|
+
warning: { color: theme.intents.warning.primary },
|
|
127
|
+
info: { color: theme.intents.info.primary },
|
|
128
|
+
},
|
|
121
129
|
},
|
|
122
130
|
_web: {
|
|
123
131
|
display: 'flex',
|
|
@@ -131,6 +139,14 @@ export const menuItemStyles = defineStyle('MenuItem', (theme: Theme) => ({
|
|
|
131
139
|
size: {
|
|
132
140
|
fontSize: theme.sizes.$menu.labelFontSize,
|
|
133
141
|
},
|
|
142
|
+
intent: {
|
|
143
|
+
neutral: {},
|
|
144
|
+
primary: { color: theme.intents.primary.primary },
|
|
145
|
+
success: { color: theme.intents.success.primary },
|
|
146
|
+
danger: { color: theme.intents.danger.primary },
|
|
147
|
+
warning: { color: theme.intents.warning.primary },
|
|
148
|
+
info: { color: theme.intents.info.primary },
|
|
149
|
+
},
|
|
134
150
|
},
|
|
135
151
|
}),
|
|
136
152
|
}));
|
|
@@ -22,9 +22,10 @@ const MenuItem = forwardRef<IdealystElement, MenuItemProps>(({ item, onPress, si
|
|
|
22
22
|
});
|
|
23
23
|
|
|
24
24
|
// Compute dynamic styles - call as functions for theme reactivity
|
|
25
|
-
const
|
|
26
|
-
const
|
|
27
|
-
const
|
|
25
|
+
const intent = item.intent || 'neutral';
|
|
26
|
+
const itemStyle = (menuItemStyles.item as any)({ intent });
|
|
27
|
+
const iconStyle = (menuItemStyles.icon as any)({ intent });
|
|
28
|
+
const labelStyle = (menuItemStyles.label as any)({ intent });
|
|
28
29
|
|
|
29
30
|
const itemProps = getWebProps([itemStyle]);
|
|
30
31
|
const iconProps = getWebProps([iconStyle]);
|
|
@@ -127,7 +127,9 @@ export const tabBarStyles = defineStyle('TabBar', (theme: Theme) => ({
|
|
|
127
127
|
variants: {
|
|
128
128
|
size: {
|
|
129
129
|
fontSize: theme.sizes.$tabBar.fontSize,
|
|
130
|
-
|
|
130
|
+
paddingHorizontal: theme.sizes.$tabBar.padding,
|
|
131
|
+
paddingTop: theme.sizes.$tabBar.padding,
|
|
132
|
+
paddingBottom: theme.sizes.$tabBar.paddingBottom,
|
|
131
133
|
lineHeight: theme.sizes.$tabBar.lineHeight,
|
|
132
134
|
},
|
|
133
135
|
},
|