mesauth-angular 1.8.4 → 1.8.6
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.6",
|
|
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",
|
|
@@ -598,7 +598,7 @@ declare class MaArvContainerComponent {
|
|
|
598
598
|
get themeClass(): string;
|
|
599
599
|
routingMode: 'template' | 'adhoc';
|
|
600
600
|
templates: _angular_core.WritableSignal<ApprovalTemplateSummaryDto[]>;
|
|
601
|
-
selectedTemplateId: number
|
|
601
|
+
selectedTemplateId: _angular_core.WritableSignal<number>;
|
|
602
602
|
selectedTemplate: _angular_core.WritableSignal<ApprovalTemplateDto>;
|
|
603
603
|
loadingTemplate: _angular_core.WritableSignal<boolean>;
|
|
604
604
|
stepCandidates: _angular_core.WritableSignal<RolePreviewUserDto[][]>;
|
|
@@ -612,9 +612,12 @@ declare class MaArvContainerComponent {
|
|
|
612
612
|
userSearchResults: any[][];
|
|
613
613
|
candidateSearchQuery: string[];
|
|
614
614
|
candidateSearchResults: any[][];
|
|
615
|
-
submitting: boolean
|
|
616
|
-
isSubmitted: boolean
|
|
617
|
-
errorMessage: string
|
|
615
|
+
submitting: _angular_core.WritableSignal<boolean>;
|
|
616
|
+
isSubmitted: _angular_core.WritableSignal<boolean>;
|
|
617
|
+
errorMessage: _angular_core.Signal<string>;
|
|
618
|
+
isError: _angular_core.Signal<boolean>;
|
|
619
|
+
isStepsError: _angular_core.Signal<Record<number, boolean>>;
|
|
620
|
+
submitResultError: _angular_core.WritableSignal<string>;
|
|
618
621
|
userLabelMap: Record<string, string>;
|
|
619
622
|
private mesAuth;
|
|
620
623
|
private themeService;
|
|
@@ -627,6 +630,7 @@ declare class MaArvContainerComponent {
|
|
|
627
630
|
private loadStepCandidates;
|
|
628
631
|
onStepUserChange(stepIndex: number, event: Event): void;
|
|
629
632
|
onStepUserChangeInput(stepIndex: number, userId: string): void;
|
|
633
|
+
private normalize;
|
|
630
634
|
onCandidateSearchInput(stepIndex: number, query: string): void;
|
|
631
635
|
onTemplateChange(event: Event): void;
|
|
632
636
|
addStep(): void;
|