@annalib/anna-cognito-lib 2.3.21 → 2.3.22
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 +18 -19
- package/esm2022/lib/components/cognito-and-sso-login-container/cognito-and-sso-login-container.component.mjs +8 -7
- package/esm2022/lib/components/forgot-password/forgot-password.component.mjs +27 -28
- package/esm2022/lib/components/password-matching/password-matching.component.mjs +21 -23
- package/esm2022/lib/components/powered-by-logo-template/powered-by-logo-template.component.mjs +7 -5
- package/esm2022/lib/components/set-new-password/set-new-password.component.mjs +15 -16
- package/esm2022/lib/components/sso-login/sso-login.component.mjs +10 -10
- package/esm2022/lib/components/surewaves-year-logo/surewaves-year-logo.component.mjs +5 -4
- package/esm2022/lib/components/verify-and-set-new-password/verify-and-set-new-password.component.mjs +23 -23
- package/esm2022/lib/components/version-and-term-policy/version-and-term-policy.component.mjs +5 -4
- package/esm2022/lib/config/acl-service.token.mjs +1 -1
- package/esm2022/lib/config/auth-service.token.mjs +3 -3
- package/esm2022/lib/config/config-service.token.mjs +3 -3
- package/esm2022/lib/config/sso-login-service.token.mjs +3 -3
- package/esm2022/lib/constants/loginConstant.mjs +49 -53
- package/esm2022/lib/directives/spinner-button/index.mjs +2 -2
- package/esm2022/lib/directives/spinner-button/spinner-button.directive.mjs +18 -15
- package/esm2022/lib/models/auth.model.mjs +2 -2
- package/esm2022/lib/services/acl.service.mjs +6 -6
- package/esm2022/lib/services/auth.service.mjs +61 -62
- package/esm2022/lib/services/config.service.mjs +5 -5
- package/esm2022/lib/services/sso-login.service.mjs +5 -5
- package/esm2022/public-api.mjs +25 -25
- package/fesm2022/annalib-anna-cognito-lib.mjs +248 -250
- package/fesm2022/annalib-anna-cognito-lib.mjs.map +1 -1
- package/lib/components/anna-login/anna-login.component.d.ts +6 -7
- package/lib/components/cognito-and-sso-login-container/cognito-and-sso-login-container.component.d.ts +4 -2
- package/lib/components/forgot-password/forgot-password.component.d.ts +12 -12
- package/lib/components/password-matching/password-matching.component.d.ts +4 -3
- package/lib/components/powered-by-logo-template/powered-by-logo-template.component.d.ts +4 -1
- package/lib/components/set-new-password/set-new-password.component.d.ts +10 -10
- package/lib/components/sso-login/sso-login.component.d.ts +4 -5
- package/lib/components/surewaves-year-logo/surewaves-year-logo.component.d.ts +2 -1
- package/lib/components/verify-and-set-new-password/verify-and-set-new-password.component.d.ts +11 -11
- package/lib/components/version-and-term-policy/version-and-term-policy.component.d.ts +4 -2
- package/lib/config/acl-service.token.d.ts +2 -2
- package/lib/config/auth-service.token.d.ts +4 -4
- package/lib/config/config-service.token.d.ts +1 -1
- package/lib/config/sso-login-service.token.d.ts +2 -2
- package/lib/directives/spinner-button/index.d.ts +1 -1
- package/lib/directives/spinner-button/spinner-button.directive.d.ts +5 -4
- package/lib/services/acl.service.d.ts +1 -1
- package/lib/services/auth.service.d.ts +8 -7
- package/lib/services/config.service.d.ts +1 -1
- package/lib/services/sso-login.service.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +20 -20
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { AnnaLibAuthService } from "../../services/auth.service";
|
|
1
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
2
|
+
import { LoginConstant } from '../../constants/loginConstant';
|
|
3
|
+
import { AnnaLibAuthService } from '../../services/auth.service';
|
|
4
|
+
import { IConfigService } from '../../config/config-service.token';
|
|
5
|
+
import { ISSOLoginService } from '../../config/sso-login-service.token';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class AnnaLoginComponent
|
|
7
|
+
export declare class AnnaLoginComponent {
|
|
9
8
|
authService: AnnaLibAuthService;
|
|
10
9
|
private fb;
|
|
11
10
|
consumingProjectConfigService: IConfigService;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ISSOLoginService } from '../../config/sso-login-service.token';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CognitoAndSSOLoginContainerComponent {
|
|
4
|
+
export declare class CognitoAndSSOLoginContainerComponent implements OnInit {
|
|
4
5
|
consumingProjectSSOLoginService: ISSOLoginService;
|
|
5
6
|
constructor(consumingProjectSSOLoginService: ISSOLoginService);
|
|
7
|
+
ngOnInit(): void;
|
|
6
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<CognitoAndSSOLoginContainerComponent, never>;
|
|
7
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<CognitoAndSSOLoginContainerComponent, "anna-cognito-lib-cognito-and-sso-login-container", never, {}, {}, never, never, true, never>;
|
|
8
10
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { OnInit } from
|
|
2
|
-
import { FormBuilder, FormGroup } from
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { ToastrService } from 'ngx-toastr';
|
|
4
|
+
import { AnnaLibAuthService } from '../../services/auth.service';
|
|
5
|
+
import { LoginConstant } from '../../constants/loginConstant';
|
|
6
|
+
import { Router } from '@angular/router';
|
|
7
|
+
import { IConfigService } from '../../config/config-service.token';
|
|
8
|
+
import { IAuthService } from '../../config/auth-service.token';
|
|
9
|
+
import { ISSOLoginService } from '../../config/sso-login-service.token';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
|
-
type
|
|
11
|
+
type passwordType = {
|
|
12
12
|
value: string;
|
|
13
13
|
status: string;
|
|
14
14
|
};
|
|
@@ -24,8 +24,8 @@ export declare class ForgotPasswordComponent implements OnInit {
|
|
|
24
24
|
verifyRegisteredEmail: FormGroup;
|
|
25
25
|
passwordNotMatching: boolean;
|
|
26
26
|
constants: typeof LoginConstant;
|
|
27
|
-
password:
|
|
28
|
-
confirmPassword:
|
|
27
|
+
password: passwordType;
|
|
28
|
+
confirmPassword: passwordType;
|
|
29
29
|
infoMessageToRedirectLogin: string;
|
|
30
30
|
isLoading: boolean;
|
|
31
31
|
constructor(authService: AnnaLibAuthService, fb: FormBuilder, toastr: ToastrService, router: Router, consumingProjectConfigService: IConfigService, consumingProjectAuthService: IAuthService, consumingProjectSSOLoginService: ISSOLoginService);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { EventEmitter
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { FormBuilder, FormGroup, ValidationErrors } from '@angular/forms';
|
|
4
|
+
import { LoginConstant } from '../../constants/loginConstant';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class PasswordMatchingComponent implements OnInit {
|
|
6
7
|
private fb;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class PoweredByLogoTemplateComponent {
|
|
3
|
+
export declare class PoweredByLogoTemplateComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
3
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoweredByLogoTemplateComponent, never>;
|
|
4
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<PoweredByLogoTemplateComponent, "anna-cognito-lib-powered-by-logo-template", never, {}, {}, never, never, true, never>;
|
|
5
8
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { OnInit } from
|
|
2
|
-
import { Router } from
|
|
3
|
-
import {
|
|
4
|
-
import { LoginConstant } from
|
|
5
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { AnnaLibAuthService } from '../../services/auth.service';
|
|
4
|
+
import { LoginConstant } from '../../constants/loginConstant';
|
|
5
|
+
import { IConfigService } from '../../config/config-service.token';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
type
|
|
7
|
+
type passwordType = {
|
|
8
8
|
value: string | null;
|
|
9
9
|
status: string | null;
|
|
10
10
|
};
|
|
@@ -13,14 +13,14 @@ export declare class SetNewPasswordComponent implements OnInit {
|
|
|
13
13
|
private router;
|
|
14
14
|
consumingProjectConfigService: IConfigService;
|
|
15
15
|
passwordNotMatching: boolean;
|
|
16
|
-
password:
|
|
17
|
-
confirmPassword:
|
|
16
|
+
password: passwordType;
|
|
17
|
+
confirmPassword: passwordType;
|
|
18
18
|
constants: typeof LoginConstant;
|
|
19
19
|
constructor(authService: AnnaLibAuthService, router: Router, consumingProjectConfigService: IConfigService);
|
|
20
20
|
ngOnInit(): void;
|
|
21
21
|
isFormValid(): boolean;
|
|
22
|
-
onPasswordChange($event:
|
|
23
|
-
onConfirmPasswordChange($event:
|
|
22
|
+
onPasswordChange($event: passwordType): void;
|
|
23
|
+
onConfirmPasswordChange($event: passwordType): void;
|
|
24
24
|
onSettingNewPassword(): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<SetNewPasswordComponent, never>;
|
|
26
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<SetNewPasswordComponent, "anna-cognito-lib-set-new-password", never, {}, {}, never, never, true, never>;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { AnnaLibAuthService } from "../../services/auth.service";
|
|
1
|
+
import { IConfigService } from '../../config/config-service.token';
|
|
2
|
+
import { LoginConstant } from '../../constants/loginConstant';
|
|
3
|
+
import { AnnaLibAuthService } from '../../services/auth.service';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class SsoLoginComponent
|
|
5
|
+
export declare class SsoLoginComponent {
|
|
7
6
|
authService: AnnaLibAuthService;
|
|
8
7
|
consumingProjectConfigService: IConfigService;
|
|
9
8
|
constants: typeof LoginConstant;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { OnInit } from
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class SurewavesYearLogoComponent implements OnInit {
|
|
4
4
|
currentYear: number;
|
|
5
|
+
constructor();
|
|
5
6
|
ngOnInit(): void;
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SurewavesYearLogoComponent, never>;
|
|
7
8
|
static ɵcmp: i0.ɵɵComponentDeclaration<SurewavesYearLogoComponent, "anna-cognito-lib-surewaves-year-logo", never, {}, {}, never, never, true, never>;
|
package/lib/components/verify-and-set-new-password/verify-and-set-new-password.component.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { OnInit } from
|
|
2
|
-
import { FormBuilder, FormGroup } from
|
|
3
|
-
import { Router } from
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { LoginConstant } from '../../constants/loginConstant';
|
|
5
|
+
import { AnnaLibAuthService } from '../../services/auth.service';
|
|
6
|
+
import { IConfigService } from '../../config/config-service.token';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
type
|
|
8
|
+
type passwordType = {
|
|
9
9
|
value: string | null;
|
|
10
10
|
status: string | null;
|
|
11
11
|
};
|
|
@@ -17,14 +17,14 @@ export declare class VerifyAndSetNewPasswordComponent implements OnInit {
|
|
|
17
17
|
verifyOtpForm: FormGroup;
|
|
18
18
|
passwordNotMatching: boolean;
|
|
19
19
|
constants: typeof LoginConstant;
|
|
20
|
-
password:
|
|
21
|
-
confirmPassword:
|
|
20
|
+
password: passwordType;
|
|
21
|
+
confirmPassword: passwordType;
|
|
22
22
|
constructor(authService: AnnaLibAuthService, fb: FormBuilder, router: Router, consumingProjectConfigService: IConfigService);
|
|
23
23
|
ngOnInit(): void;
|
|
24
24
|
onIntialiseForm(): void;
|
|
25
25
|
isFormValid(): boolean;
|
|
26
|
-
onPasswordChange($event:
|
|
27
|
-
onConfirmPasswordChange($event:
|
|
26
|
+
onPasswordChange($event: passwordType): void;
|
|
27
|
+
onConfirmPasswordChange($event: passwordType): void;
|
|
28
28
|
onVerifyOtpSettingNewPassword(): void;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<VerifyAndSetNewPasswordComponent, never>;
|
|
30
30
|
static ɵcmp: i0.ɵɵComponentDeclaration<VerifyAndSetNewPasswordComponent, "anna-cognito-lib-verify-and-set-new-password", never, {}, {}, never, never, true, never>;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { IConfigService } from '../../config/config-service.token';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class VersionAndTermPolicyComponent {
|
|
4
|
+
export declare class VersionAndTermPolicyComponent implements OnInit {
|
|
4
5
|
consumingProjectConfigService: IConfigService;
|
|
5
6
|
constructor(consumingProjectConfigService: IConfigService);
|
|
7
|
+
ngOnInit(): void;
|
|
6
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<VersionAndTermPolicyComponent, never>;
|
|
7
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<VersionAndTermPolicyComponent, "anna-cognito-lib-version-and-term-policy", never, {}, {}, never, never, true, never>;
|
|
8
10
|
}
|
|
@@ -32,7 +32,7 @@ export interface IAclService {
|
|
|
32
32
|
EQUIVALIZED_RATES_WRITE: string;
|
|
33
33
|
WRITE_ENABLED_ORDERS_READ: string;
|
|
34
34
|
WRITE_ENABLED_ORDERS_WRITE: string;
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
SECTION_RATE_CARD_READ: string;
|
|
36
|
+
SECTION_RATE_CARD_WRITE: string;
|
|
37
37
|
AUDIENCE_ESTIMATES_READ: string;
|
|
38
38
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { InjectionToken } from
|
|
2
|
-
import { AuthTokens } from
|
|
3
|
-
import { Observable } from
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { AuthTokens } from 'aws-amplify/auth';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
4
|
/** Token to inject the auth service */
|
|
5
5
|
export declare const AUTH_SERVICE_TOKEN: InjectionToken<IAuthService>;
|
|
6
6
|
export interface IAuthService {
|
|
@@ -8,7 +8,7 @@ export interface IAuthService {
|
|
|
8
8
|
userName: any;
|
|
9
9
|
accessToken: string;
|
|
10
10
|
IdToken: any;
|
|
11
|
-
defaultLoginPageUrl:
|
|
11
|
+
defaultLoginPageUrl: 'co-pilot-login' | 'login';
|
|
12
12
|
onSuccessfulAuthenticatingUser(loggedInViaSso: boolean): void;
|
|
13
13
|
getAllCognitoTokenAndGroups(tokens: AuthTokens): void;
|
|
14
14
|
isUsernameAvailable(username: string): Observable<any>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { InjectionToken } from
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
2
|
/** Token to inject the auth service */
|
|
3
3
|
export declare const SSO_LOGIN_SERVICE_TOKEN: InjectionToken<ISSOLoginService>;
|
|
4
4
|
export interface ISSOLoginService {
|
|
5
|
-
defaultLoginPageUrl:
|
|
5
|
+
defaultLoginPageUrl: 'co-pilot-login' | 'login';
|
|
6
6
|
isSsoIntegrated: boolean;
|
|
7
7
|
loggedInViaSso: boolean;
|
|
8
8
|
isUserInvitedAndCanAccessANNA: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from './spinner-button.directive';
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import { ElementRef,
|
|
1
|
+
import { ElementRef, Renderer2, SimpleChanges, OnChanges, OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SpinnerButtonDirective implements OnChanges {
|
|
3
|
+
export declare class SpinnerButtonDirective implements OnInit, OnChanges {
|
|
4
4
|
private el;
|
|
5
5
|
private renderer;
|
|
6
|
-
|
|
6
|
+
loading: boolean;
|
|
7
7
|
spinnerButtonText: string;
|
|
8
8
|
child: HTMLDivElement;
|
|
9
9
|
button: any;
|
|
10
10
|
constructor(el: ElementRef, renderer: Renderer2);
|
|
11
|
+
ngOnInit(): void;
|
|
11
12
|
ngOnChanges(changes: SimpleChanges): void;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerButtonDirective, never>;
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SpinnerButtonDirective, "[
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SpinnerButtonDirective, "[anna-cognito-lib-SpinnerButton]", never, { "loading": { "alias": "anna-cognito-lib-SpinnerButton"; "required": false; }; "spinnerButtonText": { "alias": "spinnerButtonText"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
15
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { HttpClient } from
|
|
2
|
-
import { Router } from
|
|
3
|
-
import { AuthTokens, SignInInput } from
|
|
4
|
-
import { ToastrService } from
|
|
5
|
-
import { IAuthService } from
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { AuthTokens, SignInInput } from 'aws-amplify/auth';
|
|
4
|
+
import { ToastrService } from 'ngx-toastr';
|
|
5
|
+
import { IAuthService } from '../config/auth-service.token';
|
|
6
|
+
import { AnnaLibAclService } from './acl.service';
|
|
7
|
+
import { ISSOLoginService } from '../config/sso-login-service.token';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class AnnaLibAuthService {
|
|
10
10
|
private router;
|
|
@@ -24,6 +24,7 @@ export declare class AnnaLibAuthService {
|
|
|
24
24
|
accessTokenTimerId: any;
|
|
25
25
|
forgotPasswordAndGlobalSignoutLoader: boolean;
|
|
26
26
|
constructor(router: Router, aclService: AnnaLibAclService, httpClient: HttpClient, toastr: ToastrService, consumingProjectSSOLoginService: ISSOLoginService, consumingProjectAuthService: IAuthService);
|
|
27
|
+
ngOnInit(): void;
|
|
27
28
|
isUserLoggedIn(): Promise<boolean>;
|
|
28
29
|
sessionTimeout(): void;
|
|
29
30
|
computeTokenExpiration(idToken: any): number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ISSOLoginService } from
|
|
1
|
+
import { ISSOLoginService } from '../config/sso-login-service.token';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class AnnaSSOLoginService {
|
|
4
4
|
consumingProjectSSOLoginService: ISSOLoginService;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
16
|
-
export * from
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
1
|
+
export * from './lib/components/cognito-and-sso-login-container/cognito-and-sso-login-container.component';
|
|
2
|
+
export * from './lib/components/anna-login/anna-login.component';
|
|
3
|
+
export * from './lib/components/sso-login/sso-login.component';
|
|
4
|
+
export * from './lib/components/forgot-password/forgot-password.component';
|
|
5
|
+
export * from './lib/components/set-new-password/set-new-password.component';
|
|
6
|
+
export * from './lib/components/password-matching/password-matching.component';
|
|
7
|
+
export * from './lib/components/verify-and-set-new-password/verify-and-set-new-password.component';
|
|
8
|
+
export * from './lib/components/version-and-term-policy/version-and-term-policy.component';
|
|
9
|
+
export * from './lib/components/powered-by-logo-template/powered-by-logo-template.component';
|
|
10
|
+
export * from './lib/components/surewaves-year-logo/surewaves-year-logo.component';
|
|
11
|
+
export * from './lib/services/auth.service';
|
|
12
|
+
export * from './lib/services/acl.service';
|
|
13
|
+
export * from './lib/config/auth-service.token';
|
|
14
|
+
export * from './lib/config/acl-service.token';
|
|
15
|
+
export * from './lib/config/config-service.token';
|
|
16
|
+
export * from './lib/config/sso-login-service.token';
|
|
17
|
+
export * from './lib/services/config.service';
|
|
18
|
+
export * from './lib/services/sso-login.service';
|
|
19
|
+
export * from './lib/directives/spinner-button';
|
|
20
|
+
export * from './lib/constants/loginConstant';
|