carbon-react 109.5.1 → 109.5.2

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.
@@ -1,4 +1,5 @@
1
1
  import StyledIcon from "../icon/icon.style";
2
+ import StyledLoaderSquare from "../loader/loader-square.style";
2
3
 
3
4
  function makeColors(color) {
4
5
  return `
@@ -6,6 +7,9 @@ function makeColors(color) {
6
7
  ${StyledIcon} {
7
8
  color: ${color};
8
9
  }
10
+ ${StyledLoaderSquare} {
11
+ background-color: ${color};
12
+ }
9
13
  `;
10
14
  }
11
15
 
@@ -0,0 +1,2 @@
1
+ export default StyledLoaderSquare;
2
+ declare const StyledLoaderSquare: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export const LOADER_SIZES: string[];
@@ -7,6 +7,8 @@ exports.default = void 0;
7
7
 
8
8
  var _icon = _interopRequireDefault(require("../icon/icon.style"));
9
9
 
10
+ var _loaderSquare = _interopRequireDefault(require("../loader/loader-square.style"));
11
+
10
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
13
 
12
14
  function makeColors(color) {
@@ -15,6 +17,9 @@ function makeColors(color) {
15
17
  ${_icon.default} {
16
18
  color: ${color};
17
19
  }
20
+ ${_loaderSquare.default} {
21
+ background-color: ${color};
22
+ }
18
23
  `;
19
24
  }
20
25
 
@@ -0,0 +1,2 @@
1
+ export default StyledLoaderSquare;
2
+ declare const StyledLoaderSquare: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export const LOADER_SIZES: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carbon-react",
3
- "version": "109.5.1",
3
+ "version": "109.5.2",
4
4
  "description": "A library of reusable React components for easily building user interfaces.",
5
5
  "engineStrict": true,
6
6
  "engines": {