sag_components 1.0.577 → 1.0.579
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.
|
@@ -28,6 +28,7 @@ const OneColumnContainer = props => {
|
|
|
28
28
|
droppedStyle,
|
|
29
29
|
width,
|
|
30
30
|
height,
|
|
31
|
+
overflow,
|
|
31
32
|
infoTitle,
|
|
32
33
|
infoText,
|
|
33
34
|
disableInfo
|
|
@@ -43,7 +44,8 @@ const OneColumnContainer = props => {
|
|
|
43
44
|
return /*#__PURE__*/_react.default.createElement(_OneColumnContainer.StyledContainer, {
|
|
44
45
|
className: (0, _classnames.default)(itemClass, overStyle, draggingStyle, children && droppedStyle, divStyle),
|
|
45
46
|
width: width,
|
|
46
|
-
height: height
|
|
47
|
+
height: height,
|
|
48
|
+
overflow: overflow
|
|
47
49
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
48
50
|
id: "mainDiv",
|
|
49
51
|
className: props.className,
|
|
@@ -104,6 +106,7 @@ OneColumnContainer.defaultProps = {
|
|
|
104
106
|
droppedStyle: '',
|
|
105
107
|
width: '300px',
|
|
106
108
|
height: '300px',
|
|
109
|
+
overflow: 'hidden',
|
|
107
110
|
infoTitle: '',
|
|
108
111
|
infoText: '',
|
|
109
112
|
disableInfo: false
|
|
@@ -8,7 +8,7 @@ exports.mainDiv = exports.StyledContainer = exports.LoadingDiv = exports.InfoTit
|
|
|
8
8
|
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/taggedTemplateLiteral"));
|
|
9
9
|
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
10
10
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7;
|
|
11
|
-
const StyledContainer = exports.StyledContainer = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n width: ", ";\n height: ", ";\n box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);\n display: flex;\n position: relative;\n border-radius: 10px;\n align-items: center;\n justify-content: center;\n overflow:
|
|
11
|
+
const StyledContainer = exports.StyledContainer = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n width: ", ";\n height: ", ";\n box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);\n display: flex;\n position: relative;\n border-radius: 10px;\n align-items: center;\n justify-content: center;\n overflow: ", ";\n background-color: white;\n"])), props => props.width, props => props.height, props => props.overflow);
|
|
12
12
|
const InfoTextContainer = exports.InfoTextContainer = _styledComponents.default.div(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n font-family: \"Poppins\", sans-serif;\n width: ", ";\n height: ", ";\n display: flex;\n flex-direction: column;\n justify-content: center;\n background: white;\n margin: 0px 30px 0px 30px;\n"])), props => props.width, props => props.height);
|
|
13
13
|
const InfoTitleLabel = exports.InfoTitleLabel = _styledComponents.default.div(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2.default)(["\n font-weight: 600;\n color: black;\n margin: 0px 0px 10px 0px;\n font-size: 18px;\n line-height: 32px;\n overflow: hidden;\n"])));
|
|
14
14
|
const InfoTextLabel = exports.InfoTextLabel = _styledComponents.default.div(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2.default)(["\n color: black;\n font-size: 14px;\n line-height: 20px;\n font-weight: 400;\n overflow: hidden;\n"])));
|