@agorapulse/ui-components 18.0.26 → 18.0.27
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-18.0.27.tgz +0 -0
- package/counter/counter.component.d.ts +7 -11
- package/esm2022/counter/counter.component.mjs +26 -53
- package/esm2022/nav-selector/nav-selector-group/nav-selector-group.component.mjs +2 -2
- package/esm2022/nav-selector/nav-selector-leaf/nav-selector-leaf.component.mjs +2 -2
- package/esm2022/nav-selector/nav-selector-leaf-detail/nav-selector-leaf-detail.component.mjs +2 -2
- package/esm2022/nav-selector/nav-selector.component.mjs +44 -20
- package/esm2022/nav-selector/nav-selector.state.mjs +6 -1
- package/fesm2022/agorapulse-ui-components-counter.mjs +25 -52
- package/fesm2022/agorapulse-ui-components-counter.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-nav-selector.mjs +51 -22
- package/fesm2022/agorapulse-ui-components-nav-selector.mjs.map +1 -1
- package/nav-selector/nav-selector.component.d.ts +7 -3
- package/nav-selector/nav-selector.state.d.ts +1 -0
- package/package.json +1 -1
- package/agorapulse-ui-components-18.0.26.tgz +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ElementRef, TemplateRef } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnInit, TemplateRef } from '@angular/core';
|
|
2
2
|
import { NavSelectorEntry, NavSelectorTranslatedTexts } from './nav-selector';
|
|
3
3
|
import { NavSelectorState } from './nav-selector.state';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class NavSelectorComponent {
|
|
5
|
+
export declare class NavSelectorComponent implements OnInit {
|
|
6
6
|
navSelectorState: NavSelectorState;
|
|
7
7
|
private el;
|
|
8
8
|
navSelectorEntries: import("@angular/core").InputSignal<NavSelectorEntry[]>;
|
|
@@ -14,6 +14,7 @@ export declare class NavSelectorComponent {
|
|
|
14
14
|
* If true, the nav selector will be expanded by default. Even if the width of the screen is smaller than 1280px.
|
|
15
15
|
*/
|
|
16
16
|
forceExpanded: import("@angular/core").InputSignal<boolean>;
|
|
17
|
+
expandedStateLocalStorageKey: import("@angular/core").InputSignal<string | undefined>;
|
|
17
18
|
selectedEntryUids: import("@angular/core").ModelSignal<string[]>;
|
|
18
19
|
headerProjection: import("@angular/core").Signal<TemplateRef<unknown> | undefined>;
|
|
19
20
|
footerProjection: import("@angular/core").Signal<TemplateRef<unknown> | undefined>;
|
|
@@ -26,10 +27,13 @@ export declare class NavSelectorComponent {
|
|
|
26
27
|
componentUid: string;
|
|
27
28
|
ready: import("@angular/core").WritableSignal<boolean>;
|
|
28
29
|
constructor(navSelectorState: NavSelectorState, el: ElementRef);
|
|
30
|
+
ngOnInit(): void;
|
|
29
31
|
onMinifiedSearchClicked(): void;
|
|
30
32
|
onArrowDown(event: Event): void;
|
|
31
33
|
onArrowUp(event: Event): void;
|
|
32
34
|
onWindowResize(): void;
|
|
35
|
+
private initializeExpandedState;
|
|
36
|
+
clickExpandButton(): void;
|
|
33
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavSelectorComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavSelectorComponent, "ap-nav-selector", never, { "navSelectorEntries": { "alias": "navSelectorEntries"; "required": true; "isSignal": true; }; "translatedTexts": { "alias": "translatedTexts"; "required": true; "isSignal": true; }; "multipleModeEnabled": { "alias": "multipleModeEnabled"; "required": false; "isSignal": true; }; "detailsDisplayedLimit": { "alias": "detailsDisplayedLimit"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; "isSignal": true; }; "selectedEntryUids": { "alias": "selectedEntryUids"; "required": true; "isSignal": true; }; }, { "selectedEntryUids": "selectedEntryUidsChange"; "onExpansionStateChange": "onExpansionStateChange"; }, ["headerProjection", "footerProjection", "leafActionProjection"], never, true, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavSelectorComponent, "ap-nav-selector", never, { "navSelectorEntries": { "alias": "navSelectorEntries"; "required": true; "isSignal": true; }; "translatedTexts": { "alias": "translatedTexts"; "required": true; "isSignal": true; }; "multipleModeEnabled": { "alias": "multipleModeEnabled"; "required": false; "isSignal": true; }; "detailsDisplayedLimit": { "alias": "detailsDisplayedLimit"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; "isSignal": true; }; "expandedStateLocalStorageKey": { "alias": "expandedStateLocalStorageKey"; "required": false; "isSignal": true; }; "selectedEntryUids": { "alias": "selectedEntryUids"; "required": true; "isSignal": true; }; }, { "selectedEntryUids": "selectedEntryUidsChange"; "onExpansionStateChange": "onExpansionStateChange"; }, ["headerProjection", "footerProjection", "leafActionProjection"], never, true, never>;
|
|
35
39
|
}
|
|
@@ -33,6 +33,7 @@ export declare class NavSelectorState {
|
|
|
33
33
|
toggleExpanded(): void;
|
|
34
34
|
minify(): void;
|
|
35
35
|
forceMinify(): void;
|
|
36
|
+
forceExpand(): void;
|
|
36
37
|
onSelectionChange(uids: string[]): void;
|
|
37
38
|
registerOnSelectedUidsChange(callback: (selectedUids: string[]) => void): void;
|
|
38
39
|
onArrowDown(): void;
|
package/package.json
CHANGED
|
Binary file
|