@stamcat/craftsman 0.0.25 → 0.0.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stamcat/craftsman",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "type": "module",
5
5
  "description": "A powerful, lightweight framework for design systems",
6
6
  "repository": {
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  import { isEmpty as e } from "../utilities/validations.esm.js";
2
3
  import { width as t } from "../styles/utilities/layout.esm.js";
3
4
  import "../../Styles.esm.js";
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  import { Input as e } from "./Input.esm.js";
2
3
  import { jsx as t } from "react/jsx-runtime";
3
4
  //#region src/components/Checkbox.tsx
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  import { isEmpty as e } from "../utilities/validations.esm.js";
2
3
  import t from "./Input.module.esm.js";
3
4
  import n from "clsx";
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  import { Button as e } from "./Button.esm.js";
2
3
  import { Input as t } from "./Input.esm.js";
3
4
  import { jsx as n } from "react/jsx-runtime";
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  import { isEmpty as e } from "../utilities/validations.esm.js";
2
3
  import { loaders as t } from "../styles/global/components/loaders.esm.js";
3
4
  import n from "../styles/global/components/loaders.module.esm.js";
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  import { isEmpty as e } from "../utilities/validations.esm.js";
2
3
  import { color as t } from "../styles/utilities/color.esm.js";
3
4
  import { Button as n } from "./Button.esm.js";
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  import { Input as e } from "./Input.esm.js";
2
3
  import { jsx as t } from "react/jsx-runtime";
3
4
  //#region src/components/RadioButton.tsx
@@ -3,5 +3,5 @@ export * from './utilities/constants';
3
3
  export * from './utilities/layout';
4
4
  export * from './utilities/types';
5
5
  export * from './theme/theme';
6
- export * from './global/globalStyles';
6
+ export { globalStyles } from './global/globalStyles';
7
7
  export { ThemeProvider } from './components/ThemeProvider';