@lumeo-ui/mcp-server 4.1.0-preview.13 → 4.1.0-preview.15
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 +22 -6
- package/src/registry.json +12 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumeo-ui/mcp-server",
|
|
3
|
-
"version": "4.1.0-preview.
|
|
3
|
+
"version": "4.1.0-preview.15",
|
|
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/components-api-schema.json",
|
|
3
|
-
"version": "4.1.0-preview.
|
|
4
|
-
"generated": "2026-07-
|
|
3
|
+
"version": "4.1.0-preview.15",
|
|
4
|
+
"generated": "2026-07-06T14:07:06.0134941Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 164,
|
|
7
7
|
"totalParameters": 4184,
|
|
@@ -645,6 +645,12 @@
|
|
|
645
645
|
"signature": "AttachOverlaySlideEnd(string elementId)",
|
|
646
646
|
"summary": null
|
|
647
647
|
},
|
|
648
|
+
{
|
|
649
|
+
"name": "AttachOverlayExitEnd",
|
|
650
|
+
"returnType": "ValueTask",
|
|
651
|
+
"signature": "AttachOverlayExitEnd<T>(string elementId, DotNetObjectReference<T> dotNetRef)",
|
|
652
|
+
"summary": null
|
|
653
|
+
},
|
|
648
654
|
{
|
|
649
655
|
"name": "UnlockScroll",
|
|
650
656
|
"returnType": "ValueTask",
|
|
@@ -2039,6 +2045,12 @@
|
|
|
2039
2045
|
"signature": "AttachOverlaySlideEnd(string elementId)",
|
|
2040
2046
|
"summary": "Registers a native animationend listener that filters strictly on the slide-in animation name and, on completion, sets the element's inline transform: none. Bypasses Blazor's event roundtrip so the cleanup runs synchronously from the browser's animation pipeline. Used by Sheet, Drawer and any future slide-in overlay to defeat the animation-fill-mode: both identity-matrix transform trap that would otherwise establish a containing block for fixed-positioned descendants (Select / DatePicker / Combobox popovers)."
|
|
2041
2047
|
},
|
|
2048
|
+
{
|
|
2049
|
+
"name": "AttachOverlayExitEnd",
|
|
2050
|
+
"returnType": "ValueTask",
|
|
2051
|
+
"signature": "AttachOverlayExitEnd<T>(string elementId, DotNetObjectReference<T> dotNetRef)",
|
|
2052
|
+
"summary": "Radix-Presence-style overlay EXIT: clears the open-time containing-block guard (the inline animation:none/transform:none that AttachOverlaySlideEnd stamped) so the panel's animate-slide-out-*/animate-zoom-out class can actually run, then invokes OnExitAnimationEnd on once the panel's own exit animation finishes. Lets the overlay content drop backdrop + panel together on the REAL animation end instead of a blind timer (which slips late under main-thread load). The component keeps its timer strictly as a fallback. Default no-op so test doubles / prerender fall back to that timer."
|
|
2053
|
+
},
|
|
2042
2054
|
{
|
|
2043
2055
|
"name": "RegisterSvDrag",
|
|
2044
2056
|
"returnType": "ValueTask",
|
|
@@ -5336,7 +5348,8 @@
|
|
|
5336
5348
|
"namespace": "Lumeo",
|
|
5337
5349
|
"inheritsFrom": null,
|
|
5338
5350
|
"implements": [
|
|
5339
|
-
"IAsyncDisposable"
|
|
5351
|
+
"IAsyncDisposable",
|
|
5352
|
+
"IOverlayExitCallback"
|
|
5340
5353
|
],
|
|
5341
5354
|
"parameters": [
|
|
5342
5355
|
{
|
|
@@ -28270,7 +28283,8 @@
|
|
|
28270
28283
|
"namespace": "Lumeo",
|
|
28271
28284
|
"inheritsFrom": null,
|
|
28272
28285
|
"implements": [
|
|
28273
|
-
"IAsyncDisposable"
|
|
28286
|
+
"IAsyncDisposable",
|
|
28287
|
+
"IOverlayExitCallback"
|
|
28274
28288
|
],
|
|
28275
28289
|
"parameters": [
|
|
28276
28290
|
{
|
|
@@ -29039,7 +29053,8 @@
|
|
|
29039
29053
|
"namespace": "Lumeo",
|
|
29040
29054
|
"inheritsFrom": null,
|
|
29041
29055
|
"implements": [
|
|
29042
|
-
"IAsyncDisposable"
|
|
29056
|
+
"IAsyncDisposable",
|
|
29057
|
+
"IOverlayExitCallback"
|
|
29043
29058
|
],
|
|
29044
29059
|
"parameters": [
|
|
29045
29060
|
{
|
|
@@ -47901,7 +47916,8 @@
|
|
|
47901
47916
|
"namespace": "Lumeo",
|
|
47902
47917
|
"inheritsFrom": null,
|
|
47903
47918
|
"implements": [
|
|
47904
|
-
"IAsyncDisposable"
|
|
47919
|
+
"IAsyncDisposable",
|
|
47920
|
+
"IOverlayExitCallback"
|
|
47905
47921
|
],
|
|
47906
47922
|
"parameters": [
|
|
47907
47923
|
{
|
package/src/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/registry-schema.json",
|
|
3
|
-
"version": "4.1.0-preview.
|
|
4
|
-
"generated": "2026-07-
|
|
3
|
+
"version": "4.1.0-preview.15",
|
|
4
|
+
"generated": "2026-07-06T14:07:04.4347392Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"accordion": {
|
|
7
7
|
"name": "Accordion",
|
|
@@ -193,8 +193,8 @@
|
|
|
193
193
|
"registryUrl": "https://lumeo.nativ.sh/registry/alert-dialog.json",
|
|
194
194
|
"testCoverage": {
|
|
195
195
|
"tier": 3,
|
|
196
|
-
"files":
|
|
197
|
-
"tests":
|
|
196
|
+
"files": 6,
|
|
197
|
+
"tests": 32,
|
|
198
198
|
"relatedFiles": 0,
|
|
199
199
|
"render": true,
|
|
200
200
|
"behavior": true,
|
|
@@ -2039,8 +2039,8 @@
|
|
|
2039
2039
|
"registryUrl": "https://lumeo.nativ.sh/registry/dialog.json",
|
|
2040
2040
|
"testCoverage": {
|
|
2041
2041
|
"tier": 4,
|
|
2042
|
-
"files":
|
|
2043
|
-
"tests":
|
|
2042
|
+
"files": 10,
|
|
2043
|
+
"tests": 46,
|
|
2044
2044
|
"relatedFiles": 2,
|
|
2045
2045
|
"render": true,
|
|
2046
2046
|
"behavior": true,
|
|
@@ -2153,8 +2153,8 @@
|
|
|
2153
2153
|
"registryUrl": "https://lumeo.nativ.sh/registry/drawer.json",
|
|
2154
2154
|
"testCoverage": {
|
|
2155
2155
|
"tier": 4,
|
|
2156
|
-
"files":
|
|
2157
|
-
"tests":
|
|
2156
|
+
"files": 5,
|
|
2157
|
+
"tests": 33,
|
|
2158
2158
|
"relatedFiles": 1,
|
|
2159
2159
|
"render": true,
|
|
2160
2160
|
"behavior": true,
|
|
@@ -3758,8 +3758,8 @@
|
|
|
3758
3758
|
"registryUrl": "https://lumeo.nativ.sh/registry/overlay.json",
|
|
3759
3759
|
"testCoverage": {
|
|
3760
3760
|
"tier": 3,
|
|
3761
|
-
"files":
|
|
3762
|
-
"tests":
|
|
3761
|
+
"files": 8,
|
|
3762
|
+
"tests": 53,
|
|
3763
3763
|
"relatedFiles": 0,
|
|
3764
3764
|
"render": true,
|
|
3765
3765
|
"behavior": true,
|
|
@@ -4936,7 +4936,7 @@
|
|
|
4936
4936
|
"testCoverage": {
|
|
4937
4937
|
"tier": 4,
|
|
4938
4938
|
"files": 7,
|
|
4939
|
-
"tests":
|
|
4939
|
+
"tests": 49,
|
|
4940
4940
|
"relatedFiles": 1,
|
|
4941
4941
|
"render": true,
|
|
4942
4942
|
"behavior": true,
|
|
@@ -6859,6 +6859,7 @@
|
|
|
6859
6859
|
"Services/IComponentInteropService.cs",
|
|
6860
6860
|
"Services/IDataGridExportService.cs",
|
|
6861
6861
|
"Services/IKeyboardShortcutService.cs",
|
|
6862
|
+
"Services/IOverlayExitCallback.cs",
|
|
6862
6863
|
"Services/IOverlayService.cs",
|
|
6863
6864
|
"Services/IResponsiveService.cs",
|
|
6864
6865
|
"Services/IThemeService.cs",
|