mesauth-angular 1.8.3 → 1.8.5
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mesauth-angular",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.5",
|
|
4
4
|
"description": "Angular helper library to connect to a backend API and SignalR hub to surface the current logged-in user and incoming notifications with dark/light theme support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -599,17 +599,19 @@ declare class MaArvContainerComponent {
|
|
|
599
599
|
routingMode: 'template' | 'adhoc';
|
|
600
600
|
templates: _angular_core.WritableSignal<ApprovalTemplateSummaryDto[]>;
|
|
601
601
|
selectedTemplateId: number | null;
|
|
602
|
-
selectedTemplate: ApprovalTemplateDto
|
|
602
|
+
selectedTemplate: _angular_core.WritableSignal<ApprovalTemplateDto>;
|
|
603
603
|
loadingTemplate: _angular_core.WritableSignal<boolean>;
|
|
604
|
-
stepCandidates: RolePreviewUserDto[][]
|
|
605
|
-
stepLoadingCandidates: boolean[]
|
|
606
|
-
stepSelectedUsers: string[]
|
|
604
|
+
stepCandidates: _angular_core.WritableSignal<RolePreviewUserDto[][]>;
|
|
605
|
+
stepLoadingCandidates: _angular_core.WritableSignal<boolean[]>;
|
|
606
|
+
stepSelectedUsers: _angular_core.WritableSignal<string[]>;
|
|
607
607
|
adHocSteps: ApprovalStepRequest[];
|
|
608
608
|
referenceUserIds: string[];
|
|
609
609
|
refSearchQuery: string;
|
|
610
610
|
refSearchResults: any[];
|
|
611
611
|
userSearchQuery: string[];
|
|
612
612
|
userSearchResults: any[][];
|
|
613
|
+
candidateSearchQuery: string[];
|
|
614
|
+
candidateSearchResults: any[][];
|
|
613
615
|
submitting: boolean;
|
|
614
616
|
isSubmitted: boolean;
|
|
615
617
|
errorMessage: string;
|
|
@@ -624,6 +626,9 @@ declare class MaArvContainerComponent {
|
|
|
624
626
|
private loadTemplateDetail;
|
|
625
627
|
private loadStepCandidates;
|
|
626
628
|
onStepUserChange(stepIndex: number, event: Event): void;
|
|
629
|
+
onStepUserChangeInput(stepIndex: number, userId: string): void;
|
|
630
|
+
private normalize;
|
|
631
|
+
onCandidateSearchInput(stepIndex: number, query: string): void;
|
|
627
632
|
onTemplateChange(event: Event): void;
|
|
628
633
|
addStep(): void;
|
|
629
634
|
removeStep(i: number): void;
|
|
@@ -631,6 +636,7 @@ declare class MaArvContainerComponent {
|
|
|
631
636
|
removeApprover(stepIndex: number, approverIndex: number): void;
|
|
632
637
|
addReference(userId: string): void;
|
|
633
638
|
private storeLabelFromResults;
|
|
639
|
+
private storeLabelFromCandidates;
|
|
634
640
|
removeReference(j: number): void;
|
|
635
641
|
onUserSearchInput(stepIndex: number, query: string): void;
|
|
636
642
|
onRefSearchInput(query: string): void;
|