@erpsquad/common 1.6.3 → 1.6.4

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": "@erpsquad/common",
3
- "version": "1.6.3",
3
+ "version": "1.6.4",
4
4
  "description": "Shared UI component library for ERP modules",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
@@ -1,7 +1,7 @@
1
1
  // Complete SCSS bundle for external use
2
2
  // Import this file to get all variables, mixins, utilities, and animations
3
- @forward './sass/variables';
4
- @forward './sass/mixins';
5
- @forward './sass/animations';
6
- @forward './sass/utils';
3
+ @import './sass/variables';
4
+ @import './sass/mixins';
5
+ @import './sass/animations';
6
+ @import './sass/utils';
7
7
 
@@ -1,5 +1,5 @@
1
1
  // Re-export animations for external use
2
2
  // This file can be imported in consuming applications to access animations
3
- @forward './sass/mixins';
4
- @forward './sass/animations';
3
+ @import './sass/mixins';
4
+ @import './sass/animations';
5
5
 
@@ -1,5 +1,5 @@
1
1
  // Re-export mixins for external use
2
2
  // This file can be imported in consuming applications to access SCSS mixins
3
- @forward './sass/variables';
4
- @forward './sass/mixins';
3
+ @import './sass/variables';
4
+ @import './sass/mixins';
5
5
 
@@ -1,5 +1,5 @@
1
1
  // Re-export utility classes for external use
2
2
  // This file can be imported in consuming applications to access utility classes
3
- @forward './sass/variables';
4
- @forward './sass/utils';
3
+ @import './sass/variables';
4
+ @import './sass/utils';
5
5
 
@@ -1,4 +1,4 @@
1
1
  // Re-export variables for external use
2
2
  // This file can be imported in consuming applications to access SCSS variables
3
- @forward './sass/variables';
3
+ @import './sass/variables';
4
4