@agorapulse/ui-components 20.3.26-beta.1 → 20.3.28
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/agorapulse-ui-components-20.3.28.tgz +0 -0
- package/fesm2022/agorapulse-ui-components-nav-selector.mjs +100 -37
- package/fesm2022/agorapulse-ui-components-nav-selector.mjs.map +1 -1
- package/nav-selector/index.d.ts +6 -1
- package/package.json +1 -1
- package/agorapulse-ui-components-20.3.26-beta.1.tgz +0 -0
package/nav-selector/index.d.ts
CHANGED
|
@@ -343,6 +343,8 @@ declare class NavSelectorState {
|
|
|
343
343
|
search: _angular_core.WritableSignal<string>;
|
|
344
344
|
noResults: Signal<boolean>;
|
|
345
345
|
texts: Signal<NavSelectorTranslatedTexts>;
|
|
346
|
+
isAllSelected: Signal<boolean>;
|
|
347
|
+
isSelectAllIndeterminate: Signal<boolean>;
|
|
346
348
|
expanded: _angular_core.WritableSignal<boolean>;
|
|
347
349
|
previousSelectedUids: string[];
|
|
348
350
|
private selectedUidsChangeCallback;
|
|
@@ -375,6 +377,9 @@ declare class NavSelectorState {
|
|
|
375
377
|
viewMore(leaf: InternalNavSelectorLeaf): void;
|
|
376
378
|
viewLess(leaf: InternalNavSelectorLeaf): void;
|
|
377
379
|
resetFocus(): void;
|
|
380
|
+
toggleSelectAll(): void;
|
|
381
|
+
private areAllSelectableItemsSelected;
|
|
382
|
+
private collectSelectableNonDisabledUids;
|
|
378
383
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavSelectorState, never>;
|
|
379
384
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NavSelectorState>;
|
|
380
385
|
}
|
|
@@ -406,10 +411,10 @@ declare class NavSelectorComponent implements OnInit {
|
|
|
406
411
|
private el;
|
|
407
412
|
componentUid: string;
|
|
408
413
|
ready: _angular_core.WritableSignal<boolean>;
|
|
414
|
+
private stableNavSelectorEntries;
|
|
409
415
|
private expanded;
|
|
410
416
|
private entries;
|
|
411
417
|
private selectableEntryUids;
|
|
412
|
-
private existingSelectableUids;
|
|
413
418
|
private visibleEntryUids;
|
|
414
419
|
visibleAccountsChange: _angular_core.OutputRef<{
|
|
415
420
|
visibleAccountUids: string[];
|
package/package.json
CHANGED
|
Binary file
|