@lumeo-ui/mcp-server 3.1.0 → 3.1.1
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 +50 -5
- 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.1.
|
|
3
|
+
"version": "3.1.1",
|
|
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.1.
|
|
4
|
-
"generated": "2026-05-
|
|
3
|
+
"version": "3.1.1",
|
|
4
|
+
"generated": "2026-05-22T10:41:47.6958010Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 154,
|
|
7
|
-
"totalParameters":
|
|
7
|
+
"totalParameters": 3665,
|
|
8
8
|
"totalEnums": 65,
|
|
9
9
|
"totalRecords": 63,
|
|
10
10
|
"thinFallbacks": []
|
|
@@ -26015,7 +26015,7 @@
|
|
|
26015
26015
|
"name": "TileLayer",
|
|
26016
26016
|
"type": "string",
|
|
26017
26017
|
"default": "\"OpenStreetMap\"",
|
|
26018
|
-
"description": "Accepts a preset name (
|
|
26018
|
+
"description": "Accepts a preset name (OpenStreetMap, CartoLight, CartoDark, Satellite, Terrain) or a raw tile URL template (e.g. \"https://your.tiles/{z}/{x}/{y}.png\").",
|
|
26019
26019
|
"isCascading": false,
|
|
26020
26020
|
"captureUnmatched": false
|
|
26021
26021
|
},
|
|
@@ -26143,7 +26143,39 @@
|
|
|
26143
26143
|
"name": "IconUrl",
|
|
26144
26144
|
"type": "string?",
|
|
26145
26145
|
"default": null,
|
|
26146
|
-
"description":
|
|
26146
|
+
"description": "Bitmap icon URL. When set, takes precedence over Variant — we hand Leaflet a plain L.icon and skip the DivIcon path entirely. Anchored bottom-center at 32×32, matching the pre-3.1 default.",
|
|
26147
|
+
"isCascading": false,
|
|
26148
|
+
"captureUnmatched": false
|
|
26149
|
+
},
|
|
26150
|
+
{
|
|
26151
|
+
"name": "Variant",
|
|
26152
|
+
"type": "string",
|
|
26153
|
+
"default": "\"Default\"",
|
|
26154
|
+
"description": "Visual variant for the auto-generated DivIcon. Ignored when IconUrl is set. Defaults to \"Default\" (filled circle). Valid values: \"Default\", \"Outline\", \"Pin\", \"Dot\".",
|
|
26155
|
+
"isCascading": false,
|
|
26156
|
+
"captureUnmatched": false
|
|
26157
|
+
},
|
|
26158
|
+
{
|
|
26159
|
+
"name": "Color",
|
|
26160
|
+
"type": "string?",
|
|
26161
|
+
"default": null,
|
|
26162
|
+
"description": "Override the marker's theme color. Accepts a friendly name (\"red\", \"green\", \"yellow\", …) or a raw CSS color (\"#ff0000\", \"hsl(...)\"). Null = theme primary.",
|
|
26163
|
+
"isCascading": false,
|
|
26164
|
+
"captureUnmatched": false
|
|
26165
|
+
},
|
|
26166
|
+
{
|
|
26167
|
+
"name": "Label",
|
|
26168
|
+
"type": "string?",
|
|
26169
|
+
"default": null,
|
|
26170
|
+
"description": "Permanent label rendered above the marker. Use for waypoints or numbered tours. Different from Title (hover tooltip).",
|
|
26171
|
+
"isCascading": false,
|
|
26172
|
+
"captureUnmatched": false
|
|
26173
|
+
},
|
|
26174
|
+
{
|
|
26175
|
+
"name": "Icon",
|
|
26176
|
+
"type": "RenderFragment?",
|
|
26177
|
+
"default": null,
|
|
26178
|
+
"description": "Optional inline content inside the marker circle — a single letter, a number, or a small <Blazicon> SVG. The fragment is rendered to a hidden host and its innerHTML is spliced into the DivIcon. Ignored when IconUrl is set.",
|
|
26147
26179
|
"isCascading": false,
|
|
26148
26180
|
"captureUnmatched": false
|
|
26149
26181
|
},
|
|
@@ -29191,6 +29223,14 @@
|
|
|
29191
29223
|
"isCascading": false,
|
|
29192
29224
|
"captureUnmatched": false
|
|
29193
29225
|
},
|
|
29226
|
+
{
|
|
29227
|
+
"name": "OnError",
|
|
29228
|
+
"type": "EventCallback<string>",
|
|
29229
|
+
"default": null,
|
|
29230
|
+
"description": "Fires when the underlying JS load/render fails (CDN unreachable, malformed PDF, worker init failure, …). Receives the exception message. Consumers can use this to surface their own error UI; the built-in EmptyState fallback renders regardless.",
|
|
29231
|
+
"isCascading": false,
|
|
29232
|
+
"captureUnmatched": false
|
|
29233
|
+
},
|
|
29194
29234
|
{
|
|
29195
29235
|
"name": "Class",
|
|
29196
29236
|
"type": "string?",
|
|
@@ -29228,6 +29268,11 @@
|
|
|
29228
29268
|
"name": "OnPageChanged",
|
|
29229
29269
|
"type": "EventCallback<int>",
|
|
29230
29270
|
"description": null
|
|
29271
|
+
},
|
|
29272
|
+
{
|
|
29273
|
+
"name": "OnError",
|
|
29274
|
+
"type": "EventCallback<string>",
|
|
29275
|
+
"description": "Fires when the underlying JS load/render fails (CDN unreachable, malformed PDF, worker init failure, …). Receives the exception message. Consumers can use this to surface their own error UI; the built-in EmptyState fallback renders regardless."
|
|
29231
29276
|
}
|
|
29232
29277
|
],
|
|
29233
29278
|
"enums": [],
|
package/src/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/registry-schema.json",
|
|
3
|
-
"version": "3.1.
|
|
4
|
-
"generated": "2026-05-
|
|
3
|
+
"version": "3.1.1",
|
|
4
|
+
"generated": "2026-05-22T10:41:46.5778733Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"accordion": {
|
|
7
7
|
"name": "Accordion",
|
|
@@ -1935,7 +1935,9 @@
|
|
|
1935
1935
|
"UI/Map/MapMarker.razor"
|
|
1936
1936
|
],
|
|
1937
1937
|
"dependencies": [],
|
|
1938
|
-
"packageDependencies": [
|
|
1938
|
+
"packageDependencies": [
|
|
1939
|
+
"Blazicons.Lucide"
|
|
1940
|
+
],
|
|
1939
1941
|
"cssVars": [
|
|
1940
1942
|
"--color-foreground"
|
|
1941
1943
|
],
|