@lumeo-ui/mcp-server 2.0.0-rc.28 → 2.0.0-rc.29

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": "2.0.0-rc.28",
3
+ "version": "2.0.0-rc.29",
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,11 +1,11 @@
1
1
  {
2
2
  "$schema": "https://lumeo.nativ.sh/components-api-schema.json",
3
- "version": "2.0.0-rc.28",
4
- "generated": "2026-05-07T11:00:49.1332443Z",
3
+ "version": "2.0.0-rc.29",
4
+ "generated": "2026-05-12T09:41:38.8919000Z",
5
5
  "stats": {
6
6
  "componentCount": 131,
7
- "totalParameters": 3189,
8
- "totalEnums": 90,
7
+ "totalParameters": 3191,
8
+ "totalEnums": 91,
9
9
  "totalRecords": 48,
10
10
  "thinFallbacks": []
11
11
  },
@@ -32090,6 +32090,14 @@
32090
32090
  "isCascading": false,
32091
32091
  "captureUnmatched": false
32092
32092
  },
32093
+ {
32094
+ "name": "RenderMode",
32095
+ "type": "TabsRenderMode",
32096
+ "default": "TabsRenderMode.Active",
32097
+ "description": "Controls when each TabsContent panel is rendered into the DOM and whether its state survives a tab switch: Active (default) — only the active panel is in the DOM; switching away unmounts it (form inputs, scroll position and any component state are lost). Lightest footprint. Lazy — a panel is rendered the first time its tab becomes active, then kept in the DOM (hidden) so its state is preserved on subsequent switches. Like DevExpress OnDemand. Eager — every panel is rendered immediately; inactive ones are hidden. State always preserved, but the heaviest initial render. Like DevExpress Always. A single TabsContent can opt into eager rendering regardless of this setting via ForceMount=\"true\".",
32098
+ "isCascading": false,
32099
+ "captureUnmatched": false
32100
+ },
32093
32101
  {
32094
32102
  "name": "Class",
32095
32103
  "type": "string?",
@@ -32122,12 +32130,21 @@
32122
32130
  "Vertical"
32123
32131
  ],
32124
32132
  "description": null
32133
+ },
32134
+ {
32135
+ "name": "TabsRenderMode",
32136
+ "values": [
32137
+ "Active",
32138
+ "Lazy",
32139
+ "Eager"
32140
+ ],
32141
+ "description": "Render strategy for TabsContent panels. See RenderMode for the semantics of each value."
32125
32142
  }
32126
32143
  ],
32127
32144
  "records": [
32128
32145
  {
32129
32146
  "name": "TabsContext",
32130
- "signature": "TabsContext(\r\n string ActiveValue,\r\n EventCallback<string> SetValue,\r\n TabsOrientation Orientation,\r\n string Variant,\r\n Dictionary<string, (string TabId, string PanelId)> TabIds,\r\n bool AnimatedIndicator)",
32147
+ "signature": "TabsContext(\r\n string ActiveValue,\r\n EventCallback<string> SetValue,\r\n TabsOrientation Orientation,\r\n string Variant,\r\n Dictionary<string, (string TabId, string PanelId)> TabIds,\r\n bool AnimatedIndicator,\r\n TabsRenderMode RenderMode,\r\n HashSet<string> ActivatedValues)",
32131
32148
  "description": null
32132
32149
  }
32133
32150
  ],
@@ -32175,6 +32192,14 @@
32175
32192
  "isCascading": false,
32176
32193
  "captureUnmatched": false
32177
32194
  },
32195
+ {
32196
+ "name": "ForceMount",
32197
+ "type": "bool",
32198
+ "default": null,
32199
+ "description": "When true, this panel is always rendered into the DOM (hidden when inactive), regardless of the parent RenderMode. Use for panels whose state must survive every tab switch — e.g. a half-filled form — while leaving the rest of the tab set on the lighter default mode.",
32200
+ "isCascading": false,
32201
+ "captureUnmatched": false
32202
+ },
32178
32203
  {
32179
32204
  "name": "Class",
32180
32205
  "type": "string?",
package/src/registry.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://lumeo.nativ.sh/registry-schema.json",
3
3
  "version": "2.0.0",
4
- "generated": "2026-05-07T11:00:48.4741637Z",
4
+ "generated": "2026-05-12T09:41:38.0492846Z",
5
5
  "components": {
6
6
  "accordion": {
7
7
  "name": "Accordion",