@haloduck/ui 2.0.22 → 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 +47 -14
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +4 -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,9 @@ 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;
|
|
605
|
+
private checkAndAutoLoadIfNoScroll;
|
|
602
606
|
constructor();
|
|
603
607
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
604
608
|
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "haloduck-table", never, { "tableLayout": { "alias": "tableLayout"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "useLoadMore": { "alias": "useLoadMore"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isPaging": { "alias": "isPaging"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "expandedTemplate": { "alias": "expandedTemplate"; "required": false; }; "customTemplates": { "alias": "customTemplates"; "required": false; }; "lastEvaluatedKey": { "alias": "lastEvaluatedKey"; "required": false; }; }, { "onSortChange": "onSortChange"; "onLoadMore": "onLoadMore"; "onRowClick": "onRowClick"; "onRowDblClick": "onRowDblClick"; }, never, never, true, never>;
|