ui-kit-ck-consultant 0.5.186 → 0.5.187
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.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +10 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -901,7 +901,11 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
901
901
|
_proto.render = function render() {
|
902
902
|
return /*#__PURE__*/React__default.createElement("div", {
|
903
903
|
className: classNames$1(style$b.card, this.props.className)
|
904
|
-
}, this.props.imgLeft ? /*#__PURE__*/React__default.createElement("div",
|
904
|
+
}, this.props.imgLeft ? /*#__PURE__*/React__default.createElement("div", {
|
905
|
+
style: {
|
906
|
+
overflow: 'hidden'
|
907
|
+
}
|
908
|
+
}, /*#__PURE__*/React__default.createElement("img", {
|
905
909
|
style: {
|
906
910
|
height: '100%'
|
907
911
|
},
|
@@ -938,7 +942,11 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
938
942
|
onClick: this.props.onClick
|
939
943
|
}, this.props.action))) : '', /*#__PURE__*/React__default.createElement("div", {
|
940
944
|
className: classNames$1(style$b.card_body, this.props.classNameChildren)
|
941
|
-
}, this.props.children)), this.props.imgRight ? /*#__PURE__*/React__default.createElement("div",
|
945
|
+
}, this.props.children)), this.props.imgRight ? /*#__PURE__*/React__default.createElement("div", {
|
946
|
+
style: {
|
947
|
+
overflow: 'hidden'
|
948
|
+
}
|
949
|
+
}, /*#__PURE__*/React__default.createElement("img", {
|
942
950
|
style: {
|
943
951
|
height: '100%'
|
944
952
|
},
|