ui-kit-ck-consultant 0.5.197 → 0.5.198
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -904,7 +904,7 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
904
904
|
}, this.props.imgLeft ? /*#__PURE__*/React__default.createElement("div", {
|
905
905
|
style: {
|
906
906
|
overflow: 'hidden',
|
907
|
-
width: '100%'
|
907
|
+
width: this.props.customWidthImgLeft || '100%'
|
908
908
|
}
|
909
909
|
}, /*#__PURE__*/React__default.createElement("img", {
|
910
910
|
style: {
|
@@ -946,7 +946,7 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
946
946
|
}, this.props.children)), this.props.imgRight ? /*#__PURE__*/React__default.createElement("div", {
|
947
947
|
style: {
|
948
948
|
overflow: 'hidden',
|
949
|
-
width: '100%'
|
949
|
+
width: this.props.customWidthImgRight || '100%'
|
950
950
|
}
|
951
951
|
}, /*#__PURE__*/React__default.createElement("img", {
|
952
952
|
style: {
|