verben-authentication-ui 0.1.7 → 0.1.9
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/button/button.component.mjs +3 -3
- package/esm2022/lib/components/button/button.module.mjs +4 -4
- package/esm2022/lib/components/forgot-password/forgot-password.component.mjs +3 -3
- package/esm2022/lib/components/forgot-password/forgot-password.module.mjs +4 -4
- package/esm2022/lib/components/mail/mail.component.mjs +3 -3
- package/esm2022/lib/components/mail/mail.module.mjs +4 -4
- package/esm2022/lib/components/mail-validation/mail-validation.component.mjs +3 -3
- package/esm2022/lib/components/mail-validation/mail-validation.module.mjs +4 -4
- package/esm2022/lib/components/o-auth/o-auth.component.mjs +3 -3
- package/esm2022/lib/components/o-auth/o-auth.module.mjs +4 -4
- package/esm2022/lib/components/otp-input/otp-input.component.mjs +3 -3
- package/esm2022/lib/components/otp-input/otp-input.module.mjs +4 -4
- package/esm2022/lib/components/reset-password/reset-password.component.mjs +3 -3
- package/esm2022/lib/components/reset-password/reset-password.module.mjs +4 -4
- package/esm2022/lib/components/sign-in/sign-in.component.mjs +27 -11
- package/esm2022/lib/components/sign-in/sign-in.module.mjs +4 -4
- package/esm2022/lib/components/sign-up/sign-up.component.mjs +5 -5
- package/esm2022/lib/components/sign-up/sign-up.module.mjs +4 -4
- package/esm2022/lib/components/sso/sso-form/sso-form.component.mjs +3 -3
- package/esm2022/lib/components/sso/sso.component.mjs +3 -3
- package/esm2022/lib/components/sso/sso.module.mjs +4 -4
- package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.mjs +3 -3
- package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.mjs +4 -4
- package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.mjs +3 -3
- package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.mjs +4 -4
- package/esm2022/lib/components/user-management/useer-management.module.mjs +4 -4
- package/esm2022/lib/components/user-management/user-management-form/use-management-form.component.mjs +3 -3
- package/esm2022/lib/components/user-management/user-management.component.mjs +4 -4
- package/esm2022/lib/components/user-request/user-request.component.mjs +8 -7
- package/esm2022/lib/components/user-request/user-request.module.mjs +4 -4
- package/esm2022/lib/components/user-request-approval/facades/user-access-request.facade.mjs +3 -3
- package/esm2022/lib/components/user-request-approval/services/user-access-request.service.mjs +3 -3
- package/esm2022/lib/components/user-request-approval/states/user-access-request.state.mjs +3 -3
- package/esm2022/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.mjs +3 -3
- package/esm2022/lib/components/user-request-approval/user-request-approval.component.mjs +4 -4
- package/esm2022/lib/components/user-request-approval/user-request-approval.module.mjs +4 -4
- package/esm2022/lib/components/user-request-approval/user-request-approval.service.mjs +3 -3
- package/esm2022/lib/components/user-request-approval/user-request-form/use-request-form.component.mjs +3 -3
- package/esm2022/lib/models/UserRequest.mjs +2 -7
- package/esm2022/lib/models/request-status.mjs +5 -0
- package/esm2022/lib/models/status.mjs +6 -0
- package/esm2022/lib/services/environment.service.mjs +3 -3
- package/esm2022/lib/services/http-web-request.service.mjs +19 -12
- package/esm2022/lib/services/util.service.mjs +3 -3
- package/fesm2022/verben-authentication-ui.mjs +193 -166
- package/fesm2022/verben-authentication-ui.mjs.map +1 -1
- package/lib/components/sign-in/sign-in.component.d.ts +8 -3
- package/lib/components/user-request/user-request.component.d.ts +1 -1
- package/lib/models/UserRequest.d.ts +18 -12
- package/lib/models/request-status.d.ts +3 -0
- package/lib/models/status.d.ts +4 -0
- package/package.json +2 -2
|
@@ -16,15 +16,20 @@ export declare class SignInComponent {
|
|
|
16
16
|
margin: string;
|
|
17
17
|
pd: string;
|
|
18
18
|
customClass: string;
|
|
19
|
+
headlingClass: string;
|
|
19
20
|
bgColor: string;
|
|
20
21
|
boxShadow: string;
|
|
21
22
|
border: string;
|
|
22
23
|
borderRadius: string;
|
|
23
24
|
textColor: string;
|
|
24
25
|
height: string;
|
|
25
|
-
routerLink: string;
|
|
26
26
|
forgetPasswordClass: string;
|
|
27
|
-
|
|
27
|
+
requestAccessClass: string;
|
|
28
|
+
createAccountClass: string;
|
|
29
|
+
createAccountLinkClass: string;
|
|
30
|
+
forgetPasswordLink: string;
|
|
31
|
+
createAccountLink: string;
|
|
32
|
+
requestAccessLink: string;
|
|
28
33
|
btnClass: string;
|
|
29
34
|
btnBgColor: string;
|
|
30
35
|
btnColor: string;
|
|
@@ -60,5 +65,5 @@ export declare class SignInComponent {
|
|
|
60
65
|
padding: string;
|
|
61
66
|
};
|
|
62
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignInComponent, never>;
|
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignInComponent, "verben-sign-in", never, { "headlingText": { "alias": "headlingText"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "customClass": { "alias": "customClass"; "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; }; "
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignInComponent, "verben-sign-in", never, { "headlingText": { "alias": "headlingText"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "headlingClass": { "alias": "headlingClass"; "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; }; "forgetPasswordClass": { "alias": "forgetPasswordClass"; "required": false; }; "requestAccessClass": { "alias": "requestAccessClass"; "required": false; }; "createAccountClass": { "alias": "createAccountClass"; "required": false; }; "createAccountLinkClass": { "alias": "createAccountLinkClass"; "required": false; }; "forgetPasswordLink": { "alias": "forgetPasswordLink"; "required": false; }; "createAccountLink": { "alias": "createAccountLink"; "required": false; }; "requestAccessLink": { "alias": "requestAccessLink"; "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; }; "inputLabelColor": { "alias": "inputLabelColor"; "required": false; }; "inputBgColor": { "alias": "inputBgColor"; "required": false; }; "inputBorder": { "alias": "inputBorder"; "required": false; }; "inputBorderRadius": { "alias": "inputBorderRadius"; "required": false; }; "termsErrorText": { "alias": "termsErrorText"; "required": false; }; }, { "formSubmit": "formSubmit"; "onSubmitEnd": "onSubmitEnd"; "googleClick": "googleClick"; "appleClick": "appleClick"; }, never, never, false, never>;
|
|
64
69
|
}
|
|
@@ -29,7 +29,7 @@ export declare class UserRequestComponent {
|
|
|
29
29
|
termsLink: string;
|
|
30
30
|
privacyLink: string;
|
|
31
31
|
routerLink: string;
|
|
32
|
-
formSubmit: EventEmitter<UserRequestPayload>;
|
|
32
|
+
formSubmit: EventEmitter<UserRequestPayload[]>;
|
|
33
33
|
googleClick: EventEmitter<any>;
|
|
34
34
|
appleClick: EventEmitter<any>;
|
|
35
35
|
onSubmitResponseEnd: EventEmitter<any>;
|
|
@@ -1,18 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
export interface UserRequestPayload extends BaseModel {
|
|
8
|
-
MailAddress: string;
|
|
9
|
-
PhoneNumber?: string;
|
|
1
|
+
import { ObjectState } from "./object-state";
|
|
2
|
+
import { RequestStatus } from "./request-status";
|
|
3
|
+
import { Status } from "./status";
|
|
4
|
+
export interface UserRequestPayload {
|
|
5
|
+
Code: string;
|
|
10
6
|
FirstName: string;
|
|
11
7
|
LastName: string;
|
|
8
|
+
MailAddress: string;
|
|
9
|
+
Password: string;
|
|
10
|
+
PhoneNumber: string;
|
|
12
11
|
OtherName: string;
|
|
13
12
|
Role: string[];
|
|
14
|
-
Tags:
|
|
15
|
-
Password: string;
|
|
13
|
+
Tags: [];
|
|
16
14
|
Status: Status;
|
|
17
|
-
|
|
15
|
+
UpdatedAt: Date;
|
|
16
|
+
CreatedAt: Date;
|
|
17
|
+
Id: string;
|
|
18
|
+
DataState: ObjectState;
|
|
19
|
+
TenantId: string;
|
|
20
|
+
ServiceName: string;
|
|
21
|
+
ActionBy: string;
|
|
22
|
+
RequestStatus: RequestStatus;
|
|
23
|
+
Comment: string;
|
|
18
24
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verben-authentication-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.0.0 || ^18.0.0",
|
|
6
6
|
"@angular/core": "^14.0.0 || ^18.0.0",
|
|
7
|
-
"verben-ng-ui": "^0.1.
|
|
7
|
+
"verben-ng-ui": "^0.1.9"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"tslib": "^2.3.0"
|