@matthiaskrijgsman/mat-ui 0.0.26 → 0.0.28

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
@@ -2,8 +2,28 @@
2
2
 
3
3
  A React component library providing UI primitives built with React 19, Tailwind CSS v4, and Floating UI.
4
4
 
5
- ## Storybook
6
- [View the components here](https://matthiaskrijgsman.github.io/mat-ui/?path=/docs/index--docs)
5
+ ## Showcase
6
+ [View the components here](https://matthiaskrijgsman.github.io/mat-ui/)
7
+
8
+ ## Development
9
+
10
+ The repo is a pnpm workspace with two packages: the library at the repository root and the showcase Next.js app in [`site/`](site).
11
+
12
+ ```bash
13
+ # install workspace deps
14
+ pnpm install
15
+
16
+ # run the showcase against the local library
17
+ pnpm site # → http://localhost:6006
18
+
19
+ # build the library
20
+ pnpm build
21
+
22
+ # build the showcase as a static site (outputs to site/out)
23
+ pnpm site:build
24
+ ```
25
+
26
+ The showcase pulls in the library via the workspace alias (`workspace:*`), so edits under `src/` are reflected on the next dev rebuild. Deployments to GitHub Pages happen via [.github/workflows/deploy-site.yml](.github/workflows/deploy-site.yml).
7
27
 
8
28
  ## Installation
9
29
 
@@ -6,6 +6,7 @@ export type InputTextAreaProps = React.TextareaHTMLAttributes<HTMLTextAreaElemen
6
6
  error?: string | React.ReactNode;
7
7
  size?: Size;
8
8
  autogrow?: boolean;
9
+ maxRows?: number;
9
10
  ref?: React.Ref<HTMLTextAreaElement>;
10
11
  };
11
12
  export declare const InputTextArea: (props: InputTextAreaProps) => import("react/jsx-runtime").JSX.Element;