sag_components 2.0.0-beta33 → 2.0.0-beta35
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/dist/index.esm.js +7 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -5081,7 +5081,12 @@ const LinnerContainer$1 = dt.div`
|
|
|
5081
5081
|
justify-content: space-between;
|
|
5082
5082
|
width: ${props => props.width};
|
|
5083
5083
|
height: ${props => props.height};
|
|
5084
|
-
|
|
5084
|
+
${_ref => {
|
|
5085
|
+
let {
|
|
5086
|
+
backgroundColor
|
|
5087
|
+
} = _ref;
|
|
5088
|
+
return backgroundColor && `background-color: ${backgroundColor};`;
|
|
5089
|
+
}}
|
|
5085
5090
|
padding: 50px 40px 30px;
|
|
5086
5091
|
`;
|
|
5087
5092
|
const DataBoxWrap = dt.div`
|
|
@@ -5148,7 +5153,7 @@ const LinnerDataBox = props => {
|
|
|
5148
5153
|
} = props;
|
|
5149
5154
|
return /*#__PURE__*/React.createElement(LinnerContainer$1, {
|
|
5150
5155
|
className: className,
|
|
5151
|
-
backgroundColor: backgroundColor
|
|
5156
|
+
backgroundColor: backgroundColor,
|
|
5152
5157
|
width: width || "100%",
|
|
5153
5158
|
height: height || "200px"
|
|
5154
5159
|
}, data.map((item, index) => /*#__PURE__*/React.createElement(DataBoxWrap, {
|