@carbon/grid 11.13.0 → 11.14.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/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": "11.13.0",
4
+ "version": "11.14.0",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -32,11 +32,11 @@
32
32
  "clean": "rimraf scss/_inlined scss/vendor"
33
33
  },
34
34
  "dependencies": {
35
- "@carbon/layout": "^11.13.0"
35
+ "@carbon/layout": "^11.14.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@carbon/cli": "^11.9.0",
39
- "rimraf": "^4.0.0"
38
+ "@carbon/cli": "^11.10.0",
39
+ "rimraf": "^5.0.0"
40
40
  },
41
41
  "eyeglass": {
42
42
  "exports": false,
@@ -44,5 +44,5 @@
44
44
  "sassDir": "scss",
45
45
  "needs": "^1.3.0"
46
46
  },
47
- "gitHead": "9d9c35494255b0ad0996bad46ffaf093cdd20012"
47
+ "gitHead": "8fb6526d2f73634b13f3bec63b7112839754092d"
48
48
  }
@@ -7,3 +7,4 @@
7
7
 
8
8
  @forward './generated/fluid-spacing';
9
9
  @forward './generated/spacing';
10
+ @forward './generated/layout';
@@ -0,0 +1,55 @@
1
+ // Code generated by @carbon/layout. DO NOT EDIT.
2
+ //
3
+ // Copyright IBM Corp. 2018, 2023
4
+ //
5
+ // This source code is licensed under the Apache-2.0 license found in the
6
+ // LICENSE file in the root directory of this source tree.
7
+ //
8
+
9
+ /// @type Number
10
+ /// @access public
11
+ /// @group @carbon/layout
12
+ $layout-01: 1rem !default;
13
+
14
+ /// @type Number
15
+ /// @access public
16
+ /// @group @carbon/layout
17
+ $layout-02: 1.5rem !default;
18
+
19
+ /// @type Number
20
+ /// @access public
21
+ /// @group @carbon/layout
22
+ $layout-03: 2rem !default;
23
+
24
+ /// @type Number
25
+ /// @access public
26
+ /// @group @carbon/layout
27
+ $layout-04: 3rem !default;
28
+
29
+ /// @type Number
30
+ /// @access public
31
+ /// @group @carbon/layout
32
+ $layout-05: 4rem !default;
33
+
34
+ /// @type Number
35
+ /// @access public
36
+ /// @group @carbon/layout
37
+ $layout-06: 6rem !default;
38
+
39
+ /// @type Number
40
+ /// @access public
41
+ /// @group @carbon/layout
42
+ $layout-07: 10rem !default;
43
+
44
+ /// @type Map
45
+ /// @access public
46
+ /// @group @carbon/layout
47
+ $layout: (
48
+ layout-01: $layout-01,
49
+ layout-02: $layout-02,
50
+ layout-03: $layout-03,
51
+ layout-04: $layout-04,
52
+ layout-05: $layout-05,
53
+ layout-06: $layout-06,
54
+ layout-07: $layout-07,
55
+ );