@lumeo-ui/mcp-server 3.10.0 → 3.10.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumeo-ui/mcp-server",
3
- "version": "3.10.0",
3
+ "version": "3.10.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",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://lumeo.nativ.sh/components-api-schema.json",
3
- "version": "3.10.0",
4
- "generated": "2026-05-31T10:13:41.2164785Z",
3
+ "version": "3.10.1",
4
+ "generated": "2026-05-31T11:23:51.8814073Z",
5
5
  "stats": {
6
6
  "componentCount": 163,
7
7
  "totalParameters": 3952,
@@ -20677,6 +20677,10 @@
20677
20677
  "title": "Basic DataGrid",
20678
20678
  "code": "<DataGrid TItem=\"Employee\" Items=\"@employees\" PageSize=\"5\" ShowPagination=\"true\">\n <DataGridColumnDef TItem=\"Employee\" Title=\"Name\" Field=\"Name\" Sortable=\"true\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Department\" Field=\"Department\" Sortable=\"true\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Salary\" Field=\"Salary\" Sortable=\"true\" Format=\"C0\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Start Date\" Field=\"StartDate\" Format=\"yyyy-MM-dd\" />\n</DataGrid>"
20679
20679
  },
20680
+ {
20681
+ "title": "Column Groups + Footer Aggregates",
20682
+ "code": "@* DataGridColumnGroup wraps a contiguous run of column defs under a labelled parent\n <th colspan>. Set Aggregate on a column to surface a sticky footer total; FooterFormat\n formats just the total (cells in C0, totals in N0). *@\n<DataGrid TItem=\"Employee\" Items=\"@employees\">\n <DataGridColumnGroup TItem=\"Employee\" Label=\"Identity\">\n <DataGridColumnDef TItem=\"Employee\" Title=\"Name\" Field=\"Name\" Sortable=\"true\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Department\" Field=\"Department\" Sortable=\"true\" />\n </DataGridColumnGroup>\n <DataGridColumnGroup TItem=\"Employee\" Label=\"Compensation\">\n <DataGridColumnDef TItem=\"Employee\" Title=\"Salary\" Field=\"Salary\"\n Sortable=\"true\" Format=\"C0\"\n Aggregate=\"AggregateType.Sum\" FooterFormat=\"N0\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Tenure\" Field=\"StartDate\"\n Sortable=\"true\" Format=\"yyyy-MM-dd\" />\n </DataGridColumnGroup>\n</DataGrid>"
20683
+ },
20680
20684
  {
20681
20685
  "title": "Toolbar, Search & Filtering",
20682
20686
  "code": "<DataGrid TItem=\"Employee\" Items=\"@employees\" PageSize=\"5\"\n ShowToolbar=\"true\" ShowPagination=\"true\">\n <DataGridColumnDef TItem=\"Employee\" Title=\"Name\" Field=\"Name\"\n Sortable=\"true\" Filterable=\"true\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Salary\" Field=\"Salary\"\n Filterable=\"true\" FilterType=\"DataGridFilterType.Number\" Format=\"C0\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Status\" Field=\"Status\"\n Filterable=\"true\" />\n</DataGrid>"
@@ -20684,10 +20688,6 @@
20684
20688
  {
20685
20689
  "title": "Minimal toolbar (search only)",
20686
20690
  "code": "<DataGrid TItem=\"Employee\" Items=\"@employees\" PageSize=\"5\"\n ShowToolbar=\"true\"\n ShowColumnChooser=\"false\"\n ShowExport=\"false\">\n <DataGridColumnDef TItem=\"Employee\" Title=\"Name\" Field=\"Name\" Sortable=\"true\" Filterable=\"true\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Department\" Field=\"Department\" Sortable=\"true\" Filterable=\"true\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Salary\" Field=\"Salary\" Sortable=\"true\" Format=\"C0\" />\n</DataGrid>"
20687
- },
20688
- {
20689
- "title": "Export-only toolbar",
20690
- "code": "<DataGrid TItem=\"Employee\" Items=\"@employees\" PageSize=\"5\"\n ShowToolbar=\"true\"\n ShowSearch=\"false\"\n ShowColumnChooser=\"false\">\n <DataGridColumnDef TItem=\"Employee\" Title=\"Name\" Field=\"Name\" Sortable=\"true\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Department\" Field=\"Department\" Sortable=\"true\" />\n <DataGridColumnDef TItem=\"Employee\" Title=\"Salary\" Field=\"Salary\" Sortable=\"true\" Format=\"C0\" />\n</DataGrid>"
20691
20691
  }
20692
20692
  ],
20693
20693
  "subComponents": {
@@ -41595,7 +41595,7 @@
41595
41595
  "records": [
41596
41596
  {
41597
41597
  "name": "SidebarState",
41598
- "signature": "SidebarState(bool IsCollapsed, EventCallback Toggle, SidebarVariant Variant)",
41598
+ "signature": "SidebarState(\n bool IsCollapsed,\n EventCallback Toggle,\n SidebarVariant Variant)",
41599
41599
  "description": null
41600
41600
  }
41601
41601
  ],
package/src/registry.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://lumeo.nativ.sh/registry-schema.json",
3
- "version": "3.10.0",
4
- "generated": "2026-05-31T10:13:39.8713949Z",
3
+ "version": "3.10.1",
4
+ "generated": "2026-05-31T11:23:50.9173066Z",
5
5
  "components": {
6
6
  "accordion": {
7
7
  "name": "Accordion",