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.modern.js
CHANGED
@@ -177,11 +177,11 @@ var FullModal = /*#__PURE__*/function (_React$Component) {
|
|
177
177
|
className: classNames$1(style.modal, this.props.className)
|
178
178
|
}, /*#__PURE__*/React.createElement("div", {
|
179
179
|
className: style.full_modal_container
|
180
|
-
},
|
180
|
+
}, /*#__PURE__*/React.createElement("div", {
|
181
181
|
className: style.full_modal_header
|
182
|
-
}, /*#__PURE__*/React.createElement("h2", {
|
182
|
+
}, this.props.title ? /*#__PURE__*/React.createElement("h2", {
|
183
183
|
className: "mr-auto"
|
184
|
-
}, this.props.title), /*#__PURE__*/React.createElement("div", {
|
184
|
+
}, this.props.title) : null, /*#__PURE__*/React.createElement("div", {
|
185
185
|
className: "d-flex m-auto mr-0"
|
186
186
|
}, /*#__PURE__*/React.createElement("div", {
|
187
187
|
className: style.modal_valid,
|
@@ -199,7 +199,7 @@ var FullModal = /*#__PURE__*/function (_React$Component) {
|
|
199
199
|
onClick: this.props.onCustom
|
200
200
|
}, /*#__PURE__*/React.createElement(FontAwesomeIcon, {
|
201
201
|
icon: this.props.customIcon
|
202
|
-
})) : null))
|
202
|
+
})) : null)), /*#__PURE__*/React.createElement("div", {
|
203
203
|
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 : {})
|
204
204
|
}, this.props.children))));
|
205
205
|
};
|