@softheon/armature 10.45.4 → 15.0.0
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/assets/styles/material-overrides.scss +103 -88
- package/assets/styles/sof-styles.scss +442 -376
- package/esm2020/lib/alert-banner/alert-banner-api.mjs +10 -0
- package/esm2020/lib/alert-banner/alert-banner.module.mjs +41 -0
- package/esm2020/lib/alert-banner/components/alert-banner/alert-banner.component.mjs +83 -0
- package/esm2020/lib/alert-banner/models/alert-banner-config.mjs +2 -0
- package/esm2020/lib/alert-banner/models/alert-banner-context.mjs +2 -0
- package/esm2020/lib/alert-banner/models/constants.mjs +16 -0
- package/esm2020/lib/alert-banner/services/alert-banner.service.mjs +44 -0
- package/esm2020/lib/armature.module.mjs +176 -0
- package/esm2020/lib/base-components/base-component-api.mjs +9 -0
- package/esm2020/lib/base-components/base-component.module.mjs +93 -0
- package/esm2020/lib/base-components/sof-alert/sof-alert.component.mjs +79 -0
- package/esm2020/lib/base-components/sof-banner/sof-banner.component.mjs +49 -0
- package/esm2020/lib/base-components/sof-button-toggle-group/sof-button-toggle-group.component.mjs +188 -0
- package/esm2020/lib/base-components/sof-modal/sof-modal.component.mjs +58 -0
- package/esm2020/lib/base-components/sof-progress-bar/sof-progress-bar.component.mjs +79 -0
- package/esm2020/lib/component-save-print/components/component-save-print/component-save-print.component.mjs +91 -0
- package/esm2020/lib/component-save-print/services/component-save-print.service.mjs +30 -0
- package/esm2020/lib/component-save-print/sof-ar-component-save-print.module.mjs +32 -0
- package/esm2020/lib/core/client-generated/api/session.service.mjs +242 -0
- package/esm2020/lib/core/client-generated/configuration.mjs +59 -0
- package/esm2020/lib/core/client-generated/encoder.mjs +17 -0
- package/esm2020/lib/core/client-generated/model/applicationUserModel.mjs +20 -0
- package/esm2020/lib/core/client-generated/model/assertedUserModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/brandingModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/errorModel.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/folderLink.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/identityProfile.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/models.mjs +20 -0
- package/esm2020/lib/core/client-generated/model/oAuthModel.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/preferencesRow.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/rolesRow.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/sessionGetResponseModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/sessionPostRequestModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/sessionPostResponseModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/sessionPutRequestModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/sessionPutResponseModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/sessionResponseModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/settingsProfile.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/themePaletteColorsModel.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/themePaletteModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/trackingModel.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/validationRecordsRow.mjs +13 -0
- package/esm2020/lib/core/client-generated/variables.mjs +9 -0
- package/esm2020/lib/core/components/app-template/app-template.component.mjs +250 -0
- package/esm2020/lib/core/functions/guid.mjs +11 -0
- package/esm2020/lib/core/functions/naming-convention.mjs +33 -0
- package/esm2020/lib/core/initializer/abstract-startup-service.mjs +4 -0
- package/esm2020/lib/core/initializer/initializer.service.mjs +189 -0
- package/esm2020/lib/core/interceptors/armature-auth-token-append.interceptor.mjs +73 -0
- package/esm2020/lib/core/models/base-config.mjs +2 -0
- package/esm2020/lib/core/models/constants.mjs +13 -0
- package/esm2020/lib/core/models/data-store-config.mjs +4 -0
- package/esm2020/lib/core/models/header-config.mjs +2 -0
- package/esm2020/lib/core/models/http-verbs.mjs +9 -0
- package/esm2020/lib/core/models/navigation-config.mjs +2 -0
- package/esm2020/lib/core/models/oidc-auth-settings.mjs +2 -0
- package/esm2020/lib/core/models/route-path.mjs +7 -0
- package/esm2020/lib/core/models/session-config.mjs +4 -0
- package/esm2020/lib/core/models/styles.mjs +2 -0
- package/esm2020/lib/core/models/typed-session.mjs +4 -0
- package/esm2020/lib/core/models/user-entity-service-config.mjs +12 -0
- package/esm2020/lib/core/services/authorization.service.mjs +175 -0
- package/esm2020/lib/core/services/banner.service.mjs +43 -0
- package/esm2020/lib/core/services/base-config.service.mjs +32 -0
- package/esm2020/lib/core/services/custom-auth-config.service.mjs +4 -0
- package/esm2020/lib/core/services/default-config.service.mjs +19 -0
- package/esm2020/lib/core/services/session.service.mjs +385 -0
- package/esm2020/lib/core/services/user-entity.service.mjs +140 -0
- package/esm2020/lib/distributed-cache/client-generated/api/api.mjs +4 -0
- package/esm2020/lib/distributed-cache/client-generated/api/cache.service.mjs +213 -0
- package/esm2020/lib/distributed-cache/client-generated/configuration.mjs +59 -0
- package/esm2020/lib/distributed-cache/client-generated/encoder.mjs +17 -0
- package/esm2020/lib/distributed-cache/client-generated/model/cacheExpirationType.mjs +16 -0
- package/esm2020/lib/distributed-cache/client-generated/model/createCacheEntryRequestModel.mjs +2 -0
- package/esm2020/lib/distributed-cache/client-generated/model/models.mjs +5 -0
- package/esm2020/lib/distributed-cache/client-generated/model/retrieveCacheEntryResponseModel.mjs +13 -0
- package/esm2020/lib/distributed-cache/client-generated/model/updateCacheEntryRequestModel.mjs +13 -0
- package/esm2020/lib/distributed-cache/client-generated/variables.mjs +9 -0
- package/esm2020/lib/distributed-cache/distributed-cache-api.mjs +8 -0
- package/esm2020/lib/distributed-cache/distributed-cache.module.mjs +38 -0
- package/esm2020/lib/distributed-cache/models/constants.mjs +3 -0
- package/esm2020/lib/distributed-cache/models/policy-person.mjs +9 -0
- package/esm2020/lib/distributed-cache/services/server-cache.service.mjs +48 -0
- package/esm2020/lib/error/components/error-common/error-common.component.mjs +25 -0
- package/esm2020/lib/error/error-api.mjs +7 -0
- package/esm2020/lib/error/error.module.mjs +31 -0
- package/esm2020/lib/error/models/error-common-config.mjs +8 -0
- package/esm2020/lib/faq/components/faq/faq.component.mjs +40 -0
- package/esm2020/lib/faq/faq-api.mjs +8 -0
- package/esm2020/lib/faq/faq.module.mjs +41 -0
- package/esm2020/lib/faq/models/faq-config.mjs +4 -0
- package/esm2020/lib/faq/models/faq.mjs +8 -0
- package/esm2020/lib/footer/components/footer/footer.component.mjs +25 -0
- package/esm2020/lib/footer/components/site-map/site-map.component.mjs +25 -0
- package/esm2020/lib/footer/footer-api.mjs +10 -0
- package/esm2020/lib/footer/footer.module.mjs +45 -0
- package/esm2020/lib/footer/models/enum/site-map-direction.mjs +15 -0
- package/esm2020/lib/footer/models/footer-config.mjs +4 -0
- package/esm2020/lib/footer/models/site-map-models.mjs +2 -0
- package/esm2020/lib/forms/components/sof-address/sof-address.component.mjs +110 -0
- package/esm2020/lib/forms/directives/alphanumeric/alphanumeric.directive.mjs +78 -0
- package/esm2020/lib/forms/directives/input-trim/input-trim.directive.mjs +110 -0
- package/esm2020/lib/forms/directives/letters-only/letters-only.directive.mjs +72 -0
- package/esm2020/lib/forms/directives/numbers-only/numbers-only.directive.mjs +60 -0
- package/esm2020/lib/forms/forms-api.mjs +19 -0
- package/esm2020/lib/forms/forms.module.mjs +83 -0
- package/esm2020/lib/forms/models/address.mjs +2 -0
- package/esm2020/lib/forms/models/constants.mjs +10 -0
- package/esm2020/lib/forms/models/county.mjs +2 -0
- package/esm2020/lib/forms/models/enums/states.mjs +58 -0
- package/esm2020/lib/forms/pipes/phone-format.pipe.mjs +33 -0
- package/esm2020/lib/forms/services/alert.service.mjs +167 -0
- package/esm2020/lib/header/components/header/header.component.mjs +161 -0
- package/esm2020/lib/header/components/mobile-header-menu/mobile-header-menu.component.mjs +39 -0
- package/esm2020/lib/header/header-api.mjs +12 -0
- package/esm2020/lib/header/header.module.mjs +85 -0
- package/esm2020/lib/header/models/header-auth.settings.mjs +32 -0
- package/esm2020/lib/header/models/header-language.settings.mjs +2 -0
- package/esm2020/lib/header/models/header-theme.settings.mjs +2 -0
- package/esm2020/lib/header/models/header.settings.mjs +2 -0
- package/esm2020/lib/header/models/mobile-header-nav.settings.mjs +2 -0
- package/esm2020/lib/navigation/components/navigation/navigation.component.mjs +555 -0
- package/esm2020/lib/navigation/models/nav-theme.settings.mjs +2 -0
- package/esm2020/lib/navigation/models/nav.settings.mjs +2 -0
- package/esm2020/lib/navigation/models/navigation.mjs +2 -0
- package/esm2020/lib/navigation/navigation-api.mjs +9 -0
- package/esm2020/lib/navigation/navigation.module.mjs +126 -0
- package/esm2020/lib/oauth/models/constants.mjs +6 -0
- package/esm2020/lib/oauth/models/generated/accountManagementAssertionModel.mjs +2 -0
- package/esm2020/lib/oauth/models/generated/accountManagementRefreshRequestModel.mjs +2 -0
- package/esm2020/lib/oauth/models/generated/accountManagementResponseModel.mjs +2 -0
- package/esm2020/lib/oauth/models/generated/coverageDetail.mjs +19 -0
- package/esm2020/lib/oauth/models/generated/finance.mjs +13 -0
- package/esm2020/lib/oauth/models/generated/iSsoResponseModel.mjs +13 -0
- package/esm2020/lib/oauth/models/generated/iSsoResponseModelAccountManagementAssertionModel.mjs +2 -0
- package/esm2020/lib/oauth/models/generated/person.mjs +13 -0
- package/esm2020/lib/oauth/models/generated/policy.mjs +2 -0
- package/esm2020/lib/oauth/models/generated/refreshResponseModel.mjs +13 -0
- package/esm2020/lib/oauth/models/hybrid-saml-oauth-config.mjs +4 -0
- package/esm2020/lib/oauth/oauth-api.mjs +15 -0
- package/esm2020/lib/oauth/oauth.module.mjs +29 -0
- package/esm2020/lib/oauth/services/hybrid-saml-oauth.service.mjs +201 -0
- package/esm2020/lib/rbac/directives/rbac-action.directive.mjs +50 -0
- package/esm2020/lib/rbac/models/access-token-claims.mjs +23 -0
- package/esm2020/lib/rbac/models/constants.mjs +4 -0
- package/esm2020/lib/rbac/models/decoded-access-token.mjs +69 -0
- package/esm2020/lib/rbac/models/rbac-config.mjs +4 -0
- package/esm2020/lib/rbac/models/role-access.mjs +10 -0
- package/esm2020/lib/rbac/rbac-api.mjs +15 -0
- package/esm2020/lib/rbac/rbac.module.mjs +51 -0
- package/esm2020/lib/rbac/services/ar-role-nav.service.mjs +91 -0
- package/esm2020/lib/rbac/services/oauth2-role.service.mjs +114 -0
- package/esm2020/lib/rbac/services/role-nav.service.mjs +4 -0
- package/esm2020/lib/resize-panels/components/resize-panels/resize-panels.component.mjs +156 -0
- package/esm2020/lib/resize-panels/models/resize-event.mjs +2 -0
- package/esm2020/lib/resize-panels/resize-panels-api.mjs +5 -0
- package/esm2020/lib/resize-panels/resize-panels.module.mjs +23 -0
- package/esm2020/lib/rum/models/arm-error.mjs +29 -0
- package/esm2020/lib/rum/models/rum-config.mjs +4 -0
- package/esm2020/lib/rum/rum-api.mjs +10 -0
- package/esm2020/lib/rum/rum.module.mjs +48 -0
- package/esm2020/lib/rum/services/rum.service.mjs +115 -0
- package/esm2020/lib/rum/services/shared-error.service.mjs +45 -0
- package/esm2020/lib/rum/services/softheon-error-handler.service.mjs +76 -0
- package/esm2020/lib/saml/components/redirect-saml/redirect-saml.component.mjs +79 -0
- package/esm2020/lib/saml/models/i-saml-request.mjs +2 -0
- package/esm2020/lib/saml/models/i-saml-response.mjs +2 -0
- package/esm2020/lib/saml/models/redirect-saml-request.mjs +4 -0
- package/esm2020/lib/saml/models/sso-gateway-model.mjs +4 -0
- package/esm2020/lib/saml/saml-api.mjs +15 -0
- package/esm2020/lib/saml/saml.module.mjs +43 -0
- package/esm2020/lib/saml/services/entry/abstract-saml-entry.service.mjs +4 -0
- package/esm2020/lib/saml/services/entry/sso-gateway-entry.service.mjs +36 -0
- package/esm2020/lib/saml/services/send-off/abstract-saml.service.mjs +4 -0
- package/esm2020/lib/saml/services/send-off/saml.service.mjs +39 -0
- package/esm2020/lib/sof-pipe/constants/constants.mjs +17 -0
- package/esm2020/lib/sof-pipe/models/sof-date-pipe-format.mjs +2 -0
- package/esm2020/lib/sof-pipe/pipes/sof-blank/sof-blank.pipe.mjs +39 -0
- package/esm2020/lib/sof-pipe/pipes/sof-date/sof-date.pipe.mjs +59 -0
- package/esm2020/lib/sof-pipe/pipes/sof-ssn/sof-ssn.pipe.mjs +28 -0
- package/esm2020/lib/sof-pipe/sof-pipe.api.mjs +9 -0
- package/esm2020/lib/sof-pipe/sof-pipe.module.mjs +39 -0
- package/esm2020/lib/theming/directives/css-override.directive.mjs +69 -0
- package/esm2020/lib/theming/models/css-override.mjs +11 -0
- package/esm2020/lib/theming/services/theme.service.mjs +167 -0
- package/esm2020/lib/theming/theme-api.mjs +6 -0
- package/esm2020/lib/theming/theme.module.mjs +31 -0
- package/esm2020/public-api.mjs +48 -0
- package/esm2020/softheon-armature.mjs +5 -0
- package/fesm2015/softheon-armature.mjs +6767 -0
- package/fesm2015/softheon-armature.mjs.map +1 -0
- package/fesm2020/softheon-armature.mjs +6829 -0
- package/fesm2020/softheon-armature.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/alert-banner/alert-banner.module.d.ts +9 -0
- package/lib/alert-banner/components/alert-banner/alert-banner.component.d.ts +3 -0
- package/lib/alert-banner/services/alert-banner.service.d.ts +3 -0
- package/lib/armature.module.d.ts +15 -0
- package/lib/base-components/base-component.module.d.ts +24 -0
- package/lib/base-components/sof-alert/sof-alert.component.d.ts +3 -0
- package/lib/base-components/sof-banner/sof-banner.component.d.ts +3 -0
- package/lib/base-components/sof-button-toggle-group/sof-button-toggle-group.component.d.ts +3 -0
- package/lib/base-components/sof-modal/sof-modal.component.d.ts +3 -0
- package/lib/base-components/sof-progress-bar/sof-progress-bar.component.d.ts +3 -0
- package/lib/component-save-print/components/component-save-print/component-save-print.component.d.ts +3 -0
- package/lib/component-save-print/services/component-save-print.service.d.ts +3 -0
- package/lib/component-save-print/sof-ar-component-save-print.module.d.ts +6 -0
- package/lib/core/client-generated/api/session.service.d.ts +3 -11
- package/lib/core/components/app-template/app-template.component.d.ts +3 -0
- package/lib/core/initializer/initializer.service.d.ts +3 -0
- package/lib/core/interceptors/armature-auth-token-append.interceptor.d.ts +3 -0
- package/lib/core/models/http-verbs.d.ts +1 -1
- package/lib/core/services/authorization.service.d.ts +3 -0
- package/lib/core/services/banner.service.d.ts +3 -0
- package/lib/core/services/base-config.service.d.ts +3 -0
- package/lib/core/services/default-config.service.d.ts +3 -0
- package/lib/core/services/session.service.d.ts +3 -0
- package/lib/core/services/user-entity.service.d.ts +3 -0
- package/lib/distributed-cache/client-generated/api/cache.service.d.ts +3 -11
- package/lib/distributed-cache/client-generated/model/cacheExpirationType.d.ts +1 -1
- package/lib/distributed-cache/distributed-cache.module.d.ts +5 -0
- package/lib/distributed-cache/services/server-cache.service.d.ts +3 -0
- package/lib/error/components/error-common/error-common.component.d.ts +3 -0
- package/lib/error/error.module.d.ts +8 -0
- package/lib/faq/components/faq/faq.component.d.ts +3 -0
- package/lib/faq/faq.module.d.ts +12 -0
- package/lib/footer/components/footer/footer.component.d.ts +3 -0
- package/lib/footer/components/site-map/site-map.component.d.ts +3 -0
- package/lib/footer/footer.module.d.ts +11 -0
- package/lib/forms/components/sof-address/sof-address.component.d.ts +3 -0
- package/lib/forms/directives/alphanumeric/alphanumeric.directive.d.ts +3 -0
- package/lib/forms/directives/input-trim/input-trim.directive.d.ts +3 -0
- package/lib/forms/directives/letters-only/letters-only.directive.d.ts +3 -0
- package/lib/forms/directives/numbers-only/numbers-only.directive.d.ts +3 -0
- package/lib/forms/forms.module.d.ts +17 -0
- package/lib/forms/pipes/phone-format.pipe.d.ts +3 -0
- package/lib/forms/services/alert.service.d.ts +3 -0
- package/lib/header/components/header/header.component.d.ts +4 -1
- package/lib/header/components/mobile-header-menu/mobile-header-menu.component.d.ts +3 -0
- package/lib/header/header.module.d.ts +18 -0
- package/lib/navigation/components/navigation/navigation.component.d.ts +6 -3
- package/lib/navigation/navigation.module.d.ts +22 -0
- package/lib/oauth/oauth.module.d.ts +6 -0
- package/lib/oauth/services/hybrid-saml-oauth.service.d.ts +3 -0
- package/lib/rbac/directives/rbac-action.directive.d.ts +3 -0
- package/lib/rbac/rbac.module.d.ts +6 -0
- package/lib/rbac/services/ar-role-nav.service.d.ts +3 -0
- package/lib/rbac/services/oauth2-role.service.d.ts +3 -0
- package/lib/resize-panels/components/resize-panels/resize-panels.component.d.ts +3 -0
- package/lib/resize-panels/resize-panels.module.d.ts +6 -0
- package/lib/rum/rum.module.d.ts +5 -0
- package/lib/rum/services/rum.service.d.ts +3 -0
- package/lib/rum/services/shared-error.service.d.ts +3 -0
- package/lib/rum/services/softheon-error-handler.service.d.ts +3 -0
- package/lib/saml/components/redirect-saml/redirect-saml.component.d.ts +3 -0
- package/lib/saml/saml.module.d.ts +6 -0
- package/lib/saml/services/entry/sso-gateway-entry.service.d.ts +3 -0
- package/lib/saml/services/send-off/saml.service.d.ts +3 -0
- package/lib/sof-pipe/pipes/sof-blank/sof-blank.pipe.d.ts +3 -0
- package/lib/sof-pipe/pipes/sof-date/sof-date.pipe.d.ts +3 -0
- package/lib/sof-pipe/pipes/sof-ssn/sof-ssn.pipe.d.ts +3 -0
- package/lib/sof-pipe/sof-pipe.module.d.ts +8 -0
- package/lib/theming/directives/css-override.directive.d.ts +3 -0
- package/lib/theming/services/theme.service.d.ts +3 -0
- package/lib/theming/theme.module.d.ts +6 -0
- package/package.json +39 -27
- package/bundles/softheon-armature.umd.js +0 -7212
- package/bundles/softheon-armature.umd.js.map +0 -1
- package/bundles/softheon-armature.umd.min.js +0 -16
- package/bundles/softheon-armature.umd.min.js.map +0 -1
- package/esm2015/lib/alert-banner/alert-banner-api.js +0 -10
- package/esm2015/lib/alert-banner/alert-banner.module.js +0 -30
- package/esm2015/lib/alert-banner/components/alert-banner/alert-banner.component.js +0 -78
- package/esm2015/lib/alert-banner/models/alert-banner-config.js +0 -2
- package/esm2015/lib/alert-banner/models/alert-banner-context.js +0 -2
- package/esm2015/lib/alert-banner/models/constants.js +0 -16
- package/esm2015/lib/alert-banner/services/alert-banner.service.js +0 -43
- package/esm2015/lib/armature.module.js +0 -142
- package/esm2015/lib/base-components/base-component-api.js +0 -9
- package/esm2015/lib/base-components/base-component.module.js +0 -61
- package/esm2015/lib/base-components/sof-alert/sof-alert.component.js +0 -67
- package/esm2015/lib/base-components/sof-banner/sof-banner.component.js +0 -44
- package/esm2015/lib/base-components/sof-button-toggle-group/sof-button-toggle-group.component.js +0 -169
- package/esm2015/lib/base-components/sof-modal/sof-modal.component.js +0 -49
- package/esm2015/lib/base-components/sof-progress-bar/sof-progress-bar.component.js +0 -76
- package/esm2015/lib/component-save-print/components/component-save-print/component-save-print.component.js +0 -97
- package/esm2015/lib/component-save-print/services/component-save-print.service.js +0 -29
- package/esm2015/lib/component-save-print/sof-ar-component-save-print.module.js +0 -25
- package/esm2015/lib/core/client-generated/api/session.service.js +0 -235
- package/esm2015/lib/core/client-generated/configuration.js +0 -59
- package/esm2015/lib/core/client-generated/encoder.js +0 -17
- package/esm2015/lib/core/client-generated/model/applicationUserModel.js +0 -20
- package/esm2015/lib/core/client-generated/model/assertedUserModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/brandingModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/errorModel.js +0 -13
- package/esm2015/lib/core/client-generated/model/folderLink.js +0 -13
- package/esm2015/lib/core/client-generated/model/identityProfile.js +0 -2
- package/esm2015/lib/core/client-generated/model/models.js +0 -20
- package/esm2015/lib/core/client-generated/model/oAuthModel.js +0 -13
- package/esm2015/lib/core/client-generated/model/preferencesRow.js +0 -13
- package/esm2015/lib/core/client-generated/model/rolesRow.js +0 -13
- package/esm2015/lib/core/client-generated/model/sessionGetResponseModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/sessionPostRequestModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/sessionPostResponseModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/sessionPutRequestModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/sessionPutResponseModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/sessionResponseModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/settingsProfile.js +0 -2
- package/esm2015/lib/core/client-generated/model/themePaletteColorsModel.js +0 -13
- package/esm2015/lib/core/client-generated/model/themePaletteModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/trackingModel.js +0 -13
- package/esm2015/lib/core/client-generated/model/validationRecordsRow.js +0 -13
- package/esm2015/lib/core/client-generated/variables.js +0 -9
- package/esm2015/lib/core/components/app-template/app-template.component.js +0 -249
- package/esm2015/lib/core/functions/guid.js +0 -11
- package/esm2015/lib/core/functions/naming-convention.js +0 -33
- package/esm2015/lib/core/initializer/abstract-startup-service.js +0 -4
- package/esm2015/lib/core/initializer/initializer.service.js +0 -206
- package/esm2015/lib/core/interceptors/armature-auth-token-append.interceptor.js +0 -75
- package/esm2015/lib/core/models/base-config.js +0 -2
- package/esm2015/lib/core/models/constants.js +0 -13
- package/esm2015/lib/core/models/data-store-config.js +0 -4
- package/esm2015/lib/core/models/header-config.js +0 -2
- package/esm2015/lib/core/models/http-verbs.js +0 -9
- package/esm2015/lib/core/models/navigation-config.js +0 -2
- package/esm2015/lib/core/models/oidc-auth-settings.js +0 -2
- package/esm2015/lib/core/models/route-path.js +0 -7
- package/esm2015/lib/core/models/session-config.js +0 -4
- package/esm2015/lib/core/models/styles.js +0 -2
- package/esm2015/lib/core/models/typed-session.js +0 -4
- package/esm2015/lib/core/models/user-entity-service-config.js +0 -12
- package/esm2015/lib/core/services/authorization.service.js +0 -178
- package/esm2015/lib/core/services/banner.service.js +0 -42
- package/esm2015/lib/core/services/base-config.service.js +0 -31
- package/esm2015/lib/core/services/custom-auth-config.service.js +0 -4
- package/esm2015/lib/core/services/default-config.service.js +0 -18
- package/esm2015/lib/core/services/session.service.js +0 -386
- package/esm2015/lib/core/services/user-entity.service.js +0 -147
- package/esm2015/lib/distributed-cache/client-generated/api/api.js +0 -4
- package/esm2015/lib/distributed-cache/client-generated/api/cache.service.js +0 -206
- package/esm2015/lib/distributed-cache/client-generated/configuration.js +0 -59
- package/esm2015/lib/distributed-cache/client-generated/encoder.js +0 -17
- package/esm2015/lib/distributed-cache/client-generated/model/cacheExpirationType.js +0 -16
- package/esm2015/lib/distributed-cache/client-generated/model/createCacheEntryRequestModel.js +0 -2
- package/esm2015/lib/distributed-cache/client-generated/model/models.js +0 -5
- package/esm2015/lib/distributed-cache/client-generated/model/retrieveCacheEntryResponseModel.js +0 -13
- package/esm2015/lib/distributed-cache/client-generated/model/updateCacheEntryRequestModel.js +0 -13
- package/esm2015/lib/distributed-cache/client-generated/variables.js +0 -9
- package/esm2015/lib/distributed-cache/distributed-cache-api.js +0 -8
- package/esm2015/lib/distributed-cache/distributed-cache.module.js +0 -26
- package/esm2015/lib/distributed-cache/models/constants.js +0 -3
- package/esm2015/lib/distributed-cache/models/policy-person.js +0 -9
- package/esm2015/lib/distributed-cache/services/server-cache.service.js +0 -52
- package/esm2015/lib/error/components/error-common/error-common.component.js +0 -24
- package/esm2015/lib/error/error-api.js +0 -7
- package/esm2015/lib/error/error.module.js +0 -22
- package/esm2015/lib/error/models/error-common-config.js +0 -8
- package/esm2015/lib/faq/components/faq/faq.component.js +0 -35
- package/esm2015/lib/faq/faq-api.js +0 -8
- package/esm2015/lib/faq/faq.module.js +0 -32
- package/esm2015/lib/faq/models/faq-config.js +0 -4
- package/esm2015/lib/faq/models/faq.js +0 -8
- package/esm2015/lib/footer/components/footer/footer.component.js +0 -25
- package/esm2015/lib/footer/components/site-map/site-map.component.js +0 -23
- package/esm2015/lib/footer/footer-api.js +0 -10
- package/esm2015/lib/footer/footer.module.js +0 -30
- package/esm2015/lib/footer/models/enum/site-map-direction.js +0 -15
- package/esm2015/lib/footer/models/footer-config.js +0 -4
- package/esm2015/lib/footer/models/site-map-models.js +0 -2
- package/esm2015/lib/forms/components/sof-address/sof-address.component.js +0 -99
- package/esm2015/lib/forms/directives/alphanumeric/alphanumeric.directive.js +0 -75
- package/esm2015/lib/forms/directives/input-trim/input-trim.directive.js +0 -97
- package/esm2015/lib/forms/directives/letters-only/letters-only.directive.js +0 -68
- package/esm2015/lib/forms/directives/numbers-only/numbers-only.directive.js +0 -58
- package/esm2015/lib/forms/forms-api.js +0 -19
- package/esm2015/lib/forms/forms.module.js +0 -63
- package/esm2015/lib/forms/models/address.js +0 -2
- package/esm2015/lib/forms/models/constants.js +0 -10
- package/esm2015/lib/forms/models/county.js +0 -2
- package/esm2015/lib/forms/models/enums/states.js +0 -58
- package/esm2015/lib/forms/pipes/phone-format.pipe.js +0 -29
- package/esm2015/lib/forms/services/alert.service.js +0 -170
- package/esm2015/lib/header/components/header/header.component.js +0 -157
- package/esm2015/lib/header/components/mobile-header-menu/mobile-header-menu.component.js +0 -37
- package/esm2015/lib/header/header-api.js +0 -12
- package/esm2015/lib/header/header.module.js +0 -51
- package/esm2015/lib/header/models/header-auth.settings.js +0 -32
- package/esm2015/lib/header/models/header-language.settings.js +0 -2
- package/esm2015/lib/header/models/header-theme.settings.js +0 -2
- package/esm2015/lib/header/models/header.settings.js +0 -2
- package/esm2015/lib/header/models/mobile-header-nav.settings.js +0 -2
- package/esm2015/lib/navigation/components/navigation/navigation.component.js +0 -544
- package/esm2015/lib/navigation/models/nav-theme.settings.js +0 -2
- package/esm2015/lib/navigation/models/nav.settings.js +0 -2
- package/esm2015/lib/navigation/models/navigation.js +0 -2
- package/esm2015/lib/navigation/navigation-api.js +0 -9
- package/esm2015/lib/navigation/navigation.module.js +0 -67
- package/esm2015/lib/oauth/models/constants.js +0 -6
- package/esm2015/lib/oauth/models/generated/accountManagementAssertionModel.js +0 -2
- package/esm2015/lib/oauth/models/generated/accountManagementRefreshRequestModel.js +0 -2
- package/esm2015/lib/oauth/models/generated/accountManagementResponseModel.js +0 -2
- package/esm2015/lib/oauth/models/generated/coverageDetail.js +0 -19
- package/esm2015/lib/oauth/models/generated/finance.js +0 -13
- package/esm2015/lib/oauth/models/generated/iSsoResponseModel.js +0 -13
- package/esm2015/lib/oauth/models/generated/iSsoResponseModelAccountManagementAssertionModel.js +0 -2
- package/esm2015/lib/oauth/models/generated/person.js +0 -13
- package/esm2015/lib/oauth/models/generated/policy.js +0 -2
- package/esm2015/lib/oauth/models/generated/refreshResponseModel.js +0 -13
- package/esm2015/lib/oauth/models/hybrid-saml-oauth-config.js +0 -4
- package/esm2015/lib/oauth/oauth-api.js +0 -15
- package/esm2015/lib/oauth/oauth.module.js +0 -20
- package/esm2015/lib/oauth/services/hybrid-saml-oauth.service.js +0 -202
- package/esm2015/lib/rbac/directives/rbac-action.directive.js +0 -52
- package/esm2015/lib/rbac/models/access-token-claims.js +0 -23
- package/esm2015/lib/rbac/models/constants.js +0 -4
- package/esm2015/lib/rbac/models/decoded-access-token.js +0 -69
- package/esm2015/lib/rbac/models/rbac-config.js +0 -4
- package/esm2015/lib/rbac/models/role-access.js +0 -10
- package/esm2015/lib/rbac/rbac-api.js +0 -15
- package/esm2015/lib/rbac/rbac.module.js +0 -43
- package/esm2015/lib/rbac/services/ar-role-nav.service.js +0 -90
- package/esm2015/lib/rbac/services/oauth2-role.service.js +0 -120
- package/esm2015/lib/rbac/services/role-nav.service.js +0 -4
- package/esm2015/lib/resize-panels/components/resize-panels/resize-panels.component.js +0 -142
- package/esm2015/lib/resize-panels/models/resize-event.js +0 -2
- package/esm2015/lib/resize-panels/resize-panels-api.js +0 -5
- package/esm2015/lib/resize-panels/resize-panels.module.js +0 -18
- package/esm2015/lib/rum/models/arm-error.js +0 -29
- package/esm2015/lib/rum/models/rum-config.js +0 -4
- package/esm2015/lib/rum/rum-api.js +0 -10
- package/esm2015/lib/rum/rum.module.js +0 -40
- package/esm2015/lib/rum/services/rum.service.js +0 -118
- package/esm2015/lib/rum/services/shared-error.service.js +0 -46
- package/esm2015/lib/rum/services/softheon-error-handler.service.js +0 -81
- package/esm2015/lib/saml/components/redirect-saml/redirect-saml.component.js +0 -76
- package/esm2015/lib/saml/models/i-saml-request.js +0 -2
- package/esm2015/lib/saml/models/i-saml-response.js +0 -2
- package/esm2015/lib/saml/models/redirect-saml-request.js +0 -4
- package/esm2015/lib/saml/models/sso-gateway-model.js +0 -4
- package/esm2015/lib/saml/saml-api.js +0 -15
- package/esm2015/lib/saml/saml.module.js +0 -36
- package/esm2015/lib/saml/services/entry/abstract-saml-entry.service.js +0 -4
- package/esm2015/lib/saml/services/entry/sso-gateway-entry.service.js +0 -35
- package/esm2015/lib/saml/services/send-off/abstract-saml.service.js +0 -9
- package/esm2015/lib/saml/services/send-off/saml.service.js +0 -41
- package/esm2015/lib/sof-pipe/constants/constants.js +0 -17
- package/esm2015/lib/sof-pipe/models/sof-date-pipe-format.js +0 -2
- package/esm2015/lib/sof-pipe/pipes/sof-blank/sof-blank.pipe.js +0 -33
- package/esm2015/lib/sof-pipe/pipes/sof-date/sof-date.pipe.js +0 -54
- package/esm2015/lib/sof-pipe/pipes/sof-ssn/sof-ssn.pipe.js +0 -24
- package/esm2015/lib/sof-pipe/sof-pipe.api.js +0 -9
- package/esm2015/lib/sof-pipe/sof-pipe.module.js +0 -28
- package/esm2015/lib/theming/directives/css-override.directive.js +0 -67
- package/esm2015/lib/theming/models/css-override.js +0 -11
- package/esm2015/lib/theming/services/theme.service.js +0 -166
- package/esm2015/lib/theming/theme-api.js +0 -6
- package/esm2015/lib/theming/theme.module.js +0 -24
- package/esm2015/public-api.js +0 -48
- package/esm2015/softheon-armature.js +0 -12
- package/fesm2015/softheon-armature.js +0 -6517
- package/fesm2015/softheon-armature.js.map +0 -1
- package/softheon-armature.d.ts +0 -11
- package/softheon-armature.metadata.json +0 -1
package/index.d.ts
ADDED
|
@@ -1,2 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/alert-banner/alert-banner.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@ngx-translate/core";
|
|
5
|
+
import * as i4 from "@angular/flex-layout";
|
|
6
|
+
import * as i5 from "@angular/material/icon";
|
|
1
7
|
export declare class AlertBannerModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertBannerModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AlertBannerModule, [typeof i1.AlertBannerComponent], [typeof i2.CommonModule, typeof i3.TranslateModule, typeof i4.FlexLayoutModule, typeof i5.MatIconModule], [typeof i1.AlertBannerComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AlertBannerModule>;
|
|
2
11
|
}
|
|
@@ -2,6 +2,7 @@ import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
|
|
|
2
2
|
import { AlertBannerConfig } from '../../models/alert-banner-config';
|
|
3
3
|
import { AlertBannerContext } from '../../models/alert-banner-context';
|
|
4
4
|
import { AlertBannerService } from '../../services/alert-banner.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* Alert Banner Component
|
|
7
8
|
*/
|
|
@@ -34,4 +35,6 @@ export declare class AlertBannerComponent implements AfterViewInit {
|
|
|
34
35
|
* @param color The color
|
|
35
36
|
*/
|
|
36
37
|
private updateStyle;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertBannerComponent, [{ optional: true; }, null, null]>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertBannerComponent, "sof-ar-alert-banner", never, { "context": "context"; }, {}, never, never, false, never>;
|
|
37
40
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AlertBannerContext } from '../models/alert-banner-context';
|
|
2
2
|
import { BannerType } from '../models/constants';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Alert Banner Service
|
|
5
6
|
*/
|
|
@@ -22,4 +23,6 @@ export declare class AlertBannerService {
|
|
|
22
23
|
showMessage(bannerType: BannerType, isFilledBanner: boolean, bannerTitle?: string, bannerText?: string, translateParam?: any, showClose?: boolean): void;
|
|
23
24
|
/** Close Message */
|
|
24
25
|
closeMessage(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertBannerService, never>;
|
|
27
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AlertBannerService>;
|
|
25
28
|
}
|
package/lib/armature.module.d.ts
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
import { Injector, ModuleWithProviders } from '@angular/core';
|
|
2
2
|
import { Initializer } from './core/initializer/initializer.service';
|
|
3
3
|
import { UserEntityService } from './core/services/user-entity.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "./core/components/app-template/app-template.component";
|
|
6
|
+
import * as i2 from "./forms/forms.module";
|
|
7
|
+
import * as i3 from "./navigation/navigation.module";
|
|
8
|
+
import * as i4 from "./header/header.module";
|
|
9
|
+
import * as i5 from "./footer/footer.module";
|
|
10
|
+
import * as i6 from "./theming/theme.module";
|
|
11
|
+
import * as i7 from "./alert-banner/alert-banner.module";
|
|
12
|
+
import * as i8 from "./base-components/base-component.module";
|
|
13
|
+
import * as i9 from "@angular/router";
|
|
14
|
+
import * as i10 from "@angular/common";
|
|
15
|
+
import * as i11 from "@angular/flex-layout";
|
|
4
16
|
/**
|
|
5
17
|
* Session base path factory
|
|
6
18
|
* @param injector The angular injector
|
|
@@ -28,4 +40,7 @@ export declare class ArmatureModule {
|
|
|
28
40
|
* @param configServiceClass The config service class for the parent application
|
|
29
41
|
*/
|
|
30
42
|
static forRoot(configServiceClass?: any, ignoreCustomAppInitializer?: boolean): ModuleWithProviders<ArmatureModule>;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArmatureModule, never>;
|
|
44
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ArmatureModule, [typeof i1.AppTemplateComponent], [typeof i2.FormsModule, typeof i3.NavigationModule, typeof i4.ArmatureHeaderModule, typeof i5.ArmatureFooterModule, typeof i6.ThemeModule, typeof i7.AlertBannerModule, typeof i8.BaseComponentModule, typeof i9.RouterModule, typeof i10.CommonModule, typeof i11.FlexLayoutModule], [typeof i2.FormsModule, typeof i3.NavigationModule, typeof i4.ArmatureHeaderModule, typeof i5.ArmatureFooterModule, typeof i6.ThemeModule, typeof i7.AlertBannerModule, typeof i8.BaseComponentModule, typeof i1.AppTemplateComponent]>;
|
|
45
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ArmatureModule>;
|
|
31
46
|
}
|
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./sof-progress-bar/sof-progress-bar.component";
|
|
3
|
+
import * as i2 from "./sof-banner/sof-banner.component";
|
|
4
|
+
import * as i3 from "./sof-alert/sof-alert.component";
|
|
5
|
+
import * as i4 from "./sof-modal/sof-modal.component";
|
|
6
|
+
import * as i5 from "./sof-button-toggle-group/sof-button-toggle-group.component";
|
|
7
|
+
import * as i6 from "@angular/router";
|
|
8
|
+
import * as i7 from "@angular/common";
|
|
9
|
+
import * as i8 from "@angular/flex-layout";
|
|
10
|
+
import * as i9 from "@angular/forms";
|
|
11
|
+
import * as i10 from "@ngx-translate/core";
|
|
12
|
+
import * as i11 from "@angular/material/select";
|
|
13
|
+
import * as i12 from "@angular/material/core";
|
|
14
|
+
import * as i13 from "@angular/material/checkbox";
|
|
15
|
+
import * as i14 from "@angular/material/icon";
|
|
16
|
+
import * as i15 from "@angular/material/dialog";
|
|
17
|
+
import * as i16 from "@angular/material/button";
|
|
18
|
+
import * as i17 from "@angular/material/form-field";
|
|
19
|
+
import * as i18 from "@angular/material/toolbar";
|
|
20
|
+
import * as i19 from "@angular/material/tooltip";
|
|
21
|
+
import * as i20 from "@angular/material/button-toggle";
|
|
1
22
|
/** The BaseComponentModule Module */
|
|
2
23
|
export declare class BaseComponentModule {
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponentModule, never>;
|
|
25
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BaseComponentModule, [typeof i1.SofProgressBarComponent, typeof i2.SofBannerComponent, typeof i3.SofAlertComponent, typeof i4.SofModalComponent, typeof i5.SofButtonToggleGroupComponent], [typeof i6.RouterModule, typeof i7.CommonModule, typeof i8.FlexLayoutModule, typeof i9.FormsModule, typeof i9.ReactiveFormsModule, typeof i10.TranslateModule, typeof i11.MatSelectModule, typeof i12.MatOptionModule, typeof i13.MatCheckboxModule, typeof i14.MatIconModule, typeof i15.MatDialogModule, typeof i16.MatButtonModule, typeof i17.MatFormFieldModule, typeof i18.MatToolbarModule, typeof i19.MatTooltipModule, typeof i20.MatButtonToggleModule], [typeof i1.SofProgressBarComponent, typeof i2.SofBannerComponent, typeof i3.SofAlertComponent, typeof i4.SofModalComponent, typeof i5.SofButtonToggleGroupComponent]>;
|
|
26
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BaseComponentModule>;
|
|
3
27
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/** The softheon alert component */
|
|
3
4
|
export declare class SofAlertComponent implements OnInit {
|
|
4
5
|
/** The language text or a key that will be shown in this component */
|
|
@@ -34,4 +35,6 @@ export declare class SofAlertComponent implements OnInit {
|
|
|
34
35
|
constructor();
|
|
35
36
|
/** Implements on init */
|
|
36
37
|
ngOnInit(): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofAlertComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofAlertComponent, "sof-alert", never, { "alertText": "alertText"; "hideBackground": "hideBackground"; "alertColor": "alertColor"; "iconClass": "iconClass"; "mobileBannerExpandableTextTitle": "mobileBannerExpandableTextTitle"; "alertSubText": "alertSubText"; }, {}, never, never, false, never>;
|
|
37
40
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/** The softheon banner component */
|
|
3
4
|
export declare class SofBannerComponent implements OnInit {
|
|
4
5
|
/** The primary banner information key to be translated */
|
|
@@ -28,4 +29,6 @@ export declare class SofBannerComponent implements OnInit {
|
|
|
28
29
|
constructor();
|
|
29
30
|
/** Component initialization */
|
|
30
31
|
ngOnInit(): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofBannerComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofBannerComponent, "sof-banner", never, { "primaryInfoKey": "primaryInfoKey"; "secondaryInfoKey": "secondaryInfoKey"; "showSecondaryBanner": "showSecondaryBanner"; "bannerColor": "bannerColor"; "iconClass": "iconClass"; }, {}, never, never, false, never>;
|
|
31
34
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnDestroy, OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/** The sof button toggle group component */
|
|
4
5
|
export declare class SofButtonToggleGroupComponent implements OnInit, OnDestroy, ControlValueAccessor {
|
|
5
6
|
private control;
|
|
@@ -87,6 +88,8 @@ export declare class SofButtonToggleGroupComponent implements OnInit, OnDestroy,
|
|
|
87
88
|
setDisabledState(isDisabled: boolean): void;
|
|
88
89
|
/** Updates the isRequired field based on the control */
|
|
89
90
|
private setIsRequired;
|
|
91
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofButtonToggleGroupComponent, [{ optional: true; host: true; self: true; }]>;
|
|
92
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofButtonToggleGroupComponent, "sof-button-toggle-group", never, { "labelText": "labelText"; "labelClass": "labelClass"; "isRequired": "isRequired"; "buttonData": "buttonData"; "tooltipData": "tooltipData"; "layoutAlign": "layoutAlign"; "isDisabled": "disabled"; "errorMessage": "errorMessage"; "ariaLabel": "ariaLabel"; }, { "toggleChange": "toggleChange"; }, never, never, false, never>;
|
|
90
93
|
}
|
|
91
94
|
/** Possible values for the toggle position */
|
|
92
95
|
declare const enum ButtonToggleType {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class SofModalComponent implements OnInit {
|
|
4
5
|
data: ModalData;
|
|
5
6
|
private dialogRef;
|
|
@@ -15,6 +16,8 @@ export declare class SofModalComponent implements OnInit {
|
|
|
15
16
|
* @param value The value
|
|
16
17
|
*/
|
|
17
18
|
close(value: boolean): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofModalComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofModalComponent, "sof-modal", never, {}, {}, never, never, false, never>;
|
|
18
21
|
}
|
|
19
22
|
/**
|
|
20
23
|
* The dialog result object
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/** The softheon progress bar component */
|
|
4
5
|
export declare class SofProgressBarComponent implements OnInit, OnChanges {
|
|
5
6
|
private router;
|
|
@@ -34,4 +35,6 @@ export declare class SofProgressBarComponent implements OnInit, OnChanges {
|
|
|
34
35
|
/** Sets the progress navigation bar step titles
|
|
35
36
|
*/
|
|
36
37
|
setNavbarTitles(): void;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofProgressBarComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofProgressBarComponent, "sof-progress-bar", never, { "navbarStepKeys": "navbarStepKeys"; "stepActive": "stepActive"; "progressBarType": "progressBarType"; }, {}, never, never, false, never>;
|
|
37
40
|
}
|
package/lib/component-save-print/components/component-save-print/component-save-print.component.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ComponentFactoryResolver, ElementRef, OnDestroy, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComponentSavePrintService } from '../../services/component-save-print.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/** The component save and print component */
|
|
4
5
|
export declare class ComponentSavePrintComponent implements OnInit, OnDestroy {
|
|
5
6
|
private readonly cfr;
|
|
@@ -40,4 +41,6 @@ export declare class ComponentSavePrintComponent implements OnInit, OnDestroy {
|
|
|
40
41
|
* @param targetWindow The target window
|
|
41
42
|
*/
|
|
42
43
|
private attachStyles;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentSavePrintComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentSavePrintComponent, "sof-ar-component-save-print", never, {}, {}, never, never, false, never>;
|
|
43
46
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/** The component print service */
|
|
3
4
|
export declare class ComponentSavePrintService {
|
|
4
5
|
/** Emits when a component is requested to be save/printed */
|
|
@@ -12,4 +13,6 @@ export declare class ComponentSavePrintService {
|
|
|
12
13
|
* @param component The component to save/print
|
|
13
14
|
*/
|
|
14
15
|
savePrintComponent(component: any): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentSavePrintService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ComponentSavePrintService>;
|
|
15
18
|
}
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/component-save-print/component-save-print.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/** The component save print module */
|
|
2
5
|
export declare class SofArComponentSavePrintModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofArComponentSavePrintModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SofArComponentSavePrintModule, [typeof i1.ComponentSavePrintComponent], [typeof i2.CommonModule], [typeof i1.ComponentSavePrintComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SofArComponentSavePrintModule>;
|
|
3
9
|
}
|
|
@@ -1,14 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Distributed Cache API
|
|
3
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
-
*
|
|
5
|
-
* OpenAPI spec version: 1
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
1
|
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
|
|
13
2
|
import { Observable } from 'rxjs';
|
|
14
3
|
import { SessionGetResponseModel } from '../model/sessionGetResponseModel';
|
|
@@ -16,6 +5,7 @@ import { SessionPostRequestModel } from '../model/sessionPostRequestModel';
|
|
|
16
5
|
import { SessionPostResponseModel } from '../model/sessionPostResponseModel';
|
|
17
6
|
import { SessionPutRequestModel } from '../model/sessionPutRequestModel';
|
|
18
7
|
import { Configuration } from '../configuration';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
19
9
|
export declare class SessionService {
|
|
20
10
|
protected httpClient: HttpClient;
|
|
21
11
|
protected basePath: string;
|
|
@@ -99,4 +89,6 @@ export declare class SessionService {
|
|
|
99
89
|
updateSessionById(sessionId: string, body?: SessionPutRequestModel, observe?: 'body', reportProgress?: boolean): Observable<any>;
|
|
100
90
|
updateSessionById(sessionId: string, body?: SessionPutRequestModel, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<any>>;
|
|
101
91
|
updateSessionById(sessionId: string, body?: SessionPutRequestModel, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<any>>;
|
|
92
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SessionService, [null, { optional: true; }, { optional: true; }]>;
|
|
93
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SessionService>;
|
|
102
94
|
}
|
|
@@ -8,6 +8,7 @@ import { HeaderSettings } from '../../../header/models/header.settings';
|
|
|
8
8
|
import { NavigationAdvancedSettings, NavigationSettings, NavigationThemeSettings, NavNode } from '../../../navigation/navigation-api';
|
|
9
9
|
import { BaseConfig } from '../../models/base-config';
|
|
10
10
|
import { BaseConfigService } from '../../services/base-config.service';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
11
12
|
/** The app template component */
|
|
12
13
|
export declare class AppTemplateComponent implements OnInit {
|
|
13
14
|
private readonly configService;
|
|
@@ -55,4 +56,6 @@ export declare class AppTemplateComponent implements OnInit {
|
|
|
55
56
|
private getExampleNavNodes;
|
|
56
57
|
/** Assigns the default navigation theme */
|
|
57
58
|
private assignDefaultNavTheme;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppTemplateComponent, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppTemplateComponent, "sof-ar-app-template", never, {}, {}, never, ["[sof-ar-header-right]", "[sof-header-user-menu]", "[sof-ar-template-content]", "[sof-ar-nav-content-header]", "[sof-ar-footer-content]", "[sof-ar-nav-mobile-footer]"], false, never>;
|
|
58
61
|
}
|
|
@@ -5,6 +5,7 @@ import { Observable } from 'rxjs';
|
|
|
5
5
|
import { ThemeService } from '../../theming/services/theme.service';
|
|
6
6
|
import { BaseConfigService } from '../services/base-config.service';
|
|
7
7
|
import { CustomAuthConfigService } from '../services/custom-auth-config.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
/**
|
|
9
10
|
* The startup service is used to call methods that should be run when initially loading the application
|
|
10
11
|
*/
|
|
@@ -50,4 +51,6 @@ export declare class Initializer {
|
|
|
50
51
|
* @returns The merge of the two configs provided
|
|
51
52
|
*/
|
|
52
53
|
private mergeCustomizer;
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Initializer, [null, null, null, null, null, { optional: true; }]>;
|
|
55
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Initializer>;
|
|
53
56
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpEvent, HttpHandler, HttpRequest } from '@angular/common/http';
|
|
2
2
|
import { OAuthModuleConfig, OAuthResourceServerErrorHandler, OAuthStorage } from 'angular-oauth2-oidc';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/** The Custom OAuth Interceptor Service */
|
|
5
6
|
export declare class ArmatureAuthTokenAppendInterceptor {
|
|
6
7
|
private readonly authStorage;
|
|
@@ -25,4 +26,6 @@ export declare class ArmatureAuthTokenAppendInterceptor {
|
|
|
25
26
|
* https://manfredsteyer.github.io/angular-oauth2-oidc/angular-oauth2-oidc/docs/additional-documentation/working-with-httpinterceptors.html
|
|
26
27
|
*/
|
|
27
28
|
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArmatureAuthTokenAppendInterceptor, [null, null, { optional: true; }]>;
|
|
30
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ArmatureAuthTokenAppendInterceptor>;
|
|
28
31
|
}
|
|
@@ -4,6 +4,7 @@ import { Observable } from "rxjs";
|
|
|
4
4
|
import { HeaderAuthSettings } from "../../header/models/header-auth.settings";
|
|
5
5
|
import { HybridSamlOauthService } from "../../oauth/oauth-api";
|
|
6
6
|
import { CustomAuthConfigService } from './custom-auth-config.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
/** The session service */
|
|
8
9
|
export declare class AuthorizationService {
|
|
9
10
|
private readonly authService;
|
|
@@ -48,4 +49,6 @@ export declare class AuthorizationService {
|
|
|
48
49
|
private handleTryLogin;
|
|
49
50
|
/** Handle Login */
|
|
50
51
|
private handleLogin;
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthorizationService, [null, null, null, null, { optional: true; }]>;
|
|
53
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthorizationService>;
|
|
51
54
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* Service for managing the banner
|
|
4
5
|
*/
|
|
@@ -25,4 +26,6 @@ export declare class BannerService {
|
|
|
25
26
|
* Hide Notification Message
|
|
26
27
|
*/
|
|
27
28
|
hideMessage(): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BannerService, never>;
|
|
30
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BannerService>;
|
|
28
31
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { BaseConfig } from '../models/base-config';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/** The base config service */
|
|
4
5
|
export declare abstract class BaseConfigService<T = BaseConfig> {
|
|
5
6
|
/** The configuration behavior subject */
|
|
@@ -15,4 +16,6 @@ export declare abstract class BaseConfigService<T = BaseConfig> {
|
|
|
15
16
|
readonly config$: Observable<T>;
|
|
16
17
|
/** Constructs the service */
|
|
17
18
|
constructor();
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseConfigService<any>, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BaseConfigService<any>>;
|
|
18
21
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { BaseConfigService } from './base-config.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class DefaultConfigService extends BaseConfigService {
|
|
3
4
|
/** Constructs the service */
|
|
4
5
|
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultConfigService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DefaultConfigService>;
|
|
5
8
|
}
|
|
@@ -3,6 +3,7 @@ import { OAuthService } from 'angular-oauth2-oidc';
|
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { SessionConfig } from '../models/session-config';
|
|
5
5
|
import { TypedSession } from '../models/typed-session';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/** The session service */
|
|
7
8
|
export declare class SessionService<T = any> {
|
|
8
9
|
readonly sessionConfig: SessionConfig;
|
|
@@ -112,6 +113,8 @@ export declare class SessionService<T = any> {
|
|
|
112
113
|
* @param str The string
|
|
113
114
|
*/
|
|
114
115
|
private decode;
|
|
116
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SessionService<any>, [{ optional: true; }, { optional: true; }, { optional: true; }, null]>;
|
|
117
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SessionService<any>>;
|
|
115
118
|
}
|
|
116
119
|
/**
|
|
117
120
|
* Redirect Session Configs.
|
|
@@ -3,6 +3,7 @@ import { OAuthService } from 'angular-oauth2-oidc';
|
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { AssertedUserModel } from '../client-generated/model/models';
|
|
5
5
|
import { UserEntityServiceConfig } from '../models/user-entity-service-config';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/** The user entity service */
|
|
7
8
|
export declare class UserEntityService {
|
|
8
9
|
private readonly oauthService;
|
|
@@ -41,4 +42,6 @@ export declare class UserEntityService {
|
|
|
41
42
|
private getUserFromApi;
|
|
42
43
|
/** Sets the default values of the config */
|
|
43
44
|
private getConfigWithDefaults;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserEntityService, [null, null, { optional: true; }]>;
|
|
46
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserEntityService>;
|
|
44
47
|
}
|
|
@@ -1,20 +1,10 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Sample API
|
|
3
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
-
*
|
|
5
|
-
* OpenAPI spec version: 1
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
1
|
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
|
|
13
2
|
import { Observable } from 'rxjs';
|
|
14
3
|
import { CreateCacheEntryRequestModel } from '../model/createCacheEntryRequestModel';
|
|
15
4
|
import { RetrieveCacheEntryResponseModel } from '../model/retrieveCacheEntryResponseModel';
|
|
16
5
|
import { UpdateCacheEntryRequestModel } from '../model/updateCacheEntryRequestModel';
|
|
17
6
|
import { Configuration } from '../configuration';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
18
8
|
export declare class CacheService {
|
|
19
9
|
protected httpClient: HttpClient;
|
|
20
10
|
protected basePath: string;
|
|
@@ -77,4 +67,6 @@ export declare class CacheService {
|
|
|
77
67
|
update(key: string, body?: UpdateCacheEntryRequestModel, observe?: 'body', reportProgress?: boolean): Observable<any>;
|
|
78
68
|
update(key: string, body?: UpdateCacheEntryRequestModel, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<any>>;
|
|
79
69
|
update(key: string, body?: UpdateCacheEntryRequestModel, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<any>>;
|
|
70
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CacheService, [null, { optional: true; }, { optional: true; }]>;
|
|
71
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CacheService>;
|
|
80
72
|
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
/**
|
|
13
13
|
* The cache expiration types
|
|
14
14
|
*/
|
|
15
|
-
export
|
|
15
|
+
export type CacheExpirationType = 'Sliding' | 'Absolute';
|
|
16
16
|
export declare const CacheExpirationType: {
|
|
17
17
|
Sliding: CacheExpirationType;
|
|
18
18
|
Absolute: CacheExpirationType;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
1
3
|
/** The distributed cache module */
|
|
2
4
|
export declare class DistributedCacheModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DistributedCacheModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DistributedCacheModule, never, [typeof i1.CommonModule], never>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DistributedCacheModule>;
|
|
3
8
|
}
|
|
@@ -5,6 +5,7 @@ import { CacheService } from '../client-generated/api/api';
|
|
|
5
5
|
import { CreateCacheEntryRequestModel } from '../client-generated/model/createCacheEntryRequestModel';
|
|
6
6
|
import { RetrieveCacheEntryResponseModel } from '../client-generated/model/retrieveCacheEntryResponseModel';
|
|
7
7
|
import { UpdateCacheEntryRequestModel } from '../client-generated/model/updateCacheEntryRequestModel';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
/** Server side cache service */
|
|
9
10
|
export declare class ServerCacheService {
|
|
10
11
|
private readonly sessionService;
|
|
@@ -66,4 +67,6 @@ export declare class ServerCacheService {
|
|
|
66
67
|
* @param key The key
|
|
67
68
|
*/
|
|
68
69
|
private formatKey;
|
|
70
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ServerCacheService, never>;
|
|
71
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ServerCacheService>;
|
|
69
72
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { ErrorCommonConfig } from '../../models/error-common-config';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/** The Common Error component */
|
|
4
5
|
export declare class ErrorCommonComponent implements OnInit {
|
|
5
6
|
/** The config input */
|
|
@@ -8,4 +9,6 @@ export declare class ErrorCommonComponent implements OnInit {
|
|
|
8
9
|
constructor();
|
|
9
10
|
/** Life cycle hook for component initialization */
|
|
10
11
|
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorCommonComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorCommonComponent, "sof-ar-error-common", never, { "config": "config"; }, {}, never, never, false, never>;
|
|
11
14
|
}
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/error-common/error-common.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/flex-layout";
|
|
5
|
+
import * as i4 from "@ngx-translate/core";
|
|
1
6
|
/** The error module */
|
|
2
7
|
export declare class ErrorModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ErrorModule, [typeof i1.ErrorCommonComponent], [typeof i2.CommonModule, typeof i3.FlexLayoutModule, typeof i4.TranslateModule], [typeof i1.ErrorCommonComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ErrorModule>;
|
|
3
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FAQ } from '../../models/faq';
|
|
3
3
|
import { FAQConfig } from '../../models/faq-config';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/** FAQ Component */
|
|
5
6
|
export declare class FaqComponent implements OnInit {
|
|
6
7
|
/** The FAQ INput Config */
|
|
@@ -13,4 +14,6 @@ export declare class FaqComponent implements OnInit {
|
|
|
13
14
|
constructor();
|
|
14
15
|
/** Life cycle hook for component initialization */
|
|
15
16
|
ngOnInit(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FaqComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FaqComponent, "sof-ar-faq", never, { "faqConfig": "faqConfig"; "allFaqs": "allFaqs"; }, {}, never, never, false, never>;
|
|
16
19
|
}
|
package/lib/faq/faq.module.d.ts
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/faq/faq.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/expansion";
|
|
5
|
+
import * as i4 from "@angular/material/button";
|
|
6
|
+
import * as i5 from "@angular/material/card";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
import * as i7 from "@angular/flex-layout";
|
|
9
|
+
import * as i8 from "@ngx-translate/core";
|
|
1
10
|
/** The FAQ Module */
|
|
2
11
|
export declare class FaqModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FaqModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FaqModule, [typeof i1.FaqComponent], [typeof i2.CommonModule, typeof i3.MatExpansionModule, typeof i4.MatButtonModule, typeof i5.MatCardModule, typeof i6.MatIconModule, typeof i7.FlexLayoutModule, typeof i8.TranslateModule], [typeof i1.FaqComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FaqModule>;
|
|
3
15
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FooterConfig } from '../../models/footer-config';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/** The Armature Footer Component */
|
|
4
5
|
export declare class ArmatureFooterComponent implements OnInit {
|
|
5
6
|
/** The footer config */
|
|
@@ -8,4 +9,6 @@ export declare class ArmatureFooterComponent implements OnInit {
|
|
|
8
9
|
constructor();
|
|
9
10
|
/** On Init */
|
|
10
11
|
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArmatureFooterComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArmatureFooterComponent, "sof-ar-footer", never, { "footerConfig": "footerConfig"; }, {}, never, ["[sof-ar-footer-pre-content-1]", "[sof-ar-footer-pre-content-2]", "[sof-ar-footer-content]"], false, never>;
|
|
11
14
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { SiteMapConfig } from '../../models/site-map-models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class SiteMapComponent implements OnInit {
|
|
4
5
|
/** Site map config */
|
|
5
6
|
config: SiteMapConfig;
|
|
@@ -7,4 +8,6 @@ export declare class SiteMapComponent implements OnInit {
|
|
|
7
8
|
constructor();
|
|
8
9
|
/** Init */
|
|
9
10
|
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SiteMapComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SiteMapComponent, "sof-ar-site-map", never, { "config": "config"; }, {}, never, never, false, never>;
|
|
10
13
|
}
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/footer/footer.component";
|
|
3
|
+
import * as i2 from "./components/site-map/site-map.component";
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/flex-layout";
|
|
7
|
+
import * as i6 from "@ngx-translate/core";
|
|
8
|
+
import * as i7 from "@angular/material/button";
|
|
1
9
|
/** The Footer Module */
|
|
2
10
|
export declare class ArmatureFooterModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArmatureFooterModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ArmatureFooterModule, [typeof i1.ArmatureFooterComponent, typeof i2.SiteMapComponent], [typeof i3.RouterModule, typeof i4.CommonModule, typeof i5.FlexLayoutModule, typeof i6.TranslateModule, typeof i7.MatButtonModule], [typeof i1.ArmatureFooterComponent, typeof i2.SiteMapComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ArmatureFooterModule>;
|
|
3
14
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormControl, FormGroup, FormBuilder } from '@angular/forms';
|
|
3
3
|
import { Address } from '../../models/address';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/** Address component */
|
|
5
6
|
export declare class SofAddressComponent implements OnInit {
|
|
6
7
|
private readonly formBuilder;
|
|
@@ -47,4 +48,6 @@ export declare class SofAddressComponent implements OnInit {
|
|
|
47
48
|
getAddress(): Address;
|
|
48
49
|
/** Checks if the form is valid */
|
|
49
50
|
isValid(): boolean;
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofAddressComponent, never>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofAddressComponent, "sof-ar-address", never, { "id": "id"; "street1Verbiage": "street1Verbiage"; "street2Verbiage": "street2Verbiage"; "cityVerbiage": "cityVerbiage"; "zipCodeVerbiage": "zipCodeVerbiage"; "stateVerbiage": "stateVerbiage"; "titleVerbiage": "titleVerbiage"; "requiredErrorVerbiage": "requiredErrorVerbiage"; }, {}, never, never, false, never>;
|
|
50
53
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* The alphanumeric directive
|
|
4
5
|
*/
|
|
@@ -25,4 +26,6 @@ export declare class AlphaNumericDirective {
|
|
|
25
26
|
* @param event the event
|
|
26
27
|
*/
|
|
27
28
|
blockPaste(event: KeyboardEvent): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlphaNumericDirective, never>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AlphaNumericDirective, "[alphanumeric]", never, {}, {}, never, never, false, never>;
|
|
28
31
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, Renderer2 } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class InputTrimDirective implements ControlValueAccessor {
|
|
4
5
|
private get _type();
|
|
5
6
|
trim: string;
|
|
@@ -52,4 +53,6 @@ export declare class InputTrimDirective implements ControlValueAccessor {
|
|
|
52
53
|
* @param event input event
|
|
53
54
|
*/
|
|
54
55
|
private updateValue;
|
|
56
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTrimDirective, [null, null, { optional: true; }]>;
|
|
57
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<InputTrimDirective, "input[trim], textarea[trim]", never, { "trim": "trim"; }, {}, never, never, false, never>;
|
|
55
58
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* The letters only directive
|
|
4
5
|
*/
|
|
@@ -23,4 +24,6 @@ export declare class LettersOnlyDirective {
|
|
|
23
24
|
* @param event the event
|
|
24
25
|
*/
|
|
25
26
|
blockPaste(event: KeyboardEvent): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LettersOnlyDirective, never>;
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LettersOnlyDirective, "[sofArLettersOnly]", never, { "sofArLettersOnly": "sofArLettersOnly"; }, {}, never, never, false, never>;
|
|
26
29
|
}
|