@khanhminh/design-system 1.3.0 → 1.4.0

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.
@@ -1,2 +1 @@
1
1
  export { Button } from './ui/button';
2
- export { useToggle } from '../hooks/useToggle';
package/dist/index.cjs CHANGED
@@ -470,4 +470,5 @@ function useToggle(initial = false) {
470
470
  }
471
471
 
472
472
  exports.Button = Button;
473
+ exports.cn = cn;
473
474
  exports.useToggle = useToggle;
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './components';
2
2
  export * from './hooks';
3
+ export * from './lib';
3
4
  import './index.css';
package/dist/index.js CHANGED
@@ -467,4 +467,4 @@ function useToggle(initial = false) {
467
467
  return { state, toggle, setOn, setOff };
468
468
  }
469
469
 
470
- export { Button, useToggle };
470
+ export { Button, cn, useToggle };
@@ -0,0 +1 @@
1
+ export { cn } from './utils';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@khanhminh/design-system",
3
3
  "description": "A reusable React component library built with TypeScript, Tailwind CSS, and Radix UI",
4
- "version": "1.3.0",
4
+ "version": "1.4.0",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "main": "dist/index.cjs",