sag_components 1.0.10 → 1.0.11

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.
@@ -35,15 +35,7 @@ var OneColumnContainer = function OneColumnContainer(_ref) {
35
35
  ref: ref,
36
36
  width: width,
37
37
  height: height
38
- }, children, /*#__PURE__*/_react.default.createElement(_OneColumnContainer.InfoTextContainer, {
39
- clicked: clicked,
40
- width: width,
41
- height: height
42
- }, /*#__PURE__*/_react.default.createElement(_OneColumnContainer.InfoTextLabel, null, infoText)), /*#__PURE__*/_react.default.createElement(_OneColumnContainer.IconContainer, {
43
- onClick: onInfoClick
44
- }, /*#__PURE__*/_react.default.createElement(_InfoIcon.InfoIcon, {
45
- clicked: clicked
46
- })));
38
+ }, children);
47
39
  };
48
40
  exports.OneColumnContainer = OneColumnContainer;
49
41
  OneColumnContainer.defaultProps = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -16,12 +16,12 @@ export const OneColumnContainer = ({ children,className,ref,width,height,infoTex
16
16
  return (
17
17
  <StyledContainer className={className} ref={ref} width={width} height={height}>
18
18
  {children}
19
- <InfoTextContainer clicked={clicked} width={width} height={height}>
19
+ {/* <InfoTextContainer clicked={clicked} width={width} height={height}>
20
20
  <InfoTextLabel>{infoText}</InfoTextLabel>
21
21
  </InfoTextContainer>
22
22
  <IconContainer onClick={onInfoClick}>
23
23
  <InfoIcon clicked={clicked} />
24
- </IconContainer>
24
+ </IconContainer> */}
25
25
  </StyledContainer>
26
26
  );
27
27
  };