@lumeo-ui/mcp-server 2.0.0-rc.26 → 2.0.0-rc.28
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 +80 -8
- 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.28",
|
|
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": "2.0.0-rc.
|
|
4
|
-
"generated": "2026-05-
|
|
3
|
+
"version": "2.0.0-rc.28",
|
|
4
|
+
"generated": "2026-05-07T11:00:49.1332443Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 131,
|
|
7
|
-
"totalParameters":
|
|
7
|
+
"totalParameters": 3189,
|
|
8
8
|
"totalEnums": 90,
|
|
9
9
|
"totalRecords": 48,
|
|
10
10
|
"thinFallbacks": []
|
|
@@ -3081,9 +3081,9 @@
|
|
|
3081
3081
|
},
|
|
3082
3082
|
{
|
|
3083
3083
|
"name": "FirstDayOfWeek",
|
|
3084
|
-
"type": "DayOfWeek",
|
|
3085
|
-
"default":
|
|
3086
|
-
"description": null,
|
|
3084
|
+
"type": "DayOfWeek?",
|
|
3085
|
+
"default": null,
|
|
3086
|
+
"description": "The day of the week to render in the leftmost column. When null (default), uses CultureInfo.CurrentCulture.DateTimeFormat.FirstDayOfWeek — so de-DE / fr-FR / etc. start on Monday automatically, en-US on Sunday. Pass an explicit DayOfWeek to override.",
|
|
3087
3087
|
"isCascading": false,
|
|
3088
3088
|
"captureUnmatched": false
|
|
3089
3089
|
},
|
|
@@ -14208,6 +14208,14 @@
|
|
|
14208
14208
|
"isCascading": false,
|
|
14209
14209
|
"captureUnmatched": false
|
|
14210
14210
|
},
|
|
14211
|
+
{
|
|
14212
|
+
"name": "PageSizeOptions",
|
|
14213
|
+
"type": "int[]",
|
|
14214
|
+
"default": "new[] { 10, 25, 50, 100 }",
|
|
14215
|
+
"description": "The list of page-size options shown in the rows-per-page selector. Defaults to { 10, 25, 50, 100 }. Set to e.g. { 10, 50, 100, 200, 300 } for larger datasets, or to an empty array to hide the selector entirely.",
|
|
14216
|
+
"isCascading": false,
|
|
14217
|
+
"captureUnmatched": false
|
|
14218
|
+
},
|
|
14211
14219
|
{
|
|
14212
14220
|
"name": "ShowPagination",
|
|
14213
14221
|
"type": "bool",
|
|
@@ -14260,7 +14268,23 @@
|
|
|
14260
14268
|
"name": "VirtualizeThreshold",
|
|
14261
14269
|
"type": "int",
|
|
14262
14270
|
"default": "500",
|
|
14263
|
-
"description":
|
|
14271
|
+
"description": "Item count above which Blazor's <Virtualize> kicks in. Only relevant when ShowPagination is false (or PageSize > this threshold) — paged grids show at most PageSize rows at once and never trigger virtualization. Default 500.",
|
|
14272
|
+
"isCascading": false,
|
|
14273
|
+
"captureUnmatched": false
|
|
14274
|
+
},
|
|
14275
|
+
{
|
|
14276
|
+
"name": "VirtualItemSize",
|
|
14277
|
+
"type": "float",
|
|
14278
|
+
"default": "41f",
|
|
14279
|
+
"description": "Estimated row height in CSS pixels — used by <Virtualize> to size the scroll spacers. Tune if your rows are taller (dense badges, two-line cells). Default 41px.",
|
|
14280
|
+
"isCascading": false,
|
|
14281
|
+
"captureUnmatched": false
|
|
14282
|
+
},
|
|
14283
|
+
{
|
|
14284
|
+
"name": "VirtualOverscanCount",
|
|
14285
|
+
"type": "int",
|
|
14286
|
+
"default": "3",
|
|
14287
|
+
"description": "Extra rows rendered above and below the viewport to hide pop-in during fast scrolling. Default 3.",
|
|
14264
14288
|
"isCascading": false,
|
|
14265
14289
|
"captureUnmatched": false
|
|
14266
14290
|
},
|
|
@@ -14432,6 +14456,22 @@
|
|
|
14432
14456
|
"isCascading": false,
|
|
14433
14457
|
"captureUnmatched": false
|
|
14434
14458
|
},
|
|
14459
|
+
{
|
|
14460
|
+
"name": "Virtualized",
|
|
14461
|
+
"type": "bool",
|
|
14462
|
+
"default": null,
|
|
14463
|
+
"description": "Enables Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize{TItem} with an ItemsProvider — rows are fetched from the backend in scroll-driven windows instead of paged. Requires OnRangeRequest. When active, pagination is hidden automatically and the grid renders a single tall scrollable body.",
|
|
14464
|
+
"isCascading": false,
|
|
14465
|
+
"captureUnmatched": false
|
|
14466
|
+
},
|
|
14467
|
+
{
|
|
14468
|
+
"name": "OnRangeRequest",
|
|
14469
|
+
"type": "Func<DataGridRangeRequest, ValueTask<DataGridRangeResponse<TItem>>>?",
|
|
14470
|
+
"default": null,
|
|
14471
|
+
"description": "Range-fetch callback used in virtualised server mode. The grid invokes this whenever the viewport scrolls into an unloaded window. The callback must return the requested slice plus the current total row count so the scroll spacers stay accurate.",
|
|
14472
|
+
"isCascading": false,
|
|
14473
|
+
"captureUnmatched": false
|
|
14474
|
+
},
|
|
14435
14475
|
{
|
|
14436
14476
|
"name": "ChildContent",
|
|
14437
14477
|
"type": "RenderFragment?",
|
|
@@ -14689,6 +14729,30 @@
|
|
|
14689
14729
|
"isCascading": false,
|
|
14690
14730
|
"captureUnmatched": false
|
|
14691
14731
|
},
|
|
14732
|
+
{
|
|
14733
|
+
"name": "VirtualItemSize",
|
|
14734
|
+
"type": "float",
|
|
14735
|
+
"default": "41f",
|
|
14736
|
+
"description": null,
|
|
14737
|
+
"isCascading": false,
|
|
14738
|
+
"captureUnmatched": false
|
|
14739
|
+
},
|
|
14740
|
+
{
|
|
14741
|
+
"name": "VirtualOverscanCount",
|
|
14742
|
+
"type": "int",
|
|
14743
|
+
"default": "3",
|
|
14744
|
+
"description": null,
|
|
14745
|
+
"isCascading": false,
|
|
14746
|
+
"captureUnmatched": false
|
|
14747
|
+
},
|
|
14748
|
+
{
|
|
14749
|
+
"name": "ServerVirtualizationProvider",
|
|
14750
|
+
"type": "Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate<IndexedItem>?",
|
|
14751
|
+
"default": null,
|
|
14752
|
+
"description": "When set, switches the body to ItemsProvider-mode virtualisation (window-fetched server scrolling). Null disables.",
|
|
14753
|
+
"isCascading": false,
|
|
14754
|
+
"captureUnmatched": false
|
|
14755
|
+
},
|
|
14692
14756
|
{
|
|
14693
14757
|
"name": "HasDetailTemplate",
|
|
14694
14758
|
"type": "bool",
|
|
@@ -14741,7 +14805,7 @@
|
|
|
14741
14805
|
"records": [
|
|
14742
14806
|
{
|
|
14743
14807
|
"name": "IndexedItem",
|
|
14744
|
-
"signature": "IndexedItem(
|
|
14808
|
+
"signature": "IndexedItem(TItem Item, int Index)",
|
|
14745
14809
|
"description": null
|
|
14746
14810
|
}
|
|
14747
14811
|
],
|
|
@@ -15650,6 +15714,14 @@
|
|
|
15650
15714
|
"isCascading": false,
|
|
15651
15715
|
"captureUnmatched": false
|
|
15652
15716
|
},
|
|
15717
|
+
{
|
|
15718
|
+
"name": "PageSizeOptions",
|
|
15719
|
+
"type": "int[]",
|
|
15720
|
+
"default": "new[] { 10, 25, 50, 100 }",
|
|
15721
|
+
"description": "Page-size options shown in the rows-per-page selector. Empty array hides the selector entirely.",
|
|
15722
|
+
"isCascading": false,
|
|
15723
|
+
"captureUnmatched": false
|
|
15724
|
+
},
|
|
15653
15725
|
{
|
|
15654
15726
|
"name": "Class",
|
|
15655
15727
|
"type": "string?",
|
package/src/registry.json
CHANGED