bianic-ui 2.1.0-beta.3 → 2.1.0-beta.4

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/dist/esm/index.js CHANGED
@@ -3883,6 +3883,7 @@ function ResizeableDiv(_a) {
3883
3883
  var maximumHeight = typeof maxHeight === 'number' && !isNaN(maxHeight)
3884
3884
  ? "".concat(maxHeight, "px")
3885
3885
  : maxHeight;
3886
+ var thumbZIndex = zIndex ? Number(zIndex) + 10 : 50;
3886
3887
  return (React.createElement("div", { className: "relative overflow-visible", ref: container, style: {
3887
3888
  zIndex: zIndex,
3888
3889
  width: containerWidth,
@@ -3896,7 +3897,7 @@ function ResizeableDiv(_a) {
3896
3897
  window.addEventListener('mousemove', handleResize);
3897
3898
  window.addEventListener('mouseup', stopResize);
3898
3899
  }, role: "button" },
3899
- React.createElement("div", { className: "flex h-[9px] w-[25px] items-center justify-center rounded-radius-full border border-bia-grey-light-10 bg-primary-white opacity-20 group-hover:opacity-100 group-active:bg-bia-coolgrey-light-90 group-active:opacity-100 ".concat(thumbClass) },
3900
+ React.createElement("div", { className: "flex h-[9px] w-[25px] items-center justify-center rounded-radius-full border border-bia-grey-light-10 bg-primary-white opacity-20 group-hover:opacity-100 group-active:bg-bia-coolgrey-light-90 group-active:opacity-100 ".concat(thumbClass), style: { zIndex: thumbZIndex } },
3900
3901
  React.createElement(TbDots, { className: "text-bia-grey-light-30" }))),
3901
3902
  React.createElement("div", { className: "h-full w-full peer-active:select-none ".concat(className) }, children)));
3902
3903
  }