ngx-deebodata 0.2.4 → 0.2.5
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-deebodata",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "Angular data grid and charts solution that solves big data analysis with virtual scroll, row grouping, column resizing, re-ordering, column hiding, cell editing, tab accessibility, sorting with priority, and advanced filtering.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.2.0",
|
package/types/ngx-deebodata.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { EventEmitter, ElementRef, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ChangeDetectorRef, EventEmitter, ElementRef, SimpleChanges } from '@angular/core';
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Subject, Subscription } from 'rxjs';
|
|
5
5
|
import { HttpClient } from '@angular/common/http';
|
|
@@ -274,6 +274,7 @@ declare class NgxDeebodata {
|
|
|
274
274
|
dataTableService: DataTableService;
|
|
275
275
|
private tblDragService;
|
|
276
276
|
common: CommonService;
|
|
277
|
+
private _cd;
|
|
277
278
|
onWindowClick(e: MouseEvent): void;
|
|
278
279
|
onWindowMouseUp(e: MouseEvent): void;
|
|
279
280
|
onWindowMouseMove(e: MouseEvent): void;
|
|
@@ -282,12 +283,12 @@ declare class NgxDeebodata {
|
|
|
282
283
|
onWindowScroll(e: Event): void;
|
|
283
284
|
onWindowShiftKeydown(e: Event): void;
|
|
284
285
|
onWindowShiftKeyup(e: Event): void;
|
|
285
|
-
constructor(dataTableService: DataTableService, tblDragService: TableDragService, common: CommonService);
|
|
286
|
+
constructor(dataTableService: DataTableService, tblDragService: TableDragService, common: CommonService, _cd: ChangeDetectorRef);
|
|
286
287
|
rows: DataRow[];
|
|
287
288
|
aboveHgt: _angular_core.WritableSignal<number>;
|
|
288
289
|
belowHgt: _angular_core.WritableSignal<number>;
|
|
289
290
|
dtChecks: number[];
|
|
290
|
-
rowNos: RowNumber[]
|
|
291
|
+
rowNos: _angular_core.WritableSignal<RowNumber[]>;
|
|
291
292
|
verticalRest: number;
|
|
292
293
|
horizRest: _angular_core.WritableSignal<number>;
|
|
293
294
|
isScrolling: boolean;
|
|
@@ -371,7 +372,7 @@ declare class NgxDeebodata {
|
|
|
371
372
|
renameColSpecChars(data: any[]): any[];
|
|
372
373
|
scoopOutObjsInObjs(data: any[]): any[];
|
|
373
374
|
convertNeededCols(data: any): any;
|
|
374
|
-
setRowSelChecksPlacement(): void;
|
|
375
|
+
setRowSelChecksPlacement(timeoutRowNs?: boolean): void;
|
|
375
376
|
setRowNumbers(): void;
|
|
376
377
|
initCheckTop(): number;
|
|
377
378
|
toggleSelectedRows(forceUnsel?: any): void;
|