@lumeo-ui/mcp-server 2.0.0-rc.27 → 2.0.0-rc.29
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 +107 -10
- 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.29",
|
|
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-
|
|
3
|
+
"version": "2.0.0-rc.29",
|
|
4
|
+
"generated": "2026-05-12T09:41:38.8919000Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 131,
|
|
7
|
-
"totalParameters":
|
|
8
|
-
"totalEnums":
|
|
7
|
+
"totalParameters": 3191,
|
|
8
|
+
"totalEnums": 91,
|
|
9
9
|
"totalRecords": 48,
|
|
10
10
|
"thinFallbacks": []
|
|
11
11
|
},
|
|
@@ -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?",
|
|
@@ -32018,6 +32090,14 @@
|
|
|
32018
32090
|
"isCascading": false,
|
|
32019
32091
|
"captureUnmatched": false
|
|
32020
32092
|
},
|
|
32093
|
+
{
|
|
32094
|
+
"name": "RenderMode",
|
|
32095
|
+
"type": "TabsRenderMode",
|
|
32096
|
+
"default": "TabsRenderMode.Active",
|
|
32097
|
+
"description": "Controls when each TabsContent panel is rendered into the DOM and whether its state survives a tab switch: Active (default) — only the active panel is in the DOM; switching away unmounts it (form inputs, scroll position and any component state are lost). Lightest footprint. Lazy — a panel is rendered the first time its tab becomes active, then kept in the DOM (hidden) so its state is preserved on subsequent switches. Like DevExpress OnDemand. Eager — every panel is rendered immediately; inactive ones are hidden. State always preserved, but the heaviest initial render. Like DevExpress Always. A single TabsContent can opt into eager rendering regardless of this setting via ForceMount=\"true\".",
|
|
32098
|
+
"isCascading": false,
|
|
32099
|
+
"captureUnmatched": false
|
|
32100
|
+
},
|
|
32021
32101
|
{
|
|
32022
32102
|
"name": "Class",
|
|
32023
32103
|
"type": "string?",
|
|
@@ -32050,12 +32130,21 @@
|
|
|
32050
32130
|
"Vertical"
|
|
32051
32131
|
],
|
|
32052
32132
|
"description": null
|
|
32133
|
+
},
|
|
32134
|
+
{
|
|
32135
|
+
"name": "TabsRenderMode",
|
|
32136
|
+
"values": [
|
|
32137
|
+
"Active",
|
|
32138
|
+
"Lazy",
|
|
32139
|
+
"Eager"
|
|
32140
|
+
],
|
|
32141
|
+
"description": "Render strategy for TabsContent panels. See RenderMode for the semantics of each value."
|
|
32053
32142
|
}
|
|
32054
32143
|
],
|
|
32055
32144
|
"records": [
|
|
32056
32145
|
{
|
|
32057
32146
|
"name": "TabsContext",
|
|
32058
|
-
"signature": "TabsContext(\r\n string ActiveValue,\r\n EventCallback<string> SetValue,\r\n TabsOrientation Orientation,\r\n string Variant,\r\n Dictionary<string, (string TabId, string PanelId)> TabIds,\r\n bool AnimatedIndicator)",
|
|
32147
|
+
"signature": "TabsContext(\r\n string ActiveValue,\r\n EventCallback<string> SetValue,\r\n TabsOrientation Orientation,\r\n string Variant,\r\n Dictionary<string, (string TabId, string PanelId)> TabIds,\r\n bool AnimatedIndicator,\r\n TabsRenderMode RenderMode,\r\n HashSet<string> ActivatedValues)",
|
|
32059
32148
|
"description": null
|
|
32060
32149
|
}
|
|
32061
32150
|
],
|
|
@@ -32103,6 +32192,14 @@
|
|
|
32103
32192
|
"isCascading": false,
|
|
32104
32193
|
"captureUnmatched": false
|
|
32105
32194
|
},
|
|
32195
|
+
{
|
|
32196
|
+
"name": "ForceMount",
|
|
32197
|
+
"type": "bool",
|
|
32198
|
+
"default": null,
|
|
32199
|
+
"description": "When true, this panel is always rendered into the DOM (hidden when inactive), regardless of the parent RenderMode. Use for panels whose state must survive every tab switch — e.g. a half-filled form — while leaving the rest of the tab set on the lighter default mode.",
|
|
32200
|
+
"isCascading": false,
|
|
32201
|
+
"captureUnmatched": false
|
|
32202
|
+
},
|
|
32106
32203
|
{
|
|
32107
32204
|
"name": "Class",
|
|
32108
32205
|
"type": "string?",
|
package/src/registry.json
CHANGED