@mozaic-ds/angular 2.0.31 → 2.0.33
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
|
@@ -3475,7 +3475,8 @@ declare class MozComboboxComponent<T = string> implements ControlValueAccessor {
|
|
|
3475
3475
|
private readonly searchInputEl;
|
|
3476
3476
|
private readonly viewportEl;
|
|
3477
3477
|
/** Unique instance id */
|
|
3478
|
-
readonly
|
|
3478
|
+
readonly uniqId: number;
|
|
3479
|
+
readonly comboboxId: string;
|
|
3479
3480
|
readonly listboxId: string;
|
|
3480
3481
|
/** Whether the dropdown panel is open */
|
|
3481
3482
|
readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
@@ -3626,14 +3627,18 @@ declare class TreeStateService<T = unknown> {
|
|
|
3626
3627
|
readonly expandedIds: _angular_core.WritableSignal<Set<string | number>>;
|
|
3627
3628
|
readonly loadingIds: _angular_core.WritableSignal<Set<string | number>>;
|
|
3628
3629
|
readonly internalNodes: _angular_core.WritableSignal<TreeNode<T>[]>;
|
|
3630
|
+
readonly loadChildrenFn: _angular_core.WritableSignal<LoadChildrenFn<T> | null>;
|
|
3629
3631
|
readonly flatVisibleNodes: _angular_core.Signal<FlatNode<T>[]>;
|
|
3630
3632
|
private _flatten;
|
|
3631
3633
|
setExpanded(ids: Set<string | number>): void;
|
|
3632
3634
|
toggleExpanded(id: string | number): void;
|
|
3635
|
+
expandAndLoad(node: TreeNode<T>): Observable<void>;
|
|
3633
3636
|
addLoading(id: string | number): void;
|
|
3634
3637
|
removeLoading(id: string | number): void;
|
|
3635
3638
|
patchChildren(nodeId: string | number, children: TreeNode<T>[]): void;
|
|
3636
3639
|
private _patchNode;
|
|
3640
|
+
findNode(nodeId: string | number): TreeNode<T> | null;
|
|
3641
|
+
private _findNodeRecursive;
|
|
3637
3642
|
findParentId(nodeId: string | number): string | number | null;
|
|
3638
3643
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TreeStateService<any>, never>;
|
|
3639
3644
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TreeStateService<any>>;
|
|
@@ -3705,6 +3710,8 @@ declare class MozTreeComponent<T = unknown> {
|
|
|
3705
3710
|
onTreeFocus(): void;
|
|
3706
3711
|
onExpandChange(): void;
|
|
3707
3712
|
onSelectionChange(ids: Set<string | number>): void;
|
|
3713
|
+
expandPath(path: Array<string | number>): Promise<void>;
|
|
3714
|
+
scrollToNode(nodeId: string | number): void;
|
|
3708
3715
|
expandAll(): void;
|
|
3709
3716
|
collapseAll(): void;
|
|
3710
3717
|
trackNode(_index: number, node: TreeNode<T>): string | number;
|