cat-documents-ng 0.4.3 → 0.4.5

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.
@@ -7,6 +7,7 @@ export declare class TablePrimaryComponent implements OnChanges {
7
7
  showHeader: boolean;
8
8
  tableStyle: any;
9
9
  rowClick: EventEmitter<any>;
10
+ rowCtrlClick: EventEmitter<any>;
10
11
  processedData: ProcessedRowData[];
11
12
  readonly SHARED: typeof SHARED;
12
13
  get visibleColumns(): import("cat-documents-ng").TableColumn[];
@@ -15,7 +16,7 @@ export declare class TablePrimaryComponent implements OnChanges {
15
16
  getStatusClass(status: string): string;
16
17
  getStatusIcon(status: string): string;
17
18
  getFileExtension(fileName: string): string;
18
- onRowClick(rowData: any): void;
19
+ onRowClick(event: MouseEvent, rowData: any): void;
19
20
  getVisibleColumnCount(): number;
20
21
  /**
21
22
  * Formats document display name based on whether aliasName exists:
@@ -26,5 +27,5 @@ export declare class TablePrimaryComponent implements OnChanges {
26
27
  */
27
28
  formatDocumentDisplayName(rowData: any): string;
28
29
  static ɵfac: i0.ɵɵFactoryDeclaration<TablePrimaryComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<TablePrimaryComponent, "lib-table-primary", never, { "tableData": { "alias": "tableData"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "tableStyle": { "alias": "tableStyle"; "required": false; }; }, { "rowClick": "rowClick"; }, never, never, false, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<TablePrimaryComponent, "lib-table-primary", never, { "tableData": { "alias": "tableData"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "tableStyle": { "alias": "tableStyle"; "required": false; }; }, { "rowClick": "rowClick"; "rowCtrlClick": "rowCtrlClick"; }, never, never, false, never>;
30
31
  }