@lumx/react 4.2.1-alpha.2 → 4.2.1-alpha.3

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 CHANGED
@@ -533,7 +533,7 @@ type BaseClickableProps = {
533
533
  isDisabled?: boolean;
534
534
  disabled?: boolean;
535
535
  'aria-disabled'?: Booleanish;
536
- onClick?: (event: React.MouseEvent) => void;
536
+ onClick?: (event?: any) => void;
537
537
  ref?: CommonRef;
538
538
  };
539
539
 
package/index.js CHANGED
@@ -12075,7 +12075,7 @@ const InternalSlideshowControls = forwardRef((props, ref) => {
12075
12075
  className: element$9('navigation'),
12076
12076
  color: theme === Theme$1.dark ? 'light' : 'dark',
12077
12077
  emphasis: Emphasis$1.low,
12078
- onClick: () => onPreviousClick?.()
12078
+ onClick: onPreviousClick
12079
12079
  }), /*#__PURE__*/jsx("div", {
12080
12080
  ref: paginationRef,
12081
12081
  className: element$9('pagination'),
@@ -12122,7 +12122,7 @@ const InternalSlideshowControls = forwardRef((props, ref) => {
12122
12122
  className: element$9('navigation'),
12123
12123
  color: theme === Theme$1.dark ? 'light' : 'dark',
12124
12124
  emphasis: Emphasis$1.low,
12125
- onClick: () => onNextClick?.()
12125
+ onClick: onNextClick
12126
12126
  })]
12127
12127
  });
12128
12128
  });