@haloduck/ui 2.0.24 → 2.0.26
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 +48 -34
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -580,9 +580,11 @@ declare class TableComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
580
580
|
onRowClick: EventEmitter<TableRow>;
|
|
581
581
|
onRowDblClick: EventEmitter<TableRow>;
|
|
582
582
|
private loadMoreRow?;
|
|
583
|
-
private
|
|
583
|
+
private dataRows?;
|
|
584
584
|
private scrollContainer?;
|
|
585
585
|
private intersectionObserver?;
|
|
586
|
+
private scrollListenerTarget?;
|
|
587
|
+
private didScrollSinceLastLoad;
|
|
586
588
|
getColumnValue(row: TableRow, column: TableColumn): Observable<string>;
|
|
587
589
|
getColumnValueRaw(row: TableRow, column: TableColumn): any;
|
|
588
590
|
getColumnValueRawWithArrayKey(row: TableRow, column: TableColumn): any;
|
|
@@ -602,7 +604,7 @@ declare class TableComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
602
604
|
private cleanupIntersectionObserver;
|
|
603
605
|
private hasObservedOnce;
|
|
604
606
|
private onIntersection;
|
|
605
|
-
private
|
|
607
|
+
private onScroll;
|
|
606
608
|
constructor();
|
|
607
609
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
608
610
|
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>;
|