@esmate/shadcn 1.1.1 → 1.1.2
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 +9 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Supercharge your UI development with Shadcn—components, hooks, and styles all in one package.
|
|
4
4
|
|
|
5
|
-
- **Zero
|
|
6
|
-
- **
|
|
7
|
-
- **
|
|
8
|
-
- **
|
|
5
|
+
- 🔧 **Zero Config**: Works out of the box with Tailwind and pre-styled themes like `new-york.css`.
|
|
6
|
+
- 🧩 **Ready-to-Use UI**: Composable Shadcn components via `@esmate/shadcn/ui/*`, no boilerplate needed.
|
|
7
|
+
- ⚙️ **Built-in Hooks**: Includes smart hooks like `useIsMobile` and `useZodForm` for fast logic handling.
|
|
8
|
+
- 🛠 **Useful Utilities**: Handy functions like `cn` for class merging, all in one place.
|
|
9
|
+
- 🎨 **Customizable Styles**: Easy theming with design tokens, dark mode, and editable base styles.
|
|
10
|
+
- 📦 **Bundled Deps**: Re-exports `zod`, `react-hook-form`, and more—no extra installs needed.
|
|
9
11
|
|
|
10
12
|
## Installation
|
|
11
13
|
|
|
@@ -238,8 +240,9 @@ easy theme generation.
|
|
|
238
240
|
|
|
239
241
|
### Exports
|
|
240
242
|
|
|
241
|
-
Shadcn
|
|
242
|
-
|
|
243
|
+
Shadcn includes many dependencies that can be tricky to manage in a project. That’s why I created this package: to
|
|
244
|
+
bundle them all in one place. I’ve re-exported everything for you, making the dependencies reusable and saving you from
|
|
245
|
+
having to install each dependency individually.
|
|
243
246
|
|
|
244
247
|
```typescript
|
|
245
248
|
import { useForm } from "@esmate/shadcn/react-hook-form";
|