@carbon/layout 10.18.0-rc.0 → 10.18.0

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
@@ -41,12 +41,6 @@ checkout the [`@carbon/grid`](../grid) package.
41
41
  you're looking for support in a different language, feel free to file an issue
42
42
  proposing the new addition!
43
43
 
44
- ## 📖 API Documentation
45
-
46
- If you're looking for `@carbon/layout` API documentation, check out:
47
-
48
- - [Sass](./docs/sass.md)
49
-
50
44
  ## 🙌 Contributing
51
45
 
52
46
  We're always looking for contributors to help us fix bugs, build new features,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@carbon/layout",
3
3
  "description": "Layout helpers for digital and software products using the Carbon Design System",
4
- "version": "10.18.0-rc.0",
4
+ "version": "10.18.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "module": "es/index.js",
@@ -25,12 +25,13 @@
25
25
  "access": "public"
26
26
  },
27
27
  "scripts": {
28
- "build": "yarn clean && carbon-cli bundle src/index.js --name CarbonLayout && node tasks/build.js && carbon-cli sassdoc \"scss/**/*.scss\"",
28
+ "build": "yarn clean && carbon-cli bundle src/index.js --name CarbonLayout && node tasks/build.js",
29
29
  "clean": "rimraf es lib umd scss/generated scss/modules/generated"
30
30
  },
31
31
  "devDependencies": {
32
+ "@carbon/cli": "^10.19.0",
32
33
  "@carbon/cli-reporter": "^10.4.0",
33
- "@carbon/scss-generator": "^10.12.0",
34
+ "@carbon/scss-generator": "^10.13.0",
34
35
  "@carbon/test-utils": "^10.14.0",
35
36
  "core-js": "^3.6.5",
36
37
  "rimraf": "^3.0.0"
@@ -41,5 +42,5 @@
41
42
  "sassDir": "scss",
42
43
  "needs": "^1.3.0"
43
44
  },
44
- "gitHead": "f20d953bfdd69fd024f2b202fd7e62f3139d431c"
45
+ "gitHead": "79db5535fee7f58e0fe21bac154b638cd17f659e"
45
46
  }
@@ -26,12 +26,12 @@ $fluid-spacing-03: 5vw !default;
26
26
  /// @group @carbon/layout
27
27
  $fluid-spacing-04: 10vw !default;
28
28
 
29
- /// @type List
29
+ /// @type Map
30
30
  /// @access public
31
31
  /// @group @carbon/layout
32
32
  $fluid-spacing: (
33
- $fluid-spacing-01,
34
- $fluid-spacing-02,
35
- $fluid-spacing-03,
36
- $fluid-spacing-04
33
+ fluid-spacing-01: $fluid-spacing-01,
34
+ fluid-spacing-02: $fluid-spacing-02,
35
+ fluid-spacing-03: $fluid-spacing-03,
36
+ fluid-spacing-04: $fluid-spacing-04,
37
37
  );
@@ -66,20 +66,20 @@ $spacing-11: 5rem !default;
66
66
  /// @group @carbon/layout
67
67
  $spacing-12: 6rem !default;
68
68
 
69
- /// @type List
69
+ /// @type Map
70
70
  /// @access public
71
71
  /// @group @carbon/layout
72
72
  $spacing: (
73
- $spacing-01,
74
- $spacing-02,
75
- $spacing-03,
76
- $spacing-04,
77
- $spacing-05,
78
- $spacing-06,
79
- $spacing-07,
80
- $spacing-08,
81
- $spacing-09,
82
- $spacing-10,
83
- $spacing-11,
84
- $spacing-12
73
+ spacing-01: $spacing-01,
74
+ spacing-02: $spacing-02,
75
+ spacing-03: $spacing-03,
76
+ spacing-04: $spacing-04,
77
+ spacing-05: $spacing-05,
78
+ spacing-06: $spacing-06,
79
+ spacing-07: $spacing-07,
80
+ spacing-08: $spacing-08,
81
+ spacing-09: $spacing-09,
82
+ spacing-10: $spacing-10,
83
+ spacing-11: $spacing-11,
84
+ spacing-12: $spacing-12,
85
85
  );