@lumeo-ui/mcp-server 2.0.0-rc.25 → 2.0.0-rc.27

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumeo-ui/mcp-server",
3
- "version": "2.0.0-rc.25",
3
+ "version": "2.0.0-rc.27",
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",
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "$schema": "https://lumeo.nativ.sh/components-api-schema.json",
3
- "version": "2.0.0-rc.25",
4
- "generated": "2026-05-06T12:09:32.8445085Z",
3
+ "version": "2.0.0-rc.27",
4
+ "generated": "2026-05-06T13:38:07.0663106Z",
5
5
  "stats": {
6
6
  "componentCount": 131,
7
- "totalParameters": 3177,
8
- "totalEnums": 89,
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://lumeo.nativ.sh/registry-schema.json",
3
3
  "version": "2.0.0",
4
- "generated": "2026-05-06T12:09:32.0198649Z",
4
+ "generated": "2026-05-06T13:38:06.2687513Z",
5
5
  "components": {
6
6
  "accordion": {
7
7
  "name": "Accordion",