ng-pli-commons 0.0.1573 → 0.0.1575
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/esm2020/lib/components/backoffice.commons.component.mjs +40 -0
- package/esm2020/lib/components/common.lists.component.mjs +194 -0
- package/esm2020/lib/components/configuration-token/configuration-token-subject.service.mjs +23 -0
- package/esm2020/lib/components/configuration-token/configuration-token.component.mjs +626 -0
- package/esm2020/lib/components/configuration-token/guarantee-token/guarantee-token.component.mjs +103 -0
- package/esm2020/lib/components/configuration-token/snapshot-token/snapshot-token.component.mjs +108 -0
- package/esm2020/lib/components/configuration.commons.component.mjs +40 -0
- package/esm2020/lib/components/dashboard.commons.component.mjs +84 -0
- package/esm2020/lib/components/dynamic-filter/dynamic-filter.component.mjs +131 -0
- package/esm2020/lib/components/excel-to-json/excel-to-json.component.mjs +54 -0
- package/esm2020/lib/components/frontoffice.commons.component.mjs +86 -0
- package/esm2020/lib/components/pdf-analyzer/pdf-analyzer.component.mjs +162 -0
- package/esm2020/lib/components/pdf-config/pdf-config.component.mjs +167 -0
- package/esm2020/lib/components/pdf-generator/pdf-generator.component.mjs +160 -0
- package/esm2020/lib/components/pdf-merge-visualizer/pdf-merge-visualizer.component.mjs +307 -0
- package/esm2020/lib/components/pdf-visualizer/pdf-visualizer.component.mjs +385 -0
- package/esm2020/lib/components/progress-bar/progress-bar.component.mjs +92 -0
- package/esm2020/lib/components/segmentation-tokens/segmentation-tokens.component.mjs +199 -0
- package/esm2020/lib/components/select-ppp/select-ppp.component.mjs +106 -0
- package/esm2020/lib/components/show-hide-columns/show-hide-columns-table.component.mjs +116 -0
- package/esm2020/lib/components/token/token.component.mjs +1003 -0
- package/esm2020/lib/components/tokens-calculator/tokens-calculator.component.mjs +128 -0
- package/esm2020/lib/directives/currency-colfuturo-formatter.directive.mjs +47 -0
- package/esm2020/lib/directives/currency-decimal-colfuturo-formatter.directive.mjs +34 -0
- package/esm2020/lib/ng-pli-commons.module.mjs +388 -0
- package/esm2020/lib/ng-pli-commons.service.mjs +14 -0
- package/esm2020/lib/pipes/currency-colfuturo.pipe.mjs +35 -0
- package/esm2020/lib/pipes/currency-decimal-colfuturo.pipe.mjs +36 -0
- package/esm2020/lib/pipes/currency-print-colfuturo.pipe.mjs +33 -0
- package/esm2020/lib/pipes/thousands.pipe.mjs +60 -0
- package/esm2020/lib/services/application-fill-percentage.service.mjs +30 -0
- package/esm2020/lib/services/application-tag.service.mjs +56 -0
- package/esm2020/lib/services/application.service.mjs +233 -0
- package/esm2020/lib/services/authentication.service.mjs +111 -0
- package/esm2020/lib/services/budget-application.service.mjs +246 -0
- package/{esm5/lib/services/budget-simulation.service.js → esm2020/lib/services/budget-simulation.service.mjs} +29 -30
- package/esm2020/lib/services/budget.service.mjs +205 -0
- package/esm2020/lib/services/committee-money.service.mjs +40 -0
- package/esm2020/lib/services/committee-pdf.service.mjs +24 -0
- package/{esm2015/lib/services/committee-snapshot.service.js → esm2020/lib/services/committee-snapshot.service.mjs} +12 -12
- package/esm2020/lib/services/common-info.service.mjs +51 -0
- package/esm2020/lib/services/common.service.mjs +291 -0
- package/esm2020/lib/services/configuration-document.service.mjs +297 -0
- package/esm2020/lib/services/configuration-minisite.service.mjs +26 -0
- package/esm2020/lib/services/configuration.service.mjs +53 -0
- package/esm2020/lib/services/credit-score.service.mjs +39 -0
- package/esm2020/lib/services/credit-study.service.mjs +278 -0
- package/esm2020/lib/services/cube.service.mjs +27 -0
- package/esm2020/lib/services/data-form.service.mjs +169 -0
- package/{esm5/lib/services/data-letter-segmentation.service.js → esm2020/lib/services/data-letter-segmentation.service.mjs} +35 -36
- package/esm2020/lib/services/document-analysis-auto.service.mjs +27 -0
- package/esm2020/lib/services/document-history.service.mjs +43 -0
- package/esm2020/lib/services/document-management.service.mjs +57 -0
- package/esm2020/lib/services/document-validation-attempt.service.mjs +32 -0
- package/esm2020/lib/services/document.service.mjs +103 -0
- package/esm2020/lib/services/documentary.type.service.mjs +69 -0
- package/esm2020/lib/services/email.service.mjs +30 -0
- package/esm2020/lib/services/evaluation.service.mjs +181 -0
- package/esm2020/lib/services/export-excel.service.mjs +32 -0
- package/esm2020/lib/services/file.service.mjs +153 -0
- package/esm2020/lib/services/form.service.mjs +112 -0
- package/esm2020/lib/services/gic-client-disbursement-metadata.service.mjs +31 -0
- package/esm2020/lib/services/gic-client.service.mjs +32 -0
- package/esm2020/lib/services/gic-cnf-bankvision-transaction.service.mjs +31 -0
- package/esm2020/lib/services/gic-cnf-closing-date.service.mjs +31 -0
- package/esm2020/lib/services/gic-cnf-maintenance.service.mjs +30 -0
- package/esm2020/lib/services/gic-disbursement.service.mjs +30 -0
- package/esm2020/lib/services/global.show.task.service.mjs +37 -0
- package/esm2020/lib/services/guarantee-document.service.mjs +52 -0
- package/esm2020/lib/services/guarantee-enrollment.service.mjs +37 -0
- package/esm2020/lib/services/guarantee.service.mjs +128 -0
- package/esm2020/lib/services/hash.service.mjs +36 -0
- package/esm2020/lib/services/import-data.service.mjs +27 -0
- package/esm2020/lib/services/import-excel-gic.service.mjs +31 -0
- package/esm2020/lib/services/initial-configuration-gic-parameters.service.mjs +51 -0
- package/esm2020/lib/services/initial-record.service.mjs +51 -0
- package/esm2020/lib/services/integration-ado.service.mjs +54 -0
- package/esm2020/lib/services/interaction-application-user.service.mjs +81 -0
- package/esm2020/lib/services/interest-adjustment.service.mjs +31 -0
- package/esm2020/lib/services/keys-assignation.service.mjs +127 -0
- package/esm2020/lib/services/legalization.service.mjs +150 -0
- package/esm2020/lib/services/letter-campaing.service.mjs +49 -0
- package/esm2020/lib/services/letter-task-mapping.service.mjs +40 -0
- package/esm2020/lib/services/log.service.mjs +41 -0
- package/esm2020/lib/services/maintenance.service.mjs +42 -0
- package/esm2020/lib/services/migration-plis.service.mjs +27 -0
- package/esm2020/lib/services/migration-survey-queue.service.mjs +24 -0
- package/esm2020/lib/services/page.service.mjs +38 -0
- package/esm2020/lib/services/partner-system.service.mjs +30 -0
- package/esm2020/lib/services/partner.service.mjs +34 -0
- package/esm2020/lib/services/pdf-analyzer.service.mjs +33 -0
- package/esm2020/lib/services/permission.service.mjs +29 -0
- package/esm2020/lib/services/pli-cnf-acuity-fields.service.mjs +34 -0
- package/esm2020/lib/services/pli-cnf-app-card-filter.service.mjs +40 -0
- package/esm2020/lib/services/pli-cnf-appointment-type.service.mjs +41 -0
- package/esm2020/lib/services/pli-cnf-budget-program-type.service.mjs +54 -0
- package/esm2020/lib/services/pli-cnf-budget.service.mjs +31 -0
- package/esm2020/lib/services/pli-cnf-cloning.service.mjs +24 -0
- package/{esm2015/lib/services/pli-cnf-committee-pdf-config-table-config.service.js → esm2020/lib/services/pli-cnf-committee-pdf-config-table-config.service.mjs} +12 -12
- package/esm2020/lib/services/pli-cnf-committee-pdf-gen-status.service.mjs +30 -0
- package/esm2020/lib/services/pli-cnf-committee-visualization-mode.service.mjs +42 -0
- package/esm2020/lib/services/pli-cnf-committee.service.mjs +51 -0
- package/esm2020/lib/services/pli-cnf-config-minisite.service.mjs +90 -0
- package/esm2020/lib/services/pli-cnf-configuration-credit-study.service.mjs +41 -0
- package/esm2020/lib/services/pli-cnf-document-management.service.mjs +40 -0
- package/esm2020/lib/services/pli-cnf-dynamic-keys-assign.service.mjs +52 -0
- package/esm2020/lib/services/pli-cnf-evaluation-task-mailing.service.mjs +31 -0
- package/esm2020/lib/services/pli-cnf-evaluation-task.service.mjs +112 -0
- package/esm2020/lib/services/pli-cnf-evaluation-template.service.mjs +95 -0
- package/esm2020/lib/services/pli-cnf-form-edit.service.mjs +68 -0
- package/esm2020/lib/services/pli-cnf-form-multiaplicacion.service.mjs +46 -0
- package/esm2020/lib/services/pli-cnf-guarantee-documents-template.service.mjs +40 -0
- package/esm2020/lib/services/pli-cnf-guarantee-token.service.mjs +42 -0
- package/esm2020/lib/services/pli-cnf-header.service.mjs +39 -0
- package/esm2020/lib/services/pli-cnf-indicator.service.mjs +39 -0
- package/esm2020/lib/services/pli-cnf-information-system.service.mjs +24 -0
- package/esm2020/lib/services/pli-cnf-interaction.service.mjs +78 -0
- package/esm2020/lib/services/pli-cnf-letter-template-type.service.mjs +29 -0
- package/{esm5/lib/services/pli-cnf-letter-template.service.js → esm2020/lib/services/pli-cnf-letter-template.service.mjs} +25 -28
- package/esm2020/lib/services/pli-cnf-look-and-feel.service.mjs +28 -0
- package/esm2020/lib/services/pli-cnf-menu-form.service.mjs +34 -0
- package/esm2020/lib/services/pli-cnf-migration-plis-field-budget.service.mjs +34 -0
- package/esm2020/lib/services/pli-cnf-migration-plis-field.service.mjs +47 -0
- package/esm2020/lib/services/pli-cnf-migration-status-plis.service.mjs +44 -0
- package/esm2020/lib/services/pli-cnf-page-section-form.service.mjs +66 -0
- package/esm2020/lib/services/pli-cnf-page-sub-process.service.mjs +25 -0
- package/esm2020/lib/services/pli-cnf-pdfs.service.mjs +31 -0
- package/esm2020/lib/services/pli-cnf-profile-form.service.mjs +40 -0
- package/esm2020/lib/services/pli-cnf-profile-user.service.mjs +49 -0
- package/esm2020/lib/services/pli-cnf-project-summary.service.mjs +39 -0
- package/esm2020/lib/services/pli-cnf-scenario.service.mjs +47 -0
- package/esm2020/lib/services/pli-cnf-segmentation.service.mjs +72 -0
- package/esm2020/lib/services/pli-cnf-snapshot-token.service.mjs +42 -0
- package/esm2020/lib/services/pli-cnf-status-flow-interaction.service.mjs +74 -0
- package/esm2020/lib/services/pli-cnf-status-flow.service.mjs +56 -0
- package/esm2020/lib/services/pli-cnf-support-document-category.service.mjs +47 -0
- package/esm2020/lib/services/pli-cnf-support-document.service.mjs +56 -0
- package/esm2020/lib/services/pli-cnf-survey-document.service.mjs +37 -0
- package/esm2020/lib/services/pli-cnf-survey-pdf.service.mjs +34 -0
- package/esm2020/lib/services/pli-cnf-survey.service.mjs +46 -0
- package/esm2020/lib/services/pli-cnf-task-group.service.mjs +33 -0
- package/esm2020/lib/services/pli-cnf-text-category.service.mjs +38 -0
- package/esm2020/lib/services/pli-cnf-text-option.service.mjs +39 -0
- package/esm2020/lib/services/pli-cnf-text.service.mjs +62 -0
- package/esm2020/lib/services/pli-cnf-type-text.service.mjs +45 -0
- package/esm2020/lib/services/pli-cnf-university-article.service.mjs +39 -0
- package/{esm2015/lib/services/pli-cnf-user-calendar.service.js → esm2020/lib/services/pli-cnf-user-calendar.service.mjs} +12 -12
- package/esm2020/lib/services/pli-cnf-user-workspace.service.mjs +35 -0
- package/esm2020/lib/services/pli-cnf-valpro-keys.service.mjs +35 -0
- package/esm2020/lib/services/pli-cnf-workspace-segmentation.service.mjs +31 -0
- package/esm2020/lib/services/pli-multiple-value-filter.service.mjs +39 -0
- package/esm2020/lib/services/pli-promocion-username.service.mjs +57 -0
- package/esm2020/lib/services/pli-seg-action-user.service.mjs +37 -0
- package/esm2020/lib/services/pli-segmentation.service.mjs +130 -0
- package/esm2020/lib/services/pli-tag-assignment.service.mjs +36 -0
- package/esm2020/lib/services/pli-tag.service.mjs +55 -0
- package/esm2020/lib/services/pli-user.service.mjs +51 -0
- package/esm2020/lib/services/ppp.service.mjs +351 -0
- package/esm2020/lib/services/profile.service.mjs +60 -0
- package/esm2020/lib/services/progress-bar.service.mjs +40 -0
- package/esm2020/lib/services/promotion-score.service.mjs +44 -0
- package/esm2020/lib/services/return-refund.service.mjs +47 -0
- package/{esm2015/lib/services/segmentation-tokens.service.js → esm2020/lib/services/segmentation-tokens.service.mjs} +12 -12
- package/esm2020/lib/services/segmentation-user-service.service.mjs +90 -0
- package/esm2020/lib/services/segmentation.service.mjs +31 -0
- package/esm2020/lib/services/send-application.service.mjs +492 -0
- package/esm2020/lib/services/sesion-form.service.mjs +31 -0
- package/esm2020/lib/services/sesion.service.mjs +45 -0
- package/esm2020/lib/services/spinner.service.mjs +16 -0
- package/esm2020/lib/services/sponsorship-letter.service.mjs +68 -0
- package/esm2020/lib/services/status.service.mjs +100 -0
- package/esm2020/lib/services/summary-budget.service.mjs +24 -0
- package/esm2020/lib/services/survey-metadata.service.mjs +28 -0
- package/esm2020/lib/services/survey-queue.service.mjs +24 -0
- package/esm2020/lib/services/survey.service.mjs +52 -0
- package/esm2020/lib/services/tasa.cambio.service.mjs +34 -0
- package/esm2020/lib/services/token-transformation.service.mjs +62 -0
- package/esm2020/lib/services/token.service.mjs +1202 -0
- package/esm2020/lib/services/university.service.mjs +50 -0
- package/esm2020/lib/services/upload-documents.service.mjs +60 -0
- package/esm2020/lib/services/user.service.mjs +28 -0
- package/esm2020/lib/services/visualization-committee.service.mjs +81 -0
- package/esm2020/lib/utils/custom-validator.mjs +95 -0
- package/esm2020/lib/utils/form-util.mjs +35 -0
- package/esm2020/lib/utils/formio-util.mjs +522 -0
- package/esm2020/lib/utils/version-commons.mjs +10 -0
- package/esm2020/ng-pli-commons.mjs +5 -0
- package/esm2020/public-api.mjs +191 -0
- package/esm2020/version.mjs +29 -0
- package/fesm2015/{ng-pli-commons.js → ng-pli-commons.mjs} +4889 -3746
- package/fesm2015/ng-pli-commons.mjs.map +1 -0
- package/fesm2020/ng-pli-commons.mjs +15501 -0
- package/fesm2020/ng-pli-commons.mjs.map +1 -0
- package/lib/components/backoffice.commons.component.d.ts +4 -1
- package/lib/components/common.lists.component.d.ts +5 -2
- package/lib/components/configuration-token/configuration-token-subject.service.d.ts +3 -0
- package/lib/components/configuration-token/configuration-token.component.d.ts +4 -0
- package/lib/components/configuration-token/guarantee-token/guarantee-token.component.d.ts +3 -0
- package/lib/components/configuration-token/snapshot-token/snapshot-token.component.d.ts +3 -0
- package/lib/components/configuration.commons.component.d.ts +3 -0
- package/lib/components/dashboard.commons.component.d.ts +3 -0
- package/lib/components/dynamic-filter/dynamic-filter.component.d.ts +3 -0
- package/lib/components/excel-to-json/excel-to-json.component.d.ts +3 -0
- package/lib/components/frontoffice.commons.component.d.ts +3 -0
- package/lib/components/pdf-analyzer/pdf-analyzer.component.d.ts +3 -0
- package/lib/components/pdf-config/pdf-config.component.d.ts +3 -0
- package/lib/components/pdf-generator/pdf-generator.component.d.ts +6 -3
- package/lib/components/pdf-merge-visualizer/pdf-merge-visualizer.component.d.ts +3 -0
- package/lib/components/pdf-visualizer/pdf-visualizer.component.d.ts +3 -2
- package/lib/components/progress-bar/progress-bar.component.d.ts +4 -0
- package/lib/components/segmentation-tokens/segmentation-tokens.component.d.ts +3 -0
- package/lib/components/select-ppp/select-ppp.component.d.ts +3 -0
- package/lib/components/show-hide-columns/show-hide-columns-table.component.d.ts +3 -0
- package/lib/components/token/token.component.d.ts +3 -0
- package/lib/components/tokens-calculator/tokens-calculator.component.d.ts +6 -3
- package/lib/directives/currency-colfuturo-formatter.directive.d.ts +3 -0
- package/lib/directives/currency-decimal-colfuturo-formatter.directive.d.ts +3 -0
- package/lib/ng-pli-commons.module.d.ts +45 -2
- package/lib/ng-pli-commons.service.d.ts +6 -0
- package/lib/pipes/currency-colfuturo.pipe.d.ts +3 -0
- package/lib/pipes/currency-decimal-colfuturo.pipe.d.ts +3 -0
- package/lib/pipes/currency-print-colfuturo.pipe.d.ts +3 -0
- package/lib/pipes/thousands.pipe.d.ts +3 -0
- package/lib/services/application-fill-percentage.service.d.ts +3 -0
- package/lib/services/application-tag.service.d.ts +3 -0
- package/lib/services/application.service.d.ts +4 -1
- package/lib/services/authentication.service.d.ts +3 -0
- package/lib/services/budget-application.service.d.ts +3 -0
- package/lib/services/budget-simulation.service.d.ts +5 -2
- package/lib/services/budget.service.d.ts +5 -4
- package/lib/services/committee-money.service.d.ts +3 -0
- package/lib/services/committee-pdf.service.d.ts +3 -0
- package/lib/services/committee-snapshot.service.d.ts +3 -0
- package/lib/services/common-info.service.d.ts +3 -0
- package/lib/services/common.service.d.ts +3 -0
- package/lib/services/configuration-document.service.d.ts +3 -0
- package/lib/services/configuration-minisite.service.d.ts +3 -0
- package/lib/services/configuration.service.d.ts +3 -0
- package/lib/services/credit-score.service.d.ts +3 -0
- package/lib/services/credit-study.service.d.ts +3 -0
- package/lib/services/cube.service.d.ts +3 -0
- package/lib/services/data-form.service.d.ts +3 -0
- package/lib/services/data-letter-segmentation.service.d.ts +3 -0
- package/lib/services/document-analysis-auto.service.d.ts +3 -0
- package/lib/services/document-history.service.d.ts +18 -0
- package/lib/services/document-management.service.d.ts +3 -0
- package/lib/services/document-validation-attempt.service.d.ts +3 -0
- package/lib/services/document.service.d.ts +3 -0
- package/lib/services/documentary.type.service.d.ts +3 -0
- package/lib/services/email.service.d.ts +3 -0
- package/lib/services/evaluation.service.d.ts +4 -1
- package/lib/services/export-excel.service.d.ts +3 -0
- package/lib/services/file.service.d.ts +5 -2
- package/lib/services/form.service.d.ts +3 -0
- package/lib/services/gic-client-disbursement-metadata.service.d.ts +12 -0
- package/lib/services/gic-client.service.d.ts +16 -0
- package/lib/services/gic-cnf-bankvision-transaction.service.d.ts +13 -0
- package/lib/services/gic-cnf-closing-date.service.d.ts +14 -0
- package/lib/services/gic-cnf-maintenance.service.d.ts +13 -0
- package/lib/services/gic-disbursement.service.d.ts +14 -0
- package/lib/services/global.show.task.service.d.ts +3 -0
- package/lib/services/guarantee-document.service.d.ts +3 -1
- package/lib/services/guarantee-enrollment.service.d.ts +3 -0
- package/lib/services/guarantee.service.d.ts +3 -0
- package/lib/services/hash.service.d.ts +3 -0
- package/lib/services/import-data.service.d.ts +3 -0
- package/lib/services/import-excel-gic.service.d.ts +14 -0
- package/lib/services/initial-configuration-gic-parameters.service.d.ts +19 -0
- package/lib/services/initial-record.service.d.ts +4 -6
- package/lib/services/integration-ado.service.d.ts +3 -0
- package/lib/services/interaction-application-user.service.d.ts +3 -0
- package/lib/services/interest-adjustment.service.d.ts +15 -0
- package/lib/services/keys-assignation.service.d.ts +3 -0
- package/lib/services/legalization.service.d.ts +3 -0
- package/lib/services/letter-campaing.service.d.ts +3 -0
- package/lib/services/letter-task-mapping.service.d.ts +3 -0
- package/lib/services/log.service.d.ts +3 -0
- package/lib/services/maintenance.service.d.ts +17 -0
- package/lib/services/migration-plis.service.d.ts +3 -0
- package/lib/services/migration-survey-queue.service.d.ts +3 -0
- package/lib/services/page.service.d.ts +3 -0
- package/lib/services/partner-system.service.d.ts +3 -0
- package/lib/services/partner.service.d.ts +3 -0
- package/lib/services/pdf-analyzer.service.d.ts +3 -0
- package/lib/services/permission.service.d.ts +3 -0
- package/lib/services/pli-cnf-acuity-fields.service.d.ts +3 -0
- package/lib/services/pli-cnf-app-card-filter.service.d.ts +3 -0
- package/lib/services/pli-cnf-appointment-type.service.d.ts +3 -0
- package/lib/services/pli-cnf-budget-program-type.service.d.ts +3 -0
- package/lib/services/pli-cnf-budget.service.d.ts +3 -0
- package/lib/services/pli-cnf-cloning.service.d.ts +3 -0
- package/lib/services/pli-cnf-committee-pdf-config-table-config.service.d.ts +3 -0
- package/lib/services/pli-cnf-committee-pdf-gen-status.service.d.ts +3 -0
- package/lib/services/pli-cnf-committee-visualization-mode.service.d.ts +3 -0
- package/lib/services/pli-cnf-committee.service.d.ts +3 -0
- package/lib/services/pli-cnf-config-minisite.service.d.ts +3 -0
- package/lib/services/pli-cnf-configuration-credit-study.service.d.ts +3 -0
- package/lib/services/pli-cnf-document-management.service.d.ts +3 -0
- package/lib/services/pli-cnf-dynamic-keys-assign.service.d.ts +3 -0
- package/lib/services/pli-cnf-evaluation-task-mailing.service.d.ts +13 -0
- package/lib/services/pli-cnf-evaluation-task.service.d.ts +3 -0
- package/lib/services/pli-cnf-evaluation-template.service.d.ts +3 -0
- package/lib/services/pli-cnf-form-edit.service.d.ts +3 -0
- package/lib/services/pli-cnf-form-multiaplicacion.service.d.ts +3 -0
- package/lib/services/pli-cnf-guarantee-documents-template.service.d.ts +3 -0
- package/lib/services/pli-cnf-guarantee-token.service.d.ts +3 -0
- package/lib/services/pli-cnf-header.service.d.ts +3 -0
- package/lib/services/pli-cnf-indicator.service.d.ts +3 -0
- package/lib/services/pli-cnf-information-system.service.d.ts +3 -0
- package/lib/services/pli-cnf-interaction.service.d.ts +3 -0
- package/lib/services/pli-cnf-letter-template-type.service.d.ts +3 -0
- package/lib/services/pli-cnf-letter-template.service.d.ts +3 -0
- package/lib/services/pli-cnf-look-and-feel.service.d.ts +3 -0
- package/lib/services/pli-cnf-menu-form.service.d.ts +3 -0
- package/lib/services/pli-cnf-migration-plis-field-budget.service.d.ts +3 -0
- package/lib/services/pli-cnf-migration-plis-field.service.d.ts +3 -0
- package/lib/services/pli-cnf-migration-status-plis.service.d.ts +3 -0
- package/lib/services/pli-cnf-page-section-form.service.d.ts +3 -0
- package/lib/services/pli-cnf-page-sub-process.service.d.ts +3 -0
- package/lib/services/pli-cnf-pdfs.service.d.ts +3 -0
- package/lib/services/pli-cnf-profile-form.service.d.ts +3 -0
- package/lib/services/pli-cnf-profile-user.service.d.ts +3 -0
- package/lib/services/pli-cnf-project-summary.service.d.ts +3 -0
- package/lib/services/pli-cnf-scenario.service.d.ts +3 -0
- package/lib/services/pli-cnf-segmentation.service.d.ts +3 -0
- package/lib/services/pli-cnf-snapshot-token.service.d.ts +3 -0
- package/lib/services/pli-cnf-status-flow-interaction.service.d.ts +3 -0
- package/lib/services/pli-cnf-status-flow.service.d.ts +5 -0
- package/lib/services/pli-cnf-support-document-category.service.d.ts +17 -0
- package/lib/services/pli-cnf-support-document.service.d.ts +5 -0
- package/lib/services/pli-cnf-survey-document.service.d.ts +3 -0
- package/lib/services/pli-cnf-survey-pdf.service.d.ts +3 -0
- package/lib/services/pli-cnf-survey.service.d.ts +3 -0
- package/lib/services/pli-cnf-task-group.service.d.ts +3 -0
- package/lib/services/pli-cnf-text-category.service.d.ts +3 -0
- package/lib/services/pli-cnf-text-option.service.d.ts +3 -0
- package/lib/services/pli-cnf-text.service.d.ts +3 -0
- package/lib/services/pli-cnf-type-text.service.d.ts +3 -0
- package/lib/services/pli-cnf-university-article.service.d.ts +3 -0
- package/lib/services/pli-cnf-user-calendar.service.d.ts +3 -0
- package/lib/services/pli-cnf-user-workspace.service.d.ts +3 -0
- package/lib/services/pli-cnf-valpro-keys.service.d.ts +3 -0
- package/lib/services/pli-cnf-workspace-segmentation.service.d.ts +3 -0
- package/lib/services/pli-multiple-value-filter.service.d.ts +3 -0
- package/lib/services/pli-promocion-username.service.d.ts +3 -0
- package/lib/services/pli-seg-action-user.service.d.ts +3 -0
- package/lib/services/pli-segmentation.service.d.ts +3 -0
- package/lib/services/pli-tag-assignment.service.d.ts +3 -0
- package/lib/services/pli-tag.service.d.ts +3 -0
- package/lib/services/pli-user.service.d.ts +3 -0
- package/lib/services/ppp.service.d.ts +3 -0
- package/lib/services/profile.service.d.ts +3 -0
- package/lib/services/progress-bar.service.d.ts +6 -2
- package/lib/services/promotion-score.service.d.ts +3 -0
- package/lib/services/return-refund.service.d.ts +18 -0
- package/lib/services/segmentation-tokens.service.d.ts +3 -0
- package/lib/services/segmentation-user-service.service.d.ts +3 -0
- package/lib/services/segmentation.service.d.ts +3 -0
- package/lib/services/send-application.service.d.ts +3 -0
- package/lib/services/sesion-form.service.d.ts +3 -0
- package/lib/services/sesion.service.d.ts +3 -0
- package/lib/services/spinner.service.d.ts +3 -0
- package/lib/services/sponsorship-letter.service.d.ts +3 -0
- package/lib/services/status.service.d.ts +3 -0
- package/lib/services/summary-budget.service.d.ts +3 -0
- package/lib/services/survey-metadata.service.d.ts +3 -0
- package/lib/services/survey-queue.service.d.ts +3 -0
- package/lib/services/survey.service.d.ts +3 -0
- package/lib/services/tasa.cambio.service.d.ts +5 -0
- package/lib/services/token-transformation.service.d.ts +3 -0
- package/lib/services/token.service.d.ts +17 -0
- package/lib/services/university.service.d.ts +3 -0
- package/lib/services/upload-documents.service.d.ts +4 -1
- package/lib/services/user.service.d.ts +3 -0
- package/lib/services/visualization-committee.service.d.ts +4 -3
- package/lib/utils/custom-validator.d.ts +1 -2
- package/ng-pli-commons.d.ts +2 -3
- package/package.json +27 -39
- package/{public_api.d.ts → public-api.d.ts} +15 -0
- package/version.d.ts +21 -21
- package/bundles/ng-pli-commons.umd.js +0 -17480
- package/bundles/ng-pli-commons.umd.js.map +0 -1
- package/bundles/ng-pli-commons.umd.min.js +0 -2
- package/bundles/ng-pli-commons.umd.min.js.map +0 -1
- package/esm2015/lib/components/backoffice.commons.component.js +0 -28
- package/esm2015/lib/components/common.lists.component.js +0 -187
- package/esm2015/lib/components/configuration-token/configuration-token-subject.service.js +0 -22
- package/esm2015/lib/components/configuration-token/configuration-token.component.js +0 -606
- package/esm2015/lib/components/configuration-token/guarantee-token/guarantee-token.component.js +0 -103
- package/esm2015/lib/components/configuration-token/snapshot-token/snapshot-token.component.js +0 -112
- package/esm2015/lib/components/configuration.commons.component.js +0 -28
- package/esm2015/lib/components/dashboard.commons.component.js +0 -71
- package/esm2015/lib/components/dynamic-filter/dynamic-filter.component.js +0 -130
- package/esm2015/lib/components/excel-to-json/excel-to-json.component.js +0 -56
- package/esm2015/lib/components/frontoffice.commons.component.js +0 -77
- package/esm2015/lib/components/pdf-analyzer/pdf-analyzer.component.js +0 -161
- package/esm2015/lib/components/pdf-config/pdf-config.component.js +0 -141
- package/esm2015/lib/components/pdf-generator/pdf-generator.component.js +0 -170
- package/esm2015/lib/components/pdf-merge-visualizer/pdf-merge-visualizer.component.js +0 -302
- package/esm2015/lib/components/pdf-visualizer/pdf-visualizer.component.js +0 -384
- package/esm2015/lib/components/progress-bar/progress-bar.component.js +0 -89
- package/esm2015/lib/components/segmentation-tokens/segmentation-tokens.component.js +0 -196
- package/esm2015/lib/components/select-ppp/select-ppp.component.js +0 -108
- package/esm2015/lib/components/show-hide-columns/show-hide-columns-table.component.js +0 -116
- package/esm2015/lib/components/token/token.component.js +0 -1007
- package/esm2015/lib/components/tokens-calculator/tokens-calculator.component.js +0 -128
- package/esm2015/lib/directives/currency-colfuturo-formatter.directive.js +0 -42
- package/esm2015/lib/directives/currency-decimal-colfuturo-formatter.directive.js +0 -31
- package/esm2015/lib/ng-pli-commons.module.js +0 -315
- package/esm2015/lib/pipes/currency-colfuturo.pipe.js +0 -32
- package/esm2015/lib/pipes/currency-decimal-colfuturo.pipe.js +0 -33
- package/esm2015/lib/pipes/currency-print-colfuturo.pipe.js +0 -30
- package/esm2015/lib/pipes/thousands.pipe.js +0 -56
- package/esm2015/lib/services/application-fill-percentage.service.js +0 -29
- package/esm2015/lib/services/application-tag.service.js +0 -55
- package/esm2015/lib/services/application.service.js +0 -231
- package/esm2015/lib/services/authentication.service.js +0 -115
- package/esm2015/lib/services/budget-application.service.js +0 -243
- package/esm2015/lib/services/budget-simulation.service.js +0 -60
- package/esm2015/lib/services/budget.service.js +0 -210
- package/esm2015/lib/services/committee-money.service.js +0 -39
- package/esm2015/lib/services/committee-pdf.service.js +0 -24
- package/esm2015/lib/services/common-info.service.js +0 -51
- package/esm2015/lib/services/common.service.js +0 -298
- package/esm2015/lib/services/configuration-document.service.js +0 -298
- package/esm2015/lib/services/configuration-minisite.service.js +0 -25
- package/esm2015/lib/services/configuration.service.js +0 -52
- package/esm2015/lib/services/credit-score.service.js +0 -38
- package/esm2015/lib/services/credit-study.service.js +0 -277
- package/esm2015/lib/services/cube.service.js +0 -26
- package/esm2015/lib/services/data-form.service.js +0 -168
- package/esm2015/lib/services/data-letter-segmentation.service.js +0 -57
- package/esm2015/lib/services/document-analysis-auto.service.js +0 -26
- package/esm2015/lib/services/document-management.service.js +0 -56
- package/esm2015/lib/services/document-validation-attempt.service.js +0 -31
- package/esm2015/lib/services/document.service.js +0 -104
- package/esm2015/lib/services/documentary.type.service.js +0 -70
- package/esm2015/lib/services/email.service.js +0 -29
- package/esm2015/lib/services/evaluation.service.js +0 -179
- package/esm2015/lib/services/export-excel.service.js +0 -31
- package/esm2015/lib/services/file.service.js +0 -155
- package/esm2015/lib/services/form.service.js +0 -111
- package/esm2015/lib/services/global.show.task.service.js +0 -36
- package/esm2015/lib/services/guarantee-document.service.js +0 -55
- package/esm2015/lib/services/guarantee-enrollment.service.js +0 -36
- package/esm2015/lib/services/guarantee.service.js +0 -127
- package/esm2015/lib/services/hash.service.js +0 -35
- package/esm2015/lib/services/import-data.service.js +0 -26
- package/esm2015/lib/services/initial-record.service.js +0 -57
- package/esm2015/lib/services/integration-ado.service.js +0 -53
- package/esm2015/lib/services/interaction-application-user.service.js +0 -80
- package/esm2015/lib/services/keys-assignation.service.js +0 -126
- package/esm2015/lib/services/legalization.service.js +0 -149
- package/esm2015/lib/services/letter-campaing.service.js +0 -50
- package/esm2015/lib/services/letter-task-mapping.service.js +0 -39
- package/esm2015/lib/services/log.service.js +0 -40
- package/esm2015/lib/services/migration-plis.service.js +0 -26
- package/esm2015/lib/services/migration-survey-queue.service.js +0 -24
- package/esm2015/lib/services/page.service.js +0 -37
- package/esm2015/lib/services/partner-system.service.js +0 -29
- package/esm2015/lib/services/partner.service.js +0 -33
- package/esm2015/lib/services/pdf-analyzer.service.js +0 -32
- package/esm2015/lib/services/permission.service.js +0 -29
- package/esm2015/lib/services/pli-cnf-acuity-fields.service.js +0 -33
- package/esm2015/lib/services/pli-cnf-app-card-filter.service.js +0 -39
- package/esm2015/lib/services/pli-cnf-appointment-type.service.js +0 -40
- package/esm2015/lib/services/pli-cnf-budget-program-type.service.js +0 -53
- package/esm2015/lib/services/pli-cnf-budget.service.js +0 -30
- package/esm2015/lib/services/pli-cnf-cloning.service.js +0 -24
- package/esm2015/lib/services/pli-cnf-committee-pdf-gen-status.service.js +0 -29
- package/esm2015/lib/services/pli-cnf-committee-visualization-mode.service.js +0 -41
- package/esm2015/lib/services/pli-cnf-committee.service.js +0 -51
- package/esm2015/lib/services/pli-cnf-config-minisite.service.js +0 -87
- package/esm2015/lib/services/pli-cnf-configuration-credit-study.service.js +0 -40
- package/esm2015/lib/services/pli-cnf-document-management.service.js +0 -39
- package/esm2015/lib/services/pli-cnf-dynamic-keys-assign.service.js +0 -51
- package/esm2015/lib/services/pli-cnf-evaluation-task.service.js +0 -111
- package/esm2015/lib/services/pli-cnf-evaluation-template.service.js +0 -94
- package/esm2015/lib/services/pli-cnf-form-edit.service.js +0 -67
- package/esm2015/lib/services/pli-cnf-form-multiaplicacion.service.js +0 -45
- package/esm2015/lib/services/pli-cnf-guarantee-documents-template.service.js +0 -39
- package/esm2015/lib/services/pli-cnf-guarantee-token.service.js +0 -41
- package/esm2015/lib/services/pli-cnf-header.service.js +0 -38
- package/esm2015/lib/services/pli-cnf-indicator.service.js +0 -38
- package/esm2015/lib/services/pli-cnf-information-system.service.js +0 -24
- package/esm2015/lib/services/pli-cnf-interaction.service.js +0 -77
- package/esm2015/lib/services/pli-cnf-letter-template-type.service.js +0 -30
- package/esm2015/lib/services/pli-cnf-letter-template.service.js +0 -49
- package/esm2015/lib/services/pli-cnf-look-and-feel.service.js +0 -27
- package/esm2015/lib/services/pli-cnf-menu-form.service.js +0 -33
- package/esm2015/lib/services/pli-cnf-migration-plis-field-budget.service.js +0 -33
- package/esm2015/lib/services/pli-cnf-migration-plis-field.service.js +0 -46
- package/esm2015/lib/services/pli-cnf-migration-status-plis.service.js +0 -43
- package/esm2015/lib/services/pli-cnf-page-section-form.service.js +0 -65
- package/esm2015/lib/services/pli-cnf-page-sub-process.service.js +0 -25
- package/esm2015/lib/services/pli-cnf-pdfs.service.js +0 -31
- package/esm2015/lib/services/pli-cnf-profile-form.service.js +0 -39
- package/esm2015/lib/services/pli-cnf-profile-user.service.js +0 -48
- package/esm2015/lib/services/pli-cnf-project-summary.service.js +0 -38
- package/esm2015/lib/services/pli-cnf-scenario.service.js +0 -46
- package/esm2015/lib/services/pli-cnf-segmentation.service.js +0 -71
- package/esm2015/lib/services/pli-cnf-snapshot-token.service.js +0 -41
- package/esm2015/lib/services/pli-cnf-status-flow-interaction.service.js +0 -73
- package/esm2015/lib/services/pli-cnf-status-flow.service.js +0 -51
- package/esm2015/lib/services/pli-cnf-support-document.service.js +0 -46
- package/esm2015/lib/services/pli-cnf-survey-document.service.js +0 -36
- package/esm2015/lib/services/pli-cnf-survey-pdf.service.js +0 -33
- package/esm2015/lib/services/pli-cnf-survey.service.js +0 -45
- package/esm2015/lib/services/pli-cnf-task-group.service.js +0 -33
- package/esm2015/lib/services/pli-cnf-text-category.service.js +0 -37
- package/esm2015/lib/services/pli-cnf-text-option.service.js +0 -38
- package/esm2015/lib/services/pli-cnf-text.service.js +0 -61
- package/esm2015/lib/services/pli-cnf-type-text.service.js +0 -44
- package/esm2015/lib/services/pli-cnf-university-article.service.js +0 -38
- package/esm2015/lib/services/pli-cnf-user-workspace.service.js +0 -34
- package/esm2015/lib/services/pli-cnf-valpro-keys.service.js +0 -34
- package/esm2015/lib/services/pli-cnf-workspace-segmentation.service.js +0 -30
- package/esm2015/lib/services/pli-multiple-value-filter.service.js +0 -38
- package/esm2015/lib/services/pli-promocion-username.service.js +0 -56
- package/esm2015/lib/services/pli-seg-action-user.service.js +0 -38
- package/esm2015/lib/services/pli-segmentation.service.js +0 -131
- package/esm2015/lib/services/pli-tag-assignment.service.js +0 -35
- package/esm2015/lib/services/pli-tag.service.js +0 -54
- package/esm2015/lib/services/pli-user.service.js +0 -50
- package/esm2015/lib/services/ppp.service.js +0 -350
- package/esm2015/lib/services/profile.service.js +0 -59
- package/esm2015/lib/services/progress-bar.service.js +0 -32
- package/esm2015/lib/services/promotion-score.service.js +0 -43
- package/esm2015/lib/services/segmentation-user-service.service.js +0 -89
- package/esm2015/lib/services/segmentation.service.js +0 -30
- package/esm2015/lib/services/send-application.service.js +0 -496
- package/esm2015/lib/services/sesion-form.service.js +0 -30
- package/esm2015/lib/services/sesion.service.js +0 -44
- package/esm2015/lib/services/spinner.service.js +0 -14
- package/esm2015/lib/services/sponsorship-letter.service.js +0 -69
- package/esm2015/lib/services/status.service.js +0 -101
- package/esm2015/lib/services/summary-budget.service.js +0 -24
- package/esm2015/lib/services/survey-metadata.service.js +0 -27
- package/esm2015/lib/services/survey-queue.service.js +0 -24
- package/esm2015/lib/services/survey.service.js +0 -51
- package/esm2015/lib/services/tasa.cambio.service.js +0 -25
- package/esm2015/lib/services/token-transformation.service.js +0 -61
- package/esm2015/lib/services/token.service.js +0 -1086
- package/esm2015/lib/services/university.service.js +0 -49
- package/esm2015/lib/services/upload-documents.service.js +0 -64
- package/esm2015/lib/services/user.service.js +0 -27
- package/esm2015/lib/services/visualization-committee.service.js +0 -85
- package/esm2015/lib/utils/custom-validator.js +0 -95
- package/esm2015/lib/utils/form-util.js +0 -35
- package/esm2015/lib/utils/formio-util.js +0 -521
- package/esm2015/lib/utils/version-commons.js +0 -10
- package/esm2015/ng-pli-commons.js +0 -7
- package/esm2015/public_api.js +0 -175
- package/esm2015/version.js +0 -29
- package/esm5/lib/components/backoffice.commons.component.js +0 -33
- package/esm5/lib/components/common.lists.component.js +0 -200
- package/esm5/lib/components/configuration-token/configuration-token-subject.service.js +0 -24
- package/esm5/lib/components/configuration-token/configuration-token.component.js +0 -734
- package/esm5/lib/components/configuration-token/guarantee-token/guarantee-token.component.js +0 -114
- package/esm5/lib/components/configuration-token/snapshot-token/snapshot-token.component.js +0 -131
- package/esm5/lib/components/configuration.commons.component.js +0 -33
- package/esm5/lib/components/dashboard.commons.component.js +0 -73
- package/esm5/lib/components/dynamic-filter/dynamic-filter.component.js +0 -156
- package/esm5/lib/components/excel-to-json/excel-to-json.component.js +0 -59
- package/esm5/lib/components/frontoffice.commons.component.js +0 -94
- package/esm5/lib/components/pdf-analyzer/pdf-analyzer.component.js +0 -165
- package/esm5/lib/components/pdf-config/pdf-config.component.js +0 -147
- package/esm5/lib/components/pdf-generator/pdf-generator.component.js +0 -263
- package/esm5/lib/components/pdf-merge-visualizer/pdf-merge-visualizer.component.js +0 -308
- package/esm5/lib/components/pdf-visualizer/pdf-visualizer.component.js +0 -391
- package/esm5/lib/components/progress-bar/progress-bar.component.js +0 -111
- package/esm5/lib/components/segmentation-tokens/segmentation-tokens.component.js +0 -260
- package/esm5/lib/components/select-ppp/select-ppp.component.js +0 -172
- package/esm5/lib/components/show-hide-columns/show-hide-columns-table.component.js +0 -207
- package/esm5/lib/components/token/token.component.js +0 -1116
- package/esm5/lib/components/tokens-calculator/tokens-calculator.component.js +0 -168
- package/esm5/lib/directives/currency-colfuturo-formatter.directive.js +0 -44
- package/esm5/lib/directives/currency-decimal-colfuturo-formatter.directive.js +0 -33
- package/esm5/lib/ng-pli-commons.module.js +0 -319
- package/esm5/lib/pipes/currency-colfuturo.pipe.js +0 -36
- package/esm5/lib/pipes/currency-decimal-colfuturo.pipe.js +0 -38
- package/esm5/lib/pipes/currency-print-colfuturo.pipe.js +0 -34
- package/esm5/lib/pipes/thousands.pipe.js +0 -60
- package/esm5/lib/services/application-fill-percentage.service.js +0 -31
- package/esm5/lib/services/application-tag.service.js +0 -57
- package/esm5/lib/services/application.service.js +0 -234
- package/esm5/lib/services/authentication.service.js +0 -130
- package/esm5/lib/services/budget-application.service.js +0 -246
- package/esm5/lib/services/budget.service.js +0 -215
- package/esm5/lib/services/committee-money.service.js +0 -49
- package/esm5/lib/services/committee-pdf.service.js +0 -26
- package/esm5/lib/services/committee-snapshot.service.js +0 -62
- package/esm5/lib/services/common-info.service.js +0 -53
- package/esm5/lib/services/common.service.js +0 -305
- package/esm5/lib/services/configuration-document.service.js +0 -301
- package/esm5/lib/services/configuration-minisite.service.js +0 -27
- package/esm5/lib/services/configuration.service.js +0 -55
- package/esm5/lib/services/credit-score.service.js +0 -40
- package/esm5/lib/services/credit-study.service.js +0 -279
- package/esm5/lib/services/cube.service.js +0 -28
- package/esm5/lib/services/data-form.service.js +0 -170
- package/esm5/lib/services/document-analysis-auto.service.js +0 -28
- package/esm5/lib/services/document-management.service.js +0 -58
- package/esm5/lib/services/document-validation-attempt.service.js +0 -33
- package/esm5/lib/services/document.service.js +0 -107
- package/esm5/lib/services/documentary.type.service.js +0 -72
- package/esm5/lib/services/email.service.js +0 -31
- package/esm5/lib/services/evaluation.service.js +0 -181
- package/esm5/lib/services/export-excel.service.js +0 -34
- package/esm5/lib/services/file.service.js +0 -157
- package/esm5/lib/services/form.service.js +0 -113
- package/esm5/lib/services/global.show.task.service.js +0 -38
- package/esm5/lib/services/guarantee-document.service.js +0 -57
- package/esm5/lib/services/guarantee-enrollment.service.js +0 -38
- package/esm5/lib/services/guarantee.service.js +0 -130
- package/esm5/lib/services/hash.service.js +0 -37
- package/esm5/lib/services/import-data.service.js +0 -28
- package/esm5/lib/services/initial-record.service.js +0 -59
- package/esm5/lib/services/integration-ado.service.js +0 -55
- package/esm5/lib/services/interaction-application-user.service.js +0 -82
- package/esm5/lib/services/keys-assignation.service.js +0 -131
- package/esm5/lib/services/legalization.service.js +0 -153
- package/esm5/lib/services/letter-campaing.service.js +0 -52
- package/esm5/lib/services/letter-task-mapping.service.js +0 -41
- package/esm5/lib/services/log.service.js +0 -42
- package/esm5/lib/services/migration-plis.service.js +0 -28
- package/esm5/lib/services/migration-survey-queue.service.js +0 -26
- package/esm5/lib/services/page.service.js +0 -39
- package/esm5/lib/services/partner-system.service.js +0 -31
- package/esm5/lib/services/partner.service.js +0 -35
- package/esm5/lib/services/pdf-analyzer.service.js +0 -34
- package/esm5/lib/services/permission.service.js +0 -31
- package/esm5/lib/services/pli-cnf-acuity-fields.service.js +0 -35
- package/esm5/lib/services/pli-cnf-app-card-filter.service.js +0 -41
- package/esm5/lib/services/pli-cnf-appointment-type.service.js +0 -42
- package/esm5/lib/services/pli-cnf-budget-program-type.service.js +0 -55
- package/esm5/lib/services/pli-cnf-budget.service.js +0 -32
- package/esm5/lib/services/pli-cnf-cloning.service.js +0 -26
- package/esm5/lib/services/pli-cnf-committee-pdf-config-table-config.service.js +0 -42
- package/esm5/lib/services/pli-cnf-committee-pdf-gen-status.service.js +0 -31
- package/esm5/lib/services/pli-cnf-committee-visualization-mode.service.js +0 -43
- package/esm5/lib/services/pli-cnf-committee.service.js +0 -53
- package/esm5/lib/services/pli-cnf-config-minisite.service.js +0 -90
- package/esm5/lib/services/pli-cnf-configuration-credit-study.service.js +0 -42
- package/esm5/lib/services/pli-cnf-document-management.service.js +0 -41
- package/esm5/lib/services/pli-cnf-dynamic-keys-assign.service.js +0 -53
- package/esm5/lib/services/pli-cnf-evaluation-task.service.js +0 -114
- package/esm5/lib/services/pli-cnf-evaluation-template.service.js +0 -96
- package/esm5/lib/services/pli-cnf-form-edit.service.js +0 -69
- package/esm5/lib/services/pli-cnf-form-multiaplicacion.service.js +0 -47
- package/esm5/lib/services/pli-cnf-guarantee-documents-template.service.js +0 -41
- package/esm5/lib/services/pli-cnf-guarantee-token.service.js +0 -43
- package/esm5/lib/services/pli-cnf-header.service.js +0 -40
- package/esm5/lib/services/pli-cnf-indicator.service.js +0 -40
- package/esm5/lib/services/pli-cnf-information-system.service.js +0 -26
- package/esm5/lib/services/pli-cnf-interaction.service.js +0 -79
- package/esm5/lib/services/pli-cnf-letter-template-type.service.js +0 -32
- package/esm5/lib/services/pli-cnf-look-and-feel.service.js +0 -29
- package/esm5/lib/services/pli-cnf-menu-form.service.js +0 -35
- package/esm5/lib/services/pli-cnf-migration-plis-field-budget.service.js +0 -34
- package/esm5/lib/services/pli-cnf-migration-plis-field.service.js +0 -48
- package/esm5/lib/services/pli-cnf-migration-status-plis.service.js +0 -45
- package/esm5/lib/services/pli-cnf-page-section-form.service.js +0 -67
- package/esm5/lib/services/pli-cnf-page-sub-process.service.js +0 -27
- package/esm5/lib/services/pli-cnf-pdfs.service.js +0 -33
- package/esm5/lib/services/pli-cnf-profile-form.service.js +0 -41
- package/esm5/lib/services/pli-cnf-profile-user.service.js +0 -50
- package/esm5/lib/services/pli-cnf-project-summary.service.js +0 -40
- package/esm5/lib/services/pli-cnf-scenario.service.js +0 -48
- package/esm5/lib/services/pli-cnf-segmentation.service.js +0 -73
- package/esm5/lib/services/pli-cnf-snapshot-token.service.js +0 -43
- package/esm5/lib/services/pli-cnf-status-flow-interaction.service.js +0 -75
- package/esm5/lib/services/pli-cnf-status-flow.service.js +0 -53
- package/esm5/lib/services/pli-cnf-support-document.service.js +0 -48
- package/esm5/lib/services/pli-cnf-survey-document.service.js +0 -38
- package/esm5/lib/services/pli-cnf-survey-pdf.service.js +0 -35
- package/esm5/lib/services/pli-cnf-survey.service.js +0 -47
- package/esm5/lib/services/pli-cnf-task-group.service.js +0 -35
- package/esm5/lib/services/pli-cnf-text-category.service.js +0 -39
- package/esm5/lib/services/pli-cnf-text-option.service.js +0 -40
- package/esm5/lib/services/pli-cnf-text.service.js +0 -63
- package/esm5/lib/services/pli-cnf-type-text.service.js +0 -46
- package/esm5/lib/services/pli-cnf-university-article.service.js +0 -40
- package/esm5/lib/services/pli-cnf-user-calendar.service.js +0 -38
- package/esm5/lib/services/pli-cnf-user-workspace.service.js +0 -36
- package/esm5/lib/services/pli-cnf-valpro-keys.service.js +0 -36
- package/esm5/lib/services/pli-cnf-workspace-segmentation.service.js +0 -32
- package/esm5/lib/services/pli-multiple-value-filter.service.js +0 -40
- package/esm5/lib/services/pli-promocion-username.service.js +0 -58
- package/esm5/lib/services/pli-seg-action-user.service.js +0 -40
- package/esm5/lib/services/pli-segmentation.service.js +0 -133
- package/esm5/lib/services/pli-tag-assignment.service.js +0 -37
- package/esm5/lib/services/pli-tag.service.js +0 -56
- package/esm5/lib/services/pli-user.service.js +0 -52
- package/esm5/lib/services/ppp.service.js +0 -528
- package/esm5/lib/services/profile.service.js +0 -61
- package/esm5/lib/services/progress-bar.service.js +0 -34
- package/esm5/lib/services/promotion-score.service.js +0 -45
- package/esm5/lib/services/segmentation-tokens.service.js +0 -45
- package/esm5/lib/services/segmentation-user-service.service.js +0 -91
- package/esm5/lib/services/segmentation.service.js +0 -32
- package/esm5/lib/services/send-application.service.js +0 -692
- package/esm5/lib/services/sesion-form.service.js +0 -32
- package/esm5/lib/services/sesion.service.js +0 -46
- package/esm5/lib/services/spinner.service.js +0 -16
- package/esm5/lib/services/sponsorship-letter.service.js +0 -72
- package/esm5/lib/services/status.service.js +0 -103
- package/esm5/lib/services/summary-budget.service.js +0 -26
- package/esm5/lib/services/survey-metadata.service.js +0 -29
- package/esm5/lib/services/survey-queue.service.js +0 -26
- package/esm5/lib/services/survey.service.js +0 -53
- package/esm5/lib/services/tasa.cambio.service.js +0 -27
- package/esm5/lib/services/token-transformation.service.js +0 -63
- package/esm5/lib/services/token.service.js +0 -1253
- package/esm5/lib/services/university.service.js +0 -51
- package/esm5/lib/services/upload-documents.service.js +0 -68
- package/esm5/lib/services/user.service.js +0 -29
- package/esm5/lib/services/visualization-committee.service.js +0 -87
- package/esm5/lib/utils/custom-validator.js +0 -99
- package/esm5/lib/utils/form-util.js +0 -39
- package/esm5/lib/utils/formio-util.js +0 -603
- package/esm5/lib/utils/version-commons.js +0 -14
- package/esm5/ng-pli-commons.js +0 -7
- package/esm5/public_api.js +0 -175
- package/esm5/version.js +0 -29
- package/fesm2015/ng-pli-commons.js.map +0 -1
- package/fesm5/ng-pli-commons.js +0 -16203
- package/fesm5/ng-pli-commons.js.map +0 -1
- package/ng-pli-commons.metadata.json +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# NgPliCommons
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project ng-pli-commons` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project ng-pli-commons`.
|
|
8
|
+
> Note: Don't forget to add `--project ng-pli-commons` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build ng-pli-commons` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build ng-pli-commons`, go to the dist folder `cd dist/ng-pli-commons` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test ng-pli-commons` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { CommonListsComponent } from './common.lists.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../services/common.service";
|
|
5
|
+
export class BackofficeCommonsComponent extends CommonListsComponent {
|
|
6
|
+
constructor(commonService, cdRef) {
|
|
7
|
+
super(commonService, cdRef);
|
|
8
|
+
this.commonService = commonService;
|
|
9
|
+
this.cdRef = cdRef;
|
|
10
|
+
this.fullWidth = false;
|
|
11
|
+
}
|
|
12
|
+
ngOnInit() {
|
|
13
|
+
super.ngOnInit();
|
|
14
|
+
if (this.fullWidth) {
|
|
15
|
+
const element = document.getElementById('mainContainer');
|
|
16
|
+
if (element) {
|
|
17
|
+
element.classList.remove('container');
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
ngOnDestroy() {
|
|
22
|
+
if (this.fullWidth) {
|
|
23
|
+
const element = document.getElementById('mainContainer');
|
|
24
|
+
if (element) {
|
|
25
|
+
element.classList.add('container');
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
BackofficeCommonsComponent.BEST_SCENARIO_COLUMN_ID = '-6';
|
|
31
|
+
BackofficeCommonsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: BackofficeCommonsComponent, deps: [{ token: i1.CommonService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
32
|
+
BackofficeCommonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.5", type: BackofficeCommonsComponent, selector: "app-backoffice-commons", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
33
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: BackofficeCommonsComponent, decorators: [{
|
|
34
|
+
type: Component,
|
|
35
|
+
args: [{
|
|
36
|
+
selector: 'app-backoffice-commons',
|
|
37
|
+
template: ''
|
|
38
|
+
}]
|
|
39
|
+
}], ctorParameters: function () { return [{ type: i1.CommonService }, { type: i0.ChangeDetectorRef }]; } });
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFja29mZmljZS5jb21tb25zLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25nLXBsaS1jb21tb25zL3NyYy9saWIvY29tcG9uZW50cy9iYWNrb2ZmaWNlLmNvbW1vbnMuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBd0MsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRWhGLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDBCQUEwQixDQUFDOzs7QUFPaEUsTUFBTSxPQUFnQiwwQkFDckIsU0FBUSxvQkFBb0I7SUFNNUIsWUFBc0IsYUFBNEIsRUFBWSxLQUF3QjtRQUNyRixLQUFLLENBQUMsYUFBYSxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBRFAsa0JBQWEsR0FBYixhQUFhLENBQWU7UUFBWSxVQUFLLEdBQUwsS0FBSyxDQUFtQjtRQUZ0RixjQUFTLEdBQVksS0FBSyxDQUFDO0lBSTNCLENBQUM7SUFFRCxRQUFRO1FBQ1AsS0FBSyxDQUFDLFFBQVEsRUFBRSxDQUFDO1FBQ2pCLElBQUksSUFBSSxDQUFDLFNBQVMsRUFBRTtZQUNuQixNQUFNLE9BQU8sR0FBRyxRQUFRLENBQUMsY0FBYyxDQUFDLGVBQWUsQ0FBQyxDQUFDO1lBQ3pELElBQUksT0FBTyxFQUFFO2dCQUNaLE9BQU8sQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLFdBQVcsQ0FBQyxDQUFDO2FBQ3RDO1NBQ0Q7SUFDRixDQUFDO0lBRUQsV0FBVztRQUNWLElBQUksSUFBSSxDQUFDLFNBQVMsRUFBRTtZQUNuQixNQUFNLE9BQU8sR0FBRyxRQUFRLENBQUMsY0FBYyxDQUFDLGVBQWUsQ0FBQyxDQUFDO1lBQ3pELElBQUksT0FBTyxFQUFFO2dCQUNaLE9BQU8sQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLFdBQVcsQ0FBQyxDQUFDO2FBQ25DO1NBQ0Q7SUFDRixDQUFDOztBQXhCZSxrREFBdUIsR0FBRyxJQUFLLENBQUE7dUhBSjFCLDBCQUEwQjsyR0FBMUIsMEJBQTBCLHFGQUZsQyxFQUFFOzJGQUVNLDBCQUEwQjtrQkFKL0MsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsd0JBQXdCO29CQUNsQyxRQUFRLEVBQUUsRUFBRTtpQkFDZiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9uSW5pdCwgQ2hhbmdlRGV0ZWN0b3JSZWYsIE9uRGVzdHJveSwgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IENvbW1vblNlcnZpY2UgfSBmcm9tICcuLi9zZXJ2aWNlcy9jb21tb24uc2VydmljZSc7XHJcbmltcG9ydCB7IENvbW1vbkxpc3RzQ29tcG9uZW50IH0gZnJvbSAnLi9jb21tb24ubGlzdHMuY29tcG9uZW50JztcclxuaW1wb3J0IHsgU3Bpbm5lclNlcnZpY2UgfSBmcm9tICcuLi9zZXJ2aWNlcy9zcGlubmVyLnNlcnZpY2UnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgICBzZWxlY3RvcjogJ2FwcC1iYWNrb2ZmaWNlLWNvbW1vbnMnLFxyXG4gICAgdGVtcGxhdGU6ICcnXHJcbn0pXHJcbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBCYWNrb2ZmaWNlQ29tbW9uc0NvbXBvbmVudFxyXG5cdGV4dGVuZHMgQ29tbW9uTGlzdHNDb21wb25lbnRcclxuXHRpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95XHJcbntcclxuXHRzdGF0aWMgcmVhZG9ubHkgQkVTVF9TQ0VOQVJJT19DT0xVTU5fSUQgPSAnLTYnO1xyXG5cdGZ1bGxXaWR0aDogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuXHRjb25zdHJ1Y3Rvcihwcm90ZWN0ZWQgY29tbW9uU2VydmljZTogQ29tbW9uU2VydmljZSwgcHJvdGVjdGVkIGNkUmVmOiBDaGFuZ2VEZXRlY3RvclJlZikge1xyXG5cdFx0c3VwZXIoY29tbW9uU2VydmljZSwgY2RSZWYpO1xyXG5cdH1cclxuXHJcblx0bmdPbkluaXQoKSB7XHJcblx0XHRzdXBlci5uZ09uSW5pdCgpO1xyXG5cdFx0aWYgKHRoaXMuZnVsbFdpZHRoKSB7XHJcblx0XHRcdGNvbnN0IGVsZW1lbnQgPSBkb2N1bWVudC5nZXRFbGVtZW50QnlJZCgnbWFpbkNvbnRhaW5lcicpO1xyXG5cdFx0XHRpZiAoZWxlbWVudCkge1xyXG5cdFx0XHRcdGVsZW1lbnQuY2xhc3NMaXN0LnJlbW92ZSgnY29udGFpbmVyJyk7XHJcblx0XHRcdH1cclxuXHRcdH1cclxuXHR9XHJcblxyXG5cdG5nT25EZXN0cm95KCkge1xyXG5cdFx0aWYgKHRoaXMuZnVsbFdpZHRoKSB7XHJcblx0XHRcdGNvbnN0IGVsZW1lbnQgPSBkb2N1bWVudC5nZXRFbGVtZW50QnlJZCgnbWFpbkNvbnRhaW5lcicpO1xyXG5cdFx0XHRpZiAoZWxlbWVudCkge1xyXG5cdFx0XHRcdGVsZW1lbnQuY2xhc3NMaXN0LmFkZCgnY29udGFpbmVyJyk7XHJcblx0XHRcdH1cclxuXHRcdH1cclxuXHR9XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
import { Inject, LOCALE_ID, Component } from '@angular/core';
|
|
2
|
+
import { UtilString, primeLocaleEs, EPermission, DateUtil } from 'ng-pli-util';
|
|
3
|
+
import { FormUtil } from '../utils/form-util';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "../services/common.service";
|
|
6
|
+
export class CommonListsComponent {
|
|
7
|
+
constructor(commonService, cdRef) {
|
|
8
|
+
this.commonService = commonService;
|
|
9
|
+
this.cdRef = cdRef;
|
|
10
|
+
}
|
|
11
|
+
ngOnInit() {
|
|
12
|
+
this.onCurrencyInit();
|
|
13
|
+
this.primeLocaleEs = primeLocaleEs;
|
|
14
|
+
}
|
|
15
|
+
/** It prints the monCode */
|
|
16
|
+
printCurrencyCode(currency) {
|
|
17
|
+
return currency.monCodigoIso + '-' + currency.monMoneda;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Init the info of currencies
|
|
21
|
+
*/
|
|
22
|
+
onCurrencyInit() {
|
|
23
|
+
// Subcription to the currency Subject
|
|
24
|
+
this.commonService.onCurrencyChanged().subscribe((lCurrency) => {
|
|
25
|
+
if (lCurrency) {
|
|
26
|
+
this.lCurrency = lCurrency;
|
|
27
|
+
this.lSICurrency = [];
|
|
28
|
+
for (let key in this.lCurrency) {
|
|
29
|
+
let currency = this.lCurrency[key];
|
|
30
|
+
this.lSICurrency.push({
|
|
31
|
+
label: this.printCurrencyCode(currency),
|
|
32
|
+
value: currency
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
// Subcription to the category Subject
|
|
38
|
+
this.commonService.onCategoryChanged().subscribe((lCategory) => {
|
|
39
|
+
if (lCategory) {
|
|
40
|
+
this.lCategory = lCategory;
|
|
41
|
+
this.lSICategory = [];
|
|
42
|
+
for (let key in this.lCategory) {
|
|
43
|
+
let category = this.lCategory[key];
|
|
44
|
+
this.lSICategory.push({
|
|
45
|
+
label: category.rubRubro,
|
|
46
|
+
value: category
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
// Subcription to the language Subject
|
|
52
|
+
this.commonService.onLanguageChanged().subscribe((lLanguage) => {
|
|
53
|
+
if (lLanguage) {
|
|
54
|
+
this.lLanguage = lLanguage;
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
// Subcription to the category Subject
|
|
58
|
+
this.commonService.onExchangeRateChanged().subscribe((lExchangeRate) => {
|
|
59
|
+
if (lExchangeRate) {
|
|
60
|
+
this.lExchangeRate = lExchangeRate;
|
|
61
|
+
this.adjustmentIsoExchange();
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
// Subcription to the category Subject
|
|
65
|
+
this.commonService.onProcessChanged().subscribe((lProcess) => {
|
|
66
|
+
if (lProcess) {
|
|
67
|
+
this.lProcess = lProcess;
|
|
68
|
+
this.lSIProcess = [];
|
|
69
|
+
for (let key in this.lProcess) {
|
|
70
|
+
let process = this.lProcess[key];
|
|
71
|
+
this.lSIProcess.push({
|
|
72
|
+
label: process.proNombre,
|
|
73
|
+
value: process
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
this.commonService.initValues();
|
|
79
|
+
}
|
|
80
|
+
adjustmentIsoExchange() {
|
|
81
|
+
// let i = 0;
|
|
82
|
+
let lIsoExchage = [];
|
|
83
|
+
for (let key in this.lExchangeRate) {
|
|
84
|
+
let exchangeRate = this.lExchangeRate[key];
|
|
85
|
+
let isoExchage = [];
|
|
86
|
+
if (lIsoExchage[exchangeRate.monedaOrigen.monCodigoIso] !== undefined) {
|
|
87
|
+
isoExchage = lIsoExchage[exchangeRate.monedaOrigen.monCodigoIso];
|
|
88
|
+
}
|
|
89
|
+
isoExchage[exchangeRate.monedaDestino.monCodigoIso] = exchangeRate;
|
|
90
|
+
lIsoExchage[exchangeRate.monedaOrigen.monCodigoIso] = isoExchage;
|
|
91
|
+
// console.log(i);
|
|
92
|
+
// i++;
|
|
93
|
+
}
|
|
94
|
+
if (lIsoExchage) {
|
|
95
|
+
this.lIsoExchangeRate = [];
|
|
96
|
+
for (let key in lIsoExchage) {
|
|
97
|
+
for (let keyIso in lIsoExchage[key]) {
|
|
98
|
+
let exchangeRate = lIsoExchage[key][keyIso];
|
|
99
|
+
this.lIsoExchangeRate[key + '-' + keyIso] = exchangeRate.tcamTasaCambio;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
/** It returns a boolean if the control has any error */
|
|
105
|
+
hasErrors(formControl) {
|
|
106
|
+
return FormUtil.hasErrors(formControl);
|
|
107
|
+
}
|
|
108
|
+
/** It returns a boolean if the control has a specific error */
|
|
109
|
+
hasError(formControl, error) {
|
|
110
|
+
return FormUtil.hasError(formControl, error);
|
|
111
|
+
}
|
|
112
|
+
/** It validates if form is valid */
|
|
113
|
+
isFormValid(formGroup) {
|
|
114
|
+
FormUtil.validateFormFields(formGroup);
|
|
115
|
+
if (formGroup.valid) {
|
|
116
|
+
return true;
|
|
117
|
+
}
|
|
118
|
+
else {
|
|
119
|
+
console.log('Invalid controls: ', FormUtil.getInvalidControls(formGroup));
|
|
120
|
+
return false;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
copyMessage(val) {
|
|
124
|
+
UtilString.copyMessage(val);
|
|
125
|
+
}
|
|
126
|
+
// ngOnDestroy() {
|
|
127
|
+
// try {
|
|
128
|
+
// this.commonService.currencyChanged.unsubscribe();
|
|
129
|
+
// } catch (error) {
|
|
130
|
+
// console.log("commonService.currencyChanged.unsubscribe", error);
|
|
131
|
+
// }
|
|
132
|
+
// try {
|
|
133
|
+
// this.commonService.categoryChanged.unsubscribe();
|
|
134
|
+
// } catch (error) {
|
|
135
|
+
// console.log("commonService.categoryChanged.unsubscribe", error);
|
|
136
|
+
// }
|
|
137
|
+
// try {
|
|
138
|
+
// this.commonService.exchangeRateChanged.unsubscribe();
|
|
139
|
+
// } catch (error) {
|
|
140
|
+
// console.log("commonService.exchangeRateChanged.unsubscribe", error);
|
|
141
|
+
// }
|
|
142
|
+
// }
|
|
143
|
+
/** returns the permission according to x */
|
|
144
|
+
p(x) {
|
|
145
|
+
return EPermission[x];
|
|
146
|
+
}
|
|
147
|
+
cloneObject(obj) {
|
|
148
|
+
if (null == obj || 'object' != typeof obj)
|
|
149
|
+
return obj;
|
|
150
|
+
var copy = obj.constructor();
|
|
151
|
+
for (var attr in obj) {
|
|
152
|
+
if (obj.hasOwnProperty(attr))
|
|
153
|
+
copy[attr] = this.cloneObject(obj[attr]);
|
|
154
|
+
}
|
|
155
|
+
return copy;
|
|
156
|
+
}
|
|
157
|
+
getActualDate(reload = false) {
|
|
158
|
+
reload = reload === undefined ? !UtilString.isValid(this.actualDate) : reload;
|
|
159
|
+
return new Promise((resolve, reject) => {
|
|
160
|
+
if (reload) {
|
|
161
|
+
this.commonService.getActualDate().subscribe((actualDate) => {
|
|
162
|
+
this.actualDate = actualDate;
|
|
163
|
+
resolve(actualDate);
|
|
164
|
+
}, (error) => {
|
|
165
|
+
reject(error);
|
|
166
|
+
});
|
|
167
|
+
}
|
|
168
|
+
else {
|
|
169
|
+
resolve(this.actualDate);
|
|
170
|
+
}
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
get timeZoneBogota() {
|
|
174
|
+
return DateUtil.UTC_AMERICA_BOGOTA;
|
|
175
|
+
}
|
|
176
|
+
get utcBogota() {
|
|
177
|
+
return DateUtil.UTC_AMERICA_BOGOTA;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
/** Static per page label */
|
|
181
|
+
CommonListsComponent.LABEL_RECORDS_PER_PAGE = 'Registros por página';
|
|
182
|
+
CommonListsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: CommonListsComponent, deps: [{ token: i1.CommonService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
183
|
+
CommonListsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.5", type: CommonListsComponent, selector: "app-administration", ngImport: i0, template: '', isInline: true });
|
|
184
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: CommonListsComponent, decorators: [{
|
|
185
|
+
type: Component,
|
|
186
|
+
args: [{
|
|
187
|
+
selector: 'app-administration',
|
|
188
|
+
template: ''
|
|
189
|
+
}]
|
|
190
|
+
}], ctorParameters: function () { return [{ type: i1.CommonService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { locale: [{
|
|
191
|
+
type: Inject,
|
|
192
|
+
args: [LOCALE_ID]
|
|
193
|
+
}] } });
|
|
194
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbW9uLmxpc3RzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25nLXBsaS1jb21tb25zL3NyYy9saWIvY29tcG9uZW50cy9jb21tb24ubGlzdHMuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBNkIsTUFBTSxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFeEYsT0FBTyxFQUNOLFVBQVUsRUFLVixhQUFhLEVBR2IsV0FBVyxFQUNYLFFBQVEsRUFDUixNQUFNLGFBQWEsQ0FBQztBQUVyQixPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7OztBQU05QyxNQUFNLE9BQWdCLG9CQUFvQjtJQW1DekMsWUFBc0IsYUFBNEIsRUFBWSxLQUF3QjtRQUFoRSxrQkFBYSxHQUFiLGFBQWEsQ0FBZTtRQUFZLFVBQUssR0FBTCxLQUFLLENBQW1CO0lBQUcsQ0FBQztJQUUxRixRQUFRO1FBQ1AsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ3RCLElBQUksQ0FBQyxhQUFhLEdBQUcsYUFBYSxDQUFDO0lBQ3BDLENBQUM7SUFFRCw0QkFBNEI7SUFDcEIsaUJBQWlCLENBQUMsUUFBZ0I7UUFDekMsT0FBTyxRQUFRLENBQUMsWUFBWSxHQUFHLEdBQUcsR0FBRyxRQUFRLENBQUMsU0FBUyxDQUFDO0lBQ3pELENBQUM7SUFFRDs7T0FFRztJQUNILGNBQWM7UUFDYixzQ0FBc0M7UUFDdEMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxpQkFBaUIsRUFBRSxDQUFDLFNBQVMsQ0FBQyxDQUFDLFNBQW1CLEVBQUUsRUFBRTtZQUN4RSxJQUFJLFNBQVMsRUFBRTtnQkFDZCxJQUFJLENBQUMsU0FBUyxHQUFHLFNBQVMsQ0FBQztnQkFDM0IsSUFBSSxDQUFDLFdBQVcsR0FBRyxFQUFFLENBQUM7Z0JBQ3RCLEtBQUssSUFBSSxHQUFHLElB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QyxPQUFPLEVBQUUsTUFBTSxFQUFFLEVBQUU7WUFDdEMsSUFBSSxNQUFNLEVBQUU7Z0JBQ1gsSUFBSSxDQUFDLGFBQWEsQ0FBQyxhQUFhLEVBQUUsQ0FBQyxTQUFTLENBQzNDLENBQUMsVUFBa0IsRUFBRSxFQUFFO29CQUN0QixJQUFJLENBQUMsVUFBVSxHQUFHLFVBQVUsQ0FBQztvQkFDN0IsT0FBTyxDQUFDLFVBQVUsQ0FBQyxDQUFDO2dCQUNyQixDQUFDLEVBQ0QsQ0FBQyxLQUFLLEVBQUUsRUFBRTtvQkFDVCxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7Z0JBQ2YsQ0FBQyxDQUNELENBQUM7YUFDRjtpQkFBTTtnQkFDTixPQUFPLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO2FBQ3pCO1FBQ0YsQ0FBQyxDQUFDLENBQUM7SUFDSixDQUFDO0lBRUQsSUFBSSxjQUFjO1FBQ2pCLE9BQU8sUUFBUSxDQUFDLGtCQUFrQixDQUFDO0lBQ3BDLENBQUM7SUFFRCxJQUFJLFNBQVM7UUFDWixPQUFPLFFBQVEsQ0FBQyxrQkFBa0IsQ0FBQztJQUNwQyxDQUFDOztBQXZORCw0QkFBNEI7QUFDckIsMkNBQXNCLEdBQVcsc0JBQXVCLENBQUE7aUhBRjFDLG9CQUFvQjtxR0FBcEIsb0JBQW9CLDBEQUY1QixFQUFFOzJGQUVNLG9CQUFvQjtrQkFKekMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsb0JBQW9CO29CQUM5QixRQUFRLEVBQUUsRUFBRTtpQkFDZjtvSUFNMEIsTUFBTTtzQkFBL0IsTUFBTTt1QkFBQyxTQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT25Jbml0LCBDaGFuZ2VEZXRlY3RvclJlZiwgSW5qZWN0LCBMT0NBTEVfSUQsIENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQ29udHJvbCwgRm9ybUdyb3VwIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5pbXBvcnQge1xyXG5cdFV0aWxTdHJpbmcsXHJcblx0TW9uZWRhLFxyXG5cdFRhc2FDYW1iaW8sXHJcblx0U2VsZWN0SXRlbSxcclxuXHRSdWJybyxcclxuXHRwcmltZUxvY2FsZUVzLFxyXG5cdElkaW9tYSxcclxuXHRQcm9jZXNvLFxyXG5cdEVQZXJtaXNzaW9uLFxyXG5cdERhdGVVdGlsXHJcbn0gZnJvbSAnbmctcGxpLXV0aWwnO1xyXG5pbXBvcnQgeyBDb21tb25TZXJ2aWNlIH0gZnJvbSAnLi4vc2VydmljZXMvY29tbW9uLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBGb3JtVXRpbCB9IGZyb20gJy4uL3V0aWxzL2Zvcm0tdXRpbCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICAgIHNlbGVjdG9yOiAnYXBwLWFkbWluaXN0cmF0aW9uJyxcclxuICAgIHRlbXBsYXRlOiAnJ1xyXG59KVxyXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgQ29tbW9uTGlzdHNDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG5cdC8qKiBTdGF0aWMgcGVyIHBhZ2UgbGFiZWwgKi9cclxuXHRzdGF0aWMgTEFCRUxfUkVDT1JEU19QRVJfUEFHRTogc3RyaW5nID0gJ1JlZ2lzdHJvcyBwb3IgcMOhZ2luYSc7XHJcblxyXG5cdC8qKiAqL1xyXG5cdEBJbmplY3QoTE9DQUxFX0lEKSBwdWJsaWMgbG9jYWxlOiBzdHJpbmc7XHJcblx0LyoqIExpc3Qgb2YgY3VycmVuY3kgKi9cclxuXHRsQ3VycmVuY3k6IE1vbmVkYVtdO1xyXG5cdC8qKiBMaXN0IG9mIGN1cnJlbmN5ICovXHJcblx0bFNJQ3VycmVuY3k6IFNlbGVjdEl0ZW1bXTtcclxuXHQvKiogVGhlIHN1YnNjcmlwdGlvbiBvZiB0aGUgY3VycmVuY2llcyAqL1xyXG5cclxuXHQvKiogTGlzdCBvZiBjYXRlZ29yaWVzICovXHJcblx0bENhdGVnb3J5OiBSdWJyb1tdO1xyXG5cdC8qKiBMaXN0IG9mIGNhdGVnb3J5ICovXHJcblx0bFNJQ2F0ZWdvcnk6IFNlbGVjdEl0ZW1bXTtcclxuXHQvKiogVGhlIHN1YnNjcmlwdGlvbiBvZiB0aGUgY2F0ZWdvcmllcyAqL1xyXG5cclxuXHQvKiogTGlzdCBvZiBjYXRlZ29yaWVzICovXHJcblx0bEV4Y2hhbmdlUmF0ZTogVGFzYUNhbWJpb1tdO1xyXG5cdC8qKiBMaXN0IG9mIGV4Y2hhbmdlIHJhdGUgYnkgSVNPIG9yaWdpbiAtIGRlc3Rpbnk6IFVTRC1DT1AgKi9cclxuXHRsSXNvRXhjaGFuZ2VSYXRlOiBhbnk7XHJcblx0LyoqICovXHJcblx0cHJpbWVMb2NhbGVFczogYW55O1xyXG5cclxuXHQvKiogTGlzdCBvZiBsYW5ndWFnZSAqL1xyXG5cdGxMYW5ndWFnZTogSWRpb21hW107XHJcblxyXG5cdC8qKiBMaXN0IG9mIFByb2Nlc3MgKi9cclxuXHRsUHJvY2VzczogUHJvY2Vzb1tdO1xyXG5cdC8qKiBMaXN0IG9mIHByb2Nlc3MgKi9cclxuXHRsU0lQcm9jZXNzOiBTZWxlY3RJdGVtW107XHJcblx0LyoqIGdldE1vbWVudCBtb21lbnQgaW5zdGFuY2UgKi9cclxuXHRhY3R1YWxEYXRlOiBhbnk7XHJcblxyXG5cdGNvbnN0cnVjdG9yKHByb3RlY3RlZCBjb21tb25TZXJ2aWNlOiBDb21tb25TZXJ2aWNlLCBwcm90ZWN0ZWQgY2RSZWY6IENoYW5nZURldGVjdG9yUmVmKSB7fVxyXG5cclxuXHRuZ09uSW5pdCgpIHtcclxuXHRcdHRoaXMub25DdXJyZW5jeUluaXQoKTtcclxuXHRcdHRoaXMucHJpbWVMb2NhbGVFcyA9IHByaW1lTG9jYWxlRXM7XHJcblx0fVxyXG5cclxuXHQvKiogSXQgcHJpbnRzIHRoZSBtb25Db2RlICovXHJcblx0cHJpdmF0ZSBwcmludEN1cnJlbmN5Q29kZShjdXJyZW5jeTogTW9uZWRhKTogc3RyaW5nIHtcclxuXHRcdHJldHVybiBjdXJyZW5jeS5tb25Db2RpZ29Jc28gKyAnLScgKyBjdXJyZW5jeS5tb25Nb25lZGE7XHJcblx0fVxyXG5cclxuXHQvKipcclxuXHQgKiBJbml0IHRoZSBpbmZvIG9mIGN1cnJlbmNpZXNcclxuXHQgKi9cclxuXHRvbkN1cnJlbmN5SW5pdCgpIHtcclxuXHRcdC8vIFN1YmNyaXB0aW9uIHRvIHRoZSBjdXJyZW5jeSBTdWJqZWN0XHJcblx0XHR0aGlzLmNvbW1vblNlcnZpY2Uub25DdXJyZW5jeUNoYW5nZWQoKS5zdWJzY3JpYmUoKGxDdXJyZW5jeTogTW9uZWRhW10pID0+IHtcclxuXHRcdFx0aWYgKGxDdXJyZW5jeSkge1xyXG5cdFx0XHRcdHRoaXMubEN1cnJlbmN5ID0gbEN1cnJlbmN5O1xyXG5cdFx0XHRcdHRoaXMubFNJQ3VycmVuY3kgPSBbXTtcclxuXHRcdFx0XHRmb3IgKGxldCBrZXkgaW4gdGhpcy5sQ3VycmVuY3kpIHtcclxuXHRcdFx0XHRcdGxldCBjdXJyZW5jeTogTW9uZWRhID0gdGhpcy5sQ3VycmVuY3lba2V5XTtcclxuXHRcdFx0XHRcdHRoaXMubFNJQ3VycmVuY3kucHVzaCh7XHJcblx0XHRcdFx0XHRcdGxhYmVsOiB0aGlzLnByaW50Q3VycmVuY3lDb2RlKGN1cnJlbmN5KSxcclxuXHRcdFx0XHRcdFx0dmFsdWU6IGN1cnJlbmN5XHJcblx0XHRcdFx0XHR9KTtcclxuXHRcdFx0XHR9XHJcblx0XHRcdH1cclxuXHRcdH0pO1xyXG5cdFx0Ly8gU3ViY3JpcHRpb24gdG8gdGhlIGNhdGVnb3J5IFN1YmplY3RcclxuXHRcdHRoaXMuY29tbW9uU2VydmljZS5vbkNhdGVnb3J5Q2hhbmdlZCgpLnN1YnNjcmliZSgobENhdGVnb3J5OiBSdWJyb1tdKSA9PiB7XHJcblx0XHRcdGlmIChsQ2F0ZWdvcnkpIHtcclxuXHRcdFx0XHR0aGlzLmxDYXRlZ29yeSA9IGxDYXRlZ29yeTtcclxuXHRcdFx0XHR0aGlzLmxTSUNhdGVnb3J5ID0gW107XHJcblx0XHRcdFx0Zm9yIChsZXQga2V5IGluIHRoaXMubENhdGVnb3J5KSB7XHJcblx0XHRcdFx0XHRsZXQgY2F0ZWdvcnk6IFJ1YnJvID0gdGhpcy5sQ2F0ZWdvcnlba2V5XTtcclxuXHRcdFx0XHRcdHRoaXMubFNJQ2F0ZWdvcnkucHVzaCh7XHJcblx0XHRcdFx0XHRcdGxhYmVsOiBjYXRlZ29yeS5ydWJSdWJybyxcclxuXHRcdFx0XHRcdFx0dmFsdWU6IGNhdGVnb3J5XHJcblx0XHRcdFx0XHR9KTtcclxuXHRcdFx0XHR9XHJcblx0XHRcdH1cclxuXHRcdH0pO1xyXG5cdFx0Ly8gU3ViY3JpcHRpb24gdG8gdGhlIGxhbmd1YWdlIFN1YmplY3RcclxuXHRcdHRoaXMuY29tbW9uU2VydmljZS5vbkxhbmd1YWdlQ2hhbmdlZCgpLnN1YnNjcmliZSgobExhbmd1YWdlOiBJZGlvbWFbXSkgPT4ge1xyXG5cdFx0XHRpZiAobExhbmd1YWdlKSB7XHJcblx0XHRcdFx0dGhpcy5sTGFuZ3VhZ2UgPSBsTGFuZ3VhZ2U7XHJcblx0XHRcdH1cclxuXHRcdH0pO1xyXG5cclxuXHRcdC8vIFN1YmNyaXB0aW9uIHRvIHRoZSBjYXRlZ29yeSBTdWJqZWN0XHJcblx0XHR0aGlzLmNvbW1vblNlcnZpY2Uub25FeGNoYW5nZVJhdGVDaGFuZ2VkKCkuc3Vic2NyaWJlKChsRXhjaGFuZ2VSYXRlOiBUYXNhQ2FtYmlvW10pID0+IHtcclxuXHRcdFx0aWYgKGxFeGNoYW5nZVJhdGUpIHtcclxuXHRcdFx0XHR0aGlzLmxFeGNoYW5nZVJhdGUgPSBsRXhjaGFuZ2VSYXRlO1xyXG5cdFx0XHRcdHRoaXMuYWRqdXN0bWVudElzb0V4Y2hhbmdlKCk7XHJcblx0XHRcdH1cclxuXHRcdH0pO1xyXG5cclxuXHRcdC8vIFN1YmNyaXB0aW9uIHRvIHRoZSBjYXRlZ29yeSBTdWJqZWN0XHJcblx0XHR0aGlzLmNvbW1vblNlcnZpY2Uub25Qcm9jZXNzQ2hhbmdlZCgpLnN1YnNjcmliZSgobFByb2Nlc3M6IFByb2Nlc29bXSkgPT4ge1xyXG5cdFx0XHRpZiAobFByb2Nlc3MpIHtcclxuXHRcdFx0XHR0aGlzLmxQcm9jZXNzID0gbFByb2Nlc3M7XHJcblx0XHRcdFx0dGhpcy5sU0lQcm9jZXNzID0gW107XHJcblx0XHRcdFx0Zm9yIChsZXQga2V5IGluIHRoaXMubFByb2Nlc3MpIHtcclxuXHRcdFx0XHRcdGxldCBwcm9jZXNzOiBQcm9jZXNvID0gdGhpcy5sUHJvY2Vzc1trZXldO1xyXG5cdFx0XHRcdFx0dGhpcy5sU0lQcm9jZXNzLnB1c2goe1xyXG5cdFx0XHRcdFx0XHRsYWJlbDogcHJvY2Vzcy5wcm9Ob21icmUsXHJcblx0XHRcdFx0XHRcdHZhbHVlOiBwcm9jZXNzXHJcblx0XHRcdFx0XHR9KTtcclxuXHRcdFx0XHR9XHJcblx0XHRcdH1cclxuXHRcdH0pO1xyXG5cdFx0dGhpcy5jb21tb25TZXJ2aWNlLmluaXRWYWx1ZXMoKTtcclxuXHR9XHJcblxyXG5cdGFkanVzdG1lbnRJc29FeGNoYW5nZSgpIHtcclxuXHRcdC8vIGxldCBpID0gMDtcclxuXHRcdGxldCBsSXNvRXhjaGFnZSA9IFtdO1xyXG5cdFx0Zm9yIChsZXQga2V5IGluIHRoaXMubEV4Y2hhbmdlUmF0ZSkge1xyXG5cdFx0XHRsZXQgZXhjaGFuZ2VSYXRlOiBUYXNhQ2FtYmlvID0gdGhpcy5sRXhjaGFuZ2VSYXRlW2tleV07XHJcblx0XHRcdGxldCBpc29FeGNoYWdlID0gW107XHJcblx0XHRcdGlmIChsSXNvRXhjaGFnZVtleGNoYW5nZVJhdGUubW9uZWRhT3JpZ2VuLm1vbkNvZGlnb0lzb10gIT09IHVuZGVmaW5lZCkge1xyXG5cdFx0XHRcdGlzb0V4Y2hhZ2UgPSBsSXNvRXhjaGFnZVtleGNoYW5nZVJhdGUubW9uZWRhT3JpZ2VuLm1vbkNvZGlnb0lzb107XHJcblx0XHRcdH1cclxuXHRcdFx0aXNvRXhjaGFnZVtleGNoYW5nZVJhdGUubW9uZWRhRGVzdGluby5tb25Db2RpZ29Jc29dID0gZXhjaGFuZ2VSYXRlO1xyXG5cdFx0XHRsSXNvRXhjaGFnZVtleGNoYW5nZVJhdGUubW9uZWRhT3JpZ2VuLm1vbkNvZGlnb0lzb10gPSBpc29FeGNoYWdlO1xyXG5cdFx0XHQvLyBjb25zb2xlLmxvZyhpKTtcclxuXHRcdFx0Ly8gaSsrO1xyXG5cdFx0fVxyXG5cdFx0aWYgKGxJc29FeGNoYWdlKSB7XHJcblx0XHRcdHRoaXMubElzb0V4Y2hhbmdlUmF0ZSA9IFtdO1xyXG5cdFx0XHRmb3IgKGxldCBrZXkgaW4gbElzb0V4Y2hhZ2UpIHtcclxuXHRcdFx0XHRmb3IgKGxldCBrZXlJc28gaW4gbElzb0V4Y2hhZ2Vba2V5XSkge1xyXG5cdFx0XHRcdFx0bGV0IGV4Y2hhbmdlUmF0ZTogVGFzYUNhbWJpbyA9IGxJc29FeGNoYWdlW2tleV1ba2V5SXNvXTtcclxuXHRcdFx0XHRcdHRoaXMubElzb0V4Y2hhbmdlUmF0ZVtrZXkgKyAnLScgKyBrZXlJc29dID0gZXhjaGFuZ2VSYXRlLnRjYW1UYXNhQ2FtYmlvO1xyXG5cdFx0XHRcdH1cclxuXHRcdFx0fVxyXG5cdFx0fVxyXG5cdH1cclxuXHJcblx0LyoqIEl0IHJldHVybnMgYSBib29sZWFuIGlmIHRoZSBjb250cm9sIGhhcyBhbnkgZXJyb3IgKi9cclxuXHRoYXNFcnJvcnMoZm9ybUNvbnRyb2w6IEZvcm1Db250cm9sKTogYm9vbGVhbiB7XHJcblx0XHRyZXR1cm4gRm9ybVV0aWwuaGFzRXJyb3JzKGZvcm1Db250cm9sKTtcclxuXHR9XHJcblx0LyoqIEl0IHJldHVybnMgYSBib29sZWFuIGlmIHRoZSBjb250cm9sIGhhcyBhIHNwZWNpZmljIGVycm9yICovXHJcblx0aGFzRXJyb3IoZm9ybUNvbnRyb2w6IEZvcm1Db250cm9sLCBlcnJvcjogc3RyaW5nKTogYm9vbGVhbiB7XHJcblx0XHRyZXR1cm4gRm9ybVV0aWwuaGFzRXJyb3IoZm9ybUNvbnRyb2wsIGVycm9yKTtcclxuXHR9XHJcblxyXG5cdC8qKiBJdCB2YWxpZGF0ZXMgaWYgZm9ybSBpcyB2YWxpZCAqL1xyXG5cdGlzRm9ybVZhbGlkKGZvcm1Hcm91cDogRm9ybUdyb3VwKTogYm9vbGVhbiB7XHJcblx0XHRGb3JtVXRpbC52YWxpZGF0ZUZvcm1GaWVsZHMoZm9ybUdyb3VwKTtcclxuXHRcdGlmIChmb3JtR3JvdXAudmFsaWQpIHtcclxuXHRcdFx0cmV0dXJuIHRydWU7XHJcblx0XHR9IGVsc2Uge1xyXG5cdFx0XHRjb25zb2xlLmxvZygnSW52YWxpZCBjb250cm9sczogJywgRm9ybVV0aWwuZ2V0SW52YWxpZENvbnRyb2xzKGZvcm1Hcm91cCkpO1xyXG5cdFx0XHRyZXR1cm4gZmFsc2U7XHJcblx0XHR9XHJcblx0fVxyXG5cclxuXHRjb3B5TWVzc2FnZSh2YWw6IHN0cmluZykge1xyXG5cdFx0VXRpbFN0cmluZy5jb3B5TWVzc2FnZSh2YWwpO1xyXG5cdH1cclxuXHJcblx0Ly8gbmdPbkRlc3Ryb3koKSB7XHJcblx0Ly8gICAgIHRyeSB7XHJcblx0Ly8gICAgICAgICB0aGlzLmNvbW1vblNlcnZpY2UuY3VycmVuY3lDaGFuZ2VkLnVuc3Vic2NyaWJlKCk7XHJcblx0Ly8gICAgIH0gY2F0Y2ggKGVycm9yKSB7XHJcblx0Ly8gICAgICAgICBjb25zb2xlLmxvZyhcImNvbW1vblNlcnZpY2UuY3VycmVuY3lDaGFuZ2VkLnVuc3Vic2NyaWJlXCIsIGVycm9yKTtcclxuXHQvLyAgICAgfVxyXG5cdC8vICAgICB0cnkge1xyXG5cdC8vICAgICAgICAgdGhpcy5jb21tb25TZXJ2aWNlLmNhdGVnb3J5Q2hhbmdlZC51bnN1YnNjcmliZSgpO1xyXG5cdC8vICAgICB9IGNhdGNoIChlcnJvcikge1xyXG5cdC8vICAgICAgICAgY29uc29sZS5sb2coXCJjb21tb25TZXJ2aWNlLmNhdGVnb3J5Q2hhbmdlZC51bnN1YnNjcmliZVwiLCBlcnJvcik7XHJcblx0Ly8gICAgIH1cclxuXHQvLyAgICAgdHJ5IHtcclxuXHQvLyAgICAgICAgIHRoaXMuY29tbW9uU2VydmljZS5leGNoYW5nZVJhdGVDaGFuZ2VkLnVuc3Vic2NyaWJlKCk7XHJcblx0Ly8gICAgIH0gY2F0Y2ggKGVycm9yKSB7XHJcblx0Ly8gICAgICAgICBjb25zb2xlLmxvZyhcImNvbW1vblNlcnZpY2UuZXhjaGFuZ2VSYXRlQ2hhbmdlZC51bnN1YnNjcmliZVwiLCBlcnJvcik7XHJcblx0Ly8gICAgIH1cclxuXHQvLyB9XHJcblx0LyoqIHJldHVybnMgdGhlIHBlcm1pc3Npb24gYWNjb3JkaW5nIHRvIHggKi9cclxuXHRwKHgpIHtcclxuXHRcdHJldHVybiBFUGVybWlzc2lvblt4XTtcclxuXHR9XHJcblxyXG5cdGNsb25lT2JqZWN0KG9iaikge1xyXG5cdFx0aWYgKG51bGwgPT0gb2JqIHx8ICdvYmplY3QnICE9IHR5cGVvZiBvYmopIHJldHVybiBvYmo7XHJcblx0XHR2YXIgY29weSA9IG9iai5jb25zdHJ1Y3RvcigpO1xyXG5cdFx0Zm9yICh2YXIgYXR0ciBpbiBvYmopIHtcclxuXHRcdFx0aWYgKG9iai5oYXNPd25Qcm9wZXJ0eShhdHRyKSkgY29weVthdHRyXSA9IHRoaXMuY2xvbmVPYmplY3Qob2JqW2F0dHJdKTtcclxuXHRcdH1cclxuXHRcdHJldHVybiBjb3B5O1xyXG5cdH1cclxuXHJcblx0Z2V0QWN0dWFsRGF0ZShyZWxvYWQ6IGJvb2xlYW4gPSBmYWxzZSk6IFByb21pc2U8c3RyaW5nPiB7XHJcblx0XHRyZWxvYWQgPSByZWxvYWQgPT09IHVuZGVmaW5lZCA/ICFVdGlsU3RyaW5nLmlzVmFsaWQodGhpcy5hY3R1YWxEYXRlKSA6IHJlbG9hZDtcclxuXHRcdHJldHVybiBuZXcgUHJvbWlzZSgocmVzb2x2ZSwgcmVqZWN0KSA9PiB7XHJcblx0XHRcdGlmIChyZWxvYWQpIHtcclxuXHRcdFx0XHR0aGlzLmNvbW1vblNlcnZpY2UuZ2V0QWN0dWFsRGF0ZSgpLnN1YnNjcmliZShcclxuXHRcdFx0XHRcdChhY3R1YWxEYXRlOiBzdHJpbmcpID0+IHtcclxuXHRcdFx0XHRcdFx0dGhpcy5hY3R1YWxEYXRlID0gYWN0dWFsRGF0ZTtcclxuXHRcdFx0XHRcdFx0cmVzb2x2ZShhY3R1YWxEYXRlKTtcclxuXHRcdFx0XHRcdH0sXHJcblx0XHRcdFx0XHQoZXJyb3IpID0+IHtcclxuXHRcdFx0XHRcdFx0cmVqZWN0KGVycm9yKTtcclxuXHRcdFx0XHRcdH1cclxuXHRcdFx0XHQpO1xyXG5cdFx0XHR9IGVsc2Uge1xyXG5cdFx0XHRcdHJlc29sdmUodGhpcy5hY3R1YWxEYXRlKTtcclxuXHRcdFx0fVxyXG5cdFx0fSk7XHJcblx0fVxyXG5cclxuXHRnZXQgdGltZVpvbmVCb2dvdGEoKTogc3RyaW5nIHtcclxuXHRcdHJldHVybiBEYXRlVXRpbC5VVENfQU1FUklDQV9CT0dPVEE7XHJcblx0fVxyXG5cclxuXHRnZXQgdXRjQm9nb3RhKCk6IHN0cmluZyB7XHJcblx0XHRyZXR1cm4gRGF0ZVV0aWwuVVRDX0FNRVJJQ0FfQk9HT1RBO1xyXG5cdH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class ConfigurationTokenSubjectService {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.subjectConfigurationToken = new Subject();
|
|
7
|
+
}
|
|
8
|
+
getSubjectConfigurationTokens() {
|
|
9
|
+
return this.subjectConfigurationToken.asObservable();
|
|
10
|
+
}
|
|
11
|
+
setSubjectConfigurationTokens(tokens) {
|
|
12
|
+
return this.subjectConfigurationToken.next(tokens);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
ConfigurationTokenSubjectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: ConfigurationTokenSubjectService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16
|
+
ConfigurationTokenSubjectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: ConfigurationTokenSubjectService, providedIn: 'root' });
|
|
17
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: ConfigurationTokenSubjectService, decorators: [{
|
|
18
|
+
type: Injectable,
|
|
19
|
+
args: [{
|
|
20
|
+
providedIn: 'root',
|
|
21
|
+
}]
|
|
22
|
+
}], ctorParameters: function () { return []; } });
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlndXJhdGlvbi10b2tlbi1zdWJqZWN0LnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZy1wbGktY29tbW9ucy9zcmMvbGliL2NvbXBvbmVudHMvY29uZmlndXJhdGlvbi10b2tlbi9jb25maWd1cmF0aW9uLXRva2VuLXN1YmplY3Quc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNDLE9BQU8sRUFBRSxPQUFPLEVBQWMsTUFBTSxNQUFNLENBQUM7O0FBSzNDLE1BQU0sT0FBTyxnQ0FBZ0M7SUFJM0M7UUFGUSw4QkFBeUIsR0FBRyxJQUFJLE9BQU8sRUFBUyxDQUFDO0lBRXpDLENBQUM7SUFFakIsNkJBQTZCO1FBQzNCLE9BQU8sSUFBSSxDQUFDLHlCQUF5QixDQUFDLFlBQVksRUFBRSxDQUFDO0lBQ3ZELENBQUM7SUFFRCw2QkFBNkIsQ0FBQyxNQUFhO1FBQ3pDLE9BQU8sSUFBSSxDQUFDLHlCQUF5QixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUNyRCxDQUFDOzs2SEFaVSxnQ0FBZ0M7aUlBQWhDLGdDQUFnQyxjQUYvQixNQUFNOzJGQUVQLGdDQUFnQztrQkFINUMsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFN1YmplY3QsIE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcclxuXHJcbkBJbmplY3RhYmxlKHtcclxuICBwcm92aWRlZEluOiAncm9vdCcsXHJcbiB9KVxyXG5leHBvcnQgY2xhc3MgQ29uZmlndXJhdGlvblRva2VuU3ViamVjdFNlcnZpY2Uge1xyXG5cclxuICBwcml2YXRlIHN1YmplY3RDb25maWd1cmF0aW9uVG9rZW4gPSBuZXcgU3ViamVjdDxhbnlbXT4oKTtcclxuXHJcbiAgY29uc3RydWN0b3IoKSB7IH1cclxuXHJcbiAgZ2V0U3ViamVjdENvbmZpZ3VyYXRpb25Ub2tlbnMoKTogT2JzZXJ2YWJsZTxhbnlbXT4ge1xyXG4gICAgcmV0dXJuIHRoaXMuc3ViamVjdENvbmZpZ3VyYXRpb25Ub2tlbi5hc09ic2VydmFibGUoKTtcclxuICB9XHJcblxyXG4gIHNldFN1YmplY3RDb25maWd1cmF0aW9uVG9rZW5zKHRva2VuczogYW55W10pIHtcclxuICAgIHJldHVybiB0aGlzLnN1YmplY3RDb25maWd1cmF0aW9uVG9rZW4ubmV4dCh0b2tlbnMpO1xyXG4gIH1cclxuICBcclxufVxyXG4iXX0=
|