@cqa-lib/cqa-ui 1.1.17 → 1.1.19
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/esm2020/lib/compare-runs/compare-runs.component.mjs +4 -4
- package/esm2020/lib/table/dynamic-table/dynamic-table.component.mjs +21 -6
- package/esm2020/lib/templates/table-template.component.mjs +13 -8
- package/fesm2015/cqa-lib-cqa-ui.mjs +32 -12
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +32 -12
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/table/dynamic-table/dynamic-table.component.d.ts +2 -1
- package/lib/templates/table-template.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -60,6 +60,7 @@ export declare class DynamicTableComponent implements OnDestroy, OnChanges {
|
|
|
60
60
|
computedData: any[];
|
|
61
61
|
computedGridTemplate: string;
|
|
62
62
|
computedColumnWidths: string[];
|
|
63
|
+
private htmlCache;
|
|
63
64
|
constructor(sanitizer: DomSanitizer, cdr: ChangeDetectorRef);
|
|
64
65
|
ngOnChanges(changes: SimpleChanges): void;
|
|
65
66
|
ngOnDestroy(): void;
|
|
@@ -99,7 +100,7 @@ export declare class DynamicTableComponent implements OnDestroy, OnChanges {
|
|
|
99
100
|
*/
|
|
100
101
|
isHtmlString(value: any): boolean;
|
|
101
102
|
/**
|
|
102
|
-
* Sanitizes HTML string for safe rendering
|
|
103
|
+
* Sanitizes HTML string for safe rendering with caching
|
|
103
104
|
*/
|
|
104
105
|
getSanitizedHtml(value: string): SafeHtml;
|
|
105
106
|
getCellValue(row: any, path?: string): any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, OnInit, SimpleChanges, OnDestroy } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { DynamicFilterItem } from '../filters/dynamic-filter/dynamic-filter.component';
|
|
3
3
|
import { DynamicTableColumn } from '../table/dynamic-table/dynamic-table.component';
|
|
4
4
|
import { ColumnVisibilityConfig } from '../column-visibility/column-visibility.component';
|
|
@@ -6,6 +6,7 @@ import { TableAction } from '../table-action-toolbar/table-action-toolbar.compon
|
|
|
6
6
|
import { EmptyStateConfig } from '../empty-state/empty-state-config.interface';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class TableTemplateComponent implements OnInit, OnChanges, OnDestroy {
|
|
9
|
+
private cdr;
|
|
9
10
|
searchPlaceholder: string;
|
|
10
11
|
searchValue: string;
|
|
11
12
|
showClear: boolean;
|
|
@@ -52,6 +53,7 @@ export declare class TableTemplateComponent implements OnInit, OnChanges, OnDest
|
|
|
52
53
|
private _cachedVisibilityColumns;
|
|
53
54
|
filteredRows: any[];
|
|
54
55
|
pagedRows: any[];
|
|
56
|
+
constructor(cdr: ChangeDetectorRef);
|
|
55
57
|
private pendingFilters;
|
|
56
58
|
private appliedFilters;
|
|
57
59
|
private autoRefreshTimer?;
|