@lumeo-ui/mcp-server 3.7.1 → 3.8.0
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 +110 -3
- package/src/registry.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumeo-ui/mcp-server",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.0",
|
|
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.
|
|
4
|
-
"generated": "2026-05-30T08:
|
|
3
|
+
"version": "3.8.0",
|
|
4
|
+
"generated": "2026-05-30T08:55:23.1442448Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 163,
|
|
7
|
-
"totalParameters":
|
|
7
|
+
"totalParameters": 3909,
|
|
8
8
|
"totalEnums": 71,
|
|
9
9
|
"totalRecords": 63,
|
|
10
10
|
"serviceCount": 33,
|
|
@@ -17212,6 +17212,7 @@
|
|
|
17212
17212
|
"UI/Combobox/ComboboxContent.razor",
|
|
17213
17213
|
"UI/Combobox/ComboboxCreate.razor",
|
|
17214
17214
|
"UI/Combobox/ComboboxEmpty.razor",
|
|
17215
|
+
"UI/Combobox/ComboboxGroup.razor",
|
|
17215
17216
|
"UI/Combobox/ComboboxInput.razor",
|
|
17216
17217
|
"UI/Combobox/ComboboxItem.razor"
|
|
17217
17218
|
],
|
|
@@ -17524,6 +17525,7 @@
|
|
|
17524
17525
|
"--color-accent-foreground",
|
|
17525
17526
|
"--color-border",
|
|
17526
17527
|
"--color-destructive",
|
|
17528
|
+
"--color-foreground",
|
|
17527
17529
|
"--color-input",
|
|
17528
17530
|
"--color-muted",
|
|
17529
17531
|
"--color-muted-foreground",
|
|
@@ -17715,6 +17717,103 @@
|
|
|
17715
17717
|
"parseFailed": false,
|
|
17716
17718
|
"parseError": null
|
|
17717
17719
|
},
|
|
17720
|
+
"ComboboxGroup": {
|
|
17721
|
+
"componentName": "ComboboxGroup",
|
|
17722
|
+
"fileName": "ComboboxGroup.razor",
|
|
17723
|
+
"namespace": "Lumeo",
|
|
17724
|
+
"inheritsFrom": null,
|
|
17725
|
+
"implements": [
|
|
17726
|
+
"IDisposable"
|
|
17727
|
+
],
|
|
17728
|
+
"parameters": [
|
|
17729
|
+
{
|
|
17730
|
+
"name": "Context",
|
|
17731
|
+
"type": "Combobox.ComboboxContext",
|
|
17732
|
+
"default": "default!",
|
|
17733
|
+
"description": null,
|
|
17734
|
+
"isCascading": true,
|
|
17735
|
+
"captureUnmatched": false
|
|
17736
|
+
},
|
|
17737
|
+
{
|
|
17738
|
+
"name": "ParentGroup",
|
|
17739
|
+
"type": "ComboboxGroupContext?",
|
|
17740
|
+
"default": null,
|
|
17741
|
+
"description": null,
|
|
17742
|
+
"isCascading": true,
|
|
17743
|
+
"captureUnmatched": false
|
|
17744
|
+
},
|
|
17745
|
+
{
|
|
17746
|
+
"name": "ChildContent",
|
|
17747
|
+
"type": "RenderFragment?",
|
|
17748
|
+
"default": null,
|
|
17749
|
+
"description": null,
|
|
17750
|
+
"isCascading": false,
|
|
17751
|
+
"captureUnmatched": false
|
|
17752
|
+
},
|
|
17753
|
+
{
|
|
17754
|
+
"name": "Label",
|
|
17755
|
+
"type": "string?",
|
|
17756
|
+
"default": null,
|
|
17757
|
+
"description": "Group header text. When null/empty the group renders no header (still nests its items).",
|
|
17758
|
+
"isCascading": false,
|
|
17759
|
+
"captureUnmatched": false
|
|
17760
|
+
},
|
|
17761
|
+
{
|
|
17762
|
+
"name": "LabelClass",
|
|
17763
|
+
"type": "string?",
|
|
17764
|
+
"default": null,
|
|
17765
|
+
"description": "Extra classes for the group label — theming hook for the header appearance.",
|
|
17766
|
+
"isCascading": false,
|
|
17767
|
+
"captureUnmatched": false
|
|
17768
|
+
},
|
|
17769
|
+
{
|
|
17770
|
+
"name": "Collapsible",
|
|
17771
|
+
"type": "bool",
|
|
17772
|
+
"default": null,
|
|
17773
|
+
"description": "When true the header toggles the group open/closed. Collapsed groups hide their items.",
|
|
17774
|
+
"isCascading": false,
|
|
17775
|
+
"captureUnmatched": false
|
|
17776
|
+
},
|
|
17777
|
+
{
|
|
17778
|
+
"name": "DefaultExpanded",
|
|
17779
|
+
"type": "bool",
|
|
17780
|
+
"default": "true",
|
|
17781
|
+
"description": "Initial expanded state for a Collapsible group. Default expanded.",
|
|
17782
|
+
"isCascading": false,
|
|
17783
|
+
"captureUnmatched": false
|
|
17784
|
+
},
|
|
17785
|
+
{
|
|
17786
|
+
"name": "GroupSelect",
|
|
17787
|
+
"type": "bool",
|
|
17788
|
+
"default": null,
|
|
17789
|
+
"description": "In Multiple mode, render a tri-state checkbox on the header that selects / deselects every descendant item in one click.",
|
|
17790
|
+
"isCascading": false,
|
|
17791
|
+
"captureUnmatched": false
|
|
17792
|
+
},
|
|
17793
|
+
{
|
|
17794
|
+
"name": "Class",
|
|
17795
|
+
"type": "string?",
|
|
17796
|
+
"default": null,
|
|
17797
|
+
"description": null,
|
|
17798
|
+
"isCascading": false,
|
|
17799
|
+
"captureUnmatched": false
|
|
17800
|
+
},
|
|
17801
|
+
{
|
|
17802
|
+
"name": "AdditionalAttributes",
|
|
17803
|
+
"type": "Dictionary<string, object>?",
|
|
17804
|
+
"default": null,
|
|
17805
|
+
"description": null,
|
|
17806
|
+
"isCascading": false,
|
|
17807
|
+
"captureUnmatched": true
|
|
17808
|
+
}
|
|
17809
|
+
],
|
|
17810
|
+
"events": [],
|
|
17811
|
+
"enums": [],
|
|
17812
|
+
"records": [],
|
|
17813
|
+
"gotchas": [],
|
|
17814
|
+
"parseFailed": false,
|
|
17815
|
+
"parseError": null
|
|
17816
|
+
},
|
|
17718
17817
|
"ComboboxInput": {
|
|
17719
17818
|
"componentName": "ComboboxInput",
|
|
17720
17819
|
"fileName": "ComboboxInput.razor",
|
|
@@ -17787,6 +17886,14 @@
|
|
|
17787
17886
|
"isCascading": true,
|
|
17788
17887
|
"captureUnmatched": false
|
|
17789
17888
|
},
|
|
17889
|
+
{
|
|
17890
|
+
"name": "Group",
|
|
17891
|
+
"type": "ComboboxGroup.ComboboxGroupContext?",
|
|
17892
|
+
"default": null,
|
|
17893
|
+
"description": null,
|
|
17894
|
+
"isCascading": true,
|
|
17895
|
+
"captureUnmatched": false
|
|
17896
|
+
},
|
|
17790
17897
|
{
|
|
17791
17898
|
"name": "ChildContent",
|
|
17792
17899
|
"type": "RenderFragment?",
|
package/src/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/registry-schema.json",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"generated": "2026-05-30T08:
|
|
3
|
+
"version": "3.8.0",
|
|
4
|
+
"generated": "2026-05-30T08:55:21.6474076Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"accordion": {
|
|
7
7
|
"name": "Accordion",
|
|
@@ -871,6 +871,7 @@
|
|
|
871
871
|
"UI/Combobox/ComboboxContent.razor",
|
|
872
872
|
"UI/Combobox/ComboboxCreate.razor",
|
|
873
873
|
"UI/Combobox/ComboboxEmpty.razor",
|
|
874
|
+
"UI/Combobox/ComboboxGroup.razor",
|
|
874
875
|
"UI/Combobox/ComboboxInput.razor",
|
|
875
876
|
"UI/Combobox/ComboboxItem.razor"
|
|
876
877
|
],
|
|
@@ -885,6 +886,7 @@
|
|
|
885
886
|
"--color-accent-foreground",
|
|
886
887
|
"--color-border",
|
|
887
888
|
"--color-destructive",
|
|
889
|
+
"--color-foreground",
|
|
888
890
|
"--color-input",
|
|
889
891
|
"--color-muted",
|
|
890
892
|
"--color-muted-foreground",
|