@movable/ui-mcp 1.1.2 → 1.1.4

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.
@@ -5,6 +5,11 @@
5
5
  "path": "src/components/DemoComponent",
6
6
  "props": "type DemoComponentProps = {\n stringToDisplay: string;\n}"
7
7
  },
8
+ {
9
+ "name": "InkAutocomplete",
10
+ "exportName": "InkAutocomplete",
11
+ "path": "src/components/Autocomplete/InkAutocomplete"
12
+ },
8
13
  {
9
14
  "name": "InkChip",
10
15
  "exportName": "InkChip",
@@ -125,6 +130,11 @@
125
130
  "path": "src/components/InkDrawer",
126
131
  "category": "layout"
127
132
  },
133
+ {
134
+ "name": "InkComponentTile",
135
+ "exportName": "InkComponentTile",
136
+ "path": "src/components/InkComponentTile"
137
+ },
128
138
  {
129
139
  "name": "InkSnackbar",
130
140
  "exportName": "* (barrel export)",
package/data/stories.json CHANGED
@@ -99,7 +99,24 @@
99
99
  "Data",
100
100
  "NoIconOrHeader",
101
101
  "WithJSXDescription",
102
- "LongLoading"
102
+ "LongLoading",
103
+ "WithJSXAction"
104
+ ]
105
+ },
106
+ {
107
+ "component": "InkComponentTile",
108
+ "title": "Surfaces/InkComponentTile",
109
+ "file": "stories/surfaces/InkComponentTile/InkComponentTile.stories.tsx",
110
+ "stories": [
111
+ "Default",
112
+ "WithoutDescription",
113
+ "WithoutIcon",
114
+ "Disabled",
115
+ "IsDragging",
116
+ "DynamicComponent",
117
+ "CustomCursor",
118
+ "WidthVariants",
119
+ "CustomStyling"
103
120
  ]
104
121
  },
105
122
  {
@@ -393,6 +410,17 @@
393
410
  "HelperText"
394
411
  ]
395
412
  },
413
+ {
414
+ "component": "InkAutocomplete",
415
+ "title": "Input/InkAutocomplete",
416
+ "file": "stories/inputs/InkAutocomplete.stories.tsx",
417
+ "stories": [
418
+ "Single",
419
+ "Multiple",
420
+ "WithHelperText",
421
+ "ErrorWithHelperText"
422
+ ]
423
+ },
396
424
  {
397
425
  "component": "IconButton",
398
426
  "title": "Inputs/IconButton",
@@ -426,17 +454,6 @@
426
454
  "Text"
427
455
  ]
428
456
  },
429
- {
430
- "component": "Autocomplete",
431
- "title": "Input/Autocomplete",
432
- "file": "stories/inputs/Autocomplete.stories.tsx",
433
- "stories": [
434
- "Single",
435
- "Multiple",
436
- "WithHelperText",
437
- "ErrorWithHelperText"
438
- ]
439
- },
440
457
  {
441
458
  "component": "InkWorkflowHeader",
442
459
  "title": "Headers/InkWorkflowHeader",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movable/ui-mcp",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "MCP server for @movable/ui component library - run via npx",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",