@seniorsistemas/angular-components 17.18.1 → 17.18.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.
@@ -9652,8 +9652,7 @@
9652
9652
  var originalsTds = _this.el.nativeElement.querySelectorAll(".ui-table-unfrozen-view .sds-expanded-row > td");
9653
9653
  tdsToAdjust.forEach(function (td, index) {
9654
9654
  var originalTd = originalsTds[index];
9655
- var height = originalTd.getBoundingClientRect().height;
9656
- td.innerHTML = "<div style=\"height: " + height + "px\"></div>";
9655
+ td.innerHTML = null;
9657
9656
  td.style.padding = "0px";
9658
9657
  _this.rowExpandedObserver.observe(originalTd);
9659
9658
  });
@@ -9693,7 +9692,7 @@
9693
9692
  var frozenHeight = frozenTd.getBoundingClientRect().height;
9694
9693
  if (Math.abs(unfrozenHeight - frozenHeight) > 1) {
9695
9694
  frozenTd.style.height = unfrozenHeight + "px";
9696
- frozenTd.innerHTML = "<div></div>";
9695
+ frozenTd.innerHTML = null;
9697
9696
  }
9698
9697
  });
9699
9698
  };