@lumeo-ui/mcp-server 3.0.0 → 3.0.2
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 +27 -5
- package/src/registry.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumeo-ui/mcp-server",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
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,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/components-api-schema.json",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"generated": "2026-05-
|
|
3
|
+
"version": "3.0.2",
|
|
4
|
+
"generated": "2026-05-21T21:19:49.3940922Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 149,
|
|
7
|
-
"totalParameters":
|
|
7
|
+
"totalParameters": 3580,
|
|
8
8
|
"totalEnums": 65,
|
|
9
9
|
"totalRecords": 62,
|
|
10
10
|
"thinFallbacks": []
|
|
@@ -561,7 +561,7 @@
|
|
|
561
561
|
"name": "ForceMount",
|
|
562
562
|
"type": "bool",
|
|
563
563
|
"default": null,
|
|
564
|
-
"description": "
|
|
564
|
+
"description": "Preserved for API compatibility only — Accordion content is now always mounted to allow the grid-rows close animation to run on collapse, so this flag is effectively a no-op. Children always live in the DOM whether the panel is open or closed.",
|
|
565
565
|
"isCascading": false,
|
|
566
566
|
"captureUnmatched": false
|
|
567
567
|
},
|
|
@@ -13142,7 +13142,7 @@
|
|
|
13142
13142
|
"name": "ForceMount",
|
|
13143
13143
|
"type": "bool",
|
|
13144
13144
|
"default": null,
|
|
13145
|
-
"description": "
|
|
13145
|
+
"description": "Preserved for API compatibility only — Collapsible content is now always mounted so the grid-rows close animation can run on collapse, so this flag is effectively a no-op. Children always live in the DOM whether the collapsible is open or closed.",
|
|
13146
13146
|
"isCascading": false,
|
|
13147
13147
|
"captureUnmatched": false
|
|
13148
13148
|
},
|
|
@@ -37595,6 +37595,7 @@
|
|
|
37595
37595
|
"files": [
|
|
37596
37596
|
"UI/Tabs/Tabs.razor",
|
|
37597
37597
|
"UI/Tabs/TabsContent.razor",
|
|
37598
|
+
"UI/Tabs/TabsLayout.cs",
|
|
37598
37599
|
"UI/Tabs/TabsList.razor",
|
|
37599
37600
|
"UI/Tabs/TabsReorderEventArgs.cs",
|
|
37600
37601
|
"UI/Tabs/TabsTrigger.razor"
|
|
@@ -37878,6 +37879,22 @@
|
|
|
37878
37879
|
"isCascading": false,
|
|
37879
37880
|
"captureUnmatched": false
|
|
37880
37881
|
},
|
|
37882
|
+
{
|
|
37883
|
+
"name": "SavedLayout",
|
|
37884
|
+
"type": "TabsLayout?",
|
|
37885
|
+
"default": null,
|
|
37886
|
+
"description": "Optional previously-persisted tab ordering. The library does not mutate the consumer's backing collection on its own — pass this to your parent component on init and apply Order to your collection before rendering. Mirrors DataGrid's SavedLayout parameter and pairs with OnLayoutChanged to round-trip the order through your storage of choice.",
|
|
37887
|
+
"isCascading": false,
|
|
37888
|
+
"captureUnmatched": false
|
|
37889
|
+
},
|
|
37890
|
+
{
|
|
37891
|
+
"name": "OnLayoutChanged",
|
|
37892
|
+
"type": "EventCallback<TabsLayout>",
|
|
37893
|
+
"default": null,
|
|
37894
|
+
"description": "Fires immediately after each successful reorder with the post-drop tab order, so the consumer can persist it (e.g. to local storage). The snapshot reflects the order the consumer's collection will have once it applies the corresponding OnReorder. Only meaningful when Reorderable is true. Pairs with SavedLayout to round-trip the order through storage.",
|
|
37895
|
+
"isCascading": false,
|
|
37896
|
+
"captureUnmatched": false
|
|
37897
|
+
},
|
|
37881
37898
|
{
|
|
37882
37899
|
"name": "Class",
|
|
37883
37900
|
"type": "string?",
|
|
@@ -37900,6 +37917,11 @@
|
|
|
37900
37917
|
"name": "OnReorder",
|
|
37901
37918
|
"type": "EventCallback<TabsReorderEventArgs>",
|
|
37902
37919
|
"description": "Fires when the user drops a dragged TabsTrigger on a new position. Only meaningful when Reorderable is true."
|
|
37920
|
+
},
|
|
37921
|
+
{
|
|
37922
|
+
"name": "OnLayoutChanged",
|
|
37923
|
+
"type": "EventCallback<TabsLayout>",
|
|
37924
|
+
"description": "Fires immediately after each successful reorder with the post-drop tab order, so the consumer can persist it (e.g. to local storage). The snapshot reflects the order the consumer's collection will have once it applies the corresponding OnReorder. Only meaningful when Reorderable is true. Pairs with SavedLayout to round-trip the order through storage."
|
|
37903
37925
|
}
|
|
37904
37926
|
],
|
|
37905
37927
|
"enums": [],
|
package/src/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/registry-schema.json",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"generated": "2026-05-
|
|
3
|
+
"version": "3.0.2",
|
|
4
|
+
"generated": "2026-05-21T21:19:48.3483217Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"accordion": {
|
|
7
7
|
"name": "Accordion",
|
|
@@ -3324,6 +3324,7 @@
|
|
|
3324
3324
|
"files": [
|
|
3325
3325
|
"UI/Tabs/Tabs.razor",
|
|
3326
3326
|
"UI/Tabs/TabsContent.razor",
|
|
3327
|
+
"UI/Tabs/TabsLayout.cs",
|
|
3327
3328
|
"UI/Tabs/TabsList.razor",
|
|
3328
3329
|
"UI/Tabs/TabsReorderEventArgs.cs",
|
|
3329
3330
|
"UI/Tabs/TabsTrigger.razor"
|