@idealyst/mcp-server 1.2.69 → 1.2.71

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.
@@ -99,16 +99,15 @@ export function CardWithIntent() {
99
99
  );
100
100
  }
101
101
 
102
- // Example 6: Clickable Card
103
- export function ClickableCard() {
102
+ // Example 6: Pressable Card
103
+ export function PressableCard() {
104
104
  return (
105
105
  <Card
106
- clickable
107
- onPress={() => console.log('Card clicked')}
106
+ onPress={() => console.log('Card pressed')}
108
107
  type="outlined"
109
108
  padding="md"
110
109
  >
111
- <Text>Click this card</Text>
110
+ <Text>Press this card</Text>
112
111
  </Card>
113
112
  );
114
113
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idealyst/mcp-server",
3
- "version": "1.2.69",
3
+ "version": "1.2.71",
4
4
  "description": "MCP server providing documentation and examples for the Idealyst framework",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
@@ -49,9 +49,9 @@
49
49
  "author": "Idealyst",
50
50
  "license": "MIT",
51
51
  "dependencies": {
52
- "@idealyst/components": "^1.2.69",
53
- "@idealyst/navigation": "^1.2.69",
54
- "@idealyst/theme": "^1.2.69",
52
+ "@idealyst/components": "^1.2.71",
53
+ "@idealyst/navigation": "^1.2.71",
54
+ "@idealyst/theme": "^1.2.71",
55
55
  "@idealyst/tooling": "^1.2.30",
56
56
  "@modelcontextprotocol/sdk": "^1.0.4"
57
57
  },