@idealyst/mcp-server 1.2.118 → 1.2.119

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/index.js CHANGED
@@ -7,7 +7,7 @@ import {
7
7
  storageGuides,
8
8
  toolDefinitions,
9
9
  translateGuides
10
- } from "./chunk-O2B33ZYL.js";
10
+ } from "./chunk-UD56HXN3.js";
11
11
 
12
12
  // src/index.ts
13
13
  import { Server } from "@modelcontextprotocol/sdk/server/index.js";
@@ -2757,6 +2757,7 @@ const appRouter: NavigatorParam = {
2757
2757
  > - Layout props do NOT include \`children\` \u2014 content renders via \`<Outlet />\`
2758
2758
  > - Always create \`.web.tsx\`, \`.native.tsx\`, AND a base \`index.ts\` \u2014 without the base \`index.ts\`, TypeScript reports TS2307 (cannot find module)
2759
2759
  > - The base \`index.ts\` re-exports from the \`.web\` version; bundlers pick the right platform file at runtime
2760
+ > - **Web-only CSS** in \`.web.tsx\`: cast with \`as any\`, NOT \`as React.CSSProperties\` \u2014 \`CSSProperties\` is incompatible with \`StyleProp<ViewStyle>\` (TS2322). Example: \`style={{ position: 'fixed', transition: 'width 0.2s' } as any}\`
2760
2761
 
2761
2762
  ## GeneralLayout Component
2762
2763