verben-authentication-ui 0.2.6 → 0.2.7
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/otp-input/otp-input.component.mjs +8 -4
- package/esm2022/lib/components/sign-in/sign-in.component.mjs +19 -12
- package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.mjs +9 -7
- package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.mjs +3 -3
- package/esm2022/lib/components/user-management/user-management.component.mjs +2 -2
- package/esm2022/lib/components/user-request-approval/user-request-approval.component.mjs +2 -2
- package/esm2022/lib/models/otpValue.mjs +1 -1
- package/esm2022/lib/services/environment.service.mjs +1 -1
- package/fesm2022/verben-authentication-ui.mjs +32 -20
- package/fesm2022/verben-authentication-ui.mjs.map +1 -1
- package/lib/components/sign-in/sign-in.component.d.ts +5 -1
- package/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.d.ts +2 -1
- package/lib/models/otpValue.d.ts +1 -1
- package/lib/services/environment.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5,11 +5,13 @@ import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
|
5
5
|
import { UtilService } from '../../services/util.service';
|
|
6
6
|
import { ErrorResponse } from '../../models/ErrorResponse';
|
|
7
7
|
import { ResponseKeyValue } from '../../models/ResponseKeyValue';
|
|
8
|
+
import { EnvironmentService } from '../../services/environment.service';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class SignInComponent {
|
|
10
11
|
private fb;
|
|
11
12
|
private server;
|
|
12
13
|
private utilService;
|
|
14
|
+
private envSvc;
|
|
13
15
|
headlingText: string;
|
|
14
16
|
width: string;
|
|
15
17
|
maxWidth: string;
|
|
@@ -47,7 +49,9 @@ export declare class SignInComponent {
|
|
|
47
49
|
googleClick: EventEmitter<any>;
|
|
48
50
|
appleClick: EventEmitter<any>;
|
|
49
51
|
loginForm: FormGroup;
|
|
50
|
-
|
|
52
|
+
apiKey: string;
|
|
53
|
+
secret: string;
|
|
54
|
+
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService, envSvc: EnvironmentService);
|
|
51
55
|
checkForm(): boolean;
|
|
52
56
|
submit(): Promise<void>;
|
|
53
57
|
handleGoogleAuth(): void;
|
|
@@ -40,6 +40,7 @@ export declare class TwoFactorAuthOtpComponent {
|
|
|
40
40
|
otpValue: string;
|
|
41
41
|
otpForm: FormGroup;
|
|
42
42
|
buttonClick: EventEmitter<string>;
|
|
43
|
+
otpChange: EventEmitter<string>;
|
|
43
44
|
onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
44
45
|
resend: EventEmitter<any>;
|
|
45
46
|
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService);
|
|
@@ -60,5 +61,5 @@ export declare class TwoFactorAuthOtpComponent {
|
|
|
60
61
|
padding: string;
|
|
61
62
|
};
|
|
62
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<TwoFactorAuthOtpComponent, never>;
|
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TwoFactorAuthOtpComponent, "verben-auth-otp", never, { "customClass": { "alias": "customClass"; "required": false; }; "headlingClass": { "alias": "headlingClass"; "required": false; }; "headlingText": { "alias": "headlingText"; "required": false; }; "paragraphClass": { "alias": "paragraphClass"; "required": false; }; "resendClass": { "alias": "resendClass"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "height": { "alias": "height"; "required": false; }; "length": { "alias": "length"; "required": false; }; "otpClass": { "alias": "otpClass"; "required": false; }; "User": { "alias": "User"; "required": false; }; "OtpData": { "alias": "OtpData"; "required": false; }; "btnClass": { "alias": "btnClass"; "required": false; }; "btnBgColor": { "alias": "btnBgColor"; "required": false; }; "btnColor": { "alias": "btnColor"; "required": false; }; "btnBorder": { "alias": "btnBorder"; "required": false; }; "btnBorderRadius": { "alias": "btnBorderRadius"; "required": false; }; "btnPd": { "alias": "btnPd"; "required": false; }; "btnText": { "alias": "btnText"; "required": false; }; }, { "buttonClick": "buttonClick"; "onSubmitEnd": "onSubmitEnd"; "resend": "resend"; }, never, never, false, never>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwoFactorAuthOtpComponent, "verben-auth-otp", never, { "customClass": { "alias": "customClass"; "required": false; }; "headlingClass": { "alias": "headlingClass"; "required": false; }; "headlingText": { "alias": "headlingText"; "required": false; }; "paragraphClass": { "alias": "paragraphClass"; "required": false; }; "resendClass": { "alias": "resendClass"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "height": { "alias": "height"; "required": false; }; "length": { "alias": "length"; "required": false; }; "otpClass": { "alias": "otpClass"; "required": false; }; "User": { "alias": "User"; "required": false; }; "OtpData": { "alias": "OtpData"; "required": false; }; "btnClass": { "alias": "btnClass"; "required": false; }; "btnBgColor": { "alias": "btnBgColor"; "required": false; }; "btnColor": { "alias": "btnColor"; "required": false; }; "btnBorder": { "alias": "btnBorder"; "required": false; }; "btnBorderRadius": { "alias": "btnBorderRadius"; "required": false; }; "btnPd": { "alias": "btnPd"; "required": false; }; "btnText": { "alias": "btnText"; "required": false; }; }, { "buttonClick": "buttonClick"; "otpChange": "otpChange"; "onSubmitEnd": "onSubmitEnd"; "resend": "resend"; }, never, never, false, never>;
|
|
64
65
|
}
|
package/lib/models/otpValue.d.ts
CHANGED