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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. 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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "raw-auto-table-zod",
3
3
  "description": "Auto-generate typed React tables from Zod schemas",
4
- "version": "0.0.6",
4
+ "version": "0.0.7",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",