@haloduck/ui 2.0.23 → 2.0.24
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/fesm2022/haloduck-ui.mjs +26 -14
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -580,6 +580,7 @@ declare class TableComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
580
580
|
onRowClick: EventEmitter<TableRow>;
|
|
581
581
|
onRowDblClick: EventEmitter<TableRow>;
|
|
582
582
|
private loadMoreRow?;
|
|
583
|
+
private lastDataRow?;
|
|
583
584
|
private scrollContainer?;
|
|
584
585
|
private intersectionObserver?;
|
|
585
586
|
getColumnValue(row: TableRow, column: TableColumn): Observable<string>;
|
|
@@ -599,6 +600,8 @@ declare class TableComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
599
600
|
ngOnDestroy(): void;
|
|
600
601
|
private setupIntersectionObserver;
|
|
601
602
|
private cleanupIntersectionObserver;
|
|
603
|
+
private hasObservedOnce;
|
|
604
|
+
private onIntersection;
|
|
602
605
|
private checkAndAutoLoadIfNoScroll;
|
|
603
606
|
constructor();
|
|
604
607
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|