sag_components 2.0.0-beta33 → 2.0.0-beta34
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.js
CHANGED
|
@@ -5090,7 +5090,12 @@ const LinnerContainer$1 = dt.div`
|
|
|
5090
5090
|
justify-content: space-between;
|
|
5091
5091
|
width: ${props => props.width};
|
|
5092
5092
|
height: ${props => props.height};
|
|
5093
|
-
|
|
5093
|
+
${_ref => {
|
|
5094
|
+
let {
|
|
5095
|
+
backgroundColor
|
|
5096
|
+
} = _ref;
|
|
5097
|
+
return backgroundColor && `background-color: ${backgroundColor};`;
|
|
5098
|
+
}}
|
|
5094
5099
|
padding: 50px 40px 30px;
|
|
5095
5100
|
`;
|
|
5096
5101
|
const DataBoxWrap = dt.div`
|
|
@@ -5157,7 +5162,7 @@ const LinnerDataBox = props => {
|
|
|
5157
5162
|
} = props;
|
|
5158
5163
|
return /*#__PURE__*/React__default["default"].createElement(LinnerContainer$1, {
|
|
5159
5164
|
className: className,
|
|
5160
|
-
backgroundColor: backgroundColor
|
|
5165
|
+
backgroundColor: backgroundColor,
|
|
5161
5166
|
width: width || "100%",
|
|
5162
5167
|
height: height || "200px"
|
|
5163
5168
|
}, data.map((item, index) => /*#__PURE__*/React__default["default"].createElement(DataBoxWrap, {
|