@hmcts/ccd-case-ui-toolkit 5.0.7-angular11-upgrade → 5.0.8-angular11-upgrade
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/bundles/hmcts-ccd-case-ui-toolkit.umd.js +21811 -14307
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +2 -2
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
- package/esm2015/lib/shared/components/case-editor/case-create/case-create.component.js +94 -0
- package/esm2015/lib/shared/components/case-editor/case-create/index.js +2 -0
- package/esm2015/lib/shared/components/case-editor/case-edit/case-edit.component.js +113 -0
- package/esm2015/lib/shared/components/case-editor/case-edit/index.js +2 -0
- package/esm2015/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.js +131 -0
- package/esm2015/lib/shared/components/case-editor/case-edit-confirm/index.js +2 -0
- package/esm2015/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.js +146 -0
- package/esm2015/lib/shared/components/case-editor/case-edit-form/index.js +2 -0
- package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.js +11 -0
- package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.js +654 -0
- package/esm2015/lib/shared/components/case-editor/case-edit-page/index.js +2 -0
- package/esm2015/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.js +759 -0
- package/esm2015/lib/shared/components/case-editor/case-edit-submit/index.js +2 -0
- package/esm2015/lib/shared/components/case-editor/case-editor.module.js +185 -0
- package/esm2015/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.js +89 -0
- package/esm2015/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.js +72 -0
- package/esm2015/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.js +157 -0
- package/esm2015/lib/shared/components/case-editor/case-event-completion/index.js +4 -0
- package/esm2015/lib/shared/components/case-editor/case-progress/case-progress.component.js +85 -0
- package/esm2015/lib/shared/components/case-editor/case-progress/index.js +2 -0
- package/esm2015/lib/shared/components/case-editor/domain/event-completion-params.model.js +2 -0
- package/esm2015/lib/shared/components/case-editor/domain/event-completion-portal-types.model.js +6 -0
- package/esm2015/lib/shared/components/case-editor/editor.routing.js +31 -0
- package/esm2015/lib/shared/components/case-editor/index.js +13 -0
- package/esm2015/lib/shared/components/case-editor/services/case-edit-wizard.guard.js +92 -0
- package/esm2015/lib/shared/components/case-editor/services/convert-href-to-router.service.js +41 -0
- package/esm2015/lib/shared/components/case-editor/services/event-completion-state-machine.service.js +162 -0
- package/esm2015/lib/shared/components/case-editor/services/event-trigger.service.js +20 -0
- package/esm2015/lib/shared/components/case-editor/services/index.js +12 -0
- package/esm2015/lib/shared/components/case-editor/services/page-validation.service.js +50 -0
- package/esm2015/lib/shared/components/case-editor/services/wizard-factory.service.js +7 -0
- package/esm2015/lib/shared/components/case-history/case-history.component.js +264 -0
- package/esm2015/lib/shared/components/case-history/case-history.module.js +52 -0
- package/esm2015/lib/shared/components/case-history/domain/case-history.model.js +28 -0
- package/esm2015/lib/shared/components/case-history/index.js +3 -0
- package/esm2015/lib/shared/components/case-history/services/case-history.service.js +40 -0
- package/esm2015/lib/shared/components/case-timeline/case-timeline.component.js +118 -0
- package/esm2015/lib/shared/components/case-timeline/case-timeline.module.js +46 -0
- package/esm2015/lib/shared/components/case-timeline/index.js +3 -0
- package/esm2015/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.js +195 -0
- package/esm2015/lib/shared/components/case-viewer/case-basic-access-view/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.js +307 -0
- package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.js +20 -0
- package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/models/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.js +64 -0
- package/esm2015/lib/shared/components/case-viewer/case-challenged-access-success/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.js +120 -0
- package/esm2015/lib/shared/components/case-viewer/case-event-trigger/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.js +545 -0
- package/esm2015/lib/shared/components/case-viewer/case-full-access-view/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.js +63 -0
- package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-reject/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.js +258 -0
- package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.js +18 -0
- package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.js +195 -0
- package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.js +11 -0
- package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/models/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.js +60 -0
- package/esm2015/lib/shared/components/case-viewer/case-specific-access-success/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-view/case-view.component.js +100 -0
- package/esm2015/lib/shared/components/case-viewer/case-view/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/case-viewer.component.js +129 -0
- package/esm2015/lib/shared/components/case-viewer/case-viewer.module.js +155 -0
- package/esm2015/lib/shared/components/case-viewer/index.js +14 -0
- package/esm2015/lib/shared/components/case-viewer/printer/case-printer.component.js +111 -0
- package/esm2015/lib/shared/components/case-viewer/printer/index.js +4 -0
- package/esm2015/lib/shared/components/case-viewer/printer/pipes/index.js +2 -0
- package/esm2015/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.js +60 -0
- package/esm2015/lib/shared/components/case-viewer/services/case.resolver.js +110 -0
- package/esm2015/lib/shared/components/case-viewer/services/event-trigger.resolver.js +64 -0
- package/esm2015/lib/shared/components/case-viewer/services/index.js +3 -0
- package/esm2015/lib/shared/components/case-viewer/viewer.routing.js +127 -0
- package/esm2015/lib/shared/components/event-trigger/event-trigger.component.js +108 -0
- package/esm2015/lib/shared/components/event-trigger/event-trigger.module.js +35 -0
- package/esm2015/lib/shared/components/event-trigger/index.js +3 -0
- package/esm2015/lib/shared/components/index.js +5 -5
- package/esm2015/lib/shared/components/palette/complex/index.js +1 -7
- package/esm2015/lib/shared/components/palette/complex/write-complex-field.component.js +2 -2
- package/esm2015/lib/shared/components/palette/palette.module.js +16 -27
- package/esm2015/lib/shared/components/search-result/index.js +3 -0
- package/esm2015/lib/shared/components/search-result/search-result.component.js +845 -0
- package/esm2015/lib/shared/components/search-result/search-result.module.js +67 -0
- package/esm2015/lib/shared/domain/case-view/role-request.model.js +1 -1
- package/esm2015/lib/shared/pipes/complex/ccd-collection-table-value-case-fields.pipe.js +29 -0
- package/esm2015/lib/shared/pipes/complex/ccd-cyapage-label-filter.pipe.js +29 -0
- package/esm2015/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.js +154 -0
- package/esm2015/lib/shared/pipes/complex/ccd-tab-fields.pipe.js +31 -0
- package/esm2015/lib/shared/pipes/complex/cdd-page-fields.pipe.js +39 -0
- package/esm2015/lib/shared/pipes/complex/fields-filter.pipe.js +103 -0
- package/esm2015/lib/shared/pipes/complex/index.js +7 -0
- package/esm2015/lib/shared/pipes/index.js +3 -2
- package/esm2015/lib/shared/pipes/pipes.module.js +26 -9
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +19417 -12703
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/shared/components/case-editor/case-create/case-create.component.d.ts +33 -0
- package/lib/shared/components/case-editor/case-create/case-create.component.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-create/index.d.ts +2 -0
- package/lib/shared/components/case-editor/case-create/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts +50 -0
- package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit/index.d.ts +2 -0
- package/lib/shared/components/case-editor/case-edit/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.d.ts +26 -0
- package/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-confirm/index.d.ts +2 -0
- package/lib/shared/components/case-editor/case-edit-confirm/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.d.ts +26 -0
- package/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-form/index.d.ts +2 -0
- package/lib/shared/components/case-editor/case-edit-form/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.d.ts +10 -0
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts +100 -0
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-page/index.d.ts +2 -0
- package/lib/shared/components/case-editor/case-edit-page/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts +123 -0
- package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-submit/index.d.ts +2 -0
- package/lib/shared/components/case-editor/case-edit-submit/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-editor.module.d.ts +27 -0
- package/lib/shared/components/case-editor/case-editor.module.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.d.ts +31 -0
- package/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.d.ts +11 -0
- package/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.d.ts +32 -0
- package/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-event-completion/index.d.ts +4 -0
- package/lib/shared/components/case-editor/case-event-completion/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-progress/case-progress.component.d.ts +30 -0
- package/lib/shared/components/case-editor/case-progress/case-progress.component.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-progress/index.d.ts +2 -0
- package/lib/shared/components/case-editor/case-progress/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/event-completion-params.model.d.ts +7 -0
- package/lib/shared/components/case-editor/domain/event-completion-params.model.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/event-completion-portal-types.model.d.ts +5 -0
- package/lib/shared/components/case-editor/domain/event-completion-portal-types.model.d.ts.map +1 -0
- package/lib/shared/components/case-editor/editor.routing.d.ts +3 -0
- package/lib/shared/components/case-editor/editor.routing.d.ts.map +1 -0
- package/lib/shared/components/case-editor/index.d.ts +13 -0
- package/lib/shared/components/case-editor/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/case-edit-wizard.guard.d.ts +23 -0
- package/lib/shared/components/case-editor/services/case-edit-wizard.guard.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/convert-href-to-router.service.d.ts +14 -0
- package/lib/shared/components/case-editor/services/convert-href-to-router.service.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/event-completion-state-machine.service.d.ts +33 -0
- package/lib/shared/components/case-editor/services/event-completion-state-machine.service.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/event-trigger.service.d.ts +10 -0
- package/lib/shared/components/case-editor/services/event-trigger.service.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/index.d.ts +12 -0
- package/lib/shared/components/case-editor/services/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/page-validation.service.d.ts +17 -0
- package/lib/shared/components/case-editor/services/page-validation.service.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/wizard-factory.service.d.ts +6 -0
- package/lib/shared/components/case-editor/services/wizard-factory.service.d.ts.map +1 -0
- package/lib/shared/components/case-history/case-history.component.d.ts +33 -0
- package/lib/shared/components/case-history/case-history.component.d.ts.map +1 -0
- package/lib/shared/components/case-history/case-history.module.d.ts +14 -0
- package/lib/shared/components/case-history/case-history.module.d.ts.map +1 -0
- package/lib/shared/components/case-history/domain/case-history.model.d.ts +16 -0
- package/lib/shared/components/case-history/domain/case-history.model.d.ts.map +1 -0
- package/lib/shared/components/case-history/index.d.ts +3 -0
- package/lib/shared/components/case-history/index.d.ts.map +1 -0
- package/lib/shared/components/case-history/services/case-history.service.d.ts +17 -0
- package/lib/shared/components/case-history/services/case-history.service.d.ts.map +1 -0
- package/lib/shared/components/case-timeline/case-timeline.component.d.ts +27 -0
- package/lib/shared/components/case-timeline/case-timeline.component.d.ts.map +1 -0
- package/lib/shared/components/case-timeline/case-timeline.module.d.ts +13 -0
- package/lib/shared/components/case-timeline/case-timeline.module.d.ts.map +1 -0
- package/lib/shared/components/case-timeline/index.d.ts +3 -0
- package/lib/shared/components/case-timeline/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.d.ts +19 -0
- package/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-basic-access-view/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-basic-access-view/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.d.ts +40 -0
- package/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-challenged-access-request/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-challenged-access-request/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.d.ts +17 -0
- package/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-challenged-access-request/models/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-challenged-access-request/models/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.d.ts +12 -0
- package/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-challenged-access-success/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-challenged-access-success/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts +41 -0
- package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-event-trigger/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-event-trigger/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts +90 -0
- package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-full-access-view/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-full-access-view/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.d.ts +14 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-reject/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-reject/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.d.ts +49 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-request/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-request/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.d.ts +15 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.d.ts +33 -0
- package/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-specific-access-request/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-specific-access-request/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.d.ts +9 -0
- package/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-specific-access-request/models/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-specific-access-request/models/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.d.ts +12 -0
- package/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-specific-access-success/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-specific-access-success/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-view/case-view.component.d.ts +32 -0
- package/lib/shared/components/case-viewer/case-view/case-view.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-view/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/case-view/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-viewer.component.d.ts +32 -0
- package/lib/shared/components/case-viewer/case-viewer.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/case-viewer.module.d.ts +36 -0
- package/lib/shared/components/case-viewer/case-viewer.module.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/index.d.ts +14 -0
- package/lib/shared/components/case-viewer/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/printer/case-printer.component.d.ts +24 -0
- package/lib/shared/components/case-viewer/printer/case-printer.component.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/printer/index.d.ts +4 -0
- package/lib/shared/components/case-viewer/printer/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/printer/pipes/index.d.ts +2 -0
- package/lib/shared/components/case-viewer/printer/pipes/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.d.ts +24 -0
- package/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/services/case.resolver.d.ts +29 -0
- package/lib/shared/components/case-viewer/services/case.resolver.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/services/event-trigger.resolver.d.ts +26 -0
- package/lib/shared/components/case-viewer/services/event-trigger.resolver.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/services/index.d.ts +3 -0
- package/lib/shared/components/case-viewer/services/index.d.ts.map +1 -0
- package/lib/shared/components/case-viewer/viewer.routing.d.ts +3 -0
- package/lib/shared/components/case-viewer/viewer.routing.d.ts.map +1 -0
- package/lib/shared/components/event-trigger/event-trigger.component.d.ts +24 -0
- package/lib/shared/components/event-trigger/event-trigger.component.d.ts.map +1 -0
- package/lib/shared/components/event-trigger/event-trigger.module.d.ts +11 -0
- package/lib/shared/components/event-trigger/event-trigger.module.d.ts.map +1 -0
- package/lib/shared/components/event-trigger/index.d.ts +3 -0
- package/lib/shared/components/event-trigger/index.d.ts.map +1 -0
- package/lib/shared/components/index.d.ts +4 -0
- package/lib/shared/components/index.d.ts.map +1 -1
- package/lib/shared/components/palette/complex/index.d.ts +0 -6
- package/lib/shared/components/palette/complex/index.d.ts.map +1 -1
- package/lib/shared/components/palette/complex/write-complex-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.module.d.ts +87 -93
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/search-result/index.d.ts +3 -0
- package/lib/shared/components/search-result/index.d.ts.map +1 -0
- package/lib/shared/components/search-result/search-result.component.d.ts +111 -0
- package/lib/shared/components/search-result/search-result.component.d.ts.map +1 -0
- package/lib/shared/components/search-result/search-result.module.d.ts +16 -0
- package/lib/shared/components/search-result/search-result.module.d.ts.map +1 -0
- package/lib/shared/domain/case-view/role-request.model.d.ts.map +1 -1
- package/lib/shared/{components/palette → pipes}/complex/ccd-collection-table-value-case-fields.pipe.d.ts +1 -1
- package/lib/shared/pipes/complex/ccd-collection-table-value-case-fields.pipe.d.ts.map +1 -0
- package/lib/shared/{components/palette → pipes}/complex/ccd-cyapage-label-filter.pipe.d.ts +1 -1
- package/lib/shared/pipes/complex/ccd-cyapage-label-filter.pipe.d.ts.map +1 -0
- package/lib/shared/{components/palette → pipes}/complex/ccd-read-fields-filter.pipe.d.ts +1 -1
- package/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.d.ts.map +1 -0
- package/lib/shared/{components/palette → pipes}/complex/ccd-tab-fields.pipe.d.ts +2 -2
- package/lib/shared/pipes/complex/ccd-tab-fields.pipe.d.ts.map +1 -0
- package/lib/shared/{components/palette → pipes}/complex/cdd-page-fields.pipe.d.ts +2 -2
- package/lib/shared/pipes/complex/cdd-page-fields.pipe.d.ts.map +1 -0
- package/lib/shared/{components/palette → pipes}/complex/fields-filter.pipe.d.ts +1 -1
- package/lib/shared/pipes/complex/fields-filter.pipe.d.ts.map +1 -0
- package/lib/shared/pipes/complex/index.d.ts +7 -0
- package/lib/shared/pipes/complex/index.d.ts.map +1 -0
- package/lib/shared/pipes/index.d.ts +2 -1
- package/lib/shared/pipes/index.d.ts.map +1 -1
- package/lib/shared/pipes/pipes.module.d.ts +7 -2
- package/lib/shared/pipes/pipes.module.d.ts.map +1 -1
- package/package.json +1 -1
- package/esm2015/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.js +0 -29
- package/esm2015/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.js +0 -29
- package/esm2015/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.js +0 -154
- package/esm2015/lib/shared/components/palette/complex/ccd-tab-fields.pipe.js +0 -31
- package/esm2015/lib/shared/components/palette/complex/cdd-page-fields.pipe.js +0 -39
- package/esm2015/lib/shared/components/palette/complex/fields-filter.pipe.js +0 -103
- package/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.d.ts.map +0 -1
- package/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.d.ts.map +0 -1
- package/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.d.ts.map +0 -1
- package/lib/shared/components/palette/complex/ccd-tab-fields.pipe.d.ts.map +0 -1
- package/lib/shared/components/palette/complex/cdd-page-fields.pipe.d.ts.map +0 -1
- package/lib/shared/components/palette/complex/fields-filter.pipe.d.ts.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"print-url.pipe.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;;AAE9D,qBAGa,YAAa,YAAW,aAAa;IAKpC,OAAO,CAAC,QAAQ,CAAC,SAAS;IAHtC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,CAAU;IACnD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAa;gBAE3B,SAAS,EAAE,iBAAiB;IAEzD;;;;;;;;;;OAUG;IACI,SAAS,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM;iCAlBhC,YAAY;uCAAZ,YAAY;CAiDxB"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ActivatedRouteSnapshot, Resolve, Router } from '@angular/router';
|
|
2
|
+
import { CaseView } from '../../../domain/case-view/case-view.model';
|
|
3
|
+
import { DraftService } from '../../../services/draft/draft.service';
|
|
4
|
+
import { NavigationNotifierService } from '../../../services/navigation/navigation-notifier.service';
|
|
5
|
+
import { CaseNotifier } from '../../case-editor/services/case.notifier';
|
|
6
|
+
import { CasesService } from '../../case-editor/services/cases.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class CaseResolver implements Resolve<CaseView> {
|
|
9
|
+
private readonly caseNotifier;
|
|
10
|
+
private readonly casesService;
|
|
11
|
+
private readonly draftService;
|
|
12
|
+
private readonly navigationNotifierService;
|
|
13
|
+
private readonly router;
|
|
14
|
+
static readonly EVENT_REGEX: RegExp;
|
|
15
|
+
static readonly PARAM_CASE_ID = "cid";
|
|
16
|
+
static readonly CASE_CREATED_MSG = "The case has been created successfully";
|
|
17
|
+
previousUrl: string;
|
|
18
|
+
constructor(caseNotifier: CaseNotifier, casesService: CasesService, draftService: DraftService, navigationNotifierService: NavigationNotifierService, router: Router);
|
|
19
|
+
resolve(route: ActivatedRouteSnapshot): Promise<CaseView>;
|
|
20
|
+
private navigateToCaseList;
|
|
21
|
+
private isRootCaseViewRoute;
|
|
22
|
+
private isTabViewRoute;
|
|
23
|
+
private getAndCacheCaseView;
|
|
24
|
+
private getAndCacheDraft;
|
|
25
|
+
private checkAuthorizationError;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDef<CaseResolver, never>;
|
|
27
|
+
static ɵprov: i0.ɵɵInjectableDef<CaseResolver>;
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=case.resolver.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case.resolver.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/services/case.resolver.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAiB,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAIzF,OAAO,EAAE,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAErE,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,yBAAyB,EAAE,MAAM,0DAA0D,CAAC;AAErG,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AACxE,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;;AAExE,qBACa,YAAa,YAAW,OAAO,CAAC,QAAQ,CAAC;IAUxC,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,yBAAyB;IAC1C,OAAO,CAAC,QAAQ,CAAC,MAAM;IAZnC,gBAAuB,WAAW,SAAyC;IAC3E,gBAAuB,aAAa,SAAS;IAC7C,gBAAuB,gBAAgB,4CAA4C;IAK5E,WAAW,EAAE,MAAM,CAAC;gBACE,YAAY,EAAE,YAAY,EAC1B,YAAY,EAAE,YAAY,EAC1B,YAAY,EAAE,YAAY,EAC1B,yBAAyB,EAAE,yBAAyB,EACpD,MAAM,EAAE,MAAM;IAQpC,OAAO,CAAC,KAAK,EAAE,sBAAsB,GAAG,OAAO,CAAC,QAAQ,CAAC;IAehE,OAAO,CAAC,kBAAkB;IAI1B,OAAO,CAAC,mBAAmB;IAK3B,OAAO,CAAC,cAAc;IAKtB,OAAO,CAAC,mBAAmB;IAsB3B,OAAO,CAAC,gBAAgB;IAkBxB,OAAO,CAAC,uBAAuB;iCA3FpB,YAAY;qCAAZ,YAAY;CAuGxB"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ActivatedRouteSnapshot, Resolve } from '@angular/router';
|
|
2
|
+
import { CaseEventTrigger } from '../../../domain/case-view/case-event-trigger.model';
|
|
3
|
+
import { AlertService } from '../../../services/alert/alert.service';
|
|
4
|
+
import { ProfileNotifier } from '../../../services/profile/profile.notifier';
|
|
5
|
+
import { ProfileService } from '../../../services/profile/profile.service';
|
|
6
|
+
import { CasesService } from '../../case-editor/services/cases.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class EventTriggerResolver implements Resolve<CaseEventTrigger> {
|
|
9
|
+
private readonly casesService;
|
|
10
|
+
private readonly alertService;
|
|
11
|
+
private readonly profileService;
|
|
12
|
+
private readonly profileNotifier;
|
|
13
|
+
static readonly PARAM_CASE_ID = "cid";
|
|
14
|
+
static readonly PARAM_EVENT_ID = "eid";
|
|
15
|
+
static readonly IGNORE_WARNING = "ignoreWarning";
|
|
16
|
+
private static readonly IGNORE_WARNING_VALUES;
|
|
17
|
+
private cachedEventTrigger;
|
|
18
|
+
private cachedProfile;
|
|
19
|
+
constructor(casesService: CasesService, alertService: AlertService, profileService: ProfileService, profileNotifier: ProfileNotifier);
|
|
20
|
+
resolve(route: ActivatedRouteSnapshot): Promise<CaseEventTrigger>;
|
|
21
|
+
private isRootTriggerEventRoute;
|
|
22
|
+
private getAndCacheEventTrigger;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDef<EventTriggerResolver, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDef<EventTriggerResolver>;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=event-trigger.resolver.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"event-trigger.resolver.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/services/event-trigger.resolver.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAGlE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oDAAoD,CAAC;AAEtF,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;;AAExE,qBACa,oBAAqB,YAAW,OAAO,CAAC,gBAAgB,CAAC;IAQlE,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,eAAe;IAVlC,gBAAuB,aAAa,SAAS;IAC7C,gBAAuB,cAAc,SAAS;IAC9C,gBAAuB,cAAc,mBAAmB;IACxD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,qBAAqB,CAAuB;IACpE,OAAO,CAAC,kBAAkB,CAAmB;IAC7C,OAAO,CAAC,aAAa,CAAU;gBAEZ,YAAY,EAAE,YAAY,EAC1B,YAAY,EAAE,YAAY,EAC1B,cAAc,EAAE,cAAc,EAC9B,eAAe,EAAE,eAAe;IAG5C,OAAO,CAAC,KAAK,EAAE,sBAAsB,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAMxE,OAAO,CAAC,uBAAuB;IAK/B,OAAO,CAAC,uBAAuB;iCAzBpB,oBAAoB;qCAApB,oBAAoB;CAsDhC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/services/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,0BAA0B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"viewer.routing.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/viewer.routing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAyBzC,eAAO,MAAM,aAAa,EAAE,MA8G3B,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { CaseViewTrigger } from '../../domain/case-view/case-view-trigger.model';
|
|
4
|
+
import { OrderService } from '../../services/order/order.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class EventTriggerComponent implements OnChanges {
|
|
7
|
+
private readonly fb;
|
|
8
|
+
private readonly orderService;
|
|
9
|
+
triggers: CaseViewTrigger[];
|
|
10
|
+
triggerText: string;
|
|
11
|
+
isDisabled: boolean;
|
|
12
|
+
onTriggerSubmit: EventEmitter<CaseViewTrigger>;
|
|
13
|
+
onTriggerChange: EventEmitter<any>;
|
|
14
|
+
triggerForm: FormGroup;
|
|
15
|
+
constructor(fb: FormBuilder, orderService: OrderService);
|
|
16
|
+
ngOnChanges(changes?: SimpleChanges): void;
|
|
17
|
+
isButtonDisabled(): boolean;
|
|
18
|
+
triggerSubmit(): void;
|
|
19
|
+
triggerChange(): void;
|
|
20
|
+
private getDefault;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDef<EventTriggerComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<EventTriggerComponent, "ccd-event-trigger", never, { "triggers": "triggers"; "triggerText": "triggerText"; "isDisabled": "isDisabled"; }, { "onTriggerSubmit": "onTriggerSubmit"; "onTriggerChange": "onTriggerChange"; }, never, never>;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=event-trigger.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"event-trigger.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/event-trigger/event-trigger.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAU,aAAa,EAAE,MAAM,eAAe,CAAC;AACjG,OAAO,EAAE,WAAW,EAAE,SAAS,EAAc,MAAM,gBAAgB,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,gDAAgD,CAAC;AACjF,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;;AAElE,qBAKa,qBAAsB,YAAW,SAAS;IAmBzC,OAAO,CAAC,QAAQ,CAAC,EAAE;IAAe,OAAO,CAAC,QAAQ,CAAC,YAAY;IAhBpE,QAAQ,EAAE,eAAe,EAAE,CAAC;IAG5B,WAAW,EAAE,MAAM,CAAC;IAGpB,UAAU,EAAE,OAAO,CAAC;IAGpB,eAAe,EAAE,YAAY,CAAC,eAAe,CAAC,CAAsB;IAGpE,eAAe,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAExD,WAAW,EAAE,SAAS,CAAC;gBAED,EAAE,EAAE,WAAW,EAAmB,YAAY,EAAE,YAAY;IAElF,WAAW,CAAC,OAAO,CAAC,EAAE,aAAa,GAAG,IAAI;IAU1C,gBAAgB,IAAI,OAAO;IAI3B,aAAa;IAIb,aAAa;IAIpB,OAAO,CAAC,UAAU;iCA3CP,qBAAqB;2CAArB,qBAAqB;CA8CjC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./event-trigger.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../activity/activity.module";
|
|
6
|
+
export declare class EventTriggerModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDef<EventTriggerModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<EventTriggerModule, [typeof i1.EventTriggerComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.ActivityModule], [typeof i1.EventTriggerComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDef<EventTriggerModule>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=event-trigger.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"event-trigger.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/event-trigger/event-trigger.module.ts"],"names":[],"mappings":";;;;;AAMA,qBAaa,kBAAkB;iCAAlB,kBAAkB;0CAAlB,kBAAkB;kCAAlB,kBAAkB;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/event-trigger/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC"}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
export * from './activity';
|
|
2
|
+
export * from './case-editor';
|
|
2
3
|
export * from './case-header';
|
|
3
4
|
export * from './case-list';
|
|
4
5
|
export * from './case-list-filters';
|
|
6
|
+
export * from './case-timeline';
|
|
7
|
+
export * from './case-viewer';
|
|
5
8
|
export * from './create-case-filters';
|
|
6
9
|
export * from './dialogs';
|
|
7
10
|
export * from './error';
|
|
@@ -12,5 +15,6 @@ export * from './loading-spinner';
|
|
|
12
15
|
export * from './pagination';
|
|
13
16
|
export * from './palette';
|
|
14
17
|
export * from './search-filters';
|
|
18
|
+
export * from './search-result';
|
|
15
19
|
export * from './workbasket-filters';
|
|
16
20
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC"}
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
export * from './fields-filter.pipe';
|
|
2
1
|
export * from './read-complex-field-raw.component';
|
|
3
2
|
export * from './read-complex-field-table.component';
|
|
4
3
|
export * from './read-complex-field-collection-table.component';
|
|
5
4
|
export * from './read-complex-field.component';
|
|
6
5
|
export * from './write-complex-field.component';
|
|
7
|
-
export * from './ccd-read-fields-filter.pipe';
|
|
8
|
-
export * from './cdd-page-fields.pipe';
|
|
9
|
-
export * from './ccd-collection-table-value-case-fields.pipe';
|
|
10
|
-
export * from './ccd-cyapage-label-filter.pipe';
|
|
11
|
-
export * from './ccd-tab-fields.pipe';
|
|
12
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAC;AACnD,cAAc,sCAAsC,CAAC;AACrD,cAAc,iDAAiD,CAAC;AAChE,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iCAAiC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"write-complex-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/write-complex-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAgC,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAGzE,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;
|
|
1
|
+
{"version":3,"file":"write-complex-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/write-complex-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAgC,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAGzE,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AAGxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AAEvF,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;AAE3F,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;;AAI3D,qBAKa,0BAA2B,SAAQ,2BAA4B,YAAW,MAAM;IAiB/E,OAAO,CAAC,QAAQ,CAAC,cAAc;IAAkB,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IAf5F,UAAU,EAAE,SAAS,EAAE,CAAM;IAG7B,SAAS,EAAE,SAAS,CAAC;IAErB,YAAY,EAAE,SAAS,CAAC;IAGxB,WAAW,UAAQ;IAGnB,eAAe,UAAS;IAExB,aAAa,EAAE,SAAS,EAAE,CAAC;gBAEL,cAAc,EAAE,cAAc,EAAmB,qBAAqB,EAAE,qBAAqB;IAKnH,QAAQ,IAAI,IAAI;IAchB,UAAU,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS;IA6B3C,aAAa,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM;IAI9C,OAAO,CAAC,yBAAyB;IAIjC,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,0BAA0B;IAgBlC,OAAO,CAAC,WAAW;iCArGR,0BAA0B;2CAA1B,0BAA0B;CAgHtC"}
|
|
@@ -1,99 +1,93 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./
|
|
3
|
-
import * as i2 from "./
|
|
4
|
-
import * as i3 from "./
|
|
5
|
-
import * as i4 from "./
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "./
|
|
8
|
-
import * as i7 from "./
|
|
9
|
-
import * as i8 from "./
|
|
10
|
-
import * as i9 from "./
|
|
11
|
-
import * as i10 from "./
|
|
12
|
-
import * as i11 from "./
|
|
13
|
-
import * as i12 from "./
|
|
14
|
-
import * as i13 from "./
|
|
15
|
-
import * as i14 from "./
|
|
16
|
-
import * as i15 from "./
|
|
17
|
-
import * as i16 from "./
|
|
18
|
-
import * as i17 from "./
|
|
19
|
-
import * as i18 from "./
|
|
20
|
-
import * as i19 from "./
|
|
21
|
-
import * as i20 from "./
|
|
22
|
-
import * as i21 from "./
|
|
23
|
-
import * as i22 from "./
|
|
24
|
-
import * as i23 from "./
|
|
25
|
-
import * as i24 from "./
|
|
26
|
-
import * as i25 from "./
|
|
27
|
-
import * as i26 from "./
|
|
28
|
-
import * as i27 from "./
|
|
29
|
-
import * as i28 from "./
|
|
30
|
-
import * as i29 from "./
|
|
31
|
-
import * as i30 from "./
|
|
32
|
-
import * as i31 from "./
|
|
33
|
-
import * as i32 from "./
|
|
34
|
-
import * as i33 from "./
|
|
35
|
-
import * as i34 from "./
|
|
36
|
-
import * as i35 from "./
|
|
37
|
-
import * as i36 from "./
|
|
38
|
-
import * as i37 from "./
|
|
39
|
-
import * as i38 from "./
|
|
40
|
-
import * as i39 from "./
|
|
41
|
-
import * as i40 from "./
|
|
42
|
-
import * as i41 from "./
|
|
43
|
-
import * as i42 from "./
|
|
44
|
-
import * as i43 from "./
|
|
45
|
-
import * as i44 from "./
|
|
46
|
-
import * as i45 from "./
|
|
47
|
-
import * as i46 from "./
|
|
48
|
-
import * as i47 from "./
|
|
49
|
-
import * as i48 from "./
|
|
50
|
-
import * as i49 from "./
|
|
51
|
-
import * as i50 from "./
|
|
52
|
-
import * as i51 from "./
|
|
53
|
-
import * as i52 from "./
|
|
54
|
-
import * as i53 from "./
|
|
55
|
-
import * as i54 from "./
|
|
56
|
-
import * as i55 from "./
|
|
57
|
-
import * as i56 from "./
|
|
58
|
-
import * as i57 from "./
|
|
59
|
-
import * as i58 from "./
|
|
60
|
-
import * as i59 from "./
|
|
61
|
-
import * as i60 from "./
|
|
62
|
-
import * as i61 from "./
|
|
63
|
-
import * as i62 from "./
|
|
64
|
-
import * as i63 from "./
|
|
65
|
-
import * as i64 from "./
|
|
66
|
-
import * as i65 from "./
|
|
67
|
-
import * as i66 from "./
|
|
68
|
-
import * as i67 from "
|
|
69
|
-
import * as i68 from "
|
|
70
|
-
import * as i69 from "
|
|
71
|
-
import * as i70 from "
|
|
72
|
-
import * as i71 from "./
|
|
73
|
-
import * as i72 from "
|
|
74
|
-
import * as i73 from "
|
|
75
|
-
import * as i74 from "
|
|
76
|
-
import * as i75 from "
|
|
77
|
-
import * as i76 from "
|
|
78
|
-
import * as i77 from "
|
|
79
|
-
import * as i78 from "
|
|
80
|
-
import * as i79 from "
|
|
81
|
-
import * as i80 from "
|
|
82
|
-
import * as i81 from "
|
|
83
|
-
import * as i82 from "
|
|
84
|
-
import * as i83 from "
|
|
85
|
-
import * as i84 from "
|
|
86
|
-
import * as i85 from "
|
|
87
|
-
import * as i86 from "ngx-
|
|
88
|
-
import * as i87 from "@angular-material-components/datetime-picker";
|
|
89
|
-
import * as i88 from "@angular/material/form-field";
|
|
90
|
-
import * as i89 from "@angular/material/input";
|
|
91
|
-
import * as i90 from "@angular/material/datepicker";
|
|
92
|
-
import * as i91 from "@hmcts/ccpay-web-component";
|
|
93
|
-
import * as i92 from "@nicky-lenaers/ngx-scroll-to";
|
|
2
|
+
import * as i1 from "./fixed-list/fixed-list.pipe";
|
|
3
|
+
import * as i2 from "./fixed-radio-list/fixed-radio-list.pipe";
|
|
4
|
+
import * as i3 from "./dynamic-list/dynamic-list.pipe";
|
|
5
|
+
import * as i4 from "./dynamic-radio-list/dynamic-radio-list.pipe";
|
|
6
|
+
import * as i5 from "./document/document-url.pipe";
|
|
7
|
+
import * as i6 from "./unsupported-field.component";
|
|
8
|
+
import * as i7 from "./datetime-picker/datetime-picker.component";
|
|
9
|
+
import * as i8 from "./waystopay/waystopay-field.component";
|
|
10
|
+
import * as i9 from "./markdown/markdown.component";
|
|
11
|
+
import * as i10 from "./base-field/field-read.component";
|
|
12
|
+
import * as i11 from "./base-field/field-write.component";
|
|
13
|
+
import * as i12 from "./base-field/field-read-label.component";
|
|
14
|
+
import * as i13 from "./label/label-field.component";
|
|
15
|
+
import * as i14 from "./payment/case-payment-history-viewer-field.component";
|
|
16
|
+
import * as i15 from "./money-gbp/money-gbp-input.component";
|
|
17
|
+
import * as i16 from "./history/case-history-viewer-field.component";
|
|
18
|
+
import * as i17 from "./history/event-log/event-log.component";
|
|
19
|
+
import * as i18 from "./history/event-log/event-log-details.component";
|
|
20
|
+
import * as i19 from "./history/event-log/event-log-table.component";
|
|
21
|
+
import * as i20 from "./text/read-text-field.component";
|
|
22
|
+
import * as i21 from "./text-area/read-text-area-field.component";
|
|
23
|
+
import * as i22 from "./number/read-number-field.component";
|
|
24
|
+
import * as i23 from "./email/read-email-field.component";
|
|
25
|
+
import * as i24 from "./phone-uk/read-phone-uk-field.component";
|
|
26
|
+
import * as i25 from "./date/read-date-field.component";
|
|
27
|
+
import * as i26 from "./collection/read-collection-field.component";
|
|
28
|
+
import * as i27 from "./document/read-document-field.component";
|
|
29
|
+
import * as i28 from "./yes-no/read-yes-no-field.component";
|
|
30
|
+
import * as i29 from "./organisation/read-organisation-field.component";
|
|
31
|
+
import * as i30 from "./organisation/read-organisation-field-table.component";
|
|
32
|
+
import * as i31 from "./organisation/read-organisation-field-raw.component";
|
|
33
|
+
import * as i32 from "./order-summary/read-order-summary-field.component";
|
|
34
|
+
import * as i33 from "./order-summary/read-order-summary-row.component";
|
|
35
|
+
import * as i34 from "./money-gbp/read-money-gbp-field.component";
|
|
36
|
+
import * as i35 from "./multi-select-list/read-multi-select-list-field.component";
|
|
37
|
+
import * as i36 from "./dynamic-list/read-dynamic-list-field.component";
|
|
38
|
+
import * as i37 from "./fixed-list/read-fixed-list-field.component";
|
|
39
|
+
import * as i38 from "./fixed-radio-list/read-fixed-radio-list-field.component";
|
|
40
|
+
import * as i39 from "./dynamic-radio-list/read-dynamic-radio-list-field.component";
|
|
41
|
+
import * as i40 from "./case-link/read-case-link-field.component";
|
|
42
|
+
import * as i41 from "./complex/read-complex-field.component";
|
|
43
|
+
import * as i42 from "./complex/read-complex-field-raw.component";
|
|
44
|
+
import * as i43 from "./complex/read-complex-field-table.component";
|
|
45
|
+
import * as i44 from "./complex/read-complex-field-collection-table.component";
|
|
46
|
+
import * as i45 from "./address/write-address-field.component";
|
|
47
|
+
import * as i46 from "./complex/write-complex-field.component";
|
|
48
|
+
import * as i47 from "./organisation/write-organisation-complex-field.component";
|
|
49
|
+
import * as i48 from "./document/write-document-field.component";
|
|
50
|
+
import * as i49 from "./dynamic-list/write-dynamic-list-field.component";
|
|
51
|
+
import * as i50 from "./dynamic-radio-list/write-dynamic-radio-list-field.component";
|
|
52
|
+
import * as i51 from "./text/write-text-field.component";
|
|
53
|
+
import * as i52 from "./date/write-date-container-field.component";
|
|
54
|
+
import * as i53 from "./text-area/write-text-area-field.component";
|
|
55
|
+
import * as i54 from "./phone-uk/write-phone-uk-field.component";
|
|
56
|
+
import * as i55 from "./number/write-number-field.component";
|
|
57
|
+
import * as i56 from "./email/write-email-field.component";
|
|
58
|
+
import * as i57 from "./date/write-date-field.component";
|
|
59
|
+
import * as i58 from "./yes-no/write-yes-no-field.component";
|
|
60
|
+
import * as i59 from "./organisation/write-organisation-field.component";
|
|
61
|
+
import * as i60 from "./order-summary/write-order-summary-field.component";
|
|
62
|
+
import * as i61 from "./money-gbp/write-money-gbp-field.component";
|
|
63
|
+
import * as i62 from "./multi-select-list/write-multi-select-list-field.component";
|
|
64
|
+
import * as i63 from "./fixed-list/write-fixed-list-field.component";
|
|
65
|
+
import * as i64 from "./fixed-radio-list/write-fixed-radio-list-field.component";
|
|
66
|
+
import * as i65 from "./case-link/write-case-link-field.component";
|
|
67
|
+
import * as i66 from "./collection/write-collection-field.component";
|
|
68
|
+
import * as i67 from "@angular/common";
|
|
69
|
+
import * as i68 from "@angular/platform-browser";
|
|
70
|
+
import * as i69 from "@angular/router";
|
|
71
|
+
import * as i70 from "@angular/forms";
|
|
72
|
+
import * as i71 from "./utils/utils.module";
|
|
73
|
+
import * as i72 from "../../pipes/pipes.module";
|
|
74
|
+
import * as i73 from "../../../components/banners/banners.module";
|
|
75
|
+
import * as i74 from "../../../components/header/headers.module";
|
|
76
|
+
import * as i75 from "../../../components/footer/footers.module";
|
|
77
|
+
import * as i76 from "../../../components/body/body.module";
|
|
78
|
+
import * as i77 from "../../../components/form/form.module";
|
|
79
|
+
import * as i78 from "../../../components/tabs/tabs.module";
|
|
80
|
+
import * as i79 from "../../directives/substitutor/label-substitutor.module";
|
|
81
|
+
import * as i80 from "ngx-md";
|
|
82
|
+
import * as i81 from "@angular-material-components/datetime-picker";
|
|
83
|
+
import * as i82 from "@angular/material/form-field";
|
|
84
|
+
import * as i83 from "@angular/material/input";
|
|
85
|
+
import * as i84 from "@angular/material/datepicker";
|
|
86
|
+
import * as i85 from "@hmcts/ccpay-web-component";
|
|
87
|
+
import * as i86 from "@nicky-lenaers/ngx-scroll-to";
|
|
94
88
|
export declare class PaletteModule {
|
|
95
89
|
static ɵfac: i0.ɵɵFactoryDef<PaletteModule, never>;
|
|
96
|
-
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.
|
|
90
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadYesNoFieldComponent, typeof i29.ReadOrganisationFieldComponent, typeof i30.ReadOrganisationFieldTableComponent, typeof i31.ReadOrganisationFieldRawComponent, typeof i32.ReadOrderSummaryFieldComponent, typeof i33.ReadOrderSummaryRowComponent, typeof i34.ReadMoneyGbpFieldComponent, typeof i35.ReadMultiSelectListFieldComponent, typeof i36.ReadDynamicListFieldComponent, typeof i37.ReadFixedListFieldComponent, typeof i38.ReadFixedRadioListFieldComponent, typeof i39.ReadDynamicRadioListFieldComponent, typeof i40.ReadCaseLinkFieldComponent, typeof i41.ReadComplexFieldComponent, typeof i42.ReadComplexFieldRawComponent, typeof i43.ReadComplexFieldTableComponent, typeof i44.ReadComplexFieldCollectionTableComponent, typeof i45.WriteAddressFieldComponent, typeof i46.WriteComplexFieldComponent, typeof i47.WriteOrganisationComplexFieldComponent, typeof i48.WriteDocumentFieldComponent, typeof i49.WriteDynamicListFieldComponent, typeof i50.WriteDynamicRadioListFieldComponent, typeof i51.WriteTextFieldComponent, typeof i52.WriteDateContainerFieldComponent, typeof i53.WriteTextAreaFieldComponent, typeof i54.WritePhoneUKFieldComponent, typeof i55.WriteNumberFieldComponent, typeof i56.WriteEmailFieldComponent, typeof i57.WriteDateFieldComponent, typeof i58.WriteYesNoFieldComponent, typeof i59.WriteOrganisationFieldComponent, typeof i47.WriteOrganisationComplexFieldComponent, typeof i60.WriteOrderSummaryFieldComponent, typeof i61.WriteMoneyGbpFieldComponent, typeof i52.WriteDateContainerFieldComponent, typeof i62.WriteMultiSelectListFieldComponent, typeof i63.WriteFixedListFieldComponent, typeof i64.WriteFixedRadioListFieldComponent, typeof i65.WriteCaseLinkFieldComponent, typeof i66.WriteCollectionFieldComponent], [typeof i67.CommonModule, typeof i68.BrowserModule, typeof i69.RouterModule, typeof i70.FormsModule, typeof i70.ReactiveFormsModule, typeof i71.PaletteUtilsModule, typeof i72.PipesModule, typeof i73.BannersModule, typeof i74.HeadersModule, typeof i75.FootersModule, typeof i76.BodyModule, typeof i77.FormModule, typeof i78.TabsModule, typeof i79.LabelSubstitutorModule, typeof i80.NgxMdModule, typeof i81.NgxMatDatetimePickerModule, typeof i81.NgxMatTimepickerModule, typeof i81.NgxMatNativeDateModule, typeof i82.MatFormFieldModule, typeof i83.MatInputModule, typeof i84.MatDatepickerModule, typeof i85.PaymentLibModule, typeof i86.ScrollToModule], [typeof i78.TabsModule, typeof i71.PaletteUtilsModule, typeof i72.PipesModule, typeof i6.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadYesNoFieldComponent, typeof i29.ReadOrganisationFieldComponent, typeof i30.ReadOrganisationFieldTableComponent, typeof i31.ReadOrganisationFieldRawComponent, typeof i32.ReadOrderSummaryFieldComponent, typeof i33.ReadOrderSummaryRowComponent, typeof i34.ReadMoneyGbpFieldComponent, typeof i35.ReadMultiSelectListFieldComponent, typeof i36.ReadDynamicListFieldComponent, typeof i37.ReadFixedListFieldComponent, typeof i38.ReadFixedRadioListFieldComponent, typeof i39.ReadDynamicRadioListFieldComponent, typeof i40.ReadCaseLinkFieldComponent, typeof i41.ReadComplexFieldComponent, typeof i42.ReadComplexFieldRawComponent, typeof i43.ReadComplexFieldTableComponent, typeof i44.ReadComplexFieldCollectionTableComponent, typeof i45.WriteAddressFieldComponent, typeof i46.WriteComplexFieldComponent, typeof i47.WriteOrganisationComplexFieldComponent, typeof i48.WriteDocumentFieldComponent, typeof i49.WriteDynamicListFieldComponent, typeof i50.WriteDynamicRadioListFieldComponent, typeof i51.WriteTextFieldComponent, typeof i52.WriteDateContainerFieldComponent, typeof i53.WriteTextAreaFieldComponent, typeof i54.WritePhoneUKFieldComponent, typeof i55.WriteNumberFieldComponent, typeof i56.WriteEmailFieldComponent, typeof i57.WriteDateFieldComponent, typeof i58.WriteYesNoFieldComponent, typeof i59.WriteOrganisationFieldComponent, typeof i47.WriteOrganisationComplexFieldComponent, typeof i60.WriteOrderSummaryFieldComponent, typeof i61.WriteMoneyGbpFieldComponent, typeof i52.WriteDateContainerFieldComponent, typeof i62.WriteMultiSelectListFieldComponent, typeof i63.WriteFixedListFieldComponent, typeof i64.WriteFixedRadioListFieldComponent, typeof i65.WriteCaseLinkFieldComponent, typeof i66.WriteCollectionFieldComponent]>;
|
|
97
91
|
static ɵinj: i0.ɵɵInjectorDef<PaletteModule>;
|
|
98
92
|
}
|
|
99
93
|
//# sourceMappingURL=palette.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"palette.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"palette.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2IA,qBAoDa,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/search-result/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { AbstractAppConfig } from '../../../app.config';
|
|
4
|
+
import { PlaceholderService } from '../../directives/substitutor/services/placeholder.service';
|
|
5
|
+
import { DisplayMode } from '../../domain/activity/activity.model';
|
|
6
|
+
import { CaseField } from '../../domain/definition/case-field.model';
|
|
7
|
+
import { CaseState } from '../../domain/definition/case-state.model';
|
|
8
|
+
import { CaseType } from '../../domain/definition/case-type.model';
|
|
9
|
+
import { Jurisdiction } from '../../domain/definition/jurisdiction.model';
|
|
10
|
+
import { PaginationMetadata } from '../../domain/pagination-metadata.model';
|
|
11
|
+
import { SearchResultViewColumn } from '../../domain/search/search-result-view-column.model';
|
|
12
|
+
import { SearchResultViewItem } from '../../domain/search/search-result-view-item.model';
|
|
13
|
+
import { SearchResultView } from '../../domain/search/search-result-view.model';
|
|
14
|
+
import { SearchResultViewItemComparator } from '../../domain/search/sorting/search-result-view-item-comparator';
|
|
15
|
+
import { SortOrder } from '../../domain/search/sorting/sort-order';
|
|
16
|
+
import { SortParameters } from '../../domain/search/sorting/sort-parameters';
|
|
17
|
+
import { CaseReferencePipe } from '../../pipes/case-reference/case-reference.pipe';
|
|
18
|
+
import { ActivityService } from '../../services/activity/activity.service';
|
|
19
|
+
import { BrowserService } from '../../services/browser/browser.service';
|
|
20
|
+
import { SearchResultViewItemComparatorFactory } from '../../services/search-result/sorting/search-result-view-item-comparator-factory';
|
|
21
|
+
import * as i0 from "@angular/core";
|
|
22
|
+
export declare class SearchResultComponent implements OnChanges, AfterViewInit {
|
|
23
|
+
private readonly activityService;
|
|
24
|
+
private readonly caseReferencePipe;
|
|
25
|
+
private readonly placeholderService;
|
|
26
|
+
private readonly browserService;
|
|
27
|
+
private readonly cdr;
|
|
28
|
+
static readonly PARAM_JURISDICTION = "jurisdiction";
|
|
29
|
+
static readonly PARAM_CASE_TYPE = "case-type";
|
|
30
|
+
static readonly PARAM_CASE_STATE = "case-state";
|
|
31
|
+
ICON: DisplayMode;
|
|
32
|
+
caseLinkUrlTemplate: string;
|
|
33
|
+
jurisdiction: Jurisdiction;
|
|
34
|
+
caseType: CaseType;
|
|
35
|
+
caseState: CaseState;
|
|
36
|
+
caseFilterFG: FormGroup;
|
|
37
|
+
resultView: SearchResultView;
|
|
38
|
+
page: number;
|
|
39
|
+
paginationMetadata: PaginationMetadata;
|
|
40
|
+
metadataFields: string[];
|
|
41
|
+
selectionEnabled: boolean;
|
|
42
|
+
showOnlySelected: boolean;
|
|
43
|
+
preSelectedCases: SearchResultViewItem[];
|
|
44
|
+
consumerSortingEnabled: boolean;
|
|
45
|
+
selection: EventEmitter<SearchResultViewItem[]>;
|
|
46
|
+
changePage: EventEmitter<any>;
|
|
47
|
+
clickCase: EventEmitter<any>;
|
|
48
|
+
sortHandler: EventEmitter<any>;
|
|
49
|
+
paginationLimitEnforced: boolean;
|
|
50
|
+
paginationPageSize: number;
|
|
51
|
+
hideRows: boolean;
|
|
52
|
+
selected: {
|
|
53
|
+
init?: boolean;
|
|
54
|
+
jurisdiction?: Jurisdiction;
|
|
55
|
+
caseType?: CaseType;
|
|
56
|
+
caseState?: CaseState;
|
|
57
|
+
formGroup?: FormGroup;
|
|
58
|
+
metadataFields?: string[];
|
|
59
|
+
page?: number;
|
|
60
|
+
};
|
|
61
|
+
sortParameters: SortParameters;
|
|
62
|
+
searchResultViewItemComparatorFactory: SearchResultViewItemComparatorFactory;
|
|
63
|
+
draftsCount: number;
|
|
64
|
+
consumerSortParameters: {
|
|
65
|
+
column: string;
|
|
66
|
+
order: SortOrder;
|
|
67
|
+
type: string;
|
|
68
|
+
};
|
|
69
|
+
selectedCases: SearchResultViewItem[];
|
|
70
|
+
private readonly PAGINATION_MAX_ITEM_RESULT;
|
|
71
|
+
constructor(searchResultViewItemComparatorFactory: SearchResultViewItemComparatorFactory, appConfig: AbstractAppConfig, activityService: ActivityService, caseReferencePipe: CaseReferencePipe, placeholderService: PlaceholderService, browserService: BrowserService, cdr: ChangeDetectorRef);
|
|
72
|
+
get resultTotal(): number;
|
|
73
|
+
ngAfterViewInit(): void;
|
|
74
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
75
|
+
clearSelection(): void;
|
|
76
|
+
canBeShared(caseView: SearchResultViewItem): boolean;
|
|
77
|
+
canAnyBeShared(): boolean;
|
|
78
|
+
selectAll(): void;
|
|
79
|
+
changeSelection(c: SearchResultViewItem): void;
|
|
80
|
+
isSelected(c: SearchResultViewItem): boolean;
|
|
81
|
+
allOnPageSelected(): boolean;
|
|
82
|
+
/**
|
|
83
|
+
* Hydrates result view with case field definitions.
|
|
84
|
+
*/
|
|
85
|
+
hydrateResultView(): void;
|
|
86
|
+
goToPage(page: any): void;
|
|
87
|
+
buildCaseField(col: SearchResultViewColumn, result: SearchResultViewItem): CaseField;
|
|
88
|
+
getColumnsWithPrefix(col: CaseField, result: SearchResultViewItem): CaseField;
|
|
89
|
+
hasResults(): any;
|
|
90
|
+
hasDrafts(): boolean;
|
|
91
|
+
comparator(column: SearchResultViewColumn): SearchResultViewItemComparator;
|
|
92
|
+
sort(column: SearchResultViewColumn): void;
|
|
93
|
+
sortWidget(column: SearchResultViewColumn): "▼" | "▲";
|
|
94
|
+
activityEnabled(): boolean;
|
|
95
|
+
hyphenateIfCaseReferenceOrGet(col: any, result: any): any;
|
|
96
|
+
draftPrefixOrGet(col: any, result: any): any;
|
|
97
|
+
getFirstResult(): number;
|
|
98
|
+
getLastResult(): number;
|
|
99
|
+
getTotalResults(): number;
|
|
100
|
+
prepareCaseLinkUrl(caseId: string): string;
|
|
101
|
+
goToCase(caseId: string): void;
|
|
102
|
+
onKeyUp($event: KeyboardEvent, c: SearchResultViewItem): void;
|
|
103
|
+
isSortAscending(column: SearchResultViewColumn): boolean;
|
|
104
|
+
sortLabelText(label: string, isAscending: boolean): string;
|
|
105
|
+
private currentSortOrder;
|
|
106
|
+
private getDraftsCountIfNotPageOne;
|
|
107
|
+
private numberOfDrafts;
|
|
108
|
+
static ɵfac: i0.ɵɵFactoryDef<SearchResultComponent, never>;
|
|
109
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<SearchResultComponent, "ccd-search-result", never, { "caseLinkUrlTemplate": "caseLinkUrlTemplate"; "jurisdiction": "jurisdiction"; "caseType": "caseType"; "caseState": "caseState"; "caseFilterFG": "caseFilterFG"; "resultView": "resultView"; "page": "page"; "paginationMetadata": "paginationMetadata"; "metadataFields": "metadataFields"; "selectionEnabled": "selectionEnabled"; "showOnlySelected": "showOnlySelected"; "preSelectedCases": "preSelectedCases"; "consumerSortingEnabled": "consumerSortingEnabled"; }, { "selection": "selection"; "changePage": "changePage"; "clickCase": "clickCase"; "sortHandler": "sortHandler"; }, never, never>;
|
|
110
|
+
}
|
|
111
|
+
//# sourceMappingURL=search-result.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-result.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/search-result/search-result.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./search-result.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "ngx-pagination";
|
|
5
|
+
import * as i4 from "@angular/router";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "../../directives/substitutor/label-substitutor.module";
|
|
8
|
+
import * as i7 from "../../pipes/pipes.module";
|
|
9
|
+
import * as i8 from "../activity/activity.module";
|
|
10
|
+
import * as i9 from "../pagination/pagination.module";
|
|
11
|
+
export declare class SearchResultModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDef<SearchResultModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<SearchResultModule, [typeof i1.SearchResultComponent], [typeof i2.CommonModule, typeof i3.NgxPaginationModule, typeof i4.RouterModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.LabelSubstitutorModule, typeof i7.PipesModule, typeof i8.ActivityModule, typeof i9.PaginationModule], [typeof i1.SearchResultComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDef<SearchResultModule>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=search-result.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-result.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/search-result/search-result.module.ts"],"names":[],"mappings":";;;;;;;;;;AAgBA,qBAuBa,kBAAkB;iCAAlB,kBAAkB;0CAAlB,kBAAkB;kCAAlB,kBAAkB;CAAG"}
|