@energycap/components 0.39.32-ECAP-26866-table-multi-sort-improvements.20241022-1702 → 0.39.32-ECAP-26487-data-rollup-icon-garnish.20241023-0808
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/esm2020/lib/display/hierarchy/hierarchy-base.mjs +1 -1
- package/esm2020/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.mjs +3 -3
- package/esm2020/lib/display/table/table.component.mjs +28 -32
- package/fesm2015/energycap-components.mjs +28 -32
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +28 -32
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/lib/display/hierarchy/hierarchy-base.d.ts +2 -0
- package/lib/display/table/table.component.d.ts +2 -4
- package/package.json +1 -1
@@ -11,6 +11,8 @@ export declare class HierarchyItem implements LinkItem {
|
|
11
11
|
label: string;
|
12
12
|
/** Text to be displayed in the item's tooltip. When not provided, the label will be displayed. */
|
13
13
|
tooltip?: string;
|
14
|
+
/** Text to be displayed in the item's icon tooltip. */
|
15
|
+
iconTooltip?: string;
|
14
16
|
/** Indicates how many levels deep the item is in the parent structure */
|
15
17
|
level: number;
|
16
18
|
url?: string;
|
@@ -68,11 +68,11 @@ export declare class TableComponent implements AfterViewInit, OnDestroy, OnChang
|
|
68
68
|
/**
|
69
69
|
* The current sort field and direction ('desc' or 'asc')
|
70
70
|
*/
|
71
|
-
sort?: TableSort
|
71
|
+
sort?: TableSort;
|
72
72
|
/**
|
73
73
|
* Emits the new sort value whenever a sortable column is clicked
|
74
74
|
*/
|
75
|
-
sortChange: EventEmitter<TableSort
|
75
|
+
sortChange: EventEmitter<TableSort>;
|
76
76
|
/**
|
77
77
|
* True if a TableMasterRowComponent exists in the table content
|
78
78
|
*/
|
@@ -113,8 +113,6 @@ export declare class TableComponent implements AfterViewInit, OnDestroy, OnChang
|
|
113
113
|
* @param field
|
114
114
|
*/
|
115
115
|
private onSort;
|
116
|
-
private clearSort;
|
117
|
-
private applySort;
|
118
116
|
private initSelectable;
|
119
117
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
120
118
|
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "ec-table", never, { "id": "id"; "scrollable": "scrollable"; "resizable": "resizable"; "condensed": "condensed"; "sortable": "sortable"; "selectionContext": "selectionContext"; "selectionToolbarTemplate": "selectionToolbarTemplate"; "selectable": "selectable"; "isForm": "isForm"; "sort": "sort"; "searchableTableResizableColumns": "resizableColumns"; }, { "sortChange": "sortChange"; }, ["masterRows", "_resizableColumns"], ["*"], false, never>;
|