@idealyst/mcp-server 1.2.103 → 1.2.104
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/dist/{chunk-74TE7CY7.js → chunk-ZDB2NURA.js} +2 -9
- package/dist/{chunk-74TE7CY7.js.map → chunk-ZDB2NURA.js.map} +1 -1
- package/dist/index.cjs +1 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tools/index.cjs +1 -8
- package/dist/tools/index.cjs.map +1 -1
- package/dist/tools/index.js +1 -1
- package/package.json +5 -5
|
@@ -11423,7 +11423,7 @@ These are mistakes agents make repeatedly. Each one causes TypeScript compilatio
|
|
|
11423
11423
|
### Imports & Styling
|
|
11424
11424
|
16. **Never** import from \`react-native\` for UI \u2014 no \`TouchableOpacity\`, \`FlatList\`, \`ScrollView\`, \`Animated\`, \`Dimensions\`.
|
|
11425
11425
|
17. **Never** import from \`react-native-unistyles\` \u2014 use \`@idealyst/theme\` (\`configureThemes\`, \`ThemeSettings\`, \`useTheme\`).
|
|
11426
|
-
18. **
|
|
11426
|
+
18. **useTheme()** returns the Theme object **directly** (NOT wrapped): \`const theme = useTheme();\`. Do NOT destructure: \`const { theme } = useTheme()\` causes TS2339. Use theme tokens for colors and spacing: \`style={{ padding: theme.spacing.md, backgroundColor: theme.colors.surface.primary }}\`.
|
|
11427
11427
|
|
|
11428
11428
|
### React 19 TypeScript
|
|
11429
11429
|
- **useRef** requires an initial argument: \`useRef<T>(null)\` \u2014 NOT \`useRef<T>()\`. Omitting the argument causes TS2554. For non-null refs use: \`useRef<number>(0)\`, \`useRef<string[]>([])\`.
|
|
@@ -19511,13 +19511,6 @@ function postProcessComponentTypes(componentName, result) {
|
|
|
19511
19511
|
result.usageNote = 'Card is a SIMPLE CONTAINER \u2014 there are NO compound components. Do NOT use Card.Content, Card.Header, Card.Body, Card.Footer, Card.Title \u2014 they do NOT exist and will cause TS2339. Just put children directly inside <Card>...</Card>. Example: <Card padding="md"><Text>Title</Text><Text>Body</Text></Card>';
|
|
19512
19512
|
}
|
|
19513
19513
|
}
|
|
19514
|
-
const resultStr = JSON.stringify(result);
|
|
19515
|
-
if (resultStr.includes("IconName") || resultStr.includes("mdi:")) {
|
|
19516
|
-
const iconNote = "\n\nICON NAME FORMAT: The `name` prop type shows `IconName | \"mdi:...\"` variants. Both formats work in JSX props. However, when you store icon names in variables, type them as `IconName` and use BARE names (without 'mdi:' prefix):\n```tsx\nimport type { IconName } from '@idealyst/components';\nconst icon: IconName = 'home'; // CORRECT\nconst icon: IconName = 'mdi:home'; // WRONG \u2014 TS error\nconst icon: string = 'home'; // WRONG \u2014 won't match IconName props\n```\nAlways use bare names like 'home', 'check-circle', 'arrow-left' \u2014 never 'mdi:home'.";
|
|
19517
|
-
if (typeof result === "object" && result !== null) {
|
|
19518
|
-
result.iconNameNote = iconNote;
|
|
19519
|
-
}
|
|
19520
|
-
}
|
|
19521
19514
|
return result;
|
|
19522
19515
|
}
|
|
19523
19516
|
function getComponentExamplesTs(args) {
|
|
@@ -20275,4 +20268,4 @@ export {
|
|
|
20275
20268
|
toolHandlers,
|
|
20276
20269
|
callTool
|
|
20277
20270
|
};
|
|
20278
|
-
//# sourceMappingURL=chunk-
|
|
20271
|
+
//# sourceMappingURL=chunk-ZDB2NURA.js.map
|