@annalib/anna-cognito-lib 2.3.0 → 2.3.2
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/esm2022/lib/components/anna-login/anna-login.component.mjs +10 -10
- package/esm2022/lib/components/cognito-and-sso-login-container/cognito-and-sso-login-container.component.mjs +10 -6
- package/esm2022/lib/components/forgot-password/forgot-password.component.mjs +9 -9
- package/esm2022/lib/components/password-matching/password-matching.component.mjs +5 -5
- package/esm2022/lib/components/powered-by-logo-template/powered-by-logo-template.component.mjs +4 -4
- package/esm2022/lib/components/set-new-password/set-new-password.component.mjs +9 -8
- package/esm2022/lib/components/sso-login/sso-login.component.mjs +7 -7
- package/esm2022/lib/components/surewaves-year-logo/surewaves-year-logo.component.mjs +3 -3
- package/esm2022/lib/components/verify-and-set-new-password/verify-and-set-new-password.component.mjs +11 -11
- package/esm2022/lib/components/version-and-term-policy/version-and-term-policy.component.mjs +3 -3
- package/esm2022/lib/directives/spinner-button/spinner-button.directive.mjs +3 -2
- package/esm2022/public-api.mjs +1 -2
- package/fesm2022/annalib-anna-cognito-lib.mjs +163 -232
- package/fesm2022/annalib-anna-cognito-lib.mjs.map +1 -1
- package/lib/components/anna-login/anna-login.component.d.ts +1 -1
- package/lib/components/cognito-and-sso-login-container/cognito-and-sso-login-container.component.d.ts +1 -1
- package/lib/components/forgot-password/forgot-password.component.d.ts +1 -1
- package/lib/components/password-matching/password-matching.component.d.ts +1 -1
- package/lib/components/powered-by-logo-template/powered-by-logo-template.component.d.ts +1 -1
- package/lib/components/set-new-password/set-new-password.component.d.ts +1 -1
- package/lib/components/sso-login/sso-login.component.d.ts +1 -1
- package/lib/components/surewaves-year-logo/surewaves-year-logo.component.d.ts +1 -1
- package/lib/components/verify-and-set-new-password/verify-and-set-new-password.component.d.ts +1 -1
- package/lib/components/version-and-term-policy/version-and-term-policy.component.d.ts +1 -1
- package/lib/directives/spinner-button/spinner-button.directive.d.ts +1 -1
- package/package.json +4 -4
- package/public-api.d.ts +0 -1
- package/esm2022/lib/anna-cognito-lib.module.mjs +0 -91
- package/lib/anna-cognito-lib.module.d.ts +0 -21
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, Injectable, Inject, Component, Directive, Input, EventEmitter, Output
|
|
3
|
-
import * as
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import * as i3 from '@angular/router';
|
|
7
|
-
import { RouterModule } from '@angular/router';
|
|
2
|
+
import { InjectionToken, Injectable, Inject, Component, Directive, Input, EventEmitter, Output } from '@angular/core';
|
|
3
|
+
import * as i3 from '@angular/common/http';
|
|
4
|
+
import * as i1 from '@angular/router';
|
|
5
|
+
import { RouterLink } from '@angular/router';
|
|
8
6
|
import { fetchAuthSession, signIn, confirmSignIn, getCurrentUser, resetPassword, confirmResetPassword, signOut } from 'aws-amplify/auth';
|
|
9
7
|
import * as i4 from 'ngx-toastr';
|
|
8
|
+
import { NgTemplateOutlet, NgIf, NgOptimizedImage, NgClass } from '@angular/common';
|
|
10
9
|
import * as i2 from '@angular/forms';
|
|
11
|
-
import {
|
|
12
|
-
import { debounceTime } from 'rxjs/operators';
|
|
10
|
+
import { FormsModule, ReactiveFormsModule, Validators, FormBuilder } from '@angular/forms';
|
|
13
11
|
import { forkJoin } from 'rxjs';
|
|
12
|
+
import { debounceTime } from 'rxjs/operators';
|
|
14
13
|
|
|
15
14
|
/** Token to inject the auth service */
|
|
16
15
|
const SSO_LOGIN_SERVICE_TOKEN = new InjectionToken('Cognito sso login service token');
|
|
@@ -377,7 +376,7 @@ class AnnaLibAuthService {
|
|
|
377
376
|
console.log('error signing out: ', error);
|
|
378
377
|
}
|
|
379
378
|
}
|
|
380
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLibAuthService, deps: [{ token:
|
|
379
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLibAuthService, deps: [{ token: i1.Router }, { token: AnnaLibAclService }, { token: i3.HttpClient }, { token: i4.ToastrService }, { token: SSO_LOGIN_SERVICE_TOKEN }, { token: AUTH_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
381
380
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLibAuthService, providedIn: "root" }); }
|
|
382
381
|
}
|
|
383
382
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLibAuthService, decorators: [{
|
|
@@ -385,7 +384,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
385
384
|
args: [{
|
|
386
385
|
providedIn: "root",
|
|
387
386
|
}]
|
|
388
|
-
}], ctorParameters: function () { return [{ type:
|
|
387
|
+
}], ctorParameters: function () { return [{ type: i1.Router }, { type: AnnaLibAclService }, { type: i3.HttpClient }, { type: i4.ToastrService }, { type: undefined, decorators: [{
|
|
389
388
|
type: Inject,
|
|
390
389
|
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
391
390
|
}] }, { type: undefined, decorators: [{
|
|
@@ -400,11 +399,11 @@ class VersionAndTermPolicyComponent {
|
|
|
400
399
|
ngOnInit() {
|
|
401
400
|
}
|
|
402
401
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: VersionAndTermPolicyComponent, deps: [{ token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
403
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: VersionAndTermPolicyComponent, selector: "anna-cognito-lib-version-and-term-policy", ngImport: i0, template: "<p class=\"verison-and-policy\"> Version {{consumingProjectConfigService.appGenericConfig.currentAnnaVersion}} </p>", styles: [".verison-and-policy{font-size:12px;font-family:Roboto;display:flex;justify-content:center;margin:0}\n"] }); }
|
|
402
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: VersionAndTermPolicyComponent, isStandalone: true, selector: "anna-cognito-lib-version-and-term-policy", ngImport: i0, template: "<p class=\"verison-and-policy\"> Version {{consumingProjectConfigService.appGenericConfig.currentAnnaVersion}} </p>", styles: [".verison-and-policy{font-size:12px;font-family:Roboto;display:flex;justify-content:center;margin:0}\n"] }); }
|
|
404
403
|
}
|
|
405
404
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: VersionAndTermPolicyComponent, decorators: [{
|
|
406
405
|
type: Component,
|
|
407
|
-
args: [{ selector: 'anna-cognito-lib-version-and-term-policy', template: "<p class=\"verison-and-policy\"> Version {{consumingProjectConfigService.appGenericConfig.currentAnnaVersion}} </p>", styles: [".verison-and-policy{font-size:12px;font-family:Roboto;display:flex;justify-content:center;margin:0}\n"] }]
|
|
406
|
+
args: [{ selector: 'anna-cognito-lib-version-and-term-policy', standalone: true, template: "<p class=\"verison-and-policy\"> Version {{consumingProjectConfigService.appGenericConfig.currentAnnaVersion}} </p>", styles: [".verison-and-policy{font-size:12px;font-family:Roboto;display:flex;justify-content:center;margin:0}\n"] }]
|
|
408
407
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
409
408
|
type: Inject,
|
|
410
409
|
args: [CONFIG_SERVICE_TOKEN]
|
|
@@ -416,11 +415,11 @@ class SurewavesYearLogoComponent {
|
|
|
416
415
|
this.currentYear = new Date().getFullYear();
|
|
417
416
|
}
|
|
418
417
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SurewavesYearLogoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
419
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SurewavesYearLogoComponent, selector: "anna-cognito-lib-surewaves-year-logo", ngImport: i0, template: "<div class=\"surewaves-year-logo\">\r\n \u00A9 SureWaves {{currentYear}}. All rights reserved. \r\n</div>\r\n", styles: [".surewaves-year-logo{color:#7a7a7a;font-size:12px;font-family:Roboto;margin-bottom:0;display:flex;justify-content:center}\n"] }); }
|
|
418
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SurewavesYearLogoComponent, isStandalone: true, selector: "anna-cognito-lib-surewaves-year-logo", ngImport: i0, template: "<div class=\"surewaves-year-logo\">\r\n \u00A9 SureWaves {{currentYear}}. All rights reserved. \r\n</div>\r\n", styles: [".surewaves-year-logo{color:#7a7a7a;font-size:12px;font-family:Roboto;margin-bottom:0;display:flex;justify-content:center}\n"] }); }
|
|
420
419
|
}
|
|
421
420
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SurewavesYearLogoComponent, decorators: [{
|
|
422
421
|
type: Component,
|
|
423
|
-
args: [{ selector: 'anna-cognito-lib-surewaves-year-logo', template: "<div class=\"surewaves-year-logo\">\r\n \u00A9 SureWaves {{currentYear}}. All rights reserved. \r\n</div>\r\n", styles: [".surewaves-year-logo{color:#7a7a7a;font-size:12px;font-family:Roboto;margin-bottom:0;display:flex;justify-content:center}\n"] }]
|
|
422
|
+
args: [{ selector: 'anna-cognito-lib-surewaves-year-logo', standalone: true, template: "<div class=\"surewaves-year-logo\">\r\n \u00A9 SureWaves {{currentYear}}. All rights reserved. \r\n</div>\r\n", styles: [".surewaves-year-logo{color:#7a7a7a;font-size:12px;font-family:Roboto;margin-bottom:0;display:flex;justify-content:center}\n"] }]
|
|
424
423
|
}], ctorParameters: function () { return []; } });
|
|
425
424
|
|
|
426
425
|
class PoweredByLogoTemplateComponent {
|
|
@@ -428,11 +427,11 @@ class PoweredByLogoTemplateComponent {
|
|
|
428
427
|
ngOnInit() {
|
|
429
428
|
}
|
|
430
429
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PoweredByLogoTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
431
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PoweredByLogoTemplateComponent, selector: "anna-cognito-lib-powered-by-logo-template", ngImport: i0, template: "<ng-container [ngTemplateOutlet]=\"poweredBySurewavesLogo\"> \r\n</ng-container>\r\n\r\n<ng-template #poweredBySurewavesLogo>\r\n<svg width=\"230px\" height=\"69px\" viewBox=\"0 0 230 69\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n <defs>\r\n <path d=\"M2.576,1.064 C3.93866667,1.064 4.98633333,1.323 5.719,1.841 C6.45166667,2.359 6.818,3.13133333 6.818,4.158 C6.818,4.718 6.71766667,5.19633333 6.517,5.593 C6.31633333,5.98966667 6.027,6.31166667 5.649,6.559 C5.271,6.80633333 4.81133333,6.986 4.27,7.098 C3.72866667,7.21 3.11733333,7.266 2.436,7.266 L1.358,7.266 L1.358,10.864 L0,10.864 L0,1.302 C0.382666667,1.20866667 0.809666667,1.14566667 1.281,1.113 C1.75233333,1.08033333 2.184,1.064 2.576,1.064 Z M2.688,2.254 C2.10933333,2.254 1.666,2.268 1.358,2.296 L1.358,6.104 L2.38,6.104 C2.84666667,6.104 3.26666667,6.07366667 3.64,6.013 C4.01333333,5.95233333 4.32833333,5.84966667 4.585,5.705 C4.84166667,5.56033333 5.04,5.362 5.18,5.11 C5.32,4.858 5.39,4.536 5.39,4.144 C5.39,3.77066667 5.31766667,3.46266667 5.173,3.22 C5.02833333,2.97733333 4.83233333,2.78366667 4.585,2.639 C4.33766667,2.49433333 4.05066667,2.394 3.724,2.338 C3.39733333,2.282 3.052,2.254 2.688,2.254 Z\" id=\"path-1\"></path>\r\n <path d=\"M14.56,7.224 C14.56,7.80266667 14.476,8.32533333 14.308,8.792 C14.14,9.25866667 13.9043333,9.66 13.601,9.996 C13.2976667,10.332 12.936,10.591 12.516,10.773 C12.096,10.955 11.6386667,11.046 11.144,11.046 C10.6493333,11.046 10.192,10.955 9.772,10.773 C9.352,10.591 8.99033333,10.332 8.687,9.996 C8.38366667,9.66 8.148,9.25866667 7.98,8.792 C7.812,8.32533333 7.728,7.80266667 7.728,7.224 C7.728,6.65466667 7.812,6.13433333 7.98,5.663 C8.148,5.19166667 8.38366667,4.788 8.687,4.452 C8.99033333,4.116 9.352,3.857 9.772,3.675 C10.192,3.493 10.6493333,3.402 11.144,3.402 C11.6386667,3.402 12.096,3.493 12.516,3.675 C12.936,3.857 13.2976667,4.116 13.601,4.452 C13.9043333,4.788 14.14,5.19166667 14.308,5.663 C14.476,6.13433333 14.56,6.65466667 14.56,7.224 Z M13.202,7.224 C13.202,6.40266667 13.0176667,5.75166667 12.649,5.271 C12.2803333,4.79033333 11.7786667,4.55 11.144,4.55 C10.5093333,4.55 10.0076667,4.79033333 9.639,5.271 C9.27033333,5.75166667 9.086,6.40266667 9.086,7.224 C9.086,8.04533333 9.27033333,8.69633333 9.639,9.177 C10.0076667,9.65766667 10.5093333,9.898 11.144,9.898 C11.7786667,9.898 12.2803333,9.65766667 12.649,9.177 C13.0176667,8.69633333 13.202,8.04533333 13.202,7.224 Z\" id=\"path-2\"></path>\r\n <path d=\"M22.162,10.864 C21.9006667,10.192 21.623,9.42433333 21.329,8.561 C21.035,7.69766667 20.7666667,6.79933333 20.524,5.866 C20.2813333,6.79933333 20.0153333,7.69766667 19.726,8.561 C19.4366667,9.42433333 19.1613333,10.192 18.9,10.864 L17.766,10.864 C17.3366667,9.90266667 16.9166667,8.806 16.506,7.574 C16.0953333,6.342 15.708,5.012 15.344,3.584 L16.744,3.584 C16.8373333,4.02266667 16.9493333,4.49866667 17.08,5.012 C17.2106667,5.52533333 17.3483333,6.03866667 17.493,6.552 C17.6376667,7.06533333 17.7893333,7.56 17.948,8.036 C18.1066667,8.512 18.256,8.92733333 18.396,9.282 C18.5546667,8.84333333 18.711,8.379 18.865,7.889 C19.019,7.399 19.166,6.90433333 19.306,6.405 C19.446,5.90566667 19.579,5.41566667 19.705,4.935 C19.831,4.45433333 19.9406667,4.004 20.034,3.584 L21.112,3.584 C21.196,4.004 21.2986667,4.45433333 21.42,4.935 C21.5413333,5.41566667 21.672,5.90566667 21.812,6.405 C21.952,6.90433333 22.099,7.399 22.253,7.889 C22.407,8.379 22.5633333,8.84333333 22.722,9.282 C22.862,8.92733333 23.009,8.512 23.163,8.036 C23.317,7.56 23.4686667,7.06533333 23.618,6.552 C23.7673333,6.03866667 23.9073333,5.52533333 24.038,5.012 C24.1686667,4.49866667 24.2806667,4.02266667 24.374,3.584 L25.718,3.584 C25.354,5.012 24.9666667,6.342 24.556,7.574 C24.1453333,8.806 23.7253333,9.90266667 23.296,10.864 L22.162,10.864 Z\" id=\"path-3\"></path>\r\n <path d=\"M26.684,7.238 C26.684,6.594 26.7773333,6.03166667 26.964,5.551 C27.1506667,5.07033333 27.398,4.67133333 27.706,4.354 C28.014,4.03666667 28.3686667,3.79866667 28.77,3.64 C29.1713333,3.48133333 29.582,3.402 30.002,3.402 C30.982,3.402 31.7333333,3.70766667 32.256,4.319 C32.7786667,4.93033333 33.04,5.86133333 33.04,7.112 C33.04,7.168 33.04,7.24033333 33.04,7.329 C33.04,7.41766667 33.0353333,7.49933333 33.026,7.574 L28.042,7.574 C28.098,8.33 28.3173333,8.904 28.7,9.296 C29.0826667,9.688 29.68,9.884 30.492,9.884 C30.9493333,9.884 31.3343333,9.84433333 31.647,9.765 C31.9596667,9.68566667 32.1953333,9.60866667 32.354,9.534 L32.536,10.626 C32.3773333,10.71 32.0996667,10.7986667 31.703,10.892 C31.3063333,10.9853333 30.856,11.032 30.352,11.032 C29.7173333,11.032 29.169,10.9363333 28.707,10.745 C28.245,10.5536667 27.8646667,10.29 27.566,9.954 C27.2673333,9.618 27.0456667,9.219 26.901,8.757 C26.7563333,8.295 26.684,7.78866667 26.684,7.238 Z M31.682,6.524 C31.6913333,5.936 31.5443333,5.453 31.241,5.075 C30.9376667,4.697 30.52,4.508 29.988,4.508 C29.6893333,4.508 29.4256667,4.56633333 29.197,4.683 C28.9683333,4.79966667 28.7746667,4.95133333 28.616,5.138 C28.4573333,5.32466667 28.3336667,5.53933333 28.245,5.782 C28.1563333,6.02466667 28.098,6.272 28.07,6.524 L31.682,6.524 Z\" id=\"path-4\"></path>\r\n <path d=\"M37.604,3.43 C37.716,3.43 37.8443333,3.437 37.989,3.451 C38.1336667,3.465 38.276,3.48366667 38.416,3.507 C38.556,3.53033333 38.6843333,3.55366667 38.801,3.577 C38.9176667,3.60033333 39.004,3.62133333 39.06,3.64 L38.836,4.774 C38.7333333,4.73666667 38.563,4.69233333 38.325,4.641 C38.087,4.58966667 37.7813333,4.564 37.408,4.564 C37.1653333,4.564 36.925,4.58966667 36.687,4.641 C36.449,4.69233333 36.2926667,4.72733333 36.218,4.746 L36.218,10.864 L34.916,10.864 L34.916,3.892 C35.224,3.78 35.6066667,3.675 36.064,3.577 C36.5213333,3.479 37.0346667,3.43 37.604,3.43 Z\" id=\"path-5\"></path>\r\n <path d=\"M39.914,7.238 C39.914,6.594 40.0073333,6.03166667 40.194,5.551 C40.3806667,5.07033333 40.628,4.67133333 40.936,4.354 C41.244,4.03666667 41.5986667,3.79866667 42,3.64 C42.4013333,3.48133333 42.812,3.402 43.232,3.402 C44.212,3.402 44.9633333,3.70766667 45.486,4.319 C46.0086667,4.93033333 46.27,5.86133333 46.27,7.112 C46.27,7.168 46.27,7.24033333 46.27,7.329 C46.27,7.41766667 46.2653333,7.49933333 46.256,7.574 L41.272,7.574 C41.328,8.33 41.5473333,8.904 41.93,9.296 C42.3126667,9.688 42.91,9.884 43.722,9.884 C44.1793333,9.884 44.5643333,9.84433333 44.877,9.765 C45.1896667,9.68566667 45.4253333,9.60866667 45.584,9.534 L45.766,10.626 C45.6073333,10.71 45.3296667,10.7986667 44.933,10.892 C44.5363333,10.9853333 44.086,11.032 43.582,11.032 C42.9473333,11.032 42.399,10.9363333 41.937,10.745 C41.475,10.5536667 41.0946667,10.29 40.796,9.954 C40.4973333,9.618 40.2756667,9.219 40.131,8.757 C39.9863333,8.295 39.914,7.78866667 39.914,7.238 Z M44.912,6.524 C44.9213333,5.936 44.7743333,5.453 44.471,5.075 C44.1676667,4.697 43.75,4.508 43.218,4.508 C42.9193333,4.508 42.6556667,4.56633333 42.427,4.683 C42.1983333,4.79966667 42.0046667,4.95133333 41.846,5.138 C41.6873333,5.32466667 41.5636667,5.53933333 41.475,5.782 C41.3863333,6.02466667 41.328,6.272 41.3,6.524 L44.912,6.524 Z\" id=\"path-6\"></path>\r\n <path d=\"M52.85,5.124 C52.6913333,4.99333333 52.4626667,4.86733333 52.164,4.746 C51.8653333,4.62466667 51.5386667,4.564 51.184,4.564 C50.8106667,4.564 50.491,4.63166667 50.225,4.767 C49.959,4.90233333 49.742,5.089 49.574,5.327 C49.406,5.565 49.2846667,5.84733333 49.21,6.174 C49.1353333,6.50066667 49.098,6.85066667 49.098,7.224 C49.098,8.07333333 49.308,8.729 49.728,9.191 C50.148,9.653 50.708,9.884 51.408,9.884 C51.7626667,9.884 52.059,9.86766667 52.297,9.835 C52.535,9.80233333 52.7193333,9.76733333 52.85,9.73 L52.85,5.124 Z M52.85,0.224 L54.152,0 L54.152,10.654 C53.8533333,10.738 53.4706667,10.822 53.004,10.906 C52.5373333,10.99 52.0006667,11.032 51.394,11.032 C50.834,11.032 50.33,10.9433333 49.882,10.766 C49.434,10.5886667 49.0513333,10.3366667 48.734,10.01 C48.4166667,9.68333333 48.1716667,9.28433333 47.999,8.813 C47.8263333,8.34166667 47.74,7.812 47.74,7.224 C47.74,6.664 47.8123333,6.15066667 47.957,5.684 C48.1016667,5.21733333 48.314,4.816 48.594,4.48 C48.874,4.144 49.217,3.88266667 49.623,3.696 C50.029,3.50933333 50.4933333,3.416 51.016,3.416 C51.436,3.416 51.807,3.472 52.129,3.584 C52.451,3.696 52.6913333,3.80333333 52.85,3.906 L52.85,0.224 Z\" id=\"path-7\"></path>\r\n <path d=\"M60.928,3.906 C61.0866667,3.80333333 61.327,3.696 61.649,3.584 C61.971,3.472 62.342,3.416 62.762,3.416 C63.2846667,3.416 63.749,3.50933333 64.155,3.696 C64.561,3.88266667 64.904,4.144 65.184,4.48 C65.464,4.816 65.6763333,5.21733333 65.821,5.684 C65.9656667,6.15066667 66.038,6.664 66.038,7.224 C66.038,7.812 65.9516667,8.34166667 65.779,8.813 C65.6063333,9.28433333 65.3613333,9.68333333 65.044,10.01 C64.7266667,10.3366667 64.344,10.5886667 63.896,10.766 C63.448,10.9433333 62.944,11.032 62.384,11.032 C61.7773333,11.032 61.2406667,10.99 60.774,10.906 C60.3073333,10.822 59.9246667,10.738 59.626,10.654 L59.626,0.224 L60.928,0 L60.928,3.906 Z M60.928,9.73 C61.0586667,9.76733333 61.243,9.80233333 61.481,9.835 C61.719,9.86766667 62.0153333,9.884 62.37,9.884 C63.07,9.884 63.63,9.653 64.05,9.191 C64.47,8.729 64.68,8.07333333 64.68,7.224 C64.68,6.85066667 64.6426667,6.50066667 64.568,6.174 C64.4933333,5.84733333 64.372,5.565 64.204,5.327 C64.036,5.089 63.819,4.90233333 63.553,4.767 C63.287,4.63166667 62.9673333,4.564 62.594,4.564 C62.2393333,4.564 61.9126667,4.62466667 61.614,4.746 C61.3153333,4.86733333 61.0866667,4.99333333 60.928,5.124 L60.928,9.73 Z\" id=\"path-8\"></path>\r\n <path d=\"M66.836,12.222 C66.9386667,12.2686667 67.0716667,12.313 67.235,12.355 C67.3983333,12.397 67.5593333,12.418 67.718,12.418 C68.2313333,12.418 68.6326667,12.3036667 68.922,12.075 C69.2113333,11.8463333 69.4726667,11.4753333 69.706,10.962 C69.118,9.842 68.5696667,8.65433333 68.061,7.399 C67.5523333,6.14366667 67.13,4.872 66.794,3.584 L68.194,3.584 C68.2966667,4.004 68.4203333,4.45666667 68.565,4.942 C68.7096667,5.42733333 68.8706667,5.92666667 69.048,6.44 C69.2253333,6.95333333 69.4166667,7.46666667 69.622,7.98 C69.8273333,8.49333333 70.042,8.988 70.266,9.464 C70.6206667,8.484 70.9286667,7.51333333 71.19,6.552 C71.4513333,5.59066667 71.6986667,4.60133333 71.932,3.584 L73.276,3.584 C72.94,4.956 72.5666667,6.27433333 72.156,7.539 C71.7453333,8.80366667 71.302,9.98666667 70.826,11.088 C70.6393333,11.508 70.4456667,11.8696667 70.245,12.173 C70.0443333,12.4763333 69.8226667,12.726 69.58,12.922 C69.3373333,13.118 69.0643333,13.2626667 68.761,13.356 C68.4576667,13.4493333 68.1146667,13.496 67.732,13.496 C67.6293333,13.496 67.522,13.489 67.41,13.475 C67.298,13.461 67.1883333,13.4423333 67.081,13.419 C66.9736667,13.3956667 66.8756667,13.37 66.787,13.342 C66.6983333,13.314 66.6353333,13.2906667 66.598,13.272 L66.836,12.222 Z\" id=\"path-9\"></path>\r\n </defs>\r\n <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\r\n <g id=\"Group-Copy-2\" transform=\"translate(0.338000, 0.500000)\">\r\n <g id=\"Powered-by\" transform=\"translate(0.000000, 45.636000)\" fill-rule=\"nonzero\" opacity=\"0.900000036\">\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-1\"></use>\r\n <use xlink:href=\"#path-1\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-2\"></use>\r\n <use xlink:href=\"#path-2\"></use>\r\n </g>\r\n <g id=\"Path\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-3\"></use>\r\n <use xlink:href=\"#path-3\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-4\"></use>\r\n <use xlink:href=\"#path-4\"></use>\r\n </g>\r\n <g id=\"Path\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-5\"></use>\r\n <use xlink:href=\"#path-5\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-6\"></use>\r\n <use xlink:href=\"#path-6\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-7\"></use>\r\n <use xlink:href=\"#path-7\"></use>\r\n </g>\r\n <g id=\"Shape\">\r\n <use fill=\"#FFFFFF\" xlink:href=\"#path-8\"></use>\r\n <use fill=\"#6E6E6E\" xlink:href=\"#path-8\"></use>\r\n </g>\r\n <g id=\"Path\">\r\n <use fill=\"#FFFFFF\" xlink:href=\"#path-9\"></use>\r\n <use fill=\"#6E6E6E\" xlink:href=\"#path-9\"></use>\r\n </g>\r\n </g>\r\n <image id=\"Bitmap\" x=\"77.662\" y=\"0\" width=\"151.111111\" height=\"68\" xlink:href=\"data:image/png;base64,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\"></image>\r\n </g>\r\n </g>\r\n</svg>\r\n</ng-template>", styles: [""], dependencies: [{ kind: "directive", type: i4$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
430
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PoweredByLogoTemplateComponent, isStandalone: true, selector: "anna-cognito-lib-powered-by-logo-template", ngImport: i0, template: "<ng-container [ngTemplateOutlet]=\"poweredBySurewavesLogo\"> \r\n</ng-container>\r\n\r\n<ng-template #poweredBySurewavesLogo>\r\n<svg width=\"230px\" height=\"69px\" viewBox=\"0 0 230 69\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n <defs>\r\n <path d=\"M2.576,1.064 C3.93866667,1.064 4.98633333,1.323 5.719,1.841 C6.45166667,2.359 6.818,3.13133333 6.818,4.158 C6.818,4.718 6.71766667,5.19633333 6.517,5.593 C6.31633333,5.98966667 6.027,6.31166667 5.649,6.559 C5.271,6.80633333 4.81133333,6.986 4.27,7.098 C3.72866667,7.21 3.11733333,7.266 2.436,7.266 L1.358,7.266 L1.358,10.864 L0,10.864 L0,1.302 C0.382666667,1.20866667 0.809666667,1.14566667 1.281,1.113 C1.75233333,1.08033333 2.184,1.064 2.576,1.064 Z M2.688,2.254 C2.10933333,2.254 1.666,2.268 1.358,2.296 L1.358,6.104 L2.38,6.104 C2.84666667,6.104 3.26666667,6.07366667 3.64,6.013 C4.01333333,5.95233333 4.32833333,5.84966667 4.585,5.705 C4.84166667,5.56033333 5.04,5.362 5.18,5.11 C5.32,4.858 5.39,4.536 5.39,4.144 C5.39,3.77066667 5.31766667,3.46266667 5.173,3.22 C5.02833333,2.97733333 4.83233333,2.78366667 4.585,2.639 C4.33766667,2.49433333 4.05066667,2.394 3.724,2.338 C3.39733333,2.282 3.052,2.254 2.688,2.254 Z\" id=\"path-1\"></path>\r\n <path d=\"M14.56,7.224 C14.56,7.80266667 14.476,8.32533333 14.308,8.792 C14.14,9.25866667 13.9043333,9.66 13.601,9.996 C13.2976667,10.332 12.936,10.591 12.516,10.773 C12.096,10.955 11.6386667,11.046 11.144,11.046 C10.6493333,11.046 10.192,10.955 9.772,10.773 C9.352,10.591 8.99033333,10.332 8.687,9.996 C8.38366667,9.66 8.148,9.25866667 7.98,8.792 C7.812,8.32533333 7.728,7.80266667 7.728,7.224 C7.728,6.65466667 7.812,6.13433333 7.98,5.663 C8.148,5.19166667 8.38366667,4.788 8.687,4.452 C8.99033333,4.116 9.352,3.857 9.772,3.675 C10.192,3.493 10.6493333,3.402 11.144,3.402 C11.6386667,3.402 12.096,3.493 12.516,3.675 C12.936,3.857 13.2976667,4.116 13.601,4.452 C13.9043333,4.788 14.14,5.19166667 14.308,5.663 C14.476,6.13433333 14.56,6.65466667 14.56,7.224 Z M13.202,7.224 C13.202,6.40266667 13.0176667,5.75166667 12.649,5.271 C12.2803333,4.79033333 11.7786667,4.55 11.144,4.55 C10.5093333,4.55 10.0076667,4.79033333 9.639,5.271 C9.27033333,5.75166667 9.086,6.40266667 9.086,7.224 C9.086,8.04533333 9.27033333,8.69633333 9.639,9.177 C10.0076667,9.65766667 10.5093333,9.898 11.144,9.898 C11.7786667,9.898 12.2803333,9.65766667 12.649,9.177 C13.0176667,8.69633333 13.202,8.04533333 13.202,7.224 Z\" id=\"path-2\"></path>\r\n <path d=\"M22.162,10.864 C21.9006667,10.192 21.623,9.42433333 21.329,8.561 C21.035,7.69766667 20.7666667,6.79933333 20.524,5.866 C20.2813333,6.79933333 20.0153333,7.69766667 19.726,8.561 C19.4366667,9.42433333 19.1613333,10.192 18.9,10.864 L17.766,10.864 C17.3366667,9.90266667 16.9166667,8.806 16.506,7.574 C16.0953333,6.342 15.708,5.012 15.344,3.584 L16.744,3.584 C16.8373333,4.02266667 16.9493333,4.49866667 17.08,5.012 C17.2106667,5.52533333 17.3483333,6.03866667 17.493,6.552 C17.6376667,7.06533333 17.7893333,7.56 17.948,8.036 C18.1066667,8.512 18.256,8.92733333 18.396,9.282 C18.5546667,8.84333333 18.711,8.379 18.865,7.889 C19.019,7.399 19.166,6.90433333 19.306,6.405 C19.446,5.90566667 19.579,5.41566667 19.705,4.935 C19.831,4.45433333 19.9406667,4.004 20.034,3.584 L21.112,3.584 C21.196,4.004 21.2986667,4.45433333 21.42,4.935 C21.5413333,5.41566667 21.672,5.90566667 21.812,6.405 C21.952,6.90433333 22.099,7.399 22.253,7.889 C22.407,8.379 22.5633333,8.84333333 22.722,9.282 C22.862,8.92733333 23.009,8.512 23.163,8.036 C23.317,7.56 23.4686667,7.06533333 23.618,6.552 C23.7673333,6.03866667 23.9073333,5.52533333 24.038,5.012 C24.1686667,4.49866667 24.2806667,4.02266667 24.374,3.584 L25.718,3.584 C25.354,5.012 24.9666667,6.342 24.556,7.574 C24.1453333,8.806 23.7253333,9.90266667 23.296,10.864 L22.162,10.864 Z\" id=\"path-3\"></path>\r\n <path d=\"M26.684,7.238 C26.684,6.594 26.7773333,6.03166667 26.964,5.551 C27.1506667,5.07033333 27.398,4.67133333 27.706,4.354 C28.014,4.03666667 28.3686667,3.79866667 28.77,3.64 C29.1713333,3.48133333 29.582,3.402 30.002,3.402 C30.982,3.402 31.7333333,3.70766667 32.256,4.319 C32.7786667,4.93033333 33.04,5.86133333 33.04,7.112 C33.04,7.168 33.04,7.24033333 33.04,7.329 C33.04,7.41766667 33.0353333,7.49933333 33.026,7.574 L28.042,7.574 C28.098,8.33 28.3173333,8.904 28.7,9.296 C29.0826667,9.688 29.68,9.884 30.492,9.884 C30.9493333,9.884 31.3343333,9.84433333 31.647,9.765 C31.9596667,9.68566667 32.1953333,9.60866667 32.354,9.534 L32.536,10.626 C32.3773333,10.71 32.0996667,10.7986667 31.703,10.892 C31.3063333,10.9853333 30.856,11.032 30.352,11.032 C29.7173333,11.032 29.169,10.9363333 28.707,10.745 C28.245,10.5536667 27.8646667,10.29 27.566,9.954 C27.2673333,9.618 27.0456667,9.219 26.901,8.757 C26.7563333,8.295 26.684,7.78866667 26.684,7.238 Z M31.682,6.524 C31.6913333,5.936 31.5443333,5.453 31.241,5.075 C30.9376667,4.697 30.52,4.508 29.988,4.508 C29.6893333,4.508 29.4256667,4.56633333 29.197,4.683 C28.9683333,4.79966667 28.7746667,4.95133333 28.616,5.138 C28.4573333,5.32466667 28.3336667,5.53933333 28.245,5.782 C28.1563333,6.02466667 28.098,6.272 28.07,6.524 L31.682,6.524 Z\" id=\"path-4\"></path>\r\n <path d=\"M37.604,3.43 C37.716,3.43 37.8443333,3.437 37.989,3.451 C38.1336667,3.465 38.276,3.48366667 38.416,3.507 C38.556,3.53033333 38.6843333,3.55366667 38.801,3.577 C38.9176667,3.60033333 39.004,3.62133333 39.06,3.64 L38.836,4.774 C38.7333333,4.73666667 38.563,4.69233333 38.325,4.641 C38.087,4.58966667 37.7813333,4.564 37.408,4.564 C37.1653333,4.564 36.925,4.58966667 36.687,4.641 C36.449,4.69233333 36.2926667,4.72733333 36.218,4.746 L36.218,10.864 L34.916,10.864 L34.916,3.892 C35.224,3.78 35.6066667,3.675 36.064,3.577 C36.5213333,3.479 37.0346667,3.43 37.604,3.43 Z\" id=\"path-5\"></path>\r\n <path d=\"M39.914,7.238 C39.914,6.594 40.0073333,6.03166667 40.194,5.551 C40.3806667,5.07033333 40.628,4.67133333 40.936,4.354 C41.244,4.03666667 41.5986667,3.79866667 42,3.64 C42.4013333,3.48133333 42.812,3.402 43.232,3.402 C44.212,3.402 44.9633333,3.70766667 45.486,4.319 C46.0086667,4.93033333 46.27,5.86133333 46.27,7.112 C46.27,7.168 46.27,7.24033333 46.27,7.329 C46.27,7.41766667 46.2653333,7.49933333 46.256,7.574 L41.272,7.574 C41.328,8.33 41.5473333,8.904 41.93,9.296 C42.3126667,9.688 42.91,9.884 43.722,9.884 C44.1793333,9.884 44.5643333,9.84433333 44.877,9.765 C45.1896667,9.68566667 45.4253333,9.60866667 45.584,9.534 L45.766,10.626 C45.6073333,10.71 45.3296667,10.7986667 44.933,10.892 C44.5363333,10.9853333 44.086,11.032 43.582,11.032 C42.9473333,11.032 42.399,10.9363333 41.937,10.745 C41.475,10.5536667 41.0946667,10.29 40.796,9.954 C40.4973333,9.618 40.2756667,9.219 40.131,8.757 C39.9863333,8.295 39.914,7.78866667 39.914,7.238 Z M44.912,6.524 C44.9213333,5.936 44.7743333,5.453 44.471,5.075 C44.1676667,4.697 43.75,4.508 43.218,4.508 C42.9193333,4.508 42.6556667,4.56633333 42.427,4.683 C42.1983333,4.79966667 42.0046667,4.95133333 41.846,5.138 C41.6873333,5.32466667 41.5636667,5.53933333 41.475,5.782 C41.3863333,6.02466667 41.328,6.272 41.3,6.524 L44.912,6.524 Z\" id=\"path-6\"></path>\r\n <path d=\"M52.85,5.124 C52.6913333,4.99333333 52.4626667,4.86733333 52.164,4.746 C51.8653333,4.62466667 51.5386667,4.564 51.184,4.564 C50.8106667,4.564 50.491,4.63166667 50.225,4.767 C49.959,4.90233333 49.742,5.089 49.574,5.327 C49.406,5.565 49.2846667,5.84733333 49.21,6.174 C49.1353333,6.50066667 49.098,6.85066667 49.098,7.224 C49.098,8.07333333 49.308,8.729 49.728,9.191 C50.148,9.653 50.708,9.884 51.408,9.884 C51.7626667,9.884 52.059,9.86766667 52.297,9.835 C52.535,9.80233333 52.7193333,9.76733333 52.85,9.73 L52.85,5.124 Z M52.85,0.224 L54.152,0 L54.152,10.654 C53.8533333,10.738 53.4706667,10.822 53.004,10.906 C52.5373333,10.99 52.0006667,11.032 51.394,11.032 C50.834,11.032 50.33,10.9433333 49.882,10.766 C49.434,10.5886667 49.0513333,10.3366667 48.734,10.01 C48.4166667,9.68333333 48.1716667,9.28433333 47.999,8.813 C47.8263333,8.34166667 47.74,7.812 47.74,7.224 C47.74,6.664 47.8123333,6.15066667 47.957,5.684 C48.1016667,5.21733333 48.314,4.816 48.594,4.48 C48.874,4.144 49.217,3.88266667 49.623,3.696 C50.029,3.50933333 50.4933333,3.416 51.016,3.416 C51.436,3.416 51.807,3.472 52.129,3.584 C52.451,3.696 52.6913333,3.80333333 52.85,3.906 L52.85,0.224 Z\" id=\"path-7\"></path>\r\n <path d=\"M60.928,3.906 C61.0866667,3.80333333 61.327,3.696 61.649,3.584 C61.971,3.472 62.342,3.416 62.762,3.416 C63.2846667,3.416 63.749,3.50933333 64.155,3.696 C64.561,3.88266667 64.904,4.144 65.184,4.48 C65.464,4.816 65.6763333,5.21733333 65.821,5.684 C65.9656667,6.15066667 66.038,6.664 66.038,7.224 C66.038,7.812 65.9516667,8.34166667 65.779,8.813 C65.6063333,9.28433333 65.3613333,9.68333333 65.044,10.01 C64.7266667,10.3366667 64.344,10.5886667 63.896,10.766 C63.448,10.9433333 62.944,11.032 62.384,11.032 C61.7773333,11.032 61.2406667,10.99 60.774,10.906 C60.3073333,10.822 59.9246667,10.738 59.626,10.654 L59.626,0.224 L60.928,0 L60.928,3.906 Z M60.928,9.73 C61.0586667,9.76733333 61.243,9.80233333 61.481,9.835 C61.719,9.86766667 62.0153333,9.884 62.37,9.884 C63.07,9.884 63.63,9.653 64.05,9.191 C64.47,8.729 64.68,8.07333333 64.68,7.224 C64.68,6.85066667 64.6426667,6.50066667 64.568,6.174 C64.4933333,5.84733333 64.372,5.565 64.204,5.327 C64.036,5.089 63.819,4.90233333 63.553,4.767 C63.287,4.63166667 62.9673333,4.564 62.594,4.564 C62.2393333,4.564 61.9126667,4.62466667 61.614,4.746 C61.3153333,4.86733333 61.0866667,4.99333333 60.928,5.124 L60.928,9.73 Z\" id=\"path-8\"></path>\r\n <path d=\"M66.836,12.222 C66.9386667,12.2686667 67.0716667,12.313 67.235,12.355 C67.3983333,12.397 67.5593333,12.418 67.718,12.418 C68.2313333,12.418 68.6326667,12.3036667 68.922,12.075 C69.2113333,11.8463333 69.4726667,11.4753333 69.706,10.962 C69.118,9.842 68.5696667,8.65433333 68.061,7.399 C67.5523333,6.14366667 67.13,4.872 66.794,3.584 L68.194,3.584 C68.2966667,4.004 68.4203333,4.45666667 68.565,4.942 C68.7096667,5.42733333 68.8706667,5.92666667 69.048,6.44 C69.2253333,6.95333333 69.4166667,7.46666667 69.622,7.98 C69.8273333,8.49333333 70.042,8.988 70.266,9.464 C70.6206667,8.484 70.9286667,7.51333333 71.19,6.552 C71.4513333,5.59066667 71.6986667,4.60133333 71.932,3.584 L73.276,3.584 C72.94,4.956 72.5666667,6.27433333 72.156,7.539 C71.7453333,8.80366667 71.302,9.98666667 70.826,11.088 C70.6393333,11.508 70.4456667,11.8696667 70.245,12.173 C70.0443333,12.4763333 69.8226667,12.726 69.58,12.922 C69.3373333,13.118 69.0643333,13.2626667 68.761,13.356 C68.4576667,13.4493333 68.1146667,13.496 67.732,13.496 C67.6293333,13.496 67.522,13.489 67.41,13.475 C67.298,13.461 67.1883333,13.4423333 67.081,13.419 C66.9736667,13.3956667 66.8756667,13.37 66.787,13.342 C66.6983333,13.314 66.6353333,13.2906667 66.598,13.272 L66.836,12.222 Z\" id=\"path-9\"></path>\r\n </defs>\r\n <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\r\n <g id=\"Group-Copy-2\" transform=\"translate(0.338000, 0.500000)\">\r\n <g id=\"Powered-by\" transform=\"translate(0.000000, 45.636000)\" fill-rule=\"nonzero\" opacity=\"0.900000036\">\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-1\"></use>\r\n <use xlink:href=\"#path-1\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-2\"></use>\r\n <use xlink:href=\"#path-2\"></use>\r\n </g>\r\n <g id=\"Path\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-3\"></use>\r\n <use xlink:href=\"#path-3\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-4\"></use>\r\n <use xlink:href=\"#path-4\"></use>\r\n </g>\r\n <g id=\"Path\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-5\"></use>\r\n <use xlink:href=\"#path-5\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-6\"></use>\r\n <use xlink:href=\"#path-6\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-7\"></use>\r\n <use xlink:href=\"#path-7\"></use>\r\n </g>\r\n <g id=\"Shape\">\r\n <use fill=\"#FFFFFF\" xlink:href=\"#path-8\"></use>\r\n <use fill=\"#6E6E6E\" xlink:href=\"#path-8\"></use>\r\n </g>\r\n <g id=\"Path\">\r\n <use fill=\"#FFFFFF\" xlink:href=\"#path-9\"></use>\r\n <use fill=\"#6E6E6E\" xlink:href=\"#path-9\"></use>\r\n </g>\r\n </g>\r\n <image id=\"Bitmap\" x=\"77.662\" y=\"0\" width=\"151.111111\" height=\"68\" xlink:href=\"data:image/png;base64,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\"></image>\r\n </g>\r\n </g>\r\n</svg>\r\n</ng-template>", styles: [""], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
432
431
|
}
|
|
433
432
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PoweredByLogoTemplateComponent, decorators: [{
|
|
434
433
|
type: Component,
|
|
435
|
-
args: [{ selector: 'anna-cognito-lib-powered-by-logo-template', template: "<ng-container [ngTemplateOutlet]=\"poweredBySurewavesLogo\"> \r\n</ng-container>\r\n\r\n<ng-template #poweredBySurewavesLogo>\r\n<svg width=\"230px\" height=\"69px\" viewBox=\"0 0 230 69\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n <defs>\r\n <path d=\"M2.576,1.064 C3.93866667,1.064 4.98633333,1.323 5.719,1.841 C6.45166667,2.359 6.818,3.13133333 6.818,4.158 C6.818,4.718 6.71766667,5.19633333 6.517,5.593 C6.31633333,5.98966667 6.027,6.31166667 5.649,6.559 C5.271,6.80633333 4.81133333,6.986 4.27,7.098 C3.72866667,7.21 3.11733333,7.266 2.436,7.266 L1.358,7.266 L1.358,10.864 L0,10.864 L0,1.302 C0.382666667,1.20866667 0.809666667,1.14566667 1.281,1.113 C1.75233333,1.08033333 2.184,1.064 2.576,1.064 Z M2.688,2.254 C2.10933333,2.254 1.666,2.268 1.358,2.296 L1.358,6.104 L2.38,6.104 C2.84666667,6.104 3.26666667,6.07366667 3.64,6.013 C4.01333333,5.95233333 4.32833333,5.84966667 4.585,5.705 C4.84166667,5.56033333 5.04,5.362 5.18,5.11 C5.32,4.858 5.39,4.536 5.39,4.144 C5.39,3.77066667 5.31766667,3.46266667 5.173,3.22 C5.02833333,2.97733333 4.83233333,2.78366667 4.585,2.639 C4.33766667,2.49433333 4.05066667,2.394 3.724,2.338 C3.39733333,2.282 3.052,2.254 2.688,2.254 Z\" id=\"path-1\"></path>\r\n <path d=\"M14.56,7.224 C14.56,7.80266667 14.476,8.32533333 14.308,8.792 C14.14,9.25866667 13.9043333,9.66 13.601,9.996 C13.2976667,10.332 12.936,10.591 12.516,10.773 C12.096,10.955 11.6386667,11.046 11.144,11.046 C10.6493333,11.046 10.192,10.955 9.772,10.773 C9.352,10.591 8.99033333,10.332 8.687,9.996 C8.38366667,9.66 8.148,9.25866667 7.98,8.792 C7.812,8.32533333 7.728,7.80266667 7.728,7.224 C7.728,6.65466667 7.812,6.13433333 7.98,5.663 C8.148,5.19166667 8.38366667,4.788 8.687,4.452 C8.99033333,4.116 9.352,3.857 9.772,3.675 C10.192,3.493 10.6493333,3.402 11.144,3.402 C11.6386667,3.402 12.096,3.493 12.516,3.675 C12.936,3.857 13.2976667,4.116 13.601,4.452 C13.9043333,4.788 14.14,5.19166667 14.308,5.663 C14.476,6.13433333 14.56,6.65466667 14.56,7.224 Z M13.202,7.224 C13.202,6.40266667 13.0176667,5.75166667 12.649,5.271 C12.2803333,4.79033333 11.7786667,4.55 11.144,4.55 C10.5093333,4.55 10.0076667,4.79033333 9.639,5.271 C9.27033333,5.75166667 9.086,6.40266667 9.086,7.224 C9.086,8.04533333 9.27033333,8.69633333 9.639,9.177 C10.0076667,9.65766667 10.5093333,9.898 11.144,9.898 C11.7786667,9.898 12.2803333,9.65766667 12.649,9.177 C13.0176667,8.69633333 13.202,8.04533333 13.202,7.224 Z\" id=\"path-2\"></path>\r\n <path d=\"M22.162,10.864 C21.9006667,10.192 21.623,9.42433333 21.329,8.561 C21.035,7.69766667 20.7666667,6.79933333 20.524,5.866 C20.2813333,6.79933333 20.0153333,7.69766667 19.726,8.561 C19.4366667,9.42433333 19.1613333,10.192 18.9,10.864 L17.766,10.864 C17.3366667,9.90266667 16.9166667,8.806 16.506,7.574 C16.0953333,6.342 15.708,5.012 15.344,3.584 L16.744,3.584 C16.8373333,4.02266667 16.9493333,4.49866667 17.08,5.012 C17.2106667,5.52533333 17.3483333,6.03866667 17.493,6.552 C17.6376667,7.06533333 17.7893333,7.56 17.948,8.036 C18.1066667,8.512 18.256,8.92733333 18.396,9.282 C18.5546667,8.84333333 18.711,8.379 18.865,7.889 C19.019,7.399 19.166,6.90433333 19.306,6.405 C19.446,5.90566667 19.579,5.41566667 19.705,4.935 C19.831,4.45433333 19.9406667,4.004 20.034,3.584 L21.112,3.584 C21.196,4.004 21.2986667,4.45433333 21.42,4.935 C21.5413333,5.41566667 21.672,5.90566667 21.812,6.405 C21.952,6.90433333 22.099,7.399 22.253,7.889 C22.407,8.379 22.5633333,8.84333333 22.722,9.282 C22.862,8.92733333 23.009,8.512 23.163,8.036 C23.317,7.56 23.4686667,7.06533333 23.618,6.552 C23.7673333,6.03866667 23.9073333,5.52533333 24.038,5.012 C24.1686667,4.49866667 24.2806667,4.02266667 24.374,3.584 L25.718,3.584 C25.354,5.012 24.9666667,6.342 24.556,7.574 C24.1453333,8.806 23.7253333,9.90266667 23.296,10.864 L22.162,10.864 Z\" id=\"path-3\"></path>\r\n <path d=\"M26.684,7.238 C26.684,6.594 26.7773333,6.03166667 26.964,5.551 C27.1506667,5.07033333 27.398,4.67133333 27.706,4.354 C28.014,4.03666667 28.3686667,3.79866667 28.77,3.64 C29.1713333,3.48133333 29.582,3.402 30.002,3.402 C30.982,3.402 31.7333333,3.70766667 32.256,4.319 C32.7786667,4.93033333 33.04,5.86133333 33.04,7.112 C33.04,7.168 33.04,7.24033333 33.04,7.329 C33.04,7.41766667 33.0353333,7.49933333 33.026,7.574 L28.042,7.574 C28.098,8.33 28.3173333,8.904 28.7,9.296 C29.0826667,9.688 29.68,9.884 30.492,9.884 C30.9493333,9.884 31.3343333,9.84433333 31.647,9.765 C31.9596667,9.68566667 32.1953333,9.60866667 32.354,9.534 L32.536,10.626 C32.3773333,10.71 32.0996667,10.7986667 31.703,10.892 C31.3063333,10.9853333 30.856,11.032 30.352,11.032 C29.7173333,11.032 29.169,10.9363333 28.707,10.745 C28.245,10.5536667 27.8646667,10.29 27.566,9.954 C27.2673333,9.618 27.0456667,9.219 26.901,8.757 C26.7563333,8.295 26.684,7.78866667 26.684,7.238 Z M31.682,6.524 C31.6913333,5.936 31.5443333,5.453 31.241,5.075 C30.9376667,4.697 30.52,4.508 29.988,4.508 C29.6893333,4.508 29.4256667,4.56633333 29.197,4.683 C28.9683333,4.79966667 28.7746667,4.95133333 28.616,5.138 C28.4573333,5.32466667 28.3336667,5.53933333 28.245,5.782 C28.1563333,6.02466667 28.098,6.272 28.07,6.524 L31.682,6.524 Z\" id=\"path-4\"></path>\r\n <path d=\"M37.604,3.43 C37.716,3.43 37.8443333,3.437 37.989,3.451 C38.1336667,3.465 38.276,3.48366667 38.416,3.507 C38.556,3.53033333 38.6843333,3.55366667 38.801,3.577 C38.9176667,3.60033333 39.004,3.62133333 39.06,3.64 L38.836,4.774 C38.7333333,4.73666667 38.563,4.69233333 38.325,4.641 C38.087,4.58966667 37.7813333,4.564 37.408,4.564 C37.1653333,4.564 36.925,4.58966667 36.687,4.641 C36.449,4.69233333 36.2926667,4.72733333 36.218,4.746 L36.218,10.864 L34.916,10.864 L34.916,3.892 C35.224,3.78 35.6066667,3.675 36.064,3.577 C36.5213333,3.479 37.0346667,3.43 37.604,3.43 Z\" id=\"path-5\"></path>\r\n <path d=\"M39.914,7.238 C39.914,6.594 40.0073333,6.03166667 40.194,5.551 C40.3806667,5.07033333 40.628,4.67133333 40.936,4.354 C41.244,4.03666667 41.5986667,3.79866667 42,3.64 C42.4013333,3.48133333 42.812,3.402 43.232,3.402 C44.212,3.402 44.9633333,3.70766667 45.486,4.319 C46.0086667,4.93033333 46.27,5.86133333 46.27,7.112 C46.27,7.168 46.27,7.24033333 46.27,7.329 C46.27,7.41766667 46.2653333,7.49933333 46.256,7.574 L41.272,7.574 C41.328,8.33 41.5473333,8.904 41.93,9.296 C42.3126667,9.688 42.91,9.884 43.722,9.884 C44.1793333,9.884 44.5643333,9.84433333 44.877,9.765 C45.1896667,9.68566667 45.4253333,9.60866667 45.584,9.534 L45.766,10.626 C45.6073333,10.71 45.3296667,10.7986667 44.933,10.892 C44.5363333,10.9853333 44.086,11.032 43.582,11.032 C42.9473333,11.032 42.399,10.9363333 41.937,10.745 C41.475,10.5536667 41.0946667,10.29 40.796,9.954 C40.4973333,9.618 40.2756667,9.219 40.131,8.757 C39.9863333,8.295 39.914,7.78866667 39.914,7.238 Z M44.912,6.524 C44.9213333,5.936 44.7743333,5.453 44.471,5.075 C44.1676667,4.697 43.75,4.508 43.218,4.508 C42.9193333,4.508 42.6556667,4.56633333 42.427,4.683 C42.1983333,4.79966667 42.0046667,4.95133333 41.846,5.138 C41.6873333,5.32466667 41.5636667,5.53933333 41.475,5.782 C41.3863333,6.02466667 41.328,6.272 41.3,6.524 L44.912,6.524 Z\" id=\"path-6\"></path>\r\n <path d=\"M52.85,5.124 C52.6913333,4.99333333 52.4626667,4.86733333 52.164,4.746 C51.8653333,4.62466667 51.5386667,4.564 51.184,4.564 C50.8106667,4.564 50.491,4.63166667 50.225,4.767 C49.959,4.90233333 49.742,5.089 49.574,5.327 C49.406,5.565 49.2846667,5.84733333 49.21,6.174 C49.1353333,6.50066667 49.098,6.85066667 49.098,7.224 C49.098,8.07333333 49.308,8.729 49.728,9.191 C50.148,9.653 50.708,9.884 51.408,9.884 C51.7626667,9.884 52.059,9.86766667 52.297,9.835 C52.535,9.80233333 52.7193333,9.76733333 52.85,9.73 L52.85,5.124 Z M52.85,0.224 L54.152,0 L54.152,10.654 C53.8533333,10.738 53.4706667,10.822 53.004,10.906 C52.5373333,10.99 52.0006667,11.032 51.394,11.032 C50.834,11.032 50.33,10.9433333 49.882,10.766 C49.434,10.5886667 49.0513333,10.3366667 48.734,10.01 C48.4166667,9.68333333 48.1716667,9.28433333 47.999,8.813 C47.8263333,8.34166667 47.74,7.812 47.74,7.224 C47.74,6.664 47.8123333,6.15066667 47.957,5.684 C48.1016667,5.21733333 48.314,4.816 48.594,4.48 C48.874,4.144 49.217,3.88266667 49.623,3.696 C50.029,3.50933333 50.4933333,3.416 51.016,3.416 C51.436,3.416 51.807,3.472 52.129,3.584 C52.451,3.696 52.6913333,3.80333333 52.85,3.906 L52.85,0.224 Z\" id=\"path-7\"></path>\r\n <path d=\"M60.928,3.906 C61.0866667,3.80333333 61.327,3.696 61.649,3.584 C61.971,3.472 62.342,3.416 62.762,3.416 C63.2846667,3.416 63.749,3.50933333 64.155,3.696 C64.561,3.88266667 64.904,4.144 65.184,4.48 C65.464,4.816 65.6763333,5.21733333 65.821,5.684 C65.9656667,6.15066667 66.038,6.664 66.038,7.224 C66.038,7.812 65.9516667,8.34166667 65.779,8.813 C65.6063333,9.28433333 65.3613333,9.68333333 65.044,10.01 C64.7266667,10.3366667 64.344,10.5886667 63.896,10.766 C63.448,10.9433333 62.944,11.032 62.384,11.032 C61.7773333,11.032 61.2406667,10.99 60.774,10.906 C60.3073333,10.822 59.9246667,10.738 59.626,10.654 L59.626,0.224 L60.928,0 L60.928,3.906 Z M60.928,9.73 C61.0586667,9.76733333 61.243,9.80233333 61.481,9.835 C61.719,9.86766667 62.0153333,9.884 62.37,9.884 C63.07,9.884 63.63,9.653 64.05,9.191 C64.47,8.729 64.68,8.07333333 64.68,7.224 C64.68,6.85066667 64.6426667,6.50066667 64.568,6.174 C64.4933333,5.84733333 64.372,5.565 64.204,5.327 C64.036,5.089 63.819,4.90233333 63.553,4.767 C63.287,4.63166667 62.9673333,4.564 62.594,4.564 C62.2393333,4.564 61.9126667,4.62466667 61.614,4.746 C61.3153333,4.86733333 61.0866667,4.99333333 60.928,5.124 L60.928,9.73 Z\" id=\"path-8\"></path>\r\n <path d=\"M66.836,12.222 C66.9386667,12.2686667 67.0716667,12.313 67.235,12.355 C67.3983333,12.397 67.5593333,12.418 67.718,12.418 C68.2313333,12.418 68.6326667,12.3036667 68.922,12.075 C69.2113333,11.8463333 69.4726667,11.4753333 69.706,10.962 C69.118,9.842 68.5696667,8.65433333 68.061,7.399 C67.5523333,6.14366667 67.13,4.872 66.794,3.584 L68.194,3.584 C68.2966667,4.004 68.4203333,4.45666667 68.565,4.942 C68.7096667,5.42733333 68.8706667,5.92666667 69.048,6.44 C69.2253333,6.95333333 69.4166667,7.46666667 69.622,7.98 C69.8273333,8.49333333 70.042,8.988 70.266,9.464 C70.6206667,8.484 70.9286667,7.51333333 71.19,6.552 C71.4513333,5.59066667 71.6986667,4.60133333 71.932,3.584 L73.276,3.584 C72.94,4.956 72.5666667,6.27433333 72.156,7.539 C71.7453333,8.80366667 71.302,9.98666667 70.826,11.088 C70.6393333,11.508 70.4456667,11.8696667 70.245,12.173 C70.0443333,12.4763333 69.8226667,12.726 69.58,12.922 C69.3373333,13.118 69.0643333,13.2626667 68.761,13.356 C68.4576667,13.4493333 68.1146667,13.496 67.732,13.496 C67.6293333,13.496 67.522,13.489 67.41,13.475 C67.298,13.461 67.1883333,13.4423333 67.081,13.419 C66.9736667,13.3956667 66.8756667,13.37 66.787,13.342 C66.6983333,13.314 66.6353333,13.2906667 66.598,13.272 L66.836,12.222 Z\" id=\"path-9\"></path>\r\n </defs>\r\n <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\r\n <g id=\"Group-Copy-2\" transform=\"translate(0.338000, 0.500000)\">\r\n <g id=\"Powered-by\" transform=\"translate(0.000000, 45.636000)\" fill-rule=\"nonzero\" opacity=\"0.900000036\">\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-1\"></use>\r\n <use xlink:href=\"#path-1\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-2\"></use>\r\n <use xlink:href=\"#path-2\"></use>\r\n </g>\r\n <g id=\"Path\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-3\"></use>\r\n <use xlink:href=\"#path-3\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-4\"></use>\r\n <use xlink:href=\"#path-4\"></use>\r\n </g>\r\n <g id=\"Path\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-5\"></use>\r\n <use xlink:href=\"#path-5\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-6\"></use>\r\n <use xlink:href=\"#path-6\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-7\"></use>\r\n <use xlink:href=\"#path-7\"></use>\r\n </g>\r\n <g id=\"Shape\">\r\n <use fill=\"#FFFFFF\" xlink:href=\"#path-8\"></use>\r\n <use fill=\"#6E6E6E\" xlink:href=\"#path-8\"></use>\r\n </g>\r\n <g id=\"Path\">\r\n <use fill=\"#FFFFFF\" xlink:href=\"#path-9\"></use>\r\n <use fill=\"#6E6E6E\" xlink:href=\"#path-9\"></use>\r\n </g>\r\n </g>\r\n <image id=\"Bitmap\" x=\"77.662\" y=\"0\" width=\"151.111111\" height=\"68\" xlink:href=\"data:image/png;base64,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\"></image>\r\n </g>\r\n </g>\r\n</svg>\r\n</ng-template>" }]
|
|
434
|
+
args: [{ selector: 'anna-cognito-lib-powered-by-logo-template', standalone: true, imports: [NgTemplateOutlet], template: "<ng-container [ngTemplateOutlet]=\"poweredBySurewavesLogo\"> \r\n</ng-container>\r\n\r\n<ng-template #poweredBySurewavesLogo>\r\n<svg width=\"230px\" height=\"69px\" viewBox=\"0 0 230 69\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n <defs>\r\n <path d=\"M2.576,1.064 C3.93866667,1.064 4.98633333,1.323 5.719,1.841 C6.45166667,2.359 6.818,3.13133333 6.818,4.158 C6.818,4.718 6.71766667,5.19633333 6.517,5.593 C6.31633333,5.98966667 6.027,6.31166667 5.649,6.559 C5.271,6.80633333 4.81133333,6.986 4.27,7.098 C3.72866667,7.21 3.11733333,7.266 2.436,7.266 L1.358,7.266 L1.358,10.864 L0,10.864 L0,1.302 C0.382666667,1.20866667 0.809666667,1.14566667 1.281,1.113 C1.75233333,1.08033333 2.184,1.064 2.576,1.064 Z M2.688,2.254 C2.10933333,2.254 1.666,2.268 1.358,2.296 L1.358,6.104 L2.38,6.104 C2.84666667,6.104 3.26666667,6.07366667 3.64,6.013 C4.01333333,5.95233333 4.32833333,5.84966667 4.585,5.705 C4.84166667,5.56033333 5.04,5.362 5.18,5.11 C5.32,4.858 5.39,4.536 5.39,4.144 C5.39,3.77066667 5.31766667,3.46266667 5.173,3.22 C5.02833333,2.97733333 4.83233333,2.78366667 4.585,2.639 C4.33766667,2.49433333 4.05066667,2.394 3.724,2.338 C3.39733333,2.282 3.052,2.254 2.688,2.254 Z\" id=\"path-1\"></path>\r\n <path d=\"M14.56,7.224 C14.56,7.80266667 14.476,8.32533333 14.308,8.792 C14.14,9.25866667 13.9043333,9.66 13.601,9.996 C13.2976667,10.332 12.936,10.591 12.516,10.773 C12.096,10.955 11.6386667,11.046 11.144,11.046 C10.6493333,11.046 10.192,10.955 9.772,10.773 C9.352,10.591 8.99033333,10.332 8.687,9.996 C8.38366667,9.66 8.148,9.25866667 7.98,8.792 C7.812,8.32533333 7.728,7.80266667 7.728,7.224 C7.728,6.65466667 7.812,6.13433333 7.98,5.663 C8.148,5.19166667 8.38366667,4.788 8.687,4.452 C8.99033333,4.116 9.352,3.857 9.772,3.675 C10.192,3.493 10.6493333,3.402 11.144,3.402 C11.6386667,3.402 12.096,3.493 12.516,3.675 C12.936,3.857 13.2976667,4.116 13.601,4.452 C13.9043333,4.788 14.14,5.19166667 14.308,5.663 C14.476,6.13433333 14.56,6.65466667 14.56,7.224 Z M13.202,7.224 C13.202,6.40266667 13.0176667,5.75166667 12.649,5.271 C12.2803333,4.79033333 11.7786667,4.55 11.144,4.55 C10.5093333,4.55 10.0076667,4.79033333 9.639,5.271 C9.27033333,5.75166667 9.086,6.40266667 9.086,7.224 C9.086,8.04533333 9.27033333,8.69633333 9.639,9.177 C10.0076667,9.65766667 10.5093333,9.898 11.144,9.898 C11.7786667,9.898 12.2803333,9.65766667 12.649,9.177 C13.0176667,8.69633333 13.202,8.04533333 13.202,7.224 Z\" id=\"path-2\"></path>\r\n <path d=\"M22.162,10.864 C21.9006667,10.192 21.623,9.42433333 21.329,8.561 C21.035,7.69766667 20.7666667,6.79933333 20.524,5.866 C20.2813333,6.79933333 20.0153333,7.69766667 19.726,8.561 C19.4366667,9.42433333 19.1613333,10.192 18.9,10.864 L17.766,10.864 C17.3366667,9.90266667 16.9166667,8.806 16.506,7.574 C16.0953333,6.342 15.708,5.012 15.344,3.584 L16.744,3.584 C16.8373333,4.02266667 16.9493333,4.49866667 17.08,5.012 C17.2106667,5.52533333 17.3483333,6.03866667 17.493,6.552 C17.6376667,7.06533333 17.7893333,7.56 17.948,8.036 C18.1066667,8.512 18.256,8.92733333 18.396,9.282 C18.5546667,8.84333333 18.711,8.379 18.865,7.889 C19.019,7.399 19.166,6.90433333 19.306,6.405 C19.446,5.90566667 19.579,5.41566667 19.705,4.935 C19.831,4.45433333 19.9406667,4.004 20.034,3.584 L21.112,3.584 C21.196,4.004 21.2986667,4.45433333 21.42,4.935 C21.5413333,5.41566667 21.672,5.90566667 21.812,6.405 C21.952,6.90433333 22.099,7.399 22.253,7.889 C22.407,8.379 22.5633333,8.84333333 22.722,9.282 C22.862,8.92733333 23.009,8.512 23.163,8.036 C23.317,7.56 23.4686667,7.06533333 23.618,6.552 C23.7673333,6.03866667 23.9073333,5.52533333 24.038,5.012 C24.1686667,4.49866667 24.2806667,4.02266667 24.374,3.584 L25.718,3.584 C25.354,5.012 24.9666667,6.342 24.556,7.574 C24.1453333,8.806 23.7253333,9.90266667 23.296,10.864 L22.162,10.864 Z\" id=\"path-3\"></path>\r\n <path d=\"M26.684,7.238 C26.684,6.594 26.7773333,6.03166667 26.964,5.551 C27.1506667,5.07033333 27.398,4.67133333 27.706,4.354 C28.014,4.03666667 28.3686667,3.79866667 28.77,3.64 C29.1713333,3.48133333 29.582,3.402 30.002,3.402 C30.982,3.402 31.7333333,3.70766667 32.256,4.319 C32.7786667,4.93033333 33.04,5.86133333 33.04,7.112 C33.04,7.168 33.04,7.24033333 33.04,7.329 C33.04,7.41766667 33.0353333,7.49933333 33.026,7.574 L28.042,7.574 C28.098,8.33 28.3173333,8.904 28.7,9.296 C29.0826667,9.688 29.68,9.884 30.492,9.884 C30.9493333,9.884 31.3343333,9.84433333 31.647,9.765 C31.9596667,9.68566667 32.1953333,9.60866667 32.354,9.534 L32.536,10.626 C32.3773333,10.71 32.0996667,10.7986667 31.703,10.892 C31.3063333,10.9853333 30.856,11.032 30.352,11.032 C29.7173333,11.032 29.169,10.9363333 28.707,10.745 C28.245,10.5536667 27.8646667,10.29 27.566,9.954 C27.2673333,9.618 27.0456667,9.219 26.901,8.757 C26.7563333,8.295 26.684,7.78866667 26.684,7.238 Z M31.682,6.524 C31.6913333,5.936 31.5443333,5.453 31.241,5.075 C30.9376667,4.697 30.52,4.508 29.988,4.508 C29.6893333,4.508 29.4256667,4.56633333 29.197,4.683 C28.9683333,4.79966667 28.7746667,4.95133333 28.616,5.138 C28.4573333,5.32466667 28.3336667,5.53933333 28.245,5.782 C28.1563333,6.02466667 28.098,6.272 28.07,6.524 L31.682,6.524 Z\" id=\"path-4\"></path>\r\n <path d=\"M37.604,3.43 C37.716,3.43 37.8443333,3.437 37.989,3.451 C38.1336667,3.465 38.276,3.48366667 38.416,3.507 C38.556,3.53033333 38.6843333,3.55366667 38.801,3.577 C38.9176667,3.60033333 39.004,3.62133333 39.06,3.64 L38.836,4.774 C38.7333333,4.73666667 38.563,4.69233333 38.325,4.641 C38.087,4.58966667 37.7813333,4.564 37.408,4.564 C37.1653333,4.564 36.925,4.58966667 36.687,4.641 C36.449,4.69233333 36.2926667,4.72733333 36.218,4.746 L36.218,10.864 L34.916,10.864 L34.916,3.892 C35.224,3.78 35.6066667,3.675 36.064,3.577 C36.5213333,3.479 37.0346667,3.43 37.604,3.43 Z\" id=\"path-5\"></path>\r\n <path d=\"M39.914,7.238 C39.914,6.594 40.0073333,6.03166667 40.194,5.551 C40.3806667,5.07033333 40.628,4.67133333 40.936,4.354 C41.244,4.03666667 41.5986667,3.79866667 42,3.64 C42.4013333,3.48133333 42.812,3.402 43.232,3.402 C44.212,3.402 44.9633333,3.70766667 45.486,4.319 C46.0086667,4.93033333 46.27,5.86133333 46.27,7.112 C46.27,7.168 46.27,7.24033333 46.27,7.329 C46.27,7.41766667 46.2653333,7.49933333 46.256,7.574 L41.272,7.574 C41.328,8.33 41.5473333,8.904 41.93,9.296 C42.3126667,9.688 42.91,9.884 43.722,9.884 C44.1793333,9.884 44.5643333,9.84433333 44.877,9.765 C45.1896667,9.68566667 45.4253333,9.60866667 45.584,9.534 L45.766,10.626 C45.6073333,10.71 45.3296667,10.7986667 44.933,10.892 C44.5363333,10.9853333 44.086,11.032 43.582,11.032 C42.9473333,11.032 42.399,10.9363333 41.937,10.745 C41.475,10.5536667 41.0946667,10.29 40.796,9.954 C40.4973333,9.618 40.2756667,9.219 40.131,8.757 C39.9863333,8.295 39.914,7.78866667 39.914,7.238 Z M44.912,6.524 C44.9213333,5.936 44.7743333,5.453 44.471,5.075 C44.1676667,4.697 43.75,4.508 43.218,4.508 C42.9193333,4.508 42.6556667,4.56633333 42.427,4.683 C42.1983333,4.79966667 42.0046667,4.95133333 41.846,5.138 C41.6873333,5.32466667 41.5636667,5.53933333 41.475,5.782 C41.3863333,6.02466667 41.328,6.272 41.3,6.524 L44.912,6.524 Z\" id=\"path-6\"></path>\r\n <path d=\"M52.85,5.124 C52.6913333,4.99333333 52.4626667,4.86733333 52.164,4.746 C51.8653333,4.62466667 51.5386667,4.564 51.184,4.564 C50.8106667,4.564 50.491,4.63166667 50.225,4.767 C49.959,4.90233333 49.742,5.089 49.574,5.327 C49.406,5.565 49.2846667,5.84733333 49.21,6.174 C49.1353333,6.50066667 49.098,6.85066667 49.098,7.224 C49.098,8.07333333 49.308,8.729 49.728,9.191 C50.148,9.653 50.708,9.884 51.408,9.884 C51.7626667,9.884 52.059,9.86766667 52.297,9.835 C52.535,9.80233333 52.7193333,9.76733333 52.85,9.73 L52.85,5.124 Z M52.85,0.224 L54.152,0 L54.152,10.654 C53.8533333,10.738 53.4706667,10.822 53.004,10.906 C52.5373333,10.99 52.0006667,11.032 51.394,11.032 C50.834,11.032 50.33,10.9433333 49.882,10.766 C49.434,10.5886667 49.0513333,10.3366667 48.734,10.01 C48.4166667,9.68333333 48.1716667,9.28433333 47.999,8.813 C47.8263333,8.34166667 47.74,7.812 47.74,7.224 C47.74,6.664 47.8123333,6.15066667 47.957,5.684 C48.1016667,5.21733333 48.314,4.816 48.594,4.48 C48.874,4.144 49.217,3.88266667 49.623,3.696 C50.029,3.50933333 50.4933333,3.416 51.016,3.416 C51.436,3.416 51.807,3.472 52.129,3.584 C52.451,3.696 52.6913333,3.80333333 52.85,3.906 L52.85,0.224 Z\" id=\"path-7\"></path>\r\n <path d=\"M60.928,3.906 C61.0866667,3.80333333 61.327,3.696 61.649,3.584 C61.971,3.472 62.342,3.416 62.762,3.416 C63.2846667,3.416 63.749,3.50933333 64.155,3.696 C64.561,3.88266667 64.904,4.144 65.184,4.48 C65.464,4.816 65.6763333,5.21733333 65.821,5.684 C65.9656667,6.15066667 66.038,6.664 66.038,7.224 C66.038,7.812 65.9516667,8.34166667 65.779,8.813 C65.6063333,9.28433333 65.3613333,9.68333333 65.044,10.01 C64.7266667,10.3366667 64.344,10.5886667 63.896,10.766 C63.448,10.9433333 62.944,11.032 62.384,11.032 C61.7773333,11.032 61.2406667,10.99 60.774,10.906 C60.3073333,10.822 59.9246667,10.738 59.626,10.654 L59.626,0.224 L60.928,0 L60.928,3.906 Z M60.928,9.73 C61.0586667,9.76733333 61.243,9.80233333 61.481,9.835 C61.719,9.86766667 62.0153333,9.884 62.37,9.884 C63.07,9.884 63.63,9.653 64.05,9.191 C64.47,8.729 64.68,8.07333333 64.68,7.224 C64.68,6.85066667 64.6426667,6.50066667 64.568,6.174 C64.4933333,5.84733333 64.372,5.565 64.204,5.327 C64.036,5.089 63.819,4.90233333 63.553,4.767 C63.287,4.63166667 62.9673333,4.564 62.594,4.564 C62.2393333,4.564 61.9126667,4.62466667 61.614,4.746 C61.3153333,4.86733333 61.0866667,4.99333333 60.928,5.124 L60.928,9.73 Z\" id=\"path-8\"></path>\r\n <path d=\"M66.836,12.222 C66.9386667,12.2686667 67.0716667,12.313 67.235,12.355 C67.3983333,12.397 67.5593333,12.418 67.718,12.418 C68.2313333,12.418 68.6326667,12.3036667 68.922,12.075 C69.2113333,11.8463333 69.4726667,11.4753333 69.706,10.962 C69.118,9.842 68.5696667,8.65433333 68.061,7.399 C67.5523333,6.14366667 67.13,4.872 66.794,3.584 L68.194,3.584 C68.2966667,4.004 68.4203333,4.45666667 68.565,4.942 C68.7096667,5.42733333 68.8706667,5.92666667 69.048,6.44 C69.2253333,6.95333333 69.4166667,7.46666667 69.622,7.98 C69.8273333,8.49333333 70.042,8.988 70.266,9.464 C70.6206667,8.484 70.9286667,7.51333333 71.19,6.552 C71.4513333,5.59066667 71.6986667,4.60133333 71.932,3.584 L73.276,3.584 C72.94,4.956 72.5666667,6.27433333 72.156,7.539 C71.7453333,8.80366667 71.302,9.98666667 70.826,11.088 C70.6393333,11.508 70.4456667,11.8696667 70.245,12.173 C70.0443333,12.4763333 69.8226667,12.726 69.58,12.922 C69.3373333,13.118 69.0643333,13.2626667 68.761,13.356 C68.4576667,13.4493333 68.1146667,13.496 67.732,13.496 C67.6293333,13.496 67.522,13.489 67.41,13.475 C67.298,13.461 67.1883333,13.4423333 67.081,13.419 C66.9736667,13.3956667 66.8756667,13.37 66.787,13.342 C66.6983333,13.314 66.6353333,13.2906667 66.598,13.272 L66.836,12.222 Z\" id=\"path-9\"></path>\r\n </defs>\r\n <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\r\n <g id=\"Group-Copy-2\" transform=\"translate(0.338000, 0.500000)\">\r\n <g id=\"Powered-by\" transform=\"translate(0.000000, 45.636000)\" fill-rule=\"nonzero\" opacity=\"0.900000036\">\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-1\"></use>\r\n <use xlink:href=\"#path-1\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-2\"></use>\r\n <use xlink:href=\"#path-2\"></use>\r\n </g>\r\n <g id=\"Path\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-3\"></use>\r\n <use xlink:href=\"#path-3\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-4\"></use>\r\n <use xlink:href=\"#path-4\"></use>\r\n </g>\r\n <g id=\"Path\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-5\"></use>\r\n <use xlink:href=\"#path-5\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-6\"></use>\r\n <use xlink:href=\"#path-6\"></use>\r\n </g>\r\n <g id=\"Shape\" fill=\"#6E6E6E\">\r\n <use xlink:href=\"#path-7\"></use>\r\n <use xlink:href=\"#path-7\"></use>\r\n </g>\r\n <g id=\"Shape\">\r\n <use fill=\"#FFFFFF\" xlink:href=\"#path-8\"></use>\r\n <use fill=\"#6E6E6E\" xlink:href=\"#path-8\"></use>\r\n </g>\r\n <g id=\"Path\">\r\n <use fill=\"#FFFFFF\" xlink:href=\"#path-9\"></use>\r\n <use fill=\"#6E6E6E\" xlink:href=\"#path-9\"></use>\r\n </g>\r\n </g>\r\n <image id=\"Bitmap\" x=\"77.662\" y=\"0\" width=\"151.111111\" height=\"68\" xlink:href=\"data:image/png;base64,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\"></image>\r\n </g>\r\n </g>\r\n</svg>\r\n</ng-template>" }]
|
|
436
435
|
}], ctorParameters: function () { return []; } });
|
|
437
436
|
|
|
438
437
|
class SsoLoginComponent {
|
|
@@ -447,11 +446,11 @@ class SsoLoginComponent {
|
|
|
447
446
|
this.authService.signInWithSSO();
|
|
448
447
|
}
|
|
449
448
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SsoLoginComponent, deps: [{ token: AnnaLibAuthService }, { token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
450
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SsoLoginComponent, selector: "anna-cognito-lib-sso-login", ngImport: i0, template: "<div class=\"main\">\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" width=\"145\" height=\"50\"\r\n alt=\"Anna Logo\" priority />\r\n </header>\r\n <article>\r\n <p class=\"sub-title\">Login</p>\r\n <p>Sign in using your corporate ID (SSO)</p>\r\n <button class=\"login-btn\" (click)=\"signInWithSSO()\">Login with Duo</button>\r\n <div class=\"dashed-line\"></div>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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:
|
|
449
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SsoLoginComponent, isStandalone: true, selector: "anna-cognito-lib-sso-login", ngImport: i0, template: "<div class=\"main\">\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" width=\"145\" height=\"50\"\r\n alt=\"Anna Logo\" priority />\r\n </header>\r\n <article>\r\n <p class=\"sub-title\">Login</p>\r\n <p>Sign in using your corporate ID (SSO)</p>\r\n <button class=\"login-btn\" (click)=\"signInWithSSO()\">Login with Duo</button>\r\n <div class=\"dashed-line\"></div>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgOptimizedImage, selector: "img[ngSrc]", inputs: ["ngSrc", "ngSrcset", "sizes", "width", "height", "loading", "priority", "loaderParams", "disableOptimizedSrcset", "fill", "src", "srcset"] }, { kind: "component", type: PoweredByLogoTemplateComponent, selector: "anna-cognito-lib-powered-by-logo-template" }, { kind: "component", type: SurewavesYearLogoComponent, selector: "anna-cognito-lib-surewaves-year-logo" }, { kind: "component", type: VersionAndTermPolicyComponent, selector: "anna-cognito-lib-version-and-term-policy" }] }); }
|
|
451
450
|
}
|
|
452
451
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SsoLoginComponent, decorators: [{
|
|
453
452
|
type: Component,
|
|
454
|
-
args: [{ selector: 'anna-cognito-lib-sso-login', template: "<div class=\"main\">\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" width=\"145\" height=\"50\"\r\n alt=\"Anna Logo\" priority />\r\n </header>\r\n <article>\r\n <p class=\"sub-title\">Login</p>\r\n <p>Sign in using your corporate ID (SSO)</p>\r\n <button class=\"login-btn\" (click)=\"signInWithSSO()\">Login with Duo</button>\r\n <div class=\"dashed-line\"></div>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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"] }]
|
|
453
|
+
args: [{ selector: 'anna-cognito-lib-sso-login', standalone: true, imports: [NgIf, NgOptimizedImage, PoweredByLogoTemplateComponent, SurewavesYearLogoComponent, VersionAndTermPolicyComponent], template: "<div class=\"main\">\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" width=\"145\" height=\"50\"\r\n alt=\"Anna Logo\" priority />\r\n </header>\r\n <article>\r\n <p class=\"sub-title\">Login</p>\r\n <p>Sign in using your corporate ID (SSO)</p>\r\n <button class=\"login-btn\" (click)=\"signInWithSSO()\">Login with Duo</button>\r\n <div class=\"dashed-line\"></div>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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"] }]
|
|
455
454
|
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: undefined, decorators: [{
|
|
456
455
|
type: Inject,
|
|
457
456
|
args: [CONFIG_SERVICE_TOKEN]
|
|
@@ -482,12 +481,13 @@ class SpinnerButtonDirective {
|
|
|
482
481
|
}
|
|
483
482
|
}
|
|
484
483
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SpinnerButtonDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
485
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SpinnerButtonDirective, selector: "[anna-cognito-lib-SpinnerButton]", inputs: { loading: ["anna-cognito-lib-SpinnerButton", "loading"], spinnerButtonText: "spinnerButtonText" }, usesOnChanges: true, ngImport: i0 }); }
|
|
484
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SpinnerButtonDirective, isStandalone: true, selector: "[anna-cognito-lib-SpinnerButton]", inputs: { loading: ["anna-cognito-lib-SpinnerButton", "loading"], spinnerButtonText: "spinnerButtonText" }, usesOnChanges: true, ngImport: i0 }); }
|
|
486
485
|
}
|
|
487
486
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SpinnerButtonDirective, decorators: [{
|
|
488
487
|
type: Directive,
|
|
489
488
|
args: [{
|
|
490
489
|
selector: "[anna-cognito-lib-SpinnerButton]",
|
|
490
|
+
standalone: true,
|
|
491
491
|
}]
|
|
492
492
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { loading: [{
|
|
493
493
|
type: Input,
|
|
@@ -523,11 +523,11 @@ class AnnaLoginComponent {
|
|
|
523
523
|
this.authService.handleSignIn({ username, password });
|
|
524
524
|
}
|
|
525
525
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLoginComponent, deps: [{ token: AnnaLibAuthService }, { token: i2.FormBuilder }, { token: CONFIG_SERVICE_TOKEN }, { token: SSO_LOGIN_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
526
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AnnaLoginComponent, selector: "anna-cognito-lib-anna-login", ngImport: i0, template: "<div class=\"main\">\r\n <!-- Load login page when all constant variable are intiated otherwise it will show a glitch. that's why ngIf check of constants.forgotPassword -->\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" width=\"145\" height=\"50\"\r\n alt=\"Anna Logo\" priority />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"loginForm\" (ngSubmit)=\"OnLogin()\">\r\n <div id=\"alert-div\" *ngIf=\"authService.loginErrorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.loginErrorMessage }}</p>\r\n </div>\r\n\r\n <input type=\"text\" tabindex=\"1\" formControlName=\"username\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"consumingProjectSSOLoginService?.isSsoIntegrated ? constants.enterUserCode : constants.enterEmail\"\r\n autocomplete=\"username\" autofocus />\r\n\r\n <input type=\"password\" tabindex=\"2\" formControlName=\"password\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\" [placeholder]=\"constants.password\"\r\n autocomplete=\"current-password\" autofocus />\r\n\r\n <a tabindex=\"4\" [routerLink]=\"constants.forgortPasswordPageUrl\">{{ constants.forgotPassword }}</a>\r\n <button tabindex=\"3\" class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.consumingProjectAuthService.isLoggingIn\"\r\n [spinnerButtonText]=\"constants.login\"></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}a{float:right;color:#268bff;font-family:Roboto;font-size:.875rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;text-decoration:underline;margin-bottom:.9375rem}a:hover{cursor:pointer}\n"], dependencies: [{ kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type:
|
|
526
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AnnaLoginComponent, isStandalone: true, selector: "anna-cognito-lib-anna-login", ngImport: i0, template: "<div class=\"main\">\r\n <!-- Load login page when all constant variable are intiated otherwise it will show a glitch. that's why ngIf check of constants.forgotPassword -->\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" width=\"145\" height=\"50\"\r\n alt=\"Anna Logo\" priority />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"loginForm\" (ngSubmit)=\"OnLogin()\">\r\n <div id=\"alert-div\" *ngIf=\"authService.loginErrorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.loginErrorMessage }}</p>\r\n </div>\r\n\r\n <input type=\"text\" tabindex=\"1\" formControlName=\"username\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"consumingProjectSSOLoginService?.isSsoIntegrated ? constants.enterUserCode : constants.enterEmail\"\r\n autocomplete=\"username\" autofocus />\r\n\r\n <input type=\"password\" tabindex=\"2\" formControlName=\"password\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\" [placeholder]=\"constants.password\"\r\n autocomplete=\"current-password\" autofocus />\r\n\r\n <a tabindex=\"4\" [routerLink]=\"constants.forgortPasswordPageUrl\">{{ constants.forgotPassword }}</a>\r\n <button tabindex=\"3\" class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.consumingProjectAuthService.isLoggingIn\"\r\n [spinnerButtonText]=\"constants.login\"></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}a{float:right;color:#268bff;font-family:Roboto;font-size:.875rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;text-decoration:underline;margin-bottom:.9375rem}a:hover{cursor:pointer}\n"], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgOptimizedImage, selector: "img[ngSrc]", inputs: ["ngSrc", "ngSrcset", "sizes", "width", "height", "loading", "priority", "loaderParams", "disableOptimizedSrcset", "fill", "src", "srcset"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: SpinnerButtonDirective, selector: "[anna-cognito-lib-SpinnerButton]", inputs: ["anna-cognito-lib-SpinnerButton", "spinnerButtonText"] }, { kind: "component", type: PoweredByLogoTemplateComponent, selector: "anna-cognito-lib-powered-by-logo-template" }, { kind: "component", type: SurewavesYearLogoComponent, selector: "anna-cognito-lib-surewaves-year-logo" }, { kind: "component", type: VersionAndTermPolicyComponent, selector: "anna-cognito-lib-version-and-term-policy" }] }); }
|
|
527
527
|
}
|
|
528
528
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaLoginComponent, decorators: [{
|
|
529
529
|
type: Component,
|
|
530
|
-
args: [{ selector: 'anna-cognito-lib-anna-login', template: "<div class=\"main\">\r\n <!-- Load login page when all constant variable are intiated otherwise it will show a glitch. that's why ngIf check of constants.forgotPassword -->\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" width=\"145\" height=\"50\"\r\n alt=\"Anna Logo\" priority />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"loginForm\" (ngSubmit)=\"OnLogin()\">\r\n <div id=\"alert-div\" *ngIf=\"authService.loginErrorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.loginErrorMessage }}</p>\r\n </div>\r\n\r\n <input type=\"text\" tabindex=\"1\" formControlName=\"username\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"consumingProjectSSOLoginService?.isSsoIntegrated ? constants.enterUserCode : constants.enterEmail\"\r\n autocomplete=\"username\" autofocus />\r\n\r\n <input type=\"password\" tabindex=\"2\" formControlName=\"password\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\" [placeholder]=\"constants.password\"\r\n autocomplete=\"current-password\" autofocus />\r\n\r\n <a tabindex=\"4\" [routerLink]=\"constants.forgortPasswordPageUrl\">{{ constants.forgotPassword }}</a>\r\n <button tabindex=\"3\" class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.consumingProjectAuthService.isLoggingIn\"\r\n [spinnerButtonText]=\"constants.login\"></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}a{float:right;color:#268bff;font-family:Roboto;font-size:.875rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;text-decoration:underline;margin-bottom:.9375rem}a:hover{cursor:pointer}\n"] }]
|
|
530
|
+
args: [{ selector: 'anna-cognito-lib-anna-login', standalone: true, imports: [NgIf, NgOptimizedImage, FormsModule, ReactiveFormsModule, NgClass, RouterLink, SpinnerButtonDirective, PoweredByLogoTemplateComponent, SurewavesYearLogoComponent, VersionAndTermPolicyComponent], template: "<div class=\"main\">\r\n <!-- Load login page when all constant variable are intiated otherwise it will show a glitch. that's why ngIf check of constants.forgotPassword -->\r\n <section *ngIf=\"constants.forgotPassword\">\r\n <header>\r\n <img [ngSrc]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" width=\"145\" height=\"50\"\r\n alt=\"Anna Logo\" priority />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"loginForm\" (ngSubmit)=\"OnLogin()\">\r\n <div id=\"alert-div\" *ngIf=\"authService.loginErrorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.loginErrorMessage }}</p>\r\n </div>\r\n\r\n <input type=\"text\" tabindex=\"1\" formControlName=\"username\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\"\r\n [placeholder]=\"consumingProjectSSOLoginService?.isSsoIntegrated ? constants.enterUserCode : constants.enterEmail\"\r\n autocomplete=\"username\" autofocus />\r\n\r\n <input type=\"password\" tabindex=\"2\" formControlName=\"password\"\r\n [ngClass]=\"{ 'input-invalid': authService.loginErrorMessage }\" [placeholder]=\"constants.password\"\r\n autocomplete=\"current-password\" autofocus />\r\n\r\n <a tabindex=\"4\" [routerLink]=\"constants.forgortPasswordPageUrl\">{{ constants.forgotPassword }}</a>\r\n <button tabindex=\"3\" class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.consumingProjectAuthService.isLoggingIn\"\r\n [spinnerButtonText]=\"constants.login\"></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}a{float:right;color:#268bff;font-family:Roboto;font-size:.875rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;text-decoration:underline;margin-bottom:.9375rem}a:hover{cursor:pointer}\n"] }]
|
|
531
531
|
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type: undefined, decorators: [{
|
|
532
532
|
type: Inject,
|
|
533
533
|
args: [CONFIG_SERVICE_TOKEN]
|
|
@@ -542,16 +542,144 @@ class CognitoAndSSOLoginContainerComponent {
|
|
|
542
542
|
}
|
|
543
543
|
ngOnInit() { }
|
|
544
544
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CognitoAndSSOLoginContainerComponent, deps: [{ token: SSO_LOGIN_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
545
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CognitoAndSSOLoginContainerComponent, selector: "anna-cognito-lib-cognito-and-sso-login-container", ngImport: i0, template: "<anna-cognito-lib-anna-login *ngIf=\"!consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-anna-login>\r\n<anna-cognito-lib-sso-login *ngIf=\"consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-sso-login>", styles: [""], dependencies: [{ kind: "directive", type:
|
|
545
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CognitoAndSSOLoginContainerComponent, isStandalone: true, selector: "anna-cognito-lib-cognito-and-sso-login-container", ngImport: i0, template: "<anna-cognito-lib-anna-login *ngIf=\"!consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-anna-login>\r\n<anna-cognito-lib-sso-login *ngIf=\"consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-sso-login>", styles: [""], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: AnnaLoginComponent, selector: "anna-cognito-lib-anna-login" }, { kind: "component", type: SsoLoginComponent, selector: "anna-cognito-lib-sso-login" }] }); }
|
|
546
546
|
}
|
|
547
547
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CognitoAndSSOLoginContainerComponent, decorators: [{
|
|
548
548
|
type: Component,
|
|
549
|
-
args: [{ selector: "anna-cognito-lib-cognito-and-sso-login-container",
|
|
549
|
+
args: [{ selector: "anna-cognito-lib-cognito-and-sso-login-container", standalone: true, imports: [
|
|
550
|
+
NgIf,
|
|
551
|
+
AnnaLoginComponent,
|
|
552
|
+
SsoLoginComponent,
|
|
553
|
+
], template: "<anna-cognito-lib-anna-login *ngIf=\"!consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-anna-login>\r\n<anna-cognito-lib-sso-login *ngIf=\"consumingProjectSSOLoginService?.isSsoIntegrated\"></anna-cognito-lib-sso-login>" }]
|
|
550
554
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
551
555
|
type: Inject,
|
|
552
556
|
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
553
557
|
}] }]; } });
|
|
554
558
|
|
|
559
|
+
class AuthenticationData {
|
|
560
|
+
constructor(Username, Password) {
|
|
561
|
+
this.Username = Username;
|
|
562
|
+
this.Password = Password;
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
class UserPoolInformation {
|
|
566
|
+
constructor(UserPoolId, ClientId) {
|
|
567
|
+
this.UserPoolId = UserPoolId;
|
|
568
|
+
this.ClientId = ClientId;
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
class UsernameInfo {
|
|
572
|
+
constructor(object) {
|
|
573
|
+
this.isUsernameAvailable = object.isUsernameAvailable;
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
class UserState {
|
|
577
|
+
constructor(userState) {
|
|
578
|
+
this.userStatus = userState;
|
|
579
|
+
this.isUserWithTempPassword = userState == 'FORCE_CHANGE_PASSWORD';
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
// Angular import statements
|
|
584
|
+
class ForgotPasswordComponent {
|
|
585
|
+
constructor(authService, fb, toastr, router, consumingProjectConfigService, consumingProjectAuthService, consumingProjectSSOLoginService) {
|
|
586
|
+
this.authService = authService;
|
|
587
|
+
this.fb = fb;
|
|
588
|
+
this.toastr = toastr;
|
|
589
|
+
this.router = router;
|
|
590
|
+
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
591
|
+
this.consumingProjectAuthService = consumingProjectAuthService;
|
|
592
|
+
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
593
|
+
this.passwordNotMatching = false;
|
|
594
|
+
this.password = { value: null, status: null };
|
|
595
|
+
this.confirmPassword = { value: null, status: null };
|
|
596
|
+
this.infoMessageToRedirectLogin = null;
|
|
597
|
+
this.isLoading = false;
|
|
598
|
+
}
|
|
599
|
+
ngOnInit() {
|
|
600
|
+
this.infoMessageToRedirectLogin = null;
|
|
601
|
+
this.constants = LoginConstant;
|
|
602
|
+
this.onIntialiseForm();
|
|
603
|
+
if (this.consumingProjectAuthService.userName) {
|
|
604
|
+
this.onUpdateForm();
|
|
605
|
+
}
|
|
606
|
+
this.authService.forgotPasswordAndGlobalSignoutLoader = false;
|
|
607
|
+
}
|
|
608
|
+
onIntialiseForm() {
|
|
609
|
+
this.verifyRegisteredEmail = this.fb.group({
|
|
610
|
+
email: [null, [Validators.required]],
|
|
611
|
+
});
|
|
612
|
+
}
|
|
613
|
+
onUpdateForm() {
|
|
614
|
+
this.verifyRegisteredEmail.patchValue({
|
|
615
|
+
email: this.consumingProjectAuthService.userName,
|
|
616
|
+
});
|
|
617
|
+
}
|
|
618
|
+
isFormValid() {
|
|
619
|
+
return this.verifyRegisteredEmail.valid;
|
|
620
|
+
}
|
|
621
|
+
onLoginOrGetOtpButtonClick() {
|
|
622
|
+
if (this.infoMessageToRedirectLogin) {
|
|
623
|
+
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
624
|
+
}
|
|
625
|
+
else {
|
|
626
|
+
this.onVerifyRegisteredEmail();
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
onVerifyRegisteredEmail() {
|
|
630
|
+
this.isLoading = true;
|
|
631
|
+
this.errorMessage = null;
|
|
632
|
+
this.infoMessageToRedirectLogin = null;
|
|
633
|
+
let username = this.verifyRegisteredEmail.controls['email'].value;
|
|
634
|
+
let isUsernameAvailable = this.authService.consumingProjectAuthService.isUsernameAvailable(username);
|
|
635
|
+
let isUsernameTempPasswordSet = this.authService.consumingProjectAuthService.getUserState(username);
|
|
636
|
+
forkJoin([isUsernameAvailable, isUsernameTempPasswordSet]).subscribe({ next: (result) => {
|
|
637
|
+
let isUsernameAvailable = new UsernameInfo(result[0]).isUsernameAvailable;
|
|
638
|
+
let isUserWithTempPassword = new UserState(result[1]).isUserWithTempPassword;
|
|
639
|
+
this.onGettingUserStatus(isUsernameAvailable, isUserWithTempPassword, username);
|
|
640
|
+
this.isLoading = false;
|
|
641
|
+
},
|
|
642
|
+
error: (error) => {
|
|
643
|
+
if (error.status == 400) {
|
|
644
|
+
this.errorMessage = this.constants.userNotFound;
|
|
645
|
+
}
|
|
646
|
+
else {
|
|
647
|
+
this.toastr.error(LoginConstant.apiFailErrorMessage);
|
|
648
|
+
}
|
|
649
|
+
this.isLoading = false;
|
|
650
|
+
}
|
|
651
|
+
});
|
|
652
|
+
}
|
|
653
|
+
onGettingUserStatus(isUsernameAvailable, isUserWithTempPassword, username) {
|
|
654
|
+
if (!isUsernameAvailable) {
|
|
655
|
+
if (!isUserWithTempPassword) {
|
|
656
|
+
this.authService.onForgotPasswordGenerateOTP(username);
|
|
657
|
+
}
|
|
658
|
+
else {
|
|
659
|
+
this.infoMessageToRedirectLogin = this.constants.firstTimeLoginUserTempPasswordMsg;
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
else {
|
|
663
|
+
this.errorMessage = this.constants.userNotFound;
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ForgotPasswordComponent, deps: [{ token: AnnaLibAuthService }, { token: i2.FormBuilder }, { token: i4.ToastrService }, { token: i1.Router }, { token: CONFIG_SERVICE_TOKEN }, { token: AUTH_SERVICE_TOKEN }, { token: SSO_LOGIN_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
667
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ForgotPasswordComponent, isStandalone: true, selector: "anna-cognito-lib-forgot-password", ngImport: i0, template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"verifyRegisteredEmail\">\r\n <ng-container *ngIf=\"!infoMessageToRedirectLogin\">\r\n <div id=\"heading\">\r\n {{ constants.forgotPasswordHeading }}\r\n </div>\r\n <p>\r\n {{consumingProjectSSOLoginService?.isSsoIntegrated ? constants.PleaseEnterYourUsercodeMessage : constants.PleaseEnterYourUsernameMessage }}\r\n </p>\r\n </ng-container>\r\n <div id=\"alert-div\" *ngIf=\"errorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p id=\"alert-msg\">{{ errorMessage }}</p>\r\n </div>\r\n <div id=\"info-div\" *ngIf=\"infoMessageToRedirectLogin\">\r\n <i class=\"mi mdi-info\"></i>\r\n <p>{{ infoMessageToRedirectLogin }}</p>\r\n </div>\r\n\r\n <input *ngIf=\"!infoMessageToRedirectLogin\"\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"email\"\r\n [placeholder]=\"consumingProjectSSOLoginService?.isSsoIntegrated ? constants.enterUserCode : constants.enterEmail\"\r\n [ngClass]=\"{\r\n 'input-invalid': verifyRegisteredEmail.get('email')?.dirty && verifyRegisteredEmail.get('email')?.errors\r\n }\"\r\n />\r\n\r\n <button\r\n tabindex=\"2\"\r\n type=\"submit\"\r\n class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"isLoading\"\r\n (click)=\"onLoginOrGetOtpButtonClick()\"\r\n [spinnerButtonText]=\"infoMessageToRedirectLogin ? constants.login : constants.forgotPasswordButton\"\r\n ></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:16px}input[type=text]:focus{box-shadow:none}.back-btn{font-size:27px;position:relative;color:#268bff;float:left;top:-30px;left:-15px;font-weight:400!important}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: SpinnerButtonDirective, selector: "[anna-cognito-lib-SpinnerButton]", inputs: ["anna-cognito-lib-SpinnerButton", "spinnerButtonText"] }, { kind: "component", type: PoweredByLogoTemplateComponent, selector: "anna-cognito-lib-powered-by-logo-template" }, { kind: "component", type: SurewavesYearLogoComponent, selector: "anna-cognito-lib-surewaves-year-logo" }, { kind: "component", type: VersionAndTermPolicyComponent, selector: "anna-cognito-lib-version-and-term-policy" }] }); }
|
|
668
|
+
}
|
|
669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ForgotPasswordComponent, decorators: [{
|
|
670
|
+
type: Component,
|
|
671
|
+
args: [{ selector: 'anna-cognito-lib-forgot-password', standalone: true, imports: [FormsModule, ReactiveFormsModule, NgIf, NgClass, SpinnerButtonDirective, PoweredByLogoTemplateComponent, SurewavesYearLogoComponent, VersionAndTermPolicyComponent], template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"verifyRegisteredEmail\">\r\n <ng-container *ngIf=\"!infoMessageToRedirectLogin\">\r\n <div id=\"heading\">\r\n {{ constants.forgotPasswordHeading }}\r\n </div>\r\n <p>\r\n {{consumingProjectSSOLoginService?.isSsoIntegrated ? constants.PleaseEnterYourUsercodeMessage : constants.PleaseEnterYourUsernameMessage }}\r\n </p>\r\n </ng-container>\r\n <div id=\"alert-div\" *ngIf=\"errorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p id=\"alert-msg\">{{ errorMessage }}</p>\r\n </div>\r\n <div id=\"info-div\" *ngIf=\"infoMessageToRedirectLogin\">\r\n <i class=\"mi mdi-info\"></i>\r\n <p>{{ infoMessageToRedirectLogin }}</p>\r\n </div>\r\n\r\n <input *ngIf=\"!infoMessageToRedirectLogin\"\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"email\"\r\n [placeholder]=\"consumingProjectSSOLoginService?.isSsoIntegrated ? constants.enterUserCode : constants.enterEmail\"\r\n [ngClass]=\"{\r\n 'input-invalid': verifyRegisteredEmail.get('email')?.dirty && verifyRegisteredEmail.get('email')?.errors\r\n }\"\r\n />\r\n\r\n <button\r\n tabindex=\"2\"\r\n type=\"submit\"\r\n class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"isLoading\"\r\n (click)=\"onLoginOrGetOtpButtonClick()\"\r\n [spinnerButtonText]=\"infoMessageToRedirectLogin ? constants.login : constants.forgotPasswordButton\"\r\n ></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:16px}input[type=text]:focus{box-shadow:none}.back-btn{font-size:27px;position:relative;color:#268bff;float:left;top:-30px;left:-15px;font-weight:400!important}\n"] }]
|
|
672
|
+
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type: i4.ToastrService }, { type: i1.Router }, { type: undefined, decorators: [{
|
|
673
|
+
type: Inject,
|
|
674
|
+
args: [CONFIG_SERVICE_TOKEN]
|
|
675
|
+
}] }, { type: undefined, decorators: [{
|
|
676
|
+
type: Inject,
|
|
677
|
+
args: [AUTH_SERVICE_TOKEN]
|
|
678
|
+
}] }, { type: undefined, decorators: [{
|
|
679
|
+
type: Inject,
|
|
680
|
+
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
681
|
+
}] }]; } });
|
|
682
|
+
|
|
555
683
|
// Angular import statements
|
|
556
684
|
class PasswordMatchingComponent {
|
|
557
685
|
constructor(fb) {
|
|
@@ -616,11 +744,11 @@ class PasswordMatchingComponent {
|
|
|
616
744
|
};
|
|
617
745
|
}
|
|
618
746
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PasswordMatchingComponent, deps: [{ token: FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
619
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PasswordMatchingComponent, selector: "anna-cognito-lib-password-matching", inputs: { passwordNotMatching: "passwordNotMatching" }, outputs: { passwordChange: "passwordChange", confirmPasswordChange: "confirmPasswordChange" }, ngImport: i0, template: "<form [formGroup]=\"passwordForm\">\r\n <div id=\"alert-div\" *ngIf=\"passwordNotMatching\">\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p>{{ constants.passwordNotMatching }}</p>\r\n </div>\r\n <div class=\"password-policies\">\r\n <ng-container *ngIf=\"!passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }} </b>\r\n </p>\r\n <p>{{ constants.minimumCharacter }}</p>\r\n <p>{{ constants.oneUppercase }}</p>\r\n <p>{{ constants.oneLowercase }}</p>\r\n <p>{{ constants.oneNumber }}</p>\r\n <p>{{ constants.specialCharacter }}</p>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }}</b>\r\n </p>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('minLength') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('minLength')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('minLength')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.minimumCharacter }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('uppercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('uppercase')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('uppercase')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneUppercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('lowercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('lowercase')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('lowercase')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneLowercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('number') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('number')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('number')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneNumber }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('specialCharacter') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('specialCharacter')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('specialCharacter')\">\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.specialCharacter }}</span>\r\n </div>\r\n </ng-container>\r\n </div>\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"2\"\r\n formControlName=\"password\"\r\n [placeholder]=\"constants.password\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"3\"\r\n formControlName=\"confirmPassword\"\r\n [placeholder]=\"constants.confirmPassword\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n</form>\r\n", styles: ["input[type=password],input[type=text]{width:100%;height:30px;padding:10px 16px;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}input[type=password].ng-dirty.ng-invalid,.input-invalid{border:1px solid #fe3824!important}input[type=password]:focus:focus{outline:none;box-shadow:none}input[type=password]:focus::placeholder{color:#a4a4a4}.password-policies{margin-bottom:1rem}.password-policies p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal;margin-bottom:0}.span-text{vertical-align:top;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal}#icon-div-msg{display:inline;margin-right:.3125rem}#icon-div-msg .material-icons{margin-top:1px;font-size:16px}#alert-div{padding:4px 0 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3}#alert-div #icon-div{width:18px;margin-top:-5px;display:inline-block}#alert-div #icon-div .material-icons{color:#f44336;font-size:1.125rem;margin-left:.5rem}#alert-div p{display:inline;vertical-align:top;margin-left:.5rem;color:#4a4a4a;font-family:Roboto;font-size:.7188rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.error-color{color:#fe3824}.success-color{color:#43a047}\n"], dependencies: [{ kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type:
|
|
747
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PasswordMatchingComponent, isStandalone: true, selector: "anna-cognito-lib-password-matching", inputs: { passwordNotMatching: "passwordNotMatching" }, outputs: { passwordChange: "passwordChange", confirmPasswordChange: "confirmPasswordChange" }, ngImport: i0, template: "<form [formGroup]=\"passwordForm\">\r\n <div id=\"alert-div\" *ngIf=\"passwordNotMatching\">\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p>{{ constants.passwordNotMatching }}</p>\r\n </div>\r\n <div class=\"password-policies\">\r\n <ng-container *ngIf=\"!passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }} </b>\r\n </p>\r\n <p>{{ constants.minimumCharacter }}</p>\r\n <p>{{ constants.oneUppercase }}</p>\r\n <p>{{ constants.oneLowercase }}</p>\r\n <p>{{ constants.oneNumber }}</p>\r\n <p>{{ constants.specialCharacter }}</p>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }}</b>\r\n </p>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('minLength') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('minLength')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('minLength')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.minimumCharacter }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('uppercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('uppercase')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('uppercase')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneUppercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('lowercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('lowercase')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('lowercase')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneLowercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('number') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('number')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('number')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneNumber }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('specialCharacter') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('specialCharacter')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('specialCharacter')\">\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.specialCharacter }}</span>\r\n </div>\r\n </ng-container>\r\n </div>\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"2\"\r\n formControlName=\"password\"\r\n [placeholder]=\"constants.password\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"3\"\r\n formControlName=\"confirmPassword\"\r\n [placeholder]=\"constants.confirmPassword\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n</form>\r\n", styles: ["input[type=password],input[type=text]{width:100%;height:30px;padding:10px 16px;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}input[type=password].ng-dirty.ng-invalid,.input-invalid{border:1px solid #fe3824!important}input[type=password]:focus:focus{outline:none;box-shadow:none}input[type=password]:focus::placeholder{color:#a4a4a4}.password-policies{margin-bottom:1rem}.password-policies p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal;margin-bottom:0}.span-text{vertical-align:top;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal}#icon-div-msg{display:inline;margin-right:.3125rem}#icon-div-msg .material-icons{margin-top:1px;font-size:16px}#alert-div{padding:4px 0 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3}#alert-div #icon-div{width:18px;margin-top:-5px;display:inline-block}#alert-div #icon-div .material-icons{color:#f44336;font-size:1.125rem;margin-left:.5rem}#alert-div p{display:inline;vertical-align:top;margin-left:.5rem;color:#4a4a4a;font-family:Roboto;font-size:.7188rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.error-color{color:#fe3824}.success-color{color:#43a047}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
620
748
|
}
|
|
621
749
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PasswordMatchingComponent, decorators: [{
|
|
622
750
|
type: Component,
|
|
623
|
-
args: [{ selector: 'anna-cognito-lib-password-matching', template: "<form [formGroup]=\"passwordForm\">\r\n <div id=\"alert-div\" *ngIf=\"passwordNotMatching\">\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p>{{ constants.passwordNotMatching }}</p>\r\n </div>\r\n <div class=\"password-policies\">\r\n <ng-container *ngIf=\"!passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }} </b>\r\n </p>\r\n <p>{{ constants.minimumCharacter }}</p>\r\n <p>{{ constants.oneUppercase }}</p>\r\n <p>{{ constants.oneLowercase }}</p>\r\n <p>{{ constants.oneNumber }}</p>\r\n <p>{{ constants.specialCharacter }}</p>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }}</b>\r\n </p>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('minLength') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('minLength')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('minLength')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.minimumCharacter }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('uppercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('uppercase')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('uppercase')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneUppercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('lowercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('lowercase')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('lowercase')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneLowercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('number') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('number')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('number')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneNumber }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('specialCharacter') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('specialCharacter')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('specialCharacter')\">\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.specialCharacter }}</span>\r\n </div>\r\n </ng-container>\r\n </div>\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"2\"\r\n formControlName=\"password\"\r\n [placeholder]=\"constants.password\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"3\"\r\n formControlName=\"confirmPassword\"\r\n [placeholder]=\"constants.confirmPassword\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n</form>\r\n", styles: ["input[type=password],input[type=text]{width:100%;height:30px;padding:10px 16px;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}input[type=password].ng-dirty.ng-invalid,.input-invalid{border:1px solid #fe3824!important}input[type=password]:focus:focus{outline:none;box-shadow:none}input[type=password]:focus::placeholder{color:#a4a4a4}.password-policies{margin-bottom:1rem}.password-policies p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal;margin-bottom:0}.span-text{vertical-align:top;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal}#icon-div-msg{display:inline;margin-right:.3125rem}#icon-div-msg .material-icons{margin-top:1px;font-size:16px}#alert-div{padding:4px 0 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3}#alert-div #icon-div{width:18px;margin-top:-5px;display:inline-block}#alert-div #icon-div .material-icons{color:#f44336;font-size:1.125rem;margin-left:.5rem}#alert-div p{display:inline;vertical-align:top;margin-left:.5rem;color:#4a4a4a;font-family:Roboto;font-size:.7188rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.error-color{color:#fe3824}.success-color{color:#43a047}\n"] }]
|
|
751
|
+
args: [{ selector: 'anna-cognito-lib-password-matching', standalone: true, imports: [FormsModule, ReactiveFormsModule, NgIf, NgClass], template: "<form [formGroup]=\"passwordForm\">\r\n <div id=\"alert-div\" *ngIf=\"passwordNotMatching\">\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p>{{ constants.passwordNotMatching }}</p>\r\n </div>\r\n <div class=\"password-policies\">\r\n <ng-container *ngIf=\"!passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }} </b>\r\n </p>\r\n <p>{{ constants.minimumCharacter }}</p>\r\n <p>{{ constants.oneUppercase }}</p>\r\n <p>{{ constants.oneLowercase }}</p>\r\n <p>{{ constants.oneNumber }}</p>\r\n <p>{{ constants.specialCharacter }}</p>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"passwordForm.get('password')?.dirty\">\r\n <p>\r\n <b>{{ constants.passwordMustContain }}</b>\r\n </p>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('minLength') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('minLength')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('minLength')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.minimumCharacter }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('uppercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('uppercase')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('uppercase')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneUppercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('lowercase') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('lowercase')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('lowercase')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneLowercase }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('number') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('number')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('number')\"> check_circle </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.oneNumber }}</span>\r\n </div>\r\n\r\n <div [ngClass]=\"passwordForm.get('password')?.hasError('specialCharacter') ? 'error-color' : 'success-color'\">\r\n <div id=\"icon-div-msg\">\r\n <span class=\"material-icons\" *ngIf=\"passwordForm.get('password')?.hasError('specialCharacter')\"> cancel </span>\r\n <span class=\"material-icons\" *ngIf=\"!passwordForm.get('password')?.hasError('specialCharacter')\">\r\n check_circle\r\n </span>\r\n </div>\r\n <span class=\"span-text\">{{ constants.specialCharacter }}</span>\r\n </div>\r\n </ng-container>\r\n </div>\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"2\"\r\n formControlName=\"password\"\r\n [placeholder]=\"constants.password\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n\r\n <input\r\n type=\"password\"\r\n tabindex=\"3\"\r\n formControlName=\"confirmPassword\"\r\n [placeholder]=\"constants.confirmPassword\"\r\n [ngClass]=\"{ 'input-invalid': passwordNotMatching }\"\r\n />\r\n</form>\r\n", styles: ["input[type=password],input[type=text]{width:100%;height:30px;padding:10px 16px;border:1px solid #979797;margin-bottom:.625rem;border-radius:.375rem}input[type=password].ng-dirty.ng-invalid,.input-invalid{border:1px solid #fe3824!important}input[type=password]:focus:focus{outline:none;box-shadow:none}input[type=password]:focus::placeholder{color:#a4a4a4}.password-policies{margin-bottom:1rem}.password-policies p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal;margin-bottom:0}.span-text{vertical-align:top;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.31;letter-spacing:normal}#icon-div-msg{display:inline;margin-right:.3125rem}#icon-div-msg .material-icons{margin-top:1px;font-size:16px}#alert-div{padding:4px 0 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3}#alert-div #icon-div{width:18px;margin-top:-5px;display:inline-block}#alert-div #icon-div .material-icons{color:#f44336;font-size:1.125rem;margin-left:.5rem}#alert-div p{display:inline;vertical-align:top;margin-left:.5rem;color:#4a4a4a;font-family:Roboto;font-size:.7188rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}.error-color{color:#fe3824}.success-color{color:#43a047}\n"] }]
|
|
624
752
|
}], ctorParameters: function () { return [{ type: i2.FormBuilder, decorators: [{
|
|
625
753
|
type: Inject,
|
|
626
754
|
args: [FormBuilder]
|
|
@@ -669,139 +797,15 @@ class SetNewPasswordComponent {
|
|
|
669
797
|
}
|
|
670
798
|
}
|
|
671
799
|
}
|
|
672
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SetNewPasswordComponent, deps: [{ token: AnnaLibAuthService }, { token:
|
|
673
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SetNewPasswordComponent, selector: "anna-cognito-lib-set-new-password", ngImport: i0, template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <form>\r\n <div id=\"heading\">\r\n {{ constants.setNewPasswordHeading }}\r\n </div>\r\n\r\n <div id=\"alert-div\" *ngIf=\"authService.setNewPasswordErrorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.setNewPasswordErrorMessage }}</p>\r\n </div>\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button tabindex=\"3\" class=\"login-btn\" [disabled]=\"!isFormValid()\" (click)=\"onSettingNewPassword()\">\r\n {{ authService.setNewPasswordButtonMessage }}\r\n </button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type:
|
|
800
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SetNewPasswordComponent, deps: [{ token: AnnaLibAuthService }, { token: i1.Router }, { token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
801
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SetNewPasswordComponent, isStandalone: true, selector: "anna-cognito-lib-set-new-password", ngImport: i0, template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <form>\r\n <div id=\"heading\">\r\n {{ constants.setNewPasswordHeading }}\r\n </div>\r\n\r\n <div id=\"alert-div\" *ngIf=\"authService.setNewPasswordErrorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.setNewPasswordErrorMessage }}</p>\r\n </div>\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button tabindex=\"3\" class=\"login-btn\" [disabled]=\"!isFormValid()\" (click)=\"onSettingNewPassword()\">\r\n {{ authService.setNewPasswordButtonMessage }}\r\n </button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: PasswordMatchingComponent, selector: "anna-cognito-lib-password-matching", inputs: ["passwordNotMatching"], outputs: ["passwordChange", "confirmPasswordChange"] }, { kind: "component", type: PoweredByLogoTemplateComponent, selector: "anna-cognito-lib-powered-by-logo-template" }, { kind: "component", type: SurewavesYearLogoComponent, selector: "anna-cognito-lib-surewaves-year-logo" }, { kind: "component", type: VersionAndTermPolicyComponent, selector: "anna-cognito-lib-version-and-term-policy" }] }); }
|
|
674
802
|
}
|
|
675
803
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SetNewPasswordComponent, decorators: [{
|
|
676
804
|
type: Component,
|
|
677
|
-
args: [{ selector: 'anna-cognito-lib-set-new-password', template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <form>\r\n <div id=\"heading\">\r\n {{ constants.setNewPasswordHeading }}\r\n </div>\r\n\r\n <div id=\"alert-div\" *ngIf=\"authService.setNewPasswordErrorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.setNewPasswordErrorMessage }}</p>\r\n </div>\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button tabindex=\"3\" class=\"login-btn\" [disabled]=\"!isFormValid()\" (click)=\"onSettingNewPassword()\">\r\n {{ authService.setNewPasswordButtonMessage }}\r\n </button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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"] }]
|
|
678
|
-
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type:
|
|
679
|
-
type: Inject,
|
|
680
|
-
args: [CONFIG_SERVICE_TOKEN]
|
|
681
|
-
}] }]; } });
|
|
682
|
-
|
|
683
|
-
class AuthenticationData {
|
|
684
|
-
constructor(Username, Password) {
|
|
685
|
-
this.Username = Username;
|
|
686
|
-
this.Password = Password;
|
|
687
|
-
}
|
|
688
|
-
}
|
|
689
|
-
class UserPoolInformation {
|
|
690
|
-
constructor(UserPoolId, ClientId) {
|
|
691
|
-
this.UserPoolId = UserPoolId;
|
|
692
|
-
this.ClientId = ClientId;
|
|
693
|
-
}
|
|
694
|
-
}
|
|
695
|
-
class UsernameInfo {
|
|
696
|
-
constructor(object) {
|
|
697
|
-
this.isUsernameAvailable = object.isUsernameAvailable;
|
|
698
|
-
}
|
|
699
|
-
}
|
|
700
|
-
class UserState {
|
|
701
|
-
constructor(userState) {
|
|
702
|
-
this.userStatus = userState;
|
|
703
|
-
this.isUserWithTempPassword = userState == 'FORCE_CHANGE_PASSWORD';
|
|
704
|
-
}
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
// Angular import statements
|
|
708
|
-
class ForgotPasswordComponent {
|
|
709
|
-
constructor(authService, fb, toastr, router, consumingProjectConfigService, consumingProjectAuthService, consumingProjectSSOLoginService) {
|
|
710
|
-
this.authService = authService;
|
|
711
|
-
this.fb = fb;
|
|
712
|
-
this.toastr = toastr;
|
|
713
|
-
this.router = router;
|
|
714
|
-
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
715
|
-
this.consumingProjectAuthService = consumingProjectAuthService;
|
|
716
|
-
this.consumingProjectSSOLoginService = consumingProjectSSOLoginService;
|
|
717
|
-
this.passwordNotMatching = false;
|
|
718
|
-
this.password = { value: null, status: null };
|
|
719
|
-
this.confirmPassword = { value: null, status: null };
|
|
720
|
-
this.infoMessageToRedirectLogin = null;
|
|
721
|
-
this.isLoading = false;
|
|
722
|
-
}
|
|
723
|
-
ngOnInit() {
|
|
724
|
-
this.infoMessageToRedirectLogin = null;
|
|
725
|
-
this.constants = LoginConstant;
|
|
726
|
-
this.onIntialiseForm();
|
|
727
|
-
if (this.consumingProjectAuthService.userName) {
|
|
728
|
-
this.onUpdateForm();
|
|
729
|
-
}
|
|
730
|
-
this.authService.forgotPasswordAndGlobalSignoutLoader = false;
|
|
731
|
-
}
|
|
732
|
-
onIntialiseForm() {
|
|
733
|
-
this.verifyRegisteredEmail = this.fb.group({
|
|
734
|
-
email: [null, [Validators.required]],
|
|
735
|
-
});
|
|
736
|
-
}
|
|
737
|
-
onUpdateForm() {
|
|
738
|
-
this.verifyRegisteredEmail.patchValue({
|
|
739
|
-
email: this.consumingProjectAuthService.userName,
|
|
740
|
-
});
|
|
741
|
-
}
|
|
742
|
-
isFormValid() {
|
|
743
|
-
return this.verifyRegisteredEmail.valid;
|
|
744
|
-
}
|
|
745
|
-
onLoginOrGetOtpButtonClick() {
|
|
746
|
-
if (this.infoMessageToRedirectLogin) {
|
|
747
|
-
this.router.navigate([LoginConstant.loginPageUrl]);
|
|
748
|
-
}
|
|
749
|
-
else {
|
|
750
|
-
this.onVerifyRegisteredEmail();
|
|
751
|
-
}
|
|
752
|
-
}
|
|
753
|
-
onVerifyRegisteredEmail() {
|
|
754
|
-
this.isLoading = true;
|
|
755
|
-
this.errorMessage = null;
|
|
756
|
-
this.infoMessageToRedirectLogin = null;
|
|
757
|
-
let username = this.verifyRegisteredEmail.controls['email'].value;
|
|
758
|
-
let isUsernameAvailable = this.authService.consumingProjectAuthService.isUsernameAvailable(username);
|
|
759
|
-
let isUsernameTempPasswordSet = this.authService.consumingProjectAuthService.getUserState(username);
|
|
760
|
-
forkJoin([isUsernameAvailable, isUsernameTempPasswordSet]).subscribe({ next: (result) => {
|
|
761
|
-
let isUsernameAvailable = new UsernameInfo(result[0]).isUsernameAvailable;
|
|
762
|
-
let isUserWithTempPassword = new UserState(result[1]).isUserWithTempPassword;
|
|
763
|
-
this.onGettingUserStatus(isUsernameAvailable, isUserWithTempPassword, username);
|
|
764
|
-
this.isLoading = false;
|
|
765
|
-
},
|
|
766
|
-
error: (error) => {
|
|
767
|
-
if (error.status == 400) {
|
|
768
|
-
this.errorMessage = this.constants.userNotFound;
|
|
769
|
-
}
|
|
770
|
-
else {
|
|
771
|
-
this.toastr.error(LoginConstant.apiFailErrorMessage);
|
|
772
|
-
}
|
|
773
|
-
this.isLoading = false;
|
|
774
|
-
}
|
|
775
|
-
});
|
|
776
|
-
}
|
|
777
|
-
onGettingUserStatus(isUsernameAvailable, isUserWithTempPassword, username) {
|
|
778
|
-
if (!isUsernameAvailable) {
|
|
779
|
-
if (!isUserWithTempPassword) {
|
|
780
|
-
this.authService.onForgotPasswordGenerateOTP(username);
|
|
781
|
-
}
|
|
782
|
-
else {
|
|
783
|
-
this.infoMessageToRedirectLogin = this.constants.firstTimeLoginUserTempPasswordMsg;
|
|
784
|
-
}
|
|
785
|
-
}
|
|
786
|
-
else {
|
|
787
|
-
this.errorMessage = this.constants.userNotFound;
|
|
788
|
-
}
|
|
789
|
-
}
|
|
790
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ForgotPasswordComponent, deps: [{ token: AnnaLibAuthService }, { token: i2.FormBuilder }, { token: i4.ToastrService }, { token: i3.Router }, { token: CONFIG_SERVICE_TOKEN }, { token: AUTH_SERVICE_TOKEN }, { token: SSO_LOGIN_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
791
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ForgotPasswordComponent, selector: "anna-cognito-lib-forgot-password", ngImport: i0, template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"verifyRegisteredEmail\">\r\n <ng-container *ngIf=\"!infoMessageToRedirectLogin\">\r\n <div id=\"heading\">\r\n {{ constants.forgotPasswordHeading }}\r\n </div>\r\n <p>\r\n {{consumingProjectSSOLoginService?.isSsoIntegrated ? constants.PleaseEnterYourUsercodeMessage : constants.PleaseEnterYourUsernameMessage }}\r\n </p>\r\n </ng-container>\r\n <div id=\"alert-div\" *ngIf=\"errorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p id=\"alert-msg\">{{ errorMessage }}</p>\r\n </div>\r\n <div id=\"info-div\" *ngIf=\"infoMessageToRedirectLogin\">\r\n <i class=\"mi mdi-info\"></i>\r\n <p>{{ infoMessageToRedirectLogin }}</p>\r\n </div>\r\n\r\n <input *ngIf=\"!infoMessageToRedirectLogin\"\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"email\"\r\n [placeholder]=\"consumingProjectSSOLoginService?.isSsoIntegrated ? constants.enterUserCode : constants.enterEmail\"\r\n [ngClass]=\"{\r\n 'input-invalid': verifyRegisteredEmail.get('email')?.dirty && verifyRegisteredEmail.get('email')?.errors\r\n }\"\r\n />\r\n\r\n <button\r\n tabindex=\"2\"\r\n type=\"submit\"\r\n class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"isLoading\"\r\n (click)=\"onLoginOrGetOtpButtonClick()\"\r\n [spinnerButtonText]=\"infoMessageToRedirectLogin ? constants.login : constants.forgotPasswordButton\"\r\n ></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:16px}input[type=text]:focus{box-shadow:none}.back-btn{font-size:27px;position:relative;color:#268bff;float:left;top:-30px;left:-15px;font-weight:400!important}\n"], dependencies: [{ kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i4$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: SpinnerButtonDirective, selector: "[anna-cognito-lib-SpinnerButton]", inputs: ["anna-cognito-lib-SpinnerButton", "spinnerButtonText"] }, { 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" }] }); }
|
|
792
|
-
}
|
|
793
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ForgotPasswordComponent, decorators: [{
|
|
794
|
-
type: Component,
|
|
795
|
-
args: [{ selector: 'anna-cognito-lib-forgot-password', template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <form [formGroup]=\"verifyRegisteredEmail\">\r\n <ng-container *ngIf=\"!infoMessageToRedirectLogin\">\r\n <div id=\"heading\">\r\n {{ constants.forgotPasswordHeading }}\r\n </div>\r\n <p>\r\n {{consumingProjectSSOLoginService?.isSsoIntegrated ? constants.PleaseEnterYourUsercodeMessage : constants.PleaseEnterYourUsernameMessage }}\r\n </p>\r\n </ng-container>\r\n <div id=\"alert-div\" *ngIf=\"errorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p id=\"alert-msg\">{{ errorMessage }}</p>\r\n </div>\r\n <div id=\"info-div\" *ngIf=\"infoMessageToRedirectLogin\">\r\n <i class=\"mi mdi-info\"></i>\r\n <p>{{ infoMessageToRedirectLogin }}</p>\r\n </div>\r\n\r\n <input *ngIf=\"!infoMessageToRedirectLogin\"\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"email\"\r\n [placeholder]=\"consumingProjectSSOLoginService?.isSsoIntegrated ? constants.enterUserCode : constants.enterEmail\"\r\n [ngClass]=\"{\r\n 'input-invalid': verifyRegisteredEmail.get('email')?.dirty && verifyRegisteredEmail.get('email')?.errors\r\n }\"\r\n />\r\n\r\n <button\r\n tabindex=\"2\"\r\n type=\"submit\"\r\n class=\"login-btn\"\r\n [anna-cognito-lib-SpinnerButton]=\"isLoading\"\r\n (click)=\"onLoginOrGetOtpButtonClick()\"\r\n [spinnerButtonText]=\"infoMessageToRedirectLogin ? constants.login : constants.forgotPasswordButton\"\r\n ></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:16px}input[type=text]:focus{box-shadow:none}.back-btn{font-size:27px;position:relative;color:#268bff;float:left;top:-30px;left:-15px;font-weight:400!important}\n"] }]
|
|
796
|
-
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type: i4.ToastrService }, { type: i3.Router }, { type: undefined, decorators: [{
|
|
805
|
+
args: [{ selector: 'anna-cognito-lib-set-new-password', standalone: true, imports: [FormsModule, NgIf, PasswordMatchingComponent, PoweredByLogoTemplateComponent, SurewavesYearLogoComponent, VersionAndTermPolicyComponent], template: "<div class=\"main\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <form>\r\n <div id=\"heading\">\r\n {{ constants.setNewPasswordHeading }}\r\n </div>\r\n\r\n <div id=\"alert-div\" *ngIf=\"authService.setNewPasswordErrorMessage\">\r\n <span class=\"material-icons\">report</span>\r\n <p>{{ authService.setNewPasswordErrorMessage }}</p>\r\n </div>\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button tabindex=\"3\" class=\"login-btn\" [disabled]=\"!isFormValid()\" (click)=\"onSettingNewPassword()\">\r\n {{ authService.setNewPasswordButtonMessage }}\r\n </button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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"] }]
|
|
806
|
+
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i1.Router }, { type: undefined, decorators: [{
|
|
797
807
|
type: Inject,
|
|
798
808
|
args: [CONFIG_SERVICE_TOKEN]
|
|
799
|
-
}] }, { type: undefined, decorators: [{
|
|
800
|
-
type: Inject,
|
|
801
|
-
args: [AUTH_SERVICE_TOKEN]
|
|
802
|
-
}] }, { type: undefined, decorators: [{
|
|
803
|
-
type: Inject,
|
|
804
|
-
args: [SSO_LOGIN_SERVICE_TOKEN]
|
|
805
809
|
}] }]; } });
|
|
806
810
|
|
|
807
811
|
// Angular import statements
|
|
@@ -854,91 +858,17 @@ class VerifyAndSetNewPasswordComponent {
|
|
|
854
858
|
}
|
|
855
859
|
}
|
|
856
860
|
}
|
|
857
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: VerifyAndSetNewPasswordComponent, deps: [{ token: AnnaLibAuthService }, { token: i2.FormBuilder }, { token:
|
|
858
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: VerifyAndSetNewPasswordComponent, selector: "anna-cognito-lib-verify-and-set-new-password", ngImport: i0, template: "<div class=\"main\" [ngClass]=\"{ 'main-height': authService.verifyAndSetNewPasswordErrorMessage }\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <span class=\"back-btn\" [routerLink]=\"constants.forgortPasswordPageUrl\">\r\n <i class=\"mdi mdi-arrow-left\"></i>\r\n </span>\r\n\r\n <form [formGroup]=\"verifyOtpForm\">\r\n <div class=\"pull-left\" id=\"heading\">\r\n {{ constants.verifyAndSetNewPasswordheading }}\r\n </div>\r\n <p>{{ authService.verifyAndSetNewPasswordMessage }}</p>\r\n\r\n <div id=\"alert-div\" *ngIf=\"authService.verifyAndSetNewPasswordErrorMessage\">\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p id=\"display-block-msg\">{{ authService.verifyAndSetNewPasswordErrorMessage }}</p>\r\n </div>\r\n\r\n <input\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"otp\"\r\n [placeholder]=\"constants.enterOtp\"\r\n autocomplete=\"new-field-name\"\r\n [ngClass]=\"{ 'input-invalid': authService.verifyAndSetNewPasswordErrorMessage }\"\r\n />\r\n\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button\r\n tabindex=\"4\"\r\n class=\"login-btn\"\r\n type=\"submit\"\r\n [disabled]=\"authService.sessionLocked || !isFormValid()\"\r\n (click)=\"onVerifyOtpSettingNewPassword()\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.forgotPasswordAndGlobalSignoutLoader\"\r\n [spinnerButtonText]=\"authService.verifyAndSetNewPasswordButton\"\r\n ></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}.main{height:calc(115vh - 50px)}.main-height{height:calc(125vh - 50px)}section{top:52%}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:24px}input[type=text]:focus{box-shadow:none}.back-btn{width:27px;height:27px;top:-27px;left:-15px;cursor:pointer;position:relative;color:#268bff;float:left;border-radius:50%;border:1px solid #268bff;background-color:#f4f4f4}.back-btn i{position:absolute;top:.1875rem;left:.25rem}\n"], dependencies: [{ kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type:
|
|
861
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: VerifyAndSetNewPasswordComponent, deps: [{ token: AnnaLibAuthService }, { token: i2.FormBuilder }, { token: i1.Router }, { token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
862
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: VerifyAndSetNewPasswordComponent, isStandalone: true, selector: "anna-cognito-lib-verify-and-set-new-password", ngImport: i0, template: "<div class=\"main\" [ngClass]=\"{ 'main-height': authService.verifyAndSetNewPasswordErrorMessage }\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <span class=\"back-btn\" [routerLink]=\"constants.forgortPasswordPageUrl\">\r\n <i class=\"mdi mdi-arrow-left\"></i>\r\n </span>\r\n\r\n <form [formGroup]=\"verifyOtpForm\">\r\n <div class=\"pull-left\" id=\"heading\">\r\n {{ constants.verifyAndSetNewPasswordheading }}\r\n </div>\r\n <p>{{ authService.verifyAndSetNewPasswordMessage }}</p>\r\n\r\n <div id=\"alert-div\" *ngIf=\"authService.verifyAndSetNewPasswordErrorMessage\">\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p id=\"display-block-msg\">{{ authService.verifyAndSetNewPasswordErrorMessage }}</p>\r\n </div>\r\n\r\n <input\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"otp\"\r\n [placeholder]=\"constants.enterOtp\"\r\n autocomplete=\"new-field-name\"\r\n [ngClass]=\"{ 'input-invalid': authService.verifyAndSetNewPasswordErrorMessage }\"\r\n />\r\n\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button\r\n tabindex=\"4\"\r\n class=\"login-btn\"\r\n type=\"submit\"\r\n [disabled]=\"authService.sessionLocked || !isFormValid()\"\r\n (click)=\"onVerifyOtpSettingNewPassword()\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.forgotPasswordAndGlobalSignoutLoader\"\r\n [spinnerButtonText]=\"authService.verifyAndSetNewPasswordButton\"\r\n ></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}.main{height:calc(115vh - 50px)}.main-height{height:calc(125vh - 50px)}section{top:52%}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:24px}input[type=text]:focus{box-shadow:none}.back-btn{width:27px;height:27px;top:-27px;left:-15px;cursor:pointer;position:relative;color:#268bff;float:left;border-radius:50%;border:1px solid #268bff;background-color:#f4f4f4}.back-btn i{position:absolute;top:.1875rem;left:.25rem}\n"], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: PasswordMatchingComponent, selector: "anna-cognito-lib-password-matching", inputs: ["passwordNotMatching"], outputs: ["passwordChange", "confirmPasswordChange"] }, { kind: "directive", type: SpinnerButtonDirective, selector: "[anna-cognito-lib-SpinnerButton]", inputs: ["anna-cognito-lib-SpinnerButton", "spinnerButtonText"] }, { kind: "component", type: PoweredByLogoTemplateComponent, selector: "anna-cognito-lib-powered-by-logo-template" }, { kind: "component", type: SurewavesYearLogoComponent, selector: "anna-cognito-lib-surewaves-year-logo" }, { kind: "component", type: VersionAndTermPolicyComponent, selector: "anna-cognito-lib-version-and-term-policy" }] }); }
|
|
859
863
|
}
|
|
860
864
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: VerifyAndSetNewPasswordComponent, decorators: [{
|
|
861
865
|
type: Component,
|
|
862
|
-
args: [{ selector: 'anna-cognito-lib-verify-and-set-new-password', template: "<div class=\"main\" [ngClass]=\"{ 'main-height': authService.verifyAndSetNewPasswordErrorMessage }\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <span class=\"back-btn\" [routerLink]=\"constants.forgortPasswordPageUrl\">\r\n <i class=\"mdi mdi-arrow-left\"></i>\r\n </span>\r\n\r\n <form [formGroup]=\"verifyOtpForm\">\r\n <div class=\"pull-left\" id=\"heading\">\r\n {{ constants.verifyAndSetNewPasswordheading }}\r\n </div>\r\n <p>{{ authService.verifyAndSetNewPasswordMessage }}</p>\r\n\r\n <div id=\"alert-div\" *ngIf=\"authService.verifyAndSetNewPasswordErrorMessage\">\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p id=\"display-block-msg\">{{ authService.verifyAndSetNewPasswordErrorMessage }}</p>\r\n </div>\r\n\r\n <input\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"otp\"\r\n [placeholder]=\"constants.enterOtp\"\r\n autocomplete=\"new-field-name\"\r\n [ngClass]=\"{ 'input-invalid': authService.verifyAndSetNewPasswordErrorMessage }\"\r\n />\r\n\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button\r\n tabindex=\"4\"\r\n class=\"login-btn\"\r\n type=\"submit\"\r\n [disabled]=\"authService.sessionLocked || !isFormValid()\"\r\n (click)=\"onVerifyOtpSettingNewPassword()\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.forgotPasswordAndGlobalSignoutLoader\"\r\n [spinnerButtonText]=\"authService.verifyAndSetNewPasswordButton\"\r\n ></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}.main{height:calc(115vh - 50px)}.main-height{height:calc(125vh - 50px)}section{top:52%}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:24px}input[type=text]:focus{box-shadow:none}.back-btn{width:27px;height:27px;top:-27px;left:-15px;cursor:pointer;position:relative;color:#268bff;float:left;border-radius:50%;border:1px solid #268bff;background-color:#f4f4f4}.back-btn i{position:absolute;top:.1875rem;left:.25rem}\n"] }]
|
|
863
|
-
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type:
|
|
866
|
+
args: [{ selector: 'anna-cognito-lib-verify-and-set-new-password', standalone: true, imports: [NgClass, RouterLink, FormsModule, ReactiveFormsModule, NgIf, PasswordMatchingComponent, SpinnerButtonDirective, PoweredByLogoTemplateComponent, SurewavesYearLogoComponent, VersionAndTermPolicyComponent], template: "<div class=\"main\" [ngClass]=\"{ 'main-height': authService.verifyAndSetNewPasswordErrorMessage }\">\r\n <section>\r\n <header>\r\n <img [src]=\"consumingProjectConfigService.appGenericConfig.loginPageLogoImgUrl\" alt=\"Anna Logo\" />\r\n </header>\r\n <article>\r\n <span class=\"back-btn\" [routerLink]=\"constants.forgortPasswordPageUrl\">\r\n <i class=\"mdi mdi-arrow-left\"></i>\r\n </span>\r\n\r\n <form [formGroup]=\"verifyOtpForm\">\r\n <div class=\"pull-left\" id=\"heading\">\r\n {{ constants.verifyAndSetNewPasswordheading }}\r\n </div>\r\n <p>{{ authService.verifyAndSetNewPasswordMessage }}</p>\r\n\r\n <div id=\"alert-div\" *ngIf=\"authService.verifyAndSetNewPasswordErrorMessage\">\r\n <div id=\"icon-div\">\r\n <span class=\"material-icons\">report</span>\r\n </div>\r\n <p id=\"display-block-msg\">{{ authService.verifyAndSetNewPasswordErrorMessage }}</p>\r\n </div>\r\n\r\n <input\r\n type=\"text\"\r\n tabindex=\"1\"\r\n formControlName=\"otp\"\r\n [placeholder]=\"constants.enterOtp\"\r\n autocomplete=\"new-field-name\"\r\n [ngClass]=\"{ 'input-invalid': authService.verifyAndSetNewPasswordErrorMessage }\"\r\n />\r\n\r\n <anna-cognito-lib-password-matching\r\n (passwordChange)=\"onPasswordChange($event)\"\r\n (confirmPasswordChange)=\"onConfirmPasswordChange($event)\"\r\n [passwordNotMatching]=\"passwordNotMatching\"\r\n >\r\n </anna-cognito-lib-password-matching>\r\n <button\r\n tabindex=\"4\"\r\n class=\"login-btn\"\r\n type=\"submit\"\r\n [disabled]=\"authService.sessionLocked || !isFormValid()\"\r\n (click)=\"onVerifyOtpSettingNewPassword()\"\r\n [anna-cognito-lib-SpinnerButton]=\"authService.forgotPasswordAndGlobalSignoutLoader\"\r\n [spinnerButtonText]=\"authService.verifyAndSetNewPasswordButton\"\r\n ></button>\r\n </form>\r\n </article>\r\n <footer>\r\n <anna-cognito-lib-powered-by-logo-template>\r\n </anna-cognito-lib-powered-by-logo-template>\r\n </footer>\r\n </section>\r\n</div>\r\n\r\n<div class=\"page-footer\">\r\n <anna-cognito-lib-surewaves-year-logo></anna-cognito-lib-surewaves-year-logo>\r\n <anna-cognito-lib-version-and-term-policy></anna-cognito-lib-version-and-term-policy>\r\n</div>\r\n", 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:.3125rem 0;margin-bottom:.75rem;border-radius:.25rem;border:solid 1px #f9b3ae;background-color:#fde4e3;justify-content:left;align-items:center;display:flex}#alert-div .material-icons{color:#f44336;font-size:1rem;margin-left:.5rem}#alert-div p{margin-left:4px!important;margin: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}.main{height:calc(115vh - 50px)}.main-height{height:calc(125vh - 50px)}section{top:52%}p{color:#4a4a4a;font-family:Roboto;font-size:1rem;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal}input[type=text]{margin-bottom:24px}input[type=text]:focus{box-shadow:none}.back-btn{width:27px;height:27px;top:-27px;left:-15px;cursor:pointer;position:relative;color:#268bff;float:left;border-radius:50%;border:1px solid #268bff;background-color:#f4f4f4}.back-btn i{position:absolute;top:.1875rem;left:.25rem}\n"] }]
|
|
867
|
+
}], ctorParameters: function () { return [{ type: AnnaLibAuthService }, { type: i2.FormBuilder }, { type: i1.Router }, { type: undefined, decorators: [{
|
|
864
868
|
type: Inject,
|
|
865
869
|
args: [CONFIG_SERVICE_TOKEN]
|
|
866
870
|
}] }]; } });
|
|
867
871
|
|
|
868
|
-
class AnnaCognitoLibModule {
|
|
869
|
-
constructor() { }
|
|
870
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaCognitoLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
871
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: AnnaCognitoLibModule, declarations: [CognitoAndSSOLoginContainerComponent,
|
|
872
|
-
SetNewPasswordComponent,
|
|
873
|
-
PasswordMatchingComponent,
|
|
874
|
-
ForgotPasswordComponent,
|
|
875
|
-
VerifyAndSetNewPasswordComponent,
|
|
876
|
-
SpinnerButtonDirective,
|
|
877
|
-
VersionAndTermPolicyComponent,
|
|
878
|
-
SurewavesYearLogoComponent,
|
|
879
|
-
PoweredByLogoTemplateComponent,
|
|
880
|
-
SsoLoginComponent,
|
|
881
|
-
AnnaLoginComponent], imports: [FormsModule,
|
|
882
|
-
ReactiveFormsModule,
|
|
883
|
-
RouterModule,
|
|
884
|
-
CommonModule,
|
|
885
|
-
NgOptimizedImage], exports: [CognitoAndSSOLoginContainerComponent,
|
|
886
|
-
SsoLoginComponent,
|
|
887
|
-
AnnaLoginComponent,
|
|
888
|
-
SetNewPasswordComponent,
|
|
889
|
-
PasswordMatchingComponent,
|
|
890
|
-
ForgotPasswordComponent,
|
|
891
|
-
VerifyAndSetNewPasswordComponent,
|
|
892
|
-
SpinnerButtonDirective,
|
|
893
|
-
VersionAndTermPolicyComponent,
|
|
894
|
-
SurewavesYearLogoComponent,
|
|
895
|
-
PoweredByLogoTemplateComponent,
|
|
896
|
-
NgOptimizedImage] }); }
|
|
897
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaCognitoLibModule, imports: [FormsModule,
|
|
898
|
-
ReactiveFormsModule,
|
|
899
|
-
RouterModule,
|
|
900
|
-
CommonModule] }); }
|
|
901
|
-
}
|
|
902
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnnaCognitoLibModule, decorators: [{
|
|
903
|
-
type: NgModule,
|
|
904
|
-
args: [{
|
|
905
|
-
declarations: [
|
|
906
|
-
CognitoAndSSOLoginContainerComponent,
|
|
907
|
-
SetNewPasswordComponent,
|
|
908
|
-
PasswordMatchingComponent,
|
|
909
|
-
ForgotPasswordComponent,
|
|
910
|
-
VerifyAndSetNewPasswordComponent,
|
|
911
|
-
SpinnerButtonDirective,
|
|
912
|
-
VersionAndTermPolicyComponent,
|
|
913
|
-
SurewavesYearLogoComponent,
|
|
914
|
-
PoweredByLogoTemplateComponent,
|
|
915
|
-
SsoLoginComponent,
|
|
916
|
-
AnnaLoginComponent,
|
|
917
|
-
],
|
|
918
|
-
imports: [
|
|
919
|
-
FormsModule,
|
|
920
|
-
ReactiveFormsModule,
|
|
921
|
-
RouterModule,
|
|
922
|
-
CommonModule,
|
|
923
|
-
NgOptimizedImage
|
|
924
|
-
],
|
|
925
|
-
exports: [
|
|
926
|
-
CognitoAndSSOLoginContainerComponent,
|
|
927
|
-
SsoLoginComponent,
|
|
928
|
-
AnnaLoginComponent,
|
|
929
|
-
SetNewPasswordComponent,
|
|
930
|
-
PasswordMatchingComponent,
|
|
931
|
-
ForgotPasswordComponent,
|
|
932
|
-
VerifyAndSetNewPasswordComponent,
|
|
933
|
-
SpinnerButtonDirective,
|
|
934
|
-
VersionAndTermPolicyComponent,
|
|
935
|
-
SurewavesYearLogoComponent,
|
|
936
|
-
PoweredByLogoTemplateComponent,
|
|
937
|
-
NgOptimizedImage
|
|
938
|
-
]
|
|
939
|
-
}]
|
|
940
|
-
}], ctorParameters: function () { return []; } });
|
|
941
|
-
|
|
942
872
|
class AnnaConfigService {
|
|
943
873
|
constructor(consumingProjectConfigService) {
|
|
944
874
|
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
@@ -976,10 +906,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
976
906
|
/*
|
|
977
907
|
* Public API Surface of anna-cognito-lib
|
|
978
908
|
*/
|
|
909
|
+
//COMPONENTS
|
|
979
910
|
|
|
980
911
|
/**
|
|
981
912
|
* Generated bundle index. Do not edit.
|
|
982
913
|
*/
|
|
983
914
|
|
|
984
|
-
export { ACL_SERVICE_TOKEN, AUTH_SERVICE_TOKEN,
|
|
915
|
+
export { ACL_SERVICE_TOKEN, AUTH_SERVICE_TOKEN, AnnaConfigService, AnnaLibAclService, AnnaLibAuthService, AnnaLoginComponent, AnnaSSOLoginService, CONFIG_SERVICE_TOKEN, CognitoAndSSOLoginContainerComponent, ForgotPasswordComponent, LoginConstant, PasswordMatchingComponent, PoweredByLogoTemplateComponent, SSO_LOGIN_SERVICE_TOKEN, SetNewPasswordComponent, SpinnerButtonDirective, SsoLoginComponent, SurewavesYearLogoComponent, VerifyAndSetNewPasswordComponent, VersionAndTermPolicyComponent };
|
|
985
916
|
//# sourceMappingURL=annalib-anna-cognito-lib.mjs.map
|