@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.
- package/bundles/seniorsistemas-angular-components.umd.js +2 -3
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/table/frozen-position/frozen-position.directive.js +3 -4
- package/esm5/components/table/frozen-position/frozen-position.directive.js +3 -4
- package/fesm2015/seniorsistemas-angular-components.js +2 -3
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +2 -3
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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 =
|
|
9695
|
+
frozenTd.innerHTML = null;
|
|
9697
9696
|
}
|
|
9698
9697
|
});
|
|
9699
9698
|
};
|