ui-kit-ck-consultant 0.5.252 → 0.5.254
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 +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -141,6 +141,7 @@ var FullModal = /*#__PURE__*/function (_React$Component) {
|
|
141
141
|
icon: freeSolidSvgIcons.faCheck
|
142
142
|
}) : ''), /*#__PURE__*/React__default.createElement("div", {
|
143
143
|
className: style.modal_close,
|
144
|
+
style: this.props.closeStyle,
|
144
145
|
onClick: this.props.onClose
|
145
146
|
}, this.props.iconClose ? this.props.iconClose : /*#__PURE__*/React__default.createElement(reactFontawesome.FontAwesomeIcon, {
|
146
147
|
icon: freeSolidSvgIcons.faTimes
|
@@ -1078,7 +1079,9 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
1078
1079
|
}) : null, this.props.imgLeft ? /*#__PURE__*/React__default.createElement("div", {
|
1079
1080
|
style: {
|
1080
1081
|
overflow: 'hidden',
|
1081
|
-
width: this.props.customWidthImgLeft || '100%'
|
1082
|
+
width: this.props.customWidthImgLeft || '100%',
|
1083
|
+
flexGrow: 0,
|
1084
|
+
flexShrink: 0
|
1082
1085
|
}
|
1083
1086
|
}, /*#__PURE__*/React__default.createElement("img", {
|
1084
1087
|
style: {
|
@@ -1122,7 +1125,9 @@ var Card = /*#__PURE__*/function (_React$Component) {
|
|
1122
1125
|
}, this.props.children)), this.props.imgRight ? /*#__PURE__*/React__default.createElement("div", {
|
1123
1126
|
style: {
|
1124
1127
|
overflow: 'hidden',
|
1125
|
-
width: this.props.customWidthImgRight || '100%'
|
1128
|
+
width: this.props.customWidthImgRight || '100%',
|
1129
|
+
flexGrow: 0,
|
1130
|
+
flexShrink: 0
|
1126
1131
|
}
|
1127
1132
|
}, /*#__PURE__*/React__default.createElement("img", {
|
1128
1133
|
style: {
|