@mozaic-ds/angular 2.0.52 → 2.0.53
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/package.json
CHANGED
|
@@ -4680,6 +4680,12 @@ declare class TreeStateService<T = unknown> {
|
|
|
4680
4680
|
readonly loadingIds: _angular_core.WritableSignal<Set<string | number>>;
|
|
4681
4681
|
readonly internalNodes: _angular_core.WritableSignal<TreeNode<T>[]>;
|
|
4682
4682
|
readonly loadChildrenFn: _angular_core.WritableSignal<LoadChildrenFn<T> | null>;
|
|
4683
|
+
/**
|
|
4684
|
+
* Parent IDs for which children have been patched in (via lazy-load).
|
|
4685
|
+
* Grows monotonically — consumers diff against their own "processed" set.
|
|
4686
|
+
* Not emitted for statically-populated children present at init.
|
|
4687
|
+
*/
|
|
4688
|
+
readonly loadedParentIds: _angular_core.WritableSignal<ReadonlySet<string | number>>;
|
|
4683
4689
|
readonly flatVisibleNodes: _angular_core.Signal<FlatNode<T>[]>;
|
|
4684
4690
|
private _flatten;
|
|
4685
4691
|
setExpanded(ids: Set<string | number>): void;
|