@lumeo-ui/mcp-server 3.7.1 → 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 +473 -14
- package/src/registry.json +9 -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>?",
|
|
@@ -17212,6 +17377,7 @@
|
|
|
17212
17377
|
"UI/Combobox/ComboboxContent.razor",
|
|
17213
17378
|
"UI/Combobox/ComboboxCreate.razor",
|
|
17214
17379
|
"UI/Combobox/ComboboxEmpty.razor",
|
|
17380
|
+
"UI/Combobox/ComboboxGroup.razor",
|
|
17215
17381
|
"UI/Combobox/ComboboxInput.razor",
|
|
17216
17382
|
"UI/Combobox/ComboboxItem.razor"
|
|
17217
17383
|
],
|
|
@@ -17453,6 +17619,22 @@
|
|
|
17453
17619
|
"isCascading": false,
|
|
17454
17620
|
"captureUnmatched": false
|
|
17455
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
|
+
},
|
|
17456
17638
|
{
|
|
17457
17639
|
"name": "ItemTemplate",
|
|
17458
17640
|
"type": "RenderFragment<object>?",
|
|
@@ -17514,7 +17696,7 @@
|
|
|
17514
17696
|
"records": [
|
|
17515
17697
|
{
|
|
17516
17698
|
"name": "ComboboxContext",
|
|
17517
|
-
"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)",
|
|
17518
17700
|
"description": null
|
|
17519
17701
|
}
|
|
17520
17702
|
],
|
|
@@ -17524,11 +17706,13 @@
|
|
|
17524
17706
|
"--color-accent-foreground",
|
|
17525
17707
|
"--color-border",
|
|
17526
17708
|
"--color-destructive",
|
|
17709
|
+
"--color-foreground",
|
|
17527
17710
|
"--color-input",
|
|
17528
17711
|
"--color-muted",
|
|
17529
17712
|
"--color-muted-foreground",
|
|
17530
17713
|
"--color-popover",
|
|
17531
17714
|
"--color-popover-foreground",
|
|
17715
|
+
"--color-ring",
|
|
17532
17716
|
"--radius"
|
|
17533
17717
|
],
|
|
17534
17718
|
"examples": [
|
|
@@ -17715,6 +17899,103 @@
|
|
|
17715
17899
|
"parseFailed": false,
|
|
17716
17900
|
"parseError": null
|
|
17717
17901
|
},
|
|
17902
|
+
"ComboboxGroup": {
|
|
17903
|
+
"componentName": "ComboboxGroup",
|
|
17904
|
+
"fileName": "ComboboxGroup.razor",
|
|
17905
|
+
"namespace": "Lumeo",
|
|
17906
|
+
"inheritsFrom": null,
|
|
17907
|
+
"implements": [
|
|
17908
|
+
"IDisposable"
|
|
17909
|
+
],
|
|
17910
|
+
"parameters": [
|
|
17911
|
+
{
|
|
17912
|
+
"name": "Context",
|
|
17913
|
+
"type": "Combobox.ComboboxContext",
|
|
17914
|
+
"default": "default!",
|
|
17915
|
+
"description": null,
|
|
17916
|
+
"isCascading": true,
|
|
17917
|
+
"captureUnmatched": false
|
|
17918
|
+
},
|
|
17919
|
+
{
|
|
17920
|
+
"name": "ParentGroup",
|
|
17921
|
+
"type": "ComboboxGroupContext?",
|
|
17922
|
+
"default": null,
|
|
17923
|
+
"description": null,
|
|
17924
|
+
"isCascading": true,
|
|
17925
|
+
"captureUnmatched": false
|
|
17926
|
+
},
|
|
17927
|
+
{
|
|
17928
|
+
"name": "ChildContent",
|
|
17929
|
+
"type": "RenderFragment?",
|
|
17930
|
+
"default": null,
|
|
17931
|
+
"description": null,
|
|
17932
|
+
"isCascading": false,
|
|
17933
|
+
"captureUnmatched": false
|
|
17934
|
+
},
|
|
17935
|
+
{
|
|
17936
|
+
"name": "Label",
|
|
17937
|
+
"type": "string?",
|
|
17938
|
+
"default": null,
|
|
17939
|
+
"description": "Group header text. When null/empty the group renders no header (still nests its items).",
|
|
17940
|
+
"isCascading": false,
|
|
17941
|
+
"captureUnmatched": false
|
|
17942
|
+
},
|
|
17943
|
+
{
|
|
17944
|
+
"name": "LabelClass",
|
|
17945
|
+
"type": "string?",
|
|
17946
|
+
"default": null,
|
|
17947
|
+
"description": "Extra classes for the group label — theming hook for the header appearance.",
|
|
17948
|
+
"isCascading": false,
|
|
17949
|
+
"captureUnmatched": false
|
|
17950
|
+
},
|
|
17951
|
+
{
|
|
17952
|
+
"name": "Collapsible",
|
|
17953
|
+
"type": "bool",
|
|
17954
|
+
"default": null,
|
|
17955
|
+
"description": "When true the header toggles the group open/closed. Collapsed groups hide their items.",
|
|
17956
|
+
"isCascading": false,
|
|
17957
|
+
"captureUnmatched": false
|
|
17958
|
+
},
|
|
17959
|
+
{
|
|
17960
|
+
"name": "DefaultExpanded",
|
|
17961
|
+
"type": "bool",
|
|
17962
|
+
"default": "true",
|
|
17963
|
+
"description": "Initial expanded state for a Collapsible group. Default expanded.",
|
|
17964
|
+
"isCascading": false,
|
|
17965
|
+
"captureUnmatched": false
|
|
17966
|
+
},
|
|
17967
|
+
{
|
|
17968
|
+
"name": "GroupSelect",
|
|
17969
|
+
"type": "bool",
|
|
17970
|
+
"default": null,
|
|
17971
|
+
"description": "In Multiple mode, render a tri-state checkbox on the header that selects / deselects every descendant item in one click.",
|
|
17972
|
+
"isCascading": false,
|
|
17973
|
+
"captureUnmatched": false
|
|
17974
|
+
},
|
|
17975
|
+
{
|
|
17976
|
+
"name": "Class",
|
|
17977
|
+
"type": "string?",
|
|
17978
|
+
"default": null,
|
|
17979
|
+
"description": null,
|
|
17980
|
+
"isCascading": false,
|
|
17981
|
+
"captureUnmatched": false
|
|
17982
|
+
},
|
|
17983
|
+
{
|
|
17984
|
+
"name": "AdditionalAttributes",
|
|
17985
|
+
"type": "Dictionary<string, object>?",
|
|
17986
|
+
"default": null,
|
|
17987
|
+
"description": null,
|
|
17988
|
+
"isCascading": false,
|
|
17989
|
+
"captureUnmatched": true
|
|
17990
|
+
}
|
|
17991
|
+
],
|
|
17992
|
+
"events": [],
|
|
17993
|
+
"enums": [],
|
|
17994
|
+
"records": [],
|
|
17995
|
+
"gotchas": [],
|
|
17996
|
+
"parseFailed": false,
|
|
17997
|
+
"parseError": null
|
|
17998
|
+
},
|
|
17718
17999
|
"ComboboxInput": {
|
|
17719
18000
|
"componentName": "ComboboxInput",
|
|
17720
18001
|
"fileName": "ComboboxInput.razor",
|
|
@@ -17787,6 +18068,14 @@
|
|
|
17787
18068
|
"isCascading": true,
|
|
17788
18069
|
"captureUnmatched": false
|
|
17789
18070
|
},
|
|
18071
|
+
{
|
|
18072
|
+
"name": "Group",
|
|
18073
|
+
"type": "ComboboxGroup.ComboboxGroupContext?",
|
|
18074
|
+
"default": null,
|
|
18075
|
+
"description": null,
|
|
18076
|
+
"isCascading": true,
|
|
18077
|
+
"captureUnmatched": false
|
|
18078
|
+
},
|
|
17790
18079
|
{
|
|
17791
18080
|
"name": "ChildContent",
|
|
17792
18081
|
"type": "RenderFragment?",
|
|
@@ -19599,6 +19888,7 @@
|
|
|
19599
19888
|
"UI/DataGrid/DataGridColumn.cs",
|
|
19600
19889
|
"UI/DataGrid/DataGridColumnDef.razor",
|
|
19601
19890
|
"UI/DataGrid/DataGridColumnFilter.razor",
|
|
19891
|
+
"UI/DataGrid/DataGridColumnGroup.razor",
|
|
19602
19892
|
"UI/DataGrid/DataGridColumnVisibility.razor",
|
|
19603
19893
|
"UI/DataGrid/DataGridContext.cs",
|
|
19604
19894
|
"UI/DataGrid/DataGridDetailRow.razor",
|
|
@@ -20574,6 +20864,14 @@
|
|
|
20574
20864
|
"isCascading": true,
|
|
20575
20865
|
"captureUnmatched": false
|
|
20576
20866
|
},
|
|
20867
|
+
{
|
|
20868
|
+
"name": "ColumnGroupId",
|
|
20869
|
+
"type": "string?",
|
|
20870
|
+
"default": null,
|
|
20871
|
+
"description": null,
|
|
20872
|
+
"isCascading": true,
|
|
20873
|
+
"captureUnmatched": false
|
|
20874
|
+
},
|
|
20577
20875
|
{
|
|
20578
20876
|
"name": "Title",
|
|
20579
20877
|
"type": "string?",
|
|
@@ -20654,6 +20952,14 @@
|
|
|
20654
20952
|
"isCascading": false,
|
|
20655
20953
|
"captureUnmatched": false
|
|
20656
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
|
+
},
|
|
20657
20963
|
{
|
|
20658
20964
|
"name": "Pin",
|
|
20659
20965
|
"type": "PinDirection",
|
|
@@ -20867,6 +21173,53 @@
|
|
|
20867
21173
|
"parseFailed": false,
|
|
20868
21174
|
"parseError": null
|
|
20869
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
|
+
},
|
|
20870
21223
|
"DataGridColumnVisibility": {
|
|
20871
21224
|
"componentName": "DataGridColumnVisibility",
|
|
20872
21225
|
"fileName": "DataGridColumnVisibility.razor",
|
|
@@ -21257,7 +21610,13 @@
|
|
|
21257
21610
|
}
|
|
21258
21611
|
],
|
|
21259
21612
|
"enums": [],
|
|
21260
|
-
"records": [
|
|
21613
|
+
"records": [
|
|
21614
|
+
{
|
|
21615
|
+
"name": "GroupHeaderRun",
|
|
21616
|
+
"signature": "GroupHeaderRun(DataGridColumnGroupInfo? Info, int Span)",
|
|
21617
|
+
"description": null
|
|
21618
|
+
}
|
|
21619
|
+
],
|
|
21261
21620
|
"gotchas": [],
|
|
21262
21621
|
"parseFailed": false,
|
|
21263
21622
|
"parseError": null
|
|
@@ -29319,6 +29678,30 @@
|
|
|
29319
29678
|
"isCascading": false,
|
|
29320
29679
|
"captureUnmatched": false
|
|
29321
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
|
+
},
|
|
29322
29705
|
{
|
|
29323
29706
|
"name": "AutoFocus",
|
|
29324
29707
|
"type": "bool",
|
|
@@ -39383,6 +39766,22 @@
|
|
|
39383
39766
|
"isCascading": false,
|
|
39384
39767
|
"captureUnmatched": false
|
|
39385
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
|
+
},
|
|
39386
39785
|
{
|
|
39387
39786
|
"name": "ItemTemplate",
|
|
39388
39787
|
"type": "RenderFragment<object>?",
|
|
@@ -39439,7 +39838,7 @@
|
|
|
39439
39838
|
"records": [
|
|
39440
39839
|
{
|
|
39441
39840
|
"name": "SelectContext",
|
|
39442
|
-
"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)",
|
|
39443
39842
|
"description": null
|
|
39444
39843
|
}
|
|
39445
39844
|
],
|
|
@@ -39534,8 +39933,26 @@
|
|
|
39534
39933
|
"fileName": "SelectGroup.razor",
|
|
39535
39934
|
"namespace": "Lumeo",
|
|
39536
39935
|
"inheritsFrom": null,
|
|
39537
|
-
"implements": [
|
|
39936
|
+
"implements": [
|
|
39937
|
+
"IDisposable"
|
|
39938
|
+
],
|
|
39538
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
|
+
},
|
|
39539
39956
|
{
|
|
39540
39957
|
"name": "ChildContent",
|
|
39541
39958
|
"type": "RenderFragment?",
|
|
@@ -39544,6 +39961,46 @@
|
|
|
39544
39961
|
"isCascading": false,
|
|
39545
39962
|
"captureUnmatched": false
|
|
39546
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
|
+
},
|
|
39547
40004
|
{
|
|
39548
40005
|
"name": "Class",
|
|
39549
40006
|
"type": "string?",
|
|
@@ -39563,13 +40020,7 @@
|
|
|
39563
40020
|
],
|
|
39564
40021
|
"events": [],
|
|
39565
40022
|
"enums": [],
|
|
39566
|
-
"records": [
|
|
39567
|
-
{
|
|
39568
|
-
"name": "SelectGroupContext",
|
|
39569
|
-
"signature": "SelectGroupContext(string LabelId)",
|
|
39570
|
-
"description": null
|
|
39571
|
-
}
|
|
39572
|
-
],
|
|
40023
|
+
"records": [],
|
|
39573
40024
|
"gotchas": [],
|
|
39574
40025
|
"parseFailed": false,
|
|
39575
40026
|
"parseError": null
|
|
@@ -39591,6 +40042,14 @@
|
|
|
39591
40042
|
"isCascading": true,
|
|
39592
40043
|
"captureUnmatched": false
|
|
39593
40044
|
},
|
|
40045
|
+
{
|
|
40046
|
+
"name": "Group",
|
|
40047
|
+
"type": "SelectGroup.SelectGroupContext?",
|
|
40048
|
+
"default": null,
|
|
40049
|
+
"description": null,
|
|
40050
|
+
"isCascading": true,
|
|
40051
|
+
"captureUnmatched": false
|
|
40052
|
+
},
|
|
39594
40053
|
{
|
|
39595
40054
|
"name": "ChildContent",
|
|
39596
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": [
|
|
@@ -871,6 +874,7 @@
|
|
|
871
874
|
"UI/Combobox/ComboboxContent.razor",
|
|
872
875
|
"UI/Combobox/ComboboxCreate.razor",
|
|
873
876
|
"UI/Combobox/ComboboxEmpty.razor",
|
|
877
|
+
"UI/Combobox/ComboboxGroup.razor",
|
|
874
878
|
"UI/Combobox/ComboboxInput.razor",
|
|
875
879
|
"UI/Combobox/ComboboxItem.razor"
|
|
876
880
|
],
|
|
@@ -885,11 +889,13 @@
|
|
|
885
889
|
"--color-accent-foreground",
|
|
886
890
|
"--color-border",
|
|
887
891
|
"--color-destructive",
|
|
892
|
+
"--color-foreground",
|
|
888
893
|
"--color-input",
|
|
889
894
|
"--color-muted",
|
|
890
895
|
"--color-muted-foreground",
|
|
891
896
|
"--color-popover",
|
|
892
897
|
"--color-popover-foreground",
|
|
898
|
+
"--color-ring",
|
|
893
899
|
"--radius"
|
|
894
900
|
],
|
|
895
901
|
"gotchas": [],
|
|
@@ -1098,6 +1104,7 @@
|
|
|
1098
1104
|
"UI/DataGrid/DataGridColumn.cs",
|
|
1099
1105
|
"UI/DataGrid/DataGridColumnDef.razor",
|
|
1100
1106
|
"UI/DataGrid/DataGridColumnFilter.razor",
|
|
1107
|
+
"UI/DataGrid/DataGridColumnGroup.razor",
|
|
1101
1108
|
"UI/DataGrid/DataGridColumnVisibility.razor",
|
|
1102
1109
|
"UI/DataGrid/DataGridContext.cs",
|
|
1103
1110
|
"UI/DataGrid/DataGridDetailRow.razor",
|