@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
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* Numbers only directive
|
|
4
5
|
*/
|
|
@@ -18,4 +19,6 @@ export declare class NumbersOnlyDirective {
|
|
|
18
19
|
* @param event Key Event
|
|
19
20
|
*/
|
|
20
21
|
onKeyDown(event: any): any;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumbersOnlyDirective, never>;
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NumbersOnlyDirective, "[sofArNumbersOnly]", never, { "sofArNumbersOnly": "sofArNumbersOnly"; }, {}, never, never, false, never>;
|
|
21
24
|
}
|
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/sof-address/sof-address.component";
|
|
3
|
+
import * as i2 from "./directives/numbers-only/numbers-only.directive";
|
|
4
|
+
import * as i3 from "./directives/letters-only/letters-only.directive";
|
|
5
|
+
import * as i4 from "./directives/alphanumeric/alphanumeric.directive";
|
|
6
|
+
import * as i5 from "./directives/input-trim/input-trim.directive";
|
|
7
|
+
import * as i6 from "./pipes/phone-format.pipe";
|
|
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 "@angular/material/input";
|
|
12
|
+
import * as i11 from "@angular/material/form-field";
|
|
13
|
+
import * as i12 from "@angular/material/select";
|
|
14
|
+
import * as i13 from "@angular/material/snack-bar";
|
|
1
15
|
/** Armature forms module */
|
|
2
16
|
export declare class FormsModule {
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormsModule, never>;
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FormsModule, [typeof i1.SofAddressComponent, typeof i2.NumbersOnlyDirective, typeof i3.LettersOnlyDirective, typeof i4.AlphaNumericDirective, typeof i5.InputTrimDirective, typeof i6.PhoneFormatPipe], [typeof i7.CommonModule, typeof i8.FlexLayoutModule, typeof i9.ReactiveFormsModule, typeof i10.MatInputModule, typeof i11.MatFormFieldModule, typeof i12.MatSelectModule, typeof i13.MatSnackBarModule], [typeof i1.SofAddressComponent, typeof i2.NumbersOnlyDirective, typeof i3.LettersOnlyDirective, typeof i4.AlphaNumericDirective, typeof i5.InputTrimDirective, typeof i6.PhoneFormatPipe]>;
|
|
19
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FormsModule>;
|
|
3
20
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* A pipe that takes a simple string phone number and formats it
|
|
4
5
|
*/
|
|
5
6
|
export declare class PhoneFormatPipe implements PipeTransform {
|
|
6
7
|
transform(phoneNumber: string): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneFormatPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PhoneFormatPipe, "sofArPhone", false>;
|
|
7
10
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef } from '@angular/core';
|
|
|
2
2
|
import { AbstractControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
4
|
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* Service to handle error alerts
|
|
7
8
|
*/
|
|
@@ -54,4 +55,6 @@ export declare class AlertService {
|
|
|
54
55
|
* @param el Element to focus on
|
|
55
56
|
*/
|
|
56
57
|
setFocusToFormControl(el: ElementRef): void;
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertService, never>;
|
|
59
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AlertService>;
|
|
57
60
|
}
|
|
@@ -2,13 +2,14 @@ import { MediaMatcher } from '@angular/cdk/layout';
|
|
|
2
2
|
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
3
3
|
import { MatSlideToggleChange } from '@angular/material/slide-toggle';
|
|
4
4
|
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
-
import { OAuthService, OAuthStorage } from 'angular-oauth2-oidc
|
|
5
|
+
import { OAuthService, OAuthStorage } from 'angular-oauth2-oidc';
|
|
6
6
|
import { AuthorizationService } from '../../../core/services/authorization.service';
|
|
7
7
|
import { HybridSamlOauthService } from '../../../oauth/oauth-api';
|
|
8
8
|
import { HeaderAuthSettings } from '../../models/header-auth.settings';
|
|
9
9
|
import { HeaderLanguageSettings } from '../../models/header-language.settings';
|
|
10
10
|
import { HeaderThemeSettings } from '../../models/header-theme.settings';
|
|
11
11
|
import { HeaderSettings } from '../../models/header.settings';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
12
13
|
/** The Header Component */
|
|
13
14
|
export declare class ArmatureHeaderComponent implements OnInit {
|
|
14
15
|
private readonly authService;
|
|
@@ -114,4 +115,6 @@ export declare class ArmatureHeaderComponent implements OnInit {
|
|
|
114
115
|
setThemeColor(variable: string, color: string): void;
|
|
115
116
|
/** Sets the header theme settings */
|
|
116
117
|
private setHeaderThemeSettings;
|
|
118
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArmatureHeaderComponent, [null, null, null, null, null, null, { optional: true; }]>;
|
|
119
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArmatureHeaderComponent, "sof-ar-header", never, { "settings": "settings"; "themeSettings": "themeSettings"; "authSettings": "authSettings"; "currentLang": "currentLang"; }, { "setLanguage$": "setLanguage$"; "isLoggedInEE": "isLoggedInEE"; }, never, ["[sof-ar-super-header]", "[sof-ar-header-left]", "[sof-ar-header-center]", "[sof-ar-header-right]", "[sof-ar-header-menu]", "[sof-header-user-menu]"], false, never>;
|
|
117
120
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MobileHeaderNavSettings } from '../../models/mobile-header-nav.settings';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/** The mobile header navigation component */
|
|
4
5
|
export declare class MobileHeaderMenuComponent implements OnInit {
|
|
5
6
|
/** Component Input - the mobile header nav settings */
|
|
@@ -20,4 +21,6 @@ export declare class MobileHeaderMenuComponent implements OnInit {
|
|
|
20
21
|
changeToCloseIcon(): void;
|
|
21
22
|
/** Change the icon to the menu icon */
|
|
22
23
|
changeToMenuIcon(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MobileHeaderMenuComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MobileHeaderMenuComponent, "sof-ar-mobile-header-menu", never, { "settings": "settings"; }, {}, never, ["[sof-ar-mobile-header-menu-items]", "*"], false, never>;
|
|
23
26
|
}
|
|
@@ -1,2 +1,20 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/header/header.component";
|
|
3
|
+
import * as i2 from "./components/mobile-header-menu/mobile-header-menu.component";
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@ngx-translate/core";
|
|
7
|
+
import * as i6 from "@angular/flex-layout";
|
|
8
|
+
import * as i7 from "@angular/material/toolbar";
|
|
9
|
+
import * as i8 from "@angular/material/menu";
|
|
10
|
+
import * as i9 from "@angular/material/button-toggle";
|
|
11
|
+
import * as i10 from "@angular/material/button";
|
|
12
|
+
import * as i11 from "@angular/material/icon";
|
|
13
|
+
import * as i12 from "@angular/material/list";
|
|
14
|
+
import * as i13 from "@angular/material/slide-toggle";
|
|
15
|
+
import * as i14 from "@angular/material/sidenav";
|
|
1
16
|
export declare class ArmatureHeaderModule {
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArmatureHeaderModule, never>;
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ArmatureHeaderModule, [typeof i1.ArmatureHeaderComponent, typeof i2.MobileHeaderMenuComponent], [typeof i3.RouterModule, typeof i4.CommonModule, typeof i5.TranslateModule, typeof i6.FlexLayoutModule, typeof i7.MatToolbarModule, typeof i8.MatMenuModule, typeof i9.MatButtonToggleModule, typeof i10.MatButtonModule, typeof i11.MatIconModule, typeof i12.MatListModule, typeof i13.MatSlideToggleModule, typeof i14.MatSidenavModule], [typeof i1.ArmatureHeaderComponent, typeof i2.MobileHeaderMenuComponent, typeof i7.MatToolbarModule, typeof i8.MatMenuModule, typeof i9.MatButtonToggleModule, typeof i10.MatButtonModule, typeof i11.MatIconModule, typeof i12.MatListModule, typeof i13.MatSlideToggleModule, typeof i14.MatSidenavModule]>;
|
|
19
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ArmatureHeaderModule>;
|
|
2
20
|
}
|
|
@@ -2,7 +2,7 @@ import { MediaMatcher } from '@angular/cdk/layout';
|
|
|
2
2
|
import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnDestroy, OnInit, QueryList } from '@angular/core';
|
|
3
3
|
import { MatExpansionPanel } from '@angular/material/expansion';
|
|
4
4
|
import { MatSidenav } from '@angular/material/sidenav';
|
|
5
|
-
import {
|
|
5
|
+
import { MatStepper } from '@angular/material/stepper';
|
|
6
6
|
import { Router } from '@angular/router';
|
|
7
7
|
import { Observable, Subscription } from 'rxjs';
|
|
8
8
|
import { BaseConfig } from '../../../core/models/base-config';
|
|
@@ -13,6 +13,7 @@ import { HeaderLanguageSettings } from '../../../header/models/header-language.s
|
|
|
13
13
|
import { NavigationThemeSettings } from '../../models/nav-theme.settings';
|
|
14
14
|
import { NavigationAdvancedSettings, NavigationSettings } from '../../models/nav.settings';
|
|
15
15
|
import { NavNode, SubNavNodes } from '../../models/navigation';
|
|
16
|
+
import * as i0 from "@angular/core";
|
|
16
17
|
/**
|
|
17
18
|
* The Navigation Component
|
|
18
19
|
*/
|
|
@@ -24,13 +25,13 @@ export declare class ArmatureNavigationComponent implements OnInit, AfterViewIni
|
|
|
24
25
|
private readonly authorizationService;
|
|
25
26
|
private readonly configService;
|
|
26
27
|
/** The parent stepper */
|
|
27
|
-
stepper:
|
|
28
|
+
stepper: MatStepper;
|
|
28
29
|
/** The side mobile nav */
|
|
29
30
|
sidenav: MatSidenav;
|
|
30
31
|
/** The mobile expansion panel for progress menu */
|
|
31
32
|
expansionPanel: MatExpansionPanel;
|
|
32
33
|
/** The child steppers */
|
|
33
|
-
innerSteppers: QueryList<
|
|
34
|
+
innerSteppers: QueryList<MatStepper>;
|
|
34
35
|
/** Component Input - the navigation data */
|
|
35
36
|
navigationData: NavNode[];
|
|
36
37
|
/** Component Input - the navigation settings */
|
|
@@ -194,4 +195,6 @@ export declare class ArmatureNavigationComponent implements OnInit, AfterViewIni
|
|
|
194
195
|
private initThemeSettings;
|
|
195
196
|
/** Initializes the basic nav settings */
|
|
196
197
|
private initBasicSettings;
|
|
198
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArmatureNavigationComponent, [null, null, null, null, null, { optional: true; }]>;
|
|
199
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArmatureNavigationComponent, "sof-ar-navigation", never, { "navigationData": "navigationData"; "settings": "settings"; "advancedSettings": "advancedSettings"; "themeSettings": "themeSettings"; "languageSettings": "languageSettings"; "currentLang": "currentLang"; "logOutText": "logOutText"; }, { "setLanguage$": "setLanguage$"; }, never, ["[sof-ar-nav-header]", "*", "[sof-ar-nav-mobile-footer]"], false, never>;
|
|
197
200
|
}
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/navigation/navigation.component";
|
|
3
|
+
import * as i2 from "@angular/router";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@ngx-translate/core";
|
|
6
|
+
import * as i5 from "@angular/flex-layout";
|
|
7
|
+
import * as i6 from "@angular/material/sidenav";
|
|
8
|
+
import * as i7 from "@angular/material/slider";
|
|
9
|
+
import * as i8 from "@angular/material/slide-toggle";
|
|
10
|
+
import * as i9 from "@angular/material/button";
|
|
11
|
+
import * as i10 from "@angular/material/button-toggle";
|
|
12
|
+
import * as i11 from "@angular/material/icon";
|
|
13
|
+
import * as i12 from "@angular/material/list";
|
|
14
|
+
import * as i13 from "@angular/material/tooltip";
|
|
15
|
+
import * as i14 from "@angular/material/expansion";
|
|
16
|
+
import * as i15 from "@angular/material/menu";
|
|
17
|
+
import * as i16 from "@angular/material/stepper";
|
|
18
|
+
import * as i17 from "@angular/material/select";
|
|
19
|
+
import * as i18 from "@angular/material/progress-bar";
|
|
1
20
|
/** The Navigation Module */
|
|
2
21
|
export declare class NavigationModule {
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationModule, never>;
|
|
23
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationModule, [typeof i1.ArmatureNavigationComponent], [typeof i2.RouterModule, typeof i3.CommonModule, typeof i4.TranslateModule, typeof i5.FlexLayoutModule, typeof i6.MatSidenavModule, typeof i7.MatSliderModule, typeof i8.MatSlideToggleModule, typeof i9.MatButtonModule, typeof i10.MatButtonToggleModule, typeof i9.MatButtonModule, typeof i11.MatIconModule, typeof i12.MatListModule, typeof i13.MatTooltipModule, typeof i14.MatExpansionModule, typeof i15.MatMenuModule, typeof i16.MatStepperModule, typeof i14.MatExpansionModule, typeof i15.MatMenuModule, typeof i16.MatStepperModule, typeof i17.MatSelectModule, typeof i18.MatProgressBarModule], [typeof i1.ArmatureNavigationComponent, typeof i6.MatSidenavModule, typeof i7.MatSliderModule, typeof i8.MatSlideToggleModule, typeof i9.MatButtonModule, typeof i10.MatButtonToggleModule, typeof i9.MatButtonModule, typeof i11.MatIconModule, typeof i12.MatListModule, typeof i13.MatTooltipModule, typeof i14.MatExpansionModule, typeof i15.MatMenuModule, typeof i16.MatStepperModule, typeof i14.MatExpansionModule, typeof i15.MatMenuModule, typeof i16.MatStepperModule, typeof i17.MatSelectModule, typeof i18.MatProgressBarModule]>;
|
|
24
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NavigationModule>;
|
|
3
25
|
}
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "@angular/common/http";
|
|
1
4
|
/** The OAuth Module */
|
|
2
5
|
export declare class OauthModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OauthModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OauthModule, never, [typeof i1.CommonModule, typeof i2.HttpClientModule], never>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OauthModule>;
|
|
3
9
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { HybridSamlOAuthConfig } from '../models/hybrid-saml-oauth-config';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/** The hybrid SAML Oauth Service */
|
|
5
6
|
export declare class HybridSamlOauthService {
|
|
6
7
|
private readonly windowGeneric;
|
|
@@ -53,4 +54,6 @@ export declare class HybridSamlOauthService {
|
|
|
53
54
|
* @param o The object
|
|
54
55
|
*/
|
|
55
56
|
private toCamel;
|
|
57
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HybridSamlOauthService, [{ optional: true; }, { optional: true; }, null]>;
|
|
58
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HybridSamlOauthService>;
|
|
56
59
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TemplateRef, ViewContainerRef, OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { Oauth2RoleService } from '../services/oauth2-role.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class RbacActionDirective implements OnInit, OnDestroy {
|
|
4
5
|
private readonly templateRef;
|
|
5
6
|
private readonly viewContainer;
|
|
@@ -21,4 +22,6 @@ export declare class RbacActionDirective implements OnInit, OnDestroy {
|
|
|
21
22
|
ngOnInit(): void;
|
|
22
23
|
/** Life cycle hook for directive destruction */
|
|
23
24
|
ngOnDestroy(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RbacActionDirective, never>;
|
|
26
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RbacActionDirective, "[sofArRbacAction]", never, { "sofArRbacAction": "sofArRbacAction"; }, {}, never, never, false, never>;
|
|
24
27
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ModuleWithProviders, Provider } from '@angular/core';
|
|
2
2
|
import { RbacConfig } from './models/rbac-config';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "./directives/rbac-action.directive";
|
|
5
|
+
import * as i2 from "@angular/common";
|
|
3
6
|
/** The role based access control module */
|
|
4
7
|
export declare class RbacModule {
|
|
5
8
|
/**
|
|
@@ -10,4 +13,7 @@ export declare class RbacModule {
|
|
|
10
13
|
config?: RbacConfig;
|
|
11
14
|
rbacConfigProvider?: Provider;
|
|
12
15
|
}): ModuleWithProviders<RbacModule>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RbacModule, never>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RbacModule, [typeof i1.RbacActionDirective], [typeof i2.CommonModule], [typeof i1.RbacActionDirective]>;
|
|
18
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<RbacModule>;
|
|
13
19
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { NavNode } from '../../navigation/models/navigation';
|
|
2
2
|
import { RbacConfig } from '../models/rbac-config';
|
|
3
3
|
import { RoleNavService } from './role-nav.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/** The armature role navigation service */
|
|
5
6
|
export declare class ArRoleNavService implements RoleNavService {
|
|
6
7
|
/** Constructs the service */
|
|
@@ -18,4 +19,6 @@ export declare class ArRoleNavService implements RoleNavService {
|
|
|
18
19
|
* @param route The route
|
|
19
20
|
*/
|
|
20
21
|
private isRouteMatch;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArRoleNavService, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ArRoleNavService>;
|
|
21
24
|
}
|
|
@@ -4,6 +4,7 @@ import { NavNode } from '../../navigation/navigation-api';
|
|
|
4
4
|
import { DecodedAccessToken } from '../models/decoded-access-token';
|
|
5
5
|
import { RbacConfig } from '../models/rbac-config';
|
|
6
6
|
import { RoleNavService } from './role-nav.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
/**
|
|
8
9
|
* The oauth 2 role service
|
|
9
10
|
* Supplies the role using an OAuth 2.0 access token
|
|
@@ -45,4 +46,6 @@ export declare class Oauth2RoleService {
|
|
|
45
46
|
hasActionAccess(action: string): Observable<boolean>;
|
|
46
47
|
/** Initializer logic for the service */
|
|
47
48
|
private init;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Oauth2RoleService, [{ optional: true; }, null, null]>;
|
|
50
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Oauth2RoleService>;
|
|
48
51
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { ResizeEvent } from '../../models/resize-event';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/** The Resize Panels Component */
|
|
4
5
|
export declare class ResizePanelsComponent implements OnInit {
|
|
5
6
|
/** The panel split direction */
|
|
@@ -58,4 +59,6 @@ export declare class ResizePanelsComponent implements OnInit {
|
|
|
58
59
|
* @param event the mouse event
|
|
59
60
|
*/
|
|
60
61
|
private resize;
|
|
62
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizePanelsComponent, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResizePanelsComponent, "sof-ar-resize-panels", never, { "direction": "direction"; "splitPosition": "splitPosition"; "firstPanelMinSize": "firstPanelMinSize"; "secondPanelMinSize": "secondPanelMinSize"; "resizable": "resizable"; }, { "onResize": "onResize"; "onResizeStart": "onResizeStart"; "onResizeEnd": "onResizeEnd"; }, never, ["[sof-ar-resize-panel-first]", "[sof-ar-resize-panel-second]"], false, never>;
|
|
61
64
|
}
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/resize-panels/resize-panels.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/** The Resize Panels Module */
|
|
2
5
|
export declare class ArmatureResizePanelsModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArmatureResizePanelsModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ArmatureResizePanelsModule, [typeof i1.ResizePanelsComponent], [typeof i2.CommonModule], [typeof i1.ResizePanelsComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ArmatureResizePanelsModule>;
|
|
3
9
|
}
|
package/lib/rum/rum.module.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/router";
|
|
2
4
|
/** The real user monitoring */
|
|
3
5
|
export declare class RumModule {
|
|
4
6
|
/**
|
|
@@ -6,4 +8,7 @@ export declare class RumModule {
|
|
|
6
8
|
* @param injector The injector
|
|
7
9
|
*/
|
|
8
10
|
constructor(injector: Injector);
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RumModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RumModule, never, [typeof i1.RouterModule], never>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<RumModule>;
|
|
9
14
|
}
|
|
@@ -2,6 +2,7 @@ import { OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { SessionService } from '../../core/services/session.service';
|
|
4
4
|
import { RumConfig } from '../models/rum-config';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
/** The rum service */
|
|
6
7
|
export declare class RumService implements OnDestroy {
|
|
7
8
|
private readonly router;
|
|
@@ -41,4 +42,6 @@ export declare class RumService implements OnDestroy {
|
|
|
41
42
|
transaction: any;
|
|
42
43
|
span: any;
|
|
43
44
|
}): void;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RumService, never>;
|
|
46
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RumService>;
|
|
44
47
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { ArmError } from '../models/arm-error';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class SharedErrorService {
|
|
4
5
|
private readonly injector;
|
|
5
6
|
/** The session service */
|
|
@@ -21,4 +22,6 @@ export declare class SharedErrorService {
|
|
|
21
22
|
* @param error The error
|
|
22
23
|
*/
|
|
23
24
|
formatError(error: Error, populateOriginalError?: boolean): ArmError;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SharedErrorService, never>;
|
|
26
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SharedErrorService>;
|
|
24
27
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { ErrorHandler, Injector } from '@angular/core';
|
|
3
3
|
import { RumConfig } from '../models/rum-config';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/** The softheon error handler service */
|
|
5
6
|
export declare class SoftheonErrorHandlerService implements ErrorHandler {
|
|
6
7
|
rumConfig: RumConfig;
|
|
@@ -26,4 +27,6 @@ export declare class SoftheonErrorHandlerService implements ErrorHandler {
|
|
|
26
27
|
* @param error The error
|
|
27
28
|
*/
|
|
28
29
|
handleError(error: any): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SoftheonErrorHandlerService, never>;
|
|
31
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SoftheonErrorHandlerService>;
|
|
29
32
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { RedirectSamlRequest } from '../../models/redirect-saml-request';
|
|
3
3
|
import { AbstractSamlService } from '../../services/send-off/abstract-saml.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/** The SAML redirect component */
|
|
5
6
|
export declare class RedirectSamlComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
6
7
|
private readonly samlService;
|
|
@@ -35,4 +36,6 @@ export declare class RedirectSamlComponent implements OnInit, AfterViewInit, OnD
|
|
|
35
36
|
ngOnDestroy(): void;
|
|
36
37
|
/** Validates that component required component inputs are provided */
|
|
37
38
|
private validateComponentInputs;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RedirectSamlComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RedirectSamlComponent, "saml-redirect-saml", never, { "request": "request"; "samlGetEndpointUri": "samlGetEndpointUri"; "samlPostUrl": "samlPostUrl"; }, { "samlPostEvent": "samlPostEvent"; }, never, never, false, never>;
|
|
38
41
|
}
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/redirect-saml/redirect-saml.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/** Armature saml module */
|
|
2
5
|
export declare class SamlModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SamlModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SamlModule, [typeof i1.RedirectSamlComponent], [typeof i2.CommonModule], [typeof i1.RedirectSamlComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SamlModule>;
|
|
3
9
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SsoGatewayModel } from '../../models/sso-gateway-model';
|
|
2
2
|
import { AbstractSamlEntryService } from './abstract-saml-entry.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/** The SAML entry service */
|
|
4
5
|
export declare class SsoGatewayEntryService extends AbstractSamlEntryService {
|
|
5
6
|
/** The key path prefix */
|
|
@@ -16,4 +17,6 @@ export declare class SsoGatewayEntryService extends AbstractSamlEntryService {
|
|
|
16
17
|
* @param keyPath The key path
|
|
17
18
|
*/
|
|
18
19
|
deleteValue(keyPath: string): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SsoGatewayEntryService, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SsoGatewayEntryService>;
|
|
19
22
|
}
|
|
@@ -4,6 +4,7 @@ import { ISamlRequest } from '../../models/i-saml-request';
|
|
|
4
4
|
import { ISamlResponse } from '../../models/i-saml-response';
|
|
5
5
|
import { AbstractSamlService } from './abstract-saml.service';
|
|
6
6
|
import { RedirectSamlRequest } from '../../models/redirect-saml-request';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
/** The SAML service */
|
|
8
9
|
export declare class SamlService extends AbstractSamlService {
|
|
9
10
|
private readonly http;
|
|
@@ -26,4 +27,6 @@ export declare class SamlService extends AbstractSamlService {
|
|
|
26
27
|
* @param endpointUri The full endpoint uri for getting the saml
|
|
27
28
|
*/
|
|
28
29
|
getSaml(request: ISamlRequest, endpointUri: string): Observable<ISamlResponse>;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SamlService, never>;
|
|
31
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SamlService>;
|
|
29
32
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/** Blank Pipe for strings when its blank */
|
|
3
4
|
export declare class SofBlankPipe implements PipeTransform {
|
|
4
5
|
private blankLanguage;
|
|
@@ -13,4 +14,6 @@ export declare class SofBlankPipe implements PipeTransform {
|
|
|
13
14
|
* @returns
|
|
14
15
|
*/
|
|
15
16
|
transform(value: any): any;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofBlankPipe, [{ optional: true; }]>;
|
|
18
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SofBlankPipe, "sofArBlank", false>;
|
|
16
19
|
}
|
|
@@ -2,6 +2,7 @@ import { DatePipe } from '@angular/common';
|
|
|
2
2
|
import { PipeTransform } from '@angular/core';
|
|
3
3
|
import * as moment from 'moment';
|
|
4
4
|
import { SofDatePipeFormat } from '../../models/sof-date-pipe-format';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
/** Date Pipe */
|
|
6
7
|
export declare class SofDatePipe implements PipeTransform {
|
|
7
8
|
private datePipe;
|
|
@@ -15,4 +16,6 @@ export declare class SofDatePipe implements PipeTransform {
|
|
|
15
16
|
* @param dateStr Date string
|
|
16
17
|
*/
|
|
17
18
|
private parseDate;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofDatePipe, [null, { optional: true; }]>;
|
|
20
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SofDatePipe, "sofArDate", false>;
|
|
18
21
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/** SSN Pipe */
|
|
3
4
|
export declare class SofSsnPipe implements PipeTransform {
|
|
4
5
|
/**
|
|
@@ -6,4 +7,6 @@ export declare class SofSsnPipe implements PipeTransform {
|
|
|
6
7
|
* @param ssn SSN
|
|
7
8
|
*/
|
|
8
9
|
transform(ssn: string, maskedCharacter: any): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofSsnPipe, never>;
|
|
11
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SofSsnPipe, "sofArSsn", false>;
|
|
9
12
|
}
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./pipes/sof-blank/sof-blank.pipe";
|
|
3
|
+
import * as i2 from "./pipes/sof-date/sof-date.pipe";
|
|
4
|
+
import * as i3 from "./pipes/sof-ssn/sof-ssn.pipe";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
1
6
|
export declare class SofPipeModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SofPipeModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SofPipeModule, [typeof i1.SofBlankPipe, typeof i2.SofDatePipe, typeof i3.SofSsnPipe], [typeof i4.CommonModule], [typeof i1.SofBlankPipe, typeof i2.SofDatePipe, typeof i3.SofSsnPipe]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SofPipeModule>;
|
|
2
10
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CssOverride } from '../models/css-override';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/** The css override service */
|
|
3
4
|
export declare class CssOverrideDirective {
|
|
4
5
|
/** The css overrides */
|
|
@@ -14,4 +15,6 @@ export declare class CssOverrideDirective {
|
|
|
14
15
|
* @param overrides the css overrides
|
|
15
16
|
*/
|
|
16
17
|
private overrideCss;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CssOverrideDirective, never>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CssOverrideDirective, "[sofArCssOverride]", never, { "sofArCssOverride": "sofArCssOverride"; }, {}, never, never, false, never>;
|
|
17
20
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ThemePaletteColorsModel, ThemePaletteModel } from '../../core/client-generated/model/models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/** The Theme Service */
|
|
3
4
|
export declare class ThemeService {
|
|
4
5
|
/**
|
|
@@ -42,4 +43,6 @@ export declare class ThemeService {
|
|
|
42
43
|
* @param hex The hex code
|
|
43
44
|
*/
|
|
44
45
|
private hexToRgb;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeService, never>;
|
|
47
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ThemeService>;
|
|
45
48
|
}
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./directives/css-override.directive";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/** Armature saml module */
|
|
2
5
|
export declare class ThemeModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeModule, [typeof i1.CssOverrideDirective], [typeof i2.CommonModule], [typeof i1.CssOverrideDirective]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ThemeModule>;
|
|
3
9
|
}
|
package/package.json
CHANGED
|
@@ -1,34 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softheon/armature",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"tslib": "^2.
|
|
5
|
+
"tslib": "^2.5.0"
|
|
6
6
|
},
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@angular/animations": "
|
|
9
|
-
"@angular/cdk": "^
|
|
10
|
-
"@angular/common": "
|
|
11
|
-
"@angular/compiler": "
|
|
12
|
-
"@angular/core": "
|
|
13
|
-
"@angular/flex-layout": "^
|
|
14
|
-
"@angular/forms": "
|
|
15
|
-
"@angular/material": "^
|
|
16
|
-
"@angular/platform-browser": "
|
|
17
|
-
"@angular/platform-browser-dynamic": "
|
|
18
|
-
"@angular/router": "
|
|
19
|
-
"@ngx-translate/core": "^
|
|
20
|
-
"@ngx-translate/http-loader": "^
|
|
21
|
-
"angular-oauth2-oidc": "~
|
|
22
|
-
"angular-oauth2-oidc-jwks": "^
|
|
23
|
-
"rxjs": "~
|
|
24
|
-
"moment": "^2.29.
|
|
8
|
+
"@angular/animations": "^15.1.5",
|
|
9
|
+
"@angular/cdk": "^15.1.5",
|
|
10
|
+
"@angular/common": "^15.1.5",
|
|
11
|
+
"@angular/compiler": "^15.1.5",
|
|
12
|
+
"@angular/core": "^15.1.5",
|
|
13
|
+
"@angular/flex-layout": "^15.0.0-beta.42",
|
|
14
|
+
"@angular/forms": "^15.1.5",
|
|
15
|
+
"@angular/material": "^15.1.5",
|
|
16
|
+
"@angular/platform-browser": "^15.1.5",
|
|
17
|
+
"@angular/platform-browser-dynamic": "^15.1.5",
|
|
18
|
+
"@angular/router": "^15.1.5",
|
|
19
|
+
"@ngx-translate/core": "^14.0.0",
|
|
20
|
+
"@ngx-translate/http-loader": "^7.0.0",
|
|
21
|
+
"angular-oauth2-oidc": "~15.0.1",
|
|
22
|
+
"angular-oauth2-oidc-jwks": "^15.0.1",
|
|
23
|
+
"rxjs": "~7.8.0",
|
|
24
|
+
"moment": "^2.29.4"
|
|
25
|
+
},
|
|
26
|
+
"module": "fesm2015/softheon-armature.mjs",
|
|
27
|
+
"es2020": "fesm2020/softheon-armature.mjs",
|
|
28
|
+
"esm2020": "esm2020/softheon-armature.mjs",
|
|
29
|
+
"fesm2020": "fesm2020/softheon-armature.mjs",
|
|
30
|
+
"fesm2015": "fesm2015/softheon-armature.mjs",
|
|
31
|
+
"typings": "index.d.ts",
|
|
32
|
+
"exports": {
|
|
33
|
+
"./package.json": {
|
|
34
|
+
"default": "./package.json"
|
|
35
|
+
},
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./index.d.ts",
|
|
38
|
+
"esm2020": "./esm2020/softheon-armature.mjs",
|
|
39
|
+
"es2020": "./fesm2020/softheon-armature.mjs",
|
|
40
|
+
"es2015": "./fesm2015/softheon-armature.mjs",
|
|
41
|
+
"node": "./fesm2015/softheon-armature.mjs",
|
|
42
|
+
"default": "./fesm2020/softheon-armature.mjs"
|
|
43
|
+
}
|
|
25
44
|
},
|
|
26
|
-
"main": "bundles/softheon-armature.umd.js",
|
|
27
|
-
"module": "fesm2015/softheon-armature.js",
|
|
28
|
-
"es2015": "fesm2015/softheon-armature.js",
|
|
29
|
-
"esm2015": "esm2015/softheon-armature.js",
|
|
30
|
-
"fesm2015": "fesm2015/softheon-armature.js",
|
|
31
|
-
"typings": "softheon-armature.d.ts",
|
|
32
|
-
"metadata": "softheon-armature.metadata.json",
|
|
33
45
|
"sideEffects": false
|
|
34
|
-
}
|
|
46
|
+
}
|