sag_components 2.0.0-beta36 → 2.0.0-beta37
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 +6 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5098,9 +5098,9 @@ const LinnerContainer$1 = dt.div`
|
|
|
5098
5098
|
font-family: "Poppins", sans-serif;
|
|
5099
5099
|
display: flex;
|
|
5100
5100
|
justify-content: space-between;
|
|
5101
|
-
width: ${props => props
|
|
5102
|
-
height: ${props => props
|
|
5103
|
-
background-color: ${props => props
|
|
5101
|
+
width: ${props => props.$width || 'auto'};
|
|
5102
|
+
height: ${props => props.$height || 'auto'};
|
|
5103
|
+
background-color: ${props => props.$backgroundColor};
|
|
5104
5104
|
padding: 50px 40px 30px;
|
|
5105
5105
|
`;
|
|
5106
5106
|
const DataBoxWrap = dt.div`
|
|
@@ -5166,9 +5166,9 @@ const LinnerDataBox = props => {
|
|
|
5166
5166
|
} = props;
|
|
5167
5167
|
return /*#__PURE__*/React__default["default"].createElement(LinnerContainer$1, _extends({
|
|
5168
5168
|
className: className,
|
|
5169
|
-
backgroundColor: backgroundColor || "white",
|
|
5170
|
-
width: width || "100%",
|
|
5171
|
-
height: height || "200px"
|
|
5169
|
+
$backgroundColor: backgroundColor || "white",
|
|
5170
|
+
$width: width || "100%",
|
|
5171
|
+
$height: height || "200px"
|
|
5172
5172
|
}, props), data.map((item, index) => /*#__PURE__*/React__default["default"].createElement(DataBoxWrap, {
|
|
5173
5173
|
key: `${item.title}-${index}`,
|
|
5174
5174
|
width: `${100 / data.length}%`
|