cloud-ide-shared 1.0.76 → 1.0.78
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/index.d.ts
CHANGED
|
@@ -1095,7 +1095,16 @@ declare class CideSharedOrgStructureComponent implements OnInit {
|
|
|
1095
1095
|
loading: _angular_core.WritableSignal<boolean>;
|
|
1096
1096
|
error: _angular_core.WritableSignal<string | null>;
|
|
1097
1097
|
orgStructure: _angular_core.WritableSignal<CoreSystemEntityListResponse[]>;
|
|
1098
|
+
/** Set of node IDs that are expanded (children visible). Default: all expanded. */
|
|
1099
|
+
expandedIds: _angular_core.WritableSignal<Set<string>>;
|
|
1098
1100
|
ngOnInit(): void;
|
|
1101
|
+
/** Collect all node IDs from tree (for expand all / collapse all). */
|
|
1102
|
+
getAllNodeIds(nodes: CoreSystemEntityListResponse[]): Set<string>;
|
|
1103
|
+
isExpanded(nodeId: string | undefined): boolean;
|
|
1104
|
+
toggleExpand(nodeId: string | undefined): void;
|
|
1105
|
+
expandAll(): void;
|
|
1106
|
+
collapseAll(): void;
|
|
1107
|
+
hasChildren(node: CoreSystemEntityListResponse): boolean;
|
|
1099
1108
|
/**
|
|
1100
1109
|
* Load organization structure
|
|
1101
1110
|
*/
|