@ngrdt/table 0.0.78 → 0.0.81

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/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): "" | "Ano" | "Ne";
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.78",
3
+ "version": "0.0.81",
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.78",
8
+ "@ngrdt/utils": "^0.0.81",
9
9
  "@ngrx/signals": "20.0.0",
10
- "@ngrdt/icon": "^0.0.78",
10
+ "@ngrdt/icon": "^0.0.81",
11
11
  "@angular/cdk": "^20.0.0",
12
12
  "@angular/forms": "^20.0.0",
13
- "@ngrdt/forms": "^0.0.78",
14
- "@ngrdt/router": "^0.0.78",
13
+ "@ngrdt/forms": "^0.0.81",
14
+ "@ngrdt/router": "^0.0.81",
15
15
  "@gov-design-system-ce/angular": "1.3.1"
16
16
  },
17
17
  "sideEffects": false,