@porscheinformatik/clr-addons 15.8.2 → 15.8.4

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": "15.8.2",
3
+ "version": "15.8.4",
4
4
  "description": "Addon components for Clarity Angular",
5
5
  "es2015": "esm2015/clr-addons.js",
6
6
  "homepage": "https://porscheinformatik.github.io/clarity-addons/",
@@ -1,22 +1,21 @@
1
- import { ChangeDetectorRef, EventEmitter } from '@angular/core';
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { ClrTreetableActionOverflow } from './treetable-action-overflow';
3
3
  import * as i0 from "@angular/core";
4
- export declare class ClrTreetableRow {
5
- private changeDetectorRef;
4
+ export declare class ClrTreetableRow implements OnInit {
6
5
  expanded: boolean;
7
6
  clickable: boolean;
8
- set clrExpandable(expandable: boolean);
7
+ expandable: boolean;
9
8
  hasActionOverflow: EventEmitter<boolean>;
10
9
  expandedChange: EventEmitter<boolean>;
11
10
  showActionOverflow: boolean;
12
11
  showEmptyActionOverflow: boolean;
13
- expandable: boolean;
12
+ showClickClass: boolean;
14
13
  set actionOverflow(actionOverflow: ClrTreetableActionOverflow);
15
- constructor(changeDetectorRef: ChangeDetectorRef);
14
+ constructor();
15
+ ngOnInit(): void;
16
16
  private toggleExpand;
17
17
  onRowClick(event: MouseEvent): void;
18
18
  onCaretClick(): void;
19
- isExpandable(): boolean;
20
19
  static ɵfac: i0.ɵɵFactoryDeclaration<ClrTreetableRow, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<ClrTreetableRow, "clr-tt-row", never, { "expanded": "clrExpanded"; "clickable": "clrClickable"; "clrExpandable": "clrExpandable"; }, { "hasActionOverflow": "hasActionOverflow"; "expandedChange": "clrExpandedChange"; }, ["actionOverflow"], ["clr-tt-action-overflow", "clr-tt-cell", "clr-tt-row"], false, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<ClrTreetableRow, "clr-tt-row", never, { "expanded": "clrExpanded"; "clickable": "clrClickable"; "expandable": "clrExpandable"; }, { "hasActionOverflow": "hasActionOverflow"; "expandedChange": "clrExpandedChange"; }, ["actionOverflow"], ["clr-tt-action-overflow", "clr-tt-cell", "clr-tt-row"], false, never>;
22
21
  }