@lumeo-ui/mcp-server 3.8.0 → 3.10.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumeo-ui/mcp-server",
3
- "version": "3.8.0",
3
+ "version": "3.10.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",
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "$schema": "https://lumeo.nativ.sh/components-api-schema.json",
3
- "version": "3.8.0",
4
- "generated": "2026-05-30T08:55:23.1442448Z",
3
+ "version": "3.10.0",
4
+ "generated": "2026-05-31T10:13:41.2164785Z",
5
5
  "stats": {
6
6
  "componentCount": 163,
7
- "totalParameters": 3909,
7
+ "totalParameters": 3952,
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,10 @@
8466
8468
  "UI/Chart/Charts/WordCloudChart.razor",
8467
8469
  "UI/Chart/ChartSkeleton.razor",
8468
8470
  "UI/Chart/ChartSkeletonKind.cs",
8471
+ "UI/Chart/ChartThreshold.razor",
8472
+ "UI/Chart/ChartTooltip.razor",
8473
+ "UI/Chart/ChartTooltipContext.cs",
8474
+ "UI/Chart/ChartTooltipSlot.cs",
8469
8475
  "UI/Chart/EChartOption.cs"
8470
8476
  ],
8471
8477
  "namespace": "Lumeo",
@@ -8490,6 +8496,14 @@
8490
8496
  "isCascading": false,
8491
8497
  "captureUnmatched": false
8492
8498
  },
8499
+ {
8500
+ "name": "ChildContent",
8501
+ "type": "RenderFragment?",
8502
+ "default": null,
8503
+ "description": "Declarative children — ChartThreshold and ChartReferenceZone. Other content renders nothing visible.",
8504
+ "isCascading": false,
8505
+ "captureUnmatched": false
8506
+ },
8493
8507
  {
8494
8508
  "name": "Theme",
8495
8509
  "type": "string?",
@@ -8831,6 +8845,14 @@
8831
8845
  "isCascading": false,
8832
8846
  "captureUnmatched": false
8833
8847
  },
8848
+ {
8849
+ "name": "ChildContent",
8850
+ "type": "RenderFragment?",
8851
+ "default": null,
8852
+ "description": "Declarative annotation children — ChartThreshold and ChartReferenceZone. Forwarded to the underlying Chart.",
8853
+ "isCascading": false,
8854
+ "captureUnmatched": false
8855
+ },
8834
8856
  {
8835
8857
  "name": "AdditionalAttributes",
8836
8858
  "type": "Dictionary<string, object>?",
@@ -9110,6 +9132,14 @@
9110
9132
  "isCascading": false,
9111
9133
  "captureUnmatched": false
9112
9134
  },
9135
+ {
9136
+ "name": "ChildContent",
9137
+ "type": "RenderFragment?",
9138
+ "default": null,
9139
+ "description": "Declarative annotation children — ChartThreshold and ChartReferenceZone. Forwarded to the underlying Chart.",
9140
+ "isCascading": false,
9141
+ "captureUnmatched": false
9142
+ },
9113
9143
  {
9114
9144
  "name": "AdditionalAttributes",
9115
9145
  "type": "Dictionary<string, object>?",
@@ -10061,6 +10091,71 @@
10061
10091
  "parseFailed": false,
10062
10092
  "parseError": null
10063
10093
  },
10094
+ "ChartReferenceZone": {
10095
+ "componentName": "ChartReferenceZone",
10096
+ "fileName": "ChartReferenceZone.razor",
10097
+ "namespace": "Lumeo",
10098
+ "inheritsFrom": null,
10099
+ "implements": [
10100
+ "IDisposable"
10101
+ ],
10102
+ "parameters": [
10103
+ {
10104
+ "name": "Context",
10105
+ "type": "ChartAnnotationsContext?",
10106
+ "default": null,
10107
+ "description": null,
10108
+ "isCascading": true,
10109
+ "captureUnmatched": false
10110
+ },
10111
+ {
10112
+ "name": "From",
10113
+ "type": "object",
10114
+ "default": "0",
10115
+ "description": "Lower bound on the perpendicular axis.",
10116
+ "isCascading": false,
10117
+ "captureUnmatched": false
10118
+ },
10119
+ {
10120
+ "name": "To",
10121
+ "type": "object",
10122
+ "default": "0",
10123
+ "description": "Upper bound on the perpendicular axis.",
10124
+ "isCascading": false,
10125
+ "captureUnmatched": false
10126
+ },
10127
+ {
10128
+ "name": "Axis",
10129
+ "type": "ChartThresholdAxis",
10130
+ "default": "ChartThresholdAxis.Horizontal",
10131
+ "description": "Which axis the band is perpendicular to. Default Horizontal (a yAxis band spanning the chart width).",
10132
+ "isCascading": false,
10133
+ "captureUnmatched": false
10134
+ },
10135
+ {
10136
+ "name": "Label",
10137
+ "type": "string?",
10138
+ "default": null,
10139
+ "description": "Label rendered inside the band. Null or empty hides it.",
10140
+ "isCascading": false,
10141
+ "captureUnmatched": false
10142
+ },
10143
+ {
10144
+ "name": "Color",
10145
+ "type": "string",
10146
+ "default": "\"#3b82f622\"",
10147
+ "description": "Fill colour (typically a low-alpha hex like \"#22c55e22\"). Required — without it the zone would be invisible.",
10148
+ "isCascading": false,
10149
+ "captureUnmatched": false
10150
+ }
10151
+ ],
10152
+ "events": [],
10153
+ "enums": [],
10154
+ "records": [],
10155
+ "gotchas": [],
10156
+ "parseFailed": false,
10157
+ "parseError": null
10158
+ },
10064
10159
  "ChartSkeleton": {
10065
10160
  "componentName": "ChartSkeleton",
10066
10161
  "fileName": "ChartSkeleton.razor",
@@ -10116,6 +10211,120 @@
10116
10211
  "parseFailed": false,
10117
10212
  "parseError": null
10118
10213
  },
10214
+ "ChartThreshold": {
10215
+ "componentName": "ChartThreshold",
10216
+ "fileName": "ChartThreshold.razor",
10217
+ "namespace": "Lumeo",
10218
+ "inheritsFrom": null,
10219
+ "implements": [
10220
+ "IDisposable"
10221
+ ],
10222
+ "parameters": [
10223
+ {
10224
+ "name": "Context",
10225
+ "type": "ChartAnnotationsContext?",
10226
+ "default": null,
10227
+ "description": null,
10228
+ "isCascading": true,
10229
+ "captureUnmatched": false
10230
+ },
10231
+ {
10232
+ "name": "Value",
10233
+ "type": "object",
10234
+ "default": "0",
10235
+ "description": "Value on the perpendicular axis (yAxis for horizontal, xAxis for vertical).",
10236
+ "isCascading": false,
10237
+ "captureUnmatched": false
10238
+ },
10239
+ {
10240
+ "name": "Axis",
10241
+ "type": "ChartThresholdAxis",
10242
+ "default": "ChartThresholdAxis.Horizontal",
10243
+ "description": "Which axis the line is perpendicular to. Default Horizontal (a yAxis line spanning the chart width — the common target / SLA line).",
10244
+ "isCascading": false,
10245
+ "captureUnmatched": false
10246
+ },
10247
+ {
10248
+ "name": "Label",
10249
+ "type": "string?",
10250
+ "default": null,
10251
+ "description": "Label rendered along the line. Null or empty hides it.",
10252
+ "isCascading": false,
10253
+ "captureUnmatched": false
10254
+ },
10255
+ {
10256
+ "name": "Color",
10257
+ "type": "string?",
10258
+ "default": null,
10259
+ "description": "Hex / CSS colour for the line. When null ECharts inherits the series colour.",
10260
+ "isCascading": false,
10261
+ "captureUnmatched": false
10262
+ },
10263
+ {
10264
+ "name": "LineStyle",
10265
+ "type": "string",
10266
+ "default": "\"dashed\"",
10267
+ "description": "Line style passed to ECharts — \"solid\", \"dashed\", or \"dotted\". Defaults to \"dashed\" for visual distinction from data lines.",
10268
+ "isCascading": false,
10269
+ "captureUnmatched": false
10270
+ }
10271
+ ],
10272
+ "events": [],
10273
+ "enums": [],
10274
+ "records": [],
10275
+ "gotchas": [],
10276
+ "parseFailed": false,
10277
+ "parseError": null
10278
+ },
10279
+ "ChartTooltip": {
10280
+ "componentName": "ChartTooltip",
10281
+ "fileName": "ChartTooltip.razor",
10282
+ "namespace": "Lumeo",
10283
+ "inheritsFrom": null,
10284
+ "implements": [
10285
+ "IDisposable"
10286
+ ],
10287
+ "parameters": [
10288
+ {
10289
+ "name": "Registration",
10290
+ "type": "ChartTooltipSlotRegistration?",
10291
+ "default": null,
10292
+ "description": null,
10293
+ "isCascading": true,
10294
+ "captureUnmatched": false
10295
+ },
10296
+ {
10297
+ "name": "ChildContent",
10298
+ "type": "RenderFragment<ChartTooltipContext>",
10299
+ "default": "default!",
10300
+ "description": "The tooltip body. Receives the current ChartTooltipContext for the hovered point. The fragment is re-rendered into the chart's hidden tooltip portal on every hover; ECharts pulls the portal's innerHTML into the tooltip box.",
10301
+ "isCascading": false,
10302
+ "captureUnmatched": false
10303
+ },
10304
+ {
10305
+ "name": "Class",
10306
+ "type": "string?",
10307
+ "default": null,
10308
+ "description": "Extra classes for the rendered tooltip wrapper inside the portal. Lets consumers theme the tooltip without restyling the whole portal.",
10309
+ "isCascading": false,
10310
+ "captureUnmatched": false
10311
+ },
10312
+ {
10313
+ "name": "AdditionalAttributes",
10314
+ "type": "Dictionary<string, object>?",
10315
+ "default": null,
10316
+ "description": "Unmatched attributes flow through to the portal &lt;div&gt; so consumers can attach id, data-*, ARIA attributes etc. to the rendered tooltip wrapper without restyling the whole portal.",
10317
+ "isCascading": false,
10318
+ "captureUnmatched": true
10319
+ }
10320
+ ],
10321
+ "events": [],
10322
+ "enums": [],
10323
+ "records": [],
10324
+ "gotchas": [],
10325
+ "parseFailed": false,
10326
+ "parseError": null
10327
+ },
10119
10328
  "DonutChart": {
10120
10329
  "componentName": "DonutChart",
10121
10330
  "fileName": "DonutChart.razor",
@@ -11910,6 +12119,14 @@
11910
12119
  "isCascading": false,
11911
12120
  "captureUnmatched": false
11912
12121
  },
12122
+ {
12123
+ "name": "ChildContent",
12124
+ "type": "RenderFragment?",
12125
+ "default": null,
12126
+ "description": "Declarative annotation children — ChartThreshold and ChartReferenceZone. Forwarded to the underlying Chart.",
12127
+ "isCascading": false,
12128
+ "captureUnmatched": false
12129
+ },
11913
12130
  {
11914
12131
  "name": "AdditionalAttributes",
11915
12132
  "type": "Dictionary<string, object>?",
@@ -17454,6 +17671,22 @@
17454
17671
  "isCascading": false,
17455
17672
  "captureUnmatched": false
17456
17673
  },
17674
+ {
17675
+ "name": "ItemDescription",
17676
+ "type": "Func<object, string?>?",
17677
+ "default": null,
17678
+ "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\").",
17679
+ "isCascading": false,
17680
+ "captureUnmatched": false
17681
+ },
17682
+ {
17683
+ "name": "ItemIcon",
17684
+ "type": "Func<object, RenderFragment?>?",
17685
+ "default": null,
17686
+ "description": "Optional per-item leading icon. Receives the raw item object and returns a RenderFragment (typically a single &lt;Blazicon&gt;). Rendered before the label when ItemTemplate is null. Skip via returning null per item to mix iconed and non-iconed rows.",
17687
+ "isCascading": false,
17688
+ "captureUnmatched": false
17689
+ },
17457
17690
  {
17458
17691
  "name": "ItemTemplate",
17459
17692
  "type": "RenderFragment<object>?",
@@ -17515,7 +17748,7 @@
17515
17748
  "records": [
17516
17749
  {
17517
17750
  "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)",
17751
+ "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
17752
  "description": null
17520
17753
  }
17521
17754
  ],
@@ -17531,6 +17764,7 @@
17531
17764
  "--color-muted-foreground",
17532
17765
  "--color-popover",
17533
17766
  "--color-popover-foreground",
17767
+ "--color-ring",
17534
17768
  "--radius"
17535
17769
  ],
17536
17770
  "examples": [
@@ -19706,6 +19940,7 @@
19706
19940
  "UI/DataGrid/DataGridColumn.cs",
19707
19941
  "UI/DataGrid/DataGridColumnDef.razor",
19708
19942
  "UI/DataGrid/DataGridColumnFilter.razor",
19943
+ "UI/DataGrid/DataGridColumnGroup.razor",
19709
19944
  "UI/DataGrid/DataGridColumnVisibility.razor",
19710
19945
  "UI/DataGrid/DataGridContext.cs",
19711
19946
  "UI/DataGrid/DataGridDetailRow.razor",
@@ -20681,6 +20916,14 @@
20681
20916
  "isCascading": true,
20682
20917
  "captureUnmatched": false
20683
20918
  },
20919
+ {
20920
+ "name": "ColumnGroupId",
20921
+ "type": "string?",
20922
+ "default": null,
20923
+ "description": null,
20924
+ "isCascading": true,
20925
+ "captureUnmatched": false
20926
+ },
20684
20927
  {
20685
20928
  "name": "Title",
20686
20929
  "type": "string?",
@@ -20761,6 +21004,14 @@
20761
21004
  "isCascading": false,
20762
21005
  "captureUnmatched": false
20763
21006
  },
21007
+ {
21008
+ "name": "FooterFormat",
21009
+ "type": "string?",
21010
+ "default": null,
21011
+ "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\").",
21012
+ "isCascading": false,
21013
+ "captureUnmatched": false
21014
+ },
20764
21015
  {
20765
21016
  "name": "Pin",
20766
21017
  "type": "PinDirection",
@@ -20974,6 +21225,53 @@
20974
21225
  "parseFailed": false,
20975
21226
  "parseError": null
20976
21227
  },
21228
+ "DataGridColumnGroup": {
21229
+ "componentName": "DataGridColumnGroup",
21230
+ "fileName": "DataGridColumnGroup.razor",
21231
+ "namespace": "Lumeo",
21232
+ "inheritsFrom": null,
21233
+ "implements": [],
21234
+ "parameters": [
21235
+ {
21236
+ "name": "ParentGrid",
21237
+ "type": "DataGrid<TItem>?",
21238
+ "default": null,
21239
+ "description": null,
21240
+ "isCascading": true,
21241
+ "captureUnmatched": false
21242
+ },
21243
+ {
21244
+ "name": "Label",
21245
+ "type": "string",
21246
+ "default": "\"\"",
21247
+ "description": "Header label shown in the spanning th above the grouped columns.",
21248
+ "isCascading": false,
21249
+ "captureUnmatched": false
21250
+ },
21251
+ {
21252
+ "name": "HeaderClass",
21253
+ "type": "string?",
21254
+ "default": null,
21255
+ "description": "Extra classes for the spanning header cell — theming hook for the group.",
21256
+ "isCascading": false,
21257
+ "captureUnmatched": false
21258
+ },
21259
+ {
21260
+ "name": "ChildContent",
21261
+ "type": "RenderFragment?",
21262
+ "default": null,
21263
+ "description": null,
21264
+ "isCascading": false,
21265
+ "captureUnmatched": false
21266
+ }
21267
+ ],
21268
+ "events": [],
21269
+ "enums": [],
21270
+ "records": [],
21271
+ "gotchas": [],
21272
+ "parseFailed": false,
21273
+ "parseError": null
21274
+ },
20977
21275
  "DataGridColumnVisibility": {
20978
21276
  "componentName": "DataGridColumnVisibility",
20979
21277
  "fileName": "DataGridColumnVisibility.razor",
@@ -21364,7 +21662,13 @@
21364
21662
  }
21365
21663
  ],
21366
21664
  "enums": [],
21367
- "records": [],
21665
+ "records": [
21666
+ {
21667
+ "name": "GroupHeaderRun",
21668
+ "signature": "GroupHeaderRun(DataGridColumnGroupInfo? Info, int Span)",
21669
+ "description": null
21670
+ }
21671
+ ],
21368
21672
  "gotchas": [],
21369
21673
  "parseFailed": false,
21370
21674
  "parseError": null
@@ -29426,6 +29730,30 @@
29426
29730
  "isCascading": false,
29427
29731
  "captureUnmatched": false
29428
29732
  },
29733
+ {
29734
+ "name": "ShowCount",
29735
+ "type": "bool",
29736
+ "default": null,
29737
+ "description": "Renders a character counter below the input, matching Textarea's pattern.",
29738
+ "isCascading": false,
29739
+ "captureUnmatched": false
29740
+ },
29741
+ {
29742
+ "name": "MaxLength",
29743
+ "type": "int?",
29744
+ "default": null,
29745
+ "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.",
29746
+ "isCascading": false,
29747
+ "captureUnmatched": false
29748
+ },
29749
+ {
29750
+ "name": "CountFormat",
29751
+ "type": "Func<int, string>?",
29752
+ "default": null,
29753
+ "description": "Optional custom counter formatter (e.g. c =&gt; $\"{c} of 60 chars\"). Default renders 42 or 42/60 when MaxLength is set.",
29754
+ "isCascading": false,
29755
+ "captureUnmatched": false
29756
+ },
29429
29757
  {
29430
29758
  "name": "AutoFocus",
29431
29759
  "type": "bool",
@@ -39490,6 +39818,22 @@
39490
39818
  "isCascading": false,
39491
39819
  "captureUnmatched": false
39492
39820
  },
39821
+ {
39822
+ "name": "ItemDescription",
39823
+ "type": "Func<object, string?>?",
39824
+ "default": null,
39825
+ "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.",
39826
+ "isCascading": false,
39827
+ "captureUnmatched": false
39828
+ },
39829
+ {
39830
+ "name": "ItemIcon",
39831
+ "type": "Func<object, RenderFragment?>?",
39832
+ "default": null,
39833
+ "description": "Optional per-item leading icon. Receives the raw item object and returns a RenderFragment (typically a single &lt;Blazicon&gt;). Rendered before the label when ItemTemplate is null. Return null per item to mix iconed and non-iconed rows.",
39834
+ "isCascading": false,
39835
+ "captureUnmatched": false
39836
+ },
39493
39837
  {
39494
39838
  "name": "ItemTemplate",
39495
39839
  "type": "RenderFragment<object>?",
@@ -39546,7 +39890,7 @@
39546
39890
  "records": [
39547
39891
  {
39548
39892
  "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)",
39893
+ "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
39894
  "description": null
39551
39895
  }
39552
39896
  ],
@@ -39641,8 +39985,26 @@
39641
39985
  "fileName": "SelectGroup.razor",
39642
39986
  "namespace": "Lumeo",
39643
39987
  "inheritsFrom": null,
39644
- "implements": [],
39988
+ "implements": [
39989
+ "IDisposable"
39990
+ ],
39645
39991
  "parameters": [
39992
+ {
39993
+ "name": "Context",
39994
+ "type": "Select.SelectContext",
39995
+ "default": "default!",
39996
+ "description": null,
39997
+ "isCascading": true,
39998
+ "captureUnmatched": false
39999
+ },
40000
+ {
40001
+ "name": "ParentGroup",
40002
+ "type": "SelectGroupContext?",
40003
+ "default": null,
40004
+ "description": null,
40005
+ "isCascading": true,
40006
+ "captureUnmatched": false
40007
+ },
39646
40008
  {
39647
40009
  "name": "ChildContent",
39648
40010
  "type": "RenderFragment?",
@@ -39651,6 +40013,46 @@
39651
40013
  "isCascading": false,
39652
40014
  "captureUnmatched": false
39653
40015
  },
40016
+ {
40017
+ "name": "Label",
40018
+ "type": "string?",
40019
+ "default": null,
40020
+ "description": "Group header text. When null/empty no header renders (still nests its items).",
40021
+ "isCascading": false,
40022
+ "captureUnmatched": false
40023
+ },
40024
+ {
40025
+ "name": "LabelClass",
40026
+ "type": "string?",
40027
+ "default": null,
40028
+ "description": "Extra classes for the group label — theming hook for the header.",
40029
+ "isCascading": false,
40030
+ "captureUnmatched": false
40031
+ },
40032
+ {
40033
+ "name": "Collapsible",
40034
+ "type": "bool",
40035
+ "default": null,
40036
+ "description": "When true the header toggles the group open/closed. Collapsed groups hide their items.",
40037
+ "isCascading": false,
40038
+ "captureUnmatched": false
40039
+ },
40040
+ {
40041
+ "name": "DefaultExpanded",
40042
+ "type": "bool",
40043
+ "default": "true",
40044
+ "description": "Initial expanded state for a Collapsible group. Default expanded.",
40045
+ "isCascading": false,
40046
+ "captureUnmatched": false
40047
+ },
40048
+ {
40049
+ "name": "GroupSelect",
40050
+ "type": "bool",
40051
+ "default": null,
40052
+ "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.",
40053
+ "isCascading": false,
40054
+ "captureUnmatched": false
40055
+ },
39654
40056
  {
39655
40057
  "name": "Class",
39656
40058
  "type": "string?",
@@ -39670,13 +40072,7 @@
39670
40072
  ],
39671
40073
  "events": [],
39672
40074
  "enums": [],
39673
- "records": [
39674
- {
39675
- "name": "SelectGroupContext",
39676
- "signature": "SelectGroupContext(string LabelId)",
39677
- "description": null
39678
- }
39679
- ],
40075
+ "records": [],
39680
40076
  "gotchas": [],
39681
40077
  "parseFailed": false,
39682
40078
  "parseError": null
@@ -39698,6 +40094,14 @@
39698
40094
  "isCascading": true,
39699
40095
  "captureUnmatched": false
39700
40096
  },
40097
+ {
40098
+ "name": "Group",
40099
+ "type": "SelectGroup.SelectGroupContext?",
40100
+ "default": null,
40101
+ "description": null,
40102
+ "isCascading": true,
40103
+ "captureUnmatched": false
40104
+ },
39701
40105
  {
39702
40106
  "name": "ChildContent",
39703
40107
  "type": "RenderFragment?",
@@ -41136,6 +41540,22 @@
41136
41540
  "isCascading": false,
41137
41541
  "captureUnmatched": false
41138
41542
  },
41543
+ {
41544
+ "name": "PersistCollapsed",
41545
+ "type": "bool",
41546
+ "default": null,
41547
+ "description": "When true, the collapsed / expanded state survives page reloads — the provider reads IsCollapsed from localStorage[PersistenceKey] on first render and writes back on every change. Falls back to the parameter value when JS is unavailable (SSR, prerender, JSDisconnectedException). Opt-in to keep existing consumers' behaviour untouched.",
41548
+ "isCascading": false,
41549
+ "captureUnmatched": false
41550
+ },
41551
+ {
41552
+ "name": "PersistenceKey",
41553
+ "type": "string",
41554
+ "default": "\"lumeo.sidebar.collapsed\"",
41555
+ "description": "LocalStorage key used when PersistCollapsed is true. Override to scope a per-route or per-tenant sidebar so multiple sidebars on the same origin don't clobber each other's state.",
41556
+ "isCascading": false,
41557
+ "captureUnmatched": false
41558
+ },
41139
41559
  {
41140
41560
  "name": "Class",
41141
41561
  "type": "string?",
@@ -41166,9 +41586,10 @@
41166
41586
  "values": [
41167
41587
  "Push",
41168
41588
  "Overlay",
41169
- "Icon"
41589
+ "Icon",
41590
+ "MiniRail"
41170
41591
  ],
41171
- "description": null
41592
+ "description": "Layout strategy for the sidebar. Push &mdash; collapses to zero width, pushing main content to the edge. Overlay &mdash; floats above content with a dismissible scrim. Icon &mdash; collapses to a narrow icon rail that stays put until toggled back. MiniRail &mdash; same icon-rail width when collapsed, but expands to full width on hover or keyboard focus and collapses again on leave. Material&rsquo;s standard collapsed-sidebar pattern; uses Toggle() to pin open."
41172
41593
  }
41173
41594
  ],
41174
41595
  "records": [
package/src/registry.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://lumeo.nativ.sh/registry-schema.json",
3
- "version": "3.8.0",
4
- "generated": "2026-05-30T08:55:21.6474076Z",
3
+ "version": "3.10.0",
4
+ "generated": "2026-05-31T10:13:39.8713949Z",
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,10 +689,15 @@
687
689
  "UI/Chart/Charts/WordCloudChart.razor",
688
690
  "UI/Chart/ChartSkeleton.razor",
689
691
  "UI/Chart/ChartSkeletonKind.cs",
692
+ "UI/Chart/ChartThreshold.razor",
693
+ "UI/Chart/ChartTooltip.razor",
694
+ "UI/Chart/ChartTooltipContext.cs",
695
+ "UI/Chart/ChartTooltipSlot.cs",
690
696
  "UI/Chart/EChartOption.cs"
691
697
  ],
692
698
  "dependencies": [
693
- "gauge"
699
+ "gauge",
700
+ "stack"
694
701
  ],
695
702
  "packageDependencies": [
696
703
  "Blazicons.Lucide"
@@ -892,6 +899,7 @@
892
899
  "--color-muted-foreground",
893
900
  "--color-popover",
894
901
  "--color-popover-foreground",
902
+ "--color-ring",
895
903
  "--radius"
896
904
  ],
897
905
  "gotchas": [],
@@ -1100,6 +1108,7 @@
1100
1108
  "UI/DataGrid/DataGridColumn.cs",
1101
1109
  "UI/DataGrid/DataGridColumnDef.razor",
1102
1110
  "UI/DataGrid/DataGridColumnFilter.razor",
1111
+ "UI/DataGrid/DataGridColumnGroup.razor",
1103
1112
  "UI/DataGrid/DataGridColumnVisibility.razor",
1104
1113
  "UI/DataGrid/DataGridContext.cs",
1105
1114
  "UI/DataGrid/DataGridDetailRow.razor",