@idealyst/mcp-server 1.3.3 → 1.3.5

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/dist/index.cjs CHANGED
@@ -11644,7 +11644,8 @@ var componentMetadata = {
11644
11644
  category: "data",
11645
11645
  description: "Structured data display in rows and columns",
11646
11646
  features: [
11647
- "Sortable columns",
11647
+ "Sortable columns \u2014 set `sortable: true` on a column, handle `onSort` callback on Table",
11648
+ "Column options menu \u2014 set `options: MenuItem[]` on a column to show a kebab (\u22EE) dropdown in the header",
11648
11649
  "Custom cell rendering via column `render` function",
11649
11650
  "Custom column titles (ReactNode) \u2014 render icons, badges, or any element as header",
11650
11651
  "Footer row support \u2014 static content or computed from data via `footer` callback",
@@ -11657,7 +11658,10 @@ var componentMetadata = {
11657
11658
  "Align numbers to the right",
11658
11659
  "Column `title` accepts ReactNode \u2014 use for custom headers with icons or styled text",
11659
11660
  "Column `footer` accepts ReactNode or `(data: T[]) => ReactNode` \u2014 use the callback form for computed values like sums/averages",
11660
- "Footer only renders when at least one column has a `footer` defined"
11661
+ "Footer only renders when at least one column has a `footer` defined",
11662
+ "Sort: Table manages sort state internally (3-state cycle: null \u2192 asc \u2192 desc \u2192 null). The parent sorts data via `onSort(columnKey, direction)` callback.",
11663
+ 'Sort: `SortDirection` type is `"asc" | "desc" | null`. Import from `@idealyst/components`.',
11664
+ "Column options: `options` uses the `MenuItem[]` type from the Menu component. Each item has `id`, `label`, `onClick`, and optional `icon`, `separator`, `intent`."
11661
11665
  ]
11662
11666
  },
11663
11667
  Tabs: {