@ngrdt/table 0.0.80 → 0.0.82
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/ngrdt-table.mjs +13 -15
- package/fesm2022/ngrdt-table.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -417,6 +417,7 @@ declare class RdtStaticCellRendererComponent<TData extends object> extends RdtBa
|
|
|
417
417
|
}
|
|
418
418
|
|
|
419
419
|
declare class RdtStaticColumnBuilder<T extends object> extends RdtBaseColumnBuilder<T, RdtStaticCellRendererParams<T>> {
|
|
420
|
+
private translateService;
|
|
420
421
|
protected _dataType: RdtTableDisplayType;
|
|
421
422
|
protected _valueFormatter?: (value: T) => string;
|
|
422
423
|
protected _tooltipFormatter?: (value: T) => string;
|
|
@@ -433,7 +434,7 @@ declare class RdtStaticColumnBuilder<T extends object> extends RdtBaseColumnBuil
|
|
|
433
434
|
protected formatDecimal(value: any): string;
|
|
434
435
|
protected formatDate(value: any): string;
|
|
435
436
|
protected formatDateTime(date: any): string;
|
|
436
|
-
protected formatBoolean(value: any):
|
|
437
|
+
protected formatBoolean(value: any): string;
|
|
437
438
|
protected formatEnum(value: any): any;
|
|
438
439
|
protected getValueFormatter(): (row: T) => any;
|
|
439
440
|
private pluck;
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngrdt/table",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.82",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^20.0.0",
|
|
6
6
|
"@angular/core": "^20.0.0",
|
|
7
7
|
"rxjs": "~7.8.0",
|
|
8
|
-
"@ngrdt/utils": "^0.0.
|
|
8
|
+
"@ngrdt/utils": "^0.0.82",
|
|
9
9
|
"@ngrx/signals": "20.0.0",
|
|
10
|
-
"@ngrdt/icon": "^0.0.
|
|
10
|
+
"@ngrdt/icon": "^0.0.82",
|
|
11
11
|
"@angular/cdk": "^20.0.0",
|
|
12
12
|
"@angular/forms": "^20.0.0",
|
|
13
|
-
"@ngrdt/forms": "^0.0.
|
|
14
|
-
"@ngrdt/router": "^0.0.
|
|
13
|
+
"@ngrdt/forms": "^0.0.82",
|
|
14
|
+
"@ngrdt/router": "^0.0.82",
|
|
15
15
|
"@gov-design-system-ce/angular": "1.3.1"
|
|
16
16
|
},
|
|
17
17
|
"sideEffects": false,
|