@carbon/grid 10.20.0-rc.0 → 10.20.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
@@ -70,12 +70,6 @@ The `.bx--col-sm-1` class names tells us that this `<div>` should only span one
70
70
  column at our `sm` breakpoint. By default, as we scale beyond the breakpoint the
71
71
  layout will still take up a percentage of the overall width.
72
72
 
73
- ## 📖 API Documentation
74
-
75
- If you're looking for `@carbon/grid` API documentation, check out:
76
-
77
- - [Sass](./docs/sass.md)
78
-
79
73
  ## 🙌 Contributing
80
74
 
81
75
  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/grid",
3
3
  "description": "Grid for digital and software products using the Carbon Design System",
4
- "version": "10.20.0-rc.0",
4
+ "version": "10.20.0",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -27,15 +27,15 @@
27
27
  "access": "public"
28
28
  },
29
29
  "scripts": {
30
- "build": "yarn clean && carbon-cli sassdoc \"scss/*.scss\" && carbon-cli inline && carbon-cli check \"scss/*.scss\"",
30
+ "build": "yarn clean && carbon-cli inline && carbon-cli check \"scss/*.scss\"",
31
31
  "clean": "rimraf scss/_inlined scss/vendor"
32
32
  },
33
33
  "dependencies": {
34
- "@carbon/import-once": "^10.5.0",
35
- "@carbon/layout": "^10.18.0-rc.0"
34
+ "@carbon/import-once": "^10.6.0",
35
+ "@carbon/layout": "^10.18.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@carbon/cli": "^10.19.0-rc.0",
38
+ "@carbon/cli": "^10.19.0",
39
39
  "rimraf": "^3.0.0"
40
40
  },
41
41
  "eyeglass": {
@@ -44,5 +44,5 @@
44
44
  "sassDir": "scss",
45
45
  "needs": "^1.3.0"
46
46
  },
47
- "gitHead": "f20d953bfdd69fd024f2b202fd7e62f3139d431c"
47
+ "gitHead": "79db5535fee7f58e0fe21bac154b638cd17f659e"
48
48
  }
@@ -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
  );