@porscheinformatik/clr-addons 21.5.2 → 21.5.3

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": "@porscheinformatik/clr-addons",
3
- "version": "21.5.2",
3
+ "version": "21.5.3",
4
4
  "description": "Addon components for Clarity Angular",
5
5
  "homepage": "https://porscheinformatik.github.io/clarity-addons/",
6
6
  "keywords": [
@@ -862,9 +862,10 @@ declare class ClrTreetableRow<T extends object> {
862
862
  static ɵcmp: i0.ɵɵComponentDeclaration<ClrTreetableRow<any>, "clr-tt-row", never, { "clrExpanded": { "alias": "clrExpanded"; "required": false; "isSignal": true; }; "clrExpandable": { "alias": "clrExpandable"; "required": false; "isSignal": true; }; "clrClickable": { "alias": "clrClickable"; "required": false; "isSignal": true; }; "clrTtItem": { "alias": "clrTtItem"; "required": false; "isSignal": true; }; }, { "clrExpanded": "clrExpandedChange"; }, ["_actionOverflow"], ["clr-tt-action-overflow", "clr-tt-cell", "clr-tt-row"], false, never>;
863
863
  }
864
864
 
865
- declare class ClrTreetableCell {
866
- private readonly _userDataTestId;
867
- protected get dataTestId(): string;
865
+ declare class ClrTreetableCell implements AfterViewInit {
866
+ private readonly _elementRef;
867
+ private readonly _renderer;
868
+ ngAfterViewInit(): void;
868
869
  static ɵfac: i0.ɵɵFactoryDeclaration<ClrTreetableCell, never>;
869
870
  static ɵcmp: i0.ɵɵComponentDeclaration<ClrTreetableCell, "clr-tt-cell", never, {}, {}, never, ["*"], false, never>;
870
871
  }
@@ -875,10 +876,10 @@ declare enum ClrTreetableSortOrder {
875
876
  DESC = -1
876
877
  }
877
878
 
878
- declare class ClrTreetableColumn<T extends object> implements OnInit, OnDestroy {
879
+ declare class ClrTreetableColumn<T extends object> implements OnInit, OnDestroy, AfterViewInit {
879
880
  readonly columnId: string;
880
- private readonly _userDataTestId;
881
- protected get dataTestId(): string;
881
+ private readonly _elementRef;
882
+ private readonly _renderer;
882
883
  private readonly _columnTitleRef;
883
884
  private readonly _columnState;
884
885
  private readonly _sort;
@@ -892,6 +893,7 @@ declare class ClrTreetableColumn<T extends object> implements OnInit, OnDestroy
892
893
  protected readonly sortDirection: i0.Signal<"up" | "down">;
893
894
  protected readonly ariaSort: i0.Signal<"none" | "ascending" | "descending">;
894
895
  ngOnInit(): void;
896
+ ngAfterViewInit(): void;
895
897
  ngOnDestroy(): void;
896
898
  constructor();
897
899
  protected sort(reverse?: boolean): void;