raw-auto-table-zod 0.0.6 → 0.0.7
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 +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
@@ -18,6 +18,21 @@ A React table component that automatically generates tables from Zod schemas.
|
|
18
18
|
npm install raw-auto-table-zod
|
19
19
|
```
|
20
20
|
|
21
|
+
## Default Components
|
22
|
+
|
23
|
+
You can quickly get started with the default shadcn/ui components:
|
24
|
+
|
25
|
+
```bash
|
26
|
+
# Using npm
|
27
|
+
npx shadcn@latest add https://raw.githubusercontent.com/atul7017128880/component-registry/refs/heads/master/public/registry/auto-table-component.json
|
28
|
+
|
29
|
+
# Using pnpm
|
30
|
+
pnpm dlx shadcn@latest add https://raw.githubusercontent.com/atul7017128880/component-registry/refs/heads/master/public/registry/auto-table-component.json
|
31
|
+
|
32
|
+
# Using Bun
|
33
|
+
bunx --bun shadcn@latest add https://raw.githubusercontent.com/atul7017128880/component-registry/refs/heads/master/public/registry/auto-table-component.json
|
34
|
+
```
|
35
|
+
|
21
36
|
## Basic Usage
|
22
37
|
|
23
38
|
```tsx
|