carbon-react 102.4.1 → 102.4.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.
@@ -41,7 +41,6 @@ const DismissibleBox = ({
41
41
  p: "20px 24px 20px 20px",
42
42
  hasBorderLeftHighlight: hasBorderLeftHighlight
43
43
  }, rest, {
44
- minWidth: "600px",
45
44
  display: "flex",
46
45
  justifyContent: "space-between"
47
46
  }), children, /*#__PURE__*/_react.default.createElement("span", null, /*#__PURE__*/_react.default.createElement(_iconButton.default, {
@@ -1,9 +1,8 @@
1
1
  import * as React from "react";
2
- import { SpaceProps } from "styled-system";
2
+ import { BoxProps } from "components/box/box";
3
3
 
4
- type BorderOptions = "top" | "bottom" | "right" | "none";
5
-
6
- export interface DismissibleBoxProps extends SpaceProps {
4
+ export interface DismissibleBoxProps
5
+ extends Omit<BoxProps, "display" | "justifyContent"> {
7
6
  /** Flag to control whether the thicker left border highlight should be rendered */
8
7
  hasBorderLeftHighlight?: boolean;
9
8
  /** The content to render in the component */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carbon-react",
3
- "version": "102.4.1",
3
+ "version": "102.4.2",
4
4
  "description": "A library of reusable React components for easily building user interfaces.",
5
5
  "engineStrict": true,
6
6
  "engines": {