monkey-front-core 0.0.238 → 0.0.239
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/esm2020/lib/components/alerts/alerts.component.mjs +35 -0
- package/esm2020/lib/components/alerts/alerts.module.mjs +21 -0
- package/esm2020/lib/components/alerts/index.mjs +3 -0
- package/esm2020/lib/components/closed-to-maintenance/closed-to-maintenance.component.mjs +29 -0
- package/esm2020/lib/components/closed-to-maintenance/closed-to-maintenance.module.mjs +43 -0
- package/esm2020/lib/components/closed-to-maintenance/index.mjs +3 -0
- package/esm2020/lib/components/index.mjs +5 -0
- package/esm2020/lib/components/progress-bar/index.mjs +4 -0
- package/esm2020/lib/components/progress-bar/progress-bar.component.mjs +23 -0
- package/esm2020/lib/components/progress-bar/progress-bar.module.mjs +18 -0
- package/esm2020/lib/components/progress-bar/progress-bar.service.mjs +50 -0
- package/esm2020/lib/components/version-changed/index.mjs +3 -0
- package/esm2020/lib/components/version-changed/version-changed.component.mjs +24 -0
- package/esm2020/lib/components/version-changed/version-changed.module.mjs +39 -0
- package/esm2020/lib/core/decorators/index.mjs +5 -0
- package/esm2020/lib/core/decorators/monkeyecx-charts-decorators.mjs +40 -0
- package/esm2020/lib/core/decorators/monkeyecx-decorators.mjs +111 -0
- package/esm2020/lib/core/decorators/monkeyecx-download-decorators.mjs +26 -0
- package/esm2020/lib/core/decorators/monkeyecx-upload-decorators.mjs +26 -0
- package/esm2020/lib/core/directives/index.mjs +13 -0
- package/esm2020/lib/core/directives/monkeyecx-directives-module.mjs +73 -0
- package/esm2020/lib/core/directives/monkeyecx-drag-drop.mjs +57 -0
- package/esm2020/lib/core/directives/monkeyecx-feature-by-program-directive.mjs +50 -0
- package/esm2020/lib/core/directives/monkeyecx-feature-directive.mjs +68 -0
- package/esm2020/lib/core/directives/monkeyecx-format-currency.mjs +44 -0
- package/esm2020/lib/core/directives/monkeyecx-format-upper.mjs +67 -0
- package/esm2020/lib/core/directives/monkeyecx-only-alpha-numeric-directive.mjs +28 -0
- package/esm2020/lib/core/directives/monkeyecx-only-number-directive.mjs +28 -0
- package/esm2020/lib/core/directives/monkeyecx-popover-options.directive.mjs +39 -0
- package/esm2020/lib/core/directives/monkeyecx-popover.directive.mjs +212 -0
- package/esm2020/lib/core/directives/monkeyecx-security-directive.mjs +69 -0
- package/esm2020/lib/core/directives/monkeyecx-tooltip-directive.mjs +123 -0
- package/esm2020/lib/core/index.mjs +10 -0
- package/esm2020/lib/core/interceptors/index.mjs +6 -0
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-error.interceptor.mjs +39 -0
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-header.interceptor.mjs +60 -0
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-interceptor.module.mjs +47 -0
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-loading-in-progress.interceptor.mjs +43 -0
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-queue.interceptor.mjs +37 -0
- package/esm2020/lib/core/interfaces/index.mjs +30 -0
- package/esm2020/lib/core/interfaces/monkeyecx-auth-credentials.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-company-pendencies.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-company.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-config-boostrap.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-config.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-country-security.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-error-response.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-filter.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-handled-error-response.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-header-credentials.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-intercom-options.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-me-credentials.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-navigation.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-program.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-releases.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-request-in-progress.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-request-paged.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-response-links.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-response-paged.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-saved-state.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-scroll-options.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-service-credentials.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-support-options.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-token-credentials.mjs +2 -0
- package/esm2020/lib/core/interfaces/monkeyecx-translate-options.mjs +2 -0
- package/esm2020/lib/core/interfaces/request-download/index.mjs +4 -0
- package/esm2020/lib/core/interfaces/request-download/monkeyecx-request-download.mjs +2 -0
- package/esm2020/lib/core/interfaces/request-download/monkeyecx-request-downloaded.mjs +2 -0
- package/esm2020/lib/core/interfaces/request-download/monkeyecx-request-item-download.mjs +2 -0
- package/esm2020/lib/core/interfaces/request-queue/index.mjs +4 -0
- package/esm2020/lib/core/interfaces/request-queue/monkeyecx-request-item-queue.mjs +2 -0
- package/esm2020/lib/core/interfaces/request-queue/monkeyecx-request-progress-queue.mjs +2 -0
- package/esm2020/lib/core/interfaces/request-queue/monkeyecx-request-queue.mjs +2 -0
- package/esm2020/lib/core/interfaces/request-upload/index.mjs +3 -0
- package/esm2020/lib/core/interfaces/request-upload/monkeyecx-request-item-upload.mjs +2 -0
- package/esm2020/lib/core/interfaces/request-upload/monkeyecx-request-upload.mjs +2 -0
- package/esm2020/lib/core/interfaces/schedules/index.mjs +2 -0
- package/esm2020/lib/core/interfaces/schedules/monkeyecx-request-schedule.mjs +2 -0
- package/esm2020/lib/core/model/index.mjs +2 -0
- package/esm2020/lib/core/model/monkeyecx-model.mjs +25 -0
- package/esm2020/lib/core/pipes/index.mjs +20 -0
- package/esm2020/lib/core/pipes/monkeyecx-display-first-name.mjs +19 -0
- package/esm2020/lib/core/pipes/monkeyecx-display-initials.mjs +21 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-address.mjs +20 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-beautify-json.mjs +38 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-currency.mjs +27 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-date-group.mjs +45 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-date-timelapse.mjs +32 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-date-unix-timelapse.mjs +36 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-document.mjs +19 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-number.mjs +20 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-phone.mjs +42 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-size.mjs +20 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-tax.mjs +23 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-type-document.mjs +19 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-value.mjs +19 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-zipcode.mjs +19 -0
- package/esm2020/lib/core/pipes/monkeyecx-pipes.module.mjs +107 -0
- package/esm2020/lib/core/pipes/monkeyecx-text-truncate.mjs +23 -0
- package/esm2020/lib/core/pipes/monkeyecx-truncate-qtd.mjs +16 -0
- package/esm2020/lib/core/services/auth/index.mjs +5 -0
- package/esm2020/lib/core/services/auth/monkeyecx-auth-guard-company.service.mjs +28 -0
- package/esm2020/lib/core/services/auth/monkeyecx-auth-guard-login.service.mjs +27 -0
- package/esm2020/lib/core/services/auth/monkeyecx-auth-guard.service.mjs +26 -0
- package/esm2020/lib/core/services/auth/monkeyecx-authentication.service.mjs +69 -0
- package/esm2020/lib/core/services/commons/index.mjs +2 -0
- package/esm2020/lib/core/services/commons/monkeyecx-commons.service.mjs +405 -0
- package/esm2020/lib/core/services/config/monkeyecx-alerts-config.service.mjs +40 -0
- package/esm2020/lib/core/services/config/monkeyecx-config.module.mjs +28 -0
- package/esm2020/lib/core/services/config/monkeyecx-config.service.mjs +111 -0
- package/esm2020/lib/core/services/config/monkeyecx-error-config.service.mjs +85 -0
- package/esm2020/lib/core/services/config/monkeyecx-feature-toggle.service.mjs +67 -0
- package/esm2020/lib/core/services/config/monkeyecx-ga-config.service.mjs +57 -0
- package/esm2020/lib/core/services/config/monkeyecx-i18n-config.service.mjs +92 -0
- package/esm2020/lib/core/services/config/monkeyecx-logs-config.service.mjs +34 -0
- package/esm2020/lib/core/services/config/monkeyecx-maintenance-config.service.mjs +37 -0
- package/esm2020/lib/core/services/config/monkeyecx-security-console-config.service.mjs +42 -0
- package/esm2020/lib/core/services/config/monkeyecx-service-worker-config.service.mjs +53 -0
- package/esm2020/lib/core/services/error/index.mjs +5 -0
- package/esm2020/lib/core/services/error/monkeyecx-error-handling.module.mjs +27 -0
- package/esm2020/lib/core/services/error/monkeyecx-error-handling.service.mjs +37 -0
- package/esm2020/lib/core/services/error/monkeyecx-http-error-handling.service.mjs +135 -0
- package/esm2020/lib/core/services/error/monkeyecx-others-errors-handling.service.mjs +29 -0
- package/esm2020/lib/core/services/index.mjs +23 -0
- package/esm2020/lib/core/services/logged/index.mjs +2 -0
- package/esm2020/lib/core/services/logged/monkeyecx-logged-handling.service.mjs +40 -0
- package/esm2020/lib/core/services/monkeyecx-handling.service.mjs +50 -0
- package/esm2020/lib/core/services/monkeyecx-service.service.mjs +104 -0
- package/esm2020/lib/core/services/pagination/index.mjs +2 -0
- package/esm2020/lib/core/services/pagination/monkeyecx-pagination.service.mjs +29 -0
- package/esm2020/lib/core/services/request-download/index.mjs +3 -0
- package/esm2020/lib/core/services/request-download/monkeyecx-request-download-handling.service.mjs +93 -0
- package/esm2020/lib/core/services/request-download/monkeyecx-request-downloaded-handling.service.mjs +61 -0
- package/esm2020/lib/core/services/request-paged/index.mjs +2 -0
- package/esm2020/lib/core/services/request-paged/monkeyecx-request-request-paged-handling.mjs +42 -0
- package/esm2020/lib/core/services/request-queue/index.mjs +3 -0
- package/esm2020/lib/core/services/request-queue/monkeyecx-request-queue-handling.service.mjs +114 -0
- package/esm2020/lib/core/services/request-queue/monkeyecx-request-queue-modal-handling.service.mjs +119 -0
- package/esm2020/lib/core/services/routes/index.mjs +2 -0
- package/esm2020/lib/core/services/routes/monkeyecx-dicovery-params.service.mjs +54 -0
- package/esm2020/lib/core/services/schedules/index.mjs +2 -0
- package/esm2020/lib/core/services/schedules/monkeyecx-request-schedule.service.mjs +188 -0
- package/esm2020/lib/core/services/storage/index.mjs +3 -0
- package/esm2020/lib/core/services/storage/monkeyecx-cookie-storage.service.mjs +32 -0
- package/esm2020/lib/core/services/storage/monkeyecx-token-storage.service.mjs +127 -0
- package/esm2020/lib/core/specification-search/index.mjs +2 -0
- package/esm2020/lib/core/specification-search/monkeyecx-specification-search.mjs +108 -0
- package/esm2020/lib/core/utils/decorators-utils.mjs +40 -0
- package/esm2020/lib/core/utils/index.mjs +8 -0
- package/esm2020/lib/core/utils/statics.mjs +38 -0
- package/esm2020/lib/core/utils/utils.mjs +221 -0
- package/esm2020/lib/core/utils/validate-utils.mjs +206 -0
- package/esm2020/lib/core/utils/validators.mjs +208 -0
- package/esm2020/lib/monkey-front-core.module.mjs +64 -0
- package/esm2020/monkey-front-core.mjs +5 -0
- package/esm2020/public-api.mjs +7 -0
- package/fesm2015/monkey-front-core.mjs +5123 -0
- package/fesm2015/monkey-front-core.mjs.map +1 -0
- package/fesm2020/monkey-front-core.mjs +5182 -0
- package/fesm2020/monkey-front-core.mjs.map +1 -0
- package/lib/components/alerts/alerts.component.d.ts +16 -0
- package/lib/components/alerts/alerts.module.d.ts +10 -0
- package/{src/lib/components/alerts/index.ts → lib/components/alerts/index.d.ts} +2 -2
- package/lib/components/closed-to-maintenance/closed-to-maintenance.component.d.ts +13 -0
- package/lib/components/closed-to-maintenance/closed-to-maintenance.module.d.ts +11 -0
- package/{src/lib/components/closed-to-maintenance/index.ts → lib/components/closed-to-maintenance/index.d.ts} +2 -2
- package/{src/lib/components/index.ts → lib/components/index.d.ts} +4 -4
- package/{src/lib/components/progress-bar/index.ts → lib/components/progress-bar/index.d.ts} +3 -3
- package/lib/components/progress-bar/progress-bar.component.d.ts +11 -0
- package/lib/components/progress-bar/progress-bar.module.d.ts +8 -0
- package/lib/components/progress-bar/progress-bar.service.d.ts +14 -0
- package/{src/lib/components/version-changed/index.ts → lib/components/version-changed/index.d.ts} +2 -2
- package/lib/components/version-changed/version-changed.component.d.ts +9 -0
- package/lib/components/version-changed/version-changed.module.d.ts +10 -0
- package/{src/lib/core/decorators/index.ts → lib/core/decorators/index.d.ts} +4 -4
- package/lib/core/decorators/monkeyecx-charts-decorators.d.ts +1 -0
- package/lib/core/decorators/monkeyecx-decorators.d.ts +7 -0
- package/lib/core/decorators/monkeyecx-download-decorators.d.ts +2 -0
- package/lib/core/decorators/monkeyecx-upload-decorators.d.ts +2 -0
- package/{src/lib/core/directives/index.ts → lib/core/directives/index.d.ts} +12 -12
- package/lib/core/directives/monkeyecx-directives-module.d.ts +19 -0
- package/lib/core/directives/monkeyecx-drag-drop.d.ts +12 -0
- package/lib/core/directives/monkeyecx-feature-by-program-directive.d.ts +15 -0
- package/lib/core/directives/monkeyecx-feature-directive.d.ts +17 -0
- package/lib/core/directives/monkeyecx-format-currency.d.ts +16 -0
- package/lib/core/directives/monkeyecx-format-upper.d.ts +18 -0
- package/lib/core/directives/monkeyecx-only-alpha-numeric-directive.d.ts +9 -0
- package/lib/core/directives/monkeyecx-only-number-directive.d.ts +9 -0
- package/lib/core/directives/monkeyecx-popover-options.directive.d.ts +19 -0
- package/lib/core/directives/monkeyecx-popover.directive.d.ts +43 -0
- package/lib/core/directives/monkeyecx-security-directive.d.ts +17 -0
- package/lib/core/directives/monkeyecx-tooltip-directive.d.ts +23 -0
- package/{src/lib/core/index.ts → lib/core/index.d.ts} +9 -9
- package/{src/lib/core/interceptors/index.ts → lib/core/interceptors/index.d.ts} +5 -5
- package/lib/core/interceptors/monkeyecx-http-config-error.interceptor.d.ts +17 -0
- package/lib/core/interceptors/monkeyecx-http-config-header.interceptor.d.ts +16 -0
- package/lib/core/interceptors/monkeyecx-http-config-interceptor.module.d.ts +9 -0
- package/lib/core/interceptors/monkeyecx-http-config-loading-in-progress.interceptor.d.ts +12 -0
- package/lib/core/interceptors/monkeyecx-http-config-queue.interceptor.d.ts +14 -0
- package/{src/lib/core/interfaces/index.ts → lib/core/interfaces/index.d.ts} +29 -29
- package/lib/core/interfaces/monkeyecx-auth-credentials.d.ts +15 -0
- package/{src/lib/core/interfaces/monkeyecx-company-pendencies.ts → lib/core/interfaces/monkeyecx-company-pendencies.d.ts} +14 -16
- package/lib/core/interfaces/monkeyecx-company.d.ts +10 -0
- package/lib/core/interfaces/monkeyecx-config-boostrap.d.ts +14 -0
- package/lib/core/interfaces/monkeyecx-config.d.ts +125 -0
- package/lib/core/interfaces/monkeyecx-country-security.d.ts +4 -0
- package/lib/core/interfaces/monkeyecx-error-response.d.ts +5 -0
- package/lib/core/interfaces/monkeyecx-filter.d.ts +24 -0
- package/lib/core/interfaces/monkeyecx-handled-error-response.d.ts +10 -0
- package/lib/core/interfaces/monkeyecx-header-credentials.d.ts +4 -0
- package/{src/lib/core/interfaces/monkeyecx-intercom-options.ts → lib/core/interfaces/monkeyecx-intercom-options.d.ts} +4 -4
- package/lib/core/interfaces/monkeyecx-me-credentials.d.ts +22 -0
- package/lib/core/interfaces/monkeyecx-navigation.d.ts +27 -0
- package/lib/core/interfaces/monkeyecx-program.d.ts +10 -0
- package/lib/core/interfaces/monkeyecx-releases.d.ts +9 -0
- package/{src/lib/core/interfaces/monkeyecx-request-in-progress.ts → lib/core/interfaces/monkeyecx-request-in-progress.d.ts} +3 -3
- package/lib/core/interfaces/monkeyecx-request-paged.d.ts +23 -0
- package/lib/core/interfaces/monkeyecx-response-links.d.ts +11 -0
- package/lib/core/interfaces/monkeyecx-response-paged.d.ts +6 -0
- package/lib/core/interfaces/monkeyecx-saved-state.d.ts +5 -0
- package/{src/lib/core/interfaces/monkeyecx-scroll-options.ts → lib/core/interfaces/monkeyecx-scroll-options.d.ts} +5 -6
- package/{src/lib/core/interfaces/monkeyecx-service-credentials.ts → lib/core/interfaces/monkeyecx-service-credentials.d.ts} +12 -13
- package/{src/lib/core/interfaces/monkeyecx-support-options.ts → lib/core/interfaces/monkeyecx-support-options.d.ts} +4 -4
- package/lib/core/interfaces/monkeyecx-token-credentials.d.ts +20 -0
- package/lib/core/interfaces/monkeyecx-translate-options.d.ts +4 -0
- package/{src/lib/core/interfaces/request-download/index.ts → lib/core/interfaces/request-download/index.d.ts} +3 -3
- package/lib/core/interfaces/request-download/monkeyecx-request-download.d.ts +10 -0
- package/lib/core/interfaces/request-download/monkeyecx-request-downloaded.d.ts +7 -0
- package/lib/core/interfaces/request-download/monkeyecx-request-item-download.d.ts +7 -0
- package/{src/lib/core/interfaces/request-queue/index.ts → lib/core/interfaces/request-queue/index.d.ts} +3 -3
- package/lib/core/interfaces/request-queue/monkeyecx-request-item-queue.d.ts +7 -0
- package/lib/core/interfaces/request-queue/monkeyecx-request-progress-queue.d.ts +6 -0
- package/{src/lib/core/interfaces/request-queue/monkeyecx-request-queue.ts → lib/core/interfaces/request-queue/monkeyecx-request-queue.d.ts} +8 -9
- package/{src/lib/core/interfaces/request-upload/index.ts → lib/core/interfaces/request-upload/index.d.ts} +2 -2
- package/lib/core/interfaces/request-upload/monkeyecx-request-item-upload.d.ts +5 -0
- package/lib/core/interfaces/request-upload/monkeyecx-request-upload.d.ts +10 -0
- package/{src/lib/core/interfaces/schedules/index.ts → lib/core/interfaces/schedules/index.d.ts} +1 -1
- package/lib/core/interfaces/schedules/monkeyecx-request-schedule.d.ts +13 -0
- package/{src/lib/core/model/index.ts → lib/core/model/index.d.ts} +1 -1
- package/lib/core/model/monkeyecx-model.d.ts +13 -0
- package/{src/lib/core/pipes/index.ts → lib/core/pipes/index.d.ts} +19 -19
- package/lib/core/pipes/monkeyecx-display-first-name.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-display-initials.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-format-address.d.ts +14 -0
- package/lib/core/pipes/monkeyecx-format-beautify-json.d.ts +8 -0
- package/lib/core/pipes/monkeyecx-format-currency.d.ts +11 -0
- package/lib/core/pipes/monkeyecx-format-date-group.d.ts +11 -0
- package/lib/core/pipes/monkeyecx-format-date-timelapse.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-format-date-unix-timelapse.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-format-document.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-format-number.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-format-phone.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-format-size.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-format-tax.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-format-type-document.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-format-value.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-format-zipcode.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-pipes.module.d.ts +24 -0
- package/lib/core/pipes/monkeyecx-text-truncate.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-truncate-qtd.d.ts +7 -0
- package/{src/lib/core/services/auth/index.ts → lib/core/services/auth/index.d.ts} +4 -4
- package/lib/core/services/auth/monkeyecx-auth-guard-company.service.d.ts +11 -0
- package/lib/core/services/auth/monkeyecx-auth-guard-login.service.d.ts +11 -0
- package/lib/core/services/auth/monkeyecx-auth-guard.service.d.ts +11 -0
- package/lib/core/services/auth/monkeyecx-authentication.service.d.ts +30 -0
- package/{src/lib/core/services/commons/index.ts → lib/core/services/commons/index.d.ts} +1 -1
- package/lib/core/services/commons/monkeyecx-commons.service.d.ts +124 -0
- package/lib/core/services/config/monkeyecx-alerts-config.service.d.ts +11 -0
- package/lib/core/services/config/monkeyecx-config.module.d.ts +9 -0
- package/lib/core/services/config/monkeyecx-config.service.d.ts +36 -0
- package/lib/core/services/config/monkeyecx-error-config.service.d.ts +8 -0
- package/lib/core/services/config/monkeyecx-feature-toggle.service.d.ts +16 -0
- package/lib/core/services/config/monkeyecx-ga-config.service.d.ts +10 -0
- package/lib/core/services/config/monkeyecx-i18n-config.service.d.ts +16 -0
- package/lib/core/services/config/monkeyecx-logs-config.service.d.ts +7 -0
- package/lib/core/services/config/monkeyecx-maintenance-config.service.d.ts +13 -0
- package/lib/core/services/config/monkeyecx-security-console-config.service.d.ts +11 -0
- package/lib/core/services/config/monkeyecx-service-worker-config.service.d.ts +16 -0
- package/{src/lib/core/services/error/index.ts → lib/core/services/error/index.d.ts} +4 -4
- package/lib/core/services/error/monkeyecx-error-handling.module.d.ts +9 -0
- package/lib/core/services/error/monkeyecx-error-handling.service.d.ts +9 -0
- package/lib/core/services/error/monkeyecx-http-error-handling.service.d.ts +26 -0
- package/lib/core/services/error/monkeyecx-others-errors-handling.service.d.ts +9 -0
- package/{src/lib/core/services/index.ts → lib/core/services/index.d.ts} +22 -22
- package/{src/lib/core/services/logged/index.ts → lib/core/services/logged/index.d.ts} +1 -1
- package/lib/core/services/logged/monkeyecx-logged-handling.service.d.ts +14 -0
- package/lib/core/services/monkeyecx-handling.service.d.ts +22 -0
- package/lib/core/services/monkeyecx-service.service.d.ts +18 -0
- package/{src/lib/core/services/pagination/index.ts → lib/core/services/pagination/index.d.ts} +1 -1
- package/lib/core/services/pagination/monkeyecx-pagination.service.d.ts +9 -0
- package/{src/lib/core/services/request-download/index.ts → lib/core/services/request-download/index.d.ts} +2 -2
- package/lib/core/services/request-download/monkeyecx-request-download-handling.service.d.ts +18 -0
- package/lib/core/services/request-download/monkeyecx-request-downloaded-handling.service.d.ts +16 -0
- package/{src/lib/core/services/request-paged/index.ts → lib/core/services/request-paged/index.d.ts} +1 -1
- package/lib/core/services/request-paged/monkeyecx-request-request-paged-handling.d.ts +11 -0
- package/{src/lib/core/services/request-queue/index.ts → lib/core/services/request-queue/index.d.ts} +2 -2
- package/lib/core/services/request-queue/monkeyecx-request-queue-handling.service.d.ts +21 -0
- package/lib/core/services/request-queue/monkeyecx-request-queue-modal-handling.service.d.ts +23 -0
- package/{src/lib/core/services/routes/index.ts → lib/core/services/routes/index.d.ts} +1 -1
- package/lib/core/services/routes/monkeyecx-dicovery-params.service.d.ts +13 -0
- package/{src/lib/core/services/schedules/index.ts → lib/core/services/schedules/index.d.ts} +1 -1
- package/lib/core/services/schedules/monkeyecx-request-schedule.service.d.ts +47 -0
- package/{src/lib/core/services/storage/index.ts → lib/core/services/storage/index.d.ts} +2 -2
- package/lib/core/services/storage/monkeyecx-cookie-storage.service.d.ts +11 -0
- package/lib/core/services/storage/monkeyecx-token-storage.service.d.ts +29 -0
- package/{src/lib/core/specification-search/index.ts → lib/core/specification-search/index.d.ts} +1 -1
- package/lib/core/specification-search/monkeyecx-specification-search.d.ts +20 -0
- package/lib/core/utils/decorators-utils.d.ts +5 -0
- package/{src/lib/core/utils/index.ts → lib/core/utils/index.d.ts} +6 -8
- package/lib/core/utils/statics.d.ts +28 -0
- package/lib/core/utils/utils.d.ts +22 -0
- package/lib/core/utils/validate-utils.d.ts +66 -0
- package/lib/core/utils/validators.d.ts +29 -0
- package/lib/monkey-front-core.module.d.ts +17 -0
- package/monkey-front-core-0.0.239.tgz +0 -0
- package/monkey-front-core.d.ts +5 -0
- package/package.json +24 -4
- package/{src/public-api.ts → public-api.d.ts} +3 -6
- package/karma.conf.js +0 -44
- package/monkey-front-core-0.0.238.tgz +0 -0
- package/ng-package.json +0 -8
- package/src/lib/components/alerts/alerts.component.html +0 -18
- package/src/lib/components/alerts/alerts.component.scss +0 -71
- package/src/lib/components/alerts/alerts.component.ts +0 -36
- package/src/lib/components/alerts/alerts.module.ts +0 -12
- package/src/lib/components/closed-to-maintenance/closed-to-maintenance.component.html +0 -25
- package/src/lib/components/closed-to-maintenance/closed-to-maintenance.component.scss +0 -51
- package/src/lib/components/closed-to-maintenance/closed-to-maintenance.component.ts +0 -25
- package/src/lib/components/closed-to-maintenance/closed-to-maintenance.module.ts +0 -26
- package/src/lib/components/progress-bar/progress-bar.component.html +0 -3
- package/src/lib/components/progress-bar/progress-bar.component.scss +0 -6
- package/src/lib/components/progress-bar/progress-bar.component.ts +0 -22
- package/src/lib/components/progress-bar/progress-bar.module.ts +0 -10
- package/src/lib/components/progress-bar/progress-bar.service.ts +0 -61
- package/src/lib/components/version-changed/version-changed.component.html +0 -18
- package/src/lib/components/version-changed/version-changed.component.scss +0 -52
- package/src/lib/components/version-changed/version-changed.component.ts +0 -18
- package/src/lib/components/version-changed/version-changed.module.ts +0 -24
- package/src/lib/core/decorators/monkeyecx-charts-decorators.ts +0 -46
- package/src/lib/core/decorators/monkeyecx-decorators.ts +0 -159
- package/src/lib/core/decorators/monkeyecx-download-decorators.ts +0 -39
- package/src/lib/core/decorators/monkeyecx-upload-decorators.ts +0 -39
- package/src/lib/core/directives/monkeyecx-directives-module.ts +0 -45
- package/src/lib/core/directives/monkeyecx-drag-drop.ts +0 -40
- package/src/lib/core/directives/monkeyecx-feature-by-program-directive.ts +0 -53
- package/src/lib/core/directives/monkeyecx-feature-directive.ts +0 -72
- package/src/lib/core/directives/monkeyecx-format-currency.ts +0 -44
- package/src/lib/core/directives/monkeyecx-format-upper.ts +0 -54
- package/src/lib/core/directives/monkeyecx-only-alpha-numeric-directive.ts +0 -21
- package/src/lib/core/directives/monkeyecx-only-number-directive.ts +0 -21
- package/src/lib/core/directives/monkeyecx-popover-options.directive.ts +0 -52
- package/src/lib/core/directives/monkeyecx-popover.directive.ts +0 -235
- package/src/lib/core/directives/monkeyecx-security-directive.ts +0 -68
- package/src/lib/core/directives/monkeyecx-tooltip-directive.ts +0 -131
- package/src/lib/core/interceptors/monkeyecx-http-config-error.interceptor.ts +0 -58
- package/src/lib/core/interceptors/monkeyecx-http-config-header.interceptor.ts +0 -78
- package/src/lib/core/interceptors/monkeyecx-http-config-interceptor.module.ts +0 -40
- package/src/lib/core/interceptors/monkeyecx-http-config-loading-in-progress.interceptor.ts +0 -47
- package/src/lib/core/interceptors/monkeyecx-http-config-queue.interceptor.ts +0 -44
- package/src/lib/core/interfaces/monkeyecx-auth-credentials.ts +0 -16
- package/src/lib/core/interfaces/monkeyecx-company.ts +0 -10
- package/src/lib/core/interfaces/monkeyecx-config-boostrap.ts +0 -14
- package/src/lib/core/interfaces/monkeyecx-config.ts +0 -139
- package/src/lib/core/interfaces/monkeyecx-country-security.ts +0 -4
- package/src/lib/core/interfaces/monkeyecx-error-response.ts +0 -5
- package/src/lib/core/interfaces/monkeyecx-filter.ts +0 -26
- package/src/lib/core/interfaces/monkeyecx-handled-error-response.ts +0 -11
- package/src/lib/core/interfaces/monkeyecx-header-credentials.ts +0 -4
- package/src/lib/core/interfaces/monkeyecx-me-credentials.ts +0 -23
- package/src/lib/core/interfaces/monkeyecx-navigation.ts +0 -28
- package/src/lib/core/interfaces/monkeyecx-program.ts +0 -10
- package/src/lib/core/interfaces/monkeyecx-releases.ts +0 -9
- package/src/lib/core/interfaces/monkeyecx-request-paged.ts +0 -27
- package/src/lib/core/interfaces/monkeyecx-response-links.ts +0 -11
- package/src/lib/core/interfaces/monkeyecx-response-paged.ts +0 -6
- package/src/lib/core/interfaces/monkeyecx-saved-state.ts +0 -5
- package/src/lib/core/interfaces/monkeyecx-token-credentials.ts +0 -20
- package/src/lib/core/interfaces/monkeyecx-translate-options.ts +0 -4
- package/src/lib/core/interfaces/request-download/monkeyecx-request-download.ts +0 -11
- package/src/lib/core/interfaces/request-download/monkeyecx-request-downloaded.ts +0 -8
- package/src/lib/core/interfaces/request-download/monkeyecx-request-item-download.ts +0 -7
- package/src/lib/core/interfaces/request-queue/monkeyecx-request-item-queue.ts +0 -7
- package/src/lib/core/interfaces/request-queue/monkeyecx-request-progress-queue.ts +0 -6
- package/src/lib/core/interfaces/request-upload/monkeyecx-request-item-upload.ts +0 -5
- package/src/lib/core/interfaces/request-upload/monkeyecx-request-upload.ts +0 -11
- package/src/lib/core/interfaces/schedules/monkeyecx-request-schedule.ts +0 -14
- package/src/lib/core/model/monkeyecx-model.ts +0 -38
- package/src/lib/core/pipes/monkeyecx-display-first-name.ts +0 -12
- package/src/lib/core/pipes/monkeyecx-display-initials.ts +0 -14
- package/src/lib/core/pipes/monkeyecx-display-support-phone.ts +0 -31
- package/src/lib/core/pipes/monkeyecx-format-address.ts +0 -27
- package/src/lib/core/pipes/monkeyecx-format-beautify-json.ts +0 -35
- package/src/lib/core/pipes/monkeyecx-format-currency.ts +0 -20
- package/src/lib/core/pipes/monkeyecx-format-date-group.ts +0 -40
- package/src/lib/core/pipes/monkeyecx-format-date-timelapse.ts +0 -25
- package/src/lib/core/pipes/monkeyecx-format-date-unix-timelapse.ts +0 -31
- package/src/lib/core/pipes/monkeyecx-format-document.ts +0 -12
- package/src/lib/core/pipes/monkeyecx-format-number.ts +0 -14
- package/src/lib/core/pipes/monkeyecx-format-phone.ts +0 -32
- package/src/lib/core/pipes/monkeyecx-format-size.ts +0 -13
- package/src/lib/core/pipes/monkeyecx-format-tax.ts +0 -16
- package/src/lib/core/pipes/monkeyecx-format-type-document.ts +0 -12
- package/src/lib/core/pipes/monkeyecx-format-value.ts +0 -12
- package/src/lib/core/pipes/monkeyecx-format-zipcode.ts +0 -12
- package/src/lib/core/pipes/monkeyecx-pipes.module.ts +0 -65
- package/src/lib/core/pipes/monkeyecx-text-truncate.ts +0 -17
- package/src/lib/core/pipes/monkeyecx-truncate-qtd.ts +0 -10
- package/src/lib/core/services/auth/monkeyecx-auth-guard-company.service.ts +0 -27
- package/src/lib/core/services/auth/monkeyecx-auth-guard-login.service.ts +0 -23
- package/src/lib/core/services/auth/monkeyecx-auth-guard.service.ts +0 -25
- package/src/lib/core/services/auth/monkeyecx-authentication.service.ts +0 -87
- package/src/lib/core/services/commons/monkeyecx-commons.service.ts +0 -557
- package/src/lib/core/services/config/index.ts +0 -9
- package/src/lib/core/services/config/monkeyecx-alerts-config.service.ts +0 -37
- package/src/lib/core/services/config/monkeyecx-config.module.ts +0 -23
- package/src/lib/core/services/config/monkeyecx-config.service.ts +0 -151
- package/src/lib/core/services/config/monkeyecx-error-config.service.ts +0 -92
- package/src/lib/core/services/config/monkeyecx-feature-toggle.service.ts +0 -71
- package/src/lib/core/services/config/monkeyecx-ga-config.service.ts +0 -56
- package/src/lib/core/services/config/monkeyecx-i18n-config.service.ts +0 -95
- package/src/lib/core/services/config/monkeyecx-logs-config.service.ts +0 -34
- package/src/lib/core/services/config/monkeyecx-maintenance-config.service.ts +0 -33
- package/src/lib/core/services/config/monkeyecx-security-console-config.service.ts +0 -40
- package/src/lib/core/services/config/monkeyecx-service-worker-config.service.ts +0 -50
- package/src/lib/core/services/error/monkeyecx-error-handling.module.ts +0 -20
- package/src/lib/core/services/error/monkeyecx-error-handling.service.ts +0 -33
- package/src/lib/core/services/error/monkeyecx-http-error-handling.service.ts +0 -160
- package/src/lib/core/services/error/monkeyecx-others-errors-handling.service.ts +0 -24
- package/src/lib/core/services/logged/monkeyecx-logged-handling.service.ts +0 -42
- package/src/lib/core/services/monkeyecx-handling.service.ts +0 -58
- package/src/lib/core/services/monkeyecx-service.service.ts +0 -116
- package/src/lib/core/services/pagination/monkeyecx-pagination.service.ts +0 -27
- package/src/lib/core/services/request-download/monkeyecx-request-download-handling.service.ts +0 -100
- package/src/lib/core/services/request-download/monkeyecx-request-downloaded-handling.service.ts +0 -65
- package/src/lib/core/services/request-paged/monkeyecx-request-request-paged-handling.ts +0 -58
- package/src/lib/core/services/request-queue/monkeyecx-request-queue-handling.service.ts +0 -125
- package/src/lib/core/services/request-queue/monkeyecx-request-queue-modal-handling.service.ts +0 -136
- package/src/lib/core/services/routes/monkeyecx-dicovery-params.service.ts +0 -54
- package/src/lib/core/services/schedules/monkeyecx-request-schedule.service.ts +0 -224
- package/src/lib/core/services/storage/monkeyecx-cookie-storage.service.ts +0 -28
- package/src/lib/core/services/storage/monkeyecx-token-storage.service.ts +0 -151
- package/src/lib/core/specification-search/monkeyecx-specification-search.ts +0 -111
- package/src/lib/core/utils/decorators-utils.ts +0 -56
- package/src/lib/core/utils/statics.ts +0 -36
- package/src/lib/core/utils/utils.ts +0 -237
- package/src/lib/core/utils/validate-utils.ts +0 -221
- package/src/lib/core/utils/validators.ts +0 -251
- package/src/lib/monkey-front-core.module.ts +0 -37
- package/src/test.ts +0 -26
- package/tsconfig.lib.json +0 -15
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -17
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export * from './monkeyecx-display-first-name';
|
|
2
|
-
export * from './monkeyecx-display-initials';
|
|
3
|
-
export * from './monkeyecx-format-address';
|
|
4
|
-
export * from './monkeyecx-format-beautify-json';
|
|
5
|
-
export * from './monkeyecx-format-currency';
|
|
6
|
-
export * from './monkeyecx-format-date-timelapse';
|
|
7
|
-
export * from './monkeyecx-format-date-unix-timelapse';
|
|
8
|
-
export * from './monkeyecx-format-date-group';
|
|
9
|
-
export * from './monkeyecx-format-document';
|
|
10
|
-
export * from './monkeyecx-format-number';
|
|
11
|
-
export * from './monkeyecx-format-phone';
|
|
12
|
-
export * from './monkeyecx-format-size';
|
|
13
|
-
export * from './monkeyecx-format-tax';
|
|
14
|
-
export * from './monkeyecx-format-type-document';
|
|
15
|
-
export * from './monkeyecx-format-value';
|
|
16
|
-
export * from './monkeyecx-format-zipcode';
|
|
17
|
-
export * from './monkeyecx-pipes.module';
|
|
18
|
-
export * from './monkeyecx-text-truncate';
|
|
19
|
-
export * from './monkeyecx-truncate-qtd';
|
|
1
|
+
export * from './monkeyecx-display-first-name';
|
|
2
|
+
export * from './monkeyecx-display-initials';
|
|
3
|
+
export * from './monkeyecx-format-address';
|
|
4
|
+
export * from './monkeyecx-format-beautify-json';
|
|
5
|
+
export * from './monkeyecx-format-currency';
|
|
6
|
+
export * from './monkeyecx-format-date-timelapse';
|
|
7
|
+
export * from './monkeyecx-format-date-unix-timelapse';
|
|
8
|
+
export * from './monkeyecx-format-date-group';
|
|
9
|
+
export * from './monkeyecx-format-document';
|
|
10
|
+
export * from './monkeyecx-format-number';
|
|
11
|
+
export * from './monkeyecx-format-phone';
|
|
12
|
+
export * from './monkeyecx-format-size';
|
|
13
|
+
export * from './monkeyecx-format-tax';
|
|
14
|
+
export * from './monkeyecx-format-type-document';
|
|
15
|
+
export * from './monkeyecx-format-value';
|
|
16
|
+
export * from './monkeyecx-format-zipcode';
|
|
17
|
+
export * from './monkeyecx-pipes.module';
|
|
18
|
+
export * from './monkeyecx-text-truncate';
|
|
19
|
+
export * from './monkeyecx-truncate-qtd';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxDisplayFirstNamePipe implements PipeTransform {
|
|
4
|
+
transform(name: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxDisplayFirstNamePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxDisplayFirstNamePipe, "monkeyecxDisplayFirstName">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxDisplayInitialsPipe implements PipeTransform {
|
|
4
|
+
transform(name: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxDisplayInitialsPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxDisplayInitialsPipe, "monkeyecxDisplayInitials">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatAddressPipe implements PipeTransform {
|
|
4
|
+
transform({ zipCode, address, neighborhood, city, state, }: {
|
|
5
|
+
zipCode: string;
|
|
6
|
+
address: string;
|
|
7
|
+
neighborhood: string;
|
|
8
|
+
city: string;
|
|
9
|
+
state: string;
|
|
10
|
+
country: string;
|
|
11
|
+
}): string;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatAddressPipe, never>;
|
|
13
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatAddressPipe, "monkeyecxFormatAddress">;
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatBeaufityJSONPipe implements PipeTransform {
|
|
4
|
+
constructor();
|
|
5
|
+
transform(value: any): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatBeaufityJSONPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatBeaufityJSONPipe, "monkeyecxFormatBeautifyJSON">;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PipeTransform, Injector } from '@angular/core';
|
|
2
|
+
import { CurrencyPipe } from '@angular/common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MonkeyEcxFormatCurrencyPipe implements PipeTransform {
|
|
5
|
+
private injector;
|
|
6
|
+
private currencyPipe;
|
|
7
|
+
constructor(injector: Injector, currencyPipe: CurrencyPipe);
|
|
8
|
+
transform(value: any): string | null;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatCurrencyPipe, never>;
|
|
10
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatCurrencyPipe, "monkeyecxFormatCurrency">;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Injector, PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatDateGroupPipe implements PipeTransform {
|
|
4
|
+
private injector;
|
|
5
|
+
private lang;
|
|
6
|
+
constructor(injector: Injector);
|
|
7
|
+
private format;
|
|
8
|
+
transform(obj: any): string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatDateGroupPipe, never>;
|
|
10
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatDateGroupPipe, "monkeyecxFormatDateGroup">;
|
|
11
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatDateTimelapsePipe implements PipeTransform {
|
|
4
|
+
transform(date: any | Date, showTime?: boolean, useUtc?: boolean, format?: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatDateTimelapsePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatDateTimelapsePipe, "monkeyecxFormatDateTimelapse">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatDateUnixTimelapsePipe implements PipeTransform {
|
|
4
|
+
transform(date: any | Date, showTime?: boolean, useUtc?: boolean, format?: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatDateUnixTimelapsePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatDateUnixTimelapsePipe, "monkeyecxFormatDateUnixTimelapse">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatDocumentPipe implements PipeTransform {
|
|
4
|
+
transform(document: string, withType?: false): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatDocumentPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatDocumentPipe, "monkeyecxFormatDocument">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatNumberPipe implements PipeTransform {
|
|
4
|
+
transform(number: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatNumberPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatNumberPipe, "monkeyecxFormatNumber">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatPhonePipe implements PipeTransform {
|
|
4
|
+
transform(phone: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatPhonePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatPhonePipe, "monkeyecxFormatPhone">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatSizePipe implements PipeTransform {
|
|
4
|
+
transform(size: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatSizePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatSizePipe, "monkeyecxFormatSize">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatTaxPipe implements PipeTransform {
|
|
4
|
+
transform(tax: number, decimalDigits?: number): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatTaxPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatTaxPipe, "monkeyecxFormatTax">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatDocumentTypePipe implements PipeTransform {
|
|
4
|
+
transform(document: string, country?: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatDocumentTypePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatDocumentTypePipe, "monkeyecxFormatDocumentType">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatValue implements PipeTransform {
|
|
4
|
+
transform(number: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatValue, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatValue, "monkeyecxFormatValue">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxFormatZipCodePipe implements PipeTransform {
|
|
4
|
+
transform(zipCode: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFormatZipCodePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxFormatZipCodePipe, "monkeyecxFormatZipCode">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./monkeyecx-display-first-name";
|
|
3
|
+
import * as i2 from "./monkeyecx-display-initials";
|
|
4
|
+
import * as i3 from "./monkeyecx-format-address";
|
|
5
|
+
import * as i4 from "./monkeyecx-format-beautify-json";
|
|
6
|
+
import * as i5 from "./monkeyecx-format-currency";
|
|
7
|
+
import * as i6 from "./monkeyecx-format-date-group";
|
|
8
|
+
import * as i7 from "./monkeyecx-format-date-timelapse";
|
|
9
|
+
import * as i8 from "./monkeyecx-format-date-unix-timelapse";
|
|
10
|
+
import * as i9 from "./monkeyecx-format-document";
|
|
11
|
+
import * as i10 from "./monkeyecx-format-type-document";
|
|
12
|
+
import * as i11 from "./monkeyecx-format-number";
|
|
13
|
+
import * as i12 from "./monkeyecx-format-phone";
|
|
14
|
+
import * as i13 from "./monkeyecx-format-size";
|
|
15
|
+
import * as i14 from "./monkeyecx-format-tax";
|
|
16
|
+
import * as i15 from "./monkeyecx-format-value";
|
|
17
|
+
import * as i16 from "./monkeyecx-format-zipcode";
|
|
18
|
+
import * as i17 from "./monkeyecx-text-truncate";
|
|
19
|
+
import * as i18 from "./monkeyecx-truncate-qtd";
|
|
20
|
+
export declare class MonkeyEcxPipesModule {
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxPipesModule, never>;
|
|
22
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyEcxPipesModule, [typeof i1.MonkeyEcxDisplayFirstNamePipe, typeof i2.MonkeyEcxDisplayInitialsPipe, typeof i3.MonkeyEcxFormatAddressPipe, typeof i4.MonkeyEcxFormatBeaufityJSONPipe, typeof i5.MonkeyEcxFormatCurrencyPipe, typeof i6.MonkeyEcxFormatDateGroupPipe, typeof i7.MonkeyEcxFormatDateTimelapsePipe, typeof i8.MonkeyEcxFormatDateUnixTimelapsePipe, typeof i9.MonkeyEcxFormatDocumentPipe, typeof i10.MonkeyEcxFormatDocumentTypePipe, typeof i11.MonkeyEcxFormatNumberPipe, typeof i12.MonkeyEcxFormatPhonePipe, typeof i13.MonkeyEcxFormatSizePipe, typeof i14.MonkeyEcxFormatTaxPipe, typeof i15.MonkeyEcxFormatValue, typeof i16.MonkeyEcxFormatZipCodePipe, typeof i17.MonkeyEcxTextTruncatePipe, typeof i18.MonkeyEcxTruncateQtdPipe], never, [typeof i1.MonkeyEcxDisplayFirstNamePipe, typeof i2.MonkeyEcxDisplayInitialsPipe, typeof i3.MonkeyEcxFormatAddressPipe, typeof i4.MonkeyEcxFormatBeaufityJSONPipe, typeof i5.MonkeyEcxFormatCurrencyPipe, typeof i6.MonkeyEcxFormatDateGroupPipe, typeof i7.MonkeyEcxFormatDateTimelapsePipe, typeof i8.MonkeyEcxFormatDateUnixTimelapsePipe, typeof i9.MonkeyEcxFormatDocumentPipe, typeof i10.MonkeyEcxFormatDocumentTypePipe, typeof i11.MonkeyEcxFormatNumberPipe, typeof i12.MonkeyEcxFormatPhonePipe, typeof i13.MonkeyEcxFormatSizePipe, typeof i14.MonkeyEcxFormatTaxPipe, typeof i15.MonkeyEcxFormatValue, typeof i16.MonkeyEcxFormatZipCodePipe, typeof i17.MonkeyEcxTextTruncatePipe, typeof i18.MonkeyEcxTruncateQtdPipe]>;
|
|
23
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyEcxPipesModule>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxTextTruncatePipe implements PipeTransform {
|
|
4
|
+
transform(text: string, maxLength?: number): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxTextTruncatePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxTextTruncatePipe, "monkeyecxTextTruncate">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxTruncateQtdPipe implements PipeTransform {
|
|
4
|
+
transform(number: number, threshold: number): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxTruncateQtdPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MonkeyEcxTruncateQtdPipe, "monkeyecxTruncateQtd">;
|
|
7
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './monkeyecx-auth-guard-company.service';
|
|
2
|
-
export * from './monkeyecx-auth-guard-login.service';
|
|
3
|
-
export * from './monkeyecx-auth-guard.service';
|
|
4
|
-
export * from './monkeyecx-authentication.service';
|
|
1
|
+
export * from './monkeyecx-auth-guard-company.service';
|
|
2
|
+
export * from './monkeyecx-auth-guard-login.service';
|
|
3
|
+
export * from './monkeyecx-auth-guard.service';
|
|
4
|
+
export * from './monkeyecx-authentication.service';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CanActivate } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { MonkeyEcxAuthenticationService } from './monkeyecx-authentication.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MonkeyEcxAuthGuardCompany implements CanActivate {
|
|
6
|
+
private monkeyecxAuthenticationService;
|
|
7
|
+
constructor(monkeyecxAuthenticationService: MonkeyEcxAuthenticationService);
|
|
8
|
+
canActivate(): Observable<boolean> | Promise<boolean> | boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxAuthGuardCompany, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxAuthGuardCompany>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CanActivate } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { MonkeyEcxAuthenticationService } from './monkeyecx-authentication.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MonkeyEcxAuthGuardLogin implements CanActivate {
|
|
6
|
+
private monkeyecxAuthenticationService;
|
|
7
|
+
constructor(monkeyecxAuthenticationService: MonkeyEcxAuthenticationService);
|
|
8
|
+
canActivate(): Observable<boolean> | Promise<boolean> | boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxAuthGuardLogin, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxAuthGuardLogin>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CanActivate } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { MonkeyEcxAuthenticationService } from './monkeyecx-authentication.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MonkeyEcxAuthGuard implements CanActivate {
|
|
6
|
+
private monkeyecxAuthenticationService;
|
|
7
|
+
constructor(monkeyecxAuthenticationService: MonkeyEcxAuthenticationService);
|
|
8
|
+
canActivate(): Observable<boolean> | Promise<boolean> | boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxAuthGuard, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxAuthGuard>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { HttpErrorResponse, HttpRequest } from '@angular/common/http';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MonkeyEcxAuthenticationService {
|
|
5
|
+
constructor();
|
|
6
|
+
hadAtLeastOneLogin: () => null;
|
|
7
|
+
redirectApp: () => null;
|
|
8
|
+
redirectLoginWelcomeBack: () => null;
|
|
9
|
+
isAuthorized: () => boolean;
|
|
10
|
+
isCompanyAuthorized: () => boolean;
|
|
11
|
+
isTokenMandatory: (url: string) => boolean;
|
|
12
|
+
getRequestWithHeaders: (request: HttpRequest<any>) => HttpRequest<any> | any;
|
|
13
|
+
getRequestWithHeadersOb: (request: HttpRequest<any>) => Observable<any> | any;
|
|
14
|
+
refreshShouldHappen: (response: HttpErrorResponse) => boolean;
|
|
15
|
+
refreshToken: () => Observable<any> | null;
|
|
16
|
+
init(args: {
|
|
17
|
+
hadAtLeastOneLogin?: any;
|
|
18
|
+
redirectApp?: any;
|
|
19
|
+
redirectLoginWelcomeBack?: any;
|
|
20
|
+
isAuthorized?: any;
|
|
21
|
+
isTokenMandatory?: any;
|
|
22
|
+
isCompanyAuthorized?: any;
|
|
23
|
+
getRequestWithHeaders?: any;
|
|
24
|
+
getRequestWithHeadersOb?: any;
|
|
25
|
+
refreshShouldHappen?: any;
|
|
26
|
+
refreshToken?: any;
|
|
27
|
+
}): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxAuthenticationService, never>;
|
|
29
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxAuthenticationService>;
|
|
30
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './monkeyecx-commons.service';
|
|
1
|
+
export * from './monkeyecx-commons.service';
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { ActivatedRouteSnapshot, Router, RouterStateSnapshot } from '@angular/router';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
|
+
import { MonkeyEcxErrorResponse, MonkeyEcxHandledErrorResponse, MonkeyEcxRequestPaged, MonkeyEcxRequestSchedule, MonkeyEcxResponsePaged, MonkeyEcxResponseLinks, MonkeyEcxTokenCredentials, MonkeyEcxTranslateOptions, MonkeyEcxCountrySecurity, MonkeyEcxSavedState, MonkeyEcxConfig } from '../../interfaces';
|
|
5
|
+
import { MonkeyEcxTokenStorageService } from '../storage/monkeyecx-token-storage.service';
|
|
6
|
+
import { MonkeyEcxRequestScheduleService } from '../schedules/monkeyecx-request-schedule.service';
|
|
7
|
+
import { MonkeyEcxRequestQueueHandlingService } from '../request-queue/monkeyecx-request-queue-handling.service';
|
|
8
|
+
import { MonkeyEcxFeatureToggleService } from '../config/monkeyecx-feature-toggle.service';
|
|
9
|
+
import { MonkeyEcxService } from '../monkeyecx-service.service';
|
|
10
|
+
import { MonkeyEcxPaginationService } from '../pagination';
|
|
11
|
+
export declare class MonkeyEcxCommonsService {
|
|
12
|
+
monkeyecxService?: MonkeyEcxService | undefined;
|
|
13
|
+
tokenStorage?: MonkeyEcxTokenStorageService | undefined;
|
|
14
|
+
otherArgs?: {
|
|
15
|
+
router?: Router | undefined;
|
|
16
|
+
schedule?: {
|
|
17
|
+
service: MonkeyEcxRequestScheduleService;
|
|
18
|
+
options?: {
|
|
19
|
+
clearOnChangeRoute?: boolean | undefined;
|
|
20
|
+
} | undefined;
|
|
21
|
+
} | undefined;
|
|
22
|
+
queue?: {
|
|
23
|
+
service: MonkeyEcxRequestQueueHandlingService;
|
|
24
|
+
} | undefined;
|
|
25
|
+
} | undefined;
|
|
26
|
+
private flagValidator;
|
|
27
|
+
__data$: Observable<any> | null;
|
|
28
|
+
__pagination$: Observable<any> | null;
|
|
29
|
+
__control$: Observable<any> | null;
|
|
30
|
+
__data: any | any[];
|
|
31
|
+
__savedState: MonkeyEcxSavedState | null;
|
|
32
|
+
__params: any | any[];
|
|
33
|
+
__error: MonkeyEcxErrorResponse | null;
|
|
34
|
+
__handledError: MonkeyEcxHandledErrorResponse | null;
|
|
35
|
+
__page: MonkeyEcxResponsePaged | null;
|
|
36
|
+
__links: MonkeyEcxResponseLinks | null;
|
|
37
|
+
__search: any;
|
|
38
|
+
__requestPaged: MonkeyEcxRequestPaged | null;
|
|
39
|
+
__onSearchChanged$: BehaviorSubject<any>;
|
|
40
|
+
__onDataChanged$: BehaviorSubject<any>;
|
|
41
|
+
__onLoadingInProgress$: BehaviorSubject<any>;
|
|
42
|
+
__onUploadInProgress$: BehaviorSubject<any>;
|
|
43
|
+
__onDataDeleted$: BehaviorSubject<any>;
|
|
44
|
+
__onErrorChanged$: BehaviorSubject<any>;
|
|
45
|
+
__onGovernmentIdDataChanged$: BehaviorSubject<any>;
|
|
46
|
+
__onZipCodeDataChanged$: BehaviorSubject<any>;
|
|
47
|
+
__oni18nDataChanged$: BehaviorSubject<any>;
|
|
48
|
+
__onDoSearch$: BehaviorSubject<MonkeyEcxRequestPaged>;
|
|
49
|
+
__tokenCredentials: MonkeyEcxTokenCredentials | null;
|
|
50
|
+
__schedule: MonkeyEcxRequestSchedule | null;
|
|
51
|
+
__i18n: any;
|
|
52
|
+
__callbackPagination: Function;
|
|
53
|
+
__paginationOptions: {
|
|
54
|
+
service: MonkeyEcxPaginationService;
|
|
55
|
+
callback: Function;
|
|
56
|
+
name?: string;
|
|
57
|
+
} | undefined;
|
|
58
|
+
__isAbleToDoPagination: {};
|
|
59
|
+
constructor(monkeyecxService?: MonkeyEcxService | undefined, tokenStorage?: MonkeyEcxTokenStorageService | undefined, otherArgs?: {
|
|
60
|
+
router?: Router | undefined;
|
|
61
|
+
schedule?: {
|
|
62
|
+
service: MonkeyEcxRequestScheduleService;
|
|
63
|
+
options?: {
|
|
64
|
+
clearOnChangeRoute?: boolean | undefined;
|
|
65
|
+
} | undefined;
|
|
66
|
+
} | undefined;
|
|
67
|
+
queue?: {
|
|
68
|
+
service: MonkeyEcxRequestQueueHandlingService;
|
|
69
|
+
} | undefined;
|
|
70
|
+
} | undefined);
|
|
71
|
+
private handleInit;
|
|
72
|
+
private navigateToPendencyPage;
|
|
73
|
+
private getRole;
|
|
74
|
+
private allowedSecurityAccessByPendency;
|
|
75
|
+
private allowedSecurityAccessByFeature;
|
|
76
|
+
private allowedSecurityAccessByCountry;
|
|
77
|
+
private allowedSecurityAccess;
|
|
78
|
+
private navigateToErrorPage;
|
|
79
|
+
private handlePaginationOptions;
|
|
80
|
+
setPage(requestPaged: MonkeyEcxRequestPaged): this;
|
|
81
|
+
nextPage(): boolean;
|
|
82
|
+
getEmbeddedData(data: any, field: string): any[] | any;
|
|
83
|
+
getNormalizedUrl(url: string, samePage?: boolean): string;
|
|
84
|
+
clear(clearData: boolean): void;
|
|
85
|
+
resolve(route: ActivatedRouteSnapshot | null, state: RouterStateSnapshot | null, otherArgs?: {
|
|
86
|
+
callbackMain: Function;
|
|
87
|
+
router?: Router;
|
|
88
|
+
security?: {
|
|
89
|
+
roles: string[];
|
|
90
|
+
byExclusion?: boolean;
|
|
91
|
+
};
|
|
92
|
+
callbackPagination?: Function;
|
|
93
|
+
translateOptions?: MonkeyEcxTranslateOptions;
|
|
94
|
+
feature?: {
|
|
95
|
+
service: MonkeyEcxFeatureToggleService;
|
|
96
|
+
flag: string;
|
|
97
|
+
};
|
|
98
|
+
featureByProgram?: {
|
|
99
|
+
config: MonkeyEcxConfig;
|
|
100
|
+
feature: string;
|
|
101
|
+
};
|
|
102
|
+
countrySecurity?: MonkeyEcxCountrySecurity;
|
|
103
|
+
pendency?: {
|
|
104
|
+
service: {
|
|
105
|
+
hasPendencies: Function;
|
|
106
|
+
};
|
|
107
|
+
type: string;
|
|
108
|
+
};
|
|
109
|
+
paginationOptions?: {
|
|
110
|
+
service: MonkeyEcxPaginationService;
|
|
111
|
+
callback: Function;
|
|
112
|
+
name?: string;
|
|
113
|
+
};
|
|
114
|
+
}): void;
|
|
115
|
+
getHTTPHeaderApplicationPDF(): Object;
|
|
116
|
+
genericMethod(link: any, data?: any, callback?: Function): void;
|
|
117
|
+
getGenericData(data: any, action: string): Promise<any>;
|
|
118
|
+
geti18n(translateService: TranslateService, keys: string | string[]): void;
|
|
119
|
+
doPagination(): void;
|
|
120
|
+
doPaginationv2(type: string, callback: Function): void;
|
|
121
|
+
setLinks(links: any): void;
|
|
122
|
+
setSearchByUrl(router: Router, url: string, search: any, extras?: any): void;
|
|
123
|
+
saveState(state: MonkeyEcxSavedState): void;
|
|
124
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { MonkeyStyleGuideModalFixedService } from 'monkey-style-guide';
|
|
2
|
+
import { MonkeyEcxConfig } from '../../interfaces';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MonkeyEcxAlertsConfigService {
|
|
5
|
+
private modalService;
|
|
6
|
+
constructor(modalService: MonkeyStyleGuideModalFixedService);
|
|
7
|
+
private handleValidation;
|
|
8
|
+
apply(config: MonkeyEcxConfig): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxAlertsConfigService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxAlertsConfigService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxConfigModule {
|
|
4
|
+
constructor(parentModule: MonkeyEcxConfigModule);
|
|
5
|
+
static forRoot(): ModuleWithProviders<MonkeyEcxConfigModule>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxConfigModule, [{ optional: true; skipSelf: true; }]>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyEcxConfigModule, never, never, never>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyEcxConfigModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { MonkeyStyleGuideSettingsService } from 'monkey-style-guide';
|
|
3
|
+
import { MonkeyEcxi18nConfigService } from './monkeyecx-i18n-config.service';
|
|
4
|
+
import { MonkeyEcxLogsConfigService } from './monkeyecx-logs-config.service';
|
|
5
|
+
import { MonkeyEcxServiceWorkerConfigService } from './monkeyecx-service-worker-config.service';
|
|
6
|
+
import { MonkeyEcxSecurityConsoleConfigService } from './monkeyecx-security-console-config.service';
|
|
7
|
+
import { MonkeyEcxMaintenanceConfigService } from './monkeyecx-maintenance-config.service';
|
|
8
|
+
import { MonkeyEcxCommonsService } from '../commons/monkeyecx-commons.service';
|
|
9
|
+
import { MonkeyEcxService } from '../monkeyecx-service.service';
|
|
10
|
+
import { MonkeyEcxErrorConfigService } from './monkeyecx-error-config.service';
|
|
11
|
+
import { MonkeyEcxFeatureToggleService } from './monkeyecx-feature-toggle.service';
|
|
12
|
+
import { MonkeyEcxGAConfigService } from './monkeyecx-ga-config.service';
|
|
13
|
+
import { MonkeyEcxAlertsConfigService } from './monkeyecx-alerts-config.service';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
15
|
+
export declare class MonkeyEcxConfigService extends MonkeyEcxCommonsService {
|
|
16
|
+
private monkeyecxi18nConfigService;
|
|
17
|
+
private monkeyecxLogsConfigService;
|
|
18
|
+
private monkeyStyleGuideSettingsService;
|
|
19
|
+
private monkeyecxServiceWorkerConfigService;
|
|
20
|
+
private monkeyecxSecurityConsoleConfigService;
|
|
21
|
+
private monkeyecxMaintenanceConfigService;
|
|
22
|
+
private monkeyecxErrorConfigService;
|
|
23
|
+
private monkeyEcxFeatureToggleService;
|
|
24
|
+
private monkeyGAConfigService;
|
|
25
|
+
private monkeyEcxAlertsConfigService;
|
|
26
|
+
private readonly configSubject$;
|
|
27
|
+
private readonly configBoostrapSubject$;
|
|
28
|
+
constructor(monkeyecxService: MonkeyEcxService, monkeyecxi18nConfigService: MonkeyEcxi18nConfigService, monkeyecxLogsConfigService: MonkeyEcxLogsConfigService, monkeyStyleGuideSettingsService: MonkeyStyleGuideSettingsService, monkeyecxServiceWorkerConfigService: MonkeyEcxServiceWorkerConfigService, monkeyecxSecurityConsoleConfigService: MonkeyEcxSecurityConsoleConfigService, monkeyecxMaintenanceConfigService: MonkeyEcxMaintenanceConfigService, monkeyecxErrorConfigService: MonkeyEcxErrorConfigService, monkeyEcxFeatureToggleService: MonkeyEcxFeatureToggleService, monkeyGAConfigService: MonkeyEcxGAConfigService, monkeyEcxAlertsConfigService: MonkeyEcxAlertsConfigService);
|
|
29
|
+
private internalValidations;
|
|
30
|
+
private getWhiteLabelSettings;
|
|
31
|
+
init(callback: Function, environment: any, identifyCode: string, monkeyecxCode?: string): void;
|
|
32
|
+
config(): Observable<any>;
|
|
33
|
+
boostrapConfig(): Observable<any>;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxConfigService, never>;
|
|
35
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxConfigService>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class MonkeyEcxErrorConfigService {
|
|
3
|
+
constructor();
|
|
4
|
+
private enableSupport;
|
|
5
|
+
apply(type: string): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxErrorConfigService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxErrorConfigService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
2
|
+
import { MonkeyEcxConfig } from '../../interfaces';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MonkeyEcxFeatureToggleService {
|
|
5
|
+
private readonly flagSubject$;
|
|
6
|
+
private flags;
|
|
7
|
+
private ldClient;
|
|
8
|
+
constructor();
|
|
9
|
+
private getAllFlags;
|
|
10
|
+
private identify;
|
|
11
|
+
apply(configSubject$: BehaviorSubject<MonkeyEcxConfig>, environment: any): void;
|
|
12
|
+
get onFlags(): Observable<any>;
|
|
13
|
+
getFlag(flag: string): boolean | null;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxFeatureToggleService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxFeatureToggleService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { MonkeyEcxConfig } from '../../interfaces';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MonkeyEcxGAConfigService {
|
|
5
|
+
private rt;
|
|
6
|
+
constructor(rt: Router);
|
|
7
|
+
apply(params: MonkeyEcxConfig, environment: any): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxGAConfigService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxGAConfigService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
2
|
+
import { MonkeyEcxService } from '../monkeyecx-service.service';
|
|
3
|
+
import { MonkeyEcxCookieStorageService } from '../storage/monkeyecx-cookie-storage.service';
|
|
4
|
+
import { MonkeyEcxCommonsService } from '../commons';
|
|
5
|
+
import { MonkeyEcxConfig } from '../../interfaces';
|
|
6
|
+
import { MonkeyEcxErrorConfigService } from '../config/monkeyecx-error-config.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class MonkeyEcxi18nConfigService extends MonkeyEcxCommonsService {
|
|
9
|
+
private translateService;
|
|
10
|
+
private monkeyecxCookieStorageService;
|
|
11
|
+
private monkeyecxErrorConfigService;
|
|
12
|
+
constructor(monkeyecxService: MonkeyEcxService, translateService: TranslateService, monkeyecxCookieStorageService: MonkeyEcxCookieStorageService, monkeyecxErrorConfigService: MonkeyEcxErrorConfigService);
|
|
13
|
+
apply(params: MonkeyEcxConfig, environment: any, change?: boolean): Promise<void>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxi18nConfigService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxi18nConfigService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { MonkeyEcxConfig, MonkeyEcxConfigBoostrap } from '../../interfaces';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MonkeyEcxLogsConfigService {
|
|
4
|
+
apply(params: MonkeyEcxConfig, configBoostrap: MonkeyEcxConfigBoostrap, environment: any, identifyCode: string): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxLogsConfigService, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxLogsConfigService>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { MonkeyStyleGuideModalService } from 'monkey-style-guide';
|
|
3
|
+
import { MonkeyEcxConfigBoostrap } from '../../interfaces/monkeyecx-config-boostrap';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MonkeyEcxMaintenanceConfigService {
|
|
6
|
+
private modalService;
|
|
7
|
+
private router;
|
|
8
|
+
constructor(modalService: MonkeyStyleGuideModalService, router: Router);
|
|
9
|
+
private handleValidation;
|
|
10
|
+
apply(config: MonkeyEcxConfigBoostrap): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxMaintenanceConfigService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxMaintenanceConfigService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
2
|
+
import { MonkeyEcxCommonsService } from '../commons';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MonkeyEcxSecurityConsoleConfigService extends MonkeyEcxCommonsService {
|
|
5
|
+
private translateService;
|
|
6
|
+
constructor(translateService: TranslateService);
|
|
7
|
+
private handleValidation;
|
|
8
|
+
apply(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxSecurityConsoleConfigService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxSecurityConsoleConfigService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ApplicationRef } from '@angular/core';
|
|
2
|
+
import { SwUpdate } from '@angular/service-worker';
|
|
3
|
+
import { MonkeyStyleGuideModalService } from 'monkey-style-guide';
|
|
4
|
+
import { MonkeyEcxConfigBoostrap } from '../../interfaces';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class MonkeyEcxServiceWorkerConfigService {
|
|
7
|
+
private appRef;
|
|
8
|
+
private updates;
|
|
9
|
+
private modalService;
|
|
10
|
+
constructor(appRef: ApplicationRef, updates: SwUpdate, modalService: MonkeyStyleGuideModalService);
|
|
11
|
+
private handleValidation;
|
|
12
|
+
private verify;
|
|
13
|
+
apply(config: MonkeyEcxConfigBoostrap): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxServiceWorkerConfigService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxServiceWorkerConfigService>;
|
|
16
|
+
}
|