sag_components 2.0.0-beta31 → 2.0.0-beta33
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 +2 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -5157,10 +5157,9 @@ const LinnerDataBox = props => {
|
|
|
5157
5157
|
} = props;
|
|
5158
5158
|
return /*#__PURE__*/React__default["default"].createElement(LinnerContainer$1, {
|
|
5159
5159
|
className: className,
|
|
5160
|
-
backgroundColor: backgroundColor,
|
|
5160
|
+
backgroundColor: backgroundColor || "#FFFFFF",
|
|
5161
5161
|
width: width || "100%",
|
|
5162
|
-
height: height || "200px"
|
|
5163
|
-
customDataFormat: customDataFormat
|
|
5162
|
+
height: height || "200px"
|
|
5164
5163
|
}, data.map((item, index) => /*#__PURE__*/React__default["default"].createElement(DataBoxWrap, {
|
|
5165
5164
|
key: `${item.title}-${index}`,
|
|
5166
5165
|
width: `${100 / data.length}%`
|