ui-kit-ck-consultant 0.5.283 → 0.5.284
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 +6 -49
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -173,6 +173,12 @@ var FullModal = /*#__PURE__*/function (_React$Component) {
|
|
173
173
|
className: classNames$1(style.modal, this.props.className)
|
174
174
|
}, /*#__PURE__*/React.createElement("div", {
|
175
175
|
className: style.full_modal_container
|
176
|
+
}, this.props.title ? /*#__PURE__*/React.createElement("div", {
|
177
|
+
className: style.full_modal_header
|
178
|
+
}, /*#__PURE__*/React.createElement("h2", {
|
179
|
+
className: "mr-auto"
|
180
|
+
}, this.props.title), /*#__PURE__*/React.createElement("div", {
|
181
|
+
className: "d-flex m-auto mr-0"
|
176
182
|
}, /*#__PURE__*/React.createElement("div", {
|
177
183
|
className: style.modal_valid,
|
178
184
|
onClick: this.props.onValid
|
@@ -189,9 +195,7 @@ var FullModal = /*#__PURE__*/function (_React$Component) {
|
|
189
195
|
onClick: this.props.onCustom
|
190
196
|
}, /*#__PURE__*/React.createElement(FontAwesomeIcon, {
|
191
197
|
icon: this.props.customIcon
|
192
|
-
})) : null
|
193
|
-
className: style.full_modal_header
|
194
|
-
}, /*#__PURE__*/React.createElement("h2", null, this.props.title)) : null, /*#__PURE__*/React.createElement("div", {
|
198
|
+
})) : null)) : null, /*#__PURE__*/React.createElement("div", {
|
195
199
|
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 : {})
|
196
200
|
}, this.props.children))));
|
197
201
|
};
|