@codecademy/gamut-styles 17.6.1-alpha.d1acf0.0 → 17.6.1

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@codecademy/gamut-styles",
3
3
  "description": "Styleguide & Component library for codecademy.com",
4
- "version": "17.6.1-alpha.d1acf0.0",
4
+ "version": "17.6.1",
5
5
  "author": "Jake Hiller <jake@codecademy.com>",
6
6
  "dependencies": {
7
7
  "@codecademy/variance": "0.22.1",
@@ -35,5 +35,5 @@
35
35
  "scripts": {
36
36
  "build": "nx build @codecademy/gamut-styles"
37
37
  },
38
- "gitHead": "cf246043f8d0a75fab261c99c41ebc3072c15533"
38
+ "gitHead": "801212973707f01ab897b4a26d04643411e3b0c8"
39
39
  }
package/utils/index.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  // import order is unfortunately important here
2
2
  // variables needs to access functions, and mixins needs to access variables
3
- @use "functions/index";
4
- @use "variables/index" as index2;
5
- @use "mixins/index" as index3;
3
+ @forward "functions/index";
4
+ @forward "variables/index";
5
+ @forward "mixins/index";
@@ -1,4 +1,5 @@
1
1
  // Try to use these simple mixins if possible for your responsive needs
2
+ @use "../variables/index.scss" as *;
2
3
 
3
4
  // Example usage:
4
5
  //
@@ -1,6 +1,6 @@
1
- @use "font-smoothing";
2
- @use "no-select";
3
- @use "responsive";
4
- @use "shadow";
5
- @use "sr-only";
6
- @use "legacy";
1
+ @forward "font-smoothing";
2
+ @forward "no-select";
3
+ @forward "responsive";
4
+ @forward "shadow";
5
+ @forward "sr-only";
6
+ @forward "legacy";
@@ -1,5 +1,5 @@
1
- @use "colors";
2
- @use "base";
3
- @use "grid";
4
- @use "typography";
5
- @use "responsive";
1
+ @forward "colors";
2
+ @forward "base";
3
+ @forward "grid";
4
+ @forward "typography";
5
+ @forward "responsive";
package/utils.scss CHANGED
@@ -1 +1 @@
1
- @use "utils/index";
1
+ @forward "utils/index";