@producteca/producteca-ui-kit 1.64.0 → 1.65.0

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/README.md CHANGED
@@ -32,6 +32,37 @@
32
32
  | `prepare` | `husky` | Prepares the repository by installing Husky for Git hooks |
33
33
  | `pre-commit` | `husky && husky install` | Installs Husky and sets up Git hooks for pre-commit validation |
34
34
 
35
+ ## Storybook MCP
36
+
37
+ This library's Storybook exposes an [MCP](https://storybook.js.org/docs/ai/mcp/overview)
38
+ server so AI agents can query component docs and run interaction tests.
39
+
40
+ ### Use it locally
41
+
42
+ ```bash
43
+ bun run dev # serves Storybook + MCP at http://localhost:6006/mcp
44
+ ```
45
+
46
+ Register it with your agent (project scope):
47
+
48
+ ```bash
49
+ npx mcp-add --type http --url "http://localhost:6006/mcp" --scope project
50
+ ```
51
+
52
+ Claude Code users: the repo's `.mcp.json` already registers it — just run
53
+ `bun run dev`.
54
+
55
+ ### Use the published server (Chromatic)
56
+
57
+ Each Chromatic build publishes the MCP at the `/mcp` route of the published
58
+ Storybook:
59
+
60
+ ```
61
+ https://<branch>--<appId>.chromatic.com/mcp
62
+ ```
63
+
64
+ Verify with: ask your agent to run `list-all-documentation`.
65
+
35
66
  ## 🌐 Browser Compatibility
36
67
 
37
68
  Este proyecto utiliza **Babel** para transpilar el código JavaScript/TypeScript, garantizando compatibilidad con:
@@ -7,6 +7,7 @@ export interface ModalProps {
7
7
  className?: string;
8
8
  isLoading?: boolean;
9
9
  fitContent?: boolean;
10
+ ariaLabel?: string;
10
11
  onClose?: () => void;
11
12
  children: React.ReactNode;
12
13
  }
@@ -1,4 +1,18 @@
1
1
  declare const _default: {
2
+ a11y: {
3
+ loading: string;
4
+ progress: string;
5
+ close: string;
6
+ openCalendar: string;
7
+ reorder: string;
8
+ moreActions: string;
9
+ menu: string;
10
+ search: string;
11
+ navigation: string;
12
+ dialog: string;
13
+ remove: string;
14
+ toggleSidebar: string;
15
+ };
2
16
  noResultsFound: string;
3
17
  reloadPage: string;
4
18
  errorOccurred: string;