@lumeo-ui/mcp-server 3.8.0 → 3.9.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 +366 -14
- package/src/registry.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumeo-ui/mcp-server",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.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-
|
|
3
|
+
"version": "3.9.0",
|
|
4
|
+
"generated": "2026-05-31T08:58:30.4363829Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 163,
|
|
7
|
-
"totalParameters":
|
|
7
|
+
"totalParameters": 3946,
|
|
8
8
|
"totalEnums": 71,
|
|
9
9
|
"totalRecords": 63,
|
|
10
10
|
"serviceCount": 33,
|
|
@@ -8431,9 +8431,11 @@
|
|
|
8431
8431
|
"nugetPackage": "Lumeo.Charts",
|
|
8432
8432
|
"files": [
|
|
8433
8433
|
"UI/Chart/Chart.razor",
|
|
8434
|
+
"UI/Chart/ChartAnnotations.cs",
|
|
8434
8435
|
"UI/Chart/ChartHelper.cs",
|
|
8435
8436
|
"UI/Chart/ChartLabelHelper.cs",
|
|
8436
8437
|
"UI/Chart/ChartPlaceholderFactory.cs",
|
|
8438
|
+
"UI/Chart/ChartReferenceZone.razor",
|
|
8437
8439
|
"UI/Chart/Charts/AreaChart.razor",
|
|
8438
8440
|
"UI/Chart/Charts/BarChart.razor",
|
|
8439
8441
|
"UI/Chart/Charts/BoxPlotChart.razor",
|
|
@@ -8466,6 +8468,7 @@
|
|
|
8466
8468
|
"UI/Chart/Charts/WordCloudChart.razor",
|
|
8467
8469
|
"UI/Chart/ChartSkeleton.razor",
|
|
8468
8470
|
"UI/Chart/ChartSkeletonKind.cs",
|
|
8471
|
+
"UI/Chart/ChartThreshold.razor",
|
|
8469
8472
|
"UI/Chart/EChartOption.cs"
|
|
8470
8473
|
],
|
|
8471
8474
|
"namespace": "Lumeo",
|
|
@@ -8490,6 +8493,14 @@
|
|
|
8490
8493
|
"isCascading": false,
|
|
8491
8494
|
"captureUnmatched": false
|
|
8492
8495
|
},
|
|
8496
|
+
{
|
|
8497
|
+
"name": "ChildContent",
|
|
8498
|
+
"type": "RenderFragment?",
|
|
8499
|
+
"default": null,
|
|
8500
|
+
"description": "Declarative children — ChartThreshold and ChartReferenceZone. Other content renders nothing visible.",
|
|
8501
|
+
"isCascading": false,
|
|
8502
|
+
"captureUnmatched": false
|
|
8503
|
+
},
|
|
8493
8504
|
{
|
|
8494
8505
|
"name": "Theme",
|
|
8495
8506
|
"type": "string?",
|
|
@@ -8831,6 +8842,14 @@
|
|
|
8831
8842
|
"isCascading": false,
|
|
8832
8843
|
"captureUnmatched": false
|
|
8833
8844
|
},
|
|
8845
|
+
{
|
|
8846
|
+
"name": "ChildContent",
|
|
8847
|
+
"type": "RenderFragment?",
|
|
8848
|
+
"default": null,
|
|
8849
|
+
"description": "Declarative annotation children — ChartThreshold and ChartReferenceZone. Forwarded to the underlying Chart.",
|
|
8850
|
+
"isCascading": false,
|
|
8851
|
+
"captureUnmatched": false
|
|
8852
|
+
},
|
|
8834
8853
|
{
|
|
8835
8854
|
"name": "AdditionalAttributes",
|
|
8836
8855
|
"type": "Dictionary<string, object>?",
|
|
@@ -9110,6 +9129,14 @@
|
|
|
9110
9129
|
"isCascading": false,
|
|
9111
9130
|
"captureUnmatched": false
|
|
9112
9131
|
},
|
|
9132
|
+
{
|
|
9133
|
+
"name": "ChildContent",
|
|
9134
|
+
"type": "RenderFragment?",
|
|
9135
|
+
"default": null,
|
|
9136
|
+
"description": "Declarative annotation children — ChartThreshold and ChartReferenceZone. Forwarded to the underlying Chart.",
|
|
9137
|
+
"isCascading": false,
|
|
9138
|
+
"captureUnmatched": false
|
|
9139
|
+
},
|
|
9113
9140
|
{
|
|
9114
9141
|
"name": "AdditionalAttributes",
|
|
9115
9142
|
"type": "Dictionary<string, object>?",
|
|
@@ -10061,6 +10088,71 @@
|
|
|
10061
10088
|
"parseFailed": false,
|
|
10062
10089
|
"parseError": null
|
|
10063
10090
|
},
|
|
10091
|
+
"ChartReferenceZone": {
|
|
10092
|
+
"componentName": "ChartReferenceZone",
|
|
10093
|
+
"fileName": "ChartReferenceZone.razor",
|
|
10094
|
+
"namespace": "Lumeo",
|
|
10095
|
+
"inheritsFrom": null,
|
|
10096
|
+
"implements": [
|
|
10097
|
+
"IDisposable"
|
|
10098
|
+
],
|
|
10099
|
+
"parameters": [
|
|
10100
|
+
{
|
|
10101
|
+
"name": "Context",
|
|
10102
|
+
"type": "ChartAnnotationsContext?",
|
|
10103
|
+
"default": null,
|
|
10104
|
+
"description": null,
|
|
10105
|
+
"isCascading": true,
|
|
10106
|
+
"captureUnmatched": false
|
|
10107
|
+
},
|
|
10108
|
+
{
|
|
10109
|
+
"name": "From",
|
|
10110
|
+
"type": "object",
|
|
10111
|
+
"default": "0",
|
|
10112
|
+
"description": "Lower bound on the perpendicular axis.",
|
|
10113
|
+
"isCascading": false,
|
|
10114
|
+
"captureUnmatched": false
|
|
10115
|
+
},
|
|
10116
|
+
{
|
|
10117
|
+
"name": "To",
|
|
10118
|
+
"type": "object",
|
|
10119
|
+
"default": "0",
|
|
10120
|
+
"description": "Upper bound on the perpendicular axis.",
|
|
10121
|
+
"isCascading": false,
|
|
10122
|
+
"captureUnmatched": false
|
|
10123
|
+
},
|
|
10124
|
+
{
|
|
10125
|
+
"name": "Axis",
|
|
10126
|
+
"type": "ChartThresholdAxis",
|
|
10127
|
+
"default": "ChartThresholdAxis.Horizontal",
|
|
10128
|
+
"description": "Which axis the band is perpendicular to. Default Horizontal (a yAxis band spanning the chart width).",
|
|
10129
|
+
"isCascading": false,
|
|
10130
|
+
"captureUnmatched": false
|
|
10131
|
+
},
|
|
10132
|
+
{
|
|
10133
|
+
"name": "Label",
|
|
10134
|
+
"type": "string?",
|
|
10135
|
+
"default": null,
|
|
10136
|
+
"description": "Label rendered inside the band. Null or empty hides it.",
|
|
10137
|
+
"isCascading": false,
|
|
10138
|
+
"captureUnmatched": false
|
|
10139
|
+
},
|
|
10140
|
+
{
|
|
10141
|
+
"name": "Color",
|
|
10142
|
+
"type": "string",
|
|
10143
|
+
"default": "\"#3b82f622\"",
|
|
10144
|
+
"description": "Fill colour (typically a low-alpha hex like \"#22c55e22\"). Required — without it the zone would be invisible.",
|
|
10145
|
+
"isCascading": false,
|
|
10146
|
+
"captureUnmatched": false
|
|
10147
|
+
}
|
|
10148
|
+
],
|
|
10149
|
+
"events": [],
|
|
10150
|
+
"enums": [],
|
|
10151
|
+
"records": [],
|
|
10152
|
+
"gotchas": [],
|
|
10153
|
+
"parseFailed": false,
|
|
10154
|
+
"parseError": null
|
|
10155
|
+
},
|
|
10064
10156
|
"ChartSkeleton": {
|
|
10065
10157
|
"componentName": "ChartSkeleton",
|
|
10066
10158
|
"fileName": "ChartSkeleton.razor",
|
|
@@ -10116,6 +10208,71 @@
|
|
|
10116
10208
|
"parseFailed": false,
|
|
10117
10209
|
"parseError": null
|
|
10118
10210
|
},
|
|
10211
|
+
"ChartThreshold": {
|
|
10212
|
+
"componentName": "ChartThreshold",
|
|
10213
|
+
"fileName": "ChartThreshold.razor",
|
|
10214
|
+
"namespace": "Lumeo",
|
|
10215
|
+
"inheritsFrom": null,
|
|
10216
|
+
"implements": [
|
|
10217
|
+
"IDisposable"
|
|
10218
|
+
],
|
|
10219
|
+
"parameters": [
|
|
10220
|
+
{
|
|
10221
|
+
"name": "Context",
|
|
10222
|
+
"type": "ChartAnnotationsContext?",
|
|
10223
|
+
"default": null,
|
|
10224
|
+
"description": null,
|
|
10225
|
+
"isCascading": true,
|
|
10226
|
+
"captureUnmatched": false
|
|
10227
|
+
},
|
|
10228
|
+
{
|
|
10229
|
+
"name": "Value",
|
|
10230
|
+
"type": "object",
|
|
10231
|
+
"default": "0",
|
|
10232
|
+
"description": "Value on the perpendicular axis (yAxis for horizontal, xAxis for vertical).",
|
|
10233
|
+
"isCascading": false,
|
|
10234
|
+
"captureUnmatched": false
|
|
10235
|
+
},
|
|
10236
|
+
{
|
|
10237
|
+
"name": "Axis",
|
|
10238
|
+
"type": "ChartThresholdAxis",
|
|
10239
|
+
"default": "ChartThresholdAxis.Horizontal",
|
|
10240
|
+
"description": "Which axis the line is perpendicular to. Default Horizontal (a yAxis line spanning the chart width — the common target / SLA line).",
|
|
10241
|
+
"isCascading": false,
|
|
10242
|
+
"captureUnmatched": false
|
|
10243
|
+
},
|
|
10244
|
+
{
|
|
10245
|
+
"name": "Label",
|
|
10246
|
+
"type": "string?",
|
|
10247
|
+
"default": null,
|
|
10248
|
+
"description": "Label rendered along the line. Null or empty hides it.",
|
|
10249
|
+
"isCascading": false,
|
|
10250
|
+
"captureUnmatched": false
|
|
10251
|
+
},
|
|
10252
|
+
{
|
|
10253
|
+
"name": "Color",
|
|
10254
|
+
"type": "string?",
|
|
10255
|
+
"default": null,
|
|
10256
|
+
"description": "Hex / CSS colour for the line. When null ECharts inherits the series colour.",
|
|
10257
|
+
"isCascading": false,
|
|
10258
|
+
"captureUnmatched": false
|
|
10259
|
+
},
|
|
10260
|
+
{
|
|
10261
|
+
"name": "LineStyle",
|
|
10262
|
+
"type": "string",
|
|
10263
|
+
"default": "\"dashed\"",
|
|
10264
|
+
"description": "Line style passed to ECharts — \"solid\", \"dashed\", or \"dotted\". Defaults to \"dashed\" for visual distinction from data lines.",
|
|
10265
|
+
"isCascading": false,
|
|
10266
|
+
"captureUnmatched": false
|
|
10267
|
+
}
|
|
10268
|
+
],
|
|
10269
|
+
"events": [],
|
|
10270
|
+
"enums": [],
|
|
10271
|
+
"records": [],
|
|
10272
|
+
"gotchas": [],
|
|
10273
|
+
"parseFailed": false,
|
|
10274
|
+
"parseError": null
|
|
10275
|
+
},
|
|
10119
10276
|
"DonutChart": {
|
|
10120
10277
|
"componentName": "DonutChart",
|
|
10121
10278
|
"fileName": "DonutChart.razor",
|
|
@@ -11910,6 +12067,14 @@
|
|
|
11910
12067
|
"isCascading": false,
|
|
11911
12068
|
"captureUnmatched": false
|
|
11912
12069
|
},
|
|
12070
|
+
{
|
|
12071
|
+
"name": "ChildContent",
|
|
12072
|
+
"type": "RenderFragment?",
|
|
12073
|
+
"default": null,
|
|
12074
|
+
"description": "Declarative annotation children — ChartThreshold and ChartReferenceZone. Forwarded to the underlying Chart.",
|
|
12075
|
+
"isCascading": false,
|
|
12076
|
+
"captureUnmatched": false
|
|
12077
|
+
},
|
|
11913
12078
|
{
|
|
11914
12079
|
"name": "AdditionalAttributes",
|
|
11915
12080
|
"type": "Dictionary<string, object>?",
|
|
@@ -17454,6 +17619,22 @@
|
|
|
17454
17619
|
"isCascading": false,
|
|
17455
17620
|
"captureUnmatched": false
|
|
17456
17621
|
},
|
|
17622
|
+
{
|
|
17623
|
+
"name": "ItemDescription",
|
|
17624
|
+
"type": "Func<object, string?>?",
|
|
17625
|
+
"default": null,
|
|
17626
|
+
"description": "Optional per-item secondary line (description) extractor. When set and ItemTemplate is null, the default item renderer shows the description in a smaller, muted line below the label — the standard pattern for command pickers (vscode-style \"label + helper text\").",
|
|
17627
|
+
"isCascading": false,
|
|
17628
|
+
"captureUnmatched": false
|
|
17629
|
+
},
|
|
17630
|
+
{
|
|
17631
|
+
"name": "ItemIcon",
|
|
17632
|
+
"type": "Func<object, RenderFragment?>?",
|
|
17633
|
+
"default": null,
|
|
17634
|
+
"description": "Optional per-item leading icon. Receives the raw item object and returns a RenderFragment (typically a single <Blazicon>). Rendered before the label when ItemTemplate is null. Skip via returning null per item to mix iconed and non-iconed rows.",
|
|
17635
|
+
"isCascading": false,
|
|
17636
|
+
"captureUnmatched": false
|
|
17637
|
+
},
|
|
17457
17638
|
{
|
|
17458
17639
|
"name": "ItemTemplate",
|
|
17459
17640
|
"type": "RenderFragment<object>?",
|
|
@@ -17515,7 +17696,7 @@
|
|
|
17515
17696
|
"records": [
|
|
17516
17697
|
{
|
|
17517
17698
|
"name": "ComboboxContext",
|
|
17518
|
-
"signature": "ComboboxContext(\n string? Value, HashSet<string>? Values, string SearchText, bool IsOpen, bool Multiple, bool IsSearchLoading, bool Creatable,\n EventCallback<string> OnSelect, EventCallback<bool> SetOpen, EventCallback<string> OnSearch,\n EventCallback<string> OnCreateItem,\n string WrapperId, string ContentId, string InputId, int FocusedIndex, string? FocusedItemId, string? FocusedItemValue,\n EventCallback<int> SetFocusedIndex,\n Action<string, string> RegisterItem, Action<string> UnregisterItem, int ItemCount,\n bool Invalid, bool Required,\n // Data-bound mode params (null when composition mode)\n IEnumerable<object>? Items,\n Func<object, string> ItemValue,\n Func<object, string>? ItemText,\n Func<object, string?>? ItemGroup,\n Func<object, bool>? ItemDisabled,\n RenderFragment<object>? ItemTemplate,\n bool Virtualize,\n float ItemSize)",
|
|
17699
|
+
"signature": "ComboboxContext(\n string? Value, HashSet<string>? Values, string SearchText, bool IsOpen, bool Multiple, bool IsSearchLoading, bool Creatable,\n EventCallback<string> OnSelect, EventCallback<bool> SetOpen, EventCallback<string> OnSearch,\n EventCallback<string> OnCreateItem,\n string WrapperId, string ContentId, string InputId, int FocusedIndex, string? FocusedItemId, string? FocusedItemValue,\n EventCallback<int> SetFocusedIndex,\n Action<string, string> RegisterItem, Action<string> UnregisterItem, int ItemCount,\n bool Invalid, bool Required,\n // Data-bound mode params (null when composition mode)\n IEnumerable<object>? Items,\n Func<object, string> ItemValue,\n Func<object, string>? ItemText,\n Func<object, string?>? ItemGroup,\n Func<object, bool>? ItemDisabled,\n Func<object, string?>? ItemDescription,\n Func<object, RenderFragment?>? ItemIcon,\n RenderFragment<object>? ItemTemplate,\n bool Virtualize,\n float ItemSize)",
|
|
17519
17700
|
"description": null
|
|
17520
17701
|
}
|
|
17521
17702
|
],
|
|
@@ -17531,6 +17712,7 @@
|
|
|
17531
17712
|
"--color-muted-foreground",
|
|
17532
17713
|
"--color-popover",
|
|
17533
17714
|
"--color-popover-foreground",
|
|
17715
|
+
"--color-ring",
|
|
17534
17716
|
"--radius"
|
|
17535
17717
|
],
|
|
17536
17718
|
"examples": [
|
|
@@ -19706,6 +19888,7 @@
|
|
|
19706
19888
|
"UI/DataGrid/DataGridColumn.cs",
|
|
19707
19889
|
"UI/DataGrid/DataGridColumnDef.razor",
|
|
19708
19890
|
"UI/DataGrid/DataGridColumnFilter.razor",
|
|
19891
|
+
"UI/DataGrid/DataGridColumnGroup.razor",
|
|
19709
19892
|
"UI/DataGrid/DataGridColumnVisibility.razor",
|
|
19710
19893
|
"UI/DataGrid/DataGridContext.cs",
|
|
19711
19894
|
"UI/DataGrid/DataGridDetailRow.razor",
|
|
@@ -20681,6 +20864,14 @@
|
|
|
20681
20864
|
"isCascading": true,
|
|
20682
20865
|
"captureUnmatched": false
|
|
20683
20866
|
},
|
|
20867
|
+
{
|
|
20868
|
+
"name": "ColumnGroupId",
|
|
20869
|
+
"type": "string?",
|
|
20870
|
+
"default": null,
|
|
20871
|
+
"description": null,
|
|
20872
|
+
"isCascading": true,
|
|
20873
|
+
"captureUnmatched": false
|
|
20874
|
+
},
|
|
20684
20875
|
{
|
|
20685
20876
|
"name": "Title",
|
|
20686
20877
|
"type": "string?",
|
|
@@ -20761,6 +20952,14 @@
|
|
|
20761
20952
|
"isCascading": false,
|
|
20762
20953
|
"captureUnmatched": false
|
|
20763
20954
|
},
|
|
20955
|
+
{
|
|
20956
|
+
"name": "FooterFormat",
|
|
20957
|
+
"type": "string?",
|
|
20958
|
+
"default": null,
|
|
20959
|
+
"description": "Optional .NET format string for the footer aggregate strip — overrides Format for the totals row only. Useful when the cell format differs from the desired totals format (e.g. cells \"C2\", totals \"N0\").",
|
|
20960
|
+
"isCascading": false,
|
|
20961
|
+
"captureUnmatched": false
|
|
20962
|
+
},
|
|
20764
20963
|
{
|
|
20765
20964
|
"name": "Pin",
|
|
20766
20965
|
"type": "PinDirection",
|
|
@@ -20974,6 +21173,53 @@
|
|
|
20974
21173
|
"parseFailed": false,
|
|
20975
21174
|
"parseError": null
|
|
20976
21175
|
},
|
|
21176
|
+
"DataGridColumnGroup": {
|
|
21177
|
+
"componentName": "DataGridColumnGroup",
|
|
21178
|
+
"fileName": "DataGridColumnGroup.razor",
|
|
21179
|
+
"namespace": "Lumeo",
|
|
21180
|
+
"inheritsFrom": null,
|
|
21181
|
+
"implements": [],
|
|
21182
|
+
"parameters": [
|
|
21183
|
+
{
|
|
21184
|
+
"name": "ParentGrid",
|
|
21185
|
+
"type": "DataGrid<TItem>?",
|
|
21186
|
+
"default": null,
|
|
21187
|
+
"description": null,
|
|
21188
|
+
"isCascading": true,
|
|
21189
|
+
"captureUnmatched": false
|
|
21190
|
+
},
|
|
21191
|
+
{
|
|
21192
|
+
"name": "Label",
|
|
21193
|
+
"type": "string",
|
|
21194
|
+
"default": "\"\"",
|
|
21195
|
+
"description": "Header label shown in the spanning th above the grouped columns.",
|
|
21196
|
+
"isCascading": false,
|
|
21197
|
+
"captureUnmatched": false
|
|
21198
|
+
},
|
|
21199
|
+
{
|
|
21200
|
+
"name": "HeaderClass",
|
|
21201
|
+
"type": "string?",
|
|
21202
|
+
"default": null,
|
|
21203
|
+
"description": "Extra classes for the spanning header cell — theming hook for the group.",
|
|
21204
|
+
"isCascading": false,
|
|
21205
|
+
"captureUnmatched": false
|
|
21206
|
+
},
|
|
21207
|
+
{
|
|
21208
|
+
"name": "ChildContent",
|
|
21209
|
+
"type": "RenderFragment?",
|
|
21210
|
+
"default": null,
|
|
21211
|
+
"description": null,
|
|
21212
|
+
"isCascading": false,
|
|
21213
|
+
"captureUnmatched": false
|
|
21214
|
+
}
|
|
21215
|
+
],
|
|
21216
|
+
"events": [],
|
|
21217
|
+
"enums": [],
|
|
21218
|
+
"records": [],
|
|
21219
|
+
"gotchas": [],
|
|
21220
|
+
"parseFailed": false,
|
|
21221
|
+
"parseError": null
|
|
21222
|
+
},
|
|
20977
21223
|
"DataGridColumnVisibility": {
|
|
20978
21224
|
"componentName": "DataGridColumnVisibility",
|
|
20979
21225
|
"fileName": "DataGridColumnVisibility.razor",
|
|
@@ -21364,7 +21610,13 @@
|
|
|
21364
21610
|
}
|
|
21365
21611
|
],
|
|
21366
21612
|
"enums": [],
|
|
21367
|
-
"records": [
|
|
21613
|
+
"records": [
|
|
21614
|
+
{
|
|
21615
|
+
"name": "GroupHeaderRun",
|
|
21616
|
+
"signature": "GroupHeaderRun(DataGridColumnGroupInfo? Info, int Span)",
|
|
21617
|
+
"description": null
|
|
21618
|
+
}
|
|
21619
|
+
],
|
|
21368
21620
|
"gotchas": [],
|
|
21369
21621
|
"parseFailed": false,
|
|
21370
21622
|
"parseError": null
|
|
@@ -29426,6 +29678,30 @@
|
|
|
29426
29678
|
"isCascading": false,
|
|
29427
29679
|
"captureUnmatched": false
|
|
29428
29680
|
},
|
|
29681
|
+
{
|
|
29682
|
+
"name": "ShowCount",
|
|
29683
|
+
"type": "bool",
|
|
29684
|
+
"default": null,
|
|
29685
|
+
"description": "Renders a character counter below the input, matching Textarea's pattern.",
|
|
29686
|
+
"isCascading": false,
|
|
29687
|
+
"captureUnmatched": false
|
|
29688
|
+
},
|
|
29689
|
+
{
|
|
29690
|
+
"name": "MaxLength",
|
|
29691
|
+
"type": "int?",
|
|
29692
|
+
"default": null,
|
|
29693
|
+
"description": "HTML maxlength on the input plus the limit shown in the counter. When null and ShowCount is true, only the current length is rendered.",
|
|
29694
|
+
"isCascading": false,
|
|
29695
|
+
"captureUnmatched": false
|
|
29696
|
+
},
|
|
29697
|
+
{
|
|
29698
|
+
"name": "CountFormat",
|
|
29699
|
+
"type": "Func<int, string>?",
|
|
29700
|
+
"default": null,
|
|
29701
|
+
"description": "Optional custom counter formatter (e.g. c => $\"{c} of 60 chars\"). Default renders 42 or 42/60 when MaxLength is set.",
|
|
29702
|
+
"isCascading": false,
|
|
29703
|
+
"captureUnmatched": false
|
|
29704
|
+
},
|
|
29429
29705
|
{
|
|
29430
29706
|
"name": "AutoFocus",
|
|
29431
29707
|
"type": "bool",
|
|
@@ -39490,6 +39766,22 @@
|
|
|
39490
39766
|
"isCascading": false,
|
|
39491
39767
|
"captureUnmatched": false
|
|
39492
39768
|
},
|
|
39769
|
+
{
|
|
39770
|
+
"name": "ItemDescription",
|
|
39771
|
+
"type": "Func<object, string?>?",
|
|
39772
|
+
"default": null,
|
|
39773
|
+
"description": "Optional per-item secondary line (description) extractor. When set and ItemTemplate is null, the default item renderer shows the description in a smaller, muted line below the label.",
|
|
39774
|
+
"isCascading": false,
|
|
39775
|
+
"captureUnmatched": false
|
|
39776
|
+
},
|
|
39777
|
+
{
|
|
39778
|
+
"name": "ItemIcon",
|
|
39779
|
+
"type": "Func<object, RenderFragment?>?",
|
|
39780
|
+
"default": null,
|
|
39781
|
+
"description": "Optional per-item leading icon. Receives the raw item object and returns a RenderFragment (typically a single <Blazicon>). Rendered before the label when ItemTemplate is null. Return null per item to mix iconed and non-iconed rows.",
|
|
39782
|
+
"isCascading": false,
|
|
39783
|
+
"captureUnmatched": false
|
|
39784
|
+
},
|
|
39493
39785
|
{
|
|
39494
39786
|
"name": "ItemTemplate",
|
|
39495
39787
|
"type": "RenderFragment<object>?",
|
|
@@ -39546,7 +39838,7 @@
|
|
|
39546
39838
|
"records": [
|
|
39547
39839
|
{
|
|
39548
39840
|
"name": "SelectContext",
|
|
39549
|
-
"signature": "SelectContext(\n string? Value, bool IsOpen, bool Searchable, string SearchText,\n bool Multiple, List<string>? Values, bool IsLoading, bool Disabled, bool Clearable, bool Creatable, int MaxDisplayTags,\n EventCallback<string> OnSelect, EventCallback<bool> SetOpen, EventCallback<string> OnSearch,\n EventCallback OnClear, EventCallback<string> OnCreateItem,\n string WrapperId, string ContentId, string TriggerId, int FocusedIndex, string? FocusedItemId, string? FocusedItemValue,\n EventCallback<int> SetFocusedIndex,\n Action<string, string> RegisterItem, Action<string> UnregisterItem,\n bool Invalid, bool Required,\n // Data-bound mode params (null when composition mode)\n IEnumerable<object>? Items,\n Func<object, string> ItemValue,\n Func<object, string>? ItemText,\n Func<object, string?>? ItemGroup,\n Func<object, bool>? ItemDisabled,\n RenderFragment<object>? ItemTemplate,\n bool Virtualize,\n float ItemSize)",
|
|
39841
|
+
"signature": "SelectContext(\n string? Value, bool IsOpen, bool Searchable, string SearchText,\n bool Multiple, List<string>? Values, bool IsLoading, bool Disabled, bool Clearable, bool Creatable, int MaxDisplayTags,\n EventCallback<string> OnSelect, EventCallback<bool> SetOpen, EventCallback<string> OnSearch,\n EventCallback OnClear, EventCallback<string> OnCreateItem,\n string WrapperId, string ContentId, string TriggerId, int FocusedIndex, string? FocusedItemId, string? FocusedItemValue,\n EventCallback<int> SetFocusedIndex,\n Action<string, string> RegisterItem, Action<string> UnregisterItem,\n bool Invalid, bool Required,\n // Data-bound mode params (null when composition mode)\n IEnumerable<object>? Items,\n Func<object, string> ItemValue,\n Func<object, string>? ItemText,\n Func<object, string?>? ItemGroup,\n Func<object, bool>? ItemDisabled,\n Func<object, string?>? ItemDescription,\n Func<object, RenderFragment?>? ItemIcon,\n RenderFragment<object>? ItemTemplate,\n bool Virtualize,\n float ItemSize)",
|
|
39550
39842
|
"description": null
|
|
39551
39843
|
}
|
|
39552
39844
|
],
|
|
@@ -39641,8 +39933,26 @@
|
|
|
39641
39933
|
"fileName": "SelectGroup.razor",
|
|
39642
39934
|
"namespace": "Lumeo",
|
|
39643
39935
|
"inheritsFrom": null,
|
|
39644
|
-
"implements": [
|
|
39936
|
+
"implements": [
|
|
39937
|
+
"IDisposable"
|
|
39938
|
+
],
|
|
39645
39939
|
"parameters": [
|
|
39940
|
+
{
|
|
39941
|
+
"name": "Context",
|
|
39942
|
+
"type": "Select.SelectContext",
|
|
39943
|
+
"default": "default!",
|
|
39944
|
+
"description": null,
|
|
39945
|
+
"isCascading": true,
|
|
39946
|
+
"captureUnmatched": false
|
|
39947
|
+
},
|
|
39948
|
+
{
|
|
39949
|
+
"name": "ParentGroup",
|
|
39950
|
+
"type": "SelectGroupContext?",
|
|
39951
|
+
"default": null,
|
|
39952
|
+
"description": null,
|
|
39953
|
+
"isCascading": true,
|
|
39954
|
+
"captureUnmatched": false
|
|
39955
|
+
},
|
|
39646
39956
|
{
|
|
39647
39957
|
"name": "ChildContent",
|
|
39648
39958
|
"type": "RenderFragment?",
|
|
@@ -39651,6 +39961,46 @@
|
|
|
39651
39961
|
"isCascading": false,
|
|
39652
39962
|
"captureUnmatched": false
|
|
39653
39963
|
},
|
|
39964
|
+
{
|
|
39965
|
+
"name": "Label",
|
|
39966
|
+
"type": "string?",
|
|
39967
|
+
"default": null,
|
|
39968
|
+
"description": "Group header text. When null/empty no header renders (still nests its items).",
|
|
39969
|
+
"isCascading": false,
|
|
39970
|
+
"captureUnmatched": false
|
|
39971
|
+
},
|
|
39972
|
+
{
|
|
39973
|
+
"name": "LabelClass",
|
|
39974
|
+
"type": "string?",
|
|
39975
|
+
"default": null,
|
|
39976
|
+
"description": "Extra classes for the group label — theming hook for the header.",
|
|
39977
|
+
"isCascading": false,
|
|
39978
|
+
"captureUnmatched": false
|
|
39979
|
+
},
|
|
39980
|
+
{
|
|
39981
|
+
"name": "Collapsible",
|
|
39982
|
+
"type": "bool",
|
|
39983
|
+
"default": null,
|
|
39984
|
+
"description": "When true the header toggles the group open/closed. Collapsed groups hide their items.",
|
|
39985
|
+
"isCascading": false,
|
|
39986
|
+
"captureUnmatched": false
|
|
39987
|
+
},
|
|
39988
|
+
{
|
|
39989
|
+
"name": "DefaultExpanded",
|
|
39990
|
+
"type": "bool",
|
|
39991
|
+
"default": "true",
|
|
39992
|
+
"description": "Initial expanded state for a Collapsible group. Default expanded.",
|
|
39993
|
+
"isCascading": false,
|
|
39994
|
+
"captureUnmatched": false
|
|
39995
|
+
},
|
|
39996
|
+
{
|
|
39997
|
+
"name": "GroupSelect",
|
|
39998
|
+
"type": "bool",
|
|
39999
|
+
"default": null,
|
|
40000
|
+
"description": "In Multiple mode, render a tri-state checkbox on the header that selects / deselects every descendant item in one click. Disabled descendants are skipped.",
|
|
40001
|
+
"isCascading": false,
|
|
40002
|
+
"captureUnmatched": false
|
|
40003
|
+
},
|
|
39654
40004
|
{
|
|
39655
40005
|
"name": "Class",
|
|
39656
40006
|
"type": "string?",
|
|
@@ -39670,13 +40020,7 @@
|
|
|
39670
40020
|
],
|
|
39671
40021
|
"events": [],
|
|
39672
40022
|
"enums": [],
|
|
39673
|
-
"records": [
|
|
39674
|
-
{
|
|
39675
|
-
"name": "SelectGroupContext",
|
|
39676
|
-
"signature": "SelectGroupContext(string LabelId)",
|
|
39677
|
-
"description": null
|
|
39678
|
-
}
|
|
39679
|
-
],
|
|
40023
|
+
"records": [],
|
|
39680
40024
|
"gotchas": [],
|
|
39681
40025
|
"parseFailed": false,
|
|
39682
40026
|
"parseError": null
|
|
@@ -39698,6 +40042,14 @@
|
|
|
39698
40042
|
"isCascading": true,
|
|
39699
40043
|
"captureUnmatched": false
|
|
39700
40044
|
},
|
|
40045
|
+
{
|
|
40046
|
+
"name": "Group",
|
|
40047
|
+
"type": "SelectGroup.SelectGroupContext?",
|
|
40048
|
+
"default": null,
|
|
40049
|
+
"description": null,
|
|
40050
|
+
"isCascading": true,
|
|
40051
|
+
"captureUnmatched": false
|
|
40052
|
+
},
|
|
39701
40053
|
{
|
|
39702
40054
|
"name": "ChildContent",
|
|
39703
40055
|
"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-
|
|
3
|
+
"version": "3.9.0",
|
|
4
|
+
"generated": "2026-05-31T08:58:28.9462174Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"accordion": {
|
|
7
7
|
"name": "Accordion",
|
|
@@ -652,9 +652,11 @@
|
|
|
652
652
|
"nugetPackage": "Lumeo.Charts",
|
|
653
653
|
"files": [
|
|
654
654
|
"UI/Chart/Chart.razor",
|
|
655
|
+
"UI/Chart/ChartAnnotations.cs",
|
|
655
656
|
"UI/Chart/ChartHelper.cs",
|
|
656
657
|
"UI/Chart/ChartLabelHelper.cs",
|
|
657
658
|
"UI/Chart/ChartPlaceholderFactory.cs",
|
|
659
|
+
"UI/Chart/ChartReferenceZone.razor",
|
|
658
660
|
"UI/Chart/Charts/AreaChart.razor",
|
|
659
661
|
"UI/Chart/Charts/BarChart.razor",
|
|
660
662
|
"UI/Chart/Charts/BoxPlotChart.razor",
|
|
@@ -687,6 +689,7 @@
|
|
|
687
689
|
"UI/Chart/Charts/WordCloudChart.razor",
|
|
688
690
|
"UI/Chart/ChartSkeleton.razor",
|
|
689
691
|
"UI/Chart/ChartSkeletonKind.cs",
|
|
692
|
+
"UI/Chart/ChartThreshold.razor",
|
|
690
693
|
"UI/Chart/EChartOption.cs"
|
|
691
694
|
],
|
|
692
695
|
"dependencies": [
|
|
@@ -892,6 +895,7 @@
|
|
|
892
895
|
"--color-muted-foreground",
|
|
893
896
|
"--color-popover",
|
|
894
897
|
"--color-popover-foreground",
|
|
898
|
+
"--color-ring",
|
|
895
899
|
"--radius"
|
|
896
900
|
],
|
|
897
901
|
"gotchas": [],
|
|
@@ -1100,6 +1104,7 @@
|
|
|
1100
1104
|
"UI/DataGrid/DataGridColumn.cs",
|
|
1101
1105
|
"UI/DataGrid/DataGridColumnDef.razor",
|
|
1102
1106
|
"UI/DataGrid/DataGridColumnFilter.razor",
|
|
1107
|
+
"UI/DataGrid/DataGridColumnGroup.razor",
|
|
1103
1108
|
"UI/DataGrid/DataGridColumnVisibility.razor",
|
|
1104
1109
|
"UI/DataGrid/DataGridContext.cs",
|
|
1105
1110
|
"UI/DataGrid/DataGridDetailRow.razor",
|