@khanhminh/design-system 1.12.0 → 1.13.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.
package/dist/index.cjs CHANGED
@@ -617,4 +617,5 @@ exports.Switch = Switch;
617
617
  exports.ThemeProvider = ThemeProvider;
618
618
  exports.applyTheme = applyTheme;
619
619
  exports.cn = cn;
620
+ exports.useThemeStore = useThemeStore;
620
621
  exports.useToggle = useToggle;
package/dist/index.d.ts CHANGED
@@ -2,5 +2,6 @@ export * from './components';
2
2
  export * from './hooks';
3
3
  export * from './lib';
4
4
  export * from './providers';
5
+ export * from './store';
5
6
  export * from './types';
6
7
  import './index.css';
package/dist/index.js CHANGED
@@ -604,4 +604,4 @@ function ThemeProvider({ children }) {
604
604
  return jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, { children: children });
605
605
  }
606
606
 
607
- export { Button, Checkbox, Input, Label, ScrollArea, Separator, Spinner, Switch, ThemeProvider, applyTheme, cn, useToggle };
607
+ export { Button, Checkbox, Input, Label, ScrollArea, Separator, Spinner, Switch, ThemeProvider, applyTheme, cn, useThemeStore, useToggle };
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.12.0",
4
+ "version": "1.13.0",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "main": "dist/index.cjs",