verben-authentication-ui 1.0.2 → 1.0.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 +10 -15
- package/src/lib/base/base-data.component.ts +86 -0
- package/src/lib/base/base-data.facade.ts +157 -0
- package/src/lib/base/base-data.service.ts +49 -0
- package/src/lib/base/base-data.state.ts +94 -0
- package/src/lib/base/models.ts +14 -0
- package/src/lib/components/auth-callback/auth-callback.component.css +30 -0
- package/src/lib/components/auth-callback/auth-callback.component.html +6 -0
- package/src/lib/components/auth-callback/auth-callback.component.spec.ts +23 -0
- package/src/lib/components/auth-callback/auth-callback.component.ts +56 -0
- package/src/lib/components/auth-callback/auth-callback.module.ts +10 -0
- 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 +46 -0
- package/src/lib/components/forgot-password/forgot-password.component.html +19 -0
- package/src/lib/components/forgot-password/forgot-password.component.spec.ts +23 -0
- package/src/lib/components/forgot-password/forgot-password.component.ts +88 -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 +26 -0
- package/src/lib/components/o-auth/o-auth.component.html +26 -0
- package/src/lib/components/o-auth/o-auth.component.spec.ts +23 -0
- package/src/lib/components/o-auth/o-auth.component.ts +115 -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 +15 -0
- package/src/lib/components/otp-input/otp-input.component.spec.ts +23 -0
- package/src/lib/components/otp-input/otp-input.component.ts +88 -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 +24 -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/role-control/ChildrenType.ts +4 -0
- package/{lib/components/role-control/MappedRole.d.ts → src/lib/components/role-control/MappedRole.ts} +3 -2
- package/{lib/components/role-control/MappedRoleAction.d.ts → src/lib/components/role-control/MappedRoleAction.ts} +2 -1
- package/{lib/components/role-control/MappedRoleContext.d.ts → src/lib/components/role-control/MappedRoleContext.ts} +4 -3
- package/src/lib/components/role-control/UIActions.ts +5 -0
- package/src/lib/components/role-control/UIs.ts +38 -0
- package/src/lib/components/role-control/base-table-style.ts +52 -0
- package/src/lib/components/role-control/role-control.component.css +55 -0
- package/src/lib/components/role-control/role-control.component.html +571 -0
- package/src/lib/components/role-control/role-control.component.spec.ts +23 -0
- package/src/lib/components/role-control/role-control.component.ts +1817 -0
- package/src/lib/components/role-control/role-control.module.ts +10 -0
- package/src/lib/components/role-control/role-control.service.spec.ts +16 -0
- package/src/lib/components/role-control/role-control.service.ts +53 -0
- package/src/lib/components/sign-in/sign-in.component.css +21 -0
- package/src/lib/components/sign-in/sign-in.component.html +83 -0
- package/src/lib/components/sign-in/sign-in.component.spec.ts +23 -0
- package/src/lib/components/sign-in/sign-in.component.ts +267 -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 +180 -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 +17 -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 +155 -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/facades/user-management.facades.ts +133 -0
- package/src/lib/components/user-management/helper.ts +38 -0
- package/src/lib/components/user-management/index.ts +4 -0
- package/src/lib/components/user-management/services/user-management.service.spec.ts +16 -0
- package/src/lib/components/user-management/services/user-management.service.ts +111 -0
- package/src/lib/components/user-management/states/user-management.state.ts +65 -0
- package/src/lib/components/user-management/user-management-form/use-management-form.component.ts +73 -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 +80 -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 +51 -0
- package/src/lib/components/user-management/user-management.component.css +31 -0
- package/src/lib/components/user-management/user-management.component.html +319 -0
- package/src/lib/components/user-management/user-management.component.spec.ts +23 -0
- package/src/lib/components/user-management/user-management.component.ts +604 -0
- package/src/lib/components/user-management/user-management.module.ts +56 -0
- package/src/lib/components/user-management/user-status-badge/user-status-badge.component.css +0 -0
- package/src/lib/components/user-management/user-status-badge/user-status-badge.component.html +8 -0
- package/src/lib/components/user-management/user-status-badge/user-status-badge.component.spec.ts +22 -0
- package/src/lib/components/user-management/user-status-badge/user-status-badge.component.ts +22 -0
- package/src/lib/components/user-request/user-request.component.css +91 -0
- package/src/lib/components/user-request/user-request.component.html +137 -0
- package/src/lib/components/user-request/user-request.component.spec.ts +23 -0
- package/src/lib/components/user-request/user-request.component.ts +306 -0
- package/src/lib/components/user-request/user-request.module.ts +20 -0
- package/src/lib/components/user-request-approval/access-request.columns.ts +31 -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 +324 -0
- package/src/lib/components/user-request-approval/helper.ts +61 -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 +122 -0
- package/src/lib/components/user-request-approval/states/user-access-request.state.ts +109 -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 +8 -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 +6 -0
- package/src/lib/components/user-request-approval/user-request-approval.component.html +269 -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 +326 -0
- package/src/lib/components/user-request-approval/user-request-approval.module.ts +54 -0
- package/src/lib/components/user-request-approval/user-request-form/use-request-form.component.ts +98 -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 +94 -0
- package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.spec.ts +23 -0
- package/src/lib/components/user-request-process/user-request-process.component.css +0 -0
- package/src/lib/components/user-request-process/user-request-process.component.html +1 -0
- package/src/lib/components/user-request-process/user-request-process.component.spec.ts +23 -0
- package/src/lib/components/user-request-process/user-request-process.component.ts +12 -0
- package/src/lib/components/user-request-process/user-request-process.module.ts +12 -0
- package/src/lib/models/ApplicationRoleAction.ts +10 -0
- package/{lib/models/ApplicationRoleContext.d.ts → src/lib/models/ApplicationRoleContext copy.ts } +6 -5
- package/src/lib/models/ApplicationRoleContext.ts +10 -0
- package/src/lib/models/ErrorResponse.ts +7 -0
- package/src/lib/models/FilterTypes.ts +8 -0
- package/src/lib/models/MailConfig.ts +13 -0
- package/src/lib/models/MessageConfig.ts +5 -0
- package/src/lib/models/MessageMedium.ts +4 -0
- package/src/lib/models/OAuthParam.ts +10 -0
- package/src/lib/models/OAuthType.ts +7 -0
- package/src/lib/models/PagedResult.ts +9 -0
- package/src/lib/models/PasswordRequestParam.ts +5 -0
- package/src/lib/models/PeriodMode.ts +10 -0
- package/{lib/models/PermissionConfig.d.ts → src/lib/models/PermissionConfig.ts} +4 -3
- package/src/lib/models/ReportSchedule.ts +23 -0
- package/src/lib/models/ReportType.ts +5 -0
- package/src/lib/models/ResponseKeyValue.ts +5 -0
- package/{lib/models/Role.d.ts → src/lib/models/Role.ts} +6 -5
- package/src/lib/models/RoleAction.ts +11 -0
- package/src/lib/models/RoleContext.ts +11 -0
- package/src/lib/models/SMSConfig.ts +11 -0
- package/{lib/models/SearchDynamicWrapper.d.ts → src/lib/models/SearchDynamicWrapper.ts} +3 -2
- package/src/lib/models/SearchOperator.ts +4 -0
- package/src/lib/models/SearchPropertySign.ts +9 -0
- package/{lib/models/SearchPropertyValue.d.ts → src/lib/models/SearchPropertyValue.ts} +7 -6
- package/src/lib/models/SearchPropertyValueType.ts +9 -0
- package/src/lib/models/SortDirection.ts +5 -0
- package/{lib/models/Tag.d.ts → src/lib/models/Tag.ts} +4 -3
- package/src/lib/models/TaskNotification.ts +14 -0
- package/src/lib/models/TaskNotificationMessageType.ts +4 -0
- package/src/lib/models/TaskNotificationType.ts +4 -0
- package/src/lib/models/Tenant.ts +22 -0
- package/src/lib/models/TenantConfig.ts +19 -0
- package/src/lib/models/UserRequest.ts +38 -0
- package/src/lib/models/auth-mechanism.ts +15 -0
- package/src/lib/models/base.ts +13 -0
- package/src/lib/models/conditions.ts +11 -0
- package/src/lib/models/log-in.ts +8 -0
- package/{lib/models/mainUser.d.ts → src/lib/models/mainUser.ts} +3 -2
- package/src/lib/models/oauth-resp.ts +6 -0
- package/{lib/models/oauth-response.d.ts → src/lib/models/oauth-response.ts} +1 -1
- package/src/lib/models/object-state.ts +6 -0
- package/{lib/models/otpValue.d.ts → src/lib/models/otpValue.ts} +4 -2
- package/src/lib/models/paged.ts +9 -0
- package/src/lib/models/query-params.ts +9 -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} +5 -4
- package/src/lib/models/user-object-state.ts +6 -0
- package/src/lib/models/user.ts +19 -0
- package/src/lib/pipes/async-label.pipe.spec.ts +8 -0
- package/src/lib/pipes/async-label.pipe.ts +20 -0
- package/src/lib/services/authorization.service.spec.ts +16 -0
- package/src/lib/services/authorization.service.ts +24 -0
- package/src/lib/services/encryption.service.ts +57 -0
- package/src/lib/services/environment.service.spec.ts +16 -0
- package/src/lib/services/environment.service.ts +30 -0
- package/src/lib/services/http-web-request.service.spec.ts +16 -0
- package/src/lib/services/http-web-request.service.ts +114 -0
- package/src/lib/services/label.service.spec.ts +16 -0
- package/src/lib/services/label.service.ts +177 -0
- package/src/lib/services/util.service.spec.ts +16 -0
- package/src/lib/services/util.service.ts +49 -0
- package/src/lib/shared/shared.module.ts +55 -0
- package/{public-api.d.ts → src/public-api.ts} +24 -0
- package/src/styles.css +96 -0
- package/src/theme/tailwind-setup.css +3 -0
- package/src/theme/tailwind.css +1030 -0
- package/src/utils/components/base-data-view.component.ts +131 -0
- package/src/utils/models/DataViewConfig.ts +19 -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/auth-callback/auth-callback.component.mjs +0 -57
- package/esm2022/lib/components/auth-callback/auth-callback.module.mjs +0 -18
- 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 -89
- 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 -107
- package/esm2022/lib/components/o-auth/o-auth.module.mjs +0 -19
- package/esm2022/lib/components/otp-input/otp-input.component.mjs +0 -86
- 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 -108
- package/esm2022/lib/components/reset-password/reset-password.module.mjs +0 -34
- package/esm2022/lib/components/role-control/ChildrenType.mjs +0 -6
- package/esm2022/lib/components/role-control/MappedRole.mjs +0 -2
- package/esm2022/lib/components/role-control/MappedRoleAction.mjs +0 -2
- package/esm2022/lib/components/role-control/MappedRoleContext.mjs +0 -2
- package/esm2022/lib/components/role-control/UIActions.mjs +0 -7
- package/esm2022/lib/components/role-control/UIs.mjs +0 -40
- package/esm2022/lib/components/role-control/base-table-style.mjs +0 -53
- package/esm2022/lib/components/role-control/role-control.component.mjs +0 -1364
- package/esm2022/lib/components/role-control/role-control.module.mjs +0 -18
- package/esm2022/lib/components/role-control/role-control.service.mjs +0 -54
- package/esm2022/lib/components/sign-in/sign-in.component.mjs +0 -318
- package/esm2022/lib/components/sign-in/sign-in.module.mjs +0 -24
- package/esm2022/lib/components/sign-up/sign-up.component.mjs +0 -229
- 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 -16
- 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 -209
- 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/services/user-management.service.mjs +0 -88
- package/esm2022/lib/components/user-management/user-management-form/use-management-form.component.mjs +0 -71
- package/esm2022/lib/components/user-management/user-management.columns.mjs +0 -47
- package/esm2022/lib/components/user-management/user-management.component.mjs +0 -475
- package/esm2022/lib/components/user-management/user-management.module.mjs +0 -79
- package/esm2022/lib/components/user-management/user-status-badge/user-status-badge.component.mjs +0 -26
- package/esm2022/lib/components/user-request/user-request.component.mjs +0 -320
- package/esm2022/lib/components/user-request/user-request.module.mjs +0 -38
- package/esm2022/lib/components/user-request-approval/access-request.columns.mjs +0 -29
- 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 -260
- package/esm2022/lib/components/user-request-approval/helper.mjs +0 -56
- package/esm2022/lib/components/user-request-approval/services/user-access-request.service.mjs +0 -93
- package/esm2022/lib/components/user-request-approval/states/user-access-request.state.mjs +0 -92
- 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 -270
- package/esm2022/lib/components/user-request-approval/user-request-approval.module.mjs +0 -80
- package/esm2022/lib/components/user-request-approval/user-request-form/use-request-form.component.mjs +0 -86
- package/esm2022/lib/models/ApplicationRoleAction.mjs +0 -2
- package/esm2022/lib/models/ApplicationRoleContext.mjs +0 -2
- package/esm2022/lib/models/ErrorResponse.mjs +0 -11
- package/esm2022/lib/models/OAuthParam.mjs +0 -2
- package/esm2022/lib/models/OAuthType.mjs +0 -9
- package/esm2022/lib/models/PagedResult.mjs +0 -2
- package/esm2022/lib/models/PasswordRequestParam.mjs +0 -2
- package/esm2022/lib/models/PermissionConfig.mjs +0 -2
- package/esm2022/lib/models/ResponseKeyValue.mjs +0 -2
- package/esm2022/lib/models/Role.mjs +0 -2
- package/esm2022/lib/models/RoleAction.mjs +0 -2
- package/esm2022/lib/models/RoleContext.mjs +0 -2
- package/esm2022/lib/models/SearchDynamicWrapper.mjs +0 -2
- package/esm2022/lib/models/SearchOperator.mjs +0 -6
- package/esm2022/lib/models/SearchPropertySign.mjs +0 -11
- package/esm2022/lib/models/SearchPropertyValue.mjs +0 -2
- package/esm2022/lib/models/SearchPropertyValueType.mjs +0 -11
- package/esm2022/lib/models/SortDirection.mjs +0 -7
- package/esm2022/lib/models/Tag.mjs +0 -2
- package/esm2022/lib/models/TenantConfig.mjs +0 -2
- package/esm2022/lib/models/UserRequest.mjs +0 -2
- package/esm2022/lib/models/auth-mechanism.mjs +0 -8
- package/esm2022/lib/models/base.mjs +0 -2
- package/esm2022/lib/models/conditions.mjs +0 -13
- package/esm2022/lib/models/log-in.mjs +0 -2
- package/esm2022/lib/models/mainUser.mjs +0 -2
- package/esm2022/lib/models/oauth-resp.mjs +0 -2
- package/esm2022/lib/models/oauth-response.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/resend-otp-data.mjs +0 -2
- 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/pipes/async-label.pipe.mjs +0 -25
- package/esm2022/lib/services/authorization.service.mjs +0 -26
- package/esm2022/lib/services/encryption.service.mjs +0 -52
- package/esm2022/lib/services/environment.service.mjs +0 -26
- package/esm2022/lib/services/http-web-request.service.mjs +0 -85
- package/esm2022/lib/services/label.service.mjs +0 -134
- package/esm2022/lib/services/util.service.mjs +0 -55
- package/esm2022/lib/shared/shared.module.mjs +0 -84
- package/esm2022/public-api.mjs +0 -48
- package/esm2022/verben-authentication-ui.mjs +0 -5
- package/fesm2022/verben-authentication-ui.mjs +0 -6299
- package/fesm2022/verben-authentication-ui.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/components/auth-callback/auth-callback.component.d.ts +0 -17
- package/lib/components/auth-callback/auth-callback.module.d.ts +0 -8
- 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 -29
- 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 -30
- package/lib/components/o-auth/o-auth.module.d.ts +0 -9
- package/lib/components/otp-input/otp-input.component.d.ts +0 -21
- 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/role-control/ChildrenType.d.ts +0 -4
- package/lib/components/role-control/UIActions.d.ts +0 -5
- package/lib/components/role-control/UIs.d.ts +0 -38
- package/lib/components/role-control/base-table-style.d.ts +0 -1
- package/lib/components/role-control/role-control.component.d.ts +0 -121
- package/lib/components/role-control/role-control.module.d.ts +0 -8
- package/lib/components/role-control/role-control.service.d.ts +0 -9
- package/lib/components/sign-in/sign-in.component.d.ts +0 -95
- package/lib/components/sign-in/sign-in.module.d.ts +0 -13
- package/lib/components/sign-up/sign-up.component.d.ts +0 -68
- 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 -67
- 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/services/user-management.service.d.ts +0 -44
- package/lib/components/user-management/user-management-form/use-management-form.component.d.ts +0 -22
- package/lib/components/user-management/user-management.columns.d.ts +0 -3
- package/lib/components/user-management/user-management.component.d.ts +0 -123
- package/lib/components/user-management/user-management.module.d.ts +0 -14
- package/lib/components/user-management/user-status-badge/user-status-badge.component.d.ts +0 -12
- package/lib/components/user-request/user-request.component.d.ts +0 -80
- package/lib/components/user-request/user-request.module.d.ts +0 -11
- 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 -39
- package/lib/components/user-request-approval/helper.d.ts +0 -7
- package/lib/components/user-request-approval/services/user-access-request.service.d.ts +0 -65
- package/lib/components/user-request-approval/states/user-access-request.state.d.ts +0 -35
- 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 -69
- package/lib/components/user-request-approval/user-request-approval.module.d.ts +0 -12
- package/lib/components/user-request-approval/user-request-form/use-request-form.component.d.ts +0 -25
- package/lib/models/ApplicationRoleAction.d.ts +0 -9
- package/lib/models/ErrorResponse.d.ts +0 -6
- package/lib/models/OAuthParam.d.ts +0 -9
- package/lib/models/OAuthType.d.ts +0 -7
- package/lib/models/PagedResult.d.ts +0 -9
- package/lib/models/PasswordRequestParam.d.ts +0 -5
- package/lib/models/ResponseKeyValue.d.ts +0 -5
- package/lib/models/RoleAction.d.ts +0 -10
- package/lib/models/RoleContext.d.ts +0 -10
- package/lib/models/SearchOperator.d.ts +0 -4
- package/lib/models/SearchPropertySign.d.ts +0 -9
- package/lib/models/SearchPropertyValueType.d.ts +0 -9
- package/lib/models/SortDirection.d.ts +0 -5
- package/lib/models/TenantConfig.d.ts +0 -18
- package/lib/models/UserRequest.d.ts +0 -32
- package/lib/models/auth-mechanism.d.ts +0 -14
- package/lib/models/base.d.ts +0 -12
- package/lib/models/conditions.d.ts +0 -11
- package/lib/models/log-in.d.ts +0 -8
- package/lib/models/oauth-resp.d.ts +0 -6
- 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 -8
- package/lib/models/request-status.d.ts +0 -3
- package/lib/models/resend-otp-data.d.ts +0 -8
- 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 -18
- package/lib/pipes/async-label.pipe.d.ts +0 -11
- package/lib/services/authorization.service.d.ts +0 -14
- package/lib/services/encryption.service.d.ts +0 -13
- package/lib/services/environment.service.d.ts +0 -22
- package/lib/services/http-web-request.service.d.ts +0 -23
- package/lib/services/label.service.d.ts +0 -15
- package/lib/services/util.service.d.ts +0 -11
- package/lib/shared/shared.module.d.ts +0 -10
package/index.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AuthCallbackComponent implements OnInit {
|
|
5
|
-
private router;
|
|
6
|
-
private route;
|
|
7
|
-
code: string;
|
|
8
|
-
previousUrl: string;
|
|
9
|
-
type: string;
|
|
10
|
-
redirectText?: string;
|
|
11
|
-
constructor(router: Router, route: ActivatedRoute);
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
getType(): void;
|
|
14
|
-
handleRedirect(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthCallbackComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuthCallbackComponent, "verben-auth-callback", never, { "redirectText": { "alias": "redirectText"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./auth-callback.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class AuthCallbackModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthCallbackModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AuthCallbackModule, [typeof i1.AuthCallbackComponent], [typeof i2.CommonModule], [typeof i1.AuthCallbackComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AuthCallbackModule>;
|
|
8
|
-
}
|
|
@@ -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,29 +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
|
-
isSubmitted: boolean;
|
|
22
|
-
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService);
|
|
23
|
-
isValidEmail(mail: string): boolean;
|
|
24
|
-
emailValidator(control: AbstractControl): ValidationErrors | null;
|
|
25
|
-
checkForm(): boolean;
|
|
26
|
-
submit(): Promise<void>;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
|
|
28
|
-
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>;
|
|
29
|
-
}
|
|
@@ -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,30 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { AuthMechanism } from '../../models/auth-mechanism';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
declare global {
|
|
6
|
-
interface Window {
|
|
7
|
-
google: any;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
export declare class OAuthComponent implements OnInit {
|
|
11
|
-
private router;
|
|
12
|
-
showGoogle: boolean;
|
|
13
|
-
showMicrosoft: boolean;
|
|
14
|
-
showApple: boolean;
|
|
15
|
-
authMechanisms: AuthMechanism[] | null;
|
|
16
|
-
emitMechanismFn: EventEmitter<string>;
|
|
17
|
-
page: string;
|
|
18
|
-
type: string;
|
|
19
|
-
constructor(router: Router);
|
|
20
|
-
ngOnInit(): void;
|
|
21
|
-
loadPage(): void;
|
|
22
|
-
loadGoogleScript(): void;
|
|
23
|
-
oAuthWithGoogle(data: AuthMechanism): void;
|
|
24
|
-
oAuthWithApple(): void;
|
|
25
|
-
oAuthWithMicrosoft(data: AuthMechanism): void;
|
|
26
|
-
checkForValue(value: string): "" | "google-logo" | "apple-logo" | "microsoft-logo";
|
|
27
|
-
handleOauthClick(value: AuthMechanism): void | "";
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OAuthComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OAuthComponent, "verben-o-auth", never, { "authMechanisms": { "alias": "authMechanisms"; "required": false; }; }, { "emitMechanismFn": "emitMechanismFn"; }, never, never, false, never>;
|
|
30
|
-
}
|
|
@@ -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,21 +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
|
-
handlePaste(event: ClipboardEvent): void;
|
|
16
|
-
private focusNextInput;
|
|
17
|
-
private focusPreviousInput;
|
|
18
|
-
private emitOtp;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OtpInputComponent, never>;
|
|
20
|
-
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>;
|
|
21
|
-
}
|
|
@@ -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,38 +0,0 @@
|
|
|
1
|
-
export declare enum UIs {
|
|
2
|
-
ProductDistribution = "ProductDistribution",
|
|
3
|
-
Terminals = "Terminals",
|
|
4
|
-
Meters = "Meters",
|
|
5
|
-
ProductInbound = "ProductInbound",
|
|
6
|
-
TerminalDocumentation = "TerminalDocumentation",
|
|
7
|
-
Laboratories = "Laboratories",
|
|
8
|
-
Surveyors = "Surveyors",
|
|
9
|
-
Products = "Products",
|
|
10
|
-
Stocks = "Stocks",
|
|
11
|
-
Tanks = "Tanks",
|
|
12
|
-
Customers = "Customers",
|
|
13
|
-
ProductAllocation = "ProductAllocation",
|
|
14
|
-
ReleaseManagement = "ReleaseManagement",
|
|
15
|
-
ProductPricing = "ProductPricing",
|
|
16
|
-
Purchases = "Purchases",
|
|
17
|
-
Agents = "Agents",
|
|
18
|
-
Banks = "Banks",
|
|
19
|
-
Vendors = "Vendors",
|
|
20
|
-
Vessels = "Vessels",
|
|
21
|
-
ExpenseList = "ExpenseList",
|
|
22
|
-
ProcurementDocumentation = "ProcurementDocumentation",
|
|
23
|
-
Journal = "Journal",
|
|
24
|
-
JournalTemplate = "JournalTemplate",
|
|
25
|
-
RecurringJournal = "RecurringJournal",
|
|
26
|
-
InterCompanyJournal = "InterCompanyJournal",
|
|
27
|
-
InterCompanyJournalTemplate = "InterCompanyJournalTemplate",
|
|
28
|
-
UserManagement = "UserManagement",
|
|
29
|
-
AccessRequest = "AccessRequest",
|
|
30
|
-
RolesAndPermissions = "RolesAndPermissions",
|
|
31
|
-
AuditTrail = "AuditTrail",
|
|
32
|
-
LogViewer = "LogViewer",
|
|
33
|
-
MessageHistory = "MessageHistory",
|
|
34
|
-
MessageConfig = "MessageConfig",
|
|
35
|
-
MessageList = "MessageList",
|
|
36
|
-
Config = "Config",
|
|
37
|
-
Reports = "Reports"
|
|
38
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const baseStyle: any;
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnInit, QueryList } from '@angular/core';
|
|
2
|
-
import { RoleControlService } from './role-control.service';
|
|
3
|
-
import { CardData, CardDataViewComponent, ColumnDefinition, DataTableComponent, DataViewComponent, IDataFilter, VerbenPopUpComponent } from 'verben-ng-ui';
|
|
4
|
-
import { Role } from '../../models/Role';
|
|
5
|
-
import { RoleContext } from '../../models/RoleContext';
|
|
6
|
-
import { RoleAction } from '../../models/RoleAction';
|
|
7
|
-
import { MappedRole } from './MappedRole';
|
|
8
|
-
import { AuthorizationConfig, AuthorizationService } from '../../services/authorization.service';
|
|
9
|
-
import { ChildrenType } from './ChildrenType';
|
|
10
|
-
import { FormBuilder } from '@angular/forms';
|
|
11
|
-
import { UtilService } from '../../services/util.service';
|
|
12
|
-
import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
13
|
-
import { PagedResult } from '../../models/PagedResult';
|
|
14
|
-
import { EnvironmentService } from '../../services/environment.service';
|
|
15
|
-
import { ApplicationRoleContext } from '../../models/ApplicationRoleContext';
|
|
16
|
-
import { ApplicationRoleAction } from '../../models/ApplicationRoleAction';
|
|
17
|
-
import { Subject } from 'rxjs';
|
|
18
|
-
import { PermissionConfig } from '../../models/PermissionConfig';
|
|
19
|
-
import * as i0 from "@angular/core";
|
|
20
|
-
export declare class RoleControlComponent implements OnInit {
|
|
21
|
-
private authService;
|
|
22
|
-
private roleControlSvc;
|
|
23
|
-
private utilService;
|
|
24
|
-
private server;
|
|
25
|
-
private cdr;
|
|
26
|
-
private fb;
|
|
27
|
-
private envSvc;
|
|
28
|
-
visibleColumnDef: ColumnDefinition<MappedRole>[];
|
|
29
|
-
styles: any;
|
|
30
|
-
data: MappedRole[];
|
|
31
|
-
cardData: CardData[];
|
|
32
|
-
currentData: CardData | null;
|
|
33
|
-
currentExpandedCard: CardData | null;
|
|
34
|
-
cardContext: CardData | null;
|
|
35
|
-
cardContextHistory: CardData[];
|
|
36
|
-
cardContextHistoryData: CardData[][];
|
|
37
|
-
cardDataView: CardDataViewComponent;
|
|
38
|
-
dataView: DataViewComponent;
|
|
39
|
-
popUps: QueryList<VerbenPopUpComponent>;
|
|
40
|
-
tableView: DataTableComponent<MappedRole>;
|
|
41
|
-
isGlobal: boolean;
|
|
42
|
-
serviceName: string | null;
|
|
43
|
-
application: string | null;
|
|
44
|
-
pageSize: number;
|
|
45
|
-
searchDebounceTime: number;
|
|
46
|
-
permissionConfig: PermissionConfig | null;
|
|
47
|
-
pageState: PagedResult<Role> | null;
|
|
48
|
-
sourceData: AuthorizationConfig[];
|
|
49
|
-
isOpen: boolean;
|
|
50
|
-
openDropdownId: string | null;
|
|
51
|
-
currentFilters: IDataFilter[];
|
|
52
|
-
currentSorts: IDataFilter[];
|
|
53
|
-
searchTerm$: Subject<string>;
|
|
54
|
-
visibleColumns: IDataFilter[];
|
|
55
|
-
filterArray: IDataFilter[];
|
|
56
|
-
sortOptions: IDataFilter[];
|
|
57
|
-
childPermissionRef: ChildrenType;
|
|
58
|
-
roleContextsStore: ApplicationRoleContext[];
|
|
59
|
-
roleActionsStore: ApplicationRoleAction[];
|
|
60
|
-
private currentSearchTerm;
|
|
61
|
-
constructor(authService: AuthorizationService, roleControlSvc: RoleControlService, utilService: UtilService, server: HttpWebRequestService, cdr: ChangeDetectorRef, fb: FormBuilder, envSvc: EnvironmentService);
|
|
62
|
-
ngOnInit(): Promise<void>;
|
|
63
|
-
getSavedContexts(): Promise<ApplicationRoleContext[] | undefined>;
|
|
64
|
-
getAllRoles(): Promise<Role[] | undefined>;
|
|
65
|
-
loadMore(): Promise<void>;
|
|
66
|
-
getApplicationContextCode(name: string): string;
|
|
67
|
-
getApplicationActionCode(name: string): string;
|
|
68
|
-
findParent(cardData: CardData[], target: CardData): CardData | null;
|
|
69
|
-
isCheckboxDisabled(item: CardData): boolean;
|
|
70
|
-
setUpMappedData(data: Role[]): void;
|
|
71
|
-
setUpMappedDataExtra(data: Role[]): MappedRole[];
|
|
72
|
-
setUpCardData(): void;
|
|
73
|
-
setUpCardDataExtra(baseData: MappedRole[]): void;
|
|
74
|
-
getFormattedName(name: string): string;
|
|
75
|
-
viewDetailsFromTable(data: MappedRole): void;
|
|
76
|
-
viewDetails(context: CardData): void;
|
|
77
|
-
viewDetailsChild(context: CardData): void;
|
|
78
|
-
roleCardClicked(item: CardData): void;
|
|
79
|
-
toggleChildren(item: CardData): void;
|
|
80
|
-
goToTableView(): void;
|
|
81
|
-
closeDetails(): void;
|
|
82
|
-
getCardSubCaption(item: CardData): string;
|
|
83
|
-
getUpdatedRole(role: MappedRole): Role;
|
|
84
|
-
saveRole(): Promise<void>;
|
|
85
|
-
tableSaveRole(role: MappedRole, callBack: () => any): Promise<void>;
|
|
86
|
-
saveRoleDynamic(item: CardData): Promise<void>;
|
|
87
|
-
saveDataAll(): void;
|
|
88
|
-
updateTable(): void;
|
|
89
|
-
onViewChange(isGridView: boolean): void;
|
|
90
|
-
onStateChange(event: {
|
|
91
|
-
key: string;
|
|
92
|
-
value: boolean;
|
|
93
|
-
}): void;
|
|
94
|
-
showTableView: boolean;
|
|
95
|
-
onSelectionChange(selectedRows: Role[]): void;
|
|
96
|
-
retryMessage(): void;
|
|
97
|
-
onColumnsUpdated(updatedColumns: IDataFilter[]): void;
|
|
98
|
-
updateFiltersAndSorts(isSearch?: boolean): Promise<undefined>;
|
|
99
|
-
loadMoreFiltersAndSorts(): Promise<PagedResult<Role> | undefined>;
|
|
100
|
-
onFilterUpdated(updatedFilters: IDataFilter[] | string): void;
|
|
101
|
-
onSortUpdated(updatedSorts: IDataFilter[]): void;
|
|
102
|
-
handleSearch(event: {
|
|
103
|
-
key: string;
|
|
104
|
-
value: string;
|
|
105
|
-
}): void;
|
|
106
|
-
handleExport(exportedData: Partial<any>[]): void;
|
|
107
|
-
private downloadCSV;
|
|
108
|
-
getMockRoles(): Role[];
|
|
109
|
-
mockNames: string[];
|
|
110
|
-
randomName(): string;
|
|
111
|
-
randomContexts(): RoleContext[];
|
|
112
|
-
randomActions(): RoleAction[];
|
|
113
|
-
closePopUp(): void;
|
|
114
|
-
updateItem(value: any, key: string): any;
|
|
115
|
-
editValue(value: MappedRole): void;
|
|
116
|
-
tableCache: Map<string, MappedRole>;
|
|
117
|
-
cacheItem(item: MappedRole): void;
|
|
118
|
-
restoreCache(item: Role): void;
|
|
119
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RoleControlComponent, never>;
|
|
120
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RoleControlComponent, "lib-role-control", never, { "isGlobal": { "alias": "isGlobal"; "required": false; }; "serviceName": { "alias": "serviceName"; "required": false; }; "application": { "alias": "application"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "searchDebounceTime": { "alias": "searchDebounceTime"; "required": false; }; "permissionConfig": { "alias": "permissionConfig"; "required": false; }; }, {}, never, never, false, never>;
|
|
121
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./role-control.component";
|
|
3
|
-
import * as i2 from "../../shared/shared.module";
|
|
4
|
-
export declare class RoleControlModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RoleControlModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RoleControlModule, [typeof i1.RoleControlComponent], [typeof i2.SharedModule], [typeof i1.RoleControlComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<RoleControlModule>;
|
|
8
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ColumnDefinition } from 'verben-ng-ui';
|
|
2
|
-
import { MappedRole } from './MappedRole';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class RoleControlService {
|
|
5
|
-
constructor();
|
|
6
|
-
get roleColumns(): ColumnDefinition<MappedRole>[];
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RoleControlService, never>;
|
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<RoleControlService>;
|
|
9
|
-
}
|
|
@@ -1,95 +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 { AuthMechanism } from '../../models/auth-mechanism';
|
|
10
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
11
|
-
import { IOauthResp } from '../../models/oauth-resp';
|
|
12
|
-
import { TenantConfig } from '../../models/TenantConfig';
|
|
13
|
-
import { EncryptionService } from '../../services/encryption.service';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
export declare class SignInComponent implements OnInit {
|
|
16
|
-
private fb;
|
|
17
|
-
private server;
|
|
18
|
-
private utilService;
|
|
19
|
-
private envSvc;
|
|
20
|
-
private route;
|
|
21
|
-
private router;
|
|
22
|
-
private encryptionService;
|
|
23
|
-
headlingText: string;
|
|
24
|
-
width: string;
|
|
25
|
-
maxWidth: string;
|
|
26
|
-
margin: string;
|
|
27
|
-
pd: string;
|
|
28
|
-
customClass: string;
|
|
29
|
-
headlingClass: string;
|
|
30
|
-
bgColor: string;
|
|
31
|
-
boxShadow: string;
|
|
32
|
-
border: string;
|
|
33
|
-
borderRadius: string;
|
|
34
|
-
textColor: string;
|
|
35
|
-
height: string;
|
|
36
|
-
forgetPasswordClass: string;
|
|
37
|
-
requestAccessClass: string;
|
|
38
|
-
createAccountClass: string;
|
|
39
|
-
createAccountLinkClass: string;
|
|
40
|
-
forgetPasswordLink: string;
|
|
41
|
-
createAccountLink: string;
|
|
42
|
-
requestAccessLink: string;
|
|
43
|
-
btnClass: string;
|
|
44
|
-
btnBgColor: string;
|
|
45
|
-
btnColor: string;
|
|
46
|
-
btnBorder: string;
|
|
47
|
-
btnBorderRadius: string;
|
|
48
|
-
btnPd: string;
|
|
49
|
-
btnText: string;
|
|
50
|
-
inputLabelColor: string;
|
|
51
|
-
inputBgColor: string;
|
|
52
|
-
inputBorder: string;
|
|
53
|
-
inputBorderRadius: string;
|
|
54
|
-
termsErrorText: string;
|
|
55
|
-
formSubmit: EventEmitter<LoginData>;
|
|
56
|
-
onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
57
|
-
onGoogleAuthResponse: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
58
|
-
onSubmitGoogleAuth: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
59
|
-
tenantConfigLoaded: EventEmitter<TenantConfig | null>;
|
|
60
|
-
googleClick: EventEmitter<any>;
|
|
61
|
-
microsoftClick: EventEmitter<any>;
|
|
62
|
-
appleClick: EventEmitter<any>;
|
|
63
|
-
tenantDetails: any | null;
|
|
64
|
-
AuthMechanisms: AuthMechanism[] | null;
|
|
65
|
-
showform: boolean;
|
|
66
|
-
loginForm: FormGroup;
|
|
67
|
-
apiKey: string;
|
|
68
|
-
secret: string;
|
|
69
|
-
isLoading: boolean;
|
|
70
|
-
code: string;
|
|
71
|
-
type: string;
|
|
72
|
-
mechanismType: string;
|
|
73
|
-
OauthData: IOauthResp;
|
|
74
|
-
configData: TenantConfig | null;
|
|
75
|
-
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService, envSvc: EnvironmentService, route: ActivatedRoute, router: Router, encryptionService: EncryptionService);
|
|
76
|
-
ngOnInit(): Promise<void>;
|
|
77
|
-
getTenantConfig(): Promise<void>;
|
|
78
|
-
checkForm(): boolean;
|
|
79
|
-
verifyUserDetails(): Promise<void>;
|
|
80
|
-
submit(type: string): Promise<void>;
|
|
81
|
-
get styles(): {
|
|
82
|
-
'background-color': string;
|
|
83
|
-
'box-shadow': string;
|
|
84
|
-
border: string;
|
|
85
|
-
'border-radius': string;
|
|
86
|
-
color: string;
|
|
87
|
-
width: string;
|
|
88
|
-
'max-width': string;
|
|
89
|
-
margin: string;
|
|
90
|
-
height: string;
|
|
91
|
-
padding: string;
|
|
92
|
-
};
|
|
93
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SignInComponent, never>;
|
|
94
|
-
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"; "onGoogleAuthResponse": "onGoogleAuthResponse"; "onSubmitGoogleAuth": "onSubmitGoogleAuth"; "tenantConfigLoaded": "tenantConfigLoaded"; "googleClick": "googleClick"; "microsoftClick": "microsoftClick"; "appleClick": "appleClick"; }, never, never, false, never>;
|
|
95
|
-
}
|