@annalib/anna-cognito-lib 2.2.5 → 2.2.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/esm2020/lib/anna-cognito-lib.module.mjs +6 -6
- package/esm2020/lib/components/sso-login/sso-login.component.mjs +32 -0
- package/esm2020/lib/config/auth-service.token.mjs +1 -1
- package/esm2020/lib/services/auth.service.mjs +59 -55
- package/esm2020/public-api.mjs +2 -2
- package/fesm2015/annalib-anna-cognito-lib.mjs +69 -67
- package/fesm2015/annalib-anna-cognito-lib.mjs.map +1 -1
- package/fesm2020/annalib-anna-cognito-lib.mjs +69 -65
- package/fesm2020/annalib-anna-cognito-lib.mjs.map +1 -1
- package/lib/anna-cognito-lib.module.d.ts +2 -2
- package/lib/components/{duo-sso-login/duo-sso-login.component.d.ts → sso-login/sso-login.component.d.ts} +3 -3
- package/lib/config/auth-service.token.d.ts +1 -1
- package/lib/services/auth.service.d.ts +1 -3
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
- package/esm2020/lib/components/duo-sso-login/duo-sso-login.component.mjs +0 -32
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { InjectionToken, Injectable, Inject, Directive, Input, Component, EventEmitter, Output, NgModule } from '@angular/core';
|
|
3
3
|
import { __awaiter } from 'tslib';
|
|
4
|
-
import { fetchAuthSession, signIn, confirmSignIn,
|
|
4
|
+
import { getCurrentUser, fetchAuthSession, signIn, confirmSignIn, resetPassword, confirmResetPassword, signOut } from 'aws-amplify/auth';
|
|
5
5
|
import * as i3 from '@angular/router';
|
|
6
6
|
import { RouterModule } from '@angular/router';
|
|
7
7
|
import * as i3$1 from '@angular/common/http';
|
|
@@ -101,7 +101,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
101
101
|
} });
|
|
102
102
|
|
|
103
103
|
class AnnaLibAuthService {
|
|
104
|
-
// authIdFromOktaRedirectionUrl: string;
|
|
105
104
|
constructor(router, aclService, httpClient, toastr, consumingProjectAuthService, consumingProjectConfigService) {
|
|
106
105
|
this.router = router;
|
|
107
106
|
this.aclService = aclService;
|
|
@@ -118,19 +117,28 @@ class AnnaLibAuthService {
|
|
|
118
117
|
ngOnInit() { }
|
|
119
118
|
isUserLoggedIn() {
|
|
120
119
|
return __awaiter(this, void 0, void 0, function* () {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
120
|
+
let currentUser = yield getCurrentUser();
|
|
121
|
+
if (currentUser) {
|
|
122
|
+
return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () {
|
|
123
|
+
const session = yield fetchAuthSession();
|
|
124
|
+
if (session === null || session === void 0 ? void 0 : session.tokens) {
|
|
125
|
+
this.IdToken = session === null || session === void 0 ? void 0 : session.tokens.idToken.toString();
|
|
126
|
+
this.getAllCognitoTokenAndGroups(session.tokens);
|
|
127
|
+
resolve(true);
|
|
128
|
+
}
|
|
129
|
+
else {
|
|
130
|
+
this.toastr.error(LoginConstant.sessionExpiredError);
|
|
131
|
+
this.sessionTimeout();
|
|
132
|
+
resolve(false);
|
|
133
|
+
}
|
|
134
|
+
}));
|
|
135
|
+
}
|
|
136
|
+
else {
|
|
137
|
+
return new Promise((resolve) => {
|
|
138
|
+
clearInterval(this.accessTokenTimerId);
|
|
131
139
|
resolve(false);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
140
|
+
});
|
|
141
|
+
}
|
|
134
142
|
});
|
|
135
143
|
}
|
|
136
144
|
sessionTimeout() {
|
|
@@ -138,17 +146,12 @@ class AnnaLibAuthService {
|
|
|
138
146
|
clearInterval(this.accessTokenTimerId);
|
|
139
147
|
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
140
148
|
}
|
|
141
|
-
computeTokenExpiration(
|
|
149
|
+
computeTokenExpiration(idToken) {
|
|
142
150
|
let currentTime = Math.floor(Date.now() / 1000);
|
|
143
|
-
let tokenTime =
|
|
151
|
+
let tokenTime = idToken.payload.exp;
|
|
144
152
|
let expTime = (tokenTime - currentTime) * 1000;
|
|
145
153
|
return expTime;
|
|
146
154
|
}
|
|
147
|
-
getCurrentSession() {
|
|
148
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
149
|
-
return yield fetchAuthSession();
|
|
150
|
-
});
|
|
151
|
-
}
|
|
152
155
|
handleSignIn({ username, password }) {
|
|
153
156
|
return __awaiter(this, void 0, void 0, function* () {
|
|
154
157
|
try {
|
|
@@ -160,8 +163,8 @@ class AnnaLibAuthService {
|
|
|
160
163
|
localStorage.setItem("accessTokenExpiration", newExpTime.toString());
|
|
161
164
|
this.refreshAccessToken();
|
|
162
165
|
this.loginErrorMessage = null;
|
|
166
|
+
yield this.consumingProjectAuthService.onSuccessfulAuthenticatingUser(false);
|
|
163
167
|
this.getAllCognitoTokenAndGroups(session.tokens);
|
|
164
|
-
yield this.consumingProjectAuthService.onSuccessfulAuthenticatingUser(session.tokens.idToken.payload.sub);
|
|
165
168
|
break;
|
|
166
169
|
case "CONFIRM_SIGN_IN_WITH_NEW_PASSWORD_REQUIRED":
|
|
167
170
|
this.consumingProjectAuthService.isLoggingIn = false;
|
|
@@ -202,47 +205,46 @@ class AnnaLibAuthService {
|
|
|
202
205
|
});
|
|
203
206
|
}
|
|
204
207
|
refreshAccessToken() {
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
208
|
+
let accessTokenExpiration = localStorage.getItem("accessTokenExpiration");
|
|
209
|
+
let expTime = accessTokenExpiration ? parseInt(accessTokenExpiration) : 0;
|
|
210
|
+
this.accessTokenTimerId = setInterval(() => {
|
|
211
|
+
let counter = 1000;
|
|
212
|
+
let delayFunction = setTimeout(() => __awaiter(this, void 0, void 0, function* () {
|
|
213
|
+
try {
|
|
214
|
+
let session = yield fetchAuthSession();
|
|
215
|
+
let token = session.tokens;
|
|
216
|
+
if (token) {
|
|
217
|
+
this.getAllCognitoTokenAndGroups(token);
|
|
218
|
+
let newExpTime = this.computeTokenExpiration(this.IdToken);
|
|
219
|
+
if (newExpTime <= 0) {
|
|
220
|
+
newExpTime = 1000;
|
|
221
|
+
counter = 0;
|
|
222
|
+
if (delayFunction) {
|
|
223
|
+
clearInterval(delayFunction);
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
expTime = newExpTime;
|
|
227
|
+
localStorage.setItem("accessTokenExpiration", newExpTime.toString());
|
|
228
|
+
clearInterval(this.accessTokenTimerId);
|
|
229
|
+
this.refreshAccessToken();
|
|
230
|
+
}
|
|
231
|
+
else {
|
|
232
|
+
this.toastr.error(LoginConstant.sessionExpiredError);
|
|
233
|
+
this.sessionTimeout();
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
catch (error) {
|
|
237
|
+
this.toastr.error(LoginConstant.sessionExpiredError);
|
|
238
|
+
this.sessionTimeout();
|
|
239
|
+
}
|
|
240
|
+
}), counter);
|
|
241
|
+
}, expTime);
|
|
234
242
|
}
|
|
235
243
|
changePassword(newPassword) {
|
|
236
244
|
return __awaiter(this, void 0, void 0, function* () {
|
|
237
245
|
try {
|
|
238
|
-
let session = yield fetchAuthSession();
|
|
239
|
-
console.log(session);
|
|
240
|
-
let oldPassword = this.userPassword;
|
|
241
246
|
let inputParam = {
|
|
242
247
|
challengeResponse: newPassword,
|
|
243
|
-
options: {
|
|
244
|
-
email: 'email@email'
|
|
245
|
-
}
|
|
246
248
|
};
|
|
247
249
|
const data = yield confirmSignIn(inputParam);
|
|
248
250
|
const { username } = yield getCurrentUser();
|
|
@@ -495,7 +497,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
495
497
|
}] }];
|
|
496
498
|
} });
|
|
497
499
|
|
|
498
|
-
class
|
|
500
|
+
class SsoLoginComponent {
|
|
499
501
|
constructor(authService, consumingProjectConfigService) {
|
|
500
502
|
this.authService = authService;
|
|
501
503
|
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
@@ -507,11 +509,11 @@ class DuoSsoLoginComponent {
|
|
|
507
509
|
this.authService.signInWithDuo();
|
|
508
510
|
}
|
|
509
511
|
}
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type:
|
|
512
|
+
SsoLoginComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SsoLoginComponent, deps: [{ token: AnnaLibAuthService }, { token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component });
|
|
513
|
+
SsoLoginComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: SsoLoginComponent, selector: "anna-cognito-lib-sso-login", ngImport: i0, template: "<div class=\"main\">\n <section *ngIf=\"constants.forgotPassword\">\n <header>\n <img [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" width=\"145\" height=\"50\"\n alt=\"Anna Logo\" priority />\n </header>\n <article>\n <p class=\"sub-title\">Login</p>\n <p>Sign in to your account with SSO</p>\n <button class=\"login-btn\" (click)=\"signInWithSSO()\">Login</button>\n <div class=\"dashed-line\"></div>\n <!-- <a tabindex=\"4\" class=\"login-link\" [routerLink]=\"constants.loginPageUrl\">Sign in with username</a> -->\n </article>\n <footer>\n <anna-cognito-lib-powered-by-logo-template>\n </anna-cognito-lib-powered-by-logo-template>\n </footer>\n </section>\n</div>\n\n<div class=\"page-footer\">\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\n</div>", styles: ["@keyframes show{0%{opacity:0}50%{opacity:.5}to{opacity:1}}html{overflow-y:scroll}.main{background-color:#fff;background-size:cover;font-family:Roboto;height:calc(100vh - 50px)}section{top:45%;left:50%;position:absolute;transform:translate(-50%,-50%);width:20.875rem;animation:show .5s 1;-moz-animation:show .5s 1}.container{width:100%;height:100%;overflow:auto}header{height:auto;width:100%;text-align:center}article{margin-top:.9375rem;margin-bottom:.9375rem;border:1px solid #979797;background-color:#f4f4f4;padding:2rem 1.375rem;border-radius:.375rem;box-shadow:0 .125rem .4375rem #0000001a}article .sub-title{color:#6e6e6e;font-family:Roboto;font-size:1.25rem;font-weight:700;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}article #heading{color:#212121;text-align:center;margin-bottom:1.5rem;font-family:Roboto;font-size:1.125rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}p{text-align:center;margin-bottom:1rem}#alert-div{padding:.25rem 0 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div .mdi-info{color:#268bff;font-size:1rem}#alert-div p{margin:-1.5625rem 0 0 1.8rem;padding:.3125rem 0;color:#4a4a4a;font-family:Roboto;font-size:.75rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}#info-div{padding:6px 0;margin-bottom:.75rem;border-radius:.25rem;border:1px solid #268bff;background:#e3f0ff}#info-div .mdi-info{color:#268bff;font-size:1rem;margin-left:6px}#info-div p{margin:-1.5625rem 0 0 1.8rem;padding:.3125rem 0;color:#4a4a4a;font-family:Roboto;font-size:.75rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}footer{align-items:baseline;color:#6e6e6e;opacity:.9;display:flex;font-family:Ubuntu;font-size:1.25rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;justify-content:center}footer span{font-size:1.5625rem;margin-left:.25rem}input[type=password],input[type=text],input[type=number]{width:100%;height:30px;padding:.75rem 1rem;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}.login-btn{width:100%;height:2.5rem;border:0;color:#fff;background-color:#268bff;border-radius:.375rem;font-size:1rem}.login-btn:hover{background-color:#4099ff;cursor:pointer}.login-btn:disabled{background-color:#ccc;color:#fff;cursor:not-allowed}.input-invalid{border:1px solid #fe3824!important}input[type=password].ng-dirty.ng-invalid,input[type=text].ng-dirty.ng-invalid{border:1px solid #fe3824}input[type=submit]:focus,input[type=password]:focus,input[type=text]:focus,input[type=checkbox]:focus,button:focus{outline:none}input::placeholder{color:#a4a4a4}:host ::ng-deep .verison-and-policy{color:#8bac2a}\n"], dependencies: [{ kind: "directive", type: i4$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4$1.NgOptimizedImage, selector: "img[ngSrc]", inputs: ["ngSrc", "ngSrcset", "sizes", "width", "height", "loading", "priority", "loaderParams", "disableOptimizedSrcset", "fill", "src", "srcset"] }, { kind: "component", type: VersionAndTermPolicyComponent, selector: "anna-cognito-lib-version-and-term-policy" }, { kind: "component", type: SurewavesYearLogoComponent, selector: "anna-cognito-lib-surewaves-year-logo" }, { kind: "component", type: PoweredByLogoTemplateComponent, selector: "anna-cognito-lib-powered-by-logo-template" }] });
|
|
514
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SsoLoginComponent, decorators: [{
|
|
513
515
|
type: Component,
|
|
514
|
-
args: [{ selector: 'anna-cognito-lib-
|
|
516
|
+
args: [{ selector: 'anna-cognito-lib-sso-login', template: "<div class=\"main\">\n <section *ngIf=\"constants.forgotPassword\">\n <header>\n <img [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" width=\"145\" height=\"50\"\n alt=\"Anna Logo\" priority />\n </header>\n <article>\n <p class=\"sub-title\">Login</p>\n <p>Sign in to your account with SSO</p>\n <button class=\"login-btn\" (click)=\"signInWithSSO()\">Login</button>\n <div class=\"dashed-line\"></div>\n <!-- <a tabindex=\"4\" class=\"login-link\" [routerLink]=\"constants.loginPageUrl\">Sign in with username</a> -->\n </article>\n <footer>\n <anna-cognito-lib-powered-by-logo-template>\n </anna-cognito-lib-powered-by-logo-template>\n </footer>\n </section>\n</div>\n\n<div class=\"page-footer\">\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\n</div>", styles: ["@keyframes show{0%{opacity:0}50%{opacity:.5}to{opacity:1}}html{overflow-y:scroll}.main{background-color:#fff;background-size:cover;font-family:Roboto;height:calc(100vh - 50px)}section{top:45%;left:50%;position:absolute;transform:translate(-50%,-50%);width:20.875rem;animation:show .5s 1;-moz-animation:show .5s 1}.container{width:100%;height:100%;overflow:auto}header{height:auto;width:100%;text-align:center}article{margin-top:.9375rem;margin-bottom:.9375rem;border:1px solid #979797;background-color:#f4f4f4;padding:2rem 1.375rem;border-radius:.375rem;box-shadow:0 .125rem .4375rem #0000001a}article .sub-title{color:#6e6e6e;font-family:Roboto;font-size:1.25rem;font-weight:700;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}article #heading{color:#212121;text-align:center;margin-bottom:1.5rem;font-family:Roboto;font-size:1.125rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}p{text-align:center;margin-bottom:1rem}#alert-div{padding:.25rem 0 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div .mdi-info{color:#268bff;font-size:1rem}#alert-div p{margin:-1.5625rem 0 0 1.8rem;padding:.3125rem 0;color:#4a4a4a;font-family:Roboto;font-size:.75rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}#info-div{padding:6px 0;margin-bottom:.75rem;border-radius:.25rem;border:1px solid #268bff;background:#e3f0ff}#info-div .mdi-info{color:#268bff;font-size:1rem;margin-left:6px}#info-div p{margin:-1.5625rem 0 0 1.8rem;padding:.3125rem 0;color:#4a4a4a;font-family:Roboto;font-size:.75rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}footer{align-items:baseline;color:#6e6e6e;opacity:.9;display:flex;font-family:Ubuntu;font-size:1.25rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;justify-content:center}footer span{font-size:1.5625rem;margin-left:.25rem}input[type=password],input[type=text],input[type=number]{width:100%;height:30px;padding:.75rem 1rem;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}.login-btn{width:100%;height:2.5rem;border:0;color:#fff;background-color:#268bff;border-radius:.375rem;font-size:1rem}.login-btn:hover{background-color:#4099ff;cursor:pointer}.login-btn:disabled{background-color:#ccc;color:#fff;cursor:not-allowed}.input-invalid{border:1px solid #fe3824!important}input[type=password].ng-dirty.ng-invalid,input[type=text].ng-dirty.ng-invalid{border:1px solid #fe3824}input[type=submit]:focus,input[type=password]:focus,input[type=text]:focus,input[type=checkbox]:focus,button:focus{outline:none}input::placeholder{color:#a4a4a4}:host ::ng-deep .verison-and-policy{color:#8bac2a}\n"] }]
|
|
515
517
|
}], ctorParameters: function () {
|
|
516
518
|
return [{ type: AnnaLibAuthService }, { type: undefined, decorators: [{
|
|
517
519
|
type: Inject,
|
|
@@ -844,12 +846,12 @@ AnnaCognitoLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", ve
|
|
|
844
846
|
VersionAndTermPolicyComponent,
|
|
845
847
|
SurewavesYearLogoComponent,
|
|
846
848
|
PoweredByLogoTemplateComponent,
|
|
847
|
-
|
|
849
|
+
SsoLoginComponent], imports: [FormsModule,
|
|
848
850
|
ReactiveFormsModule,
|
|
849
851
|
RouterModule,
|
|
850
852
|
CommonModule,
|
|
851
853
|
NgOptimizedImage], exports: [LoginComponent,
|
|
852
|
-
|
|
854
|
+
SsoLoginComponent,
|
|
853
855
|
SetNewPasswordComponent,
|
|
854
856
|
PasswordMatchingComponent,
|
|
855
857
|
ForgotPasswordComponent,
|
|
@@ -876,7 +878,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
876
878
|
VersionAndTermPolicyComponent,
|
|
877
879
|
SurewavesYearLogoComponent,
|
|
878
880
|
PoweredByLogoTemplateComponent,
|
|
879
|
-
|
|
881
|
+
SsoLoginComponent,
|
|
880
882
|
],
|
|
881
883
|
imports: [
|
|
882
884
|
FormsModule,
|
|
@@ -887,7 +889,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
887
889
|
],
|
|
888
890
|
exports: [
|
|
889
891
|
LoginComponent,
|
|
890
|
-
|
|
892
|
+
SsoLoginComponent,
|
|
891
893
|
SetNewPasswordComponent,
|
|
892
894
|
PasswordMatchingComponent,
|
|
893
895
|
ForgotPasswordComponent,
|
|
@@ -928,5 +930,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
928
930
|
* Generated bundle index. Do not edit.
|
|
929
931
|
*/
|
|
930
932
|
|
|
931
|
-
export { ACL_SERVICE_TOKEN, AUTH_SERVICE_TOKEN, AnnaCognitoLibModule, AnnaConfigService, AnnaLibAclService, AnnaLibAuthService, CONFIG_SERVICE_TOKEN,
|
|
933
|
+
export { ACL_SERVICE_TOKEN, AUTH_SERVICE_TOKEN, AnnaCognitoLibModule, AnnaConfigService, AnnaLibAclService, AnnaLibAuthService, CONFIG_SERVICE_TOKEN, ForgotPasswordComponent, LoginComponent, LoginConstant, PasswordMatchingComponent, PoweredByLogoTemplateComponent, SetNewPasswordComponent, SpinnerButtonDirective, SsoLoginComponent, SurewavesYearLogoComponent, VerifyAndSetNewPasswordComponent, VersionAndTermPolicyComponent };
|
|
932
934
|
//# sourceMappingURL=annalib-anna-cognito-lib.mjs.map
|