@dmlibs/dm-cmps 0.1.31 → 0.1.32
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
|
@@ -9,6 +9,7 @@ import * as _dmlibs_dm_cmps from '@dmlibs/dm-cmps';
|
|
|
9
9
|
import { MatSlideToggleChange } from '@angular/material/slide-toggle';
|
|
10
10
|
import { MatMenuTrigger } from '@angular/material/menu';
|
|
11
11
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
12
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
12
13
|
|
|
13
14
|
interface DmCmpsDataSourceSort {
|
|
14
15
|
id?: string;
|
|
@@ -1314,6 +1315,7 @@ interface DmTableInterface<T extends object> {
|
|
|
1314
1315
|
}
|
|
1315
1316
|
|
|
1316
1317
|
declare class DmTable<T extends object> implements DmTableInterface<T> {
|
|
1318
|
+
private sanitizer;
|
|
1317
1319
|
protected shiftKeyPressed: _angular_core.WritableSignal<boolean>;
|
|
1318
1320
|
protected onShiftKeyDown(event: Event): void;
|
|
1319
1321
|
protected onShiftKeyUp(event: Event): void;
|
|
@@ -1368,7 +1370,7 @@ declare class DmTable<T extends object> implements DmTableInterface<T> {
|
|
|
1368
1370
|
protected searchTerm: _angular_core.WritableSignal<string>;
|
|
1369
1371
|
protected readonly totalRowValues: _angular_core.Signal<Map<string, any>>;
|
|
1370
1372
|
protected readonly totalRowStyles: _angular_core.Signal<Map<string, Record<string, any>>>;
|
|
1371
|
-
constructor();
|
|
1373
|
+
constructor(sanitizer: DomSanitizer);
|
|
1372
1374
|
private runEffects;
|
|
1373
1375
|
private initColumnState;
|
|
1374
1376
|
private normalizeColumns;
|