@energycap/components 0.38.2-ECAP-19116-hierarchy-custom-item-templates.20230926-1806 → 0.38.2-ECAP-19116-hierarchy-custom-item-templates.20230927-0954
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/fesm2015/energycap-components.mjs +2 -2
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +2 -2
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/lib/display/hierarchy/hierarchy-base.d.ts +2 -0
- package/package.json +1 -1
@@ -9,6 +9,8 @@ export declare class HierarchyItem implements LinkItem {
|
|
9
9
|
id: string;
|
10
10
|
/** Label to display for the item */
|
11
11
|
label: string;
|
12
|
+
/** Text to be displayed in the item's tooltip. When not provided, the label will be displayed. */
|
13
|
+
tooltip?: string;
|
12
14
|
/** Indicates how many levels deep the item is in the parent structure */
|
13
15
|
level: number;
|
14
16
|
url?: string;
|
package/package.json
CHANGED