@lumeo-ui/mcp-server 2.0.0-rc.25 → 2.0.0-rc.26
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 +1 -1
- package/src/components-api.json +37 -4
- package/src/registry.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumeo-ui/mcp-server",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.26",
|
|
4
4
|
"description": "Model Context Protocol server for the Lumeo Blazor component library. Lets LLMs (Claude, Copilot, Cursor) author correct Lumeo markup.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
package/src/components-api.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/components-api-schema.json",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
4
|
-
"generated": "2026-05-06T12:
|
|
3
|
+
"version": "2.0.0-rc.26",
|
|
4
|
+
"generated": "2026-05-06T12:19:03.8118663Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 131,
|
|
7
|
-
"totalParameters":
|
|
8
|
-
"totalEnums":
|
|
7
|
+
"totalParameters": 3180,
|
|
8
|
+
"totalEnums": 90,
|
|
9
9
|
"totalRecords": 48,
|
|
10
10
|
"thinFallbacks": []
|
|
11
11
|
},
|
|
@@ -2820,6 +2820,30 @@
|
|
|
2820
2820
|
"isCascading": false,
|
|
2821
2821
|
"captureUnmatched": false
|
|
2822
2822
|
},
|
|
2823
|
+
{
|
|
2824
|
+
"name": "Type",
|
|
2825
|
+
"type": "ButtonType",
|
|
2826
|
+
"default": "ButtonType.Button",
|
|
2827
|
+
"description": "HTML button type. Defaults to Button — explicitly NOT submit. The HTML spec says <button> inside <form> defaults to type=\"submit\", which would submit the form on every click. Lumeo defaults to a regular button so Buttons don't silently submit EditForm; opt in via Type=\"Submit\".",
|
|
2828
|
+
"isCascading": false,
|
|
2829
|
+
"captureUnmatched": false
|
|
2830
|
+
},
|
|
2831
|
+
{
|
|
2832
|
+
"name": "StopPropagation",
|
|
2833
|
+
"type": "bool",
|
|
2834
|
+
"default": null,
|
|
2835
|
+
"description": "Stop click propagation to ancestors. Use this instead of the Razor directive @@onclick:stopPropagation on a Lumeo component — that directive creates an onclick parameter that case-insensitively collides with the OnClick parameter, producing a compile error. The directive only works natively on HTML elements; this parameter is the equivalent for the <button> element underneath.",
|
|
2836
|
+
"isCascading": false,
|
|
2837
|
+
"captureUnmatched": false
|
|
2838
|
+
},
|
|
2839
|
+
{
|
|
2840
|
+
"name": "PreventDefault",
|
|
2841
|
+
"type": "bool",
|
|
2842
|
+
"default": null,
|
|
2843
|
+
"description": "Prevent the default click action on the underlying <button> element. Same rationale as StopPropagation — Razor's @@onclick:preventDefault directive collides case-insensitively with the OnClick parameter on components.",
|
|
2844
|
+
"isCascading": false,
|
|
2845
|
+
"captureUnmatched": false
|
|
2846
|
+
},
|
|
2823
2847
|
{
|
|
2824
2848
|
"name": "PressEffect",
|
|
2825
2849
|
"type": "ButtonPressEffect",
|
|
@@ -2867,6 +2891,15 @@
|
|
|
2867
2891
|
],
|
|
2868
2892
|
"description": null
|
|
2869
2893
|
},
|
|
2894
|
+
{
|
|
2895
|
+
"name": "ButtonType",
|
|
2896
|
+
"values": [
|
|
2897
|
+
"Button",
|
|
2898
|
+
"Submit",
|
|
2899
|
+
"Reset"
|
|
2900
|
+
],
|
|
2901
|
+
"description": null
|
|
2902
|
+
},
|
|
2870
2903
|
{
|
|
2871
2904
|
"name": "ButtonPressEffect",
|
|
2872
2905
|
"values": [
|
package/src/registry.json
CHANGED