@porscheinformatik/clr-addons 21.5.0 → 21.5.2

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.
@@ -863,6 +863,8 @@ declare class ClrTreetableRow<T extends object> {
863
863
  }
864
864
 
865
865
  declare class ClrTreetableCell {
866
+ private readonly _userDataTestId;
867
+ protected get dataTestId(): string;
866
868
  static ɵfac: i0.ɵɵFactoryDeclaration<ClrTreetableCell, never>;
867
869
  static ɵcmp: i0.ɵɵComponentDeclaration<ClrTreetableCell, "clr-tt-cell", never, {}, {}, never, ["*"], false, never>;
868
870
  }
@@ -875,6 +877,8 @@ declare enum ClrTreetableSortOrder {
875
877
 
876
878
  declare class ClrTreetableColumn<T extends object> implements OnInit, OnDestroy {
877
879
  readonly columnId: string;
880
+ private readonly _userDataTestId;
881
+ protected get dataTestId(): string;
878
882
  private readonly _columnTitleRef;
879
883
  private readonly _columnState;
880
884
  private readonly _sort;
@@ -934,12 +938,11 @@ declare class ClrTreetableFooter {
934
938
  private readonly _columnService;
935
939
  private readonly _dataService;
936
940
  protected readonly commonStrings: Readonly<i3.ClrCommonStrings>;
937
- clrResetLabel: i0.InputSignal<string>;
938
941
  protected readonly hasHideableColumns: i0.Signal<boolean>;
939
942
  protected readonly selectedRows: i0.Signal<object[]>;
940
943
  protected readonly hasSelectedRows: i0.Signal<boolean>;
941
944
  static ɵfac: i0.ɵɵFactoryDeclaration<ClrTreetableFooter, never>;
942
- static ɵcmp: i0.ɵɵComponentDeclaration<ClrTreetableFooter, "clr-tt-footer", never, { "clrResetLabel": { "alias": "clrResetLabel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
945
+ static ɵcmp: i0.ɵɵComponentDeclaration<ClrTreetableFooter, "clr-tt-footer", never, {}, {}, never, ["*"], false, never>;
943
946
  }
944
947
 
945
948
  declare class ClrTreetablePlaceholder {
@@ -1144,7 +1147,6 @@ interface ColumnState {
1144
1147
  width?: number;
1145
1148
  strictWidth?: number;
1146
1149
  hideable?: boolean;
1147
- initialHidden?: boolean;
1148
1150
  hidden?: boolean;
1149
1151
  titleTemplateRef?: TemplateRef<any>;
1150
1152
  }
@@ -1157,17 +1159,14 @@ declare class ClrTreetableColumnManagerMenuComponent {
1157
1159
  protected readonly popoverPosition = ClrPopoverPosition.TOP_LEFT;
1158
1160
  protected readonly popoverType = ClrPopoverType.DROPDOWN;
1159
1161
  protected readonly commonStrings: Readonly<i3.ClrCommonStrings>;
1160
- resetLabel: i0.InputSignal<string>;
1161
1162
  protected readonly open: i0.Signal<boolean>;
1162
1163
  protected readonly hideableColumns: i0.Signal<ColumnState[]>;
1163
1164
  protected readonly hasOnlyOneVisibleColumn: i0.Signal<boolean>;
1164
1165
  protected readonly areAllColumnsVisible: i0.Signal<boolean>;
1165
- protected readonly areAllColumnsReset: i0.Signal<boolean>;
1166
1166
  protected toggleColumnState(id: string): void;
1167
1167
  protected selectAll(): void;
1168
- protected resetAllToInitial(): void;
1169
1168
  static ɵfac: i0.ɵɵFactoryDeclaration<ClrTreetableColumnManagerMenuComponent, never>;
1170
- static ɵcmp: i0.ɵɵComponentDeclaration<ClrTreetableColumnManagerMenuComponent, "clr-tt-column-manager-menu", never, { "resetLabel": { "alias": "resetLabel"; "required": true; "isSignal": true; }; }, {}, never, never, false, [{ directive: typeof i3.ClrPopoverHostDirective; inputs: {}; outputs: {}; }]>;
1169
+ static ɵcmp: i0.ɵɵComponentDeclaration<ClrTreetableColumnManagerMenuComponent, "clr-tt-column-manager-menu", never, {}, {}, never, never, false, [{ directive: typeof i3.ClrPopoverHostDirective; inputs: {}; outputs: {}; }]>;
1171
1170
  }
1172
1171
 
1173
1172
  declare class ClrTreetableColumnSeparator implements AfterViewInit, OnDestroy {