@godxjp/ui-mcp 18.0.0 → 18.0.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/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1905,7 +1905,12 @@ import { Smartphone } from "lucide-react";
|
|
|
1905
1905
|
required: true,
|
|
1906
1906
|
description: "TableHeader / TableBody composition."
|
|
1907
1907
|
},
|
|
1908
|
-
{ name: "className", type: "string", description: "Extra classes on the table element." }
|
|
1908
|
+
{ name: "className", type: "string", description: "Extra classes on the table element." },
|
|
1909
|
+
{
|
|
1910
|
+
name: "scrollable",
|
|
1911
|
+
type: "boolean",
|
|
1912
|
+
description: "Whether Table owns its own horizontal-scroll region (default true). Leave true for a standalone table so a table wider than its container scrolls in a keyboard-reachable wrapper. Set false only when an ancestor already provides the scroll region (DataTable does) to avoid a redundant nested scroller + duplicate keyboard tab stop."
|
|
1913
|
+
}
|
|
1909
1914
|
],
|
|
1910
1915
|
usage: [
|
|
1911
1916
|
"DO compose all six sub-parts in order: wrap with `<Table>`, then `<TableHeader>` containing `<TableRow><TableHead>\u2026</TableRow>`, then `<TableBody>` containing one or more `<TableRow><TableCell>\u2026` rows. Skipping any layer (e.g. bare `<th>` inside `<Table>`) bypasses the design tokens and hover/border styles.",
|
|
@@ -12539,7 +12544,7 @@ function visualRulesByCategory(category) {
|
|
|
12539
12544
|
// package.json
|
|
12540
12545
|
var package_default = {
|
|
12541
12546
|
name: "@godxjp/ui-mcp",
|
|
12542
|
-
version: "18.0.
|
|
12547
|
+
version: "18.0.1",
|
|
12543
12548
|
godxUiCompatibility: "18.0.x",
|
|
12544
12549
|
description: "Model Context Protocol server for @godxjp/ui \u2014 gives Claude Code / Codex CLI / Cursor / any MCP-aware agent live access to the component catalog, prop vocabulary, design tokens, 45 cardinal rules, copy-paste-ready patterns, 12 design / taste skills synthesised from Leonxlnx/taste-skill, 20+ anti-AI-tell patterns, and a 50-check redesign audit \u2014 token-efficient (list \u2192 drill-down).",
|
|
12545
12550
|
type: "module",
|