@lumeo-ui/mcp-server 3.16.0 → 3.18.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 +240 -8
- package/src/registry.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumeo-ui/mcp-server",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.18.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,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/components-api-schema.json",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"generated": "2026-06-
|
|
3
|
+
"version": "3.18.0",
|
|
4
|
+
"generated": "2026-06-18T11:36:26.8009093Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 163,
|
|
7
|
-
"totalParameters":
|
|
7
|
+
"totalParameters": 4099,
|
|
8
8
|
"totalEnums": 74,
|
|
9
|
-
"totalRecords":
|
|
9
|
+
"totalRecords": 71,
|
|
10
10
|
"serviceCount": 33,
|
|
11
11
|
"thinFallbacks": []
|
|
12
12
|
},
|
|
@@ -6472,6 +6472,14 @@
|
|
|
6472
6472
|
"isCascading": false,
|
|
6473
6473
|
"captureUnmatched": false
|
|
6474
6474
|
},
|
|
6475
|
+
{
|
|
6476
|
+
"name": "OnError",
|
|
6477
|
+
"type": "EventCallback<string?>",
|
|
6478
|
+
"default": null,
|
|
6479
|
+
"description": "Fired after (re)encoding with the human-readable error message, or null when the value encoded successfully — a validation hook so a consumer can surface its own UI / gate a submit. (#291)",
|
|
6480
|
+
"isCascading": false,
|
|
6481
|
+
"captureUnmatched": false
|
|
6482
|
+
},
|
|
6475
6483
|
{
|
|
6476
6484
|
"name": "Class",
|
|
6477
6485
|
"type": "string?",
|
|
@@ -6489,7 +6497,13 @@
|
|
|
6489
6497
|
"captureUnmatched": true
|
|
6490
6498
|
}
|
|
6491
6499
|
],
|
|
6492
|
-
"events": [
|
|
6500
|
+
"events": [
|
|
6501
|
+
{
|
|
6502
|
+
"name": "OnError",
|
|
6503
|
+
"type": "EventCallback<string?>",
|
|
6504
|
+
"description": "Fired after (re)encoding with the human-readable error message, or null when the value encoded successfully — a validation hook so a consumer can surface its own UI / gate a submit. (#291)"
|
|
6505
|
+
}
|
|
6506
|
+
],
|
|
6493
6507
|
"enums": [
|
|
6494
6508
|
{
|
|
6495
6509
|
"name": "BarcodeFormat",
|
|
@@ -7630,6 +7644,14 @@
|
|
|
7630
7644
|
"isCascading": false,
|
|
7631
7645
|
"captureUnmatched": false
|
|
7632
7646
|
},
|
|
7647
|
+
{
|
|
7648
|
+
"name": "Href",
|
|
7649
|
+
"type": "string?",
|
|
7650
|
+
"default": null,
|
|
7651
|
+
"description": "When set, the button renders as an <a href> styled exactly like a button — the Blazor-idiomatic polymorphism for the common \"link that looks like a button\" case (#269). All visual props (Variant/Size/icons) still apply; Disabled/IsLoading map to aria-disabled + non-interactive styling since a link can't be natively disabled. Leave null for a normal <button>.",
|
|
7652
|
+
"isCascading": false,
|
|
7653
|
+
"captureUnmatched": false
|
|
7654
|
+
},
|
|
7633
7655
|
{
|
|
7634
7656
|
"name": "Type",
|
|
7635
7657
|
"type": "ButtonType",
|
|
@@ -17324,6 +17346,30 @@
|
|
|
17324
17346
|
"isCascading": false,
|
|
17325
17347
|
"captureUnmatched": false
|
|
17326
17348
|
},
|
|
17349
|
+
{
|
|
17350
|
+
"name": "Source",
|
|
17351
|
+
"type": "string?",
|
|
17352
|
+
"default": null,
|
|
17353
|
+
"description": "Raw source to render (block variant). When set together with Highlighter the output is syntax-highlighted; otherwise the source is rendered as escaped plain text. Falls back to ChildContent when null. (#196)",
|
|
17354
|
+
"isCascading": false,
|
|
17355
|
+
"captureUnmatched": false
|
|
17356
|
+
},
|
|
17357
|
+
{
|
|
17358
|
+
"name": "Language",
|
|
17359
|
+
"type": "string?",
|
|
17360
|
+
"default": null,
|
|
17361
|
+
"description": "Language hint (e.g. \"csharp\", \"ts\") — emitted as data-language and passed to Highlighter.",
|
|
17362
|
+
"isCascading": false,
|
|
17363
|
+
"captureUnmatched": false
|
|
17364
|
+
},
|
|
17365
|
+
{
|
|
17366
|
+
"name": "Highlighter",
|
|
17367
|
+
"type": "Func<string, string?, MarkupString>?",
|
|
17368
|
+
"default": null,
|
|
17369
|
+
"description": "Pluggable syntax highlighter: (code, language) => safe HTML. Plug in Prism / Shiki / highlight.js (or a server-side highlighter). The delegate MUST return SAFE HTML — escape untrusted source. Core ships no built-in highlighter on purpose (dependency-free), mirroring StreamingText.MarkdownRenderer. Ignored unless Source is set.",
|
|
17370
|
+
"isCascading": false,
|
|
17371
|
+
"captureUnmatched": false
|
|
17372
|
+
},
|
|
17327
17373
|
{
|
|
17328
17374
|
"name": "ChildContent",
|
|
17329
17375
|
"type": "RenderFragment?",
|
|
@@ -27907,6 +27953,22 @@
|
|
|
27907
27953
|
"isCascading": false,
|
|
27908
27954
|
"captureUnmatched": false
|
|
27909
27955
|
},
|
|
27956
|
+
{
|
|
27957
|
+
"name": "Filters",
|
|
27958
|
+
"type": "IReadOnlyList<FilterDescriptor>?",
|
|
27959
|
+
"default": null,
|
|
27960
|
+
"description": "Data-driven filter model (#319): when supplied, the bar renders a dismissable FilterPill per descriptor (Field / Operator / Value) and raises OnRemoveFilter on dismiss. The Pills slot still works and renders alongside, so this is purely additive.",
|
|
27961
|
+
"isCascading": false,
|
|
27962
|
+
"captureUnmatched": false
|
|
27963
|
+
},
|
|
27964
|
+
{
|
|
27965
|
+
"name": "OnRemoveFilter",
|
|
27966
|
+
"type": "EventCallback<FilterDescriptor>",
|
|
27967
|
+
"default": null,
|
|
27968
|
+
"description": null,
|
|
27969
|
+
"isCascading": false,
|
|
27970
|
+
"captureUnmatched": false
|
|
27971
|
+
},
|
|
27910
27972
|
{
|
|
27911
27973
|
"name": "Class",
|
|
27912
27974
|
"type": "string?",
|
|
@@ -27924,9 +27986,21 @@
|
|
|
27924
27986
|
"captureUnmatched": true
|
|
27925
27987
|
}
|
|
27926
27988
|
],
|
|
27927
|
-
"events": [
|
|
27989
|
+
"events": [
|
|
27990
|
+
{
|
|
27991
|
+
"name": "OnRemoveFilter",
|
|
27992
|
+
"type": "EventCallback<FilterDescriptor>",
|
|
27993
|
+
"description": null
|
|
27994
|
+
}
|
|
27995
|
+
],
|
|
27928
27996
|
"enums": [],
|
|
27929
|
-
"records": [
|
|
27997
|
+
"records": [
|
|
27998
|
+
{
|
|
27999
|
+
"name": "FilterDescriptor",
|
|
28000
|
+
"signature": "FilterDescriptor(string Field, string? Operator = null, string? Value = null)",
|
|
28001
|
+
"description": "A single active filter: a field, an optional comparison operator (e.g. \"=\", \">\", \"contains\"), and a display value."
|
|
28002
|
+
}
|
|
28003
|
+
],
|
|
27930
28004
|
"gotchas": [],
|
|
27931
28005
|
"cssVars": [
|
|
27932
28006
|
"--color-muted",
|
|
@@ -27967,6 +28041,14 @@
|
|
|
27967
28041
|
"isCascading": false,
|
|
27968
28042
|
"captureUnmatched": false
|
|
27969
28043
|
},
|
|
28044
|
+
{
|
|
28045
|
+
"name": "Operator",
|
|
28046
|
+
"type": "string?",
|
|
28047
|
+
"default": null,
|
|
28048
|
+
"description": "Optional comparison operator shown between Label and Value (e.g. \"=\", \">\", \"contains\"). When null the pill reads \"Label: Value\". (#319)",
|
|
28049
|
+
"isCascading": false,
|
|
28050
|
+
"captureUnmatched": false
|
|
28051
|
+
},
|
|
27970
28052
|
{
|
|
27971
28053
|
"name": "Value",
|
|
27972
28054
|
"type": "string",
|
|
@@ -28863,6 +28945,14 @@
|
|
|
28863
28945
|
"isCascading": false,
|
|
28864
28946
|
"captureUnmatched": false
|
|
28865
28947
|
},
|
|
28948
|
+
{
|
|
28949
|
+
"name": "LabelContent",
|
|
28950
|
+
"type": "RenderFragment?",
|
|
28951
|
+
"default": null,
|
|
28952
|
+
"description": "Custom center/label content — overrides the default text. Drop in a <NumberTicker> (Lumeo.Motion) here for an animated value, instead of duplicating count-up animation in core. (#277)",
|
|
28953
|
+
"isCascading": false,
|
|
28954
|
+
"captureUnmatched": false
|
|
28955
|
+
},
|
|
28866
28956
|
{
|
|
28867
28957
|
"name": "ShowValue",
|
|
28868
28958
|
"type": "bool",
|
|
@@ -28978,6 +29068,14 @@
|
|
|
28978
29068
|
"isCascading": false,
|
|
28979
29069
|
"captureUnmatched": false
|
|
28980
29070
|
},
|
|
29071
|
+
{
|
|
29072
|
+
"name": "Responsive",
|
|
29073
|
+
"type": "bool",
|
|
29074
|
+
"default": null,
|
|
29075
|
+
"description": "When true the grid collapses to 1 column on mobile and 2 on small screens, expanding to Columns only at the lg breakpoint — so a many-column grid stays readable on phones. Uses statically-known responsive utility strings (purge-safe) for 1–6 columns; falls back to a fixed grid-cols-N for other counts. Off by default (unchanged behavior). (#250)",
|
|
29076
|
+
"isCascading": false,
|
|
29077
|
+
"captureUnmatched": false
|
|
29078
|
+
},
|
|
28981
29079
|
{
|
|
28982
29080
|
"name": "Gap",
|
|
28983
29081
|
"type": "string?",
|
|
@@ -29077,6 +29175,14 @@
|
|
|
29077
29175
|
"isCascading": false,
|
|
29078
29176
|
"captureUnmatched": false
|
|
29079
29177
|
},
|
|
29178
|
+
{
|
|
29179
|
+
"name": "As",
|
|
29180
|
+
"type": "string?",
|
|
29181
|
+
"default": null,
|
|
29182
|
+
"description": "Render the heading's visual styling on this element tag instead of the semantic h{Level} (e.g. \"p\", \"div\", \"span\") — the asChild-style escape hatch for \"looks like a heading, isn't one in the document outline\". Visual only; supply role/aria-level via attributes for heading semantics. Null = the normal h{Level}. (#295)",
|
|
29183
|
+
"isCascading": false,
|
|
29184
|
+
"captureUnmatched": false
|
|
29185
|
+
},
|
|
29080
29186
|
{
|
|
29081
29187
|
"name": "Size",
|
|
29082
29188
|
"type": "string?",
|
|
@@ -29343,6 +29449,14 @@
|
|
|
29343
29449
|
"isCascading": false,
|
|
29344
29450
|
"captureUnmatched": false
|
|
29345
29451
|
},
|
|
29452
|
+
{
|
|
29453
|
+
"name": "RegexMode",
|
|
29454
|
+
"type": "bool",
|
|
29455
|
+
"default": null,
|
|
29456
|
+
"description": "Treat Highlight / HighlightTerms as regular- expression patterns instead of literal text (the default). Invalid patterns fall back to rendering the text un-highlighted. WholeWord is ignored in this mode — express boundaries in the pattern itself. (#293)",
|
|
29457
|
+
"isCascading": false,
|
|
29458
|
+
"captureUnmatched": false
|
|
29459
|
+
},
|
|
29346
29460
|
{
|
|
29347
29461
|
"name": "HighlightClass",
|
|
29348
29462
|
"type": "string?",
|
|
@@ -35486,6 +35600,62 @@
|
|
|
35486
35600
|
"isCascading": false,
|
|
35487
35601
|
"captureUnmatched": false
|
|
35488
35602
|
},
|
|
35603
|
+
{
|
|
35604
|
+
"name": "Page",
|
|
35605
|
+
"type": "int?",
|
|
35606
|
+
"default": null,
|
|
35607
|
+
"description": null,
|
|
35608
|
+
"isCascading": false,
|
|
35609
|
+
"captureUnmatched": false
|
|
35610
|
+
},
|
|
35611
|
+
{
|
|
35612
|
+
"name": "PageChanged",
|
|
35613
|
+
"type": "EventCallback<int>",
|
|
35614
|
+
"default": null,
|
|
35615
|
+
"description": null,
|
|
35616
|
+
"isCascading": false,
|
|
35617
|
+
"captureUnmatched": false
|
|
35618
|
+
},
|
|
35619
|
+
{
|
|
35620
|
+
"name": "TotalPages",
|
|
35621
|
+
"type": "int?",
|
|
35622
|
+
"default": null,
|
|
35623
|
+
"description": null,
|
|
35624
|
+
"isCascading": false,
|
|
35625
|
+
"captureUnmatched": false
|
|
35626
|
+
},
|
|
35627
|
+
{
|
|
35628
|
+
"name": "TotalItems",
|
|
35629
|
+
"type": "int?",
|
|
35630
|
+
"default": null,
|
|
35631
|
+
"description": null,
|
|
35632
|
+
"isCascading": false,
|
|
35633
|
+
"captureUnmatched": false
|
|
35634
|
+
},
|
|
35635
|
+
{
|
|
35636
|
+
"name": "PageSize",
|
|
35637
|
+
"type": "int",
|
|
35638
|
+
"default": "10",
|
|
35639
|
+
"description": null,
|
|
35640
|
+
"isCascading": false,
|
|
35641
|
+
"captureUnmatched": false
|
|
35642
|
+
},
|
|
35643
|
+
{
|
|
35644
|
+
"name": "SiblingCount",
|
|
35645
|
+
"type": "int",
|
|
35646
|
+
"default": "1",
|
|
35647
|
+
"description": "Pages shown on each side of the current page (default 1).",
|
|
35648
|
+
"isCascading": false,
|
|
35649
|
+
"captureUnmatched": false
|
|
35650
|
+
},
|
|
35651
|
+
{
|
|
35652
|
+
"name": "BoundaryCount",
|
|
35653
|
+
"type": "int",
|
|
35654
|
+
"default": "1",
|
|
35655
|
+
"description": "Pages always shown at the very start/end (default 1).",
|
|
35656
|
+
"isCascading": false,
|
|
35657
|
+
"captureUnmatched": false
|
|
35658
|
+
},
|
|
35489
35659
|
{
|
|
35490
35660
|
"name": "Class",
|
|
35491
35661
|
"type": "string?",
|
|
@@ -35503,7 +35673,13 @@
|
|
|
35503
35673
|
"captureUnmatched": true
|
|
35504
35674
|
}
|
|
35505
35675
|
],
|
|
35506
|
-
"events": [
|
|
35676
|
+
"events": [
|
|
35677
|
+
{
|
|
35678
|
+
"name": "PageChanged",
|
|
35679
|
+
"type": "EventCallback<int>",
|
|
35680
|
+
"description": null
|
|
35681
|
+
}
|
|
35682
|
+
],
|
|
35507
35683
|
"enums": [],
|
|
35508
35684
|
"records": [],
|
|
35509
35685
|
"gotchas": [],
|
|
@@ -43723,6 +43899,46 @@
|
|
|
43723
43899
|
"isCascading": false,
|
|
43724
43900
|
"captureUnmatched": false
|
|
43725
43901
|
},
|
|
43902
|
+
{
|
|
43903
|
+
"name": "Type",
|
|
43904
|
+
"type": "Sparkline.SparkType",
|
|
43905
|
+
"default": "Sparkline.SparkType.Line",
|
|
43906
|
+
"description": "Inline sparkline shape (Line / Area / Bars). (#276)",
|
|
43907
|
+
"isCascading": false,
|
|
43908
|
+
"captureUnmatched": false
|
|
43909
|
+
},
|
|
43910
|
+
{
|
|
43911
|
+
"name": "ShowArea",
|
|
43912
|
+
"type": "bool",
|
|
43913
|
+
"default": null,
|
|
43914
|
+
"description": "Fill the area under a line sparkline. (#276)",
|
|
43915
|
+
"isCascading": false,
|
|
43916
|
+
"captureUnmatched": false
|
|
43917
|
+
},
|
|
43918
|
+
{
|
|
43919
|
+
"name": "ShowLast",
|
|
43920
|
+
"type": "bool",
|
|
43921
|
+
"default": null,
|
|
43922
|
+
"description": "Mark the most recent point. (#276)",
|
|
43923
|
+
"isCascading": false,
|
|
43924
|
+
"captureUnmatched": false
|
|
43925
|
+
},
|
|
43926
|
+
{
|
|
43927
|
+
"name": "ShowTooltips",
|
|
43928
|
+
"type": "bool",
|
|
43929
|
+
"default": null,
|
|
43930
|
+
"description": "Per-point markers + hover tooltips on the inline sparkline. (#276)",
|
|
43931
|
+
"isCascading": false,
|
|
43932
|
+
"captureUnmatched": false
|
|
43933
|
+
},
|
|
43934
|
+
{
|
|
43935
|
+
"name": "SparkColor",
|
|
43936
|
+
"type": "string?",
|
|
43937
|
+
"default": null,
|
|
43938
|
+
"description": "Override the sparkline color (CSS color / var). (#276)",
|
|
43939
|
+
"isCascading": false,
|
|
43940
|
+
"captureUnmatched": false
|
|
43941
|
+
},
|
|
43726
43942
|
{
|
|
43727
43943
|
"name": "Class",
|
|
43728
43944
|
"type": "string?",
|
|
@@ -43951,6 +44167,14 @@
|
|
|
43951
44167
|
"isCascading": false,
|
|
43952
44168
|
"captureUnmatched": false
|
|
43953
44169
|
},
|
|
44170
|
+
{
|
|
44171
|
+
"name": "ShowTooltips",
|
|
44172
|
+
"type": "bool",
|
|
44173
|
+
"default": null,
|
|
44174
|
+
"description": "Render a marker dot at every data point with a native SVG <title> (hover tooltip showing the value) — point highlight + tooltips with no JS. Off by default. (#275)",
|
|
44175
|
+
"isCascading": false,
|
|
44176
|
+
"captureUnmatched": false
|
|
44177
|
+
},
|
|
43954
44178
|
{
|
|
43955
44179
|
"name": "StrokeWidth",
|
|
43956
44180
|
"type": "double",
|
|
@@ -44730,6 +44954,14 @@
|
|
|
44730
44954
|
"isCascading": false,
|
|
44731
44955
|
"captureUnmatched": false
|
|
44732
44956
|
},
|
|
44957
|
+
{
|
|
44958
|
+
"name": "ValueContent",
|
|
44959
|
+
"type": "RenderFragment?",
|
|
44960
|
+
"default": null,
|
|
44961
|
+
"description": "Custom value content — overrides Value. Drop in a <NumberTicker> (Lumeo.Motion) here for an animated count-up, rather than duplicating animation logic in core. (#273)",
|
|
44962
|
+
"isCascading": false,
|
|
44963
|
+
"captureUnmatched": false
|
|
44964
|
+
},
|
|
44733
44965
|
{
|
|
44734
44966
|
"name": "Prefix",
|
|
44735
44967
|
"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-06-
|
|
3
|
+
"version": "3.18.0",
|
|
4
|
+
"generated": "2026-06-18T11:36:25.3532160Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"accordion": {
|
|
7
7
|
"name": "Accordion",
|
|
@@ -3476,7 +3476,9 @@
|
|
|
3476
3476
|
"files": [
|
|
3477
3477
|
"UI/SparkCard/SparkCard.razor"
|
|
3478
3478
|
],
|
|
3479
|
-
"dependencies": [
|
|
3479
|
+
"dependencies": [
|
|
3480
|
+
"sparkline"
|
|
3481
|
+
],
|
|
3480
3482
|
"packageDependencies": [],
|
|
3481
3483
|
"cssVars": [
|
|
3482
3484
|
"--color-border",
|