@unbxd-ui/unbxd-react-components 0.2.126 → 0.2.127
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.
|
@@ -26,6 +26,7 @@ var InlineModalBody = exports.InlineModalBody = function InlineModalBody(props)
|
|
|
26
26
|
var InlineModal = function InlineModal(props, ref) {
|
|
27
27
|
var children = props.children,
|
|
28
28
|
activatorAction = props.activatorAction,
|
|
29
|
+
activatorClassName = props.activatorClassName,
|
|
29
30
|
className = props.className,
|
|
30
31
|
propIsOpen = props.isModalOpen,
|
|
31
32
|
halign = props.halign,
|
|
@@ -105,7 +106,7 @@ var InlineModal = function InlineModal(props, ref) {
|
|
|
105
106
|
className: inlineModalClassName,
|
|
106
107
|
ref: inlineModalRef
|
|
107
108
|
}, /*#__PURE__*/_react["default"].createElement("div", _extends({}, activatorProps, {
|
|
108
|
-
className: "RCB-inline-modal-btn"
|
|
109
|
+
className: "RCB-inline-modal-btn ".concat(activatorClassName)
|
|
109
110
|
}), children[0]), showModalBody && /*#__PURE__*/_react["default"].createElement("div", {
|
|
110
111
|
className: "RCB-inline-modal-body RCB-align-".concat(halign)
|
|
111
112
|
}, children[1]));
|