@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
|
@@ -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
|
-
|
|
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 =
|
|
9550
|
+
frozenTd.innerHTML = null;
|
|
9552
9551
|
}
|
|
9553
9552
|
});
|
|
9554
9553
|
};
|