@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.
@@ -9507,8 +9507,7 @@ var TableFrozenPositionDirective = /** @class */ (function () {
9507
9507
  var originalsTds = _this.el.nativeElement.querySelectorAll(".ui-table-unfrozen-view .sds-expanded-row > td");
9508
9508
  tdsToAdjust.forEach(function (td, index) {
9509
9509
  var originalTd = originalsTds[index];
9510
- var height = originalTd.getBoundingClientRect().height;
9511
- td.innerHTML = "<div style=\"height: " + height + "px\"></div>";
9510
+ td.innerHTML = null;
9512
9511
  td.style.padding = "0px";
9513
9512
  _this.rowExpandedObserver.observe(originalTd);
9514
9513
  });
@@ -9548,7 +9547,7 @@ var TableFrozenPositionDirective = /** @class */ (function () {
9548
9547
  var frozenHeight = frozenTd.getBoundingClientRect().height;
9549
9548
  if (Math.abs(unfrozenHeight - frozenHeight) > 1) {
9550
9549
  frozenTd.style.height = unfrozenHeight + "px";
9551
- frozenTd.innerHTML = "<div></div>";
9550
+ frozenTd.innerHTML = null;
9552
9551
  }
9553
9552
  });
9554
9553
  };