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/cjs/index.js +2 -1
- package/dist/cjs/lib.css +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/lib.css +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -3885,6 +3885,7 @@ function ResizeableDiv(_a) {
|
|
|
3885
3885
|
var maximumHeight = typeof maxHeight === 'number' && !isNaN(maxHeight)
|
|
3886
3886
|
? "".concat(maxHeight, "px")
|
|
3887
3887
|
: maxHeight;
|
|
3888
|
+
var thumbZIndex = zIndex ? Number(zIndex) + 10 : 50;
|
|
3888
3889
|
return (React.createElement("div", { className: "relative overflow-visible", ref: container, style: {
|
|
3889
3890
|
zIndex: zIndex,
|
|
3890
3891
|
width: containerWidth,
|
|
@@ -3898,7 +3899,7 @@ function ResizeableDiv(_a) {
|
|
|
3898
3899
|
window.addEventListener('mousemove', handleResize);
|
|
3899
3900
|
window.addEventListener('mouseup', stopResize);
|
|
3900
3901
|
}, role: "button" },
|
|
3901
|
-
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) },
|
|
3902
|
+
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 } },
|
|
3902
3903
|
React.createElement(TbDots, { className: "text-bia-grey-light-30" }))),
|
|
3903
3904
|
React.createElement("div", { className: "h-full w-full peer-active:select-none ".concat(className) }, children)));
|
|
3904
3905
|
}
|