@lumx/react 4.2.1-alpha.11 → 4.2.1-alpha.13
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.d.ts +87 -96
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/utils/index.d.ts +1 -1
- package/utils/index.js +4 -4
- package/utils/index.js.map +1 -1
package/index.js
CHANGED
|
@@ -1018,9 +1018,9 @@ const RawClickable$1 = props => {
|
|
|
1018
1018
|
};
|
|
1019
1019
|
}
|
|
1020
1020
|
return /*#__PURE__*/jsx(Component, {
|
|
1021
|
+
"aria-disabled": isAnyDisabled || undefined,
|
|
1021
1022
|
...forwardedProps,
|
|
1022
1023
|
...clickableProps,
|
|
1023
|
-
"aria-disabled": isAnyDisabled || undefined,
|
|
1024
1024
|
onClick: event => {
|
|
1025
1025
|
if (isAnyDisabled) {
|
|
1026
1026
|
event.stopPropagation();
|
|
@@ -9298,7 +9298,7 @@ const Notification = forwardRef((props, ref) => {
|
|
|
9298
9298
|
const hasAction = Boolean(onActionClick) && Boolean(actionLabel);
|
|
9299
9299
|
const handleCallback = evt => {
|
|
9300
9300
|
if (isFunction(onActionClick)) {
|
|
9301
|
-
onActionClick();
|
|
9301
|
+
onActionClick(evt);
|
|
9302
9302
|
}
|
|
9303
9303
|
evt.stopPropagation();
|
|
9304
9304
|
};
|