@lumeo-ui/mcp-server 2.0.0-rc.37 → 2.0.0-rc.38

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.37",
3
+ "version": "2.0.0-rc.38",
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,12 +1,12 @@
1
1
  {
2
2
  "$schema": "https://lumeo.nativ.sh/components-api-schema.json",
3
- "version": "2.0.0-rc.37",
4
- "generated": "2026-05-13T06:54:44.3772199Z",
3
+ "version": "2.0.0-rc.38",
4
+ "generated": "2026-05-13T07:19:07.9817901Z",
5
5
  "stats": {
6
6
  "componentCount": 145,
7
- "totalParameters": 3431,
7
+ "totalParameters": 3438,
8
8
  "totalEnums": 101,
9
- "totalRecords": 57,
9
+ "totalRecords": 58,
10
10
  "thinFallbacks": []
11
11
  },
12
12
  "themeTokens": [
@@ -31423,7 +31423,8 @@
31423
31423
  "description": "Pill-shaped tab-like single-select control.",
31424
31424
  "nugetPackage": "Lumeo",
31425
31425
  "files": [
31426
- "UI/Segmented/Segmented.razor"
31426
+ "UI/Segmented/Segmented.razor",
31427
+ "UI/Segmented/SegmentedItem.razor"
31427
31428
  ],
31428
31429
  "namespace": "Lumeo",
31429
31430
  "inheritsFrom": null,
@@ -31449,7 +31450,15 @@
31449
31450
  "name": "Options",
31450
31451
  "type": "List<SegmentedOption>?",
31451
31452
  "default": null,
31452
- "description": null,
31453
+ "description": "Data-driven options. When set, takes precedence over ChildContent. Leave null and pass SegmentedItem children for the compound-component flavour.",
31454
+ "isCascading": false,
31455
+ "captureUnmatched": false
31456
+ },
31457
+ {
31458
+ "name": "ChildContent",
31459
+ "type": "RenderFragment?",
31460
+ "default": null,
31461
+ "description": "Compound-mode content — one or more SegmentedItem. Ignored when Options is set.",
31453
31462
  "isCascading": false,
31454
31463
  "captureUnmatched": false
31455
31464
  },
@@ -31486,7 +31495,13 @@
31486
31495
  }
31487
31496
  ],
31488
31497
  "enums": [],
31489
- "records": [],
31498
+ "records": [
31499
+ {
31500
+ "name": "SegmentedContext",
31501
+ "signature": "SegmentedContext(\n string? Value,\n EventCallback<string> Select,\n Func<bool, string> GetItemClasses)",
31502
+ "description": "Cascading context for compound-mode SegmentedItem children — they read the active value + the parent's item-class function (so style stays consistent with Options-mode) and invoke Select on click."
31503
+ }
31504
+ ],
31490
31505
  "cssVars": [
31491
31506
  "--color-background",
31492
31507
  "--color-foreground",
@@ -31508,7 +31523,70 @@
31508
31523
  "code": "new SegmentedOption { Label = \"Weekly\", Value = \"weekly\", Disabled = true }"
31509
31524
  }
31510
31525
  ],
31511
- "subComponents": {},
31526
+ "subComponents": {
31527
+ "SegmentedItem": {
31528
+ "componentName": "SegmentedItem",
31529
+ "fileName": "SegmentedItem.razor",
31530
+ "namespace": "Lumeo",
31531
+ "inheritsFrom": null,
31532
+ "implements": [],
31533
+ "parameters": [
31534
+ {
31535
+ "name": "Context",
31536
+ "type": "Segmented.SegmentedContext?",
31537
+ "default": null,
31538
+ "description": null,
31539
+ "isCascading": true,
31540
+ "captureUnmatched": false
31541
+ },
31542
+ {
31543
+ "name": "Value",
31544
+ "type": "string",
31545
+ "default": "\"\"",
31546
+ "description": "The value selected when this item is clicked. Must match one of the parent Segmented's expected values.",
31547
+ "isCascading": false,
31548
+ "captureUnmatched": false
31549
+ },
31550
+ {
31551
+ "name": "ChildContent",
31552
+ "type": "RenderFragment?",
31553
+ "default": null,
31554
+ "description": null,
31555
+ "isCascading": false,
31556
+ "captureUnmatched": false
31557
+ },
31558
+ {
31559
+ "name": "IconContent",
31560
+ "type": "RenderFragment?",
31561
+ "default": null,
31562
+ "description": "Optional leading icon slot.",
31563
+ "isCascading": false,
31564
+ "captureUnmatched": false
31565
+ },
31566
+ {
31567
+ "name": "Disabled",
31568
+ "type": "bool",
31569
+ "default": null,
31570
+ "description": null,
31571
+ "isCascading": false,
31572
+ "captureUnmatched": false
31573
+ },
31574
+ {
31575
+ "name": "AdditionalAttributes",
31576
+ "type": "Dictionary<string, object>?",
31577
+ "default": null,
31578
+ "description": null,
31579
+ "isCascading": false,
31580
+ "captureUnmatched": true
31581
+ }
31582
+ ],
31583
+ "events": [],
31584
+ "enums": [],
31585
+ "records": [],
31586
+ "parseFailed": false,
31587
+ "parseError": null
31588
+ }
31589
+ },
31512
31590
  "parseFailed": false,
31513
31591
  "parseError": null
31514
31592
  },
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-13T06:54:43.3072285Z",
4
+ "generated": "2026-05-13T07:19:07.0465652Z",
5
5
  "components": {
6
6
  "accordion": {
7
7
  "name": "Accordion",
@@ -2626,7 +2626,8 @@
2626
2626
  "hasDocsPage": true,
2627
2627
  "nugetPackage": "Lumeo",
2628
2628
  "files": [
2629
- "UI/Segmented/Segmented.razor"
2629
+ "UI/Segmented/Segmented.razor",
2630
+ "UI/Segmented/SegmentedItem.razor"
2630
2631
  ],
2631
2632
  "dependencies": [],
2632
2633
  "packageDependencies": [],