@stamcat/craftsman 0.0.27-alpha.1 → 0.0.27-alpha.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 CHANGED
@@ -17,7 +17,7 @@ Use this pattern in React Server Component architectures (for example Next.js Ap
17
17
 
18
18
  ```tsx
19
19
  import { ThemeProvider } from "@stamcat/craftsman/styles";
20
- import "@stamcat/craftsman/styles/globalStyles.module.scss";
20
+ import "@stamcat/craftsman/styles/globalStyles";
21
21
 
22
22
  const appTheme = {
23
23
  root: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stamcat/craftsman",
3
- "version": "0.0.27-alpha.1",
3
+ "version": "0.0.27-alpha.2",
4
4
  "type": "module",
5
5
  "description": "A powerful, lightweight framework for design systems",
6
6
  "repository": {
@@ -54,11 +54,11 @@
54
54
  "types": "./src/utilities/index.d.ts",
55
55
  "default": "./Utilities.esm.js"
56
56
  },
57
- "./styles/globalStyles.module.scss": {
58
- "default": "./src/styles/global/globalStyles.module.scss"
57
+ "./styles/globalStyles": {
58
+ "default": "./src/styles/global/globalStyles.scss"
59
59
  },
60
- "./styles/global/globalStyles.module.scss": {
61
- "default": "./src/styles/global/globalStyles.module.scss"
60
+ "./styles/globalStyles.scss": {
61
+ "default": "./src/styles/global/globalStyles.scss"
62
62
  },
63
63
  "./Button": {
64
64
  "types": "./src/components/Button.d.ts",
@@ -0,0 +1,3 @@
1
+ import { default as styles } from './globalStyles.module.scss';
2
+ export declare const globalStyles: CSSModuleClasses;
3
+ export default styles;
@@ -1,7 +1,7 @@
1
1
  @use "./components/typography";
2
2
  @use "./components/code";
3
3
  @use "./components/mixins" as mixins;
4
- @use "./components/checkbox";
4
+ @use "./components/checkbox";
5
5
  @use "./components/radioButton";
6
6
  @use "./components/button";
7
7
  @use "./components/input";
@@ -0,0 +1 @@
1
+ @use "./globalStyles.module.scss";