verben-authentication-ui 0.3.2 → 0.3.3
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/ng-package.json +8 -0
- package/package.json +8 -14
- package/src/lib/components/button/button.component.css +3 -0
- package/src/lib/components/button/button.component.html +13 -0
- package/src/lib/components/button/button.component.spec.ts +23 -0
- package/src/lib/components/button/button.component.ts +24 -0
- package/src/lib/components/button/button.module.ts +11 -0
- package/{lib/components/forgot-password/ForgotPasswordData.d.ts → src/lib/components/forgot-password/ForgotPasswordData.ts} +1 -1
- package/src/lib/components/forgot-password/forgot-password.component.css +29 -0
- package/src/lib/components/forgot-password/forgot-password.component.html +13 -0
- package/src/lib/components/forgot-password/forgot-password.component.spec.ts +23 -0
- package/src/lib/components/forgot-password/forgot-password.component.ts +86 -0
- package/src/lib/components/forgot-password/forgot-password.module.ts +18 -0
- package/src/lib/components/mail/mail.component.css +0 -0
- package/src/lib/components/mail/mail.component.html +11 -0
- package/src/lib/components/mail/mail.component.spec.ts +23 -0
- package/src/lib/components/mail/mail.component.ts +47 -0
- package/src/lib/components/mail/mail.module.ts +13 -0
- package/src/lib/components/mail-validation/mail-validation.component.css +59 -0
- package/src/lib/components/mail-validation/mail-validation.component.html +37 -0
- package/src/lib/components/mail-validation/mail-validation.component.spec.ts +23 -0
- package/src/lib/components/mail-validation/mail-validation.component.ts +66 -0
- package/src/lib/components/mail-validation/mail-validation.module.ts +18 -0
- package/src/lib/components/o-auth/o-auth.component.css +21 -0
- package/src/lib/components/o-auth/o-auth.component.html +60 -0
- package/src/lib/components/o-auth/o-auth.component.spec.ts +23 -0
- package/src/lib/components/o-auth/o-auth.component.ts +43 -0
- package/src/lib/components/o-auth/o-auth.module.ts +11 -0
- package/src/lib/components/otp-input/otp-input.component.css +19 -0
- package/src/lib/components/otp-input/otp-input.component.html +14 -0
- package/src/lib/components/otp-input/otp-input.component.spec.ts +23 -0
- package/src/lib/components/otp-input/otp-input.component.ts +73 -0
- package/src/lib/components/otp-input/otp-input.module.ts +15 -0
- package/src/lib/components/reset-password/ResetPasswordData.ts +5 -0
- package/src/lib/components/reset-password/reset-password.component.css +29 -0
- package/src/lib/components/reset-password/reset-password.component.html +22 -0
- package/src/lib/components/reset-password/reset-password.component.spec.ts +23 -0
- package/src/lib/components/reset-password/reset-password.component.ts +108 -0
- package/src/lib/components/reset-password/reset-password.module.ts +18 -0
- package/src/lib/components/sign-in/sign-in.component.css +21 -0
- package/src/lib/components/sign-in/sign-in.component.html +84 -0
- package/src/lib/components/sign-in/sign-in.component.spec.ts +23 -0
- package/src/lib/components/sign-in/sign-in.component.ts +184 -0
- package/src/lib/components/sign-in/sign-in.module.ts +17 -0
- package/src/lib/components/sign-up/sign-up.component.css +36 -0
- package/src/lib/components/sign-up/sign-up.component.html +132 -0
- package/src/lib/components/sign-up/sign-up.component.spec.ts +23 -0
- package/src/lib/components/sign-up/sign-up.component.ts +176 -0
- package/src/lib/components/sign-up/sign-up.module.ts +15 -0
- package/src/lib/components/sso/base-table-style.ts +52 -0
- package/src/lib/components/sso/helper.ts +15 -0
- package/src/lib/components/sso/sso-form/sso-form.component.css +13 -0
- package/src/lib/components/sso/sso-form/sso-form.component.html +109 -0
- package/src/lib/components/sso/sso-form/sso-form.component.spec.ts +23 -0
- package/src/lib/components/sso/sso-form/sso-form.component.ts +70 -0
- package/src/lib/components/sso/sso.columns.ts +32 -0
- package/src/lib/components/sso/sso.component.css +47 -0
- package/src/lib/components/sso/sso.component.html +208 -0
- package/src/lib/components/sso/sso.component.spec.ts +23 -0
- package/src/lib/components/sso/sso.component.ts +261 -0
- package/src/lib/components/sso/sso.module.ts +40 -0
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.css +8 -0
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.html +30 -0
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.spec.ts +23 -0
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.ts +183 -0
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.ts +15 -0
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.css +17 -0
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.html +45 -0
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.spec.ts +23 -0
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.ts +57 -0
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.ts +11 -0
- package/src/lib/components/user-management/base-table-style.ts +52 -0
- package/src/lib/components/user-management/helper.ts +29 -0
- package/src/lib/components/user-management/index.ts +4 -0
- package/src/lib/components/user-management/useer-management.module.ts +48 -0
- package/src/lib/components/user-management/user-management-form/use-management-form.component.ts +61 -0
- 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 +91 -0
- package/src/lib/components/user-management/user-management-form/user-management-form.component.spec.ts +23 -0
- package/src/lib/components/user-management/user-management.columns.ts +45 -0
- package/src/lib/components/user-management/user-management.component.css +26 -0
- package/src/lib/components/user-management/user-management.component.html +275 -0
- package/src/lib/components/user-management/user-management.component.spec.ts +23 -0
- package/src/lib/components/user-management/user-management.component.ts +380 -0
- package/src/lib/components/user-management/user-management.service.ts +42 -0
- package/src/lib/components/user-request/user-request.component.css +91 -0
- package/src/lib/components/user-request/user-request.component.html +165 -0
- package/src/lib/components/user-request/user-request.component.spec.ts +23 -0
- package/src/lib/components/user-request/user-request.component.ts +167 -0
- package/src/lib/components/user-request/user-request.module.ts +18 -0
- package/src/lib/components/user-request-approval/access-request.columns.ts +26 -0
- package/src/lib/components/user-request-approval/base-table-style.ts +52 -0
- package/src/lib/components/user-request-approval/facades/user-access-request.facade.ts +152 -0
- package/src/lib/components/user-request-approval/helper.ts +39 -0
- package/src/lib/components/user-request-approval/services/user-access-request.service.spec.ts +16 -0
- package/src/lib/components/user-request-approval/services/user-access-request.service.ts +87 -0
- package/src/lib/components/user-request-approval/states/user-access-request.state.ts +65 -0
- 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 +7 -0
- package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.spec.ts +23 -0
- package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.ts +22 -0
- package/src/lib/components/user-request-approval/user-request-approval.component.css +1 -0
- package/src/lib/components/user-request-approval/user-request-approval.component.html +218 -0
- package/src/lib/components/user-request-approval/user-request-approval.component.spec.ts +23 -0
- package/src/lib/components/user-request-approval/user-request-approval.component.ts +301 -0
- package/src/lib/components/user-request-approval/user-request-approval.module.ts +52 -0
- package/src/lib/components/user-request-approval/user-request-approval.service.spec.ts +16 -0
- package/src/lib/components/user-request-approval/user-request-approval.service.ts +58 -0
- package/src/lib/components/user-request-approval/user-request-form/use-request-form.component.ts +66 -0
- 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 +97 -0
- package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.spec.ts +23 -0
- package/src/lib/models/ErrorResponse.ts +7 -0
- package/src/lib/models/PasswordRequestParam.ts +5 -0
- package/src/lib/models/ResponseKeyValue.ts +5 -0
- package/src/lib/models/UserRequest.ts +28 -0
- package/src/lib/models/auth-mechanism.ts +14 -0
- package/src/lib/models/base.ts +11 -0
- package/src/lib/models/log-in.ts +7 -0
- package/{lib/models/mainUser.d.ts → src/lib/models/mainUser.ts} +3 -2
- package/src/lib/models/object-state.ts +6 -0
- package/{lib/models/otpValue.d.ts → src/lib/models/otpValue.ts} +3 -1
- package/src/lib/models/paged.ts +9 -0
- package/src/lib/models/query-params.ts +7 -0
- package/src/lib/models/request-status.ts +4 -0
- package/src/lib/models/resend-otp-data.ts +8 -0
- package/src/lib/models/resource.ts +27 -0
- package/src/lib/models/sign-up.ts +11 -0
- package/src/lib/models/single-sign-on.ts +9 -0
- package/src/lib/models/status.ts +5 -0
- package/src/lib/models/user-access-request-status.ts +5 -0
- package/{lib/models/user-access-request.d.ts → src/lib/models/user-access-request.ts} +4 -3
- package/src/lib/models/user.ts +24 -0
- package/src/lib/services/environment.service.spec.ts +16 -0
- package/src/lib/services/environment.service.ts +23 -0
- package/src/lib/services/http-web-request.service.spec.ts +16 -0
- package/src/lib/services/http-web-request.service.ts +101 -0
- package/src/lib/services/util.service.spec.ts +16 -0
- package/src/lib/services/util.service.ts +28 -0
- package/{public-api.d.ts → src/public-api.ts} +21 -0
- package/src/styles.css +96 -0
- package/src/theme/tailwind-setup.css +3 -0
- package/src/theme/tailwind.css +980 -0
- package/tailwind.config.js +20 -0
- package/tsconfig.lib.json +15 -0
- package/tsconfig.lib.prod.json +11 -0
- package/tsconfig.spec.json +15 -0
- package/esm2022/lib/components/button/button.component.mjs +0 -46
- package/esm2022/lib/components/button/button.module.mjs +0 -20
- package/esm2022/lib/components/forgot-password/ForgotPasswordData.mjs +0 -2
- package/esm2022/lib/components/forgot-password/forgot-password.component.mjs +0 -86
- package/esm2022/lib/components/forgot-password/forgot-password.module.mjs +0 -34
- package/esm2022/lib/components/mail/mail.component.mjs +0 -69
- package/esm2022/lib/components/mail/mail.module.mjs +0 -21
- package/esm2022/lib/components/mail-validation/mail-validation.component.mjs +0 -108
- package/esm2022/lib/components/mail-validation/mail-validation.module.mjs +0 -34
- package/esm2022/lib/components/o-auth/o-auth.component.mjs +0 -25
- package/esm2022/lib/components/o-auth/o-auth.module.mjs +0 -19
- package/esm2022/lib/components/otp-input/otp-input.component.mjs +0 -75
- package/esm2022/lib/components/otp-input/otp-input.module.mjs +0 -23
- package/esm2022/lib/components/reset-password/ResetPasswordData.mjs +0 -2
- package/esm2022/lib/components/reset-password/reset-password.component.mjs +0 -107
- package/esm2022/lib/components/reset-password/reset-password.module.mjs +0 -34
- package/esm2022/lib/components/sign-in/sign-in.component.mjs +0 -214
- package/esm2022/lib/components/sign-in/sign-in.module.mjs +0 -24
- package/esm2022/lib/components/sign-up/sign-up.component.mjs +0 -223
- package/esm2022/lib/components/sign-up/sign-up.module.mjs +0 -24
- package/esm2022/lib/components/sso/base-table-style.mjs +0 -53
- package/esm2022/lib/components/sso/helper.mjs +0 -14
- package/esm2022/lib/components/sso/sso-form/sso-form.component.mjs +0 -74
- package/esm2022/lib/components/sso/sso.columns.mjs +0 -29
- package/esm2022/lib/components/sso/sso.component.mjs +0 -236
- package/esm2022/lib/components/sso/sso.module.mjs +0 -63
- package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.mjs +0 -201
- package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.mjs +0 -22
- package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.mjs +0 -90
- package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.mjs +0 -19
- package/esm2022/lib/components/user-management/base-table-style.mjs +0 -53
- package/esm2022/lib/components/user-management/helper.mjs +0 -26
- package/esm2022/lib/components/user-management/useer-management.module.mjs +0 -68
- package/esm2022/lib/components/user-management/user-management-form/use-management-form.component.mjs +0 -57
- package/esm2022/lib/components/user-management/user-management.columns.mjs +0 -43
- package/esm2022/lib/components/user-management/user-management.component.mjs +0 -323
- package/esm2022/lib/components/user-request/user-request.component.mjs +0 -206
- package/esm2022/lib/components/user-request/user-request.module.mjs +0 -34
- package/esm2022/lib/components/user-request-approval/access-request.columns.mjs +0 -24
- package/esm2022/lib/components/user-request-approval/base-table-style.mjs +0 -53
- package/esm2022/lib/components/user-request-approval/facades/user-access-request.facade.mjs +0 -128
- package/esm2022/lib/components/user-request-approval/helper.mjs +0 -35
- package/esm2022/lib/components/user-request-approval/services/user-access-request.service.mjs +0 -72
- package/esm2022/lib/components/user-request-approval/states/user-access-request.state.mjs +0 -59
- package/esm2022/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.mjs +0 -26
- package/esm2022/lib/components/user-request-approval/user-request-approval.component.mjs +0 -251
- package/esm2022/lib/components/user-request-approval/user-request-approval.module.mjs +0 -77
- package/esm2022/lib/components/user-request-approval/user-request-approval.service.mjs +0 -32
- package/esm2022/lib/components/user-request-approval/user-request-form/use-request-form.component.mjs +0 -64
- package/esm2022/lib/models/ErrorResponse.mjs +0 -11
- package/esm2022/lib/models/PasswordRequestParam.mjs +0 -2
- package/esm2022/lib/models/ResponseKeyValue.mjs +0 -2
- package/esm2022/lib/models/UserRequest.mjs +0 -2
- package/esm2022/lib/models/base.mjs +0 -2
- package/esm2022/lib/models/log-in.mjs +0 -2
- package/esm2022/lib/models/mainUser.mjs +0 -2
- package/esm2022/lib/models/object-state.mjs +0 -8
- package/esm2022/lib/models/otpValue.mjs +0 -2
- package/esm2022/lib/models/paged.mjs +0 -2
- package/esm2022/lib/models/query-params.mjs +0 -2
- package/esm2022/lib/models/request-status.mjs +0 -5
- package/esm2022/lib/models/sign-up.mjs +0 -2
- package/esm2022/lib/models/single-sign-on.mjs +0 -2
- package/esm2022/lib/models/status.mjs +0 -6
- package/esm2022/lib/models/user-access-request-status.mjs +0 -7
- package/esm2022/lib/models/user-access-request.mjs +0 -2
- package/esm2022/lib/models/user.mjs +0 -2
- package/esm2022/lib/services/environment.service.mjs +0 -26
- package/esm2022/lib/services/http-web-request.service.mjs +0 -83
- package/esm2022/lib/services/util.service.mjs +0 -32
- package/esm2022/public-api.mjs +0 -43
- package/esm2022/verben-authentication-ui.mjs +0 -5
- package/fesm2022/verben-authentication-ui.mjs +0 -3545
- package/fesm2022/verben-authentication-ui.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/components/button/button.component.d.ts +0 -17
- package/lib/components/button/button.module.d.ts +0 -10
- package/lib/components/forgot-password/forgot-password.component.d.ts +0 -28
- package/lib/components/forgot-password/forgot-password.module.d.ts +0 -10
- package/lib/components/mail/mail.component.d.ts +0 -32
- package/lib/components/mail/mail.module.d.ts +0 -11
- package/lib/components/mail-validation/mail-validation.component.d.ts +0 -42
- package/lib/components/mail-validation/mail-validation.module.d.ts +0 -10
- package/lib/components/o-auth/o-auth.component.d.ts +0 -10
- package/lib/components/o-auth/o-auth.module.d.ts +0 -9
- package/lib/components/otp-input/otp-input.component.d.ts +0 -20
- package/lib/components/otp-input/otp-input.module.d.ts +0 -13
- package/lib/components/reset-password/ResetPasswordData.d.ts +0 -5
- package/lib/components/reset-password/reset-password.component.d.ts +0 -30
- package/lib/components/reset-password/reset-password.module.d.ts +0 -10
- package/lib/components/sign-in/sign-in.component.d.ts +0 -77
- package/lib/components/sign-in/sign-in.module.d.ts +0 -13
- package/lib/components/sign-up/sign-up.component.d.ts +0 -66
- package/lib/components/sign-up/sign-up.module.d.ts +0 -13
- package/lib/components/sso/base-table-style.d.ts +0 -1
- package/lib/components/sso/helper.d.ts +0 -2
- package/lib/components/sso/sso-form/sso-form.component.d.ts +0 -21
- package/lib/components/sso/sso.columns.d.ts +0 -3
- package/lib/components/sso/sso.component.d.ts +0 -54
- package/lib/components/sso/sso.module.d.ts +0 -11
- package/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.d.ts +0 -65
- package/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.d.ts +0 -12
- package/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.d.ts +0 -39
- package/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.d.ts +0 -9
- package/lib/components/user-management/base-table-style.d.ts +0 -1
- package/lib/components/user-management/helper.d.ts +0 -2
- package/lib/components/user-management/useer-management.module.d.ts +0 -11
- package/lib/components/user-management/user-management-form/use-management-form.component.d.ts +0 -20
- package/lib/components/user-management/user-management.columns.d.ts +0 -3
- package/lib/components/user-management/user-management.component.d.ts +0 -60
- package/lib/components/user-request/user-request.component.d.ts +0 -60
- package/lib/components/user-request/user-request.module.d.ts +0 -10
- package/lib/components/user-request-approval/access-request.columns.d.ts +0 -3
- package/lib/components/user-request-approval/base-table-style.d.ts +0 -1
- package/lib/components/user-request-approval/facades/user-access-request.facade.d.ts +0 -23
- package/lib/components/user-request-approval/helper.d.ts +0 -6
- package/lib/components/user-request-approval/services/user-access-request.service.d.ts +0 -50
- package/lib/components/user-request-approval/states/user-access-request.state.d.ts +0 -21
- package/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.d.ts +0 -12
- package/lib/components/user-request-approval/user-request-approval.component.d.ts +0 -59
- package/lib/components/user-request-approval/user-request-approval.module.d.ts +0 -12
- package/lib/components/user-request-approval/user-request-approval.service.d.ts +0 -18
- package/lib/components/user-request-approval/user-request-form/use-request-form.component.d.ts +0 -21
- package/lib/models/ErrorResponse.d.ts +0 -6
- package/lib/models/PasswordRequestParam.d.ts +0 -5
- package/lib/models/ResponseKeyValue.d.ts +0 -5
- package/lib/models/UserRequest.d.ts +0 -24
- package/lib/models/base.d.ts +0 -10
- package/lib/models/log-in.d.ts +0 -7
- package/lib/models/object-state.d.ts +0 -6
- package/lib/models/paged.d.ts +0 -9
- package/lib/models/query-params.d.ts +0 -7
- package/lib/models/request-status.d.ts +0 -3
- package/lib/models/sign-up.d.ts +0 -9
- package/lib/models/single-sign-on.d.ts +0 -7
- package/lib/models/status.d.ts +0 -4
- package/lib/models/user-access-request-status.d.ts +0 -5
- package/lib/models/user.d.ts +0 -23
- package/lib/services/environment.service.d.ts +0 -16
- package/lib/services/http-web-request.service.d.ts +0 -23
- package/lib/services/util.service.d.ts +0 -8
package/index.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ButtonComponent {
|
|
4
|
-
text: string;
|
|
5
|
-
color: string;
|
|
6
|
-
border: string;
|
|
7
|
-
borderRadius: string;
|
|
8
|
-
bgColor: string;
|
|
9
|
-
width: string;
|
|
10
|
-
pd: string;
|
|
11
|
-
buttonClass: string;
|
|
12
|
-
disabled: boolean;
|
|
13
|
-
buttonClick: EventEmitter<void>;
|
|
14
|
-
handleClick(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "lib-button", never, { "text": { "alias": "text"; "required": false; }; "color": { "alias": "color"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "width": { "alias": "width"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, never, false, never>;
|
|
17
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./button.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "verben-ng-ui";
|
|
5
|
-
import * as i4 from "@angular/forms";
|
|
6
|
-
export declare class ButtonModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonModule, [typeof i1.ButtonComponent], [typeof i2.CommonModule, typeof i3.VerbenaButtonModule, typeof i4.FormsModule], [typeof i1.ButtonComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ButtonModule>;
|
|
10
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { AbstractControl, FormBuilder, FormGroup, ValidationErrors } from '@angular/forms';
|
|
3
|
-
import { ForgotPasswordData } from './ForgotPasswordData';
|
|
4
|
-
import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
5
|
-
import { ErrorResponse } from '../../models/ErrorResponse';
|
|
6
|
-
import { ResponseKeyValue } from '../../models/ResponseKeyValue';
|
|
7
|
-
import { UtilService } from '../../services/util.service';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class ForgotPasswordComponent {
|
|
10
|
-
private fb;
|
|
11
|
-
private server;
|
|
12
|
-
private utilService;
|
|
13
|
-
title: string;
|
|
14
|
-
subTitle: string;
|
|
15
|
-
buttonCaption: string;
|
|
16
|
-
buttonTextColor?: string;
|
|
17
|
-
buttonBackgroundColor?: string;
|
|
18
|
-
onSubmit: EventEmitter<ForgotPasswordData>;
|
|
19
|
-
onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
20
|
-
forgotPasswordForm: FormGroup;
|
|
21
|
-
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService);
|
|
22
|
-
isValidEmail(mail: string): boolean;
|
|
23
|
-
emailValidator(control: AbstractControl): ValidationErrors | null;
|
|
24
|
-
checkForm(): boolean;
|
|
25
|
-
submit(): Promise<void>;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "verben-forgot-password", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; "buttonCaption": { "alias": "buttonCaption"; "required": false; }; "buttonTextColor": { "alias": "buttonTextColor"; "required": false; }; "buttonBackgroundColor": { "alias": "buttonBackgroundColor"; "required": false; }; }, { "onSubmit": "onSubmit"; "onSubmitEnd": "onSubmitEnd"; }, never, never, false, never>;
|
|
28
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./forgot-password.component";
|
|
3
|
-
import * as i2 from "@angular/forms";
|
|
4
|
-
import * as i3 from "verben-ng-ui";
|
|
5
|
-
import * as i4 from "@angular/common";
|
|
6
|
-
export declare class ForgotPasswordModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ForgotPasswordModule, [typeof i1.ForgotPasswordComponent], [typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.VerbenaInputModule, typeof i3.VerbenaButtonModule, typeof i4.CommonModule], [typeof i1.ForgotPasswordComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ForgotPasswordModule>;
|
|
10
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class MailComponent {
|
|
4
|
-
customClass: string;
|
|
5
|
-
headlingClass: string;
|
|
6
|
-
width: string;
|
|
7
|
-
maxWidth: string;
|
|
8
|
-
margin: string;
|
|
9
|
-
pd: string;
|
|
10
|
-
bgColor: string;
|
|
11
|
-
boxShadow: string;
|
|
12
|
-
border: string;
|
|
13
|
-
borderRadius: string;
|
|
14
|
-
textColor: string;
|
|
15
|
-
height: string;
|
|
16
|
-
buttonClick: EventEmitter<any>;
|
|
17
|
-
goToLogin(): void;
|
|
18
|
-
get styles(): {
|
|
19
|
-
'background-color': string;
|
|
20
|
-
'box-shadow': string;
|
|
21
|
-
border: string;
|
|
22
|
-
'border-radius': string;
|
|
23
|
-
color: string;
|
|
24
|
-
width: string;
|
|
25
|
-
'max-width': string;
|
|
26
|
-
margin: string;
|
|
27
|
-
height: string;
|
|
28
|
-
padding: string;
|
|
29
|
-
};
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MailComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MailComponent, "verben-mail-message", never, { "customClass": { "alias": "customClass"; "required": false; }; "headlingClass": { "alias": "headlingClass"; "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; }; }, { "buttonClick": "buttonClick"; }, never, never, false, never>;
|
|
32
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./mail.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "@angular/router";
|
|
6
|
-
import * as i5 from "../button/button.module";
|
|
7
|
-
export declare class MailModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MailModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MailModule, [typeof i1.MailComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.RouterLink, typeof i5.ButtonModule], [typeof i1.MailComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MailModule>;
|
|
11
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class MailValidationComponent {
|
|
4
|
-
customClass: string;
|
|
5
|
-
bgColor: string;
|
|
6
|
-
boxShadow: string;
|
|
7
|
-
border: string;
|
|
8
|
-
borderRadius: string;
|
|
9
|
-
textColor: string;
|
|
10
|
-
height: string;
|
|
11
|
-
pd: string;
|
|
12
|
-
width: string;
|
|
13
|
-
text: string;
|
|
14
|
-
textAlign: string;
|
|
15
|
-
color: string;
|
|
16
|
-
textSize: string;
|
|
17
|
-
btnBorder: string;
|
|
18
|
-
btnBorderRadius: string;
|
|
19
|
-
btnBgColor: string;
|
|
20
|
-
btnWidth: string;
|
|
21
|
-
btnPd: string;
|
|
22
|
-
resendOtp: EventEmitter<void>;
|
|
23
|
-
proceedToNextStep: EventEmitter<"verified" | "accessGranted">;
|
|
24
|
-
login: EventEmitter<void>;
|
|
25
|
-
currentStep: 'linkSent' | 'verified' | 'accessGranted';
|
|
26
|
-
handleResendOtp(): void;
|
|
27
|
-
goToNextStep(): void;
|
|
28
|
-
get styles(): {
|
|
29
|
-
'background-color': string;
|
|
30
|
-
'box-shadow': string;
|
|
31
|
-
border: string;
|
|
32
|
-
'border-radius': string;
|
|
33
|
-
color: string;
|
|
34
|
-
'max-width': string;
|
|
35
|
-
margin: string;
|
|
36
|
-
height: string;
|
|
37
|
-
padding: string;
|
|
38
|
-
};
|
|
39
|
-
handleLogin(): void;
|
|
40
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MailValidationComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MailValidationComponent, "lib-mail-validation", never, { "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; }; "pd": { "alias": "pd"; "required": false; }; "width": { "alias": "width"; "required": false; }; "text": { "alias": "text"; "required": false; }; "textAlign": { "alias": "textAlign"; "required": false; }; "color": { "alias": "color"; "required": false; }; "textSize": { "alias": "textSize"; "required": false; }; "btnBorder": { "alias": "btnBorder"; "required": false; }; "btnBorderRadius": { "alias": "btnBorderRadius"; "required": false; }; "btnBgColor": { "alias": "btnBgColor"; "required": false; }; "btnWidth": { "alias": "btnWidth"; "required": false; }; "btnPd": { "alias": "btnPd"; "required": false; }; }, { "resendOtp": "resendOtp"; "proceedToNextStep": "proceedToNextStep"; "login": "login"; }, never, never, false, never>;
|
|
42
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./mail-validation.component";
|
|
3
|
-
import * as i2 from "@angular/forms";
|
|
4
|
-
import * as i3 from "verben-ng-ui";
|
|
5
|
-
import * as i4 from "@angular/common";
|
|
6
|
-
export declare class MailValidationModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MailValidationModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MailValidationModule, [typeof i1.MailValidationComponent], [typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.VerbenaInputModule, typeof i3.VerbenaButtonModule, typeof i4.CommonModule], [typeof i1.MailValidationComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MailValidationModule>;
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class OAuthComponent {
|
|
4
|
-
googleClick: EventEmitter<void>;
|
|
5
|
-
appleClick: EventEmitter<void>;
|
|
6
|
-
oAuthWithGoogle(): void;
|
|
7
|
-
oAuthWithApple(): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OAuthComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OAuthComponent, "verben-o-auth", never, {}, { "googleClick": "googleClick"; "appleClick": "appleClick"; }, never, never, false, never>;
|
|
10
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./o-auth.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "verben-ng-ui";
|
|
5
|
-
export declare class OAuthModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OAuthModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<OAuthModule, [typeof i1.OAuthComponent], [typeof i2.CommonModule, typeof i3.VerbenaInputModule, typeof i3.VerbenaButtonModule], [typeof i1.OAuthComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<OAuthModule>;
|
|
9
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormArray, FormGroup } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class OtpInputComponent implements OnInit {
|
|
5
|
-
private fb;
|
|
6
|
-
length: number;
|
|
7
|
-
otpClass: string;
|
|
8
|
-
otpChange: EventEmitter<string>;
|
|
9
|
-
otpForm: FormGroup;
|
|
10
|
-
constructor(fb: FormBuilder);
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
get otpArray(): FormArray;
|
|
13
|
-
handleInput(event: any, index: number): void;
|
|
14
|
-
handleKeydown(event: KeyboardEvent, index: number): void;
|
|
15
|
-
private focusNextInput;
|
|
16
|
-
private focusPreviousInput;
|
|
17
|
-
private emitOtp;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OtpInputComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OtpInputComponent, "verben-otp-input", never, { "length": { "alias": "length"; "required": false; }; "otpClass": { "alias": "otpClass"; "required": false; }; }, { "otpChange": "otpChange"; }, never, never, false, never>;
|
|
20
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./otp-input.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "verben-ng-ui";
|
|
6
|
-
import * as i5 from "@angular/router";
|
|
7
|
-
import * as i6 from "../button/button.module";
|
|
8
|
-
import * as i7 from "../o-auth/o-auth.module";
|
|
9
|
-
export declare class OtpInputModule {
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OtpInputModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<OtpInputModule, [typeof i1.OtpInputComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.VerbenaInputModule, typeof i5.RouterLink, typeof i6.ButtonModule, typeof i7.OAuthModule, typeof i3.ReactiveFormsModule], [typeof i1.OtpInputComponent]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<OtpInputModule>;
|
|
13
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { AbstractControl, FormBuilder, FormGroup, ValidationErrors } from '@angular/forms';
|
|
3
|
-
import { ResetPasswordData } from './ResetPasswordData';
|
|
4
|
-
import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
5
|
-
import { ErrorResponse } from '../../models/ErrorResponse';
|
|
6
|
-
import { ResponseKeyValue } from '../../models/ResponseKeyValue';
|
|
7
|
-
import { UtilService } from '../../services/util.service';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class ResetPasswordComponent {
|
|
10
|
-
private fb;
|
|
11
|
-
private server;
|
|
12
|
-
private utilService;
|
|
13
|
-
title: string;
|
|
14
|
-
subTitle: string;
|
|
15
|
-
buttonCaption: string;
|
|
16
|
-
buttonTextColor?: string;
|
|
17
|
-
buttonBackgroundColor?: string;
|
|
18
|
-
showOldPassword: boolean;
|
|
19
|
-
token?: string;
|
|
20
|
-
onSubmit: EventEmitter<ResetPasswordData>;
|
|
21
|
-
onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
22
|
-
resetPasswordForm: FormGroup;
|
|
23
|
-
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService);
|
|
24
|
-
checkForm(): boolean;
|
|
25
|
-
oldPasswordValidator(control: AbstractControl): ValidationErrors | null;
|
|
26
|
-
confirmPasswordValidator(control: AbstractControl): ValidationErrors | null;
|
|
27
|
-
submit(): Promise<void>;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ResetPasswordComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ResetPasswordComponent, "verben-reset-password", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; "buttonCaption": { "alias": "buttonCaption"; "required": false; }; "buttonTextColor": { "alias": "buttonTextColor"; "required": false; }; "buttonBackgroundColor": { "alias": "buttonBackgroundColor"; "required": false; }; "showOldPassword": { "alias": "showOldPassword"; "required": false; }; "token": { "alias": "token"; "required": false; }; }, { "onSubmit": "onSubmit"; "onSubmitEnd": "onSubmitEnd"; }, never, never, false, never>;
|
|
30
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./reset-password.component";
|
|
3
|
-
import * as i2 from "@angular/forms";
|
|
4
|
-
import * as i3 from "verben-ng-ui";
|
|
5
|
-
import * as i4 from "@angular/common";
|
|
6
|
-
export declare class ResetPasswordModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ResetPasswordModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ResetPasswordModule, [typeof i1.ResetPasswordComponent], [typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.VerbenaInputModule, typeof i3.VerbenaButtonModule, typeof i4.CommonModule], [typeof i1.ResetPasswordComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ResetPasswordModule>;
|
|
10
|
-
}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
-
import { LoginData } from '../../models/log-in';
|
|
4
|
-
import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
5
|
-
import { UtilService } from '../../services/util.service';
|
|
6
|
-
import { ErrorResponse } from '../../models/ErrorResponse';
|
|
7
|
-
import { ResponseKeyValue } from '../../models/ResponseKeyValue';
|
|
8
|
-
import { EnvironmentService } from '../../services/environment.service';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class SignInComponent implements OnInit {
|
|
11
|
-
private fb;
|
|
12
|
-
private server;
|
|
13
|
-
private utilService;
|
|
14
|
-
private envSvc;
|
|
15
|
-
headlingText: string;
|
|
16
|
-
width: string;
|
|
17
|
-
maxWidth: string;
|
|
18
|
-
margin: string;
|
|
19
|
-
pd: string;
|
|
20
|
-
customClass: string;
|
|
21
|
-
headlingClass: string;
|
|
22
|
-
bgColor: string;
|
|
23
|
-
boxShadow: string;
|
|
24
|
-
border: string;
|
|
25
|
-
borderRadius: string;
|
|
26
|
-
textColor: string;
|
|
27
|
-
height: string;
|
|
28
|
-
forgetPasswordClass: string;
|
|
29
|
-
requestAccessClass: string;
|
|
30
|
-
createAccountClass: string;
|
|
31
|
-
createAccountLinkClass: string;
|
|
32
|
-
forgetPasswordLink: string;
|
|
33
|
-
createAccountLink: string;
|
|
34
|
-
requestAccessLink: string;
|
|
35
|
-
btnClass: string;
|
|
36
|
-
btnBgColor: string;
|
|
37
|
-
btnColor: string;
|
|
38
|
-
btnBorder: string;
|
|
39
|
-
btnBorderRadius: string;
|
|
40
|
-
btnPd: string;
|
|
41
|
-
btnText: string;
|
|
42
|
-
inputLabelColor: string;
|
|
43
|
-
inputBgColor: string;
|
|
44
|
-
inputBorder: string;
|
|
45
|
-
inputBorderRadius: string;
|
|
46
|
-
termsErrorText: string;
|
|
47
|
-
formSubmit: EventEmitter<LoginData>;
|
|
48
|
-
onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
49
|
-
googleClick: EventEmitter<any>;
|
|
50
|
-
appleClick: EventEmitter<any>;
|
|
51
|
-
tenantDetails: any | null;
|
|
52
|
-
AuthMechanisms: {}[] | null;
|
|
53
|
-
loginForm: FormGroup;
|
|
54
|
-
apiKey: string;
|
|
55
|
-
secret: string;
|
|
56
|
-
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService, envSvc: EnvironmentService);
|
|
57
|
-
ngOnInit(): void;
|
|
58
|
-
getTenantConfig(): Promise<void>;
|
|
59
|
-
checkForm(): boolean;
|
|
60
|
-
submit(): Promise<void>;
|
|
61
|
-
handleGoogleAuth(): void;
|
|
62
|
-
handleAppleAuth(): void;
|
|
63
|
-
get styles(): {
|
|
64
|
-
'background-color': string;
|
|
65
|
-
'box-shadow': string;
|
|
66
|
-
border: string;
|
|
67
|
-
'border-radius': string;
|
|
68
|
-
color: string;
|
|
69
|
-
width: string;
|
|
70
|
-
'max-width': string;
|
|
71
|
-
margin: string;
|
|
72
|
-
height: string;
|
|
73
|
-
padding: string;
|
|
74
|
-
};
|
|
75
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SignInComponent, never>;
|
|
76
|
-
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>;
|
|
77
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./sign-in.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "verben-ng-ui";
|
|
6
|
-
import * as i5 from "@angular/router";
|
|
7
|
-
import * as i6 from "../o-auth/o-auth.module";
|
|
8
|
-
import * as i7 from "../button/button.module";
|
|
9
|
-
export declare class SignInModule {
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SignInModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SignInModule, [typeof i1.SignInComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.VerbenaInputModule, typeof i4.VerbenaButtonModule, typeof i5.RouterLink, typeof i6.OAuthModule, typeof i7.ButtonModule, typeof i3.ReactiveFormsModule], [typeof i1.SignInComponent]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SignInModule>;
|
|
13
|
-
}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
-
import { SignUpData } from '../../models/sign-up';
|
|
4
|
-
import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
5
|
-
import { ErrorResponse } from '../../models/ErrorResponse';
|
|
6
|
-
import { ResponseKeyValue } from '../../models/ResponseKeyValue';
|
|
7
|
-
import { UtilService } from '../../services/util.service';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class SignUpComponent {
|
|
10
|
-
private fb;
|
|
11
|
-
private server;
|
|
12
|
-
private utilService;
|
|
13
|
-
headlingText: string;
|
|
14
|
-
width: string;
|
|
15
|
-
maxWidth: string;
|
|
16
|
-
margin: string;
|
|
17
|
-
pd: string;
|
|
18
|
-
customClass: string;
|
|
19
|
-
headlingClass: string;
|
|
20
|
-
bgColor: string;
|
|
21
|
-
boxShadow: string;
|
|
22
|
-
border: string;
|
|
23
|
-
borderRadius: string;
|
|
24
|
-
height: string;
|
|
25
|
-
textColor: string;
|
|
26
|
-
disabled: boolean;
|
|
27
|
-
btnClass: string;
|
|
28
|
-
btnBgColor: string;
|
|
29
|
-
btnColor: string;
|
|
30
|
-
btnBorder: string;
|
|
31
|
-
btnBorderRadius: string;
|
|
32
|
-
btnPd: string;
|
|
33
|
-
btnText: string;
|
|
34
|
-
inputLabelColor: string;
|
|
35
|
-
inputBgColor: string;
|
|
36
|
-
inputBorder: string;
|
|
37
|
-
inputBorderRadius: string;
|
|
38
|
-
termsLink: string;
|
|
39
|
-
privacyLink: string;
|
|
40
|
-
routerLink: string;
|
|
41
|
-
formSubmit: EventEmitter<SignUpData>;
|
|
42
|
-
onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
43
|
-
googleClick: EventEmitter<any>;
|
|
44
|
-
appleClick: EventEmitter<any>;
|
|
45
|
-
signUpForm: FormGroup;
|
|
46
|
-
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService);
|
|
47
|
-
private passwordMatchValidator;
|
|
48
|
-
checkForm(): boolean;
|
|
49
|
-
submit(): Promise<void>;
|
|
50
|
-
handleGoogleAuth(): void;
|
|
51
|
-
handleAppleAuth(): void;
|
|
52
|
-
get styles(): {
|
|
53
|
-
'background-color': string;
|
|
54
|
-
'box-shadow': string;
|
|
55
|
-
border: string;
|
|
56
|
-
'border-radius': string;
|
|
57
|
-
color: string;
|
|
58
|
-
width: string;
|
|
59
|
-
'max-width': string;
|
|
60
|
-
margin: string;
|
|
61
|
-
height: string;
|
|
62
|
-
padding: string;
|
|
63
|
-
};
|
|
64
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SignUpComponent, never>;
|
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignUpComponent, "verben-sign-up", 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; }; "height": { "alias": "height"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "disabled": { "alias": "disabled"; "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; }; "termsLink": { "alias": "termsLink"; "required": false; }; "privacyLink": { "alias": "privacyLink"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; }, { "formSubmit": "formSubmit"; "onSubmitEnd": "onSubmitEnd"; "googleClick": "googleClick"; "appleClick": "appleClick"; }, never, never, false, never>;
|
|
66
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./sign-up.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "verben-ng-ui";
|
|
6
|
-
import * as i5 from "@angular/router";
|
|
7
|
-
import * as i6 from "../button/button.module";
|
|
8
|
-
import * as i7 from "../o-auth/o-auth.module";
|
|
9
|
-
export declare class SignUpModule {
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SignUpModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SignUpModule, [typeof i1.SignUpComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.VerbenaInputModule, typeof i5.RouterLink, typeof i6.ButtonModule, typeof i7.OAuthModule, typeof i3.ReactiveFormsModule], [typeof i1.SignUpComponent]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SignUpModule>;
|
|
13
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const baseStyle: any;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
-
import { CardData } from 'verben-ng-ui';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SsoFormComponent {
|
|
6
|
-
private fb;
|
|
7
|
-
isUploading: boolean;
|
|
8
|
-
uploadedFileName: string | null;
|
|
9
|
-
fileUploadError: string | null;
|
|
10
|
-
currentData: CardData | null;
|
|
11
|
-
switchView: EventEmitter<undefined>;
|
|
12
|
-
form: FormGroup;
|
|
13
|
-
constructor(fb: FormBuilder);
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
onSave(): void;
|
|
16
|
-
onDelete(): void;
|
|
17
|
-
onFileSelected(event: Event): void;
|
|
18
|
-
removeFile(): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SsoFormComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SsoFormComponent, "lib-sso-form", never, { "currentData": { "alias": "currentData"; "required": false; }; }, { "switchView": "switchView"; }, never, never, false, never>;
|
|
21
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { CardData, CardDataViewComponent, ColumnDefinition, DataViewComponent, IDataFilter } from 'verben-ng-ui';
|
|
2
|
-
import { SingleSignOn } from '../../models/single-sign-on';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SsoComponent {
|
|
5
|
-
cardDataView: CardDataViewComponent;
|
|
6
|
-
dataView: DataViewComponent;
|
|
7
|
-
columns: ColumnDefinition<SingleSignOn>[];
|
|
8
|
-
data: SingleSignOn[];
|
|
9
|
-
filteredColumns: ColumnDefinition<SingleSignOn>[];
|
|
10
|
-
styles: any;
|
|
11
|
-
currentData: CardData | null;
|
|
12
|
-
isGridView: boolean;
|
|
13
|
-
selected: CardData | null;
|
|
14
|
-
cardData: CardData[];
|
|
15
|
-
openDetailView(name: string): void;
|
|
16
|
-
getCardDataByMailAddress(name: string): CardData | undefined;
|
|
17
|
-
onViewChange(isGridView: boolean): void;
|
|
18
|
-
openFormView(index: number): void;
|
|
19
|
-
handleExport(exportedData: Partial<any>[]): void;
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @param data Simple csv export for testing
|
|
23
|
-
*/
|
|
24
|
-
private downloadCSV;
|
|
25
|
-
onSelectionChange(selectedRows: SingleSignOn[]): void;
|
|
26
|
-
/**
|
|
27
|
-
* Copied over from card view doc until I understand usage
|
|
28
|
-
*/
|
|
29
|
-
selectedColumnCount: number;
|
|
30
|
-
selectedFilterTableCount: number;
|
|
31
|
-
isOPen: boolean;
|
|
32
|
-
selectedSortCount: number;
|
|
33
|
-
showColumn: boolean;
|
|
34
|
-
showSort: boolean;
|
|
35
|
-
showExport: boolean;
|
|
36
|
-
selectedAll: boolean;
|
|
37
|
-
showFilter: boolean;
|
|
38
|
-
visibleColumns: IDataFilter[];
|
|
39
|
-
filterArray: IDataFilter[];
|
|
40
|
-
sortOptions: IDataFilter[];
|
|
41
|
-
clearData(): void;
|
|
42
|
-
loadMore(): void;
|
|
43
|
-
onColumnChange(event: boolean): void;
|
|
44
|
-
onSortChange(event: boolean): void;
|
|
45
|
-
onColumnsUpdated(updatedColumns: IDataFilter[]): void;
|
|
46
|
-
onFilterApplied(appliedFilter: IDataFilter[]): void;
|
|
47
|
-
onSortUpdated(updatedSorts: IDataFilter[]): void;
|
|
48
|
-
onStateChange(event: {
|
|
49
|
-
key: string;
|
|
50
|
-
value: boolean;
|
|
51
|
-
}): void;
|
|
52
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SsoComponent, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SsoComponent, "lib-sso", never, {}, {}, never, never, false, never>;
|
|
54
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./sso.component";
|
|
3
|
-
import * as i2 from "./sso-form/sso-form.component";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "@angular/forms";
|
|
6
|
-
import * as i5 from "verben-ng-ui";
|
|
7
|
-
export declare class SsoModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SsoModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SsoModule, [typeof i1.SsoComponent, typeof i2.SsoFormComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.DataViewModule, typeof i5.TableFilterModule, typeof i5.SortTableModule, typeof i5.DataExportModule, typeof i5.VisibleColumnModule, typeof i5.VerbenaButtonModule, typeof i5.CardDataViewModule, typeof i5.VerbenaInputModule, typeof i5.SvgModule, typeof i5.VerbenaTextareaModule, typeof i5.DataTableModule], [typeof i1.SsoComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SsoModule>;
|
|
11
|
-
}
|