@lumx/react 3.7.6-alpha.15 → 3.7.6-alpha.16

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
@@ -8137,7 +8137,7 @@ const ImageSlide = /*#__PURE__*/React.memo(props => {
8137
8137
  tabIndex: isScrollable ? 0 : undefined,
8138
8138
  className: `${CLASSNAME$v}__image-slide`
8139
8139
  }, /*#__PURE__*/React.createElement(Thumbnail, {
8140
- imgRef: mergeRefs(imgRef, propImgRef),
8140
+ imgRef: useMergeRefs(imgRef, propImgRef),
8141
8141
  image: image,
8142
8142
  alt: alt,
8143
8143
  className: `${CLASSNAME$v}__thumbnail`,
@@ -8296,6 +8296,7 @@ const ImageSlideshow = _ref => {
8296
8296
  }, slideShowControls, zoomControls)));
8297
8297
  };
8298
8298
 
8299
+ /** Unref a react ref or element */
8299
8300
  function unref(maybeElement) {
8300
8301
  if (maybeElement instanceof HTMLElement) return maybeElement;
8301
8302
  return maybeElement === null || maybeElement === void 0 ? void 0 : maybeElement.current;