ui-kit-ck-consultant 0.5.287 → 0.5.288
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.css +1 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
@@ -180,11 +180,11 @@ var FullModal = /*#__PURE__*/function (_React$Component) {
|
|
180
180
|
className: classNames$1(style.modal, this.props.className)
|
181
181
|
}, /*#__PURE__*/React__default.createElement("div", {
|
182
182
|
className: style.full_modal_container
|
183
|
-
},
|
183
|
+
}, /*#__PURE__*/React__default.createElement("div", {
|
184
184
|
className: style.full_modal_header
|
185
|
-
}, /*#__PURE__*/React__default.createElement("h2", {
|
185
|
+
}, this.props.title ? /*#__PURE__*/React__default.createElement("h2", {
|
186
186
|
className: "mr-auto"
|
187
|
-
}, this.props.title), /*#__PURE__*/React__default.createElement("div", {
|
187
|
+
}, this.props.title) : null, /*#__PURE__*/React__default.createElement("div", {
|
188
188
|
className: "d-flex m-auto mr-0"
|
189
189
|
}, /*#__PURE__*/React__default.createElement("div", {
|
190
190
|
className: style.modal_valid,
|
@@ -202,7 +202,7 @@ var FullModal = /*#__PURE__*/function (_React$Component) {
|
|
202
202
|
onClick: this.props.onCustom
|
203
203
|
}, /*#__PURE__*/React__default.createElement(reactFontawesome.FontAwesomeIcon, {
|
204
204
|
icon: this.props.customIcon
|
205
|
-
})) : null))
|
205
|
+
})) : null)), /*#__PURE__*/React__default.createElement("div", {
|
206
206
|
className: classNames$1(this.props.noPadding ? style.full_modal_body_no_padding : style.full_modal_body, this.props.noOverflow ? style.full_modal_body_no_overflow : {})
|
207
207
|
}, this.props.children))));
|
208
208
|
};
|