@energycap/components 0.39.4-ECAP-23219-bills-tree-collapse.20231221-1321 → 0.39.4-ECAP-23219-bills-tree-collapse.20240103-1423
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 +4 -0
- package/package.json +1 -1
@@ -50,6 +50,10 @@ export declare class HierarchyItem implements LinkItem {
|
|
50
50
|
* would be to expand all parent items above a node that is the current selection.
|
51
51
|
*/
|
52
52
|
parentItem?: HierarchyItem;
|
53
|
+
/**
|
54
|
+
* Set to have no level indentation for the item. Useful for top level items in a tree that is not hierarchical
|
55
|
+
*/
|
56
|
+
noIndent?: boolean | undefined;
|
53
57
|
}
|
54
58
|
export declare abstract class HierarchyBase implements OnChanges, OnDestroy {
|
55
59
|
/** First item to start the hierarchy structure */
|