@pisodev/ui-common 0.0.10 → 0.0.12

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/dist/styles.scss +5 -3
  2. package/package.json +1 -1
package/dist/styles.scss CHANGED
@@ -1,9 +1,11 @@
1
1
  // Unified SCSS entrypoint for @pisodev/ui-common
2
2
  // Provides SCSS tokens and injects CSS variables/utility classes
3
3
 
4
+ @use 'sass:meta';
5
+
4
6
  @forward './theme/colors';
5
7
  @forward './typography/typography';
6
8
 
7
- // Ensure CSS variables + utility classes are registered once
8
- @import './theme/colors.css';
9
- @import './typography/typography.css';
9
+ // Inline CSS files so consumers don't need extra @import
10
+ @include meta.load-css('./theme/colors.css');
11
+ @include meta.load-css('./typography/typography.css');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pisodev/ui-common",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "description": "웹과 React Native를 위한 공통 타입 및 테마",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",