@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.
Files changed (2) hide show
  1. package/README.md +9 -6
  2. 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 config pain**: Works out of the box with Tailwind.
6
- - **Pre-styled**: Comes with `base.css`, `new-york.css`, etc.
7
- - **Complete UI**: Composable components, no boilerplate needed.
8
- - **Smart hooks**: Built-in logic that saves you time.
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 comes with many dependencies, which can be complicated to manage and use in a project. That's why I created this
242
- package: to bundle them all together. To make them reusable and avoid reinstalling them, I re-export them for you.
243
+ Shadcn includes many dependencies that can be tricky to manage in a project. Thats 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";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@esmate/shadcn",
3
3
  "description": "Shadcn components, hooks, and styles in one package.",
4
- "version": "1.1.1",
4
+ "version": "1.1.2",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "repository": {