voiptime-components 1.22.1 → 1.22.2

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/index.es.js CHANGED
@@ -9025,11 +9025,10 @@ function ob(e) {
9025
9025
  else if (c.width) {
9026
9026
  const Z = Number(c.width);
9027
9027
  h.width = `${Z}px`, h.minWidth = `${Z}px`, h.maxWidth = `${Z}px`;
9028
- } else if (c.minWidth) {
9029
- const Z = Number(c.minWidth);
9030
- h.minWidth = `${Z}px`, h.width = `${Z}px`, h.maxWidth = "none";
9031
- } else
9032
- h.width = "auto", h.minWidth = "80px", h.maxWidth = "none";
9028
+ } else {
9029
+ const Z = c.minWidth ? Number(c.minWidth) : 80;
9030
+ h.width = "auto", h.minWidth = `${Z}px`, h.maxWidth = "none";
9031
+ }
9033
9032
  return c.pinnedLeft ? (h.position = "sticky", h.left = `${u("left", a, e.selectable)}px`, h.zIndex = "10") : c.pinnedRight && (h.position = "sticky", h.right = `${u("right", a, !1)}px`, h.zIndex = "10"), h;
9034
9033
  };
9035
9034
  return {