ps-toolkit-ui 0.2.30 → 0.2.31
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/ps-toolkit-ui.umd.js +2 -2
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/table/row/table.row.component.js +3 -3
- package/fesm2015/ps-toolkit-ui.js +2 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2538,14 +2538,14 @@
|
|
|
2538
2538
|
this.showChildren = new InputClass(this.table.environment, this.table.l, this.table.name + 'SubsetTitle', 'fa-duotone fa-angle-left f-s-22', this.row.Data.CountChild > 0 || (!this.table.childrenAutoLoad && this.children.length > 0) ? exports.InputType.Icon : exports.InputType.Hidden, 'h-25 m-h-5 d-ib va-m f-u');
|
|
2539
2539
|
this.showChildren.onClick = function () {
|
|
2540
2540
|
if ($__namespace(_this.childrenDiv.nativeElement).is(':visible')) {
|
|
2541
|
-
$__namespace(_this.childrenDiv.nativeElement).
|
|
2541
|
+
$__namespace(_this.childrenDiv.nativeElement).slideUp();
|
|
2542
2542
|
_this.showChildren.icon = 'fa-duotone fa-angle-left f-s-22';
|
|
2543
2543
|
}
|
|
2544
2544
|
else if (_this.children.length === 0) {
|
|
2545
2545
|
_this.loadChildren(_this.row.Data.Id);
|
|
2546
2546
|
}
|
|
2547
2547
|
else {
|
|
2548
|
-
$__namespace(_this.childrenDiv.nativeElement).
|
|
2548
|
+
$__namespace(_this.childrenDiv.nativeElement).slideDown();
|
|
2549
2549
|
_this.showChildren.icon = 'fa-duotone fa-angle-down f-s-22';
|
|
2550
2550
|
}
|
|
2551
2551
|
};
|