verben-authentication-ui 0.3.3 → 0.3.4
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 +46 -0
- package/esm2022/lib/components/button/button.module.mjs +20 -0
- package/esm2022/lib/components/forgot-password/ForgotPasswordData.mjs +2 -0
- package/esm2022/lib/components/forgot-password/forgot-password.component.mjs +86 -0
- package/esm2022/lib/components/forgot-password/forgot-password.module.mjs +34 -0
- package/esm2022/lib/components/mail/mail.component.mjs +69 -0
- package/esm2022/lib/components/mail/mail.module.mjs +21 -0
- package/esm2022/lib/components/mail-validation/mail-validation.component.mjs +108 -0
- package/esm2022/lib/components/mail-validation/mail-validation.module.mjs +34 -0
- package/esm2022/lib/components/o-auth/o-auth.component.mjs +45 -0
- package/esm2022/lib/components/o-auth/o-auth.module.mjs +19 -0
- package/esm2022/lib/components/otp-input/otp-input.component.mjs +75 -0
- package/esm2022/lib/components/otp-input/otp-input.module.mjs +23 -0
- package/esm2022/lib/components/reset-password/ResetPasswordData.mjs +2 -0
- package/esm2022/lib/components/reset-password/reset-password.component.mjs +107 -0
- package/esm2022/lib/components/reset-password/reset-password.module.mjs +34 -0
- package/esm2022/lib/components/sign-in/sign-in.component.mjs +240 -0
- package/esm2022/lib/components/sign-in/sign-in.module.mjs +24 -0
- package/esm2022/lib/components/sign-up/sign-up.component.mjs +223 -0
- package/esm2022/lib/components/sign-up/sign-up.module.mjs +24 -0
- package/esm2022/lib/components/sso/base-table-style.mjs +53 -0
- package/esm2022/lib/components/sso/helper.mjs +14 -0
- package/esm2022/lib/components/sso/sso-form/sso-form.component.mjs +74 -0
- package/esm2022/lib/components/sso/sso.columns.mjs +29 -0
- package/esm2022/lib/components/sso/sso.component.mjs +236 -0
- package/esm2022/lib/components/sso/sso.module.mjs +63 -0
- package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.mjs +228 -0
- package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.mjs +22 -0
- package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.mjs +90 -0
- package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.mjs +19 -0
- package/esm2022/lib/components/user-management/base-table-style.mjs +53 -0
- package/esm2022/lib/components/user-management/helper.mjs +26 -0
- package/esm2022/lib/components/user-management/useer-management.module.mjs +68 -0
- package/esm2022/lib/components/user-management/user-management-form/use-management-form.component.mjs +57 -0
- package/esm2022/lib/components/user-management/user-management.columns.mjs +43 -0
- package/esm2022/lib/components/user-management/user-management.component.mjs +323 -0
- package/esm2022/lib/components/user-request/user-request.component.mjs +206 -0
- package/esm2022/lib/components/user-request/user-request.module.mjs +34 -0
- package/esm2022/lib/components/user-request-approval/access-request.columns.mjs +24 -0
- package/esm2022/lib/components/user-request-approval/base-table-style.mjs +53 -0
- package/esm2022/lib/components/user-request-approval/facades/user-access-request.facade.mjs +128 -0
- package/esm2022/lib/components/user-request-approval/helper.mjs +35 -0
- package/esm2022/lib/components/user-request-approval/services/user-access-request.service.mjs +72 -0
- package/esm2022/lib/components/user-request-approval/states/user-access-request.state.mjs +59 -0
- package/esm2022/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.mjs +26 -0
- package/esm2022/lib/components/user-request-approval/user-request-approval.component.mjs +251 -0
- package/esm2022/lib/components/user-request-approval/user-request-approval.module.mjs +77 -0
- package/esm2022/lib/components/user-request-approval/user-request-approval.service.mjs +32 -0
- package/esm2022/lib/components/user-request-approval/user-request-form/use-request-form.component.mjs +64 -0
- package/esm2022/lib/models/ErrorResponse.mjs +11 -0
- package/esm2022/lib/models/PasswordRequestParam.mjs +2 -0
- package/esm2022/lib/models/ResponseKeyValue.mjs +2 -0
- package/esm2022/lib/models/UserRequest.mjs +2 -0
- package/esm2022/lib/models/auth-mechanism.mjs +8 -0
- package/esm2022/lib/models/base.mjs +2 -0
- package/esm2022/lib/models/log-in.mjs +2 -0
- package/esm2022/lib/models/mainUser.mjs +2 -0
- package/esm2022/lib/models/object-state.mjs +8 -0
- package/esm2022/lib/models/otpValue.mjs +2 -0
- package/esm2022/lib/models/paged.mjs +2 -0
- package/esm2022/lib/models/query-params.mjs +2 -0
- package/esm2022/lib/models/request-status.mjs +5 -0
- package/esm2022/lib/models/resend-otp-data.mjs +2 -0
- package/esm2022/lib/models/sign-up.mjs +2 -0
- package/esm2022/lib/models/single-sign-on.mjs +2 -0
- package/esm2022/lib/models/status.mjs +6 -0
- package/esm2022/lib/models/user-access-request-status.mjs +7 -0
- package/esm2022/lib/models/user-access-request.mjs +2 -0
- package/esm2022/lib/models/user.mjs +2 -0
- package/esm2022/lib/services/environment.service.mjs +26 -0
- package/esm2022/lib/services/http-web-request.service.mjs +82 -0
- package/esm2022/lib/services/util.service.mjs +32 -0
- package/esm2022/public-api.mjs +43 -0
- package/esm2022/verben-authentication-ui.mjs +5 -0
- package/fesm2022/verben-authentication-ui.mjs +3622 -0
- package/fesm2022/verben-authentication-ui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/button/button.component.d.ts +17 -0
- package/lib/components/button/button.module.d.ts +10 -0
- package/{src/lib/components/forgot-password/ForgotPasswordData.ts → lib/components/forgot-password/ForgotPasswordData.d.ts} +1 -1
- package/lib/components/forgot-password/forgot-password.component.d.ts +28 -0
- package/lib/components/forgot-password/forgot-password.module.d.ts +10 -0
- package/lib/components/mail/mail.component.d.ts +32 -0
- package/lib/components/mail/mail.module.d.ts +11 -0
- package/lib/components/mail-validation/mail-validation.component.d.ts +42 -0
- package/lib/components/mail-validation/mail-validation.module.d.ts +10 -0
- package/lib/components/o-auth/o-auth.component.d.ts +18 -0
- package/lib/components/o-auth/o-auth.module.d.ts +9 -0
- package/lib/components/otp-input/otp-input.component.d.ts +20 -0
- package/lib/components/otp-input/otp-input.module.d.ts +13 -0
- package/lib/components/reset-password/ResetPasswordData.d.ts +5 -0
- package/lib/components/reset-password/reset-password.component.d.ts +30 -0
- package/lib/components/reset-password/reset-password.module.d.ts +10 -0
- package/lib/components/sign-in/sign-in.component.d.ts +81 -0
- package/lib/components/sign-in/sign-in.module.d.ts +13 -0
- package/lib/components/sign-up/sign-up.component.d.ts +66 -0
- package/lib/components/sign-up/sign-up.module.d.ts +13 -0
- package/lib/components/sso/base-table-style.d.ts +1 -0
- package/lib/components/sso/helper.d.ts +2 -0
- package/lib/components/sso/sso-form/sso-form.component.d.ts +21 -0
- package/lib/components/sso/sso.columns.d.ts +3 -0
- package/lib/components/sso/sso.component.d.ts +54 -0
- package/lib/components/sso/sso.module.d.ts +11 -0
- package/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.d.ts +67 -0
- package/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.d.ts +12 -0
- package/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.d.ts +39 -0
- package/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.d.ts +9 -0
- package/lib/components/user-management/base-table-style.d.ts +1 -0
- package/lib/components/user-management/helper.d.ts +2 -0
- package/lib/components/user-management/useer-management.module.d.ts +11 -0
- package/lib/components/user-management/user-management-form/use-management-form.component.d.ts +20 -0
- package/lib/components/user-management/user-management.columns.d.ts +3 -0
- package/lib/components/user-management/user-management.component.d.ts +60 -0
- package/lib/components/user-request/user-request.component.d.ts +60 -0
- package/lib/components/user-request/user-request.module.d.ts +10 -0
- package/lib/components/user-request-approval/access-request.columns.d.ts +3 -0
- package/lib/components/user-request-approval/base-table-style.d.ts +1 -0
- package/lib/components/user-request-approval/facades/user-access-request.facade.d.ts +23 -0
- package/lib/components/user-request-approval/helper.d.ts +6 -0
- package/lib/components/user-request-approval/services/user-access-request.service.d.ts +50 -0
- package/lib/components/user-request-approval/states/user-access-request.state.d.ts +21 -0
- package/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.d.ts +12 -0
- package/lib/components/user-request-approval/user-request-approval.component.d.ts +59 -0
- package/lib/components/user-request-approval/user-request-approval.module.d.ts +12 -0
- package/lib/components/user-request-approval/user-request-approval.service.d.ts +18 -0
- package/lib/components/user-request-approval/user-request-form/use-request-form.component.d.ts +21 -0
- package/lib/models/ErrorResponse.d.ts +6 -0
- package/lib/models/PasswordRequestParam.d.ts +5 -0
- package/lib/models/ResponseKeyValue.d.ts +5 -0
- package/lib/models/UserRequest.d.ts +24 -0
- package/lib/models/auth-mechanism.d.ts +13 -0
- package/lib/models/base.d.ts +10 -0
- package/lib/models/log-in.d.ts +7 -0
- package/{src/lib/models/mainUser.ts → lib/models/mainUser.d.ts} +2 -3
- package/lib/models/object-state.d.ts +6 -0
- package/{src/lib/models/otpValue.ts → lib/models/otpValue.d.ts} +1 -3
- package/lib/models/paged.d.ts +9 -0
- package/lib/models/query-params.d.ts +7 -0
- package/lib/models/request-status.d.ts +3 -0
- package/lib/models/resend-otp-data.d.ts +8 -0
- package/lib/models/sign-up.d.ts +9 -0
- package/lib/models/single-sign-on.d.ts +7 -0
- package/lib/models/status.d.ts +4 -0
- package/lib/models/user-access-request-status.d.ts +5 -0
- package/{src/lib/models/user-access-request.ts → lib/models/user-access-request.d.ts} +3 -4
- package/lib/models/user.d.ts +23 -0
- package/lib/services/environment.service.d.ts +16 -0
- package/lib/services/http-web-request.service.d.ts +23 -0
- package/lib/services/util.service.d.ts +8 -0
- package/package.json +14 -8
- package/{src/public-api.ts → public-api.d.ts} +0 -21
- package/ng-package.json +0 -8
- package/src/lib/components/button/button.component.css +0 -3
- package/src/lib/components/button/button.component.html +0 -13
- package/src/lib/components/button/button.component.spec.ts +0 -23
- package/src/lib/components/button/button.component.ts +0 -24
- package/src/lib/components/button/button.module.ts +0 -11
- package/src/lib/components/forgot-password/forgot-password.component.css +0 -29
- package/src/lib/components/forgot-password/forgot-password.component.html +0 -13
- package/src/lib/components/forgot-password/forgot-password.component.spec.ts +0 -23
- package/src/lib/components/forgot-password/forgot-password.component.ts +0 -86
- package/src/lib/components/forgot-password/forgot-password.module.ts +0 -18
- package/src/lib/components/mail/mail.component.css +0 -0
- package/src/lib/components/mail/mail.component.html +0 -11
- package/src/lib/components/mail/mail.component.spec.ts +0 -23
- package/src/lib/components/mail/mail.component.ts +0 -47
- package/src/lib/components/mail/mail.module.ts +0 -13
- package/src/lib/components/mail-validation/mail-validation.component.css +0 -59
- package/src/lib/components/mail-validation/mail-validation.component.html +0 -37
- package/src/lib/components/mail-validation/mail-validation.component.spec.ts +0 -23
- package/src/lib/components/mail-validation/mail-validation.component.ts +0 -66
- package/src/lib/components/mail-validation/mail-validation.module.ts +0 -18
- package/src/lib/components/o-auth/o-auth.component.css +0 -21
- package/src/lib/components/o-auth/o-auth.component.html +0 -60
- package/src/lib/components/o-auth/o-auth.component.spec.ts +0 -23
- package/src/lib/components/o-auth/o-auth.component.ts +0 -43
- package/src/lib/components/o-auth/o-auth.module.ts +0 -11
- package/src/lib/components/otp-input/otp-input.component.css +0 -19
- package/src/lib/components/otp-input/otp-input.component.html +0 -14
- package/src/lib/components/otp-input/otp-input.component.spec.ts +0 -23
- package/src/lib/components/otp-input/otp-input.component.ts +0 -73
- package/src/lib/components/otp-input/otp-input.module.ts +0 -15
- package/src/lib/components/reset-password/ResetPasswordData.ts +0 -5
- package/src/lib/components/reset-password/reset-password.component.css +0 -29
- package/src/lib/components/reset-password/reset-password.component.html +0 -22
- package/src/lib/components/reset-password/reset-password.component.spec.ts +0 -23
- package/src/lib/components/reset-password/reset-password.component.ts +0 -108
- package/src/lib/components/reset-password/reset-password.module.ts +0 -18
- package/src/lib/components/sign-in/sign-in.component.css +0 -21
- package/src/lib/components/sign-in/sign-in.component.html +0 -84
- package/src/lib/components/sign-in/sign-in.component.spec.ts +0 -23
- package/src/lib/components/sign-in/sign-in.component.ts +0 -184
- package/src/lib/components/sign-in/sign-in.module.ts +0 -17
- package/src/lib/components/sign-up/sign-up.component.css +0 -36
- package/src/lib/components/sign-up/sign-up.component.html +0 -132
- package/src/lib/components/sign-up/sign-up.component.spec.ts +0 -23
- package/src/lib/components/sign-up/sign-up.component.ts +0 -176
- package/src/lib/components/sign-up/sign-up.module.ts +0 -15
- package/src/lib/components/sso/base-table-style.ts +0 -52
- package/src/lib/components/sso/helper.ts +0 -15
- package/src/lib/components/sso/sso-form/sso-form.component.css +0 -13
- package/src/lib/components/sso/sso-form/sso-form.component.html +0 -109
- package/src/lib/components/sso/sso-form/sso-form.component.spec.ts +0 -23
- package/src/lib/components/sso/sso-form/sso-form.component.ts +0 -70
- package/src/lib/components/sso/sso.columns.ts +0 -32
- package/src/lib/components/sso/sso.component.css +0 -47
- package/src/lib/components/sso/sso.component.html +0 -208
- package/src/lib/components/sso/sso.component.spec.ts +0 -23
- package/src/lib/components/sso/sso.component.ts +0 -261
- package/src/lib/components/sso/sso.module.ts +0 -40
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.css +0 -8
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.html +0 -30
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.spec.ts +0 -23
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.ts +0 -183
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.ts +0 -15
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.css +0 -17
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.html +0 -45
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.spec.ts +0 -23
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.ts +0 -57
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.ts +0 -11
- package/src/lib/components/user-management/base-table-style.ts +0 -52
- package/src/lib/components/user-management/helper.ts +0 -29
- package/src/lib/components/user-management/index.ts +0 -4
- package/src/lib/components/user-management/useer-management.module.ts +0 -48
- package/src/lib/components/user-management/user-management-form/use-management-form.component.ts +0 -61
- package/src/lib/components/user-management/user-management-form/user-management-form.component.css +0 -0
- package/src/lib/components/user-management/user-management-form/user-management-form.component.html +0 -91
- package/src/lib/components/user-management/user-management-form/user-management-form.component.spec.ts +0 -23
- package/src/lib/components/user-management/user-management.columns.ts +0 -45
- package/src/lib/components/user-management/user-management.component.css +0 -26
- package/src/lib/components/user-management/user-management.component.html +0 -275
- package/src/lib/components/user-management/user-management.component.spec.ts +0 -23
- package/src/lib/components/user-management/user-management.component.ts +0 -380
- package/src/lib/components/user-management/user-management.service.ts +0 -42
- package/src/lib/components/user-request/user-request.component.css +0 -91
- package/src/lib/components/user-request/user-request.component.html +0 -165
- package/src/lib/components/user-request/user-request.component.spec.ts +0 -23
- package/src/lib/components/user-request/user-request.component.ts +0 -167
- package/src/lib/components/user-request/user-request.module.ts +0 -18
- package/src/lib/components/user-request-approval/access-request.columns.ts +0 -26
- package/src/lib/components/user-request-approval/base-table-style.ts +0 -52
- package/src/lib/components/user-request-approval/facades/user-access-request.facade.ts +0 -152
- package/src/lib/components/user-request-approval/helper.ts +0 -39
- package/src/lib/components/user-request-approval/services/user-access-request.service.spec.ts +0 -16
- package/src/lib/components/user-request-approval/services/user-access-request.service.ts +0 -87
- package/src/lib/components/user-request-approval/states/user-access-request.state.ts +0 -65
- package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.css +0 -0
- package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.html +0 -7
- package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.spec.ts +0 -23
- package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.ts +0 -22
- package/src/lib/components/user-request-approval/user-request-approval.component.css +0 -1
- package/src/lib/components/user-request-approval/user-request-approval.component.html +0 -218
- package/src/lib/components/user-request-approval/user-request-approval.component.spec.ts +0 -23
- package/src/lib/components/user-request-approval/user-request-approval.component.ts +0 -301
- package/src/lib/components/user-request-approval/user-request-approval.module.ts +0 -52
- package/src/lib/components/user-request-approval/user-request-approval.service.spec.ts +0 -16
- package/src/lib/components/user-request-approval/user-request-approval.service.ts +0 -58
- package/src/lib/components/user-request-approval/user-request-form/use-request-form.component.ts +0 -66
- package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.css +0 -0
- package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.html +0 -97
- package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.spec.ts +0 -23
- package/src/lib/models/ErrorResponse.ts +0 -7
- package/src/lib/models/PasswordRequestParam.ts +0 -5
- package/src/lib/models/ResponseKeyValue.ts +0 -5
- package/src/lib/models/UserRequest.ts +0 -28
- package/src/lib/models/auth-mechanism.ts +0 -14
- package/src/lib/models/base.ts +0 -11
- package/src/lib/models/log-in.ts +0 -7
- package/src/lib/models/object-state.ts +0 -6
- package/src/lib/models/paged.ts +0 -9
- package/src/lib/models/query-params.ts +0 -7
- package/src/lib/models/request-status.ts +0 -4
- package/src/lib/models/resend-otp-data.ts +0 -8
- package/src/lib/models/resource.ts +0 -27
- package/src/lib/models/sign-up.ts +0 -11
- package/src/lib/models/single-sign-on.ts +0 -9
- package/src/lib/models/status.ts +0 -5
- package/src/lib/models/user-access-request-status.ts +0 -5
- package/src/lib/models/user.ts +0 -24
- package/src/lib/services/environment.service.spec.ts +0 -16
- package/src/lib/services/environment.service.ts +0 -23
- package/src/lib/services/http-web-request.service.spec.ts +0 -16
- package/src/lib/services/http-web-request.service.ts +0 -101
- package/src/lib/services/util.service.spec.ts +0 -16
- package/src/lib/services/util.service.ts +0 -28
- package/src/styles.css +0 -96
- package/src/theme/tailwind-setup.css +0 -3
- package/src/theme/tailwind.css +0 -980
- package/tailwind.config.js +0 -20
- package/tsconfig.lib.json +0 -15
- package/tsconfig.lib.prod.json +0 -11
- package/tsconfig.spec.json +0 -15
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ObjectState } from "./object-state";
|
|
2
|
-
|
|
3
|
-
export interface MainUser {
|
|
2
|
+
export interface MainUser {
|
|
4
3
|
Code: string;
|
|
5
4
|
TenantId: string;
|
|
6
5
|
Id: string;
|
|
@@ -17,4 +16,4 @@ export interface MainUser {
|
|
|
17
16
|
CreatedAt: Date;
|
|
18
17
|
UpdatedAt: Date;
|
|
19
18
|
DataState: ObjectState;
|
|
20
|
-
}
|
|
19
|
+
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { User } from './user';
|
|
2
2
|
import { UserAccessRequestStatus } from './user-access-request-status';
|
|
3
|
-
|
|
4
3
|
export interface UserAccessRequest extends User {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
RequestStatus: UserAccessRequestStatus;
|
|
5
|
+
ActionBy?: string;
|
|
6
|
+
Comment?: string;
|
|
8
7
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { BaseModel } from './base';
|
|
2
|
+
export interface User extends BaseModel {
|
|
3
|
+
Password: string;
|
|
4
|
+
OldPassword?: string;
|
|
5
|
+
PhoneNumber?: string;
|
|
6
|
+
FirstName: string;
|
|
7
|
+
LastName: string;
|
|
8
|
+
OtherName?: string;
|
|
9
|
+
MailAddress: string;
|
|
10
|
+
Token?: string;
|
|
11
|
+
ExpireOn: Date;
|
|
12
|
+
IsSeeded: boolean;
|
|
13
|
+
RoleID?: string;
|
|
14
|
+
OTP?: string;
|
|
15
|
+
Department?: string;
|
|
16
|
+
Faculty?: string;
|
|
17
|
+
OTPExpireOn: Date;
|
|
18
|
+
Tenants: string[];
|
|
19
|
+
DepartmentName?: string;
|
|
20
|
+
Address?: string;
|
|
21
|
+
Role?: string[];
|
|
22
|
+
Status?: string;
|
|
23
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare const ENVIRONMENT: InjectionToken<Environment>;
|
|
4
|
+
export interface Environment {
|
|
5
|
+
production: boolean;
|
|
6
|
+
AuthenticationAPI: string;
|
|
7
|
+
APIKey: string;
|
|
8
|
+
Secret: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class EnvironmentService {
|
|
11
|
+
private env;
|
|
12
|
+
constructor(env: Environment);
|
|
13
|
+
get environment(): Environment;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnvironmentService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EnvironmentService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { EnvironmentService } from './environment.service';
|
|
4
|
+
import { NotificationService } from 'verben-ng-ui';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class HttpWebRequestService {
|
|
7
|
+
private http;
|
|
8
|
+
private envSvc;
|
|
9
|
+
private notificationService;
|
|
10
|
+
isProd: boolean;
|
|
11
|
+
constructor(http: HttpClient, envSvc: EnvironmentService, notificationService: NotificationService);
|
|
12
|
+
private buildHeaders;
|
|
13
|
+
private buildUrl;
|
|
14
|
+
private handleError;
|
|
15
|
+
private request;
|
|
16
|
+
get<T>(url: string, baseUrl?: string): Promise<T>;
|
|
17
|
+
post<T>(url: string, body: any, baseUrl?: string): Promise<T>;
|
|
18
|
+
postFile<T>(url: string, formData: FormData, baseUrl?: string): Promise<T>;
|
|
19
|
+
put<T>(url: string, body: any, baseUrl?: string): Observable<T>;
|
|
20
|
+
delete<T>(url: string, baseUrl?: string): Observable<T>;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HttpWebRequestService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HttpWebRequestService>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class UtilService {
|
|
3
|
+
private parentUtilService;
|
|
4
|
+
constructor(parentUtilService: any);
|
|
5
|
+
sendBI(state: boolean): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilService, [{ optional: true; }]>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UtilService>;
|
|
8
|
+
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verben-authentication-ui",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"scripts": {
|
|
5
|
-
"build-watch": "ng build --watch"
|
|
6
|
-
},
|
|
3
|
+
"version": "0.3.4",
|
|
7
4
|
"peerDependencies": {
|
|
8
5
|
"@angular/common": "^14.0.0 || ^18.0.0",
|
|
9
6
|
"@angular/core": "^14.0.0 || ^18.0.0",
|
|
@@ -13,8 +10,17 @@
|
|
|
13
10
|
"tslib": "^2.3.0"
|
|
14
11
|
},
|
|
15
12
|
"sideEffects": false,
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
"module": "fesm2022/verben-authentication-ui.mjs",
|
|
14
|
+
"typings": "index.d.ts",
|
|
15
|
+
"exports": {
|
|
16
|
+
"./package.json": {
|
|
17
|
+
"default": "./package.json"
|
|
18
|
+
},
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./index.d.ts",
|
|
21
|
+
"esm2022": "./esm2022/verben-authentication-ui.mjs",
|
|
22
|
+
"esm": "./esm2022/verben-authentication-ui.mjs",
|
|
23
|
+
"default": "./fesm2022/verben-authentication-ui.mjs"
|
|
24
|
+
}
|
|
19
25
|
}
|
|
20
|
-
}
|
|
26
|
+
}
|
|
@@ -1,50 +1,29 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Public API Surface of verben-ng-ui
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
// export * from './lib/verben-ng-ui.service';
|
|
6
|
-
// export * from './lib/verben-ng-ui.component';
|
|
7
|
-
|
|
8
|
-
// Exporting modules
|
|
9
|
-
|
|
10
1
|
export * from './lib/components/reset-password/reset-password.component';
|
|
11
2
|
export * from './lib/components/reset-password/reset-password.module';
|
|
12
3
|
export * from './lib/components/reset-password/ResetPasswordData';
|
|
13
|
-
//user-request-lib
|
|
14
4
|
export * from './lib/components/user-request/user-request.component';
|
|
15
5
|
export * from './lib/components/user-request/user-request.module';
|
|
16
6
|
export * from './lib/models/UserRequest';
|
|
17
|
-
//mail-validation
|
|
18
7
|
export * from './lib/components/mail-validation/mail-validation.component';
|
|
19
8
|
export * from './lib/components/mail-validation/mail-validation.module';
|
|
20
|
-
|
|
21
|
-
//sign up
|
|
22
9
|
export * from './lib/components/sign-up/sign-up.component';
|
|
23
10
|
export * from './lib/components/sign-up/sign-up.module';
|
|
24
|
-
//sign in
|
|
25
11
|
export * from './lib/components/sign-in/sign-in.module';
|
|
26
12
|
export * from './lib/components/sign-in/sign-in.component';
|
|
27
|
-
//Otp
|
|
28
13
|
export * from './lib/components/two-factor-auth-otp/two-factor-auth-otp.module';
|
|
29
14
|
export * from './lib/components/two-factor-auth-otp/two-factor-auth-otp.component';
|
|
30
|
-
//2FA
|
|
31
15
|
export * from './lib/components/two-factor-auth-setup/two-factor-auth-setup.module';
|
|
32
16
|
export * from './lib/components/two-factor-auth-setup/two-factor-auth-setup.component';
|
|
33
|
-
//sign up
|
|
34
17
|
export * from './lib/components/mail/mail.module';
|
|
35
18
|
export * from './lib/components/mail/mail.component';
|
|
36
|
-
|
|
37
19
|
export * from './lib/components/forgot-password/forgot-password.component';
|
|
38
20
|
export * from './lib/components/forgot-password/forgot-password.module';
|
|
39
21
|
export * from './lib/components/forgot-password/ForgotPasswordData';
|
|
40
22
|
export * from './lib/components/sso/sso.component';
|
|
41
23
|
export * from './lib/components/sso/sso.module';
|
|
42
|
-
|
|
43
24
|
export * from './lib/components/user-request-approval/user-request-approval.module';
|
|
44
25
|
export * from './lib/components/user-request-approval/user-request-approval.component';
|
|
45
|
-
|
|
46
26
|
export * from './lib/components/user-management/useer-management.module';
|
|
47
27
|
export * from './lib/components/user-management/user-management.component';
|
|
48
28
|
export * from './lib/components/user-request-approval/user-request-approval.service';
|
|
49
29
|
export * from './lib/services/environment.service';
|
|
50
|
-
|
package/ng-package.json
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<verbena-button
|
|
2
|
-
[text]="text"
|
|
3
|
-
[bgColor]="bgColor"
|
|
4
|
-
[textColor]="color"
|
|
5
|
-
[border]="border"
|
|
6
|
-
[borderRadius]="borderRadius"
|
|
7
|
-
[pd]="pd"
|
|
8
|
-
[width]="width"
|
|
9
|
-
[disable]="disabled"
|
|
10
|
-
[ngStyle]="{'cursor': disabled ? 'not-allowed' : 'pointer' }"
|
|
11
|
-
buttonClass="font-medium text-[22px] leading-[33px] {{buttonClass}}"
|
|
12
|
-
(click)="handleClick()"
|
|
13
|
-
></verbena-button>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
|
|
3
|
-
import { ButtonComponent } from './button.component';
|
|
4
|
-
|
|
5
|
-
describe('ButtonComponent', () => {
|
|
6
|
-
let component: ButtonComponent;
|
|
7
|
-
let fixture: ComponentFixture<ButtonComponent>;
|
|
8
|
-
|
|
9
|
-
beforeEach(async () => {
|
|
10
|
-
await TestBed.configureTestingModule({
|
|
11
|
-
imports: [ButtonComponent]
|
|
12
|
-
})
|
|
13
|
-
.compileComponents();
|
|
14
|
-
|
|
15
|
-
fixture = TestBed.createComponent(ButtonComponent);
|
|
16
|
-
component = fixture.componentInstance;
|
|
17
|
-
fixture.detectChanges();
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
it('should create', () => {
|
|
21
|
-
expect(component).toBeTruthy();
|
|
22
|
-
});
|
|
23
|
-
});
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
@Component({
|
|
4
|
-
selector: 'lib-button',
|
|
5
|
-
templateUrl: './button.component.html',
|
|
6
|
-
styleUrl: './button.component.css'
|
|
7
|
-
})
|
|
8
|
-
export class ButtonComponent {
|
|
9
|
-
@Input() text: string = '';
|
|
10
|
-
@Input() color: string = 'black';
|
|
11
|
-
@Input() border: string = '1px solid #FFE681';
|
|
12
|
-
@Input() borderRadius:string = "40px"
|
|
13
|
-
@Input() bgColor: string = '#FFE681';
|
|
14
|
-
@Input() width: string = '100%';
|
|
15
|
-
@Input() pd: string = '10px 20px';
|
|
16
|
-
@Input() buttonClass: string = '';
|
|
17
|
-
@Input() disabled: boolean = false;
|
|
18
|
-
|
|
19
|
-
@Output() buttonClick = new EventEmitter<void>();
|
|
20
|
-
|
|
21
|
-
handleClick(){
|
|
22
|
-
this.buttonClick.emit();
|
|
23
|
-
}
|
|
24
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { VerbenaButtonModule } from 'verben-ng-ui';
|
|
4
|
-
import { ButtonComponent } from './button.component';
|
|
5
|
-
import { FormsModule } from '@angular/forms';
|
|
6
|
-
@NgModule({
|
|
7
|
-
declarations: [ButtonComponent],
|
|
8
|
-
imports: [CommonModule,VerbenaButtonModule,FormsModule],
|
|
9
|
-
exports: [ButtonComponent]
|
|
10
|
-
})
|
|
11
|
-
export class ButtonModule {}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
@import '../../../styles.css';
|
|
2
|
-
|
|
3
|
-
.reset-password-container {
|
|
4
|
-
gap: 25px;
|
|
5
|
-
padding: 50px;
|
|
6
|
-
border: 1px solid rgba(102, 102, 102, 0.5);
|
|
7
|
-
box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
8
|
-
border-radius: 24px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.reset-password-title {
|
|
12
|
-
font-size: 30px;
|
|
13
|
-
font-weight: bold;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.reset-password-subtitle {
|
|
17
|
-
font-size: 14px;
|
|
18
|
-
font-weight: 500;
|
|
19
|
-
color: rgba(102, 102, 102, 1);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.form-field {
|
|
23
|
-
gap: 5px;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.form-field-caption {
|
|
27
|
-
color: rgba(102, 102, 102, 1);
|
|
28
|
-
/* font-weight: 600; */
|
|
29
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<div [formGroup]="this.forgotPasswordForm" class="reset-password-container flex flex-col">
|
|
2
|
-
<div class="reset-password-header flex flex-col">
|
|
3
|
-
<div class="reset-password-title">{{title}}</div>
|
|
4
|
-
<div class="reset-password-subtitle">{{subTitle}}</div>
|
|
5
|
-
</div>
|
|
6
|
-
<div class="form-field flex flex-col">
|
|
7
|
-
<div class="form-field-caption">Email</div>
|
|
8
|
-
<verbena-input bgColor="white" borderRadius="12px" formControlName="Email" type="email"></verbena-input>
|
|
9
|
-
</div>
|
|
10
|
-
<verbena-button fontWeight="700" (click)="submit()" [text]="buttonCaption" width="100%" [textColor]="buttonTextColor"
|
|
11
|
-
[bgColor]="buttonBackgroundColor" borderRadius="25px" [disable]="!this.checkForm()"></verbena-button>
|
|
12
|
-
|
|
13
|
-
</div>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
|
|
3
|
-
import { ForgotPasswordComponent } from './forgot-password.component';
|
|
4
|
-
|
|
5
|
-
describe('ForgotPasswordComponent', () => {
|
|
6
|
-
let component: ForgotPasswordComponent;
|
|
7
|
-
let fixture: ComponentFixture<ForgotPasswordComponent>;
|
|
8
|
-
|
|
9
|
-
beforeEach(async () => {
|
|
10
|
-
await TestBed.configureTestingModule({
|
|
11
|
-
imports: [ForgotPasswordComponent]
|
|
12
|
-
})
|
|
13
|
-
.compileComponents();
|
|
14
|
-
|
|
15
|
-
fixture = TestBed.createComponent(ForgotPasswordComponent);
|
|
16
|
-
component = fixture.componentInstance;
|
|
17
|
-
fixture.detectChanges();
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
it('should create', () => {
|
|
21
|
-
expect(component).toBeTruthy();
|
|
22
|
-
});
|
|
23
|
-
});
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
AbstractControl,
|
|
4
|
-
FormBuilder,
|
|
5
|
-
FormControl,
|
|
6
|
-
FormGroup,
|
|
7
|
-
ValidationErrors,
|
|
8
|
-
Validators,
|
|
9
|
-
} from '@angular/forms';
|
|
10
|
-
import { ForgotPasswordData } from './ForgotPasswordData';
|
|
11
|
-
import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
12
|
-
import { ErrorResponse } from '../../models/ErrorResponse';
|
|
13
|
-
import { ResponseKeyValue } from '../../models/ResponseKeyValue';
|
|
14
|
-
import { UtilService } from '../../services/util.service';
|
|
15
|
-
|
|
16
|
-
@Component({
|
|
17
|
-
selector: 'verben-forgot-password',
|
|
18
|
-
templateUrl: './forgot-password.component.html',
|
|
19
|
-
styleUrl: './forgot-password.component.css',
|
|
20
|
-
})
|
|
21
|
-
export class ForgotPasswordComponent {
|
|
22
|
-
@Input() title: string = 'Forgot Password';
|
|
23
|
-
@Input() subTitle: string = 'Enter the e-mail you used during registration';
|
|
24
|
-
@Input() buttonCaption: string = 'Submit';
|
|
25
|
-
@Input() buttonTextColor?: string;
|
|
26
|
-
@Input() buttonBackgroundColor?: string;
|
|
27
|
-
|
|
28
|
-
@Output() onSubmit: EventEmitter<ForgotPasswordData> = new EventEmitter();
|
|
29
|
-
@Output() onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse> =
|
|
30
|
-
new EventEmitter();
|
|
31
|
-
|
|
32
|
-
forgotPasswordForm: FormGroup;
|
|
33
|
-
|
|
34
|
-
constructor(
|
|
35
|
-
private fb: FormBuilder,
|
|
36
|
-
private server: HttpWebRequestService,
|
|
37
|
-
private utilService: UtilService
|
|
38
|
-
) {
|
|
39
|
-
this.forgotPasswordForm = this.fb.group({
|
|
40
|
-
Email: new FormControl<string | null>(null, [
|
|
41
|
-
Validators.required,
|
|
42
|
-
this.emailValidator.bind(this),
|
|
43
|
-
]),
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
isValidEmail(mail: string): boolean {
|
|
48
|
-
const emailPattern = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
|
|
49
|
-
return emailPattern.test(mail);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
emailValidator(control: AbstractControl): ValidationErrors | null {
|
|
53
|
-
const value = control.value;
|
|
54
|
-
|
|
55
|
-
if (this.isValidEmail(value) == false) {
|
|
56
|
-
return { customValidation: true };
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
return null;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
checkForm(): boolean {
|
|
63
|
-
return this.forgotPasswordForm.valid;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
async submit() {
|
|
67
|
-
if (!this.checkForm()) {
|
|
68
|
-
return;
|
|
69
|
-
}
|
|
70
|
-
var data: ForgotPasswordData = {
|
|
71
|
-
Email: this.forgotPasswordForm.controls['Email'].value,
|
|
72
|
-
};
|
|
73
|
-
this.onSubmit.emit(data);
|
|
74
|
-
this.utilService.sendBI(true);
|
|
75
|
-
const res = await this.server.get(
|
|
76
|
-
`User/PasswordChangeRequest/${data.Email}`
|
|
77
|
-
);
|
|
78
|
-
this.utilService.sendBI(false);
|
|
79
|
-
if (res instanceof ErrorResponse) {
|
|
80
|
-
this.onSubmitEnd.emit(res);
|
|
81
|
-
} else {
|
|
82
|
-
var result = res as ResponseKeyValue;
|
|
83
|
-
this.onSubmitEnd.emit(result);
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { ForgotPasswordComponent } from './forgot-password.component';
|
|
3
|
-
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
4
|
-
import { VerbenaButtonModule, VerbenaInputModule } from 'verben-ng-ui';
|
|
5
|
-
import { CommonModule } from '@angular/common';
|
|
6
|
-
|
|
7
|
-
@NgModule({
|
|
8
|
-
declarations: [ForgotPasswordComponent],
|
|
9
|
-
imports: [
|
|
10
|
-
FormsModule,
|
|
11
|
-
ReactiveFormsModule,
|
|
12
|
-
VerbenaInputModule,
|
|
13
|
-
VerbenaButtonModule,
|
|
14
|
-
CommonModule,
|
|
15
|
-
],
|
|
16
|
-
exports: [ForgotPasswordComponent],
|
|
17
|
-
})
|
|
18
|
-
export class ForgotPasswordModule {}
|
|
File without changes
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
|
|
3
|
-
import { MailComponent } from './mail.component';
|
|
4
|
-
|
|
5
|
-
describe('MailComponent', () => {
|
|
6
|
-
let component: MailComponent;
|
|
7
|
-
let fixture: ComponentFixture<MailComponent>;
|
|
8
|
-
|
|
9
|
-
beforeEach(async () => {
|
|
10
|
-
await TestBed.configureTestingModule({
|
|
11
|
-
imports: [MailComponent]
|
|
12
|
-
})
|
|
13
|
-
.compileComponents();
|
|
14
|
-
|
|
15
|
-
fixture = TestBed.createComponent(MailComponent);
|
|
16
|
-
component = fixture.componentInstance;
|
|
17
|
-
fixture.detectChanges();
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
it('should create', () => {
|
|
21
|
-
expect(component).toBeTruthy();
|
|
22
|
-
});
|
|
23
|
-
});
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
@Component({
|
|
5
|
-
selector: 'verben-mail-message',
|
|
6
|
-
templateUrl: './mail.component.html',
|
|
7
|
-
styleUrl: './mail.component.css'
|
|
8
|
-
})
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export class MailComponent {
|
|
12
|
-
@Input() customClass: string = ''
|
|
13
|
-
@Input() headlingClass: string = ''
|
|
14
|
-
@Input() width: string = '';
|
|
15
|
-
@Input() maxWidth: string = '';
|
|
16
|
-
@Input() margin: string = '';
|
|
17
|
-
@Input() pd: string = '';
|
|
18
|
-
@Input() bgColor: string = '#fff';
|
|
19
|
-
@Input() boxShadow: string = '4px 4px 4px rgba(0, 0, 0, 0.25)';
|
|
20
|
-
@Input() border: string = '1px solid #66666680';
|
|
21
|
-
@Input() borderRadius: string = '24px';
|
|
22
|
-
@Input() textColor: string = '#333';
|
|
23
|
-
@Input() height: string = 'auto';
|
|
24
|
-
|
|
25
|
-
@Output() buttonClick = new EventEmitter();
|
|
26
|
-
|
|
27
|
-
goToLogin(){
|
|
28
|
-
this.buttonClick.emit()
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
get styles() {
|
|
32
|
-
return {
|
|
33
|
-
'background-color': this.bgColor,
|
|
34
|
-
'box-shadow': this.boxShadow,
|
|
35
|
-
'border': this.border,
|
|
36
|
-
'border-radius': this.borderRadius,
|
|
37
|
-
'color': this.textColor,
|
|
38
|
-
'width': this.width,
|
|
39
|
-
'max-width':this.maxWidth,
|
|
40
|
-
'margin':this.margin,
|
|
41
|
-
'height': this.height,
|
|
42
|
-
'padding':this.pd
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
}
|
|
47
|
-
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { FormsModule } from '@angular/forms';
|
|
4
|
-
import { RouterLink} from '@angular/router';
|
|
5
|
-
import { ButtonModule } from '../button/button.module';
|
|
6
|
-
import { MailComponent } from './mail.component';
|
|
7
|
-
|
|
8
|
-
@NgModule({
|
|
9
|
-
declarations: [MailComponent],
|
|
10
|
-
imports: [CommonModule, FormsModule,RouterLink,ButtonModule],
|
|
11
|
-
exports: [MailComponent]
|
|
12
|
-
})
|
|
13
|
-
export class MailModule {}
|