@bitstack/ng-boundary 14.0.1-alpha.4 → 14.0.1-alpha.5

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": "@bitstack/ng-boundary",
3
- "version": "14.0.1-alpha.4",
3
+ "version": "14.0.1-alpha.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.0.0",
6
6
  "@angular/core": "^14.0.0",
package/styles.scss CHANGED
@@ -5,6 +5,6 @@
5
5
  * @use '@bitstack/ng-boundary/styles' as boundary;
6
6
  */
7
7
 
8
- @forward 'src/styles/variables';
9
- @forward 'src/styles/awd' show px2vw;
10
- @forward 'src/styles/mixin';
8
+ @forward './src/styles/_variables';
9
+ @forward './src/styles/awd' show px2vw;
10
+ @forward './src/styles/_mixin';
@@ -1,20 +0,0 @@
1
- /**
2
- * Public SCSS API for @bitstack/ng-boundary
3
- *
4
- * This file exports all SCSS utilities, functions, and mixins
5
- * for use in consumer projects.
6
- *
7
- * Usage:
8
- * @use '@bitstack/ng-boundary/styles' as boundary;
9
- *
10
- * .my-component {
11
- * width: boundary.px2vw(100);
12
- * height: boundary.px2vw(200);
13
- * }
14
- */
15
-
16
- // Export all utilities
17
- // Note: _awd already includes _responsive internally, so we don't need to forward _responsive separately
18
- @forward 'variables';
19
- @forward 'awd';
20
- @forward 'mixin';