@if (!isCollapsed) { @if (titleRoute) { } @else {

{{ title }}

} @if (createActions.length) {
@for (action of createActions; track action) { }
}
@for (item of items; track item) { }
@if (level === 0 && item.sectionHeaderBefore) {
{{ item.sectionHeaderBefore }}
}
@if (!item.isAction && isExpandable(item)) { } @if (item.isAction || !isExpandable(item)) { } @if (item.createActions?.length) { @for (a of item.createActions; track a) { } }
@if (isExpanded(item.id) && hasChildren(item)) {
@for (child of item.children; track child) { }
}
@if (bottomPanel) {
@if (bottomPanel.headerAction; as action) { }
@if (panelOpen) {
    @for (item of bottomPanel.items; track item) {
  • }
}
} } @if (!isCollapsed) {
}