verben-authentication-ui 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/auth-callback/auth-callback.component.mjs +57 -0
- package/esm2022/lib/components/auth-callback/auth-callback.module.mjs +18 -0
- package/esm2022/lib/components/button/button.component.mjs +46 -0
- package/esm2022/lib/components/button/button.module.mjs +20 -0
- package/esm2022/lib/components/forgot-password/ForgotPasswordData.mjs +2 -0
- package/esm2022/lib/components/forgot-password/forgot-password.component.mjs +92 -0
- package/esm2022/lib/components/forgot-password/forgot-password.module.mjs +34 -0
- package/esm2022/lib/components/mail/mail.component.mjs +69 -0
- package/esm2022/lib/components/mail/mail.module.mjs +21 -0
- package/esm2022/lib/components/mail-validation/mail-validation.component.mjs +108 -0
- package/esm2022/lib/components/mail-validation/mail-validation.module.mjs +34 -0
- package/esm2022/lib/components/o-auth/o-auth.component.mjs +107 -0
- package/esm2022/lib/components/o-auth/o-auth.module.mjs +19 -0
- package/esm2022/lib/components/otp-input/otp-input.component.mjs +86 -0
- package/esm2022/lib/components/otp-input/otp-input.module.mjs +23 -0
- package/esm2022/lib/components/reset-password/ResetPasswordData.mjs +2 -0
- package/esm2022/lib/components/reset-password/reset-password.component.mjs +108 -0
- package/esm2022/lib/components/reset-password/reset-password.module.mjs +34 -0
- package/esm2022/lib/components/role-control/ChildrenType.mjs +6 -0
- package/esm2022/lib/components/role-control/MappedRole.mjs +2 -0
- package/esm2022/lib/components/role-control/MappedRoleAction.mjs +2 -0
- package/esm2022/lib/components/role-control/MappedRoleContext.mjs +2 -0
- package/esm2022/lib/components/role-control/UIActions.mjs +7 -0
- package/esm2022/lib/components/role-control/UIs.mjs +40 -0
- package/esm2022/lib/components/role-control/base-table-style.mjs +53 -0
- package/esm2022/lib/components/role-control/role-control.component.mjs +1608 -0
- package/esm2022/lib/components/role-control/role-control.module.mjs +18 -0
- package/esm2022/lib/components/role-control/role-control.service.mjs +54 -0
- package/esm2022/lib/components/sign-in/sign-in.component.mjs +318 -0
- package/esm2022/lib/components/sign-in/sign-in.module.mjs +24 -0
- package/esm2022/lib/components/sign-up/sign-up.component.mjs +229 -0
- package/esm2022/lib/components/sign-up/sign-up.module.mjs +24 -0
- package/esm2022/lib/components/sso/base-table-style.mjs +53 -0
- package/esm2022/lib/components/sso/helper.mjs +16 -0
- package/esm2022/lib/components/sso/sso-form/sso-form.component.mjs +74 -0
- package/esm2022/lib/components/sso/sso.columns.mjs +29 -0
- package/esm2022/lib/components/sso/sso.component.mjs +236 -0
- package/esm2022/lib/components/sso/sso.module.mjs +63 -0
- package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.mjs +209 -0
- package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.mjs +22 -0
- package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.mjs +90 -0
- package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.mjs +19 -0
- package/esm2022/lib/components/user-management/base-table-style.mjs +53 -0
- package/esm2022/lib/components/user-management/services/user-management.service.mjs +88 -0
- package/esm2022/lib/components/user-management/user-management-form/use-management-form.component.mjs +73 -0
- package/esm2022/lib/components/user-management/user-management.columns.mjs +53 -0
- package/esm2022/lib/components/user-management/user-management.component.mjs +536 -0
- package/esm2022/lib/components/user-management/user-management.module.mjs +85 -0
- package/esm2022/lib/components/user-management/user-status-badge/user-status-badge.component.mjs +26 -0
- package/esm2022/lib/components/user-request/user-request.component.mjs +320 -0
- package/esm2022/lib/components/user-request/user-request.module.mjs +38 -0
- package/esm2022/lib/components/user-request-approval/access-request.columns.mjs +29 -0
- package/esm2022/lib/components/user-request-approval/base-table-style.mjs +53 -0
- package/esm2022/lib/components/user-request-approval/facades/user-access-request.facade.mjs +260 -0
- package/esm2022/lib/components/user-request-approval/helper.mjs +56 -0
- package/esm2022/lib/components/user-request-approval/services/user-access-request.service.mjs +93 -0
- package/esm2022/lib/components/user-request-approval/states/user-access-request.state.mjs +92 -0
- package/esm2022/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.mjs +26 -0
- package/esm2022/lib/components/user-request-approval/user-request-approval.component.mjs +271 -0
- package/esm2022/lib/components/user-request-approval/user-request-approval.module.mjs +83 -0
- package/esm2022/lib/components/user-request-approval/user-request-form/use-request-form.component.mjs +86 -0
- package/esm2022/lib/models/ApplicationRoleAction.mjs +2 -0
- package/esm2022/lib/models/ApplicationRoleContext.mjs +2 -0
- package/esm2022/lib/models/ErrorResponse.mjs +11 -0
- package/esm2022/lib/models/OAuthParam.mjs +2 -0
- package/esm2022/lib/models/OAuthType.mjs +9 -0
- package/esm2022/lib/models/PagedResult.mjs +2 -0
- package/esm2022/lib/models/PasswordRequestParam.mjs +2 -0
- package/esm2022/lib/models/PermissionConfig.mjs +2 -0
- package/esm2022/lib/models/ResponseKeyValue.mjs +2 -0
- package/esm2022/lib/models/Role.mjs +2 -0
- package/esm2022/lib/models/RoleAction.mjs +2 -0
- package/esm2022/lib/models/RoleContext.mjs +2 -0
- package/esm2022/lib/models/SearchDynamicWrapper.mjs +2 -0
- package/esm2022/lib/models/SearchOperator.mjs +6 -0
- package/esm2022/lib/models/SearchPropertySign.mjs +11 -0
- package/esm2022/lib/models/SearchPropertyValue.mjs +2 -0
- package/esm2022/lib/models/SearchPropertyValueType.mjs +11 -0
- package/esm2022/lib/models/SortDirection.mjs +7 -0
- package/esm2022/lib/models/Tag.mjs +2 -0
- package/esm2022/lib/models/TenantConfig.mjs +2 -0
- package/esm2022/lib/models/UserRequest.mjs +2 -0
- package/esm2022/lib/models/auth-mechanism.mjs +8 -0
- package/esm2022/lib/models/base.mjs +2 -0
- package/esm2022/lib/models/conditions.mjs +13 -0
- package/esm2022/lib/models/log-in.mjs +2 -0
- package/esm2022/lib/models/mainUser.mjs +2 -0
- package/esm2022/lib/models/oauth-resp.mjs +2 -0
- package/esm2022/lib/models/oauth-response.mjs +2 -0
- package/esm2022/lib/models/object-state.mjs +8 -0
- package/esm2022/lib/models/otpValue.mjs +2 -0
- package/esm2022/lib/models/paged.mjs +2 -0
- package/esm2022/lib/models/query-params.mjs +2 -0
- package/esm2022/lib/models/request-status.mjs +5 -0
- package/esm2022/lib/models/resend-otp-data.mjs +2 -0
- package/esm2022/lib/models/sign-up.mjs +2 -0
- package/esm2022/lib/models/single-sign-on.mjs +2 -0
- package/esm2022/lib/models/status.mjs +6 -0
- package/esm2022/lib/models/user-access-request-status.mjs +7 -0
- package/esm2022/lib/models/user-access-request.mjs +2 -0
- package/esm2022/lib/models/user.mjs +2 -0
- package/esm2022/lib/pipes/async-label.pipe.mjs +25 -0
- package/esm2022/lib/services/authorization.service.mjs +26 -0
- package/esm2022/lib/services/encryption.service.mjs +52 -0
- package/esm2022/lib/services/environment.service.mjs +26 -0
- package/esm2022/lib/services/http-web-request.service.mjs +85 -0
- package/esm2022/lib/services/label.service.mjs +134 -0
- package/esm2022/lib/services/util.service.mjs +55 -0
- package/esm2022/lib/shared/shared.module.mjs +84 -0
- package/esm2022/public-api.mjs +48 -0
- package/esm2022/verben-authentication-ui.mjs +5 -0
- package/fesm2022/verben-authentication-ui.mjs +6622 -0
- package/fesm2022/verben-authentication-ui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/auth-callback/auth-callback.component.d.ts +17 -0
- package/lib/components/auth-callback/auth-callback.module.d.ts +8 -0
- package/lib/components/button/button.component.d.ts +17 -0
- package/lib/components/button/button.module.d.ts +10 -0
- package/{src/lib/components/forgot-password/ForgotPasswordData.ts → lib/components/forgot-password/ForgotPasswordData.d.ts} +1 -1
- package/lib/components/forgot-password/forgot-password.component.d.ts +30 -0
- package/lib/components/forgot-password/forgot-password.module.d.ts +10 -0
- package/lib/components/mail/mail.component.d.ts +32 -0
- package/lib/components/mail/mail.module.d.ts +11 -0
- package/lib/components/mail-validation/mail-validation.component.d.ts +42 -0
- package/lib/components/mail-validation/mail-validation.module.d.ts +10 -0
- package/lib/components/o-auth/o-auth.component.d.ts +30 -0
- package/lib/components/o-auth/o-auth.module.d.ts +9 -0
- package/lib/components/otp-input/otp-input.component.d.ts +21 -0
- package/lib/components/otp-input/otp-input.module.d.ts +13 -0
- package/lib/components/reset-password/ResetPasswordData.d.ts +5 -0
- package/lib/components/reset-password/reset-password.component.d.ts +30 -0
- package/lib/components/reset-password/reset-password.module.d.ts +10 -0
- package/lib/components/role-control/ChildrenType.d.ts +4 -0
- package/{src/lib/components/role-control/MappedRole.ts → lib/components/role-control/MappedRole.d.ts} +2 -3
- package/{src/lib/components/role-control/MappedRoleAction.ts → lib/components/role-control/MappedRoleAction.d.ts} +1 -2
- package/{src/lib/components/role-control/MappedRoleContext.ts → lib/components/role-control/MappedRoleContext.d.ts} +3 -4
- package/lib/components/role-control/UIActions.d.ts +5 -0
- package/lib/components/role-control/UIs.d.ts +38 -0
- package/lib/components/role-control/base-table-style.d.ts +1 -0
- package/lib/components/role-control/role-control.component.d.ts +131 -0
- package/lib/components/role-control/role-control.module.d.ts +8 -0
- package/lib/components/role-control/role-control.service.d.ts +9 -0
- package/lib/components/sign-in/sign-in.component.d.ts +95 -0
- package/lib/components/sign-in/sign-in.module.d.ts +13 -0
- package/lib/components/sign-up/sign-up.component.d.ts +68 -0
- package/lib/components/sign-up/sign-up.module.d.ts +13 -0
- package/lib/components/sso/base-table-style.d.ts +1 -0
- package/lib/components/sso/helper.d.ts +2 -0
- package/lib/components/sso/sso-form/sso-form.component.d.ts +21 -0
- package/lib/components/sso/sso.columns.d.ts +3 -0
- package/lib/components/sso/sso.component.d.ts +54 -0
- package/lib/components/sso/sso.module.d.ts +11 -0
- package/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.d.ts +67 -0
- package/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.d.ts +12 -0
- package/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.d.ts +39 -0
- package/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.d.ts +9 -0
- package/lib/components/user-management/base-table-style.d.ts +1 -0
- package/lib/components/user-management/services/user-management.service.d.ts +44 -0
- package/lib/components/user-management/user-management-form/use-management-form.component.d.ts +24 -0
- package/lib/components/user-management/user-management.columns.d.ts +3 -0
- package/lib/components/user-management/user-management.component.d.ts +134 -0
- package/lib/components/user-management/user-management.module.d.ts +14 -0
- package/lib/components/user-management/user-status-badge/user-status-badge.component.d.ts +12 -0
- package/lib/components/user-request/user-request.component.d.ts +80 -0
- package/lib/components/user-request/user-request.module.d.ts +11 -0
- package/lib/components/user-request-approval/access-request.columns.d.ts +3 -0
- package/lib/components/user-request-approval/base-table-style.d.ts +1 -0
- package/lib/components/user-request-approval/facades/user-access-request.facade.d.ts +39 -0
- package/lib/components/user-request-approval/helper.d.ts +7 -0
- package/lib/components/user-request-approval/services/user-access-request.service.d.ts +65 -0
- package/lib/components/user-request-approval/states/user-access-request.state.d.ts +35 -0
- package/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.d.ts +12 -0
- package/lib/components/user-request-approval/user-request-approval.component.d.ts +69 -0
- package/lib/components/user-request-approval/user-request-approval.module.d.ts +12 -0
- package/lib/components/user-request-approval/user-request-form/use-request-form.component.d.ts +25 -0
- package/lib/models/ApplicationRoleAction.d.ts +9 -0
- package/{src/lib/models/ApplicationRoleContext copy.ts → lib/models/ApplicationRoleContext.d.ts} +5 -6
- package/lib/models/ErrorResponse.d.ts +6 -0
- package/lib/models/OAuthParam.d.ts +9 -0
- package/lib/models/OAuthType.d.ts +7 -0
- package/lib/models/PagedResult.d.ts +9 -0
- package/lib/models/PasswordRequestParam.d.ts +5 -0
- package/{src/lib/models/PermissionConfig.ts → lib/models/PermissionConfig.d.ts} +3 -4
- package/lib/models/ResponseKeyValue.d.ts +5 -0
- package/{src/lib/models/Role.ts → lib/models/Role.d.ts} +5 -6
- package/lib/models/RoleAction.d.ts +10 -0
- package/lib/models/RoleContext.d.ts +10 -0
- package/{src/lib/models/SearchDynamicWrapper.ts → lib/models/SearchDynamicWrapper.d.ts} +2 -3
- package/lib/models/SearchOperator.d.ts +4 -0
- package/lib/models/SearchPropertySign.d.ts +9 -0
- package/{src/lib/models/SearchPropertyValue.ts → lib/models/SearchPropertyValue.d.ts} +6 -7
- package/lib/models/SearchPropertyValueType.d.ts +9 -0
- package/lib/models/SortDirection.d.ts +5 -0
- package/{src/lib/models/Tag.ts → lib/models/Tag.d.ts} +3 -4
- package/lib/models/TenantConfig.d.ts +18 -0
- package/lib/models/UserRequest.d.ts +32 -0
- package/lib/models/auth-mechanism.d.ts +14 -0
- package/lib/models/base.d.ts +12 -0
- package/lib/models/conditions.d.ts +11 -0
- package/lib/models/log-in.d.ts +8 -0
- package/{src/lib/models/mainUser.ts → lib/models/mainUser.d.ts} +2 -3
- package/lib/models/oauth-resp.d.ts +6 -0
- package/{src/lib/models/oauth-response.ts → lib/models/oauth-response.d.ts} +1 -1
- package/lib/models/object-state.d.ts +6 -0
- package/{src/lib/models/otpValue.ts → lib/models/otpValue.d.ts} +2 -4
- package/lib/models/paged.d.ts +9 -0
- package/lib/models/query-params.d.ts +8 -0
- package/lib/models/request-status.d.ts +3 -0
- package/lib/models/resend-otp-data.d.ts +8 -0
- package/lib/models/sign-up.d.ts +9 -0
- package/lib/models/single-sign-on.d.ts +7 -0
- package/lib/models/status.d.ts +4 -0
- package/lib/models/user-access-request-status.d.ts +5 -0
- package/{src/lib/models/user-access-request.ts → lib/models/user-access-request.d.ts} +4 -5
- package/lib/models/user.d.ts +18 -0
- package/lib/pipes/async-label.pipe.d.ts +11 -0
- package/lib/services/authorization.service.d.ts +14 -0
- package/lib/services/encryption.service.d.ts +13 -0
- package/lib/services/environment.service.d.ts +22 -0
- package/lib/services/http-web-request.service.d.ts +23 -0
- package/lib/services/label.service.d.ts +15 -0
- package/lib/services/util.service.d.ts +11 -0
- package/lib/shared/shared.module.d.ts +10 -0
- package/package.json +14 -10
- package/{src/public-api.ts → public-api.d.ts} +0 -24
- package/ng-package.json +0 -8
- package/src/lib/base/base-data.component.ts +0 -86
- package/src/lib/base/base-data.facade.ts +0 -157
- package/src/lib/base/base-data.service.ts +0 -49
- package/src/lib/base/base-data.state.ts +0 -94
- package/src/lib/base/models.ts +0 -14
- package/src/lib/components/auth-callback/auth-callback.component.css +0 -30
- package/src/lib/components/auth-callback/auth-callback.component.html +0 -6
- package/src/lib/components/auth-callback/auth-callback.component.spec.ts +0 -23
- package/src/lib/components/auth-callback/auth-callback.component.ts +0 -56
- package/src/lib/components/auth-callback/auth-callback.module.ts +0 -10
- package/src/lib/components/button/button.component.css +0 -3
- package/src/lib/components/button/button.component.html +0 -13
- package/src/lib/components/button/button.component.spec.ts +0 -23
- package/src/lib/components/button/button.component.ts +0 -24
- package/src/lib/components/button/button.module.ts +0 -11
- package/src/lib/components/forgot-password/forgot-password.component.css +0 -50
- package/src/lib/components/forgot-password/forgot-password.component.html +0 -38
- package/src/lib/components/forgot-password/forgot-password.component.spec.ts +0 -23
- package/src/lib/components/forgot-password/forgot-password.component.ts +0 -90
- package/src/lib/components/forgot-password/forgot-password.module.ts +0 -18
- package/src/lib/components/mail/mail.component.css +0 -0
- package/src/lib/components/mail/mail.component.html +0 -11
- package/src/lib/components/mail/mail.component.spec.ts +0 -23
- package/src/lib/components/mail/mail.component.ts +0 -47
- package/src/lib/components/mail/mail.module.ts +0 -13
- package/src/lib/components/mail-validation/mail-validation.component.css +0 -59
- package/src/lib/components/mail-validation/mail-validation.component.html +0 -37
- package/src/lib/components/mail-validation/mail-validation.component.spec.ts +0 -23
- package/src/lib/components/mail-validation/mail-validation.component.ts +0 -66
- package/src/lib/components/mail-validation/mail-validation.module.ts +0 -18
- package/src/lib/components/o-auth/o-auth.component.css +0 -26
- package/src/lib/components/o-auth/o-auth.component.html +0 -26
- package/src/lib/components/o-auth/o-auth.component.spec.ts +0 -23
- package/src/lib/components/o-auth/o-auth.component.ts +0 -115
- package/src/lib/components/o-auth/o-auth.module.ts +0 -11
- package/src/lib/components/otp-input/otp-input.component.css +0 -19
- package/src/lib/components/otp-input/otp-input.component.html +0 -15
- package/src/lib/components/otp-input/otp-input.component.spec.ts +0 -23
- package/src/lib/components/otp-input/otp-input.component.ts +0 -88
- package/src/lib/components/otp-input/otp-input.module.ts +0 -15
- package/src/lib/components/reset-password/ResetPasswordData.ts +0 -5
- package/src/lib/components/reset-password/reset-password.component.css +0 -29
- package/src/lib/components/reset-password/reset-password.component.html +0 -24
- package/src/lib/components/reset-password/reset-password.component.spec.ts +0 -23
- package/src/lib/components/reset-password/reset-password.component.ts +0 -108
- package/src/lib/components/reset-password/reset-password.module.ts +0 -18
- package/src/lib/components/role-control/ChildrenType.ts +0 -4
- package/src/lib/components/role-control/UIActions.ts +0 -5
- package/src/lib/components/role-control/UIs.ts +0 -38
- package/src/lib/components/role-control/base-table-style.ts +0 -52
- package/src/lib/components/role-control/role-control.component.css +0 -87
- package/src/lib/components/role-control/role-control.component.html +0 -603
- package/src/lib/components/role-control/role-control.component.spec.ts +0 -23
- package/src/lib/components/role-control/role-control.component.ts +0 -1884
- package/src/lib/components/role-control/role-control.module.ts +0 -10
- package/src/lib/components/role-control/role-control.service.spec.ts +0 -16
- package/src/lib/components/role-control/role-control.service.ts +0 -53
- package/src/lib/components/sign-in/sign-in.component.css +0 -21
- package/src/lib/components/sign-in/sign-in.component.html +0 -83
- package/src/lib/components/sign-in/sign-in.component.spec.ts +0 -23
- package/src/lib/components/sign-in/sign-in.component.ts +0 -267
- package/src/lib/components/sign-in/sign-in.module.ts +0 -17
- package/src/lib/components/sign-up/sign-up.component.css +0 -36
- package/src/lib/components/sign-up/sign-up.component.html +0 -132
- package/src/lib/components/sign-up/sign-up.component.spec.ts +0 -23
- package/src/lib/components/sign-up/sign-up.component.ts +0 -180
- package/src/lib/components/sign-up/sign-up.module.ts +0 -15
- package/src/lib/components/sso/base-table-style.ts +0 -52
- package/src/lib/components/sso/helper.ts +0 -17
- package/src/lib/components/sso/sso-form/sso-form.component.css +0 -13
- package/src/lib/components/sso/sso-form/sso-form.component.html +0 -109
- package/src/lib/components/sso/sso-form/sso-form.component.spec.ts +0 -23
- package/src/lib/components/sso/sso-form/sso-form.component.ts +0 -70
- package/src/lib/components/sso/sso.columns.ts +0 -32
- package/src/lib/components/sso/sso.component.css +0 -47
- package/src/lib/components/sso/sso.component.html +0 -208
- package/src/lib/components/sso/sso.component.spec.ts +0 -23
- package/src/lib/components/sso/sso.component.ts +0 -261
- package/src/lib/components/sso/sso.module.ts +0 -40
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.css +0 -8
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.html +0 -30
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.spec.ts +0 -23
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.ts +0 -155
- package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.ts +0 -15
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.css +0 -17
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.html +0 -45
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.spec.ts +0 -23
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.ts +0 -57
- package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.ts +0 -11
- package/src/lib/components/user-management/base-table-style.ts +0 -52
- package/src/lib/components/user-management/facades/user-management.facades.ts +0 -133
- package/src/lib/components/user-management/helper.ts +0 -38
- package/src/lib/components/user-management/index.ts +0 -4
- package/src/lib/components/user-management/services/user-management.service.spec.ts +0 -16
- package/src/lib/components/user-management/services/user-management.service.ts +0 -111
- package/src/lib/components/user-management/states/user-management.state.ts +0 -65
- package/src/lib/components/user-management/user-management-form/use-management-form.component.ts +0 -74
- package/src/lib/components/user-management/user-management-form/user-management-form.component.css +0 -0
- package/src/lib/components/user-management/user-management-form/user-management-form.component.html +0 -89
- package/src/lib/components/user-management/user-management-form/user-management-form.component.spec.ts +0 -23
- package/src/lib/components/user-management/user-management.columns.ts +0 -57
- package/src/lib/components/user-management/user-management.component.css +0 -31
- package/src/lib/components/user-management/user-management.component.html +0 -455
- package/src/lib/components/user-management/user-management.component.spec.ts +0 -23
- package/src/lib/components/user-management/user-management.component.ts +0 -626
- package/src/lib/components/user-management/user-management.module.ts +0 -60
- 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 +0 -8
- package/src/lib/components/user-management/user-status-badge/user-status-badge.component.spec.ts +0 -22
- package/src/lib/components/user-management/user-status-badge/user-status-badge.component.ts +0 -22
- package/src/lib/components/user-request/user-request.component.css +0 -91
- package/src/lib/components/user-request/user-request.component.html +0 -137
- package/src/lib/components/user-request/user-request.component.spec.ts +0 -23
- package/src/lib/components/user-request/user-request.component.ts +0 -306
- package/src/lib/components/user-request/user-request.module.ts +0 -20
- package/src/lib/components/user-request-approval/access-request.columns.ts +0 -31
- package/src/lib/components/user-request-approval/base-table-style.ts +0 -52
- package/src/lib/components/user-request-approval/facades/user-access-request.facade.ts +0 -324
- package/src/lib/components/user-request-approval/helper.ts +0 -61
- package/src/lib/components/user-request-approval/services/user-access-request.service.spec.ts +0 -16
- package/src/lib/components/user-request-approval/services/user-access-request.service.ts +0 -122
- package/src/lib/components/user-request-approval/states/user-access-request.state.ts +0 -109
- package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.css +0 -0
- package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.html +0 -8
- package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.spec.ts +0 -23
- package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.ts +0 -22
- package/src/lib/components/user-request-approval/user-request-approval.component.css +0 -6
- package/src/lib/components/user-request-approval/user-request-approval.component.html +0 -273
- package/src/lib/components/user-request-approval/user-request-approval.component.spec.ts +0 -23
- package/src/lib/components/user-request-approval/user-request-approval.component.ts +0 -328
- package/src/lib/components/user-request-approval/user-request-approval.module.ts +0 -56
- package/src/lib/components/user-request-approval/user-request-form/use-request-form.component.ts +0 -98
- package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.css +0 -0
- package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.html +0 -94
- package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.spec.ts +0 -23
- 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 +0 -1
- package/src/lib/components/user-request-process/user-request-process.component.spec.ts +0 -23
- package/src/lib/components/user-request-process/user-request-process.component.ts +0 -12
- package/src/lib/components/user-request-process/user-request-process.module.ts +0 -12
- package/src/lib/models/ApplicationRoleAction.ts +0 -10
- package/src/lib/models/ApplicationRoleContext.ts +0 -10
- package/src/lib/models/ErrorResponse.ts +0 -7
- package/src/lib/models/FilterTypes.ts +0 -8
- package/src/lib/models/MailConfig.ts +0 -13
- package/src/lib/models/MessageConfig.ts +0 -5
- package/src/lib/models/MessageMedium.ts +0 -4
- package/src/lib/models/OAuthParam.ts +0 -10
- package/src/lib/models/OAuthType.ts +0 -7
- package/src/lib/models/PagedResult.ts +0 -9
- package/src/lib/models/PasswordRequestParam.ts +0 -5
- package/src/lib/models/PeriodMode.ts +0 -10
- package/src/lib/models/ReportSchedule.ts +0 -23
- package/src/lib/models/ReportType.ts +0 -5
- package/src/lib/models/ResponseKeyValue.ts +0 -5
- package/src/lib/models/RoleAction.ts +0 -11
- package/src/lib/models/RoleContext.ts +0 -11
- package/src/lib/models/SMSConfig.ts +0 -11
- package/src/lib/models/SearchOperator.ts +0 -4
- package/src/lib/models/SearchPropertySign.ts +0 -9
- package/src/lib/models/SearchPropertyValueType.ts +0 -9
- package/src/lib/models/SortDirection.ts +0 -5
- package/src/lib/models/TaskNotification.ts +0 -14
- package/src/lib/models/TaskNotificationMessageType.ts +0 -4
- package/src/lib/models/TaskNotificationType.ts +0 -4
- package/src/lib/models/Tenant.ts +0 -22
- package/src/lib/models/TenantConfig.ts +0 -19
- package/src/lib/models/UserRequest.ts +0 -38
- package/src/lib/models/auth-mechanism.ts +0 -15
- package/src/lib/models/base.ts +0 -13
- package/src/lib/models/conditions.ts +0 -11
- package/src/lib/models/log-in.ts +0 -8
- package/src/lib/models/oauth-resp.ts +0 -6
- package/src/lib/models/object-state.ts +0 -6
- package/src/lib/models/paged.ts +0 -9
- package/src/lib/models/query-params.ts +0 -9
- package/src/lib/models/request-status.ts +0 -4
- package/src/lib/models/resend-otp-data.ts +0 -8
- package/src/lib/models/resource.ts +0 -27
- package/src/lib/models/sign-up.ts +0 -11
- package/src/lib/models/single-sign-on.ts +0 -9
- package/src/lib/models/status.ts +0 -5
- package/src/lib/models/user-access-request-status.ts +0 -5
- package/src/lib/models/user-object-state.ts +0 -6
- package/src/lib/models/user.ts +0 -19
- package/src/lib/pipes/async-label.pipe.spec.ts +0 -8
- package/src/lib/pipes/async-label.pipe.ts +0 -20
- package/src/lib/services/authorization.service.spec.ts +0 -16
- package/src/lib/services/authorization.service.ts +0 -24
- package/src/lib/services/encryption.service.ts +0 -57
- package/src/lib/services/environment.service.spec.ts +0 -16
- package/src/lib/services/environment.service.ts +0 -30
- package/src/lib/services/http-web-request.service.spec.ts +0 -16
- package/src/lib/services/http-web-request.service.ts +0 -114
- package/src/lib/services/label.service.spec.ts +0 -16
- package/src/lib/services/label.service.ts +0 -177
- package/src/lib/services/util.service.spec.ts +0 -16
- package/src/lib/services/util.service.ts +0 -49
- package/src/lib/shared/shared.module.ts +0 -55
- package/src/styles.css +0 -96
- package/src/theme/tailwind-setup.css +0 -3
- package/src/theme/tailwind.css +0 -1035
- package/src/utils/components/base-data-view.component.ts +0 -131
- package/src/utils/models/DataViewConfig.ts +0 -19
- package/tailwind.config.js +0 -20
- package/tsconfig.lib.json +0 -15
- package/tsconfig.lib.prod.json +0 -11
- package/tsconfig.spec.json +0 -15
|
@@ -0,0 +1,95 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
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 { EncryptionService } from '../../services/encryption.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class SignUpComponent {
|
|
11
|
+
private fb;
|
|
12
|
+
private server;
|
|
13
|
+
private utilService;
|
|
14
|
+
private encryptionService;
|
|
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
|
+
height: string;
|
|
27
|
+
textColor: string;
|
|
28
|
+
disabled: boolean;
|
|
29
|
+
btnClass: string;
|
|
30
|
+
btnBgColor: string;
|
|
31
|
+
btnColor: string;
|
|
32
|
+
btnBorder: string;
|
|
33
|
+
btnBorderRadius: string;
|
|
34
|
+
btnPd: string;
|
|
35
|
+
btnText: string;
|
|
36
|
+
inputLabelColor: string;
|
|
37
|
+
inputBgColor: string;
|
|
38
|
+
inputBorder: string;
|
|
39
|
+
inputBorderRadius: string;
|
|
40
|
+
termsLink: string;
|
|
41
|
+
privacyLink: string;
|
|
42
|
+
routerLink: string;
|
|
43
|
+
formSubmit: EventEmitter<SignUpData>;
|
|
44
|
+
onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
45
|
+
googleClick: EventEmitter<any>;
|
|
46
|
+
appleClick: EventEmitter<any>;
|
|
47
|
+
signUpForm: FormGroup;
|
|
48
|
+
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService, encryptionService: EncryptionService);
|
|
49
|
+
private passwordMatchValidator;
|
|
50
|
+
checkForm(): boolean;
|
|
51
|
+
submit(): Promise<void>;
|
|
52
|
+
handleGoogleAuth(): void;
|
|
53
|
+
handleAppleAuth(): void;
|
|
54
|
+
get styles(): {
|
|
55
|
+
'background-color': string;
|
|
56
|
+
'box-shadow': string;
|
|
57
|
+
border: string;
|
|
58
|
+
'border-radius': string;
|
|
59
|
+
color: string;
|
|
60
|
+
width: string;
|
|
61
|
+
'max-width': string;
|
|
62
|
+
margin: string;
|
|
63
|
+
height: string;
|
|
64
|
+
padding: string;
|
|
65
|
+
};
|
|
66
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SignUpComponent, never>;
|
|
67
|
+
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>;
|
|
68
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const baseStyle: any;
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
3
|
+
import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
4
|
+
import { UtilService } from '../../services/util.service';
|
|
5
|
+
import { ErrorResponse } from '../../models/ErrorResponse';
|
|
6
|
+
import { ResponseKeyValue } from '../../models/ResponseKeyValue';
|
|
7
|
+
import { OtpData } from '../../models/otpValue';
|
|
8
|
+
import { ResendOtpData } from '../../models/resend-otp-data';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class TwoFactorAuthOtpComponent {
|
|
11
|
+
private fb;
|
|
12
|
+
private server;
|
|
13
|
+
private utilService;
|
|
14
|
+
customClass: string;
|
|
15
|
+
headlingClass: string;
|
|
16
|
+
headlingText: string;
|
|
17
|
+
paragraphClass: string;
|
|
18
|
+
resendClass: string;
|
|
19
|
+
width: string;
|
|
20
|
+
maxWidth: string;
|
|
21
|
+
margin: string;
|
|
22
|
+
pd: string;
|
|
23
|
+
bgColor: string;
|
|
24
|
+
boxShadow: string;
|
|
25
|
+
border: string;
|
|
26
|
+
borderRadius: string;
|
|
27
|
+
textColor: string;
|
|
28
|
+
height: string;
|
|
29
|
+
length: number;
|
|
30
|
+
otpClass: string;
|
|
31
|
+
resendOtpData: ResendOtpData;
|
|
32
|
+
User: any;
|
|
33
|
+
OtpData: OtpData;
|
|
34
|
+
btnClass: string;
|
|
35
|
+
btnBgColor: string;
|
|
36
|
+
btnColor: string;
|
|
37
|
+
btnBorder: string;
|
|
38
|
+
btnBorderRadius: string;
|
|
39
|
+
btnPd: string;
|
|
40
|
+
btnText: string;
|
|
41
|
+
otpValue: string;
|
|
42
|
+
otpForm: FormGroup;
|
|
43
|
+
buttonClick: EventEmitter<string>;
|
|
44
|
+
otpChange: EventEmitter<string>;
|
|
45
|
+
clearStore: EventEmitter<any>;
|
|
46
|
+
onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
47
|
+
resend: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
48
|
+
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService);
|
|
49
|
+
ngOnInit(): void;
|
|
50
|
+
onOtpChange(value: string): void;
|
|
51
|
+
submitData(): Promise<void>;
|
|
52
|
+
resendOtp(): Promise<void>;
|
|
53
|
+
get styles(): {
|
|
54
|
+
'background-color': string;
|
|
55
|
+
'box-shadow': string;
|
|
56
|
+
border: string;
|
|
57
|
+
'border-radius': string;
|
|
58
|
+
color: string;
|
|
59
|
+
width: string;
|
|
60
|
+
'max-width': string;
|
|
61
|
+
margin: string;
|
|
62
|
+
height: string;
|
|
63
|
+
padding: string;
|
|
64
|
+
};
|
|
65
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoFactorAuthOtpComponent, never>;
|
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwoFactorAuthOtpComponent, "verben-auth-otp", never, { "customClass": { "alias": "customClass"; "required": false; }; "headlingClass": { "alias": "headlingClass"; "required": false; }; "headlingText": { "alias": "headlingText"; "required": false; }; "paragraphClass": { "alias": "paragraphClass"; "required": false; }; "resendClass": { "alias": "resendClass"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "height": { "alias": "height"; "required": false; }; "length": { "alias": "length"; "required": false; }; "otpClass": { "alias": "otpClass"; "required": false; }; "resendOtpData": { "alias": "resendOtpData"; "required": false; }; "User": { "alias": "User"; "required": false; }; "OtpData": { "alias": "OtpData"; "required": false; }; "btnClass": { "alias": "btnClass"; "required": false; }; "btnBgColor": { "alias": "btnBgColor"; "required": false; }; "btnColor": { "alias": "btnColor"; "required": false; }; "btnBorder": { "alias": "btnBorder"; "required": false; }; "btnBorderRadius": { "alias": "btnBorderRadius"; "required": false; }; "btnPd": { "alias": "btnPd"; "required": false; }; "btnText": { "alias": "btnText"; "required": false; }; }, { "buttonClick": "buttonClick"; "otpChange": "otpChange"; "clearStore": "clearStore"; "onSubmitEnd": "onSubmitEnd"; "resend": "resend"; }, never, never, false, never>;
|
|
67
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./two-factor-auth-otp.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../button/button.module";
|
|
5
|
+
import * as i4 from "../otp-input/otp-input.module";
|
|
6
|
+
import * as i5 from "@angular/router";
|
|
7
|
+
import * as i6 from "@angular/forms";
|
|
8
|
+
export declare class TwoFactorAuthOtpModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoFactorAuthOtpModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TwoFactorAuthOtpModule, [typeof i1.TwoFactorAuthOtpComponent], [typeof i2.CommonModule, typeof i3.ButtonModule, typeof i4.OtpInputModule, typeof i5.RouterLink, typeof i6.ReactiveFormsModule], [typeof i1.TwoFactorAuthOtpComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TwoFactorAuthOtpModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TwoFactorAuthSetupComponent {
|
|
4
|
+
customClass: string;
|
|
5
|
+
headlingClass: string;
|
|
6
|
+
headlingText: string;
|
|
7
|
+
paragraphClass: string;
|
|
8
|
+
buttonClass: string;
|
|
9
|
+
width: string;
|
|
10
|
+
maxWidth: string;
|
|
11
|
+
margin: string;
|
|
12
|
+
pd: string;
|
|
13
|
+
bgColor: string;
|
|
14
|
+
boxShadow: string;
|
|
15
|
+
border: string;
|
|
16
|
+
borderRadius: string;
|
|
17
|
+
textColor: string;
|
|
18
|
+
height: string;
|
|
19
|
+
smsClick: EventEmitter<any>;
|
|
20
|
+
mailClick: EventEmitter<any>;
|
|
21
|
+
skipClick: EventEmitter<any>;
|
|
22
|
+
continueWithSMS(): void;
|
|
23
|
+
continueWithMail(): void;
|
|
24
|
+
handleSkip(): void;
|
|
25
|
+
get styles(): {
|
|
26
|
+
'background-color': string;
|
|
27
|
+
'box-shadow': string;
|
|
28
|
+
border: string;
|
|
29
|
+
'border-radius': string;
|
|
30
|
+
color: string;
|
|
31
|
+
width: string;
|
|
32
|
+
'max-width': string;
|
|
33
|
+
margin: string;
|
|
34
|
+
height: string;
|
|
35
|
+
padding: string;
|
|
36
|
+
};
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoFactorAuthSetupComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwoFactorAuthSetupComponent, "verben-two-factor-auth-setup", never, { "customClass": { "alias": "customClass"; "required": false; }; "headlingClass": { "alias": "headlingClass"; "required": false; }; "headlingText": { "alias": "headlingText"; "required": false; }; "paragraphClass": { "alias": "paragraphClass"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "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; }; }, { "smsClick": "smsClick"; "mailClick": "mailClick"; "skipClick": "skipClick"; }, never, never, false, never>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./two-factor-auth-setup.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "verben-ng-ui";
|
|
5
|
+
export declare class TwoFactorAuthSetupModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoFactorAuthSetupModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TwoFactorAuthSetupModule, [typeof i1.TwoFactorAuthSetupComponent], [typeof i2.CommonModule, typeof i3.VerbenaButtonModule, typeof i3.SvgModule], [typeof i1.TwoFactorAuthSetupComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TwoFactorAuthSetupModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const baseStyle: any;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { HttpWebRequestService } from '../../../services/http-web-request.service';
|
|
3
|
+
import { ErrorResponse } from '../../../models/ErrorResponse';
|
|
4
|
+
import { PagedResult } from '../../../models/PagedResult';
|
|
5
|
+
import { User } from '../../../models/user';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class UserManagementService {
|
|
8
|
+
private httpService;
|
|
9
|
+
constructor(httpService: HttpWebRequestService);
|
|
10
|
+
/**
|
|
11
|
+
* Get users with pagination and sorting
|
|
12
|
+
* @param skip Number of records to skip
|
|
13
|
+
* @param limit Number of records to take
|
|
14
|
+
* @param sortParam Sort parameter
|
|
15
|
+
* @param sortOrder Sort order ('asc' or 'desc')
|
|
16
|
+
* @returns Promise containing the list of users
|
|
17
|
+
*/
|
|
18
|
+
getUsers(skip: number, limit: number, sortParam: string, sortOrder: string): Promise<User[] | ErrorResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Get users with an additional search parameter, pagination, and sorting
|
|
21
|
+
* @param param Search parameter
|
|
22
|
+
* @param skip Number of records to skip
|
|
23
|
+
* @param limit Number of records to take
|
|
24
|
+
* @param sortParam Sort parameter
|
|
25
|
+
* @param sortOrder Sort order ('asc' or 'desc')
|
|
26
|
+
* @returns Promise containing the filtered list of users
|
|
27
|
+
*/
|
|
28
|
+
getUsersWithParam(param: string, skip: number, limit: number, sortParam: string, sortOrder: string): Promise<User[]>;
|
|
29
|
+
getRealUsers(role: string | null, skip: number, limit: number, sortParam: string, sortOrder: string): Promise<ErrorResponse | PagedResult<User>>;
|
|
30
|
+
/**
|
|
31
|
+
* Save multiple users
|
|
32
|
+
* @param users Array of users to save
|
|
33
|
+
* @returns Promise containing the save operation result
|
|
34
|
+
*/
|
|
35
|
+
saveUsers(users: User[]): Promise<any>;
|
|
36
|
+
/**
|
|
37
|
+
* Delete multiple users
|
|
38
|
+
* @param userIds Array of user IDs to delete
|
|
39
|
+
* @returns Observable containing the delete operation result
|
|
40
|
+
*/
|
|
41
|
+
deleteUsers(userIds: string[]): Observable<any>;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserManagementService, never>;
|
|
43
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserManagementService>;
|
|
44
|
+
}
|
package/lib/components/user-management/user-management-form/use-management-form.component.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { CardData } from 'verben-ng-ui';
|
|
4
|
+
import { Role } from '../../../models/Role';
|
|
5
|
+
import { Tag } from '../../../models/Tag';
|
|
6
|
+
import { Status } from '../../../models/status';
|
|
7
|
+
import { User } from '../../../models/user';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class UserManagementFormComponent {
|
|
10
|
+
private fb;
|
|
11
|
+
set currentData(value: CardData | null);
|
|
12
|
+
roles: Role[];
|
|
13
|
+
tags: Tag[];
|
|
14
|
+
switchView: EventEmitter<undefined>;
|
|
15
|
+
onFormSave: EventEmitter<Partial<User>>;
|
|
16
|
+
form: FormGroup;
|
|
17
|
+
statusOptions: Status[];
|
|
18
|
+
constructor(fb: FormBuilder);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
onSave(): void;
|
|
21
|
+
onDelete(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserManagementFormComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserManagementFormComponent, "lib-user-request-form", never, { "currentData": { "alias": "currentData"; "required": false; }; "roles": { "alias": "roles"; "required": false; }; "tags": { "alias": "tags"; "required": false; }; }, { "switchView": "switchView"; "onFormSave": "onFormSave"; }, never, never, false, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { WritableSignal } from '@angular/core';
|
|
2
|
+
import { UtilService } from '../../services/util.service';
|
|
3
|
+
import { PagedResult } from '../../models/PagedResult';
|
|
4
|
+
import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
5
|
+
import { CardData, IDataFilter, DropdownChangeEvent, ColumnDefinition, CardDataViewComponent, DataViewComponent, FormGroupConfig } from 'verben-ng-ui';
|
|
6
|
+
import { EnvironmentService } from '../../services/environment.service';
|
|
7
|
+
import { UserManagementService } from './services/user-management.service';
|
|
8
|
+
import { User } from '../../models/user';
|
|
9
|
+
import { UserManagementFormComponent } from './user-management-form/use-management-form.component';
|
|
10
|
+
import { Subject } from 'rxjs';
|
|
11
|
+
import { ConditionOptions } from '../../models/conditions';
|
|
12
|
+
import { ActivatedRoute } from '@angular/router';
|
|
13
|
+
import { UserAccessRequestService } from '../user-request-approval/services/user-access-request.service';
|
|
14
|
+
import { Role } from '../../models/Role';
|
|
15
|
+
import { Tag } from '../../models/Tag';
|
|
16
|
+
import { FormBuilder } from '@angular/forms';
|
|
17
|
+
import { Status } from '../../models/status';
|
|
18
|
+
import * as i0 from "@angular/core";
|
|
19
|
+
interface TestParentObject {
|
|
20
|
+
Id: string;
|
|
21
|
+
Name: string;
|
|
22
|
+
}
|
|
23
|
+
export declare class UserManagementComponent {
|
|
24
|
+
private route;
|
|
25
|
+
private userManagementService;
|
|
26
|
+
private userRole;
|
|
27
|
+
private server;
|
|
28
|
+
private utilService;
|
|
29
|
+
private envSvc;
|
|
30
|
+
private fb;
|
|
31
|
+
cardDataView: CardDataViewComponent;
|
|
32
|
+
dataView: DataViewComponent;
|
|
33
|
+
childComponent: UserManagementFormComponent;
|
|
34
|
+
private currentSearchTerm;
|
|
35
|
+
allColumns: ColumnDefinition<User>[];
|
|
36
|
+
filteredColumns: ColumnDefinition<User>[];
|
|
37
|
+
skip: number;
|
|
38
|
+
users: User[];
|
|
39
|
+
searchTerm$: Subject<string>;
|
|
40
|
+
searchDebounceTime: number;
|
|
41
|
+
pageSize: number;
|
|
42
|
+
pageState: PagedResult<User> | null;
|
|
43
|
+
errorMessage: string;
|
|
44
|
+
appliedFilters: boolean;
|
|
45
|
+
isLoading: boolean;
|
|
46
|
+
hasMore: boolean;
|
|
47
|
+
limit: number;
|
|
48
|
+
sortParam: string;
|
|
49
|
+
sortOrder: string;
|
|
50
|
+
Roles: Role[];
|
|
51
|
+
Tags: WritableSignal<Tag[]>;
|
|
52
|
+
dataFit: PagedResult<User>;
|
|
53
|
+
currentFilters: IDataFilter[];
|
|
54
|
+
currentSorts: IDataFilter[];
|
|
55
|
+
role: string;
|
|
56
|
+
cardContextHistory: CardData[];
|
|
57
|
+
param: string | null | undefined;
|
|
58
|
+
formGroupConfig: WritableSignal<FormGroupConfig<any>>;
|
|
59
|
+
statuses: Status[];
|
|
60
|
+
constructor(route: ActivatedRoute, userManagementService: UserManagementService, userRole: UserAccessRequestService, server: HttpWebRequestService, utilService: UtilService, envSvc: EnvironmentService, fb: FormBuilder);
|
|
61
|
+
ngOnInit(): Promise<void>;
|
|
62
|
+
cardData: CardData[];
|
|
63
|
+
data: any[];
|
|
64
|
+
fetchUsers(sortValue?: string, order?: string): Promise<void>;
|
|
65
|
+
getRoles(): Promise<undefined>;
|
|
66
|
+
getTags(): Promise<undefined>;
|
|
67
|
+
handleRoleId(value: string): string;
|
|
68
|
+
/**
|
|
69
|
+
* Format users into CardData for the UI library
|
|
70
|
+
* @param users Array of users to format
|
|
71
|
+
* @returns Array of CardData
|
|
72
|
+
*/
|
|
73
|
+
private formatCardData;
|
|
74
|
+
columns: ColumnDefinition<User>[];
|
|
75
|
+
styles: any;
|
|
76
|
+
selectedParent?: string;
|
|
77
|
+
basicOption?: string;
|
|
78
|
+
selectedOption: string[];
|
|
79
|
+
selectedOptionTwo: string[];
|
|
80
|
+
selectedOptionThree?: string;
|
|
81
|
+
missingObject: any;
|
|
82
|
+
isGridView: boolean;
|
|
83
|
+
currentData: CardData;
|
|
84
|
+
selectedColumnCount: number;
|
|
85
|
+
selectedFilterTableCount: number;
|
|
86
|
+
isOPen: boolean;
|
|
87
|
+
selectedSortCount: number;
|
|
88
|
+
showFilter: boolean;
|
|
89
|
+
searchTerm: string;
|
|
90
|
+
showColumn: boolean;
|
|
91
|
+
showSort: boolean;
|
|
92
|
+
selectedAll: boolean;
|
|
93
|
+
visibleColumns: IDataFilter[];
|
|
94
|
+
filterArray: IDataFilter[];
|
|
95
|
+
sortOptions: IDataFilter[];
|
|
96
|
+
testParents: TestParentObject[];
|
|
97
|
+
getParentLabel(context: any): string;
|
|
98
|
+
onSave(): void;
|
|
99
|
+
onDataSave(event: {
|
|
100
|
+
index: number;
|
|
101
|
+
key: number | string;
|
|
102
|
+
data: Partial<User>;
|
|
103
|
+
}): Promise<void>;
|
|
104
|
+
onDelete(): void;
|
|
105
|
+
onDropdownChange(event: DropdownChangeEvent): void;
|
|
106
|
+
onSelectionChange(selectedRows: User[]): void;
|
|
107
|
+
handleExport(exportedData: Partial<any>[]): void;
|
|
108
|
+
private downloadCSV;
|
|
109
|
+
getCardDataByMailAddress(mailAddress: string): CardData | undefined;
|
|
110
|
+
openDetailView(mailAddress: string): void;
|
|
111
|
+
reset(): void;
|
|
112
|
+
clearData(): void;
|
|
113
|
+
loadMore(): void;
|
|
114
|
+
onColumnChange(event: boolean): void;
|
|
115
|
+
onSortChange(event: boolean): void;
|
|
116
|
+
onColumnsUpdated(updatedColumns: IDataFilter[]): void;
|
|
117
|
+
postSearch(payload: any): Promise<void>;
|
|
118
|
+
onFilterApplied(appliedFilter: IDataFilter[]): void;
|
|
119
|
+
getCondition(value: any): ConditionOptions | undefined;
|
|
120
|
+
onSortUpdated(updatedSorts: IDataFilter[]): void;
|
|
121
|
+
onSearch(event: {
|
|
122
|
+
key: string;
|
|
123
|
+
value: string;
|
|
124
|
+
}): Promise<void>;
|
|
125
|
+
clearLogs(sortValue?: string, order?: string): void;
|
|
126
|
+
onViewChange(isGridView: boolean): void;
|
|
127
|
+
onStateChange(event: {
|
|
128
|
+
key: string;
|
|
129
|
+
value: boolean;
|
|
130
|
+
}): void;
|
|
131
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserManagementComponent, never>;
|
|
132
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserManagementComponent, "lib-user-management", never, { "searchDebounceTime": { "alias": "searchDebounceTime"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; }, {}, never, never, false, never>;
|
|
133
|
+
}
|
|
134
|
+
export {};
|