@keycloakify/angular 0.0.1-rc.2 → 0.0.1-rc.21
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/README.md +76 -1
- package/account/DefaultPage/DefaultPage.d.ts +38 -0
- package/account/DefaultPage/index.d.ts +5 -0
- package/account/DefaultPage/public-api.d.ts +1 -0
- package/account/KcContext/KcContext.d.ts +1 -0
- package/account/KcContext/index.d.ts +5 -0
- package/account/KcContext/public-api.d.ts +1 -0
- package/account/classes/component-reference/component-reference.class.d.ts +6 -0
- package/account/classes/component-reference/index.d.ts +5 -0
- package/account/classes/component-reference/public-api.d.ts +1 -0
- package/account/containers/template/index.d.ts +5 -0
- package/account/containers/template/public-api.d.ts +1 -0
- package/account/containers/template/template.component.d.ts +39 -0
- package/account/directives/kc-class/index.d.ts +5 -0
- package/{login/directives → account/directives/kc-class}/kc-class.directive.d.ts +1 -1
- package/account/directives/kc-class/public-api.d.ts +1 -0
- package/account/i18n/i18n.d.ts +4 -0
- package/account/i18n/index.d.ts +5 -0
- package/account/i18n/public-api.d.ts +1 -0
- package/account/pages/account/account.component.d.ts +15 -0
- package/account/pages/account/index.d.ts +5 -0
- package/account/pages/account/public-api.d.ts +1 -0
- package/account/pages/applications/applications.component.d.ts +14 -0
- package/account/pages/applications/index.d.ts +5 -0
- package/account/pages/applications/public-api.d.ts +1 -0
- package/account/pages/federatedIdentity/federatedIdentity.component.d.ts +14 -0
- package/account/pages/federatedIdentity/index.d.ts +5 -0
- package/account/pages/federatedIdentity/public-api.d.ts +1 -0
- package/account/pages/log/index.d.ts +5 -0
- package/account/pages/log/log.component.d.ts +14 -0
- package/account/pages/log/public-api.d.ts +1 -0
- package/account/pages/password/index.d.ts +5 -0
- package/account/pages/password/password.component.d.ts +29 -0
- package/account/pages/password/public-api.d.ts +1 -0
- package/account/pages/sessions/index.d.ts +5 -0
- package/account/pages/sessions/public-api.d.ts +1 -0
- package/account/pages/sessions/sessions.component.d.ts +14 -0
- package/account/pages/totp/index.d.ts +5 -0
- package/account/pages/totp/public-api.d.ts +1 -0
- package/account/pages/totp/totp.component.d.ts +14 -0
- package/account/providers/keycloakify-angular/index.d.ts +5 -0
- package/account/providers/keycloakify-angular/keycloakify-angular.providers.d.ts +15 -0
- package/account/providers/keycloakify-angular/public-api.d.ts +1 -0
- package/account/services/account-resource-injector/account-resource-injector.service.d.ts +10 -0
- package/account/services/account-resource-injector/index.d.ts +5 -0
- package/account/services/account-resource-injector/public-api.d.ts +1 -0
- package/account/services/i18n/i18n.service.d.ts +6 -0
- package/account/services/i18n/index.d.ts +5 -0
- package/account/services/i18n/public-api.d.ts +1 -0
- package/account/tokens/classes/classes.token.d.ts +16 -0
- package/account/tokens/classes/index.d.ts +5 -0
- package/account/tokens/classes/public-api.d.ts +1 -0
- package/account/tokens/i18n/i18n.token.d.ts +2 -0
- package/account/tokens/i18n/index.d.ts +5 -0
- package/account/tokens/i18n/public-api.d.ts +1 -0
- package/account/tokens/kc-context/index.d.ts +5 -0
- package/account/tokens/kc-context/kc-context.token.d.ts +3 -0
- package/account/tokens/kc-context/public-api.d.ts +1 -0
- package/bin/main.js +224 -0
- package/esm2022/account/DefaultPage/DefaultPage.mjs +34 -0
- package/esm2022/account/DefaultPage/keycloakify-angular-account-DefaultPage.mjs +5 -0
- package/esm2022/account/DefaultPage/public-api.mjs +2 -0
- package/esm2022/account/KcContext/KcContext.mjs +2 -0
- package/esm2022/account/KcContext/keycloakify-angular-account-KcContext.mjs +5 -0
- package/esm2022/account/KcContext/public-api.mjs +2 -0
- package/esm2022/account/classes/component-reference/component-reference.class.mjs +3 -0
- package/esm2022/account/classes/component-reference/keycloakify-angular-account-classes-component-reference.mjs +5 -0
- package/esm2022/account/classes/component-reference/public-api.mjs +2 -0
- package/esm2022/account/containers/template/keycloakify-angular-account-containers-template.mjs +5 -0
- package/esm2022/account/containers/template/public-api.mjs +2 -0
- package/esm2022/account/containers/template/template.component.mjs +99 -0
- package/esm2022/account/directives/kc-class/kc-class.directive.mjs +141 -0
- package/esm2022/account/directives/kc-class/keycloakify-angular-account-directives-kc-class.mjs +5 -0
- package/esm2022/account/directives/kc-class/public-api.mjs +2 -0
- package/esm2022/account/i18n/i18n.mjs +2 -0
- package/esm2022/account/i18n/keycloakify-angular-account-i18n.mjs +5 -0
- package/esm2022/account/i18n/public-api.mjs +2 -0
- package/esm2022/account/pages/account/account.component.mjs +40 -0
- package/esm2022/account/pages/account/keycloakify-angular-account-pages-account.mjs +5 -0
- package/esm2022/account/pages/account/public-api.mjs +2 -0
- package/esm2022/account/pages/applications/applications.component.mjs +38 -0
- package/esm2022/account/pages/applications/keycloakify-angular-account-pages-applications.mjs +5 -0
- package/esm2022/account/pages/applications/public-api.mjs +2 -0
- package/esm2022/account/pages/federatedIdentity/federatedIdentity.component.mjs +37 -0
- package/esm2022/account/pages/federatedIdentity/keycloakify-angular-account-pages-federatedIdentity.mjs +5 -0
- package/esm2022/account/pages/federatedIdentity/public-api.mjs +2 -0
- package/esm2022/account/pages/log/keycloakify-angular-account-pages-log.mjs +5 -0
- package/esm2022/account/pages/log/log.component.mjs +37 -0
- package/esm2022/account/pages/log/public-api.mjs +2 -0
- package/esm2022/account/pages/password/keycloakify-angular-account-pages-password.mjs +5 -0
- package/esm2022/account/pages/password/password.component.mjs +109 -0
- package/esm2022/account/pages/password/public-api.mjs +2 -0
- package/esm2022/account/pages/sessions/keycloakify-angular-account-pages-sessions.mjs +5 -0
- package/esm2022/account/pages/sessions/public-api.mjs +2 -0
- package/esm2022/account/pages/sessions/sessions.component.mjs +37 -0
- package/esm2022/account/pages/totp/keycloakify-angular-account-pages-totp.mjs +5 -0
- package/esm2022/account/pages/totp/public-api.mjs +2 -0
- package/esm2022/account/pages/totp/totp.component.mjs +38 -0
- package/esm2022/account/providers/keycloakify-angular/keycloakify-angular-account-providers-keycloakify-angular.mjs +5 -0
- package/esm2022/account/providers/keycloakify-angular/keycloakify-angular.providers.mjs +49 -0
- package/esm2022/account/providers/keycloakify-angular/public-api.mjs +2 -0
- package/esm2022/account/services/account-resource-injector/account-resource-injector.service.mjs +37 -0
- package/esm2022/account/services/account-resource-injector/keycloakify-angular-account-services-account-resource-injector.mjs +5 -0
- package/esm2022/account/services/account-resource-injector/public-api.mjs +2 -0
- package/esm2022/account/services/i18n/i18n.service.mjs +12 -0
- package/esm2022/account/services/i18n/keycloakify-angular-account-services-i18n.mjs +5 -0
- package/esm2022/account/services/i18n/public-api.mjs +2 -0
- package/esm2022/account/tokens/classes/classes.token.mjs +3 -0
- package/esm2022/account/tokens/classes/keycloakify-angular-account-tokens-classes.mjs +5 -0
- package/esm2022/account/tokens/classes/public-api.mjs +2 -0
- package/esm2022/account/tokens/i18n/i18n.token.mjs +3 -0
- package/esm2022/account/tokens/i18n/keycloakify-angular-account-tokens-i18n.mjs +5 -0
- package/esm2022/account/tokens/i18n/public-api.mjs +2 -0
- package/esm2022/account/tokens/kc-context/kc-context.token.mjs +3 -0
- package/esm2022/account/tokens/kc-context/keycloakify-angular-account-tokens-kc-context.mjs +5 -0
- package/esm2022/account/tokens/kc-context/public-api.mjs +2 -0
- package/esm2022/keycloakify-angular.mjs +5 -0
- package/esm2022/lib/directives/attributes/attributes.directive.mjs +26 -0
- package/esm2022/lib/directives/attributes/keycloakify-angular-lib-directives-attributes.mjs +5 -0
- package/esm2022/lib/directives/attributes/public-api.mjs +2 -0
- package/esm2022/lib/keycloakify-angular-lib.mjs +5 -0
- package/esm2022/lib/models/script/keycloakify-angular-lib-models-script.mjs +5 -0
- package/esm2022/lib/models/script/public-api.mjs +2 -0
- package/esm2022/lib/models/script/script.model.mjs +2 -0
- package/esm2022/lib/pipes/input-type/input-type.pipe.mjs +20 -0
- package/esm2022/lib/pipes/input-type/keycloakify-angular-lib-pipes-input-type.mjs +5 -0
- package/esm2022/lib/pipes/input-type/public-api.mjs +2 -0
- package/esm2022/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.mjs +20 -0
- package/esm2022/lib/pipes/is-array-with-empty-object/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs +5 -0
- package/esm2022/lib/pipes/is-array-with-empty-object/public-api.mjs +2 -0
- package/esm2022/lib/pipes/kc-sanitize/kc-sanitize.pipe.mjs +29 -0
- package/esm2022/lib/pipes/kc-sanitize/keycloakify-angular-lib-pipes-kc-sanitize.mjs +5 -0
- package/esm2022/lib/pipes/kc-sanitize/public-api.mjs +2 -0
- package/esm2022/lib/pipes/to-array/keycloakify-angular-lib-pipes-to-array.mjs +5 -0
- package/esm2022/lib/pipes/to-array/public-api.mjs +2 -0
- package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +21 -0
- package/esm2022/lib/pipes/to-number/keycloakify-angular-lib-pipes-to-number.mjs +5 -0
- package/esm2022/lib/pipes/to-number/public-api.mjs +2 -0
- package/esm2022/lib/pipes/to-number/to-number.pipe.mjs +20 -0
- package/esm2022/lib/public-api.mjs +2 -0
- package/esm2022/lib/services/resource-injector/keycloakify-angular-lib-services-resource-injector.mjs +5 -0
- package/esm2022/lib/services/resource-injector/public-api.mjs +2 -0
- package/esm2022/lib/services/resource-injector/resource-injector.service.mjs +54 -0
- package/esm2022/lib/tokens/use-default-css/keycloakify-angular-lib-tokens-use-default-css.mjs +5 -0
- package/esm2022/lib/tokens/use-default-css/public-api.mjs +2 -0
- package/esm2022/lib/tokens/use-default-css/use-default-css.token.mjs +3 -0
- package/esm2022/login/KcContext/KcContext.mjs +2 -0
- package/esm2022/login/KcContext/keycloakify-angular-login-KcContext.mjs +5 -0
- package/esm2022/login/KcContext/public-api.mjs +2 -0
- package/esm2022/login/classes/component-reference/component-reference.class.mjs +3 -0
- package/esm2022/login/classes/component-reference/keycloakify-angular-login-classes-component-reference.mjs +5 -0
- package/esm2022/login/classes/component-reference/public-api.mjs +2 -0
- package/esm2022/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.mjs +106 -0
- package/esm2022/login/components/add-remove-buttons-multi-valued-attribute/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs +5 -0
- package/esm2022/login/components/add-remove-buttons-multi-valued-attribute/public-api.mjs +2 -0
- package/esm2022/login/components/field-errors/field-errors.component.mjs +33 -0
- package/esm2022/login/components/field-errors/keycloakify-angular-login-components-field-errors.mjs +5 -0
- package/esm2022/login/components/field-errors/public-api.mjs +2 -0
- package/esm2022/login/components/group-label/group-label.component.mjs +43 -0
- package/esm2022/login/components/group-label/keycloakify-angular-login-components-group-label.mjs +5 -0
- package/esm2022/login/components/group-label/public-api.mjs +2 -0
- package/esm2022/login/components/input-field-by-type/input-field-by-type.component.mjs +46 -0
- package/esm2022/login/components/input-field-by-type/keycloakify-angular-login-components-input-field-by-type.mjs +5 -0
- package/esm2022/login/components/input-field-by-type/public-api.mjs +2 -0
- package/esm2022/login/components/input-tag/input-tag.component.mjs +90 -0
- package/esm2022/login/components/input-tag/keycloakify-angular-login-components-input-tag.mjs +5 -0
- package/esm2022/login/components/input-tag/public-api.mjs +2 -0
- package/esm2022/login/components/input-tag-selects/input-tag-selects.component.mjs +117 -0
- package/esm2022/login/components/input-tag-selects/keycloakify-angular-login-components-input-tag-selects.mjs +5 -0
- package/esm2022/login/components/input-tag-selects/public-api.mjs +2 -0
- package/esm2022/login/components/logout-other-sessions/keycloakify-angular-login-components-logout-other-sessions.mjs +5 -0
- package/esm2022/login/components/logout-other-sessions/logout-other-sessions.component.mjs +32 -0
- package/esm2022/login/components/logout-other-sessions/public-api.mjs +2 -0
- package/esm2022/login/components/password-wrapper/keycloakify-angular-login-components-password-wrapper.mjs +5 -0
- package/esm2022/login/components/password-wrapper/password-wrapper.component.mjs +46 -0
- package/esm2022/login/components/password-wrapper/public-api.mjs +2 -0
- package/esm2022/login/components/select-tag/keycloakify-angular-login-components-select-tag.mjs +5 -0
- package/esm2022/login/components/select-tag/public-api.mjs +2 -0
- package/esm2022/login/components/select-tag/select-tag.component.mjs +82 -0
- package/esm2022/login/components/textarea-tag/keycloakify-angular-login-components-textarea-tag.mjs +5 -0
- package/esm2022/login/components/textarea-tag/public-api.mjs +2 -0
- package/esm2022/login/components/textarea-tag/textarea-tag.component.mjs +49 -0
- package/esm2022/login/components/user-profile-form-fields/keycloakify-angular-login-components-user-profile-form-fields.mjs +5 -0
- package/esm2022/login/components/user-profile-form-fields/public-api.mjs +2 -0
- package/esm2022/login/components/user-profile-form-fields/user-profile-form-fields.component.mjs +62 -0
- package/esm2022/login/containers/template/keycloakify-angular-login-containers-template.mjs +5 -0
- package/esm2022/login/containers/template/public-api.mjs +2 -0
- package/esm2022/login/containers/template/template.component.mjs +140 -0
- package/esm2022/login/directives/kc-class/kc-class.directive.mjs +138 -0
- package/esm2022/login/directives/kc-class/keycloakify-angular-login-directives-kc-class.mjs +5 -0
- package/esm2022/login/directives/kc-class/public-api.mjs +2 -0
- package/esm2022/login/getDefaultPageComponent/getDefaultPageComponent.mjs +77 -0
- package/esm2022/login/getDefaultPageComponent/keycloakify-angular-login-getDefaultPageComponent.mjs +5 -0
- package/esm2022/login/getDefaultPageComponent/public-api.mjs +2 -0
- package/esm2022/login/i18n/i18n.mjs +2 -0
- package/esm2022/login/i18n/keycloakify-angular-login-i18n.mjs +5 -0
- package/esm2022/login/i18n/public-api.mjs +2 -0
- package/esm2022/login/pages/code/code.component.mjs +41 -0
- package/esm2022/login/pages/code/keycloakify-angular-login-pages-code.mjs +5 -0
- package/esm2022/login/pages/code/public-api.mjs +2 -0
- package/esm2022/login/pages/delete-account-confirm/delete-account-confirm.component.mjs +41 -0
- package/esm2022/login/pages/delete-account-confirm/keycloakify-angular-login-pages-delete-account-confirm.mjs +5 -0
- package/esm2022/login/pages/delete-account-confirm/public-api.mjs +2 -0
- package/esm2022/login/pages/delete-credential/delete-credential.component.mjs +41 -0
- package/esm2022/login/pages/delete-credential/keycloakify-angular-login-pages-delete-credential.mjs +5 -0
- package/esm2022/login/pages/delete-credential/public-api.mjs +2 -0
- package/esm2022/login/pages/error/error.component.mjs +41 -0
- package/esm2022/login/pages/error/keycloakify-angular-login-pages-error.mjs +5 -0
- package/esm2022/login/pages/error/public-api.mjs +2 -0
- package/esm2022/login/pages/frontchannel-logout/frontchannel-logout.component.mjs +46 -0
- package/esm2022/login/pages/frontchannel-logout/keycloakify-angular-login-pages-frontchannel-logout.mjs +5 -0
- package/esm2022/login/pages/frontchannel-logout/public-api.mjs +2 -0
- package/esm2022/login/pages/idp-review-user-profile/idp-review-user-profile.component.mjs +54 -0
- package/esm2022/login/pages/idp-review-user-profile/keycloakify-angular-login-pages-idp-review-user-profile.mjs +5 -0
- package/esm2022/login/pages/idp-review-user-profile/public-api.mjs +2 -0
- package/esm2022/login/pages/info/info.component.mjs +50 -0
- package/esm2022/login/pages/info/keycloakify-angular-login-pages-info.mjs +5 -0
- package/esm2022/login/pages/info/public-api.mjs +2 -0
- package/esm2022/login/pages/login/keycloakify-angular-login-pages-login.mjs +5 -0
- package/esm2022/login/pages/login/login.component.mjs +45 -0
- package/esm2022/login/pages/login/public-api.mjs +2 -0
- package/esm2022/login/pages/login-config-totp/keycloakify-angular-login-pages-login-config-totp.mjs +5 -0
- package/esm2022/login/pages/login-config-totp/login-config-totp.component.mjs +43 -0
- package/esm2022/login/pages/login-config-totp/public-api.mjs +2 -0
- package/esm2022/login/pages/login-idp-link-confirm/keycloakify-angular-login-pages-login-idp-link-confirm.mjs +5 -0
- package/esm2022/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.mjs +37 -0
- package/esm2022/login/pages/login-idp-link-confirm/public-api.mjs +2 -0
- package/esm2022/login/pages/login-idp-link-confirm-override/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs +5 -0
- package/esm2022/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.mjs +37 -0
- package/esm2022/login/pages/login-idp-link-confirm-override/public-api.mjs +2 -0
- package/esm2022/login/pages/login-idp-link-email/keycloakify-angular-login-pages-login-idp-link-email.mjs +5 -0
- package/esm2022/login/pages/login-idp-link-email/login-idp-link-email.component.mjs +37 -0
- package/esm2022/login/pages/login-idp-link-email/public-api.mjs +2 -0
- package/esm2022/login/pages/login-oauth-grant/keycloakify-angular-login-pages-login-oauth-grant.mjs +5 -0
- package/esm2022/login/pages/login-oauth-grant/login-oauth-grant.component.mjs +38 -0
- package/esm2022/login/pages/login-oauth-grant/public-api.mjs +2 -0
- package/esm2022/login/pages/login-oauth2-device-verify-user-code/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs +5 -0
- package/esm2022/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.mjs +41 -0
- package/esm2022/login/pages/login-oauth2-device-verify-user-code/public-api.mjs +2 -0
- package/esm2022/login/pages/login-otp/keycloakify-angular-login-pages-login-otp.mjs +5 -0
- package/esm2022/login/pages/login-otp/login-otp.component.mjs +42 -0
- package/esm2022/login/pages/login-otp/public-api.mjs +2 -0
- package/esm2022/login/pages/login-page-expired/keycloakify-angular-login-pages-login-page-expired.mjs +5 -0
- package/esm2022/login/pages/login-page-expired/login-page-expired.component.mjs +40 -0
- package/esm2022/login/pages/login-page-expired/public-api.mjs +2 -0
- package/esm2022/login/pages/login-passkeys-conditional-authenticate/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs +5 -0
- package/esm2022/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.mjs +89 -0
- package/esm2022/login/pages/login-passkeys-conditional-authenticate/public-api.mjs +2 -0
- package/esm2022/login/pages/login-password/keycloakify-angular-login-pages-login-password.mjs +5 -0
- package/esm2022/login/pages/login-password/login-password.component.mjs +45 -0
- package/esm2022/login/pages/login-password/public-api.mjs +2 -0
- package/esm2022/login/pages/login-recovery-authn-code-config/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs +5 -0
- package/esm2022/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.mjs +44 -0
- package/esm2022/login/pages/login-recovery-authn-code-config/public-api.mjs +2 -0
- package/esm2022/login/pages/login-recovery-authn-code-input/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs +5 -0
- package/esm2022/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.mjs +42 -0
- package/esm2022/login/pages/login-recovery-authn-code-input/public-api.mjs +2 -0
- package/esm2022/login/pages/login-reset-otp/keycloakify-angular-login-pages-login-reset-otp.mjs +5 -0
- package/esm2022/login/pages/login-reset-otp/login-reset-otp.component.mjs +41 -0
- package/esm2022/login/pages/login-reset-otp/public-api.mjs +2 -0
- package/esm2022/login/pages/login-reset-password/keycloakify-angular-login-pages-login-reset-password.mjs +5 -0
- package/esm2022/login/pages/login-reset-password/login-reset-password.component.mjs +42 -0
- package/esm2022/login/pages/login-reset-password/public-api.mjs +2 -0
- package/esm2022/login/pages/login-update-password/keycloakify-angular-login-pages-login-update-password.mjs +5 -0
- package/esm2022/login/pages/login-update-password/login-update-password.component.mjs +44 -0
- package/esm2022/login/pages/login-update-password/public-api.mjs +2 -0
- package/esm2022/login/pages/login-update-profile/keycloakify-angular-login-pages-login-update-profile.mjs +5 -0
- package/esm2022/login/pages/login-update-profile/login-update-profile.component.mjs +51 -0
- package/esm2022/login/pages/login-update-profile/public-api.mjs +2 -0
- package/esm2022/login/pages/login-username/keycloakify-angular-login-pages-login-username.mjs +5 -0
- package/esm2022/login/pages/login-username/login-username.component.mjs +44 -0
- package/esm2022/login/pages/login-username/public-api.mjs +2 -0
- package/esm2022/login/pages/login-verify-email/keycloakify-angular-login-pages-login-verify-email.mjs +5 -0
- package/esm2022/login/pages/login-verify-email/login-verify-email.component.mjs +41 -0
- package/esm2022/login/pages/login-verify-email/public-api.mjs +2 -0
- package/esm2022/login/pages/login-x509-info/keycloakify-angular-login-pages-login-x509-info.mjs +5 -0
- package/esm2022/login/pages/login-x509-info/login-x509-info.component.mjs +41 -0
- package/esm2022/login/pages/login-x509-info/public-api.mjs +2 -0
- package/esm2022/login/pages/logout-confirm/keycloakify-angular-login-pages-logout-confirm.mjs +5 -0
- package/esm2022/login/pages/logout-confirm/logout-confirm.component.mjs +37 -0
- package/esm2022/login/pages/logout-confirm/public-api.mjs +2 -0
- package/esm2022/login/pages/register/keycloakify-angular-login-pages-register.mjs +5 -0
- package/esm2022/login/pages/register/public-api.mjs +2 -0
- package/esm2022/login/pages/register/register.component.mjs +56 -0
- package/esm2022/login/pages/saml-post-form/keycloakify-angular-login-pages-saml-post-form.mjs +5 -0
- package/esm2022/login/pages/saml-post-form/public-api.mjs +2 -0
- package/esm2022/login/pages/saml-post-form/saml-post-form.component.mjs +51 -0
- package/esm2022/login/pages/select-authenticator/keycloakify-angular-login-pages-select-authenticator.mjs +5 -0
- package/esm2022/login/pages/select-authenticator/public-api.mjs +2 -0
- package/esm2022/login/pages/select-authenticator/select-authenticator.component.mjs +42 -0
- package/esm2022/login/pages/terms/keycloakify-angular-login-pages-terms.mjs +5 -0
- package/esm2022/login/pages/terms/public-api.mjs +2 -0
- package/esm2022/login/pages/terms/terms.component.mjs +41 -0
- package/esm2022/login/pages/update-email/keycloakify-angular-login-pages-update-email.mjs +5 -0
- package/esm2022/login/pages/update-email/public-api.mjs +2 -0
- package/esm2022/login/pages/update-email/update-email.component.mjs +48 -0
- package/esm2022/login/pages/webauthn-authenticate/keycloakify-angular-login-pages-webauthn-authenticate.mjs +5 -0
- package/esm2022/login/pages/webauthn-authenticate/public-api.mjs +2 -0
- package/esm2022/login/pages/webauthn-authenticate/webauthn-authenticate.component.mjs +81 -0
- package/esm2022/login/pages/webauthn-error/keycloakify-angular-login-pages-webauthn-error.mjs +5 -0
- package/esm2022/login/pages/webauthn-error/public-api.mjs +2 -0
- package/esm2022/login/pages/webauthn-error/webauthn-error.component.mjs +50 -0
- package/esm2022/login/pages/webauthn-register/keycloakify-angular-login-pages-webauthn-register.mjs +5 -0
- package/esm2022/login/pages/webauthn-register/public-api.mjs +2 -0
- package/esm2022/login/pages/webauthn-register/webauthn-register.component.mjs +77 -0
- package/esm2022/login/providers/keycloakify-angular/keycloakify-angular-login-providers-keycloakify-angular.mjs +5 -0
- package/esm2022/login/providers/keycloakify-angular/keycloakify-angular.providers.mjs +54 -0
- package/esm2022/login/providers/keycloakify-angular/public-api.mjs +2 -0
- package/esm2022/login/services/i18n/i18n.service.mjs +12 -0
- package/esm2022/login/services/i18n/keycloakify-angular-login-services-i18n.mjs +5 -0
- package/esm2022/login/services/i18n/public-api.mjs +2 -0
- package/esm2022/login/services/login-resource-injector/keycloakify-angular-login-services-login-resource-injector.mjs +5 -0
- package/esm2022/login/services/login-resource-injector/login-resource-injector.service.mjs +68 -0
- package/esm2022/login/services/login-resource-injector/public-api.mjs +2 -0
- package/esm2022/login/services/submit/keycloakify-angular-login-services-submit.mjs +5 -0
- package/esm2022/login/services/submit/public-api.mjs +2 -0
- package/esm2022/login/services/submit/submit.service.mjs +20 -0
- package/esm2022/login/services/user-profile-form/keycloakify-angular-login-services-user-profile-form.mjs +5 -0
- package/esm2022/login/services/user-profile-form/public-api.mjs +2 -0
- package/esm2022/login/services/user-profile-form/user-profile-form.service.mjs +1019 -0
- package/esm2022/login/tokens/classes/classes.token.mjs +3 -0
- package/esm2022/login/tokens/classes/keycloakify-angular-login-tokens-classes.mjs +5 -0
- package/esm2022/login/tokens/classes/public-api.mjs +2 -0
- package/esm2022/login/tokens/i18n/i18n.token.mjs +3 -0
- package/esm2022/login/tokens/i18n/keycloakify-angular-login-tokens-i18n.mjs +5 -0
- package/esm2022/login/tokens/i18n/public-api.mjs +2 -0
- package/esm2022/login/tokens/kc-context/kc-context.token.mjs +3 -0
- package/esm2022/login/tokens/kc-context/keycloakify-angular-login-tokens-kc-context.mjs +5 -0
- package/esm2022/login/tokens/kc-context/public-api.mjs +2 -0
- package/esm2022/login/tokens/make-user-confirm-password/keycloakify-angular-login-tokens-make-user-confirm-password.mjs +5 -0
- package/esm2022/login/tokens/make-user-confirm-password/make-user-confirm-password.token.mjs +3 -0
- package/esm2022/login/tokens/make-user-confirm-password/public-api.mjs +2 -0
- package/esm2022/public-api.mjs +2 -0
- package/fesm2022/keycloakify-angular-account-DefaultPage.mjs +39 -0
- package/fesm2022/keycloakify-angular-account-DefaultPage.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-KcContext.mjs +4 -0
- package/fesm2022/keycloakify-angular-account-KcContext.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-classes-component-reference.mjs +9 -0
- package/fesm2022/keycloakify-angular-account-classes-component-reference.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-containers-template.mjs +106 -0
- package/fesm2022/keycloakify-angular-account-containers-template.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-directives-kc-class.mjs +148 -0
- package/fesm2022/keycloakify-angular-account-directives-kc-class.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-i18n.mjs +4 -0
- package/fesm2022/keycloakify-angular-account-i18n.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-pages-account.mjs +47 -0
- package/fesm2022/keycloakify-angular-account-pages-account.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-pages-applications.mjs +45 -0
- package/fesm2022/keycloakify-angular-account-pages-applications.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-pages-federatedIdentity.mjs +44 -0
- package/fesm2022/keycloakify-angular-account-pages-federatedIdentity.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-pages-log.mjs +44 -0
- package/fesm2022/keycloakify-angular-account-pages-log.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-pages-password.mjs +116 -0
- package/fesm2022/keycloakify-angular-account-pages-password.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-pages-sessions.mjs +44 -0
- package/fesm2022/keycloakify-angular-account-pages-sessions.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-pages-totp.mjs +45 -0
- package/fesm2022/keycloakify-angular-account-pages-totp.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-providers-keycloakify-angular.mjs +56 -0
- package/fesm2022/keycloakify-angular-account-providers-keycloakify-angular.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-services-account-resource-injector.mjs +44 -0
- package/fesm2022/keycloakify-angular-account-services-account-resource-injector.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-services-i18n.mjs +19 -0
- package/fesm2022/keycloakify-angular-account-services-i18n.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-tokens-classes.mjs +10 -0
- package/fesm2022/keycloakify-angular-account-tokens-classes.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-tokens-i18n.mjs +10 -0
- package/fesm2022/keycloakify-angular-account-tokens-i18n.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-account-tokens-kc-context.mjs +10 -0
- package/fesm2022/keycloakify-angular-account-tokens-kc-context.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-lib-directives-attributes.mjs +33 -0
- package/fesm2022/keycloakify-angular-lib-directives-attributes.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-lib-models-script.mjs +4 -0
- package/fesm2022/keycloakify-angular-lib-models-script.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-lib-pipes-input-type.mjs +27 -0
- package/fesm2022/keycloakify-angular-lib-pipes-input-type.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs +27 -0
- package/fesm2022/keycloakify-angular-lib-pipes-is-array-with-empty-object.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-lib-pipes-kc-sanitize.mjs +36 -0
- package/fesm2022/keycloakify-angular-lib-pipes-kc-sanitize.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-lib-pipes-to-array.mjs +28 -0
- package/fesm2022/keycloakify-angular-lib-pipes-to-array.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-lib-pipes-to-number.mjs +27 -0
- package/fesm2022/keycloakify-angular-lib-pipes-to-number.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-lib-services-resource-injector.mjs +61 -0
- package/fesm2022/keycloakify-angular-lib-services-resource-injector.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-lib-tokens-use-default-css.mjs +10 -0
- package/fesm2022/keycloakify-angular-lib-tokens-use-default-css.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-lib.mjs +8 -0
- package/fesm2022/keycloakify-angular-lib.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-KcContext.mjs +4 -0
- package/fesm2022/keycloakify-angular-login-KcContext.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-classes-component-reference.mjs +9 -0
- package/fesm2022/keycloakify-angular-login-classes-component-reference.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs +113 -0
- package/fesm2022/keycloakify-angular-login-components-add-remove-buttons-multi-valued-attribute.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-field-errors.mjs +40 -0
- package/fesm2022/keycloakify-angular-login-components-field-errors.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-group-label.mjs +50 -0
- package/fesm2022/keycloakify-angular-login-components-group-label.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-input-field-by-type.mjs +53 -0
- package/fesm2022/keycloakify-angular-login-components-input-field-by-type.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-input-tag-selects.mjs +124 -0
- package/fesm2022/keycloakify-angular-login-components-input-tag-selects.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-input-tag.mjs +97 -0
- package/fesm2022/keycloakify-angular-login-components-input-tag.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-logout-other-sessions.mjs +39 -0
- package/fesm2022/keycloakify-angular-login-components-logout-other-sessions.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-password-wrapper.mjs +53 -0
- package/fesm2022/keycloakify-angular-login-components-password-wrapper.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-select-tag.mjs +89 -0
- package/fesm2022/keycloakify-angular-login-components-select-tag.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-textarea-tag.mjs +56 -0
- package/fesm2022/keycloakify-angular-login-components-textarea-tag.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-components-user-profile-form-fields.mjs +69 -0
- package/fesm2022/keycloakify-angular-login-components-user-profile-form-fields.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-containers-template.mjs +147 -0
- package/fesm2022/keycloakify-angular-login-containers-template.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-directives-kc-class.mjs +145 -0
- package/fesm2022/keycloakify-angular-login-directives-kc-class.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-getDefaultPageComponent.mjs +83 -0
- package/fesm2022/keycloakify-angular-login-getDefaultPageComponent.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-i18n.mjs +4 -0
- package/fesm2022/keycloakify-angular-login-i18n.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-code.mjs +48 -0
- package/fesm2022/keycloakify-angular-login-pages-code.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-delete-account-confirm.mjs +48 -0
- package/fesm2022/keycloakify-angular-login-pages-delete-account-confirm.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-delete-credential.mjs +48 -0
- package/fesm2022/keycloakify-angular-login-pages-delete-credential.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-error.mjs +48 -0
- package/fesm2022/keycloakify-angular-login-pages-error.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-frontchannel-logout.mjs +53 -0
- package/fesm2022/keycloakify-angular-login-pages-frontchannel-logout.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-idp-review-user-profile.mjs +61 -0
- package/fesm2022/keycloakify-angular-login-pages-idp-review-user-profile.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-info.mjs +57 -0
- package/fesm2022/keycloakify-angular-login-pages-info.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-config-totp.mjs +50 -0
- package/fesm2022/keycloakify-angular-login-pages-login-config-totp.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs +44 -0
- package/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm-override.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm.mjs +44 -0
- package/fesm2022/keycloakify-angular-login-pages-login-idp-link-confirm.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-idp-link-email.mjs +44 -0
- package/fesm2022/keycloakify-angular-login-pages-login-idp-link-email.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-oauth-grant.mjs +45 -0
- package/fesm2022/keycloakify-angular-login-pages-login-oauth-grant.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs +48 -0
- package/fesm2022/keycloakify-angular-login-pages-login-oauth2-device-verify-user-code.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-otp.mjs +49 -0
- package/fesm2022/keycloakify-angular-login-pages-login-otp.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-page-expired.mjs +47 -0
- package/fesm2022/keycloakify-angular-login-pages-login-page-expired.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs +96 -0
- package/fesm2022/keycloakify-angular-login-pages-login-passkeys-conditional-authenticate.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-password.mjs +52 -0
- package/fesm2022/keycloakify-angular-login-pages-login-password.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs +51 -0
- package/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-config.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs +49 -0
- package/fesm2022/keycloakify-angular-login-pages-login-recovery-authn-code-input.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-reset-otp.mjs +48 -0
- package/fesm2022/keycloakify-angular-login-pages-login-reset-otp.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-reset-password.mjs +49 -0
- package/fesm2022/keycloakify-angular-login-pages-login-reset-password.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-update-password.mjs +51 -0
- package/fesm2022/keycloakify-angular-login-pages-login-update-password.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-update-profile.mjs +58 -0
- package/fesm2022/keycloakify-angular-login-pages-login-update-profile.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-username.mjs +51 -0
- package/fesm2022/keycloakify-angular-login-pages-login-username.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-verify-email.mjs +48 -0
- package/fesm2022/keycloakify-angular-login-pages-login-verify-email.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login-x509-info.mjs +48 -0
- package/fesm2022/keycloakify-angular-login-pages-login-x509-info.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-login.mjs +52 -0
- package/fesm2022/keycloakify-angular-login-pages-login.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-logout-confirm.mjs +44 -0
- package/fesm2022/keycloakify-angular-login-pages-logout-confirm.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-register.mjs +63 -0
- package/fesm2022/keycloakify-angular-login-pages-register.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-saml-post-form.mjs +58 -0
- package/fesm2022/keycloakify-angular-login-pages-saml-post-form.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-select-authenticator.mjs +49 -0
- package/fesm2022/keycloakify-angular-login-pages-select-authenticator.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-terms.mjs +48 -0
- package/fesm2022/keycloakify-angular-login-pages-terms.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-update-email.mjs +55 -0
- package/fesm2022/keycloakify-angular-login-pages-update-email.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-webauthn-authenticate.mjs +88 -0
- package/fesm2022/keycloakify-angular-login-pages-webauthn-authenticate.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-webauthn-error.mjs +57 -0
- package/fesm2022/keycloakify-angular-login-pages-webauthn-error.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-pages-webauthn-register.mjs +84 -0
- package/fesm2022/keycloakify-angular-login-pages-webauthn-register.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-providers-keycloakify-angular.mjs +61 -0
- package/fesm2022/keycloakify-angular-login-providers-keycloakify-angular.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-services-i18n.mjs +19 -0
- package/fesm2022/keycloakify-angular-login-services-i18n.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-services-login-resource-injector.mjs +75 -0
- package/fesm2022/keycloakify-angular-login-services-login-resource-injector.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-services-submit.mjs +27 -0
- package/fesm2022/keycloakify-angular-login-services-submit.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-services-user-profile-form.mjs +1026 -0
- package/fesm2022/keycloakify-angular-login-services-user-profile-form.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-tokens-classes.mjs +10 -0
- package/fesm2022/keycloakify-angular-login-tokens-classes.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-tokens-i18n.mjs +10 -0
- package/fesm2022/keycloakify-angular-login-tokens-i18n.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-tokens-kc-context.mjs +10 -0
- package/fesm2022/keycloakify-angular-login-tokens-kc-context.mjs.map +1 -0
- package/fesm2022/keycloakify-angular-login-tokens-make-user-confirm-password.mjs +10 -0
- package/fesm2022/keycloakify-angular-login-tokens-make-user-confirm-password.mjs.map +1 -0
- package/fesm2022/keycloakify-angular.mjs +8 -0
- package/fesm2022/keycloakify-angular.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/directives/attributes/index.d.ts +5 -0
- package/{login/directives/index.d.ts → lib/directives/attributes/public-api.d.ts} +0 -1
- package/lib/index.d.ts +5 -0
- package/lib/models/script/index.d.ts +5 -0
- package/lib/pipes/input-type/index.d.ts +5 -0
- package/lib/pipes/input-type/public-api.d.ts +1 -0
- package/lib/pipes/is-array-with-empty-object/index.d.ts +5 -0
- package/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.d.ts +7 -0
- package/lib/pipes/is-array-with-empty-object/public-api.d.ts +1 -0
- package/lib/pipes/kc-sanitize/index.d.ts +5 -0
- package/{login/pipes → lib/pipes/kc-sanitize}/kc-sanitize.pipe.d.ts +3 -4
- package/lib/pipes/kc-sanitize/public-api.d.ts +1 -0
- package/lib/pipes/to-array/index.d.ts +5 -0
- package/lib/pipes/to-array/public-api.d.ts +1 -0
- package/lib/pipes/to-number/index.d.ts +5 -0
- package/lib/pipes/to-number/public-api.d.ts +1 -0
- package/lib/public-api.d.ts +1 -10
- package/lib/services/resource-injector/index.d.ts +5 -0
- package/lib/services/{index.d.ts → resource-injector/public-api.d.ts} +0 -1
- package/lib/services/{resource-injector.service.d.ts → resource-injector/resource-injector.service.d.ts} +1 -1
- package/lib/tokens/use-default-css/index.d.ts +5 -0
- package/lib/tokens/use-default-css/public-api.d.ts +1 -0
- package/lib/tokens/use-default-css/use-default-css.token.d.ts +2 -0
- package/login/KcContext/index.d.ts +5 -0
- package/login/KcContext/public-api.d.ts +1 -0
- package/login/classes/{component-reference.class.d.ts → component-reference/component-reference.class.d.ts} +1 -1
- package/login/classes/component-reference/index.d.ts +5 -0
- package/login/classes/component-reference/public-api.d.ts +1 -0
- package/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.d.ts +4 -2
- package/login/components/add-remove-buttons-multi-valued-attribute/index.d.ts +5 -0
- package/login/components/add-remove-buttons-multi-valued-attribute/public-api.d.ts +1 -0
- package/login/components/field-errors/field-errors.component.d.ts +4 -4
- package/login/components/field-errors/index.d.ts +5 -0
- package/login/components/field-errors/public-api.d.ts +1 -0
- package/login/components/group-label/group-label.component.d.ts +5 -3
- package/login/components/group-label/index.d.ts +5 -0
- package/login/components/group-label/public-api.d.ts +1 -0
- package/login/components/input-field-by-type/index.d.ts +5 -0
- package/login/components/input-field-by-type/input-field-by-type.component.d.ts +4 -4
- package/login/components/input-field-by-type/public-api.d.ts +1 -0
- package/login/components/input-tag/index.d.ts +5 -0
- package/login/components/input-tag/input-tag.component.d.ts +6 -4
- package/login/components/input-tag/public-api.d.ts +1 -0
- package/login/components/input-tag-selects/index.d.ts +5 -0
- package/login/components/input-tag-selects/input-tag-selects.component.d.ts +6 -4
- package/login/components/input-tag-selects/public-api.d.ts +1 -0
- package/login/components/logout-other-sessions/index.d.ts +5 -0
- package/login/components/logout-other-sessions/logout-other-sessions.component.d.ts +4 -2
- package/login/components/logout-other-sessions/public-api.d.ts +1 -0
- package/login/components/password-wrapper/index.d.ts +5 -0
- package/login/components/password-wrapper/password-wrapper.component.d.ts +4 -2
- package/login/components/password-wrapper/public-api.d.ts +1 -0
- package/login/components/select-tag/index.d.ts +5 -0
- package/login/components/select-tag/public-api.d.ts +1 -0
- package/login/components/select-tag/select-tag.component.d.ts +6 -4
- package/login/components/textarea-tag/index.d.ts +5 -0
- package/login/components/textarea-tag/public-api.d.ts +1 -0
- package/login/components/textarea-tag/textarea-tag.component.d.ts +4 -4
- package/login/components/user-profile-form-fields/index.d.ts +5 -0
- package/login/components/user-profile-form-fields/public-api.d.ts +1 -0
- package/login/components/user-profile-form-fields/user-profile-form-fields.component.d.ts +8 -5
- package/login/containers/template/index.d.ts +5 -0
- package/login/containers/template/public-api.d.ts +1 -0
- package/login/containers/template/template.component.d.ts +47 -0
- package/login/directives/kc-class/index.d.ts +5 -0
- package/login/directives/kc-class/kc-class.directive.d.ts +26 -0
- package/login/directives/kc-class/public-api.d.ts +1 -0
- package/login/getDefaultPageComponent/getDefaultPageComponent.d.ts +3 -0
- package/login/getDefaultPageComponent/index.d.ts +5 -0
- package/login/getDefaultPageComponent/public-api.d.ts +1 -0
- package/login/{i18n.d.ts → i18n/i18n.d.ts} +1 -1
- package/login/i18n/index.d.ts +5 -0
- package/login/i18n/public-api.d.ts +1 -0
- package/login/pages/code/code.component.d.ts +15 -4
- package/login/pages/code/index.d.ts +5 -0
- package/login/pages/code/public-api.d.ts +1 -0
- package/login/pages/delete-account-confirm/delete-account-confirm.component.d.ts +15 -4
- package/login/pages/delete-account-confirm/index.d.ts +5 -0
- package/login/pages/delete-account-confirm/public-api.d.ts +1 -0
- package/login/pages/delete-credential/delete-credential.component.d.ts +13 -7
- package/login/pages/delete-credential/index.d.ts +5 -0
- package/login/pages/delete-credential/public-api.d.ts +1 -0
- package/login/pages/error/error.component.d.ts +15 -4
- package/login/pages/error/index.d.ts +5 -0
- package/login/pages/error/public-api.d.ts +1 -0
- package/login/pages/frontchannel-logout/frontchannel-logout.component.d.ts +13 -7
- package/login/pages/frontchannel-logout/index.d.ts +5 -0
- package/login/pages/frontchannel-logout/public-api.d.ts +1 -0
- package/login/pages/idp-review-user-profile/idp-review-user-profile.component.d.ts +18 -8
- package/login/pages/idp-review-user-profile/index.d.ts +5 -0
- package/login/pages/idp-review-user-profile/public-api.d.ts +1 -0
- package/login/pages/info/index.d.ts +5 -0
- package/login/pages/info/info.component.d.ts +13 -13
- package/login/pages/info/public-api.d.ts +1 -0
- package/login/pages/login/index.d.ts +5 -0
- package/login/pages/login/login.component.d.ts +14 -8
- package/login/pages/login/public-api.d.ts +1 -0
- package/login/pages/login-config-totp/index.d.ts +5 -0
- package/login/pages/login-config-totp/login-config-totp.component.d.ts +13 -7
- package/login/pages/login-config-totp/public-api.d.ts +1 -0
- package/login/pages/login-idp-link-confirm/index.d.ts +5 -0
- package/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.d.ts +12 -9
- package/login/pages/login-idp-link-confirm/public-api.d.ts +1 -0
- package/login/pages/login-idp-link-confirm-override/index.d.ts +5 -0
- package/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.d.ts +12 -9
- package/login/pages/login-idp-link-confirm-override/public-api.d.ts +1 -0
- package/login/pages/login-idp-link-email/index.d.ts +5 -0
- package/login/pages/login-idp-link-email/login-idp-link-email.component.d.ts +12 -9
- package/login/pages/login-idp-link-email/public-api.d.ts +1 -0
- package/login/pages/login-oauth-grant/index.d.ts +5 -0
- package/login/pages/login-oauth-grant/login-oauth-grant.component.d.ts +12 -9
- package/login/pages/login-oauth-grant/public-api.d.ts +1 -0
- package/login/pages/login-oauth2-device-verify-user-code/index.d.ts +5 -0
- package/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.d.ts +13 -7
- package/login/pages/login-oauth2-device-verify-user-code/public-api.d.ts +1 -0
- package/login/pages/login-otp/index.d.ts +5 -0
- package/login/pages/login-otp/login-otp.component.d.ts +13 -7
- package/login/pages/login-otp/public-api.d.ts +1 -0
- package/login/pages/login-page-expired/index.d.ts +5 -0
- package/login/pages/login-page-expired/login-page-expired.component.d.ts +13 -7
- package/login/pages/login-page-expired/public-api.d.ts +1 -0
- package/login/pages/login-passkeys-conditional-authenticate/index.d.ts +5 -0
- package/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.d.ts +15 -7
- package/login/pages/login-passkeys-conditional-authenticate/public-api.d.ts +1 -0
- package/login/pages/login-password/index.d.ts +5 -0
- package/login/pages/login-password/login-password.component.d.ts +14 -7
- package/login/pages/login-password/public-api.d.ts +1 -0
- package/login/pages/login-recovery-authn-code-config/index.d.ts +5 -0
- package/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.d.ts +13 -7
- package/login/pages/login-recovery-authn-code-config/public-api.d.ts +1 -0
- package/login/pages/login-recovery-authn-code-input/index.d.ts +5 -0
- package/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.d.ts +13 -7
- package/login/pages/login-recovery-authn-code-input/public-api.d.ts +1 -0
- package/login/pages/login-reset-otp/index.d.ts +5 -0
- package/login/pages/login-reset-otp/login-reset-otp.component.d.ts +13 -7
- package/login/pages/login-reset-otp/public-api.d.ts +1 -0
- package/login/pages/login-reset-password/index.d.ts +5 -0
- package/login/pages/login-reset-password/login-reset-password.component.d.ts +13 -7
- package/login/pages/login-reset-password/public-api.d.ts +1 -0
- package/login/pages/login-update-password/index.d.ts +5 -0
- package/login/pages/login-update-password/login-update-password.component.d.ts +13 -7
- package/login/pages/login-update-password/public-api.d.ts +1 -0
- package/login/pages/login-update-profile/index.d.ts +5 -0
- package/login/pages/login-update-profile/login-update-profile.component.d.ts +17 -7
- package/login/pages/login-update-profile/public-api.d.ts +1 -0
- package/login/pages/login-username/index.d.ts +5 -0
- package/login/pages/login-username/login-username.component.d.ts +14 -8
- package/login/pages/login-username/public-api.d.ts +1 -0
- package/login/pages/login-verify-email/index.d.ts +5 -0
- package/login/pages/login-verify-email/login-verify-email.component.d.ts +13 -7
- package/login/pages/login-verify-email/public-api.d.ts +1 -0
- package/login/pages/login-x509-info/index.d.ts +5 -0
- package/login/pages/login-x509-info/login-x509-info.component.d.ts +13 -7
- package/login/pages/login-x509-info/public-api.d.ts +1 -0
- package/login/pages/logout-confirm/index.d.ts +5 -0
- package/login/pages/logout-confirm/logout-confirm.component.d.ts +12 -9
- package/login/pages/logout-confirm/public-api.d.ts +1 -0
- package/login/pages/register/index.d.ts +5 -0
- package/login/pages/register/public-api.d.ts +1 -0
- package/login/pages/register/register.component.d.ts +19 -9
- package/login/pages/saml-post-form/index.d.ts +5 -0
- package/login/pages/saml-post-form/public-api.d.ts +1 -0
- package/login/pages/saml-post-form/saml-post-form.component.d.ts +14 -9
- package/login/pages/select-authenticator/index.d.ts +5 -0
- package/login/pages/select-authenticator/public-api.d.ts +1 -0
- package/login/pages/select-authenticator/select-authenticator.component.d.ts +13 -7
- package/login/pages/terms/index.d.ts +5 -0
- package/login/pages/terms/public-api.d.ts +1 -0
- package/login/pages/terms/terms.component.d.ts +13 -7
- package/login/pages/update-email/index.d.ts +5 -0
- package/login/pages/update-email/public-api.d.ts +1 -0
- package/login/pages/update-email/update-email.component.d.ts +16 -9
- package/login/pages/webauthn-authenticate/index.d.ts +5 -0
- package/login/pages/webauthn-authenticate/public-api.d.ts +1 -0
- package/login/pages/webauthn-authenticate/webauthn-authenticate.component.d.ts +14 -10
- package/login/pages/webauthn-error/index.d.ts +5 -0
- package/login/pages/webauthn-error/public-api.d.ts +1 -0
- package/login/pages/webauthn-error/webauthn-error.component.d.ts +13 -7
- package/login/pages/webauthn-register/index.d.ts +5 -0
- package/login/pages/webauthn-register/public-api.d.ts +1 -0
- package/login/pages/webauthn-register/webauthn-register.component.d.ts +14 -10
- package/login/providers/keycloakify-angular/index.d.ts +5 -0
- package/login/providers/keycloakify-angular/keycloakify-angular.providers.d.ts +16 -0
- package/login/providers/keycloakify-angular/public-api.d.ts +1 -0
- package/login/services/i18n/i18n.service.d.ts +6 -0
- package/login/services/i18n/index.d.ts +5 -0
- package/login/services/i18n/public-api.d.ts +1 -0
- package/login/services/login-resource-injector/index.d.ts +5 -0
- package/login/services/{login-resource-injector.service.d.ts → login-resource-injector/login-resource-injector.service.d.ts} +1 -1
- package/login/services/{index.d.ts → login-resource-injector/public-api.d.ts} +0 -1
- package/login/services/submit/index.d.ts +5 -0
- package/login/services/submit/public-api.d.ts +1 -0
- package/login/services/submit/submit.service.d.ts +9 -0
- package/login/services/user-profile-form/index.d.ts +5 -0
- package/login/services/user-profile-form/public-api.d.ts +1 -0
- package/login/services/{user-profile-form.service.d.ts → user-profile-form/user-profile-form.service.d.ts} +2 -1
- package/{lib/providers/keycloakify-angular.providers.d.ts → login/tokens/classes/classes.token.d.ts} +1 -24
- package/login/tokens/classes/index.d.ts +5 -0
- package/login/tokens/classes/public-api.d.ts +1 -0
- package/login/tokens/i18n/i18n.token.d.ts +2 -0
- package/login/tokens/i18n/index.d.ts +5 -0
- package/login/tokens/i18n/public-api.d.ts +1 -0
- package/login/tokens/kc-context/index.d.ts +5 -0
- package/login/tokens/kc-context/kc-context.token.d.ts +3 -0
- package/login/tokens/kc-context/public-api.d.ts +1 -0
- package/login/tokens/make-user-confirm-password/index.d.ts +5 -0
- package/login/tokens/make-user-confirm-password/make-user-confirm-password.token.d.ts +2 -0
- package/login/tokens/make-user-confirm-password/public-api.d.ts +1 -0
- package/package.json +591 -338
- package/public-api.d.ts +1 -0
- package/src/account/DefaultPage.ts +61 -0
- package/src/account/KcContext.ts +1 -0
- package/src/account/classes/component-reference/component-reference.class.ts +6 -0
- package/src/account/containers/template/template.component.html +130 -0
- package/src/account/containers/template/template.component.ts +118 -0
- package/src/account/directives/kc-class/kc-class.directive.ts +170 -0
- package/src/account/i18n.ts +4 -0
- package/src/account/pages/account/account.component.html +161 -0
- package/src/account/pages/account/account.component.ts +35 -0
- package/src/account/pages/applications/applications.component.html +148 -0
- package/src/account/pages/applications/applications.component.ts +33 -0
- package/src/account/pages/federatedIdentity/federatedIdentity.component.html +93 -0
- package/src/account/pages/federatedIdentity/federatedIdentity.component.ts +32 -0
- package/src/account/pages/log/log.component.html +40 -0
- package/src/account/pages/log/log.component.ts +32 -0
- package/src/account/pages/password/password.component.html +127 -0
- package/src/account/pages/password/password.component.ts +113 -0
- package/src/account/pages/sessions/sessions.component.html +59 -0
- package/src/account/pages/sessions/sessions.component.ts +32 -0
- package/src/account/pages/totp/totp.component.html +254 -0
- package/src/account/pages/totp/totp.component.ts +33 -0
- package/src/account/providers/keycloakify-angular/keycloakify-angular.providers.ts +65 -0
- package/src/account/services/account-resource-injector/account-resource-injector.service.ts +41 -0
- package/src/account/services/i18n/i18n.service.ts +7 -0
- package/src/account/tokens/classes/classes.token.ts +6 -0
- package/src/account/tokens/i18n/i18n.token.ts +3 -0
- package/src/account/tokens/kc-context/kc-context.token.ts +6 -0
- package/src/lib/pipes/is-array-with-empty-object/is-array-with-empty-object.pipe.ts +16 -0
- package/src/{login/pipes → lib/pipes/kc-sanitize}/kc-sanitize.pipe.ts +9 -11
- package/src/lib/services/{resource-injector.service.ts → resource-injector/resource-injector.service.ts} +1 -1
- package/src/lib/tokens/use-default-css/use-default-css.token.ts +3 -0
- package/src/login/classes/{component-reference.class.ts → component-reference/component-reference.class.ts} +1 -1
- package/src/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.html +19 -19
- package/src/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.ts +8 -16
- package/src/login/components/field-errors/field-errors.component.html +10 -10
- package/src/login/components/field-errors/field-errors.component.ts +9 -14
- package/src/login/components/group-label/group-label.component.html +25 -25
- package/src/login/components/group-label/group-label.component.ts +13 -17
- package/src/login/components/input-field-by-type/input-field-by-type.component.html +57 -57
- package/src/login/components/input-field-by-type/input-field-by-type.component.ts +15 -32
- package/src/login/components/input-tag/input-tag.component.html +41 -45
- package/src/login/components/input-tag/input-tag.component.ts +19 -28
- package/src/login/components/input-tag-selects/input-tag-selects.component.html +22 -22
- package/src/login/components/input-tag-selects/input-tag-selects.component.ts +14 -25
- package/src/login/components/logout-other-sessions/logout-other-sessions.component.html +15 -15
- package/src/login/components/logout-other-sessions/logout-other-sessions.component.ts +10 -7
- package/src/login/components/password-wrapper/password-wrapper.component.html +13 -13
- package/src/login/components/password-wrapper/password-wrapper.component.ts +12 -22
- package/src/login/components/select-tag/select-tag.component.html +26 -26
- package/src/login/components/select-tag/select-tag.component.ts +16 -28
- package/src/login/components/textarea-tag/textarea-tag.component.html +13 -15
- package/src/login/components/textarea-tag/textarea-tag.component.ts +10 -19
- package/src/login/components/user-profile-form-fields/user-profile-form-fields.component.html +66 -73
- package/src/login/components/user-profile-form-fields/user-profile-form-fields.component.ts +28 -42
- package/src/login/containers/template/template.component.html +217 -0
- package/src/login/containers/template/template.component.ts +166 -0
- package/src/login/directives/{kc-class.directive.ts → kc-class/kc-class.directive.ts} +2 -3
- package/src/login/getDefaultPageComponent.ts +153 -0
- package/src/login/i18n.ts +1 -1
- package/src/login/pages/code/code.component.html +13 -17
- package/src/login/pages/code/code.component.ts +28 -16
- package/src/login/pages/delete-account-confirm/delete-account-confirm.component.html +35 -37
- package/src/login/pages/delete-account-confirm/delete-account-confirm.component.ts +28 -17
- package/src/login/pages/delete-credential/delete-credential.component.html +23 -25
- package/src/login/pages/delete-credential/delete-credential.component.ts +28 -28
- package/src/login/pages/error/error.component.html +18 -20
- package/src/login/pages/error/error.component.ts +28 -16
- package/src/login/pages/frontchannel-logout/frontchannel-logout.component.html +20 -29
- package/src/login/pages/frontchannel-logout/frontchannel-logout.component.ts +28 -28
- package/src/login/pages/idp-review-user-profile/idp-review-user-profile.component.html +24 -33
- package/src/login/pages/idp-review-user-profile/idp-review-user-profile.component.ts +42 -35
- package/src/login/pages/info/info.component.html +31 -40
- package/src/login/pages/info/info.component.ts +29 -39
- package/src/login/pages/login/login.component.html +177 -187
- package/src/login/pages/login/login.component.ts +32 -45
- package/src/login/pages/login-config-totp/login-config-totp.component.html +157 -156
- package/src/login/pages/login-config-totp/login-config-totp.component.ts +29 -42
- package/src/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.html +22 -32
- package/src/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.ts +23 -29
- package/src/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.html +20 -30
- package/src/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.ts +23 -31
- package/src/login/pages/login-idp-link-email/login-idp-link-email.component.html +24 -32
- package/src/login/pages/login-idp-link-email/login-idp-link-email.component.ts +23 -29
- package/src/login/pages/login-oauth-grant/login-oauth-grant.component.html +66 -73
- package/src/login/pages/login-oauth-grant/login-oauth-grant.component.ts +23 -30
- package/src/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.html +40 -49
- package/src/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.ts +27 -30
- package/src/login/pages/login-otp/login-otp.component.html +79 -88
- package/src/login/pages/login-otp/login-otp.component.ts +28 -27
- package/src/login/pages/login-page-expired/login-page-expired.component.html +24 -31
- package/src/login/pages/login-page-expired/login-page-expired.component.ts +26 -27
- package/src/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.html +175 -180
- package/src/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.ts +31 -28
- package/src/login/pages/login-password/login-password.component.html +76 -83
- package/src/login/pages/login-password/login-password.component.ts +30 -35
- package/src/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.html +97 -106
- package/src/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.ts +30 -37
- package/src/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.html +57 -65
- package/src/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.ts +29 -32
- package/src/login/pages/login-reset-otp/login-reset-otp.component.html +53 -58
- package/src/login/pages/login-reset-otp/login-reset-otp.component.ts +27 -26
- package/src/login/pages/login-reset-password/login-reset-password.component.html +65 -74
- package/src/login/pages/login-reset-password/login-reset-password.component.ts +28 -28
- package/src/login/pages/login-update-password/login-update-password.component.html +88 -98
- package/src/login/pages/login-update-password/login-update-password.component.ts +30 -40
- package/src/login/pages/login-update-profile/login-update-profile.component.html +40 -50
- package/src/login/pages/login-update-profile/login-update-profile.component.ts +40 -34
- package/src/login/pages/login-username/login-username.component.html +131 -141
- package/src/login/pages/login-username/login-username.component.ts +29 -39
- package/src/login/pages/login-verify-email/login-verify-email.component.html +15 -23
- package/src/login/pages/login-verify-email/login-verify-email.component.ts +27 -28
- package/src/login/pages/login-x509-info/login-x509-info.component.html +76 -85
- package/src/login/pages/login-x509-info/login-x509-info.component.ts +27 -27
- package/src/login/pages/logout-confirm/logout-confirm.component.html +35 -45
- package/src/login/pages/logout-confirm/logout-confirm.component.ts +23 -28
- package/src/login/pages/register/register.component.html +89 -99
- package/src/login/pages/register/register.component.ts +42 -41
- package/src/login/pages/saml-post-form/saml-post-form.component.html +31 -41
- package/src/login/pages/saml-post-form/saml-post-form.component.ts +30 -32
- package/src/login/pages/select-authenticator/select-authenticator.component.html +36 -45
- package/src/login/pages/select-authenticator/select-authenticator.component.ts +28 -35
- package/src/login/pages/terms/terms.component.html +19 -28
- package/src/login/pages/terms/terms.component.ts +28 -27
- package/src/login/pages/update-email/update-email.component.html +40 -49
- package/src/login/pages/update-email/update-email.component.ts +38 -37
- package/src/login/pages/webauthn-authenticate/webauthn-authenticate.component.html +116 -129
- package/src/login/pages/webauthn-authenticate/webauthn-authenticate.component.ts +33 -50
- package/src/login/pages/webauthn-error/webauthn-error.component.html +34 -44
- package/src/login/pages/webauthn-error/webauthn-error.component.ts +29 -33
- package/src/login/pages/webauthn-register/webauthn-register.component.html +49 -59
- package/src/login/pages/webauthn-register/webauthn-register.component.ts +34 -41
- package/src/login/providers/keycloakify-angular/keycloakify-angular.providers.ts +69 -0
- package/src/login/services/i18n/i18n.service.ts +7 -0
- package/src/login/services/{login-resource-injector.service.ts → login-resource-injector/login-resource-injector.service.ts} +5 -4
- package/src/login/services/submit/submit.service.ts +12 -0
- package/src/login/services/{user-profile-form.service.ts → user-profile-form/user-profile-form.service.ts} +11 -13
- package/src/login/tokens/classes/classes.token.ts +6 -0
- package/src/login/tokens/i18n/i18n.token.ts +3 -0
- package/src/login/tokens/kc-context/kc-context.token.ts +4 -0
- package/src/login/tokens/make-user-confirm-password/make-user-confirm-password.token.ts +5 -0
- package/lib/i18n.d.ts +0 -4
- package/lib/i18n.mjs +0 -6
- package/lib/models/index.mjs +0 -2
- package/lib/models/script.model.mjs +0 -2
- package/lib/providers/keycloakify-angular.providers.mjs +0 -54
- package/lib/public-api.mjs +0 -4
- package/lib/services/i18n.service.d.ts +0 -6
- package/lib/services/i18n.service.mjs +0 -11
- package/lib/services/index.mjs +0 -3
- package/lib/services/resource-injector.service.mjs +0 -54
- package/login/DefaultPage.d.ts +0 -260
- package/login/DefaultPage.mjs +0 -121
- package/login/KcContext.mjs +0 -2
- package/login/classes/component-reference.class.mjs +0 -3
- package/login/components/add-remove-buttons-multi-valued-attribute/add-remove-buttons-multi-valued-attribute.component.mjs +0 -105
- package/login/components/field-errors/field-errors.component.mjs +0 -32
- package/login/components/group-label/group-label.component.mjs +0 -41
- package/login/components/hello-world/hello-world.component.d.ts +0 -5
- package/login/components/hello-world/hello-world.component.mjs +0 -11
- package/login/components/index.d.ts +0 -11
- package/login/components/index.mjs +0 -12
- package/login/components/input-field-by-type/input-field-by-type.component.mjs +0 -52
- package/login/components/input-tag/input-tag.component.mjs +0 -89
- package/login/components/input-tag-selects/input-tag-selects.component.mjs +0 -115
- package/login/components/logout-other-sessions/logout-other-sessions.component.mjs +0 -30
- package/login/components/password-wrapper/password-wrapper.component.mjs +0 -44
- package/login/components/select-tag/select-tag.component.mjs +0 -80
- package/login/components/textarea-tag/textarea-tag.component.mjs +0 -48
- package/login/components/user-profile-form-fields/user-profile-form-fields.component.mjs +0 -62
- package/login/containers/template.component.d.ts +0 -31
- package/login/containers/template.component.mjs +0 -71
- package/login/directives/attributes.directive.mjs +0 -26
- package/login/directives/index.mjs +0 -3
- package/login/directives/kc-class.directive.mjs +0 -138
- package/login/i18n.mjs +0 -2
- package/login/pages/code/code.component.mjs +0 -32
- package/login/pages/delete-account-confirm/delete-account-confirm.component.mjs +0 -32
- package/login/pages/delete-credential/delete-credential.component.mjs +0 -37
- package/login/pages/error/error.component.mjs +0 -32
- package/login/pages/frontchannel-logout/frontchannel-logout.component.mjs +0 -41
- package/login/pages/idp-review-user-profile/idp-review-user-profile.component.mjs +0 -47
- package/login/pages/info/info.component.mjs +0 -58
- package/login/pages/login/login.component.mjs +0 -51
- package/login/pages/login-config-totp/login-config-totp.component.mjs +0 -47
- package/login/pages/login-idp-link-confirm/login-idp-link-confirm.component.mjs +0 -37
- package/login/pages/login-idp-link-confirm-override/login-idp-link-confirm-override.component.mjs +0 -37
- package/login/pages/login-idp-link-email/login-idp-link-email.component.mjs +0 -37
- package/login/pages/login-oauth-grant/login-oauth-grant.component.mjs +0 -38
- package/login/pages/login-oauth2-device-verify-user-code/login-oauth2-device-verify-user-code.component.mjs +0 -37
- package/login/pages/login-otp/login-otp.component.mjs +0 -38
- package/login/pages/login-page-expired/login-page-expired.component.mjs +0 -36
- package/login/pages/login-passkeys-conditional-authenticate/login-passkeys-conditional-authenticate.component.mjs +0 -85
- package/login/pages/login-password/login-password.component.mjs +0 -46
- package/login/pages/login-recovery-authn-code-config/login-recovery-authn-code-config.component.mjs +0 -45
- package/login/pages/login-recovery-authn-code-input/login-recovery-authn-code-input.component.mjs +0 -38
- package/login/pages/login-reset-otp/login-reset-otp.component.mjs +0 -37
- package/login/pages/login-reset-password/login-reset-password.component.mjs +0 -38
- package/login/pages/login-update-password/login-update-password.component.mjs +0 -47
- package/login/pages/login-update-profile/login-update-profile.component.mjs +0 -44
- package/login/pages/login-username/login-username.component.mjs +0 -49
- package/login/pages/login-verify-email/login-verify-email.component.mjs +0 -37
- package/login/pages/login-x509-info/login-x509-info.component.mjs +0 -37
- package/login/pages/logout-confirm/logout-confirm.component.mjs +0 -37
- package/login/pages/register/register.component.mjs +0 -55
- package/login/pages/saml-post-form/saml-post-form.component.mjs +0 -49
- package/login/pages/select-authenticator/select-authenticator.component.mjs +0 -45
- package/login/pages/terms/terms.component.mjs +0 -37
- package/login/pages/update-email/update-email.component.mjs +0 -46
- package/login/pages/webauthn-authenticate/webauthn-authenticate.component.mjs +0 -87
- package/login/pages/webauthn-error/webauthn-error.component.mjs +0 -51
- package/login/pages/webauthn-register/webauthn-register.component.mjs +0 -81
- package/login/pipes/advanced-msg-str.pipe.d.ts +0 -8
- package/login/pipes/advanced-msg-str.pipe.mjs +0 -19
- package/login/pipes/index.d.ts +0 -6
- package/login/pipes/index.mjs +0 -7
- package/login/pipes/input-type.pipe.mjs +0 -20
- package/login/pipes/kc-sanitize.pipe.mjs +0 -34
- package/login/pipes/msg-str.pipe.d.ts +0 -9
- package/login/pipes/msg-str.pipe.mjs +0 -19
- package/login/pipes/to-array.pipe.mjs +0 -21
- package/login/pipes/to-number.pipe.mjs +0 -20
- package/login/services/index.mjs +0 -3
- package/login/services/login-resource-injector.service.mjs +0 -68
- package/login/services/user-profile-form.service.mjs +0 -1017
- package/src/lib/i18n.ts +0 -9
- package/src/lib/models/index.ts +0 -1
- package/src/lib/providers/keycloakify-angular.providers.ts +0 -92
- package/src/lib/public-api.ts +0 -12
- package/src/lib/services/i18n.service.ts +0 -5
- package/src/lib/services/index.ts +0 -2
- package/src/login/DefaultPage.ts +0 -208
- package/src/login/components/hello-world/hello-world.component.css +0 -0
- package/src/login/components/hello-world/hello-world.component.html +0 -1
- package/src/login/components/hello-world/hello-world.component.ts +0 -10
- package/src/login/components/index.ts +0 -11
- package/src/login/containers/template.component.html +0 -203
- package/src/login/containers/template.component.ts +0 -94
- package/src/login/directives/index.ts +0 -2
- package/src/login/pipes/advanced-msg-str.pipe.ts +0 -13
- package/src/login/pipes/index.ts +0 -6
- package/src/login/pipes/msg-str.pipe.ts +0 -14
- package/src/login/services/index.ts +0 -2
- package/src/tsconfig.json +0 -18
- /package/{login/directives → lib/directives/attributes}/attributes.directive.d.ts +0 -0
- /package/lib/models/{index.d.ts → script/public-api.d.ts} +0 -0
- /package/lib/models/{script.model.d.ts → script/script.model.d.ts} +0 -0
- /package/{login/pipes → lib/pipes/input-type}/input-type.pipe.d.ts +0 -0
- /package/{login/pipes → lib/pipes/to-array}/to-array.pipe.d.ts +0 -0
- /package/{login/pipes → lib/pipes/to-number}/to-number.pipe.d.ts +0 -0
- /package/login/{KcContext.d.ts → KcContext/KcContext.d.ts} +0 -0
- /package/src/{login/directives → lib/directives/attributes}/attributes.directive.ts +0 -0
- /package/src/lib/models/{script.model.ts → script/script.model.ts} +0 -0
- /package/src/{login/pipes → lib/pipes/input-type}/input-type.pipe.ts +0 -0
- /package/src/{login/pipes → lib/pipes/to-array}/to-array.pipe.ts +0 -0
- /package/src/{login/pipes → lib/pipes/to-number}/to-number.pipe.ts +0 -0
|
@@ -10,27 +10,25 @@ import {
|
|
|
10
10
|
WritableSignal
|
|
11
11
|
} from '@angular/core';
|
|
12
12
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
13
|
+
import type { KcContext } from '../../KcContext';
|
|
14
|
+
import type { I18n } from '../../i18n';
|
|
15
|
+
import { LoginResourceInjectorService } from '@keycloakify/angular/login/services/login-resource-injector';
|
|
16
|
+
import { LOGIN_I18N } from '@keycloakify/angular/login/tokens/i18n';
|
|
17
|
+
import { KC_LOGIN_CONTEXT } from '@keycloakify/angular/login/tokens/kc-context';
|
|
18
|
+
import { DO_MAKE_USER_CONFIRM_PASSWORD } from '@keycloakify/angular/login/tokens/make-user-confirm-password';
|
|
13
19
|
import {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
} from '@keycloakify/angular/lib/public-api';
|
|
18
|
-
import {
|
|
19
|
-
Attribute,
|
|
20
|
-
KcContext,
|
|
21
|
-
PasswordPolicies,
|
|
22
|
-
Validators
|
|
20
|
+
type Attribute,
|
|
21
|
+
type PasswordPolicies,
|
|
22
|
+
type Validators
|
|
23
23
|
} from 'keycloakify/login/KcContext';
|
|
24
24
|
import type {
|
|
25
25
|
KcContextLike as KcContextLike_i18n,
|
|
26
26
|
MessageKey_defaultSet
|
|
27
27
|
} from 'keycloakify/login/i18n/noJsx';
|
|
28
|
-
import type { I18n } from '../i18n';
|
|
29
28
|
import { emailRegexp } from 'keycloakify/tools/emailRegExp';
|
|
30
29
|
import { formatNumber } from 'keycloakify/tools/formatNumber';
|
|
31
30
|
import { structuredCloneButFunctions } from 'keycloakify/tools/structuredCloneButFunctions';
|
|
32
31
|
import { assert, id } from 'tsafe';
|
|
33
|
-
import { LoginResourceInjectorService } from './login-resource-injector.service';
|
|
34
32
|
|
|
35
33
|
type KcContextLike_useGetErrors = KcContextLike_i18n & {
|
|
36
34
|
messagesPerField: Pick<KcContext['messagesPerField'], 'existsError' | 'get'>;
|
|
@@ -119,8 +117,8 @@ export type FormAction =
|
|
|
119
117
|
@Injectable({ providedIn: 'root' })
|
|
120
118
|
export class UserProfileFormService {
|
|
121
119
|
private kcContext: KcContextLike =
|
|
122
|
-
inject<Extract<KcContext, { pageId: 'register.ftl' }>>(
|
|
123
|
-
private i18n = inject<I18n>(
|
|
120
|
+
inject<Extract<KcContext, { pageId: 'register.ftl' }>>(KC_LOGIN_CONTEXT);
|
|
121
|
+
private i18n = inject<I18n>(LOGIN_I18N);
|
|
124
122
|
private doMakeUserConfirmPassword = inject(DO_MAKE_USER_CONFIRM_PASSWORD);
|
|
125
123
|
private loginResourceInjectorService = inject(LoginResourceInjectorService);
|
|
126
124
|
private sanitizer: DomSanitizer = inject(DomSanitizer);
|
package/lib/i18n.d.ts
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
declare const I18nlogin: import("keycloakify/login/i18n/noJsx/GenericI18n_noJsx").GenericI18n_noJsx<"doLogIn" | "doRegister" | "doRegisterSecurityKey" | "doCancel" | "doSubmit" | "doBack" | "doYes" | "doNo" | "doContinue" | "doIgnore" | "doAccept" | "doDecline" | "doForgotPassword" | "doClickHere" | "doImpersonate" | "doTryAgain" | "doTryAnotherWay" | "doConfirmDelete" | "errorDeletingAccount" | "deletingAccountForbidden" | "kerberosNotConfigured" | "kerberosNotConfiguredTitle" | "bypassKerberosDetail" | "kerberosNotSetUp" | "registerTitle" | "loginAccountTitle" | "loginTitle" | "loginTitleHtml" | "impersonateTitle" | "impersonateTitleHtml" | "realmChoice" | "unknownUser" | "loginTotpTitle" | "loginProfileTitle" | "loginIdpReviewProfileTitle" | "loginTimeout" | "reauthenticate" | "authenticateStrong" | "oauthGrantTitle" | "oauthGrantTitleHtml" | "oauthGrantInformation" | "oauthGrantReview" | "oauthGrantTos" | "oauthGrantPolicy" | "errorTitle" | "errorTitleHtml" | "emailVerifyTitle" | "emailForgotTitle" | "updateEmailTitle" | "emailUpdateConfirmationSentTitle" | "emailUpdateConfirmationSent" | "emailUpdatedTitle" | "emailUpdated" | "updatePasswordTitle" | "codeSuccessTitle" | "codeErrorTitle" | "displayUnsupported" | "browserRequired" | "browserContinue" | "browserContinuePrompt" | "browserContinueAnswer" | "usb" | "nfc" | "bluetooth" | "internal" | "unknown" | "termsTitle" | "termsText" | "termsPlainText" | "termsAcceptanceRequired" | "acceptTerms" | "deleteCredentialTitle" | "deleteCredentialMessage" | "recaptchaFailed" | "recaptchaNotConfigured" | "consentDenied" | "noAccount" | "username" | "usernameOrEmail" | "firstName" | "givenName" | "fullName" | "lastName" | "familyName" | "email" | "password" | "passwordConfirm" | "passwordNew" | "passwordNewConfirm" | "hidePassword" | "showPassword" | "rememberMe" | "authenticatorCode" | "address" | "street" | "locality" | "region" | "postal_code" | "country" | "emailVerified" | "website" | "phoneNumber" | "phoneNumberVerified" | "gender" | "birthday" | "zoneinfo" | "gssDelegationCredential" | "logoutOtherSessions" | "profileScopeConsentText" | "emailScopeConsentText" | "addressScopeConsentText" | "phoneScopeConsentText" | "offlineAccessScopeConsentText" | "samlRoleListScopeConsentText" | "rolesScopeConsentText" | "organizationScopeConsentText" | "restartLoginTooltip" | "loginTotpIntro" | "loginTotpStep1" | "loginTotpStep2" | "loginTotpStep3" | "loginTotpStep3DeviceName" | "loginTotpManualStep2" | "loginTotpManualStep3" | "loginTotpUnableToScan" | "loginTotpScanBarcode" | "loginCredential" | "loginOtpOneTime" | "loginTotpType" | "loginTotpAlgorithm" | "loginTotpDigits" | "loginTotpInterval" | "loginTotpCounter" | "loginTotpDeviceName" | "loginTotp.totp" | "loginTotp.hotp" | "totpAppFreeOTPName" | "totpAppGoogleName" | "totpAppMicrosoftAuthenticatorName" | "loginChooseAuthenticator" | "oauthGrantRequest" | "inResource" | "oauth2DeviceVerificationTitle" | "verifyOAuth2DeviceUserCode" | "oauth2DeviceInvalidUserCodeMessage" | "oauth2DeviceExpiredUserCodeMessage" | "oauth2DeviceVerificationCompleteHeader" | "oauth2DeviceVerificationCompleteMessage" | "oauth2DeviceVerificationFailedHeader" | "oauth2DeviceVerificationFailedMessage" | "oauth2DeviceConsentDeniedMessage" | "oauth2DeviceAuthorizationGrantDisabledMessage" | "emailVerifyInstruction1" | "emailVerifyInstruction2" | "emailVerifyInstruction3" | "emailLinkIdpTitle" | "emailLinkIdp1" | "emailLinkIdp2" | "emailLinkIdp3" | "emailLinkIdp4" | "emailLinkIdp5" | "backToLogin" | "emailInstruction" | "emailInstructionUsername" | "copyCodeInstruction" | "pageExpiredTitle" | "pageExpiredMsg1" | "pageExpiredMsg2" | "personalInfo" | "role_admin" | "role_realm-admin" | "role_create-realm" | "role_create-client" | "role_view-realm" | "role_view-users" | "role_view-applications" | "role_view-clients" | "role_view-events" | "role_view-identity-providers" | "role_manage-realm" | "role_manage-users" | "role_manage-applications" | "role_manage-identity-providers" | "role_manage-clients" | "role_manage-events" | "role_view-profile" | "role_manage-account" | "role_manage-account-links" | "role_read-token" | "role_offline-access" | "client_account" | "client_account-console" | "client_security-admin-console" | "client_admin-cli" | "client_realm-management" | "client_broker" | "requiredFields" | "invalidUserMessage" | "invalidUsernameMessage" | "invalidUsernameOrEmailMessage" | "invalidPasswordMessage" | "invalidEmailMessage" | "accountDisabledMessage" | "accountTemporarilyDisabledMessage" | "expiredCodeMessage" | "expiredActionMessage" | "expiredActionTokenNoSessionMessage" | "expiredActionTokenSessionExistsMessage" | "sessionLimitExceeded" | "identityProviderLogoutFailure" | "missingFirstNameMessage" | "missingLastNameMessage" | "missingEmailMessage" | "missingUsernameMessage" | "missingPasswordMessage" | "missingTotpMessage" | "missingTotpDeviceNameMessage" | "notMatchPasswordMessage" | "error-invalid-value" | "error-invalid-blank" | "error-empty" | "error-invalid-length" | "error-invalid-length-too-short" | "error-invalid-length-too-long" | "error-invalid-email" | "error-invalid-number" | "error-number-out-of-range" | "error-number-out-of-range-too-small" | "error-number-out-of-range-too-big" | "error-pattern-no-match" | "error-invalid-uri" | "error-invalid-uri-scheme" | "error-invalid-uri-fragment" | "error-user-attribute-required" | "error-invalid-date" | "error-user-attribute-read-only" | "error-username-invalid-character" | "error-person-name-invalid-character" | "error-reset-otp-missing-id" | "invalidPasswordExistingMessage" | "invalidPasswordBlacklistedMessage" | "invalidPasswordConfirmMessage" | "invalidTotpMessage" | "usernameExistsMessage" | "emailExistsMessage" | "federatedIdentityExistsMessage" | "federatedIdentityUnavailableMessage" | "federatedIdentityUnmatchedEssentialClaimMessage" | "confirmLinkIdpTitle" | "confirmOverrideIdpTitle" | "federatedIdentityConfirmLinkMessage" | "federatedIdentityConfirmOverrideMessage" | "federatedIdentityConfirmReauthenticateMessage" | "nestedFirstBrokerFlowMessage" | "confirmLinkIdpReviewProfile" | "confirmLinkIdpContinue" | "confirmOverrideIdpContinue" | "configureTotpMessage" | "configureBackupCodesMessage" | "updateProfileMessage" | "updatePasswordMessage" | "updateEmailMessage" | "resetPasswordMessage" | "verifyEmailMessage" | "linkIdpMessage" | "emailSentMessage" | "emailSendErrorMessage" | "accountUpdatedMessage" | "accountPasswordUpdatedMessage" | "delegationCompleteHeader" | "delegationCompleteMessage" | "delegationFailedHeader" | "delegationFailedMessage" | "noAccessMessage" | "invalidPasswordMinLengthMessage" | "invalidPasswordMaxLengthMessage" | "invalidPasswordMinDigitsMessage" | "invalidPasswordMinLowerCaseCharsMessage" | "invalidPasswordMinUpperCaseCharsMessage" | "invalidPasswordMinSpecialCharsMessage" | "invalidPasswordNotUsernameMessage" | "invalidPasswordNotContainsUsernameMessage" | "invalidPasswordNotEmailMessage" | "invalidPasswordRegexPatternMessage" | "invalidPasswordHistoryMessage" | "invalidPasswordGenericMessage" | "failedToProcessResponseMessage" | "httpsRequiredMessage" | "realmNotEnabledMessage" | "invalidRequestMessage" | "successLogout" | "failedLogout" | "unknownLoginRequesterMessage" | "loginRequesterNotEnabledMessage" | "bearerOnlyMessage" | "standardFlowDisabledMessage" | "implicitFlowDisabledMessage" | "invalidRedirectUriMessage" | "unsupportedNameIdFormatMessage" | "invalidRequesterMessage" | "registrationNotAllowedMessage" | "resetCredentialNotAllowedMessage" | "permissionNotApprovedMessage" | "noRelayStateInResponseMessage" | "insufficientPermissionMessage" | "couldNotProceedWithAuthenticationRequestMessage" | "couldNotObtainTokenMessage" | "unexpectedErrorRetrievingTokenMessage" | "unexpectedErrorHandlingResponseMessage" | "identityProviderAuthenticationFailedMessage" | "couldNotSendAuthenticationRequestMessage" | "unexpectedErrorHandlingRequestMessage" | "invalidAccessCodeMessage" | "sessionNotActiveMessage" | "invalidCodeMessage" | "cookieNotFoundMessage" | "insufficientLevelOfAuthentication" | "identityProviderUnexpectedErrorMessage" | "identityProviderMissingStateMessage" | "identityProviderMissingCodeOrErrorMessage" | "identityProviderInvalidResponseMessage" | "identityProviderInvalidSignatureMessage" | "identityProviderNotFoundMessage" | "identityProviderLinkSuccess" | "staleCodeMessage" | "realmSupportsNoCredentialsMessage" | "credentialSetupRequired" | "identityProviderNotUniqueMessage" | "emailVerifiedMessage" | "emailVerifiedAlreadyMessage" | "staleEmailVerificationLink" | "identityProviderAlreadyLinkedMessage" | "confirmAccountLinking" | "confirmEmailAddressVerification" | "confirmExecutionOfActions" | "backToApplication" | "missingParameterMessage" | "clientNotFoundMessage" | "clientDisabledMessage" | "invalidParameterMessage" | "alreadyLoggedIn" | "differentUserAuthenticated" | "brokerLinkingSessionExpired" | "proceedWithAction" | "acrNotFulfilled" | "requiredAction.CONFIGURE_TOTP" | "requiredAction.TERMS_AND_CONDITIONS" | "requiredAction.UPDATE_PASSWORD" | "requiredAction.UPDATE_PROFILE" | "requiredAction.VERIFY_EMAIL" | "requiredAction.CONFIGURE_RECOVERY_AUTHN_CODES" | "requiredAction.webauthn-register-passwordless" | "invalidTokenRequiredActions" | "doX509Login" | "clientCertificate" | "noCertificate" | "pageNotFound" | "internalServerError" | "console-username" | "console-password" | "console-otp" | "console-new-password" | "console-confirm-password" | "console-update-password" | "console-verify-email" | "console-email-code" | "console-accept-terms" | "console-accept" | "openshift.scope.user_info" | "openshift.scope.user_check-access" | "openshift.scope.user_full" | "openshift.scope.list-projects" | "saml.post-form.title" | "saml.post-form.message" | "saml.post-form.js-disabled" | "saml.artifactResolutionServiceInvalidResponse" | "otp-display-name" | "otp-help-text" | "otp-reset-description" | "password-display-name" | "password-help-text" | "auth-username-form-display-name" | "auth-username-form-help-text" | "auth-username-password-form-display-name" | "auth-username-password-form-help-text" | "auth-x509-client-username-form-display-name" | "auth-x509-client-username-form-help-text" | "auth-recovery-authn-code-form-display-name" | "auth-recovery-authn-code-form-help-text" | "auth-recovery-code-info-message" | "auth-recovery-code-prompt" | "auth-recovery-code-header" | "recovery-codes-error-invalid" | "recovery-code-config-header" | "recovery-code-config-warning-title" | "recovery-code-config-warning-message" | "recovery-codes-print" | "recovery-codes-download" | "recovery-codes-copy" | "recovery-codes-copied" | "recovery-codes-confirmation-message" | "recovery-codes-action-complete" | "recovery-codes-action-cancel" | "recovery-codes-download-file-header" | "recovery-codes-download-file-description" | "recovery-codes-download-file-date" | "recovery-codes-label-default" | "webauthn-display-name" | "webauthn-help-text" | "webauthn-passwordless-display-name" | "webauthn-passwordless-help-text" | "webauthn-login-title" | "webauthn-registration-title" | "webauthn-available-authenticators" | "webauthn-unsupported-browser-text" | "webauthn-doAuthenticate" | "webauthn-createdAt-label" | "webauthn-registration-init-label" | "webauthn-registration-init-label-prompt" | "webauthn-error-title" | "webauthn-error-registration" | "webauthn-error-api-get" | "webauthn-error-different-user" | "webauthn-error-auth-verification" | "webauthn-error-register-verification" | "webauthn-error-user-not-found" | "passkey-login-title" | "passkey-available-authenticators" | "passkey-unsupported-browser-text" | "passkey-doAuthenticate" | "passkey-createdAt-label" | "passkey-autofill-select" | "identity-provider-redirector" | "identity-provider-login-label" | "idp-email-verification-display-name" | "idp-email-verification-help-text" | "idp-username-password-form-display-name" | "idp-username-password-form-help-text" | "finalDeletionConfirmation" | "irreversibleAction" | "deleteAccountConfirm" | "deletingImplies" | "errasingData" | "loggingOutImmediately" | "accountUnusable" | "userDeletedSuccessfully" | "access-denied" | "access-denied-when-idp-auth" | "frontchannel-logout.title" | "frontchannel-logout.message" | "logoutConfirmTitle" | "logoutConfirmHeader" | "doLogout" | "readOnlyUsernameMessage" | "error-invalid-multivalued-size" | "organization.confirm-membership.title" | "organization.confirm-membership" | "organization.member.register.title" | "shouldBeEqual" | "shouldBeDifferent" | "shouldMatchPattern" | "mustBeAnInteger" | "notAValidOption" | "selectAnOption" | "remove" | "addValue" | "languages", "ar" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fa" | "fi" | "fr" | "hu" | "it" | "ja" | "ka" | "lt" | "lv" | "nl" | "no" | "pl" | "pt" | "pt-BR" | "ru" | "sk" | "sv" | "th" | "tr" | "uk" | "zh-CN" | "zh-TW">;
|
|
2
|
-
declare const I18nAccount: import("keycloakify/account/i18n/noJsx/GenericI18n_noJsx").GenericI18n_noJsx<"doLogIn" | "doCancel" | "updatePasswordTitle" | "consentDenied" | "username" | "firstName" | "givenName" | "fullName" | "lastName" | "familyName" | "email" | "password" | "passwordConfirm" | "passwordNew" | "authenticatorCode" | "address" | "street" | "locality" | "region" | "postal_code" | "country" | "emailVerified" | "website" | "phoneNumber" | "phoneNumberVerified" | "gender" | "birthday" | "zoneinfo" | "gssDelegationCredential" | "profileScopeConsentText" | "emailScopeConsentText" | "addressScopeConsentText" | "phoneScopeConsentText" | "offlineAccessScopeConsentText" | "samlRoleListScopeConsentText" | "rolesScopeConsentText" | "totpAppFreeOTPName" | "totpAppGoogleName" | "totpAppMicrosoftAuthenticatorName" | "inResource" | "role_admin" | "role_realm-admin" | "role_create-realm" | "role_view-realm" | "role_view-users" | "role_view-applications" | "role_view-clients" | "role_view-events" | "role_view-identity-providers" | "role_manage-realm" | "role_manage-users" | "role_manage-applications" | "role_manage-identity-providers" | "role_manage-clients" | "role_manage-events" | "role_view-profile" | "role_manage-account" | "role_manage-account-links" | "role_read-token" | "role_offline-access" | "client_account" | "client_account-console" | "client_security-admin-console" | "client_admin-cli" | "client_realm-management" | "client_broker" | "requiredFields" | "invalidUserMessage" | "invalidEmailMessage" | "accountDisabledMessage" | "accountTemporarilyDisabledMessage" | "missingFirstNameMessage" | "missingLastNameMessage" | "missingEmailMessage" | "missingUsernameMessage" | "missingPasswordMessage" | "missingTotpMessage" | "missingTotpDeviceNameMessage" | "notMatchPasswordMessage" | "error-invalid-value" | "error-invalid-blank" | "error-empty" | "error-invalid-length" | "error-invalid-length-too-short" | "error-invalid-length-too-long" | "error-invalid-email" | "error-invalid-number" | "error-number-out-of-range" | "error-number-out-of-range-too-small" | "error-number-out-of-range-too-big" | "error-pattern-no-match" | "error-invalid-uri" | "error-invalid-uri-scheme" | "error-invalid-uri-fragment" | "error-user-attribute-required" | "error-invalid-date" | "error-user-attribute-read-only" | "error-username-invalid-character" | "error-person-name-invalid-character" | "invalidPasswordExistingMessage" | "invalidPasswordBlacklistedMessage" | "invalidPasswordConfirmMessage" | "invalidTotpMessage" | "usernameExistsMessage" | "emailExistsMessage" | "updatePasswordMessage" | "accountUpdatedMessage" | "accountPasswordUpdatedMessage" | "noAccessMessage" | "invalidPasswordMinLengthMessage" | "invalidPasswordMaxLengthMessage" | "invalidPasswordMinDigitsMessage" | "invalidPasswordMinLowerCaseCharsMessage" | "invalidPasswordMinUpperCaseCharsMessage" | "invalidPasswordMinSpecialCharsMessage" | "invalidPasswordNotUsernameMessage" | "invalidPasswordNotEmailMessage" | "invalidPasswordRegexPatternMessage" | "invalidPasswordHistoryMessage" | "invalidPasswordGenericMessage" | "identityProviderNotFoundMessage" | "identityProviderAlreadyLinkedMessage" | "backToApplication" | "clientNotFoundMessage" | "openshift.scope.user_info" | "openshift.scope.user_check-access" | "openshift.scope.user_full" | "openshift.scope.list-projects" | "irreversibleAction" | "deletingImplies" | "errasingData" | "loggingOutImmediately" | "accountUnusable" | "access-denied-when-idp-auth" | "readOnlyUsernameMessage" | "doSave" | "doLogOutAllSessions" | "doRemove" | "doAdd" | "doSignOut" | "doLink" | "personalInfoSidebarTitle" | "accountSecuritySidebarTitle" | "signingInSidebarTitle" | "deviceActivitySidebarTitle" | "linkedAccountsSidebarTitle" | "editAccountHtmlTitle" | "personalInfoHtmlTitle" | "federatedIdentitiesHtmlTitle" | "accountLogHtmlTitle" | "changePasswordHtmlTitle" | "deviceActivityHtmlTitle" | "sessionsHtmlTitle" | "accountManagementTitle" | "authenticatorTitle" | "applicationsHtmlTitle" | "linkedAccountsHtmlTitle" | "accountManagementWelcomeMessage" | "personalInfoIntroMessage" | "accountSecurityTitle" | "accountSecurityIntroMessage" | "applicationsIntroMessage" | "resourceIntroMessage" | "passwordLastUpdateMessage" | "updatePasswordMessageTitle" | "personalSubTitle" | "personalSubMessage" | "currentPassword" | "role_view-groups" | "role_view-consent" | "role_manage-consent" | "role_uma_authorization" | "allFieldsRequired" | "backTo" | "date" | "event" | "ip" | "client" | "clients" | "details" | "started" | "lastAccess" | "expires" | "applications" | "account" | "federatedIdentity" | "authenticator" | "device-activity" | "sessions" | "log" | "application" | "availableRoles" | "grantedPermissions" | "grantedPersonalInfo" | "additionalGrants" | "action" | "fullAccess" | "offlineToken" | "revoke" | "configureAuthenticators" | "mobile" | "totpStep1" | "totpStep2" | "totpStep3" | "totpStep3DeviceName" | "totpManualStep2" | "totpManualStep3" | "totpUnableToScan" | "totpScanBarcode" | "totp.totp" | "totp.hotp" | "totpType" | "totpAlgorithm" | "totpDigits" | "totpInterval" | "totpCounter" | "totpDeviceName" | "updateReadOnlyAttributesRejectedMessage" | "readOnlyUserMessage" | "readOnlyPasswordMessage" | "successTotpMessage" | "successTotpRemovedMessage" | "successGrantRevokedMessage" | "missingIdentityProviderMessage" | "invalidFederatedIdentityActionMessage" | "federatedIdentityLinkNotActiveMessage" | "federatedIdentityRemovingLastProviderMessage" | "identityProviderRedirectErrorMessage" | "identityProviderRemovedMessage" | "staleCodeAccountMessage" | "myResources" | "myResourcesSub" | "doDeny" | "doRevoke" | "doApprove" | "doRemoveSharing" | "doRemoveRequest" | "peopleAccessResource" | "resourceManagedPolicies" | "resourceNoPermissionsGrantingAccess" | "anyAction" | "description" | "name" | "scopes" | "resource" | "user" | "peopleSharingThisResource" | "shareWithOthers" | "needMyApproval" | "requestsWaitingApproval" | "icon" | "requestor" | "owner" | "resourcesSharedWithMe" | "permissionRequestion" | "permission" | "shares" | "notBeingShared" | "notHaveAnyResource" | "noResourcesSharedWithYou" | "havePermissionRequestsWaitingForApproval" | "clickHereForDetails" | "resourceIsNotBeingShared" | "locale_ar" | "locale_ca" | "locale_cs" | "locale_de" | "locale_en" | "locale_es" | "locale_fr" | "locale_hu" | "locale_it" | "locale_ja" | "locale_lt" | "locale_nl" | "locale_no" | "locale_pl" | "locale_pt-BR" | "locale_ru" | "locale_sk" | "locale_sv" | "locale_tr" | "locale_zh-CN" | "locale_fi" | "applicationName" | "applicationType" | "applicationInUse" | "clearAllFilter" | "activeFilters" | "filterByName" | "allApps" | "internalApps" | "thirdpartyApps" | "appResults" | "authorizedProvider" | "authorizedProviderMessage" | "identityProvider" | "identityProviderMessage" | "socialLogin" | "userDefined" | "removeAccess" | "removeAccessMessage" | "authenticatorStatusMessage" | "authenticatorFinishSetUpTitle" | "authenticatorFinishSetUpMessage" | "authenticatorSubTitle" | "authenticatorSubMessage" | "authenticatorMobileTitle" | "authenticatorMobileMessage" | "authenticatorMobileFinishSetUpMessage" | "authenticatorActionSetup" | "authenticatorSMSTitle" | "authenticatorSMSMessage" | "authenticatorSMSFinishSetUpMessage" | "authenticatorDefaultStatus" | "authenticatorChangePhone" | "authenticatorMobileSetupTitle" | "smscodeIntroMessage" | "mobileSetupStep1" | "mobileSetupStep2" | "mobileSetupStep3" | "scanBarCode" | "enterBarCode" | "doCopy" | "doFinish" | "authenticatorSMSCodeSetupTitle" | "chooseYourCountry" | "enterYourPhoneNumber" | "sendVerficationCode" | "enterYourVerficationCode" | "authenticatorBackupCodesSetupTitle" | "realmName" | "doDownload" | "doPrint" | "generateNewBackupCodes" | "backtoAuthenticatorPage" | "resources" | "sharedwithMe" | "share" | "sharedwith" | "accessPermissions" | "permissionRequests" | "approve" | "approveAll" | "people" | "perPage" | "currentPage" | "sharetheResource" | "group" | "selectPermission" | "addPeople" | "addTeam" | "myPermissions" | "waitingforApproval" | "anyPermission" | "newPasswordSameAsOld" | "passwordConfirmNotMatch", "ar" | "ca" | "cs" | "da" | "de" | "en" | "es" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "no" | "pl" | "pt-BR" | "ru" | "sk" | "sv" | "tr" | "zh-CN">;
|
|
3
|
-
type I18n = typeof I18nAccount | typeof I18nlogin;
|
|
4
|
-
export { type I18n };
|
package/lib/i18n.mjs
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
2
|
-
import { i18nBuilder as accountI18nBuilder } from 'keycloakify/account/i18n/noJsx';
|
|
3
|
-
import { i18nBuilder as loginI18nBuilder } from 'keycloakify/login/i18n/noJsx';
|
|
4
|
-
const { ofTypeI18n: I18nlogin } = loginI18nBuilder.build();
|
|
5
|
-
const { ofTypeI18n: I18nAccount } = accountI18nBuilder.build();
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaTE4bi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2tleWNsb2FraWZ5LWFuZ3VsYXIvc3JjL2xpYi9pMThuLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLHNEQUFzRDtBQUV0RCxPQUFPLEVBQUUsV0FBVyxJQUFJLGtCQUFrQixFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFDbkYsT0FBTyxFQUFFLFdBQVcsSUFBSSxnQkFBZ0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBRS9FLE1BQU0sRUFBRSxVQUFVLEVBQUUsU0FBUyxFQUFFLEdBQUcsZ0JBQWdCLENBQUMsS0FBSyxFQUFFLENBQUM7QUFDM0QsTUFBTSxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsR0FBRyxrQkFBa0IsQ0FBQyxLQUFLLEVBQUUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qIGVzbGludC1kaXNhYmxlIEB0eXBlc2NyaXB0LWVzbGludC9uby11bnVzZWQtdmFycyAqL1xuXG5pbXBvcnQgeyBpMThuQnVpbGRlciBhcyBhY2NvdW50STE4bkJ1aWxkZXIgfSBmcm9tICdrZXljbG9ha2lmeS9hY2NvdW50L2kxOG4vbm9Kc3gnO1xuaW1wb3J0IHsgaTE4bkJ1aWxkZXIgYXMgbG9naW5JMThuQnVpbGRlciB9IGZyb20gJ2tleWNsb2FraWZ5L2xvZ2luL2kxOG4vbm9Kc3gnO1xuXG5jb25zdCB7IG9mVHlwZUkxOG46IEkxOG5sb2dpbiB9ID0gbG9naW5JMThuQnVpbGRlci5idWlsZCgpO1xuY29uc3QgeyBvZlR5cGVJMThuOiBJMThuQWNjb3VudCB9ID0gYWNjb3VudEkxOG5CdWlsZGVyLmJ1aWxkKCk7XG50eXBlIEkxOG4gPSB0eXBlb2YgSTE4bkFjY291bnQgfCB0eXBlb2YgSTE4bmxvZ2luO1xuZXhwb3J0IHsgdHlwZSBJMThuIH07XG4iXX0=
|
package/lib/models/index.mjs
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './script.model';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rZXljbG9ha2lmeS1hbmd1bGFyL3NyYy9saWIvbW9kZWxzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0JBQWdCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NjcmlwdC5tb2RlbCc7XG4iXX0=
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2NyaXB0Lm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2V5Y2xvYWtpZnktYW5ndWxhci9zcmMvbGliL21vZGVscy9zY3JpcHQubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIFNjcmlwdCA9IHtcbiAgICB0eXBlOiBzdHJpbmc7XG4gICAgaWQ6IHN0cmluZztcbiAgICBzcmM/OiBzdHJpbmc7XG4gICAgdGV4dENvbnRlbnQ/OiBzdHJpbmc7XG59O1xuIl19
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { DOCUMENT } from '@angular/common';
|
|
2
|
-
import { APP_INITIALIZER, InjectionToken, LOCALE_ID, makeEnvironmentProviders } from '@angular/core';
|
|
3
|
-
import { I18nService } from '../services';
|
|
4
|
-
export const I18N = new InjectionToken('i18n');
|
|
5
|
-
export const KC_CONTEXT = new InjectionToken('keycloak context');
|
|
6
|
-
export const USE_DEFAULT_CSS = new InjectionToken('use default css');
|
|
7
|
-
export const CLASSES = new InjectionToken('classes');
|
|
8
|
-
export const DO_MAKE_USER_CONFIRM_PASSWORD = new InjectionToken('doMakeUserConfirmPassword');
|
|
9
|
-
export const provideKeycloakifyAngular = (config) => makeEnvironmentProviders([
|
|
10
|
-
{
|
|
11
|
-
provide: KC_CONTEXT,
|
|
12
|
-
useValue: window.kcContext
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
provide: DO_MAKE_USER_CONFIRM_PASSWORD,
|
|
16
|
-
useValue: config?.doMakeUserConfirmPassword ?? true
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
provide: LOCALE_ID,
|
|
20
|
-
useFactory: (document) => {
|
|
21
|
-
return document.documentElement.lang ?? 'en';
|
|
22
|
-
},
|
|
23
|
-
deps: [DOCUMENT]
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
provide: APP_INITIALIZER,
|
|
27
|
-
multi: true,
|
|
28
|
-
useFactory: (i18nService, kcContext) => async () => {
|
|
29
|
-
const getI18n = config.getI18n;
|
|
30
|
-
const { i18n, prI18n_currentLanguage } = getI18n({
|
|
31
|
-
kcContext
|
|
32
|
-
});
|
|
33
|
-
let i18nPromise = new Promise(resolve => resolve(i18n));
|
|
34
|
-
if (prI18n_currentLanguage) {
|
|
35
|
-
i18nPromise = prI18n_currentLanguage;
|
|
36
|
-
}
|
|
37
|
-
return i18nPromise.then(i18n => {
|
|
38
|
-
i18nService.i18n = i18n;
|
|
39
|
-
return true;
|
|
40
|
-
});
|
|
41
|
-
},
|
|
42
|
-
deps: [I18nService, KC_CONTEXT]
|
|
43
|
-
},
|
|
44
|
-
{ provide: USE_DEFAULT_CSS, useValue: config?.doUseDefaultCss ?? true },
|
|
45
|
-
{ provide: CLASSES, useValue: config?.classes ?? {} },
|
|
46
|
-
{
|
|
47
|
-
provide: I18N,
|
|
48
|
-
useFactory: (i18nService) => {
|
|
49
|
-
return i18nService.i18n;
|
|
50
|
-
},
|
|
51
|
-
deps: [I18nService]
|
|
52
|
-
}
|
|
53
|
-
]);
|
|
54
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia2V5Y2xvYWtpZnktYW5ndWxhci5wcm92aWRlcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rZXljbG9ha2lmeS1hbmd1bGFyL3NyYy9saWIvcHJvdmlkZXJzL2tleWNsb2FraWZ5LWFuZ3VsYXIucHJvdmlkZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMzQyxPQUFPLEVBQ0gsZUFBZSxFQUNmLGNBQWMsRUFDZCxTQUFTLEVBQ1Qsd0JBQXdCLEVBQzNCLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFMUMsTUFBTSxDQUFDLE1BQU0sSUFBSSxHQUFHLElBQUksY0FBYyxDQUFPLE1BQU0sQ0FBQyxDQUFDO0FBQ3JELE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRyxJQUFJLGNBQWMsQ0FBWSxrQkFBa0IsQ0FBQyxDQUFDO0FBQzVFLE1BQU0sQ0FBQyxNQUFNLGVBQWUsR0FBRyxJQUFJLGNBQWMsQ0FBVSxpQkFBaUIsQ0FBQyxDQUFDO0FBQzlFLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBRyxJQUFJLGNBQWMsQ0FBaUMsU0FBUyxDQUFDLENBQUM7QUFDckYsTUFBTSxDQUFDLE1BQU0sNkJBQTZCLEdBQUcsSUFBSSxjQUFjLENBQzNELDJCQUEyQixDQUM5QixDQUFDO0FBc0JGLE1BQU0sQ0FBQyxNQUFNLHlCQUF5QixHQUFHLENBQUMsTUFBZ0MsRUFBRSxFQUFFLENBQzFFLHdCQUF3QixDQUFDO0lBQ3JCO1FBQ0ksT0FBTyxFQUFFLFVBQVU7UUFDbkIsUUFBUSxFQUFFLE1BQU0sQ0FBQyxTQUFTO0tBQzdCO0lBQ0Q7UUFDSSxPQUFPLEVBQUUsNkJBQTZCO1FBQ3RDLFFBQVEsRUFBRSxNQUFNLEVBQUUseUJBQXlCLElBQUksSUFBSTtLQUN0RDtJQUNEO1FBQ0ksT0FBTyxFQUFFLFNBQVM7UUFDbEIsVUFBVSxFQUFFLENBQUMsUUFBa0IsRUFBRSxFQUFFO1lBQy9CLE9BQU8sUUFBUSxDQUFDLGVBQWUsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDO1FBQ2pELENBQUM7UUFDRCxJQUFJLEVBQUUsQ0FBQyxRQUFRLENBQUM7S0FDbkI7SUFDRDtRQUNJLE9BQU8sRUFBRSxlQUFlO1FBQ3hCLEtBQUssRUFBRSxJQUFJO1FBQ1gsVUFBVSxFQUNOLENBQ0ksV0FBbUUsRUFDbkUsU0FBb0IsRUFDdEIsRUFBRSxDQUNKLEtBQUssSUFBSSxFQUFFO1lBQ1AsTUFBTSxPQUFPLEdBQUcsTUFBTSxDQUFDLE9BQU8sQ0FBQztZQUUvQixNQUFNLEVBQUUsSUFBSSxFQUFFLHNCQUFzQixFQUFFLEdBQUcsT0FBTyxDQUFDO2dCQUM3QyxTQUFTO2FBQ1osQ0FBQyxDQUFDO1lBQ0gsSUFBSSxXQUFXLEdBQUcsSUFBSSxPQUFPLENBQWMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztZQUNyRSxJQUFJLHNCQUFzQixFQUFFLENBQUM7Z0JBQ3pCLFdBQVcsR0FBRyxzQkFBc0IsQ0FBQztZQUN6QyxDQUFDO1lBQ0QsT0FBTyxXQUFXLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFO2dCQUMzQixXQUFXLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQztnQkFDeEIsT0FBTyxJQUFJLENBQUM7WUFDaEIsQ0FBQyxDQUFDLENBQUM7UUFDUCxDQUFDO1FBQ0wsSUFBSSxFQUFFLENBQUMsV0FBVyxFQUFFLFVBQVUsQ0FBQztLQUNsQztJQUNELEVBQUUsT0FBTyxFQUFFLGVBQWUsRUFBRSxRQUFRLEVBQUUsTUFBTSxFQUFFLGVBQWUsSUFBSSxJQUFJLEVBQUU7SUFDdkUsRUFBRSxPQUFPLEVBQUUsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLEVBQUUsT0FBTyxJQUFJLEVBQUUsRUFBRTtJQUNyRDtRQUNJLE9BQU8sRUFBRSxJQUFJO1FBQ2IsVUFBVSxFQUFFLENBQ1IsV0FBbUUsRUFDckUsRUFBRTtZQUNBLE9BQU8sV0FBVyxDQUFDLElBQUksQ0FBQztRQUM1QixDQUFDO1FBQ0QsSUFBSSxFQUFFLENBQUMsV0FBVyxDQUFDO0tBQ3RCO0NBQ0osQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRE9DVU1FTlQgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtcbiAgICBBUFBfSU5JVElBTElaRVIsXG4gICAgSW5qZWN0aW9uVG9rZW4sXG4gICAgTE9DQUxFX0lELFxuICAgIG1ha2VFbnZpcm9ubWVudFByb3ZpZGVyc1xufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEkxOG4gfSBmcm9tICcuLi9pMThuJztcbmltcG9ydCB7IEkxOG5TZXJ2aWNlIH0gZnJvbSAnLi4vc2VydmljZXMnO1xuXG5leHBvcnQgY29uc3QgSTE4TiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxJMThuPignaTE4bicpO1xuZXhwb3J0IGNvbnN0IEtDX0NPTlRFWFQgPSBuZXcgSW5qZWN0aW9uVG9rZW48S2NDb250ZXh0Pigna2V5Y2xvYWsgY29udGV4dCcpO1xuZXhwb3J0IGNvbnN0IFVTRV9ERUZBVUxUX0NTUyA9IG5ldyBJbmplY3Rpb25Ub2tlbjxib29sZWFuPigndXNlIGRlZmF1bHQgY3NzJyk7XG5leHBvcnQgY29uc3QgQ0xBU1NFUyA9IG5ldyBJbmplY3Rpb25Ub2tlbjx7IFtrZXkgaW4gQ2xhc3NLZXldPzogc3RyaW5nIH0+KCdjbGFzc2VzJyk7XG5leHBvcnQgY29uc3QgRE9fTUFLRV9VU0VSX0NPTkZJUk1fUEFTU1dPUkQgPSBuZXcgSW5qZWN0aW9uVG9rZW48Ym9vbGVhbj4oXG4gICAgJ2RvTWFrZVVzZXJDb25maXJtUGFzc3dvcmQnXG4pO1xuXG50eXBlIENsYXNzS2V5ID1cbiAgICB8IGltcG9ydCgna2V5Y2xvYWtpZnkvbG9naW4vbGliL2tjQ2xzeCcpLkNsYXNzS2V5XG4gICAgfCBpbXBvcnQoJ2tleWNsb2FraWZ5L2FjY291bnQvbGliL2tjQ2xzeCcpLkNsYXNzS2V5O1xudHlwZSBLY0NvbnRleHRMaWtlID1cbiAgICB8IGltcG9ydCgna2V5Y2xvYWtpZnkvbG9naW4vaTE4bi9ub0pzeCcpLktjQ29udGV4dExpa2VcbiAgICB8IGltcG9ydCgna2V5Y2xvYWtpZnkvYWNjb3VudC9pMThuL25vSnN4JykuS2NDb250ZXh0TGlrZTtcbnR5cGUgS2NDb250ZXh0ID1cbiAgICB8IGltcG9ydCgna2V5Y2xvYWtpZnkvbG9naW4vS2NDb250ZXh0JykuS2NDb250ZXh0XG4gICAgfCBpbXBvcnQoJ2tleWNsb2FraWZ5L2FjY291bnQvS2NDb250ZXh0JykuS2NDb250ZXh0O1xuXG5leHBvcnQgdHlwZSBLZXljbG9ha2lmeUFuZ3VsYXJDb25maWcgPSB7XG4gICAgZG9NYWtlVXNlckNvbmZpcm1QYXNzd29yZD86IGJvb2xlYW47XG4gICAgZG9Vc2VEZWZhdWx0Q3NzPzogYm9vbGVhbjtcbiAgICBjbGFzc2VzPzogeyBba2V5IGluIENsYXNzS2V5XT86IHN0cmluZyB9O1xuICAgIGdldEkxOG46IChwYXJhbXM6IHsga2NDb250ZXh0OiBLY0NvbnRleHRMaWtlIH0pID0+IHtcbiAgICAgICAgaTE4bjogdW5rbm93bjtcbiAgICAgICAgcHJJMThuX2N1cnJlbnRMYW5ndWFnZTogUHJvbWlzZTx1bmtub3duPiB8IHVuZGVmaW5lZDtcbiAgICB9O1xufTtcblxuZXhwb3J0IGNvbnN0IHByb3ZpZGVLZXljbG9ha2lmeUFuZ3VsYXIgPSAoY29uZmlnOiBLZXljbG9ha2lmeUFuZ3VsYXJDb25maWcpID0+XG4gICAgbWFrZUVudmlyb25tZW50UHJvdmlkZXJzKFtcbiAgICAgICAge1xuICAgICAgICAgICAgcHJvdmlkZTogS0NfQ09OVEVYVCxcbiAgICAgICAgICAgIHVzZVZhbHVlOiB3aW5kb3cua2NDb250ZXh0XG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IERPX01BS0VfVVNFUl9DT05GSVJNX1BBU1NXT1JELFxuICAgICAgICAgICAgdXNlVmFsdWU6IGNvbmZpZz8uZG9NYWtlVXNlckNvbmZpcm1QYXNzd29yZCA/PyB0cnVlXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IExPQ0FMRV9JRCxcbiAgICAgICAgICAgIHVzZUZhY3Rvcnk6IChkb2N1bWVudDogRG9jdW1lbnQpID0+IHtcbiAgICAgICAgICAgICAgICByZXR1cm4gZG9jdW1lbnQuZG9jdW1lbnRFbGVtZW50LmxhbmcgPz8gJ2VuJztcbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICBkZXBzOiBbRE9DVU1FTlRdXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IEFQUF9JTklUSUFMSVpFUixcbiAgICAgICAgICAgIG11bHRpOiB0cnVlLFxuICAgICAgICAgICAgdXNlRmFjdG9yeTpcbiAgICAgICAgICAgICAgICAoXG4gICAgICAgICAgICAgICAgICAgIGkxOG5TZXJ2aWNlOiBJMThuU2VydmljZTxSZXR1cm5UeXBlPHR5cGVvZiBjb25maWcuZ2V0STE4bj5bJ2kxOG4nXT4sXG4gICAgICAgICAgICAgICAgICAgIGtjQ29udGV4dDogS2NDb250ZXh0XG4gICAgICAgICAgICAgICAgKSA9PlxuICAgICAgICAgICAgICAgIGFzeW5jICgpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgY29uc3QgZ2V0STE4biA9IGNvbmZpZy5nZXRJMThuO1xuXG4gICAgICAgICAgICAgICAgICAgIGNvbnN0IHsgaTE4biwgcHJJMThuX2N1cnJlbnRMYW5ndWFnZSB9ID0gZ2V0STE4bih7XG4gICAgICAgICAgICAgICAgICAgICAgICBrY0NvbnRleHRcbiAgICAgICAgICAgICAgICAgICAgfSk7XG4gICAgICAgICAgICAgICAgICAgIGxldCBpMThuUHJvbWlzZSA9IG5ldyBQcm9taXNlPHR5cGVvZiBpMThuPihyZXNvbHZlID0+IHJlc29sdmUoaTE4bikpO1xuICAgICAgICAgICAgICAgICAgICBpZiAocHJJMThuX2N1cnJlbnRMYW5ndWFnZSkge1xuICAgICAgICAgICAgICAgICAgICAgICAgaTE4blByb21pc2UgPSBwckkxOG5fY3VycmVudExhbmd1YWdlO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgIHJldHVybiBpMThuUHJvbWlzZS50aGVuKGkxOG4gPT4ge1xuICAgICAgICAgICAgICAgICAgICAgICAgaTE4blNlcnZpY2UuaTE4biA9IGkxOG47XG4gICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gdHJ1ZTtcbiAgICAgICAgICAgICAgICAgICAgfSk7XG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIGRlcHM6IFtJMThuU2VydmljZSwgS0NfQ09OVEVYVF1cbiAgICAgICAgfSxcbiAgICAgICAgeyBwcm92aWRlOiBVU0VfREVGQVVMVF9DU1MsIHVzZVZhbHVlOiBjb25maWc/LmRvVXNlRGVmYXVsdENzcyA/PyB0cnVlIH0sXG4gICAgICAgIHsgcHJvdmlkZTogQ0xBU1NFUywgdXNlVmFsdWU6IGNvbmZpZz8uY2xhc3NlcyA/PyB7fSB9LFxuICAgICAgICB7XG4gICAgICAgICAgICBwcm92aWRlOiBJMThOLFxuICAgICAgICAgICAgdXNlRmFjdG9yeTogKFxuICAgICAgICAgICAgICAgIGkxOG5TZXJ2aWNlOiBJMThuU2VydmljZTxSZXR1cm5UeXBlPHR5cGVvZiBjb25maWcuZ2V0STE4bj5bJ2kxOG4nXT5cbiAgICAgICAgICAgICkgPT4ge1xuICAgICAgICAgICAgICAgIHJldHVybiBpMThuU2VydmljZS5pMThuO1xuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIGRlcHM6IFtJMThuU2VydmljZV1cbiAgICAgICAgfVxuICAgIF0pO1xuIl19
|
package/lib/public-api.mjs
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from './models';
|
|
2
|
-
export * from './providers/keycloakify-angular.providers';
|
|
3
|
-
export * from './services';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2tleWNsb2FraWZ5LWFuZ3VsYXIvc3JjL2xpYi9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVNBLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsMkNBQTJDLENBQUM7QUFDMUQsY0FBYyxZQUFZLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBLY0NvbnRleHQgYXMgS2NBY2NvdW50Q29udGV4dCB9IGZyb20gJ2tleWNsb2FraWZ5L2FjY291bnQvS2NDb250ZXh0JztcbmltcG9ydCB7IEtjQ29udGV4dCBhcyBLY0xvZ2luQ29udGV4dCB9IGZyb20gJ2tleWNsb2FraWZ5L2xvZ2luL0tjQ29udGV4dCc7XG5cbmRlY2xhcmUgZ2xvYmFsIHtcbiAgICBpbnRlcmZhY2UgV2luZG93IHtcbiAgICAgICAga2NDb250ZXh0PzogS2NMb2dpbkNvbnRleHQgfCBLY0FjY291bnRDb250ZXh0O1xuICAgIH1cbn1cblxuZXhwb3J0ICogZnJvbSAnLi9tb2RlbHMnO1xuZXhwb3J0ICogZnJvbSAnLi9wcm92aWRlcnMva2V5Y2xvYWtpZnktYW5ndWxhci5wcm92aWRlcnMnO1xuZXhwb3J0ICogZnJvbSAnLi9zZXJ2aWNlcyc7XG4iXX0=
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class I18nService {
|
|
4
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: I18nService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
5
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: I18nService, providedIn: 'root' }); }
|
|
6
|
-
}
|
|
7
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: I18nService, decorators: [{
|
|
8
|
-
type: Injectable,
|
|
9
|
-
args: [{ providedIn: 'root' }]
|
|
10
|
-
}] });
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaTE4bi5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2V5Y2xvYWtpZnktYW5ndWxhci9zcmMvbGliL3NlcnZpY2VzL2kxOG4uc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUUzQyxNQUFNLE9BQU8sV0FBVzs4R0FBWCxXQUFXO2tIQUFYLFdBQVcsY0FERSxNQUFNOzsyRkFDbkIsV0FBVztrQkFEdkIsVUFBVTttQkFBQyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5ASW5qZWN0YWJsZSh7IHByb3ZpZGVkSW46ICdyb290JyB9KVxuZXhwb3J0IGNsYXNzIEkxOG5TZXJ2aWNlPFQ+IHtcbiAgICBpMThuITogVDtcbn1cbiJdfQ==
|
package/lib/services/index.mjs
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './resource-injector.service';
|
|
2
|
-
export * from './i18n.service';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9rZXljbG9ha2lmeS1hbmd1bGFyL3NyYy9saWIvc2VydmljZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLGdCQUFnQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yZXNvdXJjZS1pbmplY3Rvci5zZXJ2aWNlJztcbmV4cG9ydCAqIGZyb20gJy4vaTE4bi5zZXJ2aWNlJztcbiJdfQ==
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { inject, Injectable, RendererFactory2 } from '@angular/core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class ResourceInjectorService {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.renderer = inject(RendererFactory2).createRenderer(null, null);
|
|
7
|
-
}
|
|
8
|
-
createLink(url) {
|
|
9
|
-
return new Observable(observer => {
|
|
10
|
-
// check if the style is already injected
|
|
11
|
-
if (Array.from(document.styleSheets).some(s => s.href?.includes(url))) {
|
|
12
|
-
observer.next();
|
|
13
|
-
observer.complete();
|
|
14
|
-
console.debug(`stylesheet: ${url} already loaded`);
|
|
15
|
-
return;
|
|
16
|
-
}
|
|
17
|
-
const link = document.createElement('link');
|
|
18
|
-
link.rel = 'stylesheet';
|
|
19
|
-
link.href = url;
|
|
20
|
-
link.onload = () => {
|
|
21
|
-
observer.next();
|
|
22
|
-
observer.complete();
|
|
23
|
-
};
|
|
24
|
-
link.onerror = () => {
|
|
25
|
-
observer.error(new Error(`Failed to load stylesheet: ${url}`));
|
|
26
|
-
};
|
|
27
|
-
this.renderer.appendChild(document.head, link);
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
createScript({ type, id, src, textContent }) {
|
|
31
|
-
// check if the script is already injected
|
|
32
|
-
if (Array.from(document.scripts).some(s => s.id?.includes(id))) {
|
|
33
|
-
console.debug(`script: ${src} already injected`);
|
|
34
|
-
return;
|
|
35
|
-
}
|
|
36
|
-
const script = document.createElement('script');
|
|
37
|
-
script.type = type;
|
|
38
|
-
if (src)
|
|
39
|
-
script.src = src;
|
|
40
|
-
if (textContent)
|
|
41
|
-
script.textContent = textContent;
|
|
42
|
-
script.id = id;
|
|
43
|
-
this.renderer.appendChild(document.head, script);
|
|
44
|
-
}
|
|
45
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ResourceInjectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
46
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ResourceInjectorService, providedIn: 'root' }); }
|
|
47
|
-
}
|
|
48
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: ResourceInjectorService, decorators: [{
|
|
49
|
-
type: Injectable,
|
|
50
|
-
args: [{
|
|
51
|
-
providedIn: 'root'
|
|
52
|
-
}]
|
|
53
|
-
}] });
|
|
54
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb3VyY2UtaW5qZWN0b3Iuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2tleWNsb2FraWZ5LWFuZ3VsYXIvc3JjL2xpYi9zZXJ2aWNlcy9yZXNvdXJjZS1pbmplY3Rvci5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxNQUFNLEVBQUUsVUFBVSxFQUFhLGdCQUFnQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2hGLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxNQUFNLENBQUM7O0FBTWxDLE1BQU0sT0FBTyx1QkFBdUI7SUFIcEM7UUFJWSxhQUFRLEdBQWMsTUFBTSxDQUFDLGdCQUFnQixDQUFDLENBQUMsY0FBYyxDQUFDLElBQUksRUFBRSxJQUFJLENBQUMsQ0FBQztLQXlDckY7SUF2Q0csVUFBVSxDQUFDLEdBQVc7UUFDbEIsT0FBTyxJQUFJLFVBQVUsQ0FBTyxRQUFRLENBQUMsRUFBRTtZQUNuQyx5Q0FBeUM7WUFDekMsSUFBSSxLQUFLLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxXQUFXLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsSUFBSSxFQUFFLFFBQVEsQ0FBQyxHQUFHLENBQUMsQ0FBQyxFQUFFLENBQUM7Z0JBQ3BFLFFBQVEsQ0FBQyxJQUFJLEVBQUUsQ0FBQztnQkFDaEIsUUFBUSxDQUFDLFFBQVEsRUFBRSxDQUFDO2dCQUNwQixPQUFPLENBQUMsS0FBSyxDQUFDLGVBQWUsR0FBRyxpQkFBaUIsQ0FBQyxDQUFDO2dCQUNuRCxPQUFPO1lBQ1gsQ0FBQztZQUNELE1BQU0sSUFBSSxHQUFHLFFBQVEsQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLENBQUM7WUFDNUMsSUFBSSxDQUFDLEdBQUcsR0FBRyxZQUFZLENBQUM7WUFDeEIsSUFBSSxDQUFDLElBQUksR0FBRyxHQUFHLENBQUM7WUFFaEIsSUFBSSxDQUFDLE1BQU0sR0FBRyxHQUFHLEVBQUU7Z0JBQ2YsUUFBUSxDQUFDLElBQUksRUFBRSxDQUFDO2dCQUNoQixRQUFRLENBQUMsUUFBUSxFQUFFLENBQUM7WUFDeEIsQ0FBQyxDQUFDO1lBRUYsSUFBSSxDQUFDLE9BQU8sR0FBRyxHQUFHLEVBQUU7Z0JBQ2hCLFFBQVEsQ0FBQyxLQUFLLENBQUMsSUFBSSxLQUFLLENBQUMsOEJBQThCLEdBQUcsRUFBRSxDQUFDLENBQUMsQ0FBQztZQUNuRSxDQUFDLENBQUM7WUFFRixJQUFJLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLElBQUksQ0FBQyxDQUFDO1FBQ25ELENBQUMsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUNELFlBQVksQ0FBQyxFQUFFLElBQUksRUFBRSxFQUFFLEVBQUUsR0FBRyxFQUFFLFdBQVcsRUFBVTtRQUMvQywwQ0FBMEM7UUFDMUMsSUFBSSxLQUFLLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLFFBQVEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUM7WUFDN0QsT0FBTyxDQUFDLEtBQUssQ0FBQyxXQUFXLEdBQUcsbUJBQW1CLENBQUMsQ0FBQztZQUNqRCxPQUFPO1FBQ1gsQ0FBQztRQUNELE1BQU0sTUFBTSxHQUFHLFFBQVEsQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLENBQUM7UUFDaEQsTUFBTSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUM7UUFDbkIsSUFBSSxHQUFHO1lBQUUsTUFBTSxDQUFDLEdBQUcsR0FBRyxHQUFHLENBQUM7UUFDMUIsSUFBSSxXQUFXO1lBQUUsTUFBTSxDQUFDLFdBQVcsR0FBRyxXQUFXLENBQUM7UUFDbEQsTUFBTSxDQUFDLEVBQUUsR0FBRyxFQUFFLENBQUM7UUFFZixJQUFJLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQ3JELENBQUM7OEdBekNRLHVCQUF1QjtrSEFBdkIsdUJBQXVCLGNBRnBCLE1BQU07OzJGQUVULHVCQUF1QjtrQkFIbkMsVUFBVTttQkFBQztvQkFDUixVQUFVLEVBQUUsTUFBTTtpQkFDckIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBpbmplY3QsIEluamVjdGFibGUsIFJlbmRlcmVyMiwgUmVuZGVyZXJGYWN0b3J5MiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgU2NyaXB0IH0gZnJvbSAnLi4vbW9kZWxzL3NjcmlwdC5tb2RlbCc7XG5cbkBJbmplY3RhYmxlKHtcbiAgICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgUmVzb3VyY2VJbmplY3RvclNlcnZpY2Uge1xuICAgIHByaXZhdGUgcmVuZGVyZXI6IFJlbmRlcmVyMiA9IGluamVjdChSZW5kZXJlckZhY3RvcnkyKS5jcmVhdGVSZW5kZXJlcihudWxsLCBudWxsKTtcblxuICAgIGNyZWF0ZUxpbmsodXJsOiBzdHJpbmcpOiBPYnNlcnZhYmxlPHZvaWQ+IHtcbiAgICAgICAgcmV0dXJuIG5ldyBPYnNlcnZhYmxlPHZvaWQ+KG9ic2VydmVyID0+IHtcbiAgICAgICAgICAgIC8vIGNoZWNrIGlmIHRoZSBzdHlsZSBpcyBhbHJlYWR5IGluamVjdGVkXG4gICAgICAgICAgICBpZiAoQXJyYXkuZnJvbShkb2N1bWVudC5zdHlsZVNoZWV0cykuc29tZShzID0+IHMuaHJlZj8uaW5jbHVkZXModXJsKSkpIHtcbiAgICAgICAgICAgICAgICBvYnNlcnZlci5uZXh0KCk7XG4gICAgICAgICAgICAgICAgb2JzZXJ2ZXIuY29tcGxldGUoKTtcbiAgICAgICAgICAgICAgICBjb25zb2xlLmRlYnVnKGBzdHlsZXNoZWV0OiAke3VybH0gYWxyZWFkeSBsb2FkZWRgKTtcbiAgICAgICAgICAgICAgICByZXR1cm47XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICBjb25zdCBsaW5rID0gZG9jdW1lbnQuY3JlYXRlRWxlbWVudCgnbGluaycpO1xuICAgICAgICAgICAgbGluay5yZWwgPSAnc3R5bGVzaGVldCc7XG4gICAgICAgICAgICBsaW5rLmhyZWYgPSB1cmw7XG5cbiAgICAgICAgICAgIGxpbmsub25sb2FkID0gKCkgPT4ge1xuICAgICAgICAgICAgICAgIG9ic2VydmVyLm5leHQoKTtcbiAgICAgICAgICAgICAgICBvYnNlcnZlci5jb21wbGV0ZSgpO1xuICAgICAgICAgICAgfTtcblxuICAgICAgICAgICAgbGluay5vbmVycm9yID0gKCkgPT4ge1xuICAgICAgICAgICAgICAgIG9ic2VydmVyLmVycm9yKG5ldyBFcnJvcihgRmFpbGVkIHRvIGxvYWQgc3R5bGVzaGVldDogJHt1cmx9YCkpO1xuICAgICAgICAgICAgfTtcblxuICAgICAgICAgICAgdGhpcy5yZW5kZXJlci5hcHBlbmRDaGlsZChkb2N1bWVudC5oZWFkLCBsaW5rKTtcbiAgICAgICAgfSk7XG4gICAgfVxuICAgIGNyZWF0ZVNjcmlwdCh7IHR5cGUsIGlkLCBzcmMsIHRleHRDb250ZW50IH06IFNjcmlwdCk6IHZvaWQge1xuICAgICAgICAvLyBjaGVjayBpZiB0aGUgc2NyaXB0IGlzIGFscmVhZHkgaW5qZWN0ZWRcbiAgICAgICAgaWYgKEFycmF5LmZyb20oZG9jdW1lbnQuc2NyaXB0cykuc29tZShzID0+IHMuaWQ/LmluY2x1ZGVzKGlkKSkpIHtcbiAgICAgICAgICAgIGNvbnNvbGUuZGVidWcoYHNjcmlwdDogJHtzcmN9IGFscmVhZHkgaW5qZWN0ZWRgKTtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuICAgICAgICBjb25zdCBzY3JpcHQgPSBkb2N1bWVudC5jcmVhdGVFbGVtZW50KCdzY3JpcHQnKTtcbiAgICAgICAgc2NyaXB0LnR5cGUgPSB0eXBlO1xuICAgICAgICBpZiAoc3JjKSBzY3JpcHQuc3JjID0gc3JjO1xuICAgICAgICBpZiAodGV4dENvbnRlbnQpIHNjcmlwdC50ZXh0Q29udGVudCA9IHRleHRDb250ZW50O1xuICAgICAgICBzY3JpcHQuaWQgPSBpZDtcblxuICAgICAgICB0aGlzLnJlbmRlcmVyLmFwcGVuZENoaWxkKGRvY3VtZW50LmhlYWQsIHNjcmlwdCk7XG4gICAgfVxufVxuIl19
|
package/login/DefaultPage.d.ts
DELETED
|
@@ -1,260 +0,0 @@
|
|
|
1
|
-
import { Type } from '@angular/core';
|
|
2
|
-
import { ClassKey } from 'keycloakify/login/lib/kcClsx';
|
|
3
|
-
import { KcContext } from 'keycloakify/login/KcContext';
|
|
4
|
-
declare const DefaultPage: (pageId: KcContext['pageId'], doMakeUserConfirmPassword?: boolean, doUseDefaultCss?: boolean, classes?: {
|
|
5
|
-
kcBodyClass?: string | undefined;
|
|
6
|
-
kcHeaderWrapperClass?: string | undefined;
|
|
7
|
-
kcLocaleWrapperClass?: string | undefined;
|
|
8
|
-
kcInfoAreaWrapperClass?: string | undefined;
|
|
9
|
-
kcFormButtonsWrapperClass?: string | undefined;
|
|
10
|
-
kcFormOptionsWrapperClass?: string | undefined;
|
|
11
|
-
kcCheckboxInputClass?: string | undefined;
|
|
12
|
-
kcLocaleDropDownClass?: string | undefined;
|
|
13
|
-
kcLocaleListItemClass?: string | undefined;
|
|
14
|
-
kcContentWrapperClass?: string | undefined;
|
|
15
|
-
"kcLogoIdP-facebook"?: string | undefined;
|
|
16
|
-
kcAuthenticatorOTPClass?: string | undefined;
|
|
17
|
-
"kcLogoIdP-bitbucket"?: string | undefined;
|
|
18
|
-
kcAuthenticatorWebAuthnClass?: string | undefined;
|
|
19
|
-
kcWebAuthnDefaultIcon?: string | undefined;
|
|
20
|
-
"kcLogoIdP-stackoverflow"?: string | undefined;
|
|
21
|
-
kcSelectAuthListItemClass?: string | undefined;
|
|
22
|
-
"kcLogoIdP-microsoft"?: string | undefined;
|
|
23
|
-
kcLoginOTPListItemHeaderClass?: string | undefined;
|
|
24
|
-
kcLocaleItemClass?: string | undefined;
|
|
25
|
-
kcLoginOTPListItemIconBodyClass?: string | undefined;
|
|
26
|
-
kcInputHelperTextAfterClass?: string | undefined;
|
|
27
|
-
kcFormClass?: string | undefined;
|
|
28
|
-
kcSelectAuthListClass?: string | undefined;
|
|
29
|
-
kcInputClassRadioCheckboxLabelDisabled?: string | undefined;
|
|
30
|
-
kcSelectAuthListItemIconClass?: string | undefined;
|
|
31
|
-
kcRecoveryCodesWarning?: string | undefined;
|
|
32
|
-
kcFormSettingClass?: string | undefined;
|
|
33
|
-
kcWebAuthnBLE?: string | undefined;
|
|
34
|
-
kcInputWrapperClass?: string | undefined;
|
|
35
|
-
kcSelectAuthListItemArrowIconClass?: string | undefined;
|
|
36
|
-
kcFeedbackAreaClass?: string | undefined;
|
|
37
|
-
kcFormPasswordVisibilityButtonClass?: string | undefined;
|
|
38
|
-
"kcLogoIdP-google"?: string | undefined;
|
|
39
|
-
kcCheckLabelClass?: string | undefined;
|
|
40
|
-
kcSelectAuthListItemFillClass?: string | undefined;
|
|
41
|
-
kcAuthenticatorDefaultClass?: string | undefined;
|
|
42
|
-
"kcLogoIdP-gitlab"?: string | undefined;
|
|
43
|
-
kcFormAreaClass?: string | undefined;
|
|
44
|
-
kcFormButtonsClass?: string | undefined;
|
|
45
|
-
kcInputClassRadioLabel?: string | undefined;
|
|
46
|
-
kcAuthenticatorWebAuthnPasswordlessClass?: string | undefined;
|
|
47
|
-
kcSelectAuthListItemHeadingClass?: string | undefined;
|
|
48
|
-
kcInfoAreaClass?: string | undefined;
|
|
49
|
-
kcLogoLink?: string | undefined;
|
|
50
|
-
kcContainerClass?: string | undefined;
|
|
51
|
-
kcSelectAuthListItemTitle?: string | undefined;
|
|
52
|
-
kcHtmlClass?: string | undefined;
|
|
53
|
-
kcLoginOTPListItemTitleClass?: string | undefined;
|
|
54
|
-
"kcLogoIdP-openshift-v4"?: string | undefined;
|
|
55
|
-
kcWebAuthnUnknownIcon?: string | undefined;
|
|
56
|
-
kcFormSocialAccountNameClass?: string | undefined;
|
|
57
|
-
"kcLogoIdP-openshift-v3"?: string | undefined;
|
|
58
|
-
kcLoginOTPListInputClass?: string | undefined;
|
|
59
|
-
kcWebAuthnUSB?: string | undefined;
|
|
60
|
-
kcInputClassRadio?: string | undefined;
|
|
61
|
-
kcWebAuthnKeyIcon?: string | undefined;
|
|
62
|
-
kcFeedbackInfoIcon?: string | undefined;
|
|
63
|
-
kcCommonLogoIdP?: string | undefined;
|
|
64
|
-
kcRecoveryCodesActions?: string | undefined;
|
|
65
|
-
kcFormGroupHeader?: string | undefined;
|
|
66
|
-
kcFormSocialAccountSectionClass?: string | undefined;
|
|
67
|
-
"kcLogoIdP-instagram"?: string | undefined;
|
|
68
|
-
kcAlertClass?: string | undefined;
|
|
69
|
-
kcHeaderClass?: string | undefined;
|
|
70
|
-
kcLabelWrapperClass?: string | undefined;
|
|
71
|
-
kcFormPasswordVisibilityIconShow?: string | undefined;
|
|
72
|
-
kcFormSocialAccountLinkClass?: string | undefined;
|
|
73
|
-
kcLocaleMainClass?: string | undefined;
|
|
74
|
-
kcInputGroup?: string | undefined;
|
|
75
|
-
kcTextareaClass?: string | undefined;
|
|
76
|
-
kcButtonBlockClass?: string | undefined;
|
|
77
|
-
kcButtonClass?: string | undefined;
|
|
78
|
-
kcWebAuthnNFC?: string | undefined;
|
|
79
|
-
kcLocaleClass?: string | undefined;
|
|
80
|
-
kcInputClassCheckboxInput?: string | undefined;
|
|
81
|
-
kcFeedbackErrorIcon?: string | undefined;
|
|
82
|
-
kcInputLargeClass?: string | undefined;
|
|
83
|
-
kcInputErrorMessageClass?: string | undefined;
|
|
84
|
-
kcRecoveryCodesList?: string | undefined;
|
|
85
|
-
kcFormSocialAccountListClass?: string | undefined;
|
|
86
|
-
kcAlertTitleClass?: string | undefined;
|
|
87
|
-
kcAuthenticatorPasswordClass?: string | undefined;
|
|
88
|
-
kcCheckInputClass?: string | undefined;
|
|
89
|
-
"kcLogoIdP-linkedin"?: string | undefined;
|
|
90
|
-
"kcLogoIdP-twitter"?: string | undefined;
|
|
91
|
-
kcFeedbackWarningIcon?: string | undefined;
|
|
92
|
-
kcResetFlowIcon?: string | undefined;
|
|
93
|
-
kcSelectAuthListItemIconPropertyClass?: string | undefined;
|
|
94
|
-
kcFeedbackSuccessIcon?: string | undefined;
|
|
95
|
-
kcLoginOTPListClass?: string | undefined;
|
|
96
|
-
kcSrOnlyClass?: string | undefined;
|
|
97
|
-
kcFormSocialAccountListGridClass?: string | undefined;
|
|
98
|
-
kcButtonDefaultClass?: string | undefined;
|
|
99
|
-
kcFormGroupErrorClass?: string | undefined;
|
|
100
|
-
kcSelectAuthListItemDescriptionClass?: string | undefined;
|
|
101
|
-
kcSelectAuthListItemBodyClass?: string | undefined;
|
|
102
|
-
kcWebAuthnInternal?: string | undefined;
|
|
103
|
-
kcSelectAuthListItemArrowClass?: string | undefined;
|
|
104
|
-
kcCheckClass?: string | undefined;
|
|
105
|
-
kcContentClass?: string | undefined;
|
|
106
|
-
kcLogoClass?: string | undefined;
|
|
107
|
-
kcLoginOTPListItemIconClass?: string | undefined;
|
|
108
|
-
kcLoginClass?: string | undefined;
|
|
109
|
-
kcSignUpClass?: string | undefined;
|
|
110
|
-
kcButtonLargeClass?: string | undefined;
|
|
111
|
-
kcFormCardClass?: string | undefined;
|
|
112
|
-
kcLocaleListClass?: string | undefined;
|
|
113
|
-
kcInputClass?: string | undefined;
|
|
114
|
-
kcFormGroupClass?: string | undefined;
|
|
115
|
-
"kcLogoIdP-paypal"?: string | undefined;
|
|
116
|
-
kcInputClassCheckbox?: string | undefined;
|
|
117
|
-
kcRecoveryCodesConfirmation?: string | undefined;
|
|
118
|
-
kcFormPasswordVisibilityIconHide?: string | undefined;
|
|
119
|
-
kcInputClassRadioInput?: string | undefined;
|
|
120
|
-
kcFormSocialAccountListButtonClass?: string | undefined;
|
|
121
|
-
kcInputClassCheckboxLabel?: string | undefined;
|
|
122
|
-
kcFormOptionsClass?: string | undefined;
|
|
123
|
-
kcFormHeaderClass?: string | undefined;
|
|
124
|
-
kcFormSocialAccountGridItem?: string | undefined;
|
|
125
|
-
kcButtonPrimaryClass?: string | undefined;
|
|
126
|
-
kcInputHelperTextBeforeClass?: string | undefined;
|
|
127
|
-
"kcLogoIdP-github"?: string | undefined;
|
|
128
|
-
kcLabelClass?: string | undefined;
|
|
129
|
-
}) => Promise<{
|
|
130
|
-
ComponentBootstrap: Type<unknown>;
|
|
131
|
-
doMakeUserConfirmPassword: boolean;
|
|
132
|
-
doUseDefaultCss: boolean;
|
|
133
|
-
classes: {
|
|
134
|
-
kcBodyClass?: string | undefined;
|
|
135
|
-
kcHeaderWrapperClass?: string | undefined;
|
|
136
|
-
kcLocaleWrapperClass?: string | undefined;
|
|
137
|
-
kcInfoAreaWrapperClass?: string | undefined;
|
|
138
|
-
kcFormButtonsWrapperClass?: string | undefined;
|
|
139
|
-
kcFormOptionsWrapperClass?: string | undefined;
|
|
140
|
-
kcCheckboxInputClass?: string | undefined;
|
|
141
|
-
kcLocaleDropDownClass?: string | undefined;
|
|
142
|
-
kcLocaleListItemClass?: string | undefined;
|
|
143
|
-
kcContentWrapperClass?: string | undefined;
|
|
144
|
-
"kcLogoIdP-facebook"?: string | undefined;
|
|
145
|
-
kcAuthenticatorOTPClass?: string | undefined;
|
|
146
|
-
"kcLogoIdP-bitbucket"?: string | undefined;
|
|
147
|
-
kcAuthenticatorWebAuthnClass?: string | undefined;
|
|
148
|
-
kcWebAuthnDefaultIcon?: string | undefined;
|
|
149
|
-
"kcLogoIdP-stackoverflow"?: string | undefined;
|
|
150
|
-
kcSelectAuthListItemClass?: string | undefined;
|
|
151
|
-
"kcLogoIdP-microsoft"?: string | undefined;
|
|
152
|
-
kcLoginOTPListItemHeaderClass?: string | undefined;
|
|
153
|
-
kcLocaleItemClass?: string | undefined;
|
|
154
|
-
kcLoginOTPListItemIconBodyClass?: string | undefined;
|
|
155
|
-
kcInputHelperTextAfterClass?: string | undefined;
|
|
156
|
-
kcFormClass?: string | undefined;
|
|
157
|
-
kcSelectAuthListClass?: string | undefined;
|
|
158
|
-
kcInputClassRadioCheckboxLabelDisabled?: string | undefined;
|
|
159
|
-
kcSelectAuthListItemIconClass?: string | undefined;
|
|
160
|
-
kcRecoveryCodesWarning?: string | undefined;
|
|
161
|
-
kcFormSettingClass?: string | undefined;
|
|
162
|
-
kcWebAuthnBLE?: string | undefined;
|
|
163
|
-
kcInputWrapperClass?: string | undefined;
|
|
164
|
-
kcSelectAuthListItemArrowIconClass?: string | undefined;
|
|
165
|
-
kcFeedbackAreaClass?: string | undefined;
|
|
166
|
-
kcFormPasswordVisibilityButtonClass?: string | undefined;
|
|
167
|
-
"kcLogoIdP-google"?: string | undefined;
|
|
168
|
-
kcCheckLabelClass?: string | undefined;
|
|
169
|
-
kcSelectAuthListItemFillClass?: string | undefined;
|
|
170
|
-
kcAuthenticatorDefaultClass?: string | undefined;
|
|
171
|
-
"kcLogoIdP-gitlab"?: string | undefined;
|
|
172
|
-
kcFormAreaClass?: string | undefined;
|
|
173
|
-
kcFormButtonsClass?: string | undefined;
|
|
174
|
-
kcInputClassRadioLabel?: string | undefined;
|
|
175
|
-
kcAuthenticatorWebAuthnPasswordlessClass?: string | undefined;
|
|
176
|
-
kcSelectAuthListItemHeadingClass?: string | undefined;
|
|
177
|
-
kcInfoAreaClass?: string | undefined;
|
|
178
|
-
kcLogoLink?: string | undefined;
|
|
179
|
-
kcContainerClass?: string | undefined;
|
|
180
|
-
kcSelectAuthListItemTitle?: string | undefined;
|
|
181
|
-
kcHtmlClass?: string | undefined;
|
|
182
|
-
kcLoginOTPListItemTitleClass?: string | undefined;
|
|
183
|
-
"kcLogoIdP-openshift-v4"?: string | undefined;
|
|
184
|
-
kcWebAuthnUnknownIcon?: string | undefined;
|
|
185
|
-
kcFormSocialAccountNameClass?: string | undefined;
|
|
186
|
-
"kcLogoIdP-openshift-v3"?: string | undefined;
|
|
187
|
-
kcLoginOTPListInputClass?: string | undefined;
|
|
188
|
-
kcWebAuthnUSB?: string | undefined;
|
|
189
|
-
kcInputClassRadio?: string | undefined;
|
|
190
|
-
kcWebAuthnKeyIcon?: string | undefined;
|
|
191
|
-
kcFeedbackInfoIcon?: string | undefined;
|
|
192
|
-
kcCommonLogoIdP?: string | undefined;
|
|
193
|
-
kcRecoveryCodesActions?: string | undefined;
|
|
194
|
-
kcFormGroupHeader?: string | undefined;
|
|
195
|
-
kcFormSocialAccountSectionClass?: string | undefined;
|
|
196
|
-
"kcLogoIdP-instagram"?: string | undefined;
|
|
197
|
-
kcAlertClass?: string | undefined;
|
|
198
|
-
kcHeaderClass?: string | undefined;
|
|
199
|
-
kcLabelWrapperClass?: string | undefined;
|
|
200
|
-
kcFormPasswordVisibilityIconShow?: string | undefined;
|
|
201
|
-
kcFormSocialAccountLinkClass?: string | undefined;
|
|
202
|
-
kcLocaleMainClass?: string | undefined;
|
|
203
|
-
kcInputGroup?: string | undefined;
|
|
204
|
-
kcTextareaClass?: string | undefined;
|
|
205
|
-
kcButtonBlockClass?: string | undefined;
|
|
206
|
-
kcButtonClass?: string | undefined;
|
|
207
|
-
kcWebAuthnNFC?: string | undefined;
|
|
208
|
-
kcLocaleClass?: string | undefined;
|
|
209
|
-
kcInputClassCheckboxInput?: string | undefined;
|
|
210
|
-
kcFeedbackErrorIcon?: string | undefined;
|
|
211
|
-
kcInputLargeClass?: string | undefined;
|
|
212
|
-
kcInputErrorMessageClass?: string | undefined;
|
|
213
|
-
kcRecoveryCodesList?: string | undefined;
|
|
214
|
-
kcFormSocialAccountListClass?: string | undefined;
|
|
215
|
-
kcAlertTitleClass?: string | undefined;
|
|
216
|
-
kcAuthenticatorPasswordClass?: string | undefined;
|
|
217
|
-
kcCheckInputClass?: string | undefined;
|
|
218
|
-
"kcLogoIdP-linkedin"?: string | undefined;
|
|
219
|
-
"kcLogoIdP-twitter"?: string | undefined;
|
|
220
|
-
kcFeedbackWarningIcon?: string | undefined;
|
|
221
|
-
kcResetFlowIcon?: string | undefined;
|
|
222
|
-
kcSelectAuthListItemIconPropertyClass?: string | undefined;
|
|
223
|
-
kcFeedbackSuccessIcon?: string | undefined;
|
|
224
|
-
kcLoginOTPListClass?: string | undefined;
|
|
225
|
-
kcSrOnlyClass?: string | undefined;
|
|
226
|
-
kcFormSocialAccountListGridClass?: string | undefined;
|
|
227
|
-
kcButtonDefaultClass?: string | undefined;
|
|
228
|
-
kcFormGroupErrorClass?: string | undefined;
|
|
229
|
-
kcSelectAuthListItemDescriptionClass?: string | undefined;
|
|
230
|
-
kcSelectAuthListItemBodyClass?: string | undefined;
|
|
231
|
-
kcWebAuthnInternal?: string | undefined;
|
|
232
|
-
kcSelectAuthListItemArrowClass?: string | undefined;
|
|
233
|
-
kcCheckClass?: string | undefined;
|
|
234
|
-
kcContentClass?: string | undefined;
|
|
235
|
-
kcLogoClass?: string | undefined;
|
|
236
|
-
kcLoginOTPListItemIconClass?: string | undefined;
|
|
237
|
-
kcLoginClass?: string | undefined;
|
|
238
|
-
kcSignUpClass?: string | undefined;
|
|
239
|
-
kcButtonLargeClass?: string | undefined;
|
|
240
|
-
kcFormCardClass?: string | undefined;
|
|
241
|
-
kcLocaleListClass?: string | undefined;
|
|
242
|
-
kcInputClass?: string | undefined;
|
|
243
|
-
kcFormGroupClass?: string | undefined;
|
|
244
|
-
"kcLogoIdP-paypal"?: string | undefined;
|
|
245
|
-
kcInputClassCheckbox?: string | undefined;
|
|
246
|
-
kcRecoveryCodesConfirmation?: string | undefined;
|
|
247
|
-
kcFormPasswordVisibilityIconHide?: string | undefined;
|
|
248
|
-
kcInputClassRadioInput?: string | undefined;
|
|
249
|
-
kcFormSocialAccountListButtonClass?: string | undefined;
|
|
250
|
-
kcInputClassCheckboxLabel?: string | undefined;
|
|
251
|
-
kcFormOptionsClass?: string | undefined;
|
|
252
|
-
kcFormHeaderClass?: string | undefined;
|
|
253
|
-
kcFormSocialAccountGridItem?: string | undefined;
|
|
254
|
-
kcButtonPrimaryClass?: string | undefined;
|
|
255
|
-
kcInputHelperTextBeforeClass?: string | undefined;
|
|
256
|
-
"kcLogoIdP-github"?: string | undefined;
|
|
257
|
-
kcLabelClass?: string | undefined;
|
|
258
|
-
};
|
|
259
|
-
}>;
|
|
260
|
-
export { DefaultPage };
|