@lumx/react 3.6.3-alpha.1 → 3.6.3-alpha.2
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/index.js
CHANGED
|
@@ -8577,7 +8577,7 @@ const NOTIFICATION_CONFIGURATION = {
|
|
|
8577
8577
|
}
|
|
8578
8578
|
};
|
|
8579
8579
|
|
|
8580
|
-
const _excluded$M = ["actionLabel", "className", "content", "isOpen", "onActionClick", "onClick", "theme", "type", "zIndex", "usePortal"];
|
|
8580
|
+
const _excluded$M = ["actionLabel", "className", "content", "isOpen", "onActionClick", "onClick", "theme", "type", "zIndex", "usePortal", "style"];
|
|
8581
8581
|
|
|
8582
8582
|
/**
|
|
8583
8583
|
* Defines the props of the component.
|
|
@@ -8621,7 +8621,8 @@ const Notification = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
8621
8621
|
theme,
|
|
8622
8622
|
type,
|
|
8623
8623
|
zIndex,
|
|
8624
|
-
usePortal
|
|
8624
|
+
usePortal,
|
|
8625
|
+
style
|
|
8625
8626
|
} = props,
|
|
8626
8627
|
forwardedProps = _objectWithoutProperties(props, _excluded$M);
|
|
8627
8628
|
if (!DOCUMENT) {
|
|
@@ -8658,9 +8659,9 @@ const Notification = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
8658
8659
|
prefix: CLASSNAME$I
|
|
8659
8660
|
})),
|
|
8660
8661
|
onClick: onClick,
|
|
8661
|
-
style: {
|
|
8662
|
+
style: _objectSpread2(_objectSpread2({}, style), {}, {
|
|
8662
8663
|
zIndex
|
|
8663
|
-
}
|
|
8664
|
+
})
|
|
8664
8665
|
}), /*#__PURE__*/React.createElement("div", {
|
|
8665
8666
|
className: `${CLASSNAME$I}__icon`
|
|
8666
8667
|
}, /*#__PURE__*/React.createElement(Icon, {
|