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.esm.js
CHANGED
|
@@ -5089,9 +5089,9 @@ const LinnerContainer$1 = dt.div`
|
|
|
5089
5089
|
font-family: "Poppins", sans-serif;
|
|
5090
5090
|
display: flex;
|
|
5091
5091
|
justify-content: space-between;
|
|
5092
|
-
width: ${props => props
|
|
5093
|
-
height: ${props => props
|
|
5094
|
-
background-color: ${props => props
|
|
5092
|
+
width: ${props => props.$width || 'auto'};
|
|
5093
|
+
height: ${props => props.$height || 'auto'};
|
|
5094
|
+
background-color: ${props => props.$backgroundColor};
|
|
5095
5095
|
padding: 50px 40px 30px;
|
|
5096
5096
|
`;
|
|
5097
5097
|
const DataBoxWrap = dt.div`
|
|
@@ -5157,9 +5157,9 @@ const LinnerDataBox = props => {
|
|
|
5157
5157
|
} = props;
|
|
5158
5158
|
return /*#__PURE__*/React.createElement(LinnerContainer$1, _extends({
|
|
5159
5159
|
className: className,
|
|
5160
|
-
backgroundColor: backgroundColor || "white",
|
|
5161
|
-
width: width || "100%",
|
|
5162
|
-
height: height || "200px"
|
|
5160
|
+
$backgroundColor: backgroundColor || "white",
|
|
5161
|
+
$width: width || "100%",
|
|
5162
|
+
$height: height || "200px"
|
|
5163
5163
|
}, props), data.map((item, index) => /*#__PURE__*/React.createElement(DataBoxWrap, {
|
|
5164
5164
|
key: `${item.title}-${index}`,
|
|
5165
5165
|
width: `${100 / data.length}%`
|