@apia/components 3.0.16 → 3.0.17

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.js CHANGED
@@ -5123,7 +5123,9 @@ const AutoEllipsis = ({
5123
5123
  return;
5124
5124
  unsuscribe.current();
5125
5125
  function showBox() {
5126
+ document.querySelectorAll(".autoellipsis_clone").forEach((c) => c.remove());
5126
5127
  clone.current = el.cloneNode(true);
5128
+ clone.current.classList.add("autoellipsis_clone");
5127
5129
  const target = findParent?.(el) ?? el;
5128
5130
  const styles = window.getComputedStyle(target);
5129
5131
  for (let i = 0; i < styles.length; i++) {