@hmcts/ccd-case-ui-toolkit 7.0.39-angular-upgrade → 7.0.39-callback-event-errors-rework
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/app.config.mjs +45 -0
- package/esm2020/lib/components/banners/alert/alert-icon-class.pipe.mjs +25 -0
- package/esm2020/lib/components/banners/alert/alert.component.mjs +95 -0
- package/esm2020/lib/components/banners/alert/alert.module.mjs +32 -0
- package/esm2020/lib/components/banners/banners.module.mjs +32 -0
- package/esm2020/lib/components/banners/notification-banner/notification-banner.component.mjs +120 -0
- package/esm2020/lib/components/banners/notification-banner/notification-banner.module.mjs +19 -0
- package/esm2020/lib/components/body/body.component.mjs +20 -0
- package/esm2020/lib/components/body/body.module.mjs +20 -0
- package/esm2020/lib/components/footer/footer.component.mjs +105 -0
- package/esm2020/lib/components/footer/footers.module.mjs +25 -0
- package/esm2020/lib/components/form/date-input/date-input.component.mjs +331 -0
- package/esm2020/lib/components/form/form.module.mjs +29 -0
- package/esm2020/lib/components/header/header-bar/header-bar.component.mjs +97 -0
- package/esm2020/lib/components/header/headers.module.mjs +25 -0
- package/esm2020/lib/components/header/navigation/navigation-item.component.mjs +41 -0
- package/esm2020/lib/components/header/navigation/navigation.component.mjs +24 -0
- package/esm2020/lib/components/header/phase/phase.component.mjs +45 -0
- package/esm2020/lib/components/tabs/tab.component.mjs +28 -0
- package/esm2020/lib/components/tabs/tabs.component.mjs +79 -0
- package/esm2020/lib/components/tabs/tabs.module.mjs +38 -0
- package/esm2020/lib/shared/commons/address-validation-constants.mjs +13 -0
- package/esm2020/lib/shared/commons/case-edit-data/case-edit-data.module.mjs +19 -0
- package/esm2020/lib/shared/commons/case-edit-data/case-edit-data.service.mjs +47 -0
- package/esm2020/lib/shared/commons/constants.mjs +13 -0
- package/esm2020/lib/shared/components/activity/activity-banner/activity-banner.component.mjs +39 -0
- package/esm2020/lib/shared/components/activity/activity-icon/activity-icon.component.mjs +33 -0
- package/esm2020/lib/shared/components/activity/activity.component.mjs +151 -0
- package/esm2020/lib/shared/components/activity/activity.module.mjs +55 -0
- package/esm2020/lib/shared/components/case-editor/case-access-utils/index.mjs +105 -0
- package/esm2020/lib/shared/components/case-editor/case-create/case-create.component.mjs +87 -0
- package/esm2020/lib/shared/components/case-editor/case-edit/case-edit.component.mjs +432 -0
- package/esm2020/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.mjs +125 -0
- package/esm2020/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.mjs +135 -0
- package/esm2020/lib/shared/components/case-editor/case-edit-generic-errors/case-edit-generic-errors.component.mjs +69 -0
- package/esm2020/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.mjs +779 -0
- package/esm2020/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.mjs +587 -0
- package/esm2020/lib/shared/components/case-editor/case-editor.module.mjs +214 -0
- package/esm2020/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.mjs +86 -0
- package/esm2020/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.mjs +80 -0
- package/esm2020/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.mjs +153 -0
- package/esm2020/lib/shared/components/case-editor/case-progress/case-progress.component.mjs +77 -0
- package/esm2020/lib/shared/components/case-editor/domain/confirmation.model.mjs +21 -0
- package/esm2020/lib/shared/components/case-editor/domain/wizard-page-field-complex-override.model.mjs +4 -0
- package/esm2020/lib/shared/components/case-editor/domain/wizard-page-field.model.mjs +3 -0
- package/esm2020/lib/shared/components/case-editor/domain/wizard-page.model.mjs +26 -0
- package/esm2020/lib/shared/components/case-editor/domain/wizard.model.mjs +54 -0
- package/esm2020/lib/shared/components/case-editor/services/case-edit-wizard.guard.mjs +93 -0
- package/esm2020/lib/shared/components/case-editor/services/case-flag-state.service.mjs +19 -0
- package/esm2020/lib/shared/components/case-editor/services/case-worker.service.mjs +32 -0
- package/esm2020/lib/shared/components/case-editor/services/case.notifier.mjs +51 -0
- package/esm2020/lib/shared/components/case-editor/services/cases.service.mjs +292 -0
- package/esm2020/lib/shared/components/case-editor/services/convert-href-to-router.service.mjs +41 -0
- package/esm2020/lib/shared/components/case-editor/services/event-completion-state-machine.service.mjs +143 -0
- package/esm2020/lib/shared/components/case-editor/services/event-trigger.service.mjs +20 -0
- package/esm2020/lib/shared/components/case-editor/services/judicial-worker.service.mjs +32 -0
- package/esm2020/lib/shared/components/case-editor/services/page-validation.service.mjs +58 -0
- package/esm2020/lib/shared/components/case-editor/services/valid-page-list-caseFields.service.mjs +39 -0
- package/esm2020/lib/shared/components/case-editor/services/wizard-page-field-to-case-field.mapper.mjs +117 -0
- package/esm2020/lib/shared/components/case-editor/services/work-allocation.service.mjs +214 -0
- package/esm2020/lib/shared/components/case-header/case-header.component.mjs +61 -0
- package/esm2020/lib/shared/components/case-header/case-header.module.mjs +33 -0
- package/esm2020/lib/shared/components/case-history/case-history.component.mjs +242 -0
- package/esm2020/lib/shared/components/case-history/case-history.module.mjs +64 -0
- package/esm2020/lib/shared/components/case-history/domain/case-history.model.mjs +29 -0
- package/esm2020/lib/shared/components/case-history/services/case-history.service.mjs +40 -0
- package/esm2020/lib/shared/components/case-list/case-list.component.mjs +362 -0
- package/esm2020/lib/shared/components/case-list/case-list.module.mjs +47 -0
- package/esm2020/lib/shared/components/case-list-filters/case-list-filters.component.mjs +52 -0
- package/esm2020/lib/shared/components/case-list-filters/case-list-filters.module.mjs +64 -0
- package/esm2020/lib/shared/components/case-timeline/case-timeline.component.mjs +109 -0
- package/esm2020/lib/shared/components/case-timeline/case-timeline.module.mjs +52 -0
- package/esm2020/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.mjs +247 -0
- package/esm2020/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.mjs +298 -0
- package/esm2020/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.mjs +72 -0
- package/esm2020/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.mjs +141 -0
- package/esm2020/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.mjs +670 -0
- package/esm2020/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.mjs +58 -0
- package/esm2020/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.mjs +241 -0
- package/esm2020/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.mjs +199 -0
- package/esm2020/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.mjs +47 -0
- package/esm2020/lib/shared/components/case-viewer/case-view/case-view.component.mjs +98 -0
- package/esm2020/lib/shared/components/case-viewer/case-viewer.component.mjs +125 -0
- package/esm2020/lib/shared/components/case-viewer/case-viewer.module.mjs +191 -0
- package/esm2020/lib/shared/components/case-viewer/printer/case-printer.component.mjs +110 -0
- package/esm2020/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.mjs +60 -0
- package/esm2020/lib/shared/components/case-viewer/services/case.resolver.mjs +128 -0
- package/esm2020/lib/shared/components/case-viewer/services/event-trigger.resolver.mjs +77 -0
- package/esm2020/lib/shared/components/create-case-filters/create-case-filters-selection.model.mjs +8 -0
- package/esm2020/lib/shared/components/create-case-filters/create-case-filters.component.mjs +275 -0
- package/esm2020/lib/shared/components/create-case-filters/create-case-filters.module.mjs +44 -0
- package/esm2020/lib/shared/components/dialogs/delete-or-cancel-dialog/delete-or-cancel-dialog.component.mjs +57 -0
- package/esm2020/lib/shared/components/dialogs/dialogs.module.mjs +51 -0
- package/esm2020/lib/shared/components/dialogs/document-dialog/document-dialog.component.mjs +59 -0
- package/esm2020/lib/shared/components/dialogs/remove-dialog/remove-dialog.component.mjs +57 -0
- package/esm2020/lib/shared/components/dialogs/save-or-discard-dialog/save-or-discard-dialog.component.mjs +61 -0
- package/esm2020/lib/shared/components/error/callback-errors.component.mjs +149 -0
- package/esm2020/lib/shared/components/error/domain/error-context.mjs +3 -0
- package/esm2020/lib/shared/components/error/errors.module.mjs +33 -0
- package/esm2020/lib/shared/components/error-message/error-message.component.mjs +43 -0
- package/esm2020/lib/shared/components/error-message/error-message.module.mjs +41 -0
- package/esm2020/lib/shared/components/event-start/components/multiple-tasks-exist/multiple-tasks-exist.component.mjs +59 -0
- package/esm2020/lib/shared/components/event-start/components/no-tasks-available/no-tasks-available.component.mjs +53 -0
- package/esm2020/lib/shared/components/event-start/components/task-assigned/task-assigned.component.mjs +104 -0
- package/esm2020/lib/shared/components/event-start/components/task-cancelled/task-cancelled.component.mjs +68 -0
- package/esm2020/lib/shared/components/event-start/components/task-conflict/task-conflict.component.mjs +58 -0
- package/esm2020/lib/shared/components/event-start/components/task-unassigned/task-unassigned.component.mjs +53 -0
- package/esm2020/lib/shared/components/event-start/event-guard/event-start.guard.mjs +101 -0
- package/esm2020/lib/shared/components/event-start/event-start.component.mjs +49 -0
- package/esm2020/lib/shared/components/event-start/event-start.module.mjs +71 -0
- package/esm2020/lib/shared/components/event-start/resolvers/event-tasks-resolver.service.mjs +29 -0
- package/esm2020/lib/shared/components/event-start/services/event-start-state-machine.service.mjs +170 -0
- package/esm2020/lib/shared/components/event-trigger/event-trigger.component.mjs +123 -0
- package/esm2020/lib/shared/components/event-trigger/event-trigger.module.mjs +37 -0
- package/esm2020/lib/shared/components/loading-spinner/loading-spinner.component.mjs +27 -0
- package/esm2020/lib/shared/components/loading-spinner/loading-spinner.module.mjs +29 -0
- package/esm2020/lib/shared/components/pagination/pagination.component.mjs +262 -0
- package/esm2020/lib/shared/components/pagination/pagination.module.mjs +35 -0
- package/esm2020/lib/shared/components/palette/address/address-option.model.mjs +21 -0
- package/esm2020/lib/shared/components/palette/address/write-address-field.component.mjs +280 -0
- package/esm2020/lib/shared/components/palette/base-field/abstract-field-read.component.mjs +31 -0
- package/esm2020/lib/shared/components/palette/base-field/abstract-field-write.component.mjs +44 -0
- package/esm2020/lib/shared/components/palette/base-field/abstract-form-field.component.mjs +83 -0
- package/esm2020/lib/shared/components/palette/base-field/field-read-label.component.mjs +86 -0
- package/esm2020/lib/shared/components/palette/base-field/field-read.component.mjs +85 -0
- package/esm2020/lib/shared/components/palette/base-field/field-write.component.mjs +74 -0
- package/esm2020/lib/shared/components/palette/base-field/payment-field.component.mjs +35 -0
- package/esm2020/lib/shared/components/palette/case-file-view/case-file-view-field.component.mjs +171 -0
- package/esm2020/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.mjs +48 -0
- package/esm2020/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.mjs +48 -0
- package/esm2020/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.mjs +342 -0
- package/esm2020/lib/shared/components/palette/case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component.mjs +154 -0
- package/esm2020/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.mjs +94 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.mjs +190 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.mjs +288 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.mjs +207 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.mjs +165 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.mjs +219 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.mjs +306 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.mjs +200 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.mjs +343 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.mjs +267 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.mjs +510 -0
- package/esm2020/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.mjs +41 -0
- package/esm2020/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.mjs +41 -0
- package/esm2020/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.mjs +109 -0
- package/esm2020/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.mjs +77 -0
- package/esm2020/lib/shared/components/palette/case-flag/read-case-flag-field.component.mjs +246 -0
- package/esm2020/lib/shared/components/palette/case-flag/write-case-flag-field.component.mjs +686 -0
- package/esm2020/lib/shared/components/palette/case-link/read-case-link-field.component.mjs +32 -0
- package/esm2020/lib/shared/components/palette/case-link/write-case-link-field.component.mjs +122 -0
- package/esm2020/lib/shared/components/palette/collection/collection-create-checker.service.mjs +42 -0
- package/esm2020/lib/shared/components/palette/collection/read-collection-field.component.mjs +81 -0
- package/esm2020/lib/shared/components/palette/collection/write-collection-field.component.mjs +441 -0
- package/esm2020/lib/shared/components/palette/complex/read-complex-field-collection-table.component.mjs +379 -0
- package/esm2020/lib/shared/components/palette/complex/read-complex-field-raw.component.mjs +53 -0
- package/esm2020/lib/shared/components/palette/complex/read-complex-field-table.component.mjs +78 -0
- package/esm2020/lib/shared/components/palette/complex/read-complex-field.component.mjs +75 -0
- package/esm2020/lib/shared/components/palette/complex/write-complex-field.component.mjs +169 -0
- package/esm2020/lib/shared/components/palette/date/read-date-field.component.mjs +28 -0
- package/esm2020/lib/shared/components/palette/date/write-date-container-field.component.mjs +33 -0
- package/esm2020/lib/shared/components/palette/date/write-date-field.component.mjs +76 -0
- package/esm2020/lib/shared/components/palette/datetime-picker/datetime-picker.component.mjs +309 -0
- package/esm2020/lib/shared/components/palette/document/document-url.pipe.mjs +24 -0
- package/esm2020/lib/shared/components/palette/document/file-upload-progress.guard.mjs +29 -0
- package/esm2020/lib/shared/components/palette/document/file-upload-state.service.mjs +16 -0
- package/esm2020/lib/shared/components/palette/document/read-document-field.component.mjs +81 -0
- package/esm2020/lib/shared/components/palette/document/write-document-field.component.mjs +408 -0
- package/esm2020/lib/shared/components/palette/dynamic-list/dynamic-list.pipe.mjs +18 -0
- package/esm2020/lib/shared/components/palette/dynamic-list/read-dynamic-list-field.component.mjs +36 -0
- package/esm2020/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.mjs +124 -0
- package/esm2020/lib/shared/components/palette/dynamic-multi-select-list/read-dynamic-multi-select-list-field.component.mjs +43 -0
- package/esm2020/lib/shared/components/palette/dynamic-multi-select-list/write-dynamic-multi-select-list-field.component.mjs +145 -0
- package/esm2020/lib/shared/components/palette/dynamic-radio-list/dynamic-radio-list.pipe.mjs +25 -0
- package/esm2020/lib/shared/components/palette/dynamic-radio-list/read-dynamic-radio-list-field.component.mjs +42 -0
- package/esm2020/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.mjs +124 -0
- package/esm2020/lib/shared/components/palette/email/read-email-field.component.mjs +35 -0
- package/esm2020/lib/shared/components/palette/email/write-email-field.component.mjs +73 -0
- package/esm2020/lib/shared/components/palette/fixed-list/fixed-list.pipe.mjs +23 -0
- package/esm2020/lib/shared/components/palette/fixed-list/read-fixed-list-field.component.mjs +26 -0
- package/esm2020/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.mjs +106 -0
- package/esm2020/lib/shared/components/palette/fixed-radio-list/fixed-radio-list.pipe.mjs +18 -0
- package/esm2020/lib/shared/components/palette/fixed-radio-list/read-fixed-radio-list-field.component.mjs +26 -0
- package/esm2020/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.mjs +95 -0
- package/esm2020/lib/shared/components/palette/history/case-history-viewer-field.component.mjs +16 -0
- package/esm2020/lib/shared/components/palette/history/event-log/event-log-details.component.mjs +97 -0
- package/esm2020/lib/shared/components/palette/history/event-log/event-log-table.component.mjs +225 -0
- package/esm2020/lib/shared/components/palette/history/event-log/event-log.component.mjs +72 -0
- package/esm2020/lib/shared/components/palette/judicial-user/read-judicial-user-field.component.mjs +45 -0
- package/esm2020/lib/shared/components/palette/judicial-user/write-judicial-user-field.component.mjs +242 -0
- package/esm2020/lib/shared/components/palette/label/label-field.component.mjs +50 -0
- package/esm2020/lib/shared/components/palette/linked-cases/components/before-you-start/before-you-start.component.mjs +108 -0
- package/esm2020/lib/shared/components/palette/linked-cases/components/check-your-answers/check-your-answers.component.mjs +189 -0
- package/esm2020/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.mjs +530 -0
- package/esm2020/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.mjs +204 -0
- package/esm2020/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.mjs +280 -0
- package/esm2020/lib/shared/components/palette/linked-cases/components/no-linked-cases/no-linked-cases.component.mjs +66 -0
- package/esm2020/lib/shared/components/palette/linked-cases/components/unlink-cases/unlink-cases.component.mjs +201 -0
- package/esm2020/lib/shared/components/palette/linked-cases/domain/linked-cases.model.mjs +22 -0
- package/esm2020/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.mjs +163 -0
- package/esm2020/lib/shared/components/palette/linked-cases/services/linked-cases.service.mjs +132 -0
- package/esm2020/lib/shared/components/palette/linked-cases/utils/validators.utils.mjs +27 -0
- package/esm2020/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.mjs +229 -0
- package/esm2020/lib/shared/components/palette/markdown/markdown-component.module.mjs +49 -0
- package/esm2020/lib/shared/components/palette/markdown/markdown.component.mjs +78 -0
- package/esm2020/lib/shared/components/palette/markdown/routerlink.component.mjs +23 -0
- package/esm2020/lib/shared/components/palette/money-gbp/money-gbp-input.component.mjs +123 -0
- package/esm2020/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.mjs +47 -0
- package/esm2020/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.mjs +78 -0
- package/esm2020/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.mjs +45 -0
- package/esm2020/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.mjs +126 -0
- package/esm2020/lib/shared/components/palette/number/read-number-field.component.mjs +24 -0
- package/esm2020/lib/shared/components/palette/number/write-number-field.component.mjs +73 -0
- package/esm2020/lib/shared/components/palette/order-summary/fee-value.model.mjs +3 -0
- package/esm2020/lib/shared/components/palette/order-summary/fee.model.mjs +4 -0
- package/esm2020/lib/shared/components/palette/order-summary/order-summary.model.mjs +3 -0
- package/esm2020/lib/shared/components/palette/order-summary/read-order-summary-field.component.mjs +73 -0
- package/esm2020/lib/shared/components/palette/order-summary/read-order-summary-row.component.mjs +43 -0
- package/esm2020/lib/shared/components/palette/order-summary/write-order-summary-field.component.mjs +44 -0
- package/esm2020/lib/shared/components/palette/organisation/read-organisation-field-raw.component.mjs +83 -0
- package/esm2020/lib/shared/components/palette/organisation/read-organisation-field-table.component.mjs +87 -0
- package/esm2020/lib/shared/components/palette/organisation/read-organisation-field.component.mjs +56 -0
- package/esm2020/lib/shared/components/palette/organisation/write-organisation-complex-field.component.mjs +33 -0
- package/esm2020/lib/shared/components/palette/organisation/write-organisation-field.component.mjs +384 -0
- package/esm2020/lib/shared/components/palette/palette.module.mjs +738 -0
- package/esm2020/lib/shared/components/palette/palette.service.mjs +155 -0
- package/esm2020/lib/shared/components/palette/payment/case-payment-history-viewer-field.component.mjs +24 -0
- package/esm2020/lib/shared/components/palette/phone-uk/read-phone-uk-field.component.mjs +22 -0
- package/esm2020/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.mjs +73 -0
- package/esm2020/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.mjs +42 -0
- package/esm2020/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.mjs +144 -0
- package/esm2020/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.mjs +64 -0
- package/esm2020/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.mjs +60 -0
- package/esm2020/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.mjs +281 -0
- package/esm2020/lib/shared/components/palette/query-management/components/query-details/query-details.component.mjs +327 -0
- package/esm2020/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.mjs +22 -0
- package/esm2020/lib/shared/components/palette/query-management/components/query-list/query-list.component.mjs +164 -0
- package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.mjs +74 -0
- package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.mjs +107 -0
- package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.mjs +201 -0
- package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.mjs +101 -0
- package/esm2020/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.mjs +21 -0
- package/esm2020/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.mjs +38 -0
- package/esm2020/lib/shared/components/palette/query-management/read-query-management-field.component.mjs +121 -0
- package/esm2020/lib/shared/components/palette/query-management/utils/query-management.utils.mjs +22 -0
- package/esm2020/lib/shared/components/palette/text/read-text-field.component.mjs +24 -0
- package/esm2020/lib/shared/components/palette/text/write-text-field.component.mjs +77 -0
- package/esm2020/lib/shared/components/palette/text-area/read-text-area-field.component.mjs +24 -0
- package/esm2020/lib/shared/components/palette/text-area/write-text-area-field.component.mjs +87 -0
- package/esm2020/lib/shared/components/palette/unsupported-field.component.mjs +17 -0
- package/esm2020/lib/shared/components/palette/utils/dash.pipe.mjs +16 -0
- package/esm2020/lib/shared/components/palette/utils/date.pipe.mjs +132 -0
- package/esm2020/lib/shared/components/palette/utils/field-label.pipe.mjs +29 -0
- package/esm2020/lib/shared/components/palette/utils/first-error.pipe.mjs +62 -0
- package/esm2020/lib/shared/components/palette/utils/is-compound.pipe.mjs +43 -0
- package/esm2020/lib/shared/components/palette/utils/is-mandatory.pipe.mjs +21 -0
- package/esm2020/lib/shared/components/palette/utils/is-read-only-and-not-collection.pipe.mjs +31 -0
- package/esm2020/lib/shared/components/palette/utils/is-read-only.pipe.mjs +21 -0
- package/esm2020/lib/shared/components/palette/utils/utils.module.mjs +71 -0
- package/esm2020/lib/shared/components/palette/waystopay/waystopay-field.component.mjs +34 -0
- package/esm2020/lib/shared/components/palette/yes-no/read-yes-no-field.component.mjs +34 -0
- package/esm2020/lib/shared/components/palette/yes-no/write-yes-no-field.component.mjs +100 -0
- package/esm2020/lib/shared/components/palette/yes-no/yes-no.service.mjs +50 -0
- package/esm2020/lib/shared/components/search-filters/domain/search-input.model.mjs +10 -0
- package/esm2020/lib/shared/components/search-filters/search-filters-wrapper.component.mjs +58 -0
- package/esm2020/lib/shared/components/search-filters/search-filters.component.mjs +326 -0
- package/esm2020/lib/shared/components/search-filters/search-filters.module.mjs +71 -0
- package/esm2020/lib/shared/components/search-result/search-result.component.mjs +815 -0
- package/esm2020/lib/shared/components/search-result/search-result.module.mjs +82 -0
- package/esm2020/lib/shared/components/workbasket-filters/workbasket-filters.component.mjs +479 -0
- package/esm2020/lib/shared/components/workbasket-filters/workbasket-filters.module.mjs +67 -0
- package/esm2020/lib/shared/directives/conditional-show/conditional-show-form.directive.mjs +164 -0
- package/esm2020/lib/shared/directives/conditional-show/conditional-show.module.mjs +33 -0
- package/esm2020/lib/shared/directives/conditional-show/domain/conditional-show.model.mjs +200 -0
- package/esm2020/lib/shared/directives/conditional-show/services/condition-parser.service.mjs +200 -0
- package/esm2020/lib/shared/directives/conditional-show/services/conditional-show-registrar.service.mjs +19 -0
- package/esm2020/lib/shared/directives/conditional-show/services/grey-bar.service.mjs +47 -0
- package/esm2020/lib/shared/directives/focus-element/focus-element.directive.mjs +36 -0
- package/esm2020/lib/shared/directives/focus-element/focus-element.module.mjs +21 -0
- package/esm2020/lib/shared/directives/substitutor/label-substitutor.directive.mjs +82 -0
- package/esm2020/lib/shared/directives/substitutor/label-substitutor.module.mjs +30 -0
- package/esm2020/lib/shared/directives/substitutor/services/placeholder.service.mjs +200 -0
- package/esm2020/lib/shared/domain/activity/activity.model.mjs +10 -0
- package/esm2020/lib/shared/domain/addresses/address.model.mjs +13 -0
- package/esm2020/lib/shared/domain/alert/alert.model.mjs +3 -0
- package/esm2020/lib/shared/domain/case-details.model.mjs +4 -0
- package/esm2020/lib/shared/domain/case-event-data.model.mjs +4 -0
- package/esm2020/lib/shared/domain/case-file-view/case-file-view-category.model.mjs +3 -0
- package/esm2020/lib/shared/domain/case-file-view/case-file-view-document.model.mjs +4 -0
- package/esm2020/lib/shared/domain/case-file-view/categories-and-documents.model.mjs +7 -0
- package/esm2020/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.mjs +117 -0
- package/esm2020/lib/shared/domain/case-flag/flag-type.model.mjs +28 -0
- package/esm2020/lib/shared/domain/case-flag/hmcts-service-detail.model.mjs +10 -0
- package/esm2020/lib/shared/domain/case-view/case-event-trigger.model.mjs +23 -0
- package/esm2020/lib/shared/domain/case-view/case-print-document.model.mjs +3 -0
- package/esm2020/lib/shared/domain/case-view/case-tab.model.mjs +12 -0
- package/esm2020/lib/shared/domain/case-view/case-view-event.model.mjs +4 -0
- package/esm2020/lib/shared/domain/case-view/case-view-trigger.model.mjs +3 -0
- package/esm2020/lib/shared/domain/case-view/case-view.model.mjs +17 -0
- package/esm2020/lib/shared/domain/definition/access-control-list.model.mjs +3 -0
- package/esm2020/lib/shared/domain/definition/banner.model.mjs +3 -0
- package/esm2020/lib/shared/domain/definition/case-event.model.mjs +3 -0
- package/esm2020/lib/shared/domain/definition/case-field.model.mjs +200 -0
- package/esm2020/lib/shared/domain/definition/case-state.model.mjs +3 -0
- package/esm2020/lib/shared/domain/definition/case-type-lite.model.mjs +5 -0
- package/esm2020/lib/shared/domain/definition/case-type.model.mjs +12 -0
- package/esm2020/lib/shared/domain/definition/event-case-field.model.mjs +4 -0
- package/esm2020/lib/shared/domain/definition/field-type.model.mjs +22 -0
- package/esm2020/lib/shared/domain/definition/fixed-list-item.model.mjs +3 -0
- package/esm2020/lib/shared/domain/definition/jurisdiction.model.mjs +3 -0
- package/esm2020/lib/shared/domain/document/document-data.model.mjs +14 -0
- package/esm2020/lib/shared/domain/draft.model.mjs +11 -0
- package/esm2020/lib/shared/domain/http/http-error.model.mjs +40 -0
- package/esm2020/lib/shared/domain/organisation/organisation-converter.mjs +42 -0
- package/esm2020/lib/shared/domain/pagination-metadata.model.mjs +3 -0
- package/esm2020/lib/shared/domain/profile/profile.model.mjs +29 -0
- package/esm2020/lib/shared/domain/search/field.model.mjs +11 -0
- package/esm2020/lib/shared/domain/search/search-result-view-column.model.mjs +3 -0
- package/esm2020/lib/shared/domain/search/search-result-view-item.model.mjs +12 -0
- package/esm2020/lib/shared/domain/search/search-result-view.model.mjs +23 -0
- package/esm2020/lib/shared/domain/search/sorting/sort-parameters.mjs +7 -0
- package/esm2020/lib/shared/domain/workbasket/workbasket-input.model.mjs +5 -0
- package/esm2020/lib/shared/fixture/case-field-builder.mjs +69 -0
- package/esm2020/lib/shared/pipes/case-reference/case-reference.pipe.mjs +33 -0
- package/esm2020/lib/shared/pipes/case-title/ccd-case-title.pipe.mjs +29 -0
- package/esm2020/lib/shared/pipes/complex/ccd-collection-table-value-case-fields.pipe.mjs +32 -0
- package/esm2020/lib/shared/pipes/complex/ccd-cyapage-label-filter.pipe.mjs +29 -0
- package/esm2020/lib/shared/pipes/complex/ccd-page-fields.pipe.mjs +39 -0
- package/esm2020/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.mjs +173 -0
- package/esm2020/lib/shared/pipes/complex/ccd-tab-fields.pipe.mjs +31 -0
- package/esm2020/lib/shared/pipes/complex/fields-filter.pipe.mjs +105 -0
- package/esm2020/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.mjs +16 -0
- package/esm2020/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.mjs +27 -0
- package/esm2020/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.mjs +27 -0
- package/esm2020/lib/shared/pipes/pipes.module.mjs +64 -0
- package/esm2020/lib/shared/pipes/search-result/sorting/sort-search-result.pipe.mjs +24 -0
- package/esm2020/lib/shared/services/activity/activity.polling.service.mjs +114 -0
- package/esm2020/lib/shared/services/activity/activity.service.mjs +82 -0
- package/esm2020/lib/shared/services/addresses/address-parser.mjs +76 -0
- package/esm2020/lib/shared/services/addresses/addresses.service.mjs +63 -0
- package/esm2020/lib/shared/services/alert/alert.service.mjs +142 -0
- package/esm2020/lib/shared/services/auth/auth.service.mjs +33 -0
- package/esm2020/lib/shared/services/banners/banners.service.mjs +33 -0
- package/esm2020/lib/shared/services/browser/browser.service.mjs +24 -0
- package/esm2020/lib/shared/services/case-fields/case-field.service.mjs +34 -0
- package/esm2020/lib/shared/services/case-fields/format-translator.service.mjs +242 -0
- package/esm2020/lib/shared/services/case-file-view/case-file-view.service.mjs +46 -0
- package/esm2020/lib/shared/services/case-flag/case-flag-refdata.service.mjs +102 -0
- package/esm2020/lib/shared/services/common-data-service/common-data-service.mjs +28 -0
- package/esm2020/lib/shared/services/definitions/definitions.module.mjs +19 -0
- package/esm2020/lib/shared/services/definitions/definitions.service.mjs +30 -0
- package/esm2020/lib/shared/services/document-management/document-management.service.mjs +112 -0
- package/esm2020/lib/shared/services/draft/draft.service.mjs +86 -0
- package/esm2020/lib/shared/services/error/error-notifier.service.mjs +18 -0
- package/esm2020/lib/shared/services/eventStatusService/event-status.service.mjs +21 -0
- package/esm2020/lib/shared/services/fields/fields.purger.mjs +304 -0
- package/esm2020/lib/shared/services/fields/fields.utils.mjs +615 -0
- package/esm2020/lib/shared/services/form/field-type-sanitiser.mjs +102 -0
- package/esm2020/lib/shared/services/form/form-error.service.mjs +46 -0
- package/esm2020/lib/shared/services/form/form-validators.service.mjs +82 -0
- package/esm2020/lib/shared/services/form/form-value.service.mjs +551 -0
- package/esm2020/lib/shared/services/http/http-error.service.mjs +65 -0
- package/esm2020/lib/shared/services/http/http.service.mjs +93 -0
- package/esm2020/lib/shared/services/jurisdiction/jurisdiction.service.mjs +33 -0
- package/esm2020/lib/shared/services/loading/loading.module.mjs +22 -0
- package/esm2020/lib/shared/services/loading/loading.service.mjs +33 -0
- package/esm2020/lib/shared/services/navigation/navigation-notifier.service.mjs +18 -0
- package/esm2020/lib/shared/services/order/order.service.mjs +39 -0
- package/esm2020/lib/shared/services/organisation/organisation.service.mjs +54 -0
- package/esm2020/lib/shared/services/profile/profile.notifier.mjs +19 -0
- package/esm2020/lib/shared/services/profile/profile.service.mjs +34 -0
- package/esm2020/lib/shared/services/request/request.options.builder.mjs +61 -0
- package/esm2020/lib/shared/services/router/router-helper.service.mjs +20 -0
- package/esm2020/lib/shared/services/search/search.service.mjs +89 -0
- package/esm2020/lib/shared/services/search-result/sorting/search-result-view-item-comparator-factory.mjs +71 -0
- package/esm2020/lib/shared/services/session/session-storage.service.mjs +34 -0
- package/esm2020/lib/shared/services/utils/retry/retry.service.mjs +86 -0
- package/esm2020/lib/shared/services/window/window.service.mjs +40 -0
- package/esm2020/lib/shared/services/workbasket/workbasket-input-filter.service.mjs +53 -0
- package/esm2020/lib/shared/test/test-route-snapshot-builder.mjs +40 -0
- package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs +38781 -0
- package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs.map +1 -0
- package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs +35799 -0
- package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs.map +1 -0
- package/lib/components/banners/alert/alert.component.d.ts +1 -1
- package/lib/components/banners/notification-banner/notification-banner.component.d.ts +1 -1
- package/lib/components/footer/footer.component.d.ts +1 -1
- package/lib/components/form/date-input/date-input.component.d.ts +1 -1
- package/lib/components/header/header-bar/header-bar.component.d.ts +1 -1
- package/lib/components/header/navigation/navigation-item.component.d.ts +1 -1
- package/lib/components/header/navigation/navigation.component.d.ts +1 -1
- package/lib/components/header/phase/phase.component.d.ts +1 -1
- package/lib/components/tabs/tab.component.d.ts +1 -1
- package/lib/shared/commons/case-edit-data/case-edit-validation.model.d.ts +1 -1
- package/lib/shared/commons/case-edit-data/case-edit-validation.model.d.ts.map +1 -1
- package/lib/shared/components/activity/activity-banner/activity-banner.component.d.ts +1 -1
- package/lib/shared/components/activity/activity-icon/activity-icon.component.d.ts +1 -1
- package/lib/shared/components/activity/activity.component.d.ts +1 -1
- package/lib/shared/components/case-editor/case-create/case-create.component.d.ts +1 -1
- package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts +1 -1
- package/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.d.ts +1 -1
- package/lib/shared/components/case-editor/case-edit-generic-errors/case-edit-generic-errors.component.d.ts +1 -1
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.d.ts +1 -1
- package/lib/shared/components/case-editor/case-progress/case-progress.component.d.ts +1 -1
- package/lib/shared/components/case-header/case-header.component.d.ts +1 -1
- package/lib/shared/components/case-history/case-history.component.d.ts +1 -1
- package/lib/shared/components/case-list/case-list.component.d.ts +1 -1
- package/lib/shared/components/case-list-filters/case-list-filters.component.d.ts +1 -1
- package/lib/shared/components/case-timeline/case-timeline.component.d.ts +1 -1
- package/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.d.ts +1 -1
- package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts +4 -5
- package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/case-view/case-view.component.d.ts +1 -1
- package/lib/shared/components/case-viewer/case-viewer.component.d.ts +1 -1
- package/lib/shared/components/case-viewer/services/event-trigger.resolver.d.ts +7 -2
- package/lib/shared/components/case-viewer/services/event-trigger.resolver.d.ts.map +1 -1
- package/lib/shared/components/create-case-filters/create-case-filters.component.d.ts +1 -1
- package/lib/shared/components/error/callback-errors.component.d.ts +1 -1
- package/lib/shared/components/error/callback-errors.component.d.ts.map +1 -1
- package/lib/shared/components/error/domain/error-context.d.ts +1 -0
- package/lib/shared/components/error/domain/error-context.d.ts.map +1 -1
- package/lib/shared/components/error-message/error-message.component.d.ts +1 -1
- package/lib/shared/components/event-start/components/task-cancelled/task-cancelled.component.d.ts +1 -1
- package/lib/shared/components/event-start/components/task-conflict/task-conflict.component.d.ts +1 -1
- package/lib/shared/components/event-trigger/event-trigger.component.d.ts +6 -3
- package/lib/shared/components/event-trigger/event-trigger.component.d.ts.map +1 -1
- package/lib/shared/components/loading-spinner/loading-spinner.component.d.ts +1 -1
- package/lib/shared/components/pagination/pagination.component.d.ts +1 -1
- package/lib/shared/components/palette/address/write-address-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/base-field/abstract-field-read.component.d.ts +1 -1
- package/lib/shared/components/palette/base-field/abstract-field-write.component.d.ts +1 -1
- package/lib/shared/components/palette/base-field/abstract-form-field.component.d.ts +2 -2
- package/lib/shared/components/palette/base-field/abstract-form-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/base-field/field-read-label.component.d.ts +1 -1
- package/lib/shared/components/palette/base-field/field-read.component.d.ts +1 -1
- package/lib/shared/components/palette/base-field/field-write.component.d.ts +1 -1
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.d.ts +1 -1
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.d.ts +1 -1
- package/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.d.ts +1 -1
- package/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.d.ts +1 -1
- package/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.d.ts +1 -1
- package/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.d.ts +1 -1
- package/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.d.ts +1 -1
- package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts +1 -1
- package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.d.ts +1 -1
- package/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.d.ts +1 -1
- package/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.d.ts +1 -1
- package/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.d.ts +1 -1
- package/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.d.ts +1 -1
- package/lib/shared/components/palette/collection/write-collection-field.component.d.ts +2 -2
- package/lib/shared/components/palette/collection/write-collection-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/complex/read-complex-field-raw.component.d.ts +1 -1
- package/lib/shared/components/palette/complex/read-complex-field-table.component.d.ts +1 -1
- package/lib/shared/components/palette/complex/read-complex-field.component.d.ts +1 -1
- package/lib/shared/components/palette/complex/write-complex-field.component.d.ts +1 -1
- package/lib/shared/components/palette/datetime-picker/datetime-picker.component.d.ts +1 -1
- package/lib/shared/components/palette/history/event-log/event-log-details.component.d.ts +1 -1
- package/lib/shared/components/palette/history/event-log/event-log-table.component.d.ts +1 -1
- package/lib/shared/components/palette/history/event-log/event-log.component.d.ts +1 -1
- package/lib/shared/components/palette/label/label-field.component.d.ts +1 -1
- package/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.d.ts +1 -1
- package/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.d.ts +1 -1
- package/lib/shared/components/palette/markdown/markdown-component.module.d.ts +2 -2
- package/lib/shared/components/palette/markdown/markdown.component.d.ts +4 -2
- package/lib/shared/components/palette/markdown/markdown.component.d.ts.map +1 -1
- package/lib/shared/components/palette/money-gbp/money-gbp-input.component.d.ts +1 -1
- package/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.d.ts +1 -1
- package/lib/shared/components/palette/order-summary/read-order-summary-row.component.d.ts +1 -1
- package/lib/shared/components/palette/organisation/read-organisation-field-raw.component.d.ts +1 -1
- package/lib/shared/components/palette/organisation/read-organisation-field-table.component.d.ts +1 -1
- package/lib/shared/components/palette/organisation/read-organisation-field.component.d.ts +1 -1
- package/lib/shared/components/palette/organisation/write-organisation-complex-field.component.d.ts +1 -1
- package/lib/shared/components/palette/palette.module.d.ts +2 -2
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/components/query-details/query-details.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/components/query-list/query-list.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.d.ts +1 -1
- package/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.d.ts +1 -1
- package/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.d.ts.map +1 -1
- package/lib/shared/components/search-filters/search-filters-wrapper.component.d.ts +1 -1
- package/lib/shared/components/search-filters/search-filters.component.d.ts +1 -1
- package/lib/shared/components/search-result/search-result.component.d.ts +1 -1
- package/lib/shared/components/workbasket-filters/workbasket-filters.component.d.ts +1 -1
- package/lib/shared/directives/conditional-show/conditional-show-form.directive.d.ts +1 -1
- package/lib/shared/directives/substitutor/label-substitutor.directive.d.ts +1 -1
- package/lib/shared/domain/alert/alert-level.model.d.ts +1 -1
- package/lib/shared/domain/alert/alert-level.model.d.ts.map +1 -1
- package/lib/shared/domain/case-view/access-types.model.d.ts +1 -1
- package/lib/shared/domain/case-view/access-types.model.d.ts.map +1 -1
- package/lib/shared/domain/case-view/role-request.model.d.ts +4 -4
- package/lib/shared/domain/case-view/role-request.model.d.ts.map +1 -1
- package/lib/shared/domain/definition/field-type-enum.model.d.ts +1 -1
- package/lib/shared/domain/definition/field-type-enum.model.d.ts.map +1 -1
- package/lib/shared/domain/predicate.model.d.ts +1 -1
- package/lib/shared/domain/predicate.model.d.ts.map +1 -1
- package/lib/shared/pipes/complex/fields-filter.pipe.d.ts.map +1 -1
- package/lib/shared/services/error/error-notifier.service.d.ts.map +1 -1
- package/lib/shared/services/order/order.service.d.ts +2 -2
- package/lib/shared/services/order/order.service.d.ts.map +1 -1
- package/lib/shared/services/request/request.options.builder.d.ts +1 -1
- package/lib/shared/services/request/request.options.builder.d.ts.map +1 -1
- package/package.json +12 -6
- package/esm2022/lib/app.config.mjs +0 -93
- package/esm2022/lib/components/banners/alert/alert-icon-class.pipe.mjs +0 -25
- package/esm2022/lib/components/banners/alert/alert.component.mjs +0 -92
- package/esm2022/lib/components/banners/alert/alert.module.mjs +0 -32
- package/esm2022/lib/components/banners/banners.module.mjs +0 -32
- package/esm2022/lib/components/banners/notification-banner/notification-banner.component.mjs +0 -116
- package/esm2022/lib/components/banners/notification-banner/notification-banner.module.mjs +0 -19
- package/esm2022/lib/components/body/body.component.mjs +0 -21
- package/esm2022/lib/components/body/body.module.mjs +0 -20
- package/esm2022/lib/components/footer/footer.component.mjs +0 -109
- package/esm2022/lib/components/footer/footers.module.mjs +0 -25
- package/esm2022/lib/components/form/date-input/date-input.component.mjs +0 -341
- package/esm2022/lib/components/form/form.module.mjs +0 -29
- package/esm2022/lib/components/header/header-bar/header-bar.component.mjs +0 -98
- package/esm2022/lib/components/header/headers.module.mjs +0 -25
- package/esm2022/lib/components/header/navigation/navigation-item.component.mjs +0 -45
- package/esm2022/lib/components/header/navigation/navigation.component.mjs +0 -26
- package/esm2022/lib/components/header/phase/phase.component.mjs +0 -49
- package/esm2022/lib/components/tabs/tab.component.mjs +0 -32
- package/esm2022/lib/components/tabs/tabs.component.mjs +0 -83
- package/esm2022/lib/components/tabs/tabs.module.mjs +0 -38
- package/esm2022/lib/shared/commons/address-validation-constants.mjs +0 -13
- package/esm2022/lib/shared/commons/case-edit-data/case-edit-data.module.mjs +0 -19
- package/esm2022/lib/shared/commons/case-edit-data/case-edit-data.service.mjs +0 -46
- package/esm2022/lib/shared/commons/constants.mjs +0 -13
- package/esm2022/lib/shared/components/activity/activity-banner/activity-banner.component.mjs +0 -43
- package/esm2022/lib/shared/components/activity/activity-icon/activity-icon.component.mjs +0 -36
- package/esm2022/lib/shared/components/activity/activity.component.mjs +0 -156
- package/esm2022/lib/shared/components/activity/activity.module.mjs +0 -55
- package/esm2022/lib/shared/components/case-editor/case-access-utils/index.mjs +0 -105
- package/esm2022/lib/shared/components/case-editor/case-create/case-create.component.mjs +0 -96
- package/esm2022/lib/shared/components/case-editor/case-edit/case-edit.component.mjs +0 -464
- package/esm2022/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.mjs +0 -130
- package/esm2022/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.mjs +0 -140
- package/esm2022/lib/shared/components/case-editor/case-edit-generic-errors/case-edit-generic-errors.component.mjs +0 -70
- package/esm2022/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.mjs +0 -806
- package/esm2022/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.mjs +0 -603
- package/esm2022/lib/shared/components/case-editor/case-editor.module.mjs +0 -214
- package/esm2022/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.mjs +0 -97
- package/esm2022/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.mjs +0 -83
- package/esm2022/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.mjs +0 -167
- package/esm2022/lib/shared/components/case-editor/case-progress/case-progress.component.mjs +0 -85
- package/esm2022/lib/shared/components/case-editor/domain/confirmation.model.mjs +0 -25
- package/esm2022/lib/shared/components/case-editor/domain/wizard-page-field-complex-override.model.mjs +0 -9
- package/esm2022/lib/shared/components/case-editor/domain/wizard-page-field.model.mjs +0 -7
- package/esm2022/lib/shared/components/case-editor/domain/wizard-page.model.mjs +0 -33
- package/esm2022/lib/shared/components/case-editor/domain/wizard.model.mjs +0 -55
- package/esm2022/lib/shared/components/case-editor/services/case-edit-wizard.guard.mjs +0 -98
- package/esm2022/lib/shared/components/case-editor/services/case-flag-state.service.mjs +0 -19
- package/esm2022/lib/shared/components/case-editor/services/case-worker.service.mjs +0 -35
- package/esm2022/lib/shared/components/case-editor/services/case.notifier.mjs +0 -53
- package/esm2022/lib/shared/components/case-editor/services/cases.service.mjs +0 -300
- package/esm2022/lib/shared/components/case-editor/services/convert-href-to-router.service.mjs +0 -42
- package/esm2022/lib/shared/components/case-editor/services/event-completion-state-machine.service.mjs +0 -153
- package/esm2022/lib/shared/components/case-editor/services/event-trigger.service.mjs +0 -18
- package/esm2022/lib/shared/components/case-editor/services/judicial-worker.service.mjs +0 -35
- package/esm2022/lib/shared/components/case-editor/services/page-validation.service.mjs +0 -59
- package/esm2022/lib/shared/components/case-editor/services/valid-page-list-caseFields.service.mjs +0 -40
- package/esm2022/lib/shared/components/case-editor/services/wizard-page-field-to-case-field.mapper.mjs +0 -117
- package/esm2022/lib/shared/components/case-editor/services/work-allocation.service.mjs +0 -220
- package/esm2022/lib/shared/components/case-header/case-header.component.mjs +0 -64
- package/esm2022/lib/shared/components/case-header/case-header.module.mjs +0 -33
- package/esm2022/lib/shared/components/case-history/case-history.component.mjs +0 -252
- package/esm2022/lib/shared/components/case-history/case-history.module.mjs +0 -64
- package/esm2022/lib/shared/components/case-history/domain/case-history.model.mjs +0 -37
- package/esm2022/lib/shared/components/case-history/services/case-history.service.mjs +0 -43
- package/esm2022/lib/shared/components/case-list/case-list.component.mjs +0 -368
- package/esm2022/lib/shared/components/case-list/case-list.module.mjs +0 -47
- package/esm2022/lib/shared/components/case-list-filters/case-list-filters.component.mjs +0 -57
- package/esm2022/lib/shared/components/case-list-filters/case-list-filters.module.mjs +0 -64
- package/esm2022/lib/shared/components/case-timeline/case-timeline.component.mjs +0 -115
- package/esm2022/lib/shared/components/case-timeline/case-timeline.module.mjs +0 -52
- package/esm2022/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.mjs +0 -246
- package/esm2022/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.mjs +0 -311
- package/esm2022/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.mjs +0 -75
- package/esm2022/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.mjs +0 -156
- package/esm2022/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.mjs +0 -707
- package/esm2022/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.mjs +0 -61
- package/esm2022/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.mjs +0 -256
- package/esm2022/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.mjs +0 -211
- package/esm2022/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.mjs +0 -50
- package/esm2022/lib/shared/components/case-viewer/case-view/case-view.component.mjs +0 -107
- package/esm2022/lib/shared/components/case-viewer/case-viewer.component.mjs +0 -133
- package/esm2022/lib/shared/components/case-viewer/case-viewer.module.mjs +0 -191
- package/esm2022/lib/shared/components/case-viewer/printer/case-printer.component.mjs +0 -117
- package/esm2022/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.mjs +0 -61
- package/esm2022/lib/shared/components/case-viewer/services/case.resolver.mjs +0 -138
- package/esm2022/lib/shared/components/case-viewer/services/event-trigger.resolver.mjs +0 -70
- package/esm2022/lib/shared/components/create-case-filters/create-case-filters-selection.model.mjs +0 -11
- package/esm2022/lib/shared/components/create-case-filters/create-case-filters.component.mjs +0 -289
- package/esm2022/lib/shared/components/create-case-filters/create-case-filters.module.mjs +0 -44
- package/esm2022/lib/shared/components/dialogs/delete-or-cancel-dialog/delete-or-cancel-dialog.component.mjs +0 -60
- package/esm2022/lib/shared/components/dialogs/dialogs.module.mjs +0 -51
- package/esm2022/lib/shared/components/dialogs/document-dialog/document-dialog.component.mjs +0 -62
- package/esm2022/lib/shared/components/dialogs/remove-dialog/remove-dialog.component.mjs +0 -60
- package/esm2022/lib/shared/components/dialogs/save-or-discard-dialog/save-or-discard-dialog.component.mjs +0 -64
- package/esm2022/lib/shared/components/error/callback-errors.component.mjs +0 -146
- package/esm2022/lib/shared/components/error/domain/error-context.mjs +0 -5
- package/esm2022/lib/shared/components/error/errors.module.mjs +0 -33
- package/esm2022/lib/shared/components/error-message/error-message.component.mjs +0 -45
- package/esm2022/lib/shared/components/error-message/error-message.module.mjs +0 -41
- package/esm2022/lib/shared/components/event-start/components/multiple-tasks-exist/multiple-tasks-exist.component.mjs +0 -62
- package/esm2022/lib/shared/components/event-start/components/no-tasks-available/no-tasks-available.component.mjs +0 -56
- package/esm2022/lib/shared/components/event-start/components/task-assigned/task-assigned.component.mjs +0 -112
- package/esm2022/lib/shared/components/event-start/components/task-cancelled/task-cancelled.component.mjs +0 -70
- package/esm2022/lib/shared/components/event-start/components/task-conflict/task-conflict.component.mjs +0 -61
- package/esm2022/lib/shared/components/event-start/components/task-unassigned/task-unassigned.component.mjs +0 -56
- package/esm2022/lib/shared/components/event-start/event-guard/event-start.guard.mjs +0 -104
- package/esm2022/lib/shared/components/event-start/event-start.component.mjs +0 -56
- package/esm2022/lib/shared/components/event-start/event-start.module.mjs +0 -71
- package/esm2022/lib/shared/components/event-start/resolvers/event-tasks-resolver.service.mjs +0 -31
- package/esm2022/lib/shared/components/event-start/services/event-start-state-machine.service.mjs +0 -179
- package/esm2022/lib/shared/components/event-trigger/event-trigger.component.mjs +0 -117
- package/esm2022/lib/shared/components/event-trigger/event-trigger.module.mjs +0 -37
- package/esm2022/lib/shared/components/loading-spinner/loading-spinner.component.mjs +0 -26
- package/esm2022/lib/shared/components/loading-spinner/loading-spinner.module.mjs +0 -29
- package/esm2022/lib/shared/components/pagination/pagination.component.mjs +0 -260
- package/esm2022/lib/shared/components/pagination/pagination.module.mjs +0 -35
- package/esm2022/lib/shared/components/palette/address/address-option.model.mjs +0 -23
- package/esm2022/lib/shared/components/palette/address/write-address-field.component.mjs +0 -286
- package/esm2022/lib/shared/components/palette/base-field/abstract-field-read.component.mjs +0 -30
- package/esm2022/lib/shared/components/palette/base-field/abstract-field-write.component.mjs +0 -44
- package/esm2022/lib/shared/components/palette/base-field/abstract-form-field.component.mjs +0 -84
- package/esm2022/lib/shared/components/palette/base-field/field-read-label.component.mjs +0 -85
- package/esm2022/lib/shared/components/palette/base-field/field-read.component.mjs +0 -90
- package/esm2022/lib/shared/components/palette/base-field/field-write.component.mjs +0 -78
- package/esm2022/lib/shared/components/palette/base-field/payment-field.component.mjs +0 -37
- package/esm2022/lib/shared/components/palette/case-file-view/case-file-view-field.component.mjs +0 -181
- package/esm2022/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.mjs +0 -50
- package/esm2022/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.mjs +0 -51
- package/esm2022/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.mjs +0 -358
- package/esm2022/lib/shared/components/palette/case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component.mjs +0 -158
- package/esm2022/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.mjs +0 -94
- package/esm2022/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.mjs +0 -190
- package/esm2022/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.mjs +0 -301
- package/esm2022/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.mjs +0 -206
- package/esm2022/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.mjs +0 -169
- package/esm2022/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.mjs +0 -225
- package/esm2022/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.mjs +0 -311
- package/esm2022/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.mjs +0 -202
- package/esm2022/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.mjs +0 -353
- package/esm2022/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.mjs +0 -269
- package/esm2022/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.mjs +0 -510
- package/esm2022/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.mjs +0 -43
- package/esm2022/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.mjs +0 -43
- package/esm2022/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.mjs +0 -111
- package/esm2022/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.mjs +0 -79
- package/esm2022/lib/shared/components/palette/case-flag/read-case-flag-field.component.mjs +0 -253
- package/esm2022/lib/shared/components/palette/case-flag/write-case-flag-field.component.mjs +0 -697
- package/esm2022/lib/shared/components/palette/case-link/read-case-link-field.component.mjs +0 -33
- package/esm2022/lib/shared/components/palette/case-link/write-case-link-field.component.mjs +0 -125
- package/esm2022/lib/shared/components/palette/collection/collection-create-checker.service.mjs +0 -42
- package/esm2022/lib/shared/components/palette/collection/read-collection-field.component.mjs +0 -78
- package/esm2022/lib/shared/components/palette/collection/write-collection-field.component.mjs +0 -447
- package/esm2022/lib/shared/components/palette/complex/read-complex-field-collection-table.component.mjs +0 -378
- package/esm2022/lib/shared/components/palette/complex/read-complex-field-raw.component.mjs +0 -51
- package/esm2022/lib/shared/components/palette/complex/read-complex-field-table.component.mjs +0 -76
- package/esm2022/lib/shared/components/palette/complex/read-complex-field.component.mjs +0 -71
- package/esm2022/lib/shared/components/palette/complex/write-complex-field.component.mjs +0 -173
- package/esm2022/lib/shared/components/palette/date/read-date-field.component.mjs +0 -26
- package/esm2022/lib/shared/components/palette/date/write-date-container-field.component.mjs +0 -33
- package/esm2022/lib/shared/components/palette/date/write-date-field.component.mjs +0 -77
- package/esm2022/lib/shared/components/palette/datetime-picker/datetime-picker.component.mjs +0 -312
- package/esm2022/lib/shared/components/palette/document/document-url.pipe.mjs +0 -25
- package/esm2022/lib/shared/components/palette/document/file-upload-progress.guard.mjs +0 -31
- package/esm2022/lib/shared/components/palette/document/file-upload-state.service.mjs +0 -17
- package/esm2022/lib/shared/components/palette/document/read-document-field.component.mjs +0 -88
- package/esm2022/lib/shared/components/palette/document/write-document-field.component.mjs +0 -430
- package/esm2022/lib/shared/components/palette/dynamic-list/dynamic-list.pipe.mjs +0 -18
- package/esm2022/lib/shared/components/palette/dynamic-list/read-dynamic-list-field.component.mjs +0 -37
- package/esm2022/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.mjs +0 -124
- package/esm2022/lib/shared/components/palette/dynamic-multi-select-list/read-dynamic-multi-select-list-field.component.mjs +0 -44
- package/esm2022/lib/shared/components/palette/dynamic-multi-select-list/write-dynamic-multi-select-list-field.component.mjs +0 -146
- package/esm2022/lib/shared/components/palette/dynamic-radio-list/dynamic-radio-list.pipe.mjs +0 -25
- package/esm2022/lib/shared/components/palette/dynamic-radio-list/read-dynamic-radio-list-field.component.mjs +0 -43
- package/esm2022/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.mjs +0 -123
- package/esm2022/lib/shared/components/palette/email/read-email-field.component.mjs +0 -36
- package/esm2022/lib/shared/components/palette/email/write-email-field.component.mjs +0 -74
- package/esm2022/lib/shared/components/palette/fixed-list/fixed-list.pipe.mjs +0 -23
- package/esm2022/lib/shared/components/palette/fixed-list/read-fixed-list-field.component.mjs +0 -27
- package/esm2022/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.mjs +0 -107
- package/esm2022/lib/shared/components/palette/fixed-radio-list/fixed-radio-list.pipe.mjs +0 -18
- package/esm2022/lib/shared/components/palette/fixed-radio-list/read-fixed-radio-list-field.component.mjs +0 -27
- package/esm2022/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.mjs +0 -96
- package/esm2022/lib/shared/components/palette/history/case-history-viewer-field.component.mjs +0 -17
- package/esm2022/lib/shared/components/palette/history/event-log/event-log-details.component.mjs +0 -99
- package/esm2022/lib/shared/components/palette/history/event-log/event-log-table.component.mjs +0 -224
- package/esm2022/lib/shared/components/palette/history/event-log/event-log.component.mjs +0 -72
- package/esm2022/lib/shared/components/palette/judicial-user/read-judicial-user-field.component.mjs +0 -49
- package/esm2022/lib/shared/components/palette/judicial-user/write-judicial-user-field.component.mjs +0 -253
- package/esm2022/lib/shared/components/palette/label/label-field.component.mjs +0 -50
- package/esm2022/lib/shared/components/palette/linked-cases/components/before-you-start/before-you-start.component.mjs +0 -111
- package/esm2022/lib/shared/components/palette/linked-cases/components/check-your-answers/check-your-answers.component.mjs +0 -191
- package/esm2022/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.mjs +0 -543
- package/esm2022/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.mjs +0 -213
- package/esm2022/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.mjs +0 -287
- package/esm2022/lib/shared/components/palette/linked-cases/components/no-linked-cases/no-linked-cases.component.mjs +0 -69
- package/esm2022/lib/shared/components/palette/linked-cases/components/unlink-cases/unlink-cases.component.mjs +0 -209
- package/esm2022/lib/shared/components/palette/linked-cases/domain/linked-cases.model.mjs +0 -67
- package/esm2022/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.mjs +0 -168
- package/esm2022/lib/shared/components/palette/linked-cases/services/linked-cases.service.mjs +0 -138
- package/esm2022/lib/shared/components/palette/linked-cases/utils/validators.utils.mjs +0 -27
- package/esm2022/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.mjs +0 -234
- package/esm2022/lib/shared/components/palette/markdown/markdown-component.module.mjs +0 -48
- package/esm2022/lib/shared/components/palette/markdown/markdown.component.mjs +0 -81
- package/esm2022/lib/shared/components/palette/markdown/routerlink.component.mjs +0 -25
- package/esm2022/lib/shared/components/palette/money-gbp/money-gbp-input.component.mjs +0 -128
- package/esm2022/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.mjs +0 -50
- package/esm2022/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.mjs +0 -79
- package/esm2022/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.mjs +0 -46
- package/esm2022/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.mjs +0 -126
- package/esm2022/lib/shared/components/palette/number/read-number-field.component.mjs +0 -25
- package/esm2022/lib/shared/components/palette/number/write-number-field.component.mjs +0 -74
- package/esm2022/lib/shared/components/palette/order-summary/fee-value.model.mjs +0 -4
- package/esm2022/lib/shared/components/palette/order-summary/fee.model.mjs +0 -8
- package/esm2022/lib/shared/components/palette/order-summary/order-summary.model.mjs +0 -6
- package/esm2022/lib/shared/components/palette/order-summary/read-order-summary-field.component.mjs +0 -74
- package/esm2022/lib/shared/components/palette/order-summary/read-order-summary-row.component.mjs +0 -45
- package/esm2022/lib/shared/components/palette/order-summary/write-order-summary-field.component.mjs +0 -45
- package/esm2022/lib/shared/components/palette/organisation/read-organisation-field-raw.component.mjs +0 -88
- package/esm2022/lib/shared/components/palette/organisation/read-organisation-field-table.component.mjs +0 -92
- package/esm2022/lib/shared/components/palette/organisation/read-organisation-field.component.mjs +0 -52
- package/esm2022/lib/shared/components/palette/organisation/write-organisation-complex-field.component.mjs +0 -35
- package/esm2022/lib/shared/components/palette/organisation/write-organisation-field.component.mjs +0 -397
- package/esm2022/lib/shared/components/palette/palette.module.mjs +0 -736
- package/esm2022/lib/shared/components/palette/palette.service.mjs +0 -153
- package/esm2022/lib/shared/components/palette/payment/case-payment-history-viewer-field.component.mjs +0 -25
- package/esm2022/lib/shared/components/palette/phone-uk/read-phone-uk-field.component.mjs +0 -23
- package/esm2022/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.mjs +0 -74
- package/esm2022/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.mjs +0 -44
- package/esm2022/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.mjs +0 -150
- package/esm2022/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.mjs +0 -67
- package/esm2022/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.mjs +0 -61
- package/esm2022/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.mjs +0 -292
- package/esm2022/lib/shared/components/palette/query-management/components/query-details/query-details.component.mjs +0 -330
- package/esm2022/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.mjs +0 -24
- package/esm2022/lib/shared/components/palette/query-management/components/query-list/query-list.component.mjs +0 -165
- package/esm2022/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.mjs +0 -78
- package/esm2022/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.mjs +0 -121
- package/esm2022/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.mjs +0 -202
- package/esm2022/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.mjs +0 -107
- package/esm2022/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.mjs +0 -24
- package/esm2022/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.mjs +0 -45
- package/esm2022/lib/shared/components/palette/query-management/read-query-management-field.component.mjs +0 -124
- package/esm2022/lib/shared/components/palette/query-management/utils/query-management.utils.mjs +0 -22
- package/esm2022/lib/shared/components/palette/text/read-text-field.component.mjs +0 -25
- package/esm2022/lib/shared/components/palette/text/write-text-field.component.mjs +0 -78
- package/esm2022/lib/shared/components/palette/text-area/read-text-area-field.component.mjs +0 -25
- package/esm2022/lib/shared/components/palette/text-area/write-text-area-field.component.mjs +0 -89
- package/esm2022/lib/shared/components/palette/unsupported-field.component.mjs +0 -18
- package/esm2022/lib/shared/components/palette/utils/dash.pipe.mjs +0 -16
- package/esm2022/lib/shared/components/palette/utils/date.pipe.mjs +0 -133
- package/esm2022/lib/shared/components/palette/utils/field-label.pipe.mjs +0 -30
- package/esm2022/lib/shared/components/palette/utils/first-error.pipe.mjs +0 -65
- package/esm2022/lib/shared/components/palette/utils/is-compound.pipe.mjs +0 -43
- package/esm2022/lib/shared/components/palette/utils/is-mandatory.pipe.mjs +0 -22
- package/esm2022/lib/shared/components/palette/utils/is-read-only-and-not-collection.pipe.mjs +0 -32
- package/esm2022/lib/shared/components/palette/utils/is-read-only.pipe.mjs +0 -22
- package/esm2022/lib/shared/components/palette/utils/utils.module.mjs +0 -71
- package/esm2022/lib/shared/components/palette/waystopay/waystopay-field.component.mjs +0 -35
- package/esm2022/lib/shared/components/palette/yes-no/read-yes-no-field.component.mjs +0 -37
- package/esm2022/lib/shared/components/palette/yes-no/write-yes-no-field.component.mjs +0 -102
- package/esm2022/lib/shared/components/palette/yes-no/yes-no.service.mjs +0 -50
- package/esm2022/lib/shared/components/search-filters/domain/search-input.model.mjs +0 -15
- package/esm2022/lib/shared/components/search-filters/search-filters-wrapper.component.mjs +0 -63
- package/esm2022/lib/shared/components/search-filters/search-filters.component.mjs +0 -341
- package/esm2022/lib/shared/components/search-filters/search-filters.module.mjs +0 -71
- package/esm2022/lib/shared/components/search-result/search-result.component.mjs +0 -822
- package/esm2022/lib/shared/components/search-result/search-result.module.mjs +0 -82
- package/esm2022/lib/shared/components/workbasket-filters/workbasket-filters.component.mjs +0 -497
- package/esm2022/lib/shared/components/workbasket-filters/workbasket-filters.module.mjs +0 -67
- package/esm2022/lib/shared/directives/conditional-show/conditional-show-form.directive.mjs +0 -169
- package/esm2022/lib/shared/directives/conditional-show/conditional-show.module.mjs +0 -33
- package/esm2022/lib/shared/directives/conditional-show/domain/conditional-show.model.mjs +0 -201
- package/esm2022/lib/shared/directives/conditional-show/services/condition-parser.service.mjs +0 -200
- package/esm2022/lib/shared/directives/conditional-show/services/conditional-show-registrar.service.mjs +0 -17
- package/esm2022/lib/shared/directives/conditional-show/services/grey-bar.service.mjs +0 -48
- package/esm2022/lib/shared/directives/focus-element/focus-element.directive.mjs +0 -38
- package/esm2022/lib/shared/directives/focus-element/focus-element.module.mjs +0 -21
- package/esm2022/lib/shared/directives/substitutor/label-substitutor.directive.mjs +0 -88
- package/esm2022/lib/shared/directives/substitutor/label-substitutor.module.mjs +0 -30
- package/esm2022/lib/shared/directives/substitutor/services/placeholder.service.mjs +0 -209
- package/esm2022/lib/shared/domain/activity/activity.model.mjs +0 -17
- package/esm2022/lib/shared/domain/addresses/address.model.mjs +0 -11
- package/esm2022/lib/shared/domain/alert/alert.model.mjs +0 -5
- package/esm2022/lib/shared/domain/case-details.model.mjs +0 -13
- package/esm2022/lib/shared/domain/case-event-data.model.mjs +0 -11
- package/esm2022/lib/shared/domain/case-file-view/case-file-view-category.model.mjs +0 -8
- package/esm2022/lib/shared/domain/case-file-view/case-file-view-document.model.mjs +0 -10
- package/esm2022/lib/shared/domain/case-file-view/categories-and-documents.model.mjs +0 -10
- package/esm2022/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.mjs +0 -125
- package/esm2022/lib/shared/domain/case-flag/flag-type.model.mjs +0 -37
- package/esm2022/lib/shared/domain/case-flag/hmcts-service-detail.model.mjs +0 -18
- package/esm2022/lib/shared/domain/case-view/case-event-trigger.model.mjs +0 -34
- package/esm2022/lib/shared/domain/case-view/case-print-document.model.mjs +0 -6
- package/esm2022/lib/shared/domain/case-view/case-tab.model.mjs +0 -17
- package/esm2022/lib/shared/domain/case-view/case-view-event.model.mjs +0 -16
- package/esm2022/lib/shared/domain/case-view/case-view-trigger.model.mjs +0 -7
- package/esm2022/lib/shared/domain/case-view/case-view.model.mjs +0 -27
- package/esm2022/lib/shared/domain/definition/access-control-list.model.mjs +0 -8
- package/esm2022/lib/shared/domain/definition/banner.model.mjs +0 -8
- package/esm2022/lib/shared/domain/definition/case-event.model.mjs +0 -11
- package/esm2022/lib/shared/domain/definition/case-field.model.mjs +0 -218
- package/esm2022/lib/shared/domain/definition/case-state.model.mjs +0 -7
- package/esm2022/lib/shared/domain/definition/case-type-lite.model.mjs +0 -10
- package/esm2022/lib/shared/domain/definition/case-type.model.mjs +0 -20
- package/esm2022/lib/shared/domain/definition/event-case-field.model.mjs +0 -6
- package/esm2022/lib/shared/domain/definition/field-type.model.mjs +0 -30
- package/esm2022/lib/shared/domain/definition/fixed-list-item.model.mjs +0 -6
- package/esm2022/lib/shared/domain/definition/jurisdiction.model.mjs +0 -8
- package/esm2022/lib/shared/domain/document/document-data.model.mjs +0 -28
- package/esm2022/lib/shared/domain/draft.model.mjs +0 -16
- package/esm2022/lib/shared/domain/http/http-error.model.mjs +0 -49
- package/esm2022/lib/shared/domain/organisation/organisation-converter.mjs +0 -42
- package/esm2022/lib/shared/domain/pagination-metadata.model.mjs +0 -5
- package/esm2022/lib/shared/domain/profile/profile.model.mjs +0 -33
- package/esm2022/lib/shared/domain/search/field.model.mjs +0 -17
- package/esm2022/lib/shared/domain/search/search-result-view-column.model.mjs +0 -9
- package/esm2022/lib/shared/domain/search/search-result-view-item.model.mjs +0 -18
- package/esm2022/lib/shared/domain/search/search-result-view.model.mjs +0 -26
- package/esm2022/lib/shared/domain/search/sorting/sort-parameters.mjs +0 -9
- package/esm2022/lib/shared/domain/workbasket/workbasket-input.model.mjs +0 -11
- package/esm2022/lib/shared/fixture/case-field-builder.mjs +0 -67
- package/esm2022/lib/shared/pipes/case-reference/case-reference.pipe.mjs +0 -33
- package/esm2022/lib/shared/pipes/case-title/ccd-case-title.pipe.mjs +0 -31
- package/esm2022/lib/shared/pipes/complex/ccd-collection-table-value-case-fields.pipe.mjs +0 -32
- package/esm2022/lib/shared/pipes/complex/ccd-cyapage-label-filter.pipe.mjs +0 -27
- package/esm2022/lib/shared/pipes/complex/ccd-page-fields.pipe.mjs +0 -39
- package/esm2022/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.mjs +0 -173
- package/esm2022/lib/shared/pipes/complex/ccd-tab-fields.pipe.mjs +0 -31
- package/esm2022/lib/shared/pipes/complex/fields-filter.pipe.mjs +0 -105
- package/esm2022/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.mjs +0 -16
- package/esm2022/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.mjs +0 -28
- package/esm2022/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.mjs +0 -28
- package/esm2022/lib/shared/pipes/pipes.module.mjs +0 -64
- package/esm2022/lib/shared/pipes/search-result/sorting/sort-search-result.pipe.mjs +0 -24
- package/esm2022/lib/shared/services/activity/activity.polling.service.mjs +0 -122
- package/esm2022/lib/shared/services/activity/activity.service.mjs +0 -85
- package/esm2022/lib/shared/services/addresses/address-parser.mjs +0 -76
- package/esm2022/lib/shared/services/addresses/addresses.service.mjs +0 -65
- package/esm2022/lib/shared/services/alert/alert.service.mjs +0 -157
- package/esm2022/lib/shared/services/auth/auth.service.mjs +0 -35
- package/esm2022/lib/shared/services/banners/banners.service.mjs +0 -35
- package/esm2022/lib/shared/services/browser/browser.service.mjs +0 -24
- package/esm2022/lib/shared/services/case-fields/case-field.service.mjs +0 -34
- package/esm2022/lib/shared/services/case-fields/format-translator.service.mjs +0 -242
- package/esm2022/lib/shared/services/case-file-view/case-file-view.service.mjs +0 -48
- package/esm2022/lib/shared/services/case-flag/case-flag-refdata.service.mjs +0 -104
- package/esm2022/lib/shared/services/common-data-service/common-data-service.mjs +0 -29
- package/esm2022/lib/shared/services/definitions/definitions.module.mjs +0 -19
- package/esm2022/lib/shared/services/definitions/definitions.service.mjs +0 -32
- package/esm2022/lib/shared/services/document-management/document-management.service.mjs +0 -114
- package/esm2022/lib/shared/services/draft/draft.service.mjs +0 -89
- package/esm2022/lib/shared/services/error/error-notifier.service.mjs +0 -16
- package/esm2022/lib/shared/services/eventStatusService/event-status.service.mjs +0 -21
- package/esm2022/lib/shared/services/fields/fields.purger.mjs +0 -305
- package/esm2022/lib/shared/services/fields/fields.utils.mjs +0 -615
- package/esm2022/lib/shared/services/form/field-type-sanitiser.mjs +0 -102
- package/esm2022/lib/shared/services/form/form-error.service.mjs +0 -46
- package/esm2022/lib/shared/services/form/form-validators.service.mjs +0 -82
- package/esm2022/lib/shared/services/form/form-value.service.mjs +0 -552
- package/esm2022/lib/shared/services/http/http-error.service.mjs +0 -67
- package/esm2022/lib/shared/services/http/http.service.mjs +0 -95
- package/esm2022/lib/shared/services/jurisdiction/jurisdiction.service.mjs +0 -35
- package/esm2022/lib/shared/services/loading/loading.module.mjs +0 -22
- package/esm2022/lib/shared/services/loading/loading.service.mjs +0 -31
- package/esm2022/lib/shared/services/navigation/navigation-notifier.service.mjs +0 -16
- package/esm2022/lib/shared/services/order/order.service.mjs +0 -37
- package/esm2022/lib/shared/services/organisation/organisation.service.mjs +0 -57
- package/esm2022/lib/shared/services/profile/profile.notifier.mjs +0 -17
- package/esm2022/lib/shared/services/profile/profile.service.mjs +0 -36
- package/esm2022/lib/shared/services/request/request.options.builder.mjs +0 -61
- package/esm2022/lib/shared/services/router/router-helper.service.mjs +0 -20
- package/esm2022/lib/shared/services/search/search.service.mjs +0 -96
- package/esm2022/lib/shared/services/search-result/sorting/search-result-view-item-comparator-factory.mjs +0 -71
- package/esm2022/lib/shared/services/session/session-storage.service.mjs +0 -34
- package/esm2022/lib/shared/services/utils/retry/retry.service.mjs +0 -87
- package/esm2022/lib/shared/services/window/window.service.mjs +0 -40
- package/esm2022/lib/shared/services/workbasket/workbasket-input-filter.service.mjs +0 -57
- package/esm2022/lib/shared/test/test-route-snapshot-builder.mjs +0 -38
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +0 -37101
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +0 -1
- /package/{esm2022 → esm2020}/hmcts-ccd-case-ui-toolkit.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/banners/alert/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/banners/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/domain/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/domain/notification-banner-config.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/enums/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/enums/notification-banner-style.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/enums/notification-banner-type.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/body/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/footer/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/form/date-input/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/form/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/header/header-bar/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/header/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/header/navigation/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/header/phase/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/components/tabs/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/commons/case-edit-data/case-edit-validation.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/commons/case-edit-data/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/activity/activity-banner/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/activity/activity-icon/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/activity/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-create/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit-confirm/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit-form/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit-page/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit-submit/case-edit-submit-titles.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit-submit/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-event-completion/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-progress/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/event-completion-params.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/event-completion-portal-types.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/event-completion-return-states.enum.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/event-completion-state-machine-context.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/event-completion-states.enum.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/editor.routing.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/services/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-editor/services/wizard-factory.service.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-header/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-history/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-list/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-list-filters/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-timeline/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-basic-access-view/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-challenged-access-request/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-challenged-access-request/models/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-challenged-access-success/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-event-trigger/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-full-access-view/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-review-specific-access-reject/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-review-specific-access-request/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-specific-access-request/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-specific-access-request/models/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-specific-access-success/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-view/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/printer/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/printer/pipes/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/services/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/viewer.routing.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/create-case-filters/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/dialogs/delete-or-cancel-dialog/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/dialogs/document-dialog/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/dialogs/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/dialogs/remove-dialog/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/dialogs/save-or-discard-dialog/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/error/domain/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/error/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/error-message/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/event-start/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/event-start/models/event-start-state-machine-context.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/event-start/models/event-start-states-enum.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/event-start/models/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/event-start/services/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/event-trigger/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/helpers/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/helpers/init-dialog-helper.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/loading-spinner/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/pagination/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/address/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/base-field/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/base-field/palette-context.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-file-view/components/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-file-view/components/shared/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-file-view/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-file-view/test-data/categories-and-documents-test-data.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/components/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/domain/case-flag-state.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/domain/case-flag.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/domain/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/domain/language.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-check-your-answers-step.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-summary-list-display-mode.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/search-language-interpreter-error-message.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/search-language-interpreter-step.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/select-flag-location-error-message.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/pipes/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/case-link/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/collection/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/complex/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/complex/sort-order.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/date/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/datetime-picker/datetime-picker-utils.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/datetime-picker/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/document/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/dynamic-list/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/dynamic-multi-select-list/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/dynamic-radio-list/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/email/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/fixed-list/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/fixed-radio-list/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/history/event-log/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/history/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/judicial-user/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/label/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/components/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/domain/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/domain/linked-cases-state.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/enums/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/enums/write-linked-cases-field.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/services/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/markdown/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/money-gbp/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/multi-select-list/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/number/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/order-summary/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/organisation/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/payment/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/phone-uk/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/__mocks__/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/components/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/enums/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/case-queries-collection.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/query-create-context.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/text/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/text-area/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/utils/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/waystopay/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/palette/yes-no/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/search-filters/domain/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/search-filters/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/search-result/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/components/workbasket-filters/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/directives/conditional-show/domain/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/directives/conditional-show/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/directives/conditional-show/services/condition.peg.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/directives/conditional-show/services/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/directives/focus-element/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/directives/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/directives/substitutor/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/directives/substitutor/services/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/activity/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/addresses/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/alert/alert-level.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/alert/alert-status-params.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/alert/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-edit/case-edit.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-edit/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-file-view/case-file-view-sort-columns.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-file-view/document-tree-node/document-tree-node-type.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-file-view/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-flag/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-view/access-types.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-view/case-view-event-ids.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-view/challenged-access-request.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-view/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-view/review-specific-access-request.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-view/role-assignment-response.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-view/role-request.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-view/service-org-response.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/case-view/specific-access-request.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/definition/display-context-enum.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/definition/field-type-enum.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/definition/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/document/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/error-message.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/http/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/jurisdiction/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/jurisdiction/judicial-user.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/order/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/order/orderable.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/organisation/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/organisation/simple-organisation.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/predicate.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/profile/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/search/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/search/sorting/search-result-view-item-comparator.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/sort-order.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/user/user-details.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/user/user-info.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/Task.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/TaskPayload.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/case-worker.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/judicial-worker.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/task-response.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/task-search-parameter.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/wa-service-config.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/domain/workbasket/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/fixture/shared.test.fixture.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/pipes/case-reference/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/pipes/case-title/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/pipes/complex/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/pipes/generic/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/pipes/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/pipes/link-cases-from-reason-code/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/pipes/link-cases-reason-code/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/activity/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/addresses/address-type.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/addresses/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/alert/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/auth/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/banners/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/browser/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/case-fields/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/case-file-view/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/case-flag/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/case-flag/refdata-case-flag-type.enum.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/definitions/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/document-management/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/draft/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/error/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/eventStatusService/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/fields/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/form/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/http/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/jurisdiction/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/loading/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/navigation/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/navigation/navigation-origin.model.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/order/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/organisation/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/profile/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/request/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/router/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/search/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/session/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/utils/retry/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/window/index.mjs +0 -0
- /package/{esm2022 → esm2020}/lib/shared/services/workbasket/index.mjs +0 -0
- /package/{esm2022 → esm2020}/public-api.mjs +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AbstractControl, FormArray, FormGroup } from '@angular/forms';
|
|
2
2
|
import { CaseField } from '../../../domain/definition/case-field.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
type FormContainer = FormGroup | FormArray;
|
|
4
|
+
declare type FormContainer = FormGroup | FormArray;
|
|
5
5
|
export declare abstract class AbstractFormFieldComponent {
|
|
6
6
|
caseField: CaseField;
|
|
7
7
|
formGroup: FormGroup;
|
|
@@ -14,7 +14,7 @@ export declare abstract class AbstractFormFieldComponent {
|
|
|
14
14
|
private addControlToFormArray;
|
|
15
15
|
private addControlToFormGroup;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractFormFieldComponent, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFormFieldComponent, never, never, { "caseField":
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFormFieldComponent, never, never, { "caseField": "caseField"; "formGroup": "formGroup"; "parent": "parent"; "idPrefix": "idPrefix"; }, {}, never, never, false, never>;
|
|
18
18
|
}
|
|
19
19
|
export {};
|
|
20
20
|
//# sourceMappingURL=abstract-form-field.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"abstract-form-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/base-field/abstract-form-field.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEvE,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;;AAGxE,
|
|
1
|
+
{"version":3,"file":"abstract-form-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/base-field/abstract-form-field.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEvE,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;;AAGxE,aAAK,aAAa,GAAG,SAAS,GAAG,SAAS,CAAC;AAE3C,8BACsB,0BAA0B;IAEvC,SAAS,EAAE,SAAS,CAAC;IAGrB,SAAS,EAAE,SAAS,CAAC;IAGrB,MAAM,CAAC,EAAE,aAAa,CAAC;IAGvB,QAAQ,SAAM;IAEd,EAAE;IAIT,SAAS,CAAC,eAAe,CAAC,CAAC,SAAS,eAAe,EAAE,OAAO,EAAE,CAAC,EAAE,OAAO,UAAQ,GAAG,eAAe;IAuBlG,SAAS,CAAC,aAAa,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE,eAAe,GAAG,IAAI;IAI7E,OAAO,CAAC,kBAAkB;IAO1B,OAAO,CAAC,qBAAqB;IAU7B,OAAO,CAAC,qBAAqB;yCA7DT,0BAA0B;2CAA1B,0BAA0B;CAyE/C"}
|
|
@@ -11,6 +11,6 @@ export declare class FieldReadLabelComponent extends AbstractFieldReadComponent
|
|
|
11
11
|
ngOnChanges(changes: SimpleChanges): void;
|
|
12
12
|
private fixCaseField;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldReadLabelComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldReadLabelComponent, "ccd-field-read-label", never, { "withLabel":
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldReadLabelComponent, "ccd-field-read-label", never, { "withLabel": "withLabel"; "markdownUseHrefAsRouterLink": "markdownUseHrefAsRouterLink"; }, {}, never, ["*"], false, never>;
|
|
15
15
|
}
|
|
16
16
|
//# sourceMappingURL=field-read-label.component.d.ts.map
|
|
@@ -16,6 +16,6 @@ export declare class FieldReadComponent extends AbstractFieldReadComponent imple
|
|
|
16
16
|
ngOnInit(): void;
|
|
17
17
|
private labelCanBeTranslated;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldReadComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldReadComponent, "ccd-field-read", never, { "withLabel":
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldReadComponent, "ccd-field-read", never, { "withLabel": "withLabel"; "formGroup": "formGroup"; "caseFields": "caseFields"; "markdownUseHrefAsRouterLink": "markdownUseHrefAsRouterLink"; }, {}, never, never, false, never>;
|
|
20
20
|
}
|
|
21
21
|
//# sourceMappingURL=field-read.component.d.ts.map
|
|
@@ -14,6 +14,6 @@ export declare class FieldWriteComponent extends AbstractFieldWriteComponent imp
|
|
|
14
14
|
protected addValidators(caseField: CaseField, control: AbstractControl): void;
|
|
15
15
|
ngOnInit(): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldWriteComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldWriteComponent, "ccd-field-write", never, { "caseFields":
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldWriteComponent, "ccd-field-write", never, { "caseFields": "caseFields"; }, {}, never, never, false, never>;
|
|
18
18
|
}
|
|
19
19
|
//# sourceMappingURL=field-write.component.d.ts.map
|
|
@@ -12,6 +12,6 @@ export declare class CaseFileViewFolderDocumentActionsComponent implements OnIni
|
|
|
12
12
|
constructor();
|
|
13
13
|
ngOnInit(): void;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseFileViewFolderDocumentActionsComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFileViewFolderDocumentActionsComponent, "ccd-case-file-view-folder-document-actions", never, { "allowMoving":
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFileViewFolderDocumentActionsComponent, "ccd-case-file-view-folder-document-actions", never, { "allowMoving": "allowMoving"; }, { "changeFolderAction": "changeFolderAction"; "openInANewTabAction": "openInANewTabAction"; "downloadAction": "downloadAction"; "printAction": "printAction"; }, never, never, false, never>;
|
|
16
16
|
}
|
|
17
17
|
//# sourceMappingURL=case-file-view-folder-document-actions.component.d.ts.map
|
|
@@ -53,6 +53,6 @@ export declare class CaseFileViewFolderComponent implements OnInit, OnDestroy {
|
|
|
53
53
|
printDocument(url: string): void;
|
|
54
54
|
downloadFile(url: string, downloadFileName: string): void;
|
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseFileViewFolderComponent, never>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFileViewFolderComponent, "ccd-case-file-view-folder", never, { "categoriesAndDocuments":
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFileViewFolderComponent, "ccd-case-file-view-folder", never, { "categoriesAndDocuments": "categoriesAndDocuments"; "allowMoving": "allowMoving"; }, { "clickedDocument": "clickedDocument"; "moveDocument": "moveDocument"; }, never, never, false, never>;
|
|
57
57
|
}
|
|
58
58
|
//# sourceMappingURL=case-file-view-folder.component.d.ts.map
|
|
@@ -8,6 +8,6 @@ export declare class CaseFileViewOverlayMenuComponent {
|
|
|
8
8
|
isOpenChange: EventEmitter<boolean>;
|
|
9
9
|
closeOverlay(): void;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseFileViewOverlayMenuComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFileViewOverlayMenuComponent, "ccd-case-file-view-overlay-menu", never, { "title":
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFileViewOverlayMenuComponent, "ccd-case-file-view-overlay-menu", never, { "title": "title"; "menuItems": "menuItems"; "isOpen": "isOpen"; }, { "isOpenChange": "isOpenChange"; }, never, ["[trigger]"], false, never>;
|
|
12
12
|
}
|
|
13
13
|
//# sourceMappingURL=case-file-view-overlay-menu.component.d.ts.map
|
package/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.d.ts
CHANGED
|
@@ -24,6 +24,6 @@ export declare class AddCommentsComponent implements OnInit {
|
|
|
24
24
|
onNext(): void;
|
|
25
25
|
private validateTextEntry;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddCommentsComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddCommentsComponent, "ccd-add-comments", never, { "formGroup":
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddCommentsComponent, "ccd-add-comments", never, { "formGroup": "formGroup"; "optional": "optional"; "isDisplayContextParameterExternal": "isDisplayContextParameterExternal"; "isDisplayContextParameter2Point1Enabled": "isDisplayContextParameter2Point1Enabled"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never, false, never>;
|
|
28
28
|
}
|
|
29
29
|
//# sourceMappingURL=add-comments.component.d.ts.map
|
|
@@ -32,6 +32,6 @@ export declare class CaseFlagSummaryListComponent implements OnInit {
|
|
|
32
32
|
private getSummaryListDisplayMode;
|
|
33
33
|
private getDisplayContextParameter2Point1Enabled;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseFlagSummaryListComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFlagSummaryListComponent, "ccd-case-flag-summary-list", never, { "flagForSummaryDisplay":
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFlagSummaryListComponent, "ccd-case-flag-summary-list", never, { "flagForSummaryDisplay": "flagForSummaryDisplay"; "displayContextParameter": "displayContextParameter"; }, { "changeButtonEmitter": "changeButtonEmitter"; }, never, never, false, never>;
|
|
36
36
|
}
|
|
37
37
|
//# sourceMappingURL=case-flag-summary-list.component.d.ts.map
|
|
@@ -8,6 +8,6 @@ export declare class CaseFlagTableComponent {
|
|
|
8
8
|
caseFlagsExternalUser: boolean;
|
|
9
9
|
get caseFlagStatus(): typeof CaseFlagStatus;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseFlagTableComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFlagTableComponent, "ccd-case-flag-table", never, { "tableCaption":
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFlagTableComponent, "ccd-case-flag-table", never, { "tableCaption": "tableCaption"; "flagData": "flagData"; "firstColumnHeader": "firstColumnHeader"; "caseFlagsExternalUser": "caseFlagsExternalUser"; }, {}, never, never, false, never>;
|
|
12
12
|
}
|
|
13
13
|
//# sourceMappingURL=case-flag-table.component.d.ts.map
|
|
@@ -23,6 +23,6 @@ export declare class ConfirmFlagStatusComponent implements OnInit {
|
|
|
23
23
|
onNext(): void;
|
|
24
24
|
private validateTextEntry;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmFlagStatusComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmFlagStatusComponent, "ccd-confirm-flag-status", never, { "formGroup":
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmFlagStatusComponent, "ccd-confirm-flag-status", never, { "formGroup": "formGroup"; "defaultStatus": "defaultStatus"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never, false, never>;
|
|
27
27
|
}
|
|
28
28
|
//# sourceMappingURL=confirm-flag-status.component.d.ts.map
|
|
@@ -25,6 +25,6 @@ export declare class ManageCaseFlagsComponent implements OnInit {
|
|
|
25
25
|
private validateSelection;
|
|
26
26
|
private onNoFlagsError;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<ManageCaseFlagsComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ManageCaseFlagsComponent, "ccd-manage-case-flags", never, { "formGroup":
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ManageCaseFlagsComponent, "ccd-manage-case-flags", never, { "formGroup": "formGroup"; "flagsData": "flagsData"; "caseTitle": "caseTitle"; "displayContextParameter": "displayContextParameter"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never, false, never>;
|
|
29
29
|
}
|
|
30
30
|
//# sourceMappingURL=manage-case-flags.component.d.ts.map
|
|
@@ -36,6 +36,6 @@ export declare class SearchLanguageInterpreterComponent implements OnInit {
|
|
|
36
36
|
private validateLanguageEntry;
|
|
37
37
|
private filterLanguages;
|
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchLanguageInterpreterComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchLanguageInterpreterComponent, "ccd-search-language-interpreter", never, { "formGroup":
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchLanguageInterpreterComponent, "ccd-search-language-interpreter", never, { "formGroup": "formGroup"; "flagType": "flagType"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never, false, never>;
|
|
40
40
|
}
|
|
41
41
|
//# sourceMappingURL=search-language-interpreter.component.d.ts.map
|
|
@@ -22,6 +22,6 @@ export declare class SelectFlagLocationComponent implements OnInit {
|
|
|
22
22
|
private validateSelection;
|
|
23
23
|
private onCaseFlagsConfigError;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectFlagLocationComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectFlagLocationComponent, "ccd-select-flag-location", never, { "formGroup":
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectFlagLocationComponent, "ccd-select-flag-location", never, { "formGroup": "formGroup"; "flagsData": "flagsData"; "isDisplayContextParameterExternal": "isDisplayContextParameterExternal"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never, false, never>;
|
|
26
26
|
}
|
|
27
27
|
//# sourceMappingURL=select-flag-location.component.d.ts.map
|
|
@@ -44,6 +44,6 @@ export declare class SelectFlagTypeComponent implements OnInit, OnDestroy {
|
|
|
44
44
|
private processFlagTypes;
|
|
45
45
|
private onRefdataError;
|
|
46
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectFlagTypeComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectFlagTypeComponent, "ccd-select-flag-type", never, { "formGroup":
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectFlagTypeComponent, "ccd-select-flag-type", never, { "formGroup": "formGroup"; "jurisdiction": "jurisdiction"; "caseTypeId": "caseTypeId"; "hmctsServiceId": "hmctsServiceId"; "isDisplayContextParameterExternal": "isDisplayContextParameterExternal"; "isDisplayContextParameter2Point1Enabled": "isDisplayContextParameter2Point1Enabled"; "selectedFlagsLocation": "selectedFlagsLocation"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; "flagCommentsOptionalEmitter": "flagCommentsOptionalEmitter"; }, never, never, false, never>;
|
|
48
48
|
}
|
|
49
49
|
//# sourceMappingURL=select-flag-type.component.d.ts.map
|
|
@@ -22,6 +22,6 @@ export declare class UpdateFlagAddTranslationFormComponent implements OnInit {
|
|
|
22
22
|
onNext(): void;
|
|
23
23
|
private validateTextEntry;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<UpdateFlagAddTranslationFormComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UpdateFlagAddTranslationFormComponent, "ccd-update-flag-add-translation-form", never, { "formGroup":
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UpdateFlagAddTranslationFormComponent, "ccd-update-flag-add-translation-form", never, { "formGroup": "formGroup"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never, false, never>;
|
|
26
26
|
}
|
|
27
27
|
//# sourceMappingURL=update-flag-add-translation-form.component.d.ts.map
|
package/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.d.ts
CHANGED
|
@@ -36,6 +36,6 @@ export declare class UpdateFlagComponent implements OnInit {
|
|
|
36
36
|
onMakeInactive(): void;
|
|
37
37
|
private validateTextEntry;
|
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<UpdateFlagComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UpdateFlagComponent, "ccd-update-flag", never, { "formGroup":
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UpdateFlagComponent, "ccd-update-flag", never, { "formGroup": "formGroup"; "displayContextParameter": "displayContextParameter"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never, false, never>;
|
|
40
40
|
}
|
|
41
41
|
//# sourceMappingURL=update-flag.component.d.ts.map
|
|
@@ -8,7 +8,7 @@ import { Profile } from '../../../domain/profile/profile.model';
|
|
|
8
8
|
import { ProfileNotifier } from '../../../services/profile/profile.notifier';
|
|
9
9
|
import { AbstractFieldWriteComponent } from '../base-field/abstract-field-write.component';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
|
-
type CollectionItem = {
|
|
11
|
+
declare type CollectionItem = {
|
|
12
12
|
caseField: CaseField;
|
|
13
13
|
item: any;
|
|
14
14
|
prefix: string;
|
|
@@ -52,7 +52,7 @@ export declare class WriteCollectionFieldComponent extends AbstractFieldWriteCom
|
|
|
52
52
|
private getControlIdAt;
|
|
53
53
|
private isCollectionOfSimpleType;
|
|
54
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<WriteCollectionFieldComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WriteCollectionFieldComponent, "ccd-write-collection-field", never, { "caseFields":
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WriteCollectionFieldComponent, "ccd-write-collection-field", never, { "caseFields": "caseFields"; }, {}, never, never, false, never>;
|
|
56
56
|
}
|
|
57
57
|
export {};
|
|
58
58
|
//# sourceMappingURL=write-collection-field.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"write-collection-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/collection/write-collection-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAgC,SAAS,EAAE,MAAM,EAA2B,MAAM,eAAe,CAAC;AAC5H,OAAO,EAAE,SAAS,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACnE,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAE/E,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAE/D,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAGpC,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AACxE,OAAO,EAAE,OAAO,EAAE,MAAM,uCAAuC,CAAC;AAGhE,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAE7E,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;;AAE3F,
|
|
1
|
+
{"version":3,"file":"write-collection-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/collection/write-collection-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAgC,SAAS,EAAE,MAAM,EAA2B,MAAM,eAAe,CAAC;AAC5H,OAAO,EAAE,SAAS,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACnE,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAE/E,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAE/D,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAGpC,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AACxE,OAAO,EAAE,OAAO,EAAE,MAAM,uCAAuC,CAAC;AAGhE,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAE7E,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;;AAE3F,aAAK,cAAc,GAAG;IACpB,SAAS,EAAE,SAAS,CAAC;IACrB,IAAI,EAAE,GAAG,CAAC;IACV,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,SAAS,CAAC;CACtB,CAAC;AAEF,qBAKa,6BAA8B,SAAQ,2BAA4B,YAAW,MAAM,EAAE,SAAS;IAa7F,OAAO,CAAC,QAAQ,CAAC,MAAM;IACjC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,KAAK;IAdjB,UAAU,EAAE,SAAS,EAAE,CAAM;IAE7B,SAAS,EAAE,SAAS,CAAC;IAErB,OAAO,EAAE,OAAO,CAAC;IACjB,mBAAmB,EAAE,YAAY,CAAC;IAGzC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAwB;IAC9C,SAAgB,SAAS,EAAE,cAAc,EAAE,CAAM;gBAEpB,MAAM,EAAE,SAAS,EAC3B,eAAe,EAAE,eAAe,EAChC,eAAe,EAAE,eAAe,EAChC,KAAK,EAAE,iBAAiB;IAKpC,QAAQ,IAAI,IAAI;IAkBhB,WAAW,IAAI,IAAI;IAMnB,cAAc,CAAC,IAAI,KAAA,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,UAAQ,GAAG,SAAS;IA+E7D,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM;IASpC,cAAc,IAAI,OAAO;IAIzB,OAAO,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI;IAgCvC,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,YAAY;IAsBpB,OAAO,CAAC,YAAY;IASpB,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,UAAU;IAOlB,OAAO,CAAC,QAAQ;IA+BT,SAAS,CAAC,KAAK,EAAE,MAAM;IAOvB,uBAAuB;IAOvB,uBAAuB,CAAC,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM;IAOtD,uBAAuB,CAAC,KAAK,KAAA;IAe7B,eAAe,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;IAInC,uBAAuB,CAAC,KAAK,EAAE,MAAM;IASrC,SAAS,CAAC,CAAC,EAAE,MAAM;IAuB1B;;OAEG;IACH,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,wBAAwB;yCAhVrB,6BAA6B;2CAA7B,6BAA6B;CAoVzC"}
|
|
@@ -8,6 +8,6 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
export declare class ReadComplexFieldRawComponent extends AbstractFieldReadComponent {
|
|
9
9
|
caseFields: CaseField[];
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadComplexFieldRawComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReadComplexFieldRawComponent, "ccd-read-complex-field-raw", never, { "caseFields":
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadComplexFieldRawComponent, "ccd-read-complex-field-raw", never, { "caseFields": "caseFields"; }, {}, never, never, false, never>;
|
|
12
12
|
}
|
|
13
13
|
//# sourceMappingURL=read-complex-field-raw.component.d.ts.map
|
|
@@ -4,6 +4,6 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class ReadComplexFieldTableComponent extends AbstractFieldReadComponent {
|
|
5
5
|
caseFields: CaseField[];
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadComplexFieldTableComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReadComplexFieldTableComponent, "ccd-read-complex-field-table", never, { "caseFields":
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadComplexFieldTableComponent, "ccd-read-complex-field-table", never, { "caseFields": "caseFields"; }, {}, never, never, false, never>;
|
|
8
8
|
}
|
|
9
9
|
//# sourceMappingURL=read-complex-field-table.component.d.ts.map
|
|
@@ -8,6 +8,6 @@ export declare class ReadComplexFieldComponent extends AbstractFieldReadComponen
|
|
|
8
8
|
paletteContext: typeof PaletteContext;
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadComplexFieldComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReadComplexFieldComponent, "ccd-read-complex-field", never, { "caseFields":
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadComplexFieldComponent, "ccd-read-complex-field", never, { "caseFields": "caseFields"; }, {}, never, never, false, never>;
|
|
12
12
|
}
|
|
13
13
|
//# sourceMappingURL=read-complex-field.component.d.ts.map
|
|
@@ -24,6 +24,6 @@ export declare class WriteComplexFieldComponent extends AbstractFieldWriteCompon
|
|
|
24
24
|
private isTopLevelWithinCollection;
|
|
25
25
|
private setupFields;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<WriteComplexFieldComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WriteComplexFieldComponent, "ccd-write-complex-type-field", never, { "caseFields":
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WriteComplexFieldComponent, "ccd-write-complex-type-field", never, { "caseFields": "caseFields"; "renderLabel": "renderLabel"; "ignoreMandatory": "ignoreMandatory"; }, {}, never, never, false, never>;
|
|
28
28
|
}
|
|
29
29
|
//# sourceMappingURL=write-complex-field.component.d.ts.map
|
|
@@ -48,6 +48,6 @@ export declare class DatetimePickerComponent extends AbstractFormFieldComponent
|
|
|
48
48
|
monthSelected(event: Moment): void;
|
|
49
49
|
private formatValueAndSetErrors;
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatetimePickerComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatetimePickerComponent, "ccd-datetime-picker", never, { "dateControl":
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatetimePickerComponent, "ccd-datetime-picker", never, { "dateControl": "dateControl"; }, {}, never, never, false, never>;
|
|
52
52
|
}
|
|
53
53
|
//# sourceMappingURL=datetime-picker.component.d.ts.map
|
|
@@ -3,6 +3,6 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class EventLogDetailsComponent {
|
|
4
4
|
event: CaseViewEvent;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventLogDetailsComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EventLogDetailsComponent, "ccd-event-log-details", never, { "event":
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EventLogDetailsComponent, "ccd-event-log-details", never, { "event": "event"; }, {}, never, never, false, never>;
|
|
7
7
|
}
|
|
8
8
|
//# sourceMappingURL=event-log-details.component.d.ts.map
|
|
@@ -17,6 +17,6 @@ export declare class EventLogTableComponent implements OnInit {
|
|
|
17
17
|
getAriaLabelforRow(event: CaseViewEvent): string;
|
|
18
18
|
getAriaLabelforLink(event: CaseViewEvent): string;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventLogTableComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EventLogTableComponent, "ccd-event-log-table", never, { "events":
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EventLogTableComponent, "ccd-event-log-table", never, { "events": "events"; "selected": "selected"; }, { "onSelect": "onSelect"; "onCaseHistory": "onCaseHistory"; }, never, never, false, never>;
|
|
21
21
|
}
|
|
22
22
|
//# sourceMappingURL=event-log-table.component.d.ts.map
|
|
@@ -10,6 +10,6 @@ export declare class EventLogComponent implements OnInit {
|
|
|
10
10
|
select(event: CaseViewEvent): void;
|
|
11
11
|
caseHistoryClicked(eventId: string): void;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventLogComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EventLogComponent, "ccd-event-log", never, { "events":
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EventLogComponent, "ccd-event-log", never, { "events": "events"; }, { "onCaseHistory": "onCaseHistory"; }, never, never, false, never>;
|
|
14
14
|
}
|
|
15
15
|
//# sourceMappingURL=event-log.component.d.ts.map
|
|
@@ -6,6 +6,6 @@ export declare class LabelFieldComponent {
|
|
|
6
6
|
labelCanBeTranslated: boolean;
|
|
7
7
|
markdownUseHrefAsRouterLink?: boolean;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<LabelFieldComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LabelFieldComponent, "ccd-label-field", never, { "caseField":
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LabelFieldComponent, "ccd-label-field", never, { "caseField": "caseField"; "caseFields": "caseFields"; "labelCanBeTranslated": "labelCanBeTranslated"; "markdownUseHrefAsRouterLink": "markdownUseHrefAsRouterLink"; }, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
11
11
|
//# sourceMappingURL=label-field.component.d.ts.map
|
|
@@ -33,6 +33,6 @@ export declare class LinkedCasesFromTableComponent implements OnInit, AfterViewI
|
|
|
33
33
|
mapLookupIDToValueFromJurisdictions(fieldName: any, fieldValue: any): string;
|
|
34
34
|
onClick(): void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkedCasesFromTableComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinkedCasesFromTableComponent, "ccd-linked-cases-from-table", never, { "caseField":
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkedCasesFromTableComponent, "ccd-linked-cases-from-table", never, { "caseField": "caseField"; }, { "notifyAPIFailure": "notifyAPIFailure"; }, never, never, false, never>;
|
|
37
37
|
}
|
|
38
38
|
//# sourceMappingURL=linked-cases-from-table.component.d.ts.map
|
|
@@ -43,7 +43,7 @@ export declare class LinkedCasesToTableComponent implements OnInit, AfterViewIni
|
|
|
43
43
|
hasLeadCaseOrConsolidated(reasonCode: string): boolean;
|
|
44
44
|
mapResponse(esSearchCasesResponse: any): LinkedCasesResponse;
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkedCasesToTableComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinkedCasesToTableComponent, "ccd-linked-cases-to-table", never, { "caseField":
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkedCasesToTableComponent, "ccd-linked-cases-to-table", never, { "caseField": "caseField"; }, { "notifyAPIFailure": "notifyAPIFailure"; }, never, never, false, never>;
|
|
47
47
|
}
|
|
48
48
|
export {};
|
|
49
49
|
//# sourceMappingURL=linked-cases-to-table.component.d.ts.map
|
|
@@ -5,11 +5,11 @@ import * as i3 from "@angular/common";
|
|
|
5
5
|
import * as i4 from "@angular/forms";
|
|
6
6
|
import * as i5 from "rpx-xui-translation";
|
|
7
7
|
import * as i6 from "../../../pipes/pipes.module";
|
|
8
|
-
import * as i7 from "ngx-
|
|
8
|
+
import * as i7 from "ngx-md";
|
|
9
9
|
import * as i8 from "@angular/router";
|
|
10
10
|
export declare class MarkdownComponentModule {
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<MarkdownComponentModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MarkdownComponentModule, [typeof i1.MarkdownComponent, typeof i2.RouterLinkComponent], [typeof i3.CommonModule, typeof i4.ReactiveFormsModule, typeof i5.RpxTranslationModule, typeof i6.PipesModule, typeof i7.
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MarkdownComponentModule, [typeof i1.MarkdownComponent, typeof i2.RouterLinkComponent], [typeof i3.CommonModule, typeof i4.ReactiveFormsModule, typeof i5.RpxTranslationModule, typeof i6.PipesModule, typeof i7.NgxMdModule, typeof i8.RouterModule], [typeof i1.MarkdownComponent, typeof i2.RouterLinkComponent]>;
|
|
13
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<MarkdownComponentModule>;
|
|
14
14
|
}
|
|
15
15
|
//# sourceMappingURL=markdown-component.module.d.ts.map
|
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
import { OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { NgxMdService } from 'ngx-md';
|
|
2
3
|
import { Router } from '@angular/router';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class MarkdownComponent implements OnInit {
|
|
6
|
+
private _markdown;
|
|
5
7
|
private router;
|
|
6
8
|
private renderer;
|
|
7
9
|
content: string;
|
|
8
10
|
markdownUseHrefAsRouterLink: boolean;
|
|
9
11
|
renderUrlToTextFeature?: boolean;
|
|
10
|
-
constructor(router: Router, renderer: Renderer2);
|
|
12
|
+
constructor(_markdown: NgxMdService, router: Router, renderer: Renderer2);
|
|
11
13
|
ngOnInit(): void;
|
|
12
14
|
onMarkdownClick(event: MouseEvent): boolean;
|
|
13
15
|
private renderUrlToText;
|
|
14
16
|
private isAllowedUrl;
|
|
15
17
|
private detectMarkdownLinks;
|
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<MarkdownComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MarkdownComponent, "ccd-markdown", never, { "content":
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MarkdownComponent, "ccd-markdown", never, { "content": "content"; "markdownUseHrefAsRouterLink": "markdownUseHrefAsRouterLink"; "renderUrlToTextFeature": "renderUrlToTextFeature"; }, {}, never, never, false, never>;
|
|
18
20
|
}
|
|
19
21
|
//# sourceMappingURL=markdown.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"markdown.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/markdown/markdown.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkC,MAAM,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"markdown.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/markdown/markdown.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkC,MAAM,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAClF,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;;AAEzC,qBAIa,iBAAkB,YAAW,MAAM;IAQlC,OAAO,CAAC,SAAS;IAAgB,OAAO,CAAC,MAAM;IAAU,OAAO,CAAC,QAAQ;IAN9E,OAAO,EAAE,MAAM,CAAC;IAEhB,2BAA2B,EAAG,OAAO,CAAC;IAEtC,sBAAsB,CAAC,EAAE,OAAO,CAAQ;gBAE3B,SAAS,EAAE,YAAY,EAAU,MAAM,EAAE,MAAM,EAAU,QAAQ,EAAE,SAAS;IAEzF,QAAQ,IAAI,IAAI;IAQhB,eAAe,CAAC,KAAK,EAAE,UAAU;IAQxC,OAAO,CAAC,eAAe;IAevB,OAAO,CAAC,YAAY;IAOpB,OAAO,CAAC,mBAAmB;yCAhDhB,iBAAiB;2CAAjB,iBAAiB;CAoD7B"}
|
|
@@ -18,6 +18,6 @@ export declare class MoneyGbpInputComponent implements ControlValueAccessor, Val
|
|
|
18
18
|
registerOnValidatorChange(_: () => void): void;
|
|
19
19
|
private propagateChange;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<MoneyGbpInputComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MoneyGbpInputComponent, "ccd-money-gbp-input", never, { "id":
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MoneyGbpInputComponent, "ccd-money-gbp-input", never, { "id": "id"; "name": "name"; "mandatory": "mandatory"; "formControl": "formControl"; }, {}, never, never, false, never>;
|
|
22
22
|
}
|
|
23
23
|
//# sourceMappingURL=money-gbp-input.component.d.ts.map
|
|
@@ -7,6 +7,6 @@ export declare class ReadMoneyGbpFieldComponent extends AbstractFieldReadCompone
|
|
|
7
7
|
ngOnInit(): void;
|
|
8
8
|
isNumber(): boolean;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadMoneyGbpFieldComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReadMoneyGbpFieldComponent, "ccd-read-money-gbp-field", never, { "amount":
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadMoneyGbpFieldComponent, "ccd-read-money-gbp-field", never, { "amount": "amount"; }, {}, never, never, false, never>;
|
|
11
11
|
}
|
|
12
12
|
//# sourceMappingURL=read-money-gbp-field.component.d.ts.map
|
|
@@ -7,6 +7,6 @@ export declare class ReadOrderSummaryRowComponent extends AbstractFieldReadCompo
|
|
|
7
7
|
ngOnInit(): void;
|
|
8
8
|
getFeeAmount(): string;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadOrderSummaryRowComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOrderSummaryRowComponent, "[ccdReadOrderSummaryRow]", never, { "feeValue":
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOrderSummaryRowComponent, "[ccdReadOrderSummaryRow]", never, { "feeValue": "feeValue"; }, {}, never, never, false, never>;
|
|
11
11
|
}
|
|
12
12
|
//# sourceMappingURL=read-order-summary-row.component.d.ts.map
|
package/lib/shared/components/palette/organisation/read-organisation-field-raw.component.d.ts
CHANGED
|
@@ -15,6 +15,6 @@ export declare class ReadOrganisationFieldRawComponent extends AbstractFieldRead
|
|
|
15
15
|
constructor(organisationService: OrganisationService, organisationConverter: OrganisationConverter);
|
|
16
16
|
ngOnInit(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadOrganisationFieldRawComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOrganisationFieldRawComponent, "ccd-read-organisation-field-raw", never, { "caseFields":
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOrganisationFieldRawComponent, "ccd-read-organisation-field-raw", never, { "caseFields": "caseFields"; }, {}, never, never, false, never>;
|
|
19
19
|
}
|
|
20
20
|
//# sourceMappingURL=read-organisation-field-raw.component.d.ts.map
|
package/lib/shared/components/palette/organisation/read-organisation-field-table.component.d.ts
CHANGED
|
@@ -15,6 +15,6 @@ export declare class ReadOrganisationFieldTableComponent extends AbstractFieldRe
|
|
|
15
15
|
constructor(organisationService: OrganisationService, organisationConverter: OrganisationConverter);
|
|
16
16
|
ngOnInit(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadOrganisationFieldTableComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOrganisationFieldTableComponent, "ccd-read-organisation-field-table", never, { "caseFields":
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOrganisationFieldTableComponent, "ccd-read-organisation-field-table", never, { "caseFields": "caseFields"; }, {}, never, never, false, never>;
|
|
19
19
|
}
|
|
20
20
|
//# sourceMappingURL=read-organisation-field-table.component.d.ts.map
|
|
@@ -8,6 +8,6 @@ export declare class ReadOrganisationFieldComponent extends AbstractFieldReadCom
|
|
|
8
8
|
paletteContext: typeof PaletteContext;
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadOrganisationFieldComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOrganisationFieldComponent, "ccd-read-organisation-field", never, { "caseFields":
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOrganisationFieldComponent, "ccd-read-organisation-field", never, { "caseFields": "caseFields"; }, {}, never, never, false, never>;
|
|
12
12
|
}
|
|
13
13
|
//# sourceMappingURL=read-organisation-field.component.d.ts.map
|
package/lib/shared/components/palette/organisation/write-organisation-complex-field.component.d.ts
CHANGED
|
@@ -6,6 +6,6 @@ export declare class WriteOrganisationComplexFieldComponent extends AbstractForm
|
|
|
6
6
|
selectedOrg$: Observable<SimpleOrganisationModel>;
|
|
7
7
|
constructor();
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<WriteOrganisationComplexFieldComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WriteOrganisationComplexFieldComponent, "ccd-write-organisation-complex-field", never, { "selectedOrg$":
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WriteOrganisationComplexFieldComponent, "ccd-write-organisation-complex-field", never, { "selectedOrg$": "selectedOrg$"; }, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
11
11
|
//# sourceMappingURL=write-organisation-complex-field.component.d.ts.map
|
|
@@ -128,7 +128,7 @@ import * as i126 from "../../../components/body/body.module";
|
|
|
128
128
|
import * as i127 from "../../../components/form/form.module";
|
|
129
129
|
import * as i128 from "../../../components/tabs/tabs.module";
|
|
130
130
|
import * as i129 from "../../directives/substitutor/label-substitutor.module";
|
|
131
|
-
import * as i130 from "ngx-
|
|
131
|
+
import * as i130 from "ngx-md";
|
|
132
132
|
import * as i131 from "@angular-material-components/datetime-picker";
|
|
133
133
|
import * as i132 from "@angular/material/legacy-form-field";
|
|
134
134
|
import * as i133 from "@angular/material/legacy-input";
|
|
@@ -145,7 +145,7 @@ import * as i143 from "../../services/loading/loading.module";
|
|
|
145
145
|
import * as i144 from "./markdown/markdown-component.module";
|
|
146
146
|
export declare class PaletteModule {
|
|
147
147
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaletteModule, never>;
|
|
148
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.FlagFieldDisplayPipe, typeof i7.LanguageInterpreterDisplayPipe, typeof i8.ManageCaseFlagsLabelDisplayPipe, typeof i9.UpdateFlagTitleDisplayPipe, typeof i10.UnsupportedFieldComponent, typeof i11.DatetimePickerComponent, typeof i12.WaysToPayFieldComponent, typeof i13.FieldReadComponent, typeof i14.FieldWriteComponent, typeof i15.FieldReadLabelComponent, typeof i16.LabelFieldComponent, typeof i17.CasePaymentHistoryViewerFieldComponent, typeof i18.MoneyGbpInputComponent, typeof i19.CaseHistoryViewerFieldComponent, typeof i20.EventLogComponent, typeof i21.EventLogDetailsComponent, typeof i22.EventLogTableComponent, typeof i23.ReadTextFieldComponent, typeof i24.ReadTextAreaFieldComponent, typeof i25.ReadNumberFieldComponent, typeof i26.ReadEmailFieldComponent, typeof i27.ReadPhoneUKFieldComponent, typeof i28.ReadDateFieldComponent, typeof i29.ReadCollectionFieldComponent, typeof i30.ReadDocumentFieldComponent, typeof i31.ReadJudicialUserFieldComponent, typeof i32.ReadYesNoFieldComponent, typeof i33.ReadOrganisationFieldComponent, typeof i34.ReadOrganisationFieldTableComponent, typeof i35.ReadOrganisationFieldRawComponent, typeof i36.ReadOrderSummaryFieldComponent, typeof i37.ReadOrderSummaryRowComponent, typeof i38.ReadMoneyGbpFieldComponent, typeof i39.ReadMultiSelectListFieldComponent, typeof i40.ReadDynamicListFieldComponent, typeof i41.ReadFixedListFieldComponent, typeof i42.ReadFixedRadioListFieldComponent, typeof i43.ReadDynamicRadioListFieldComponent, typeof i44.ReadCaseLinkFieldComponent, typeof i45.ReadComplexFieldComponent, typeof i46.ReadComplexFieldRawComponent, typeof i47.ReadComplexFieldTableComponent, typeof i48.ReadComplexFieldCollectionTableComponent, typeof i49.ReadCaseFlagFieldComponent, typeof i50.ReadLinkedCasesFieldComponent, typeof i51.WriteJudicialUserFieldComponent, typeof i52.WriteAddressFieldComponent, typeof i53.WriteComplexFieldComponent, typeof i54.WriteOrganisationComplexFieldComponent, typeof i55.WriteDocumentFieldComponent, typeof i56.WriteDynamicListFieldComponent, typeof i57.WriteDynamicRadioListFieldComponent, typeof i58.WriteTextFieldComponent, typeof i59.WriteDateContainerFieldComponent, typeof i60.WriteTextAreaFieldComponent, typeof i61.WritePhoneUKFieldComponent, typeof i62.WriteNumberFieldComponent, typeof i63.WriteEmailFieldComponent, typeof i64.WriteDateFieldComponent, typeof i65.WriteCaseFlagFieldComponent, typeof i66.WriteLinkedCasesFieldComponent, typeof i67.WriteYesNoFieldComponent, typeof i68.WriteOrganisationFieldComponent, typeof i54.WriteOrganisationComplexFieldComponent, typeof i69.WriteOrderSummaryFieldComponent, typeof i70.WriteMoneyGbpFieldComponent, typeof i59.WriteDateContainerFieldComponent, typeof i71.WriteMultiSelectListFieldComponent, typeof i72.WriteFixedListFieldComponent, typeof i73.WriteFixedRadioListFieldComponent, typeof i74.WriteCaseLinkFieldComponent, typeof i75.WriteCollectionFieldComponent, typeof i76.CaseFileViewFieldComponent, typeof i77.CaseFileViewFolderComponent, typeof i78.CaseFileViewFolderSortComponent, typeof i79.CaseFileViewOverlayMenuComponent, typeof i80.CaseFileViewFolderDocumentActionsComponent, typeof i81.CaseFileViewFolderSelectorComponent, typeof i82.WriteDynamicMultiSelectListFieldComponent, typeof i57.WriteDynamicRadioListFieldComponent, typeof i56.WriteDynamicListFieldComponent, typeof i83.ReadDynamicMultiSelectListFieldComponent, typeof i40.ReadDynamicListFieldComponent, typeof i43.ReadDynamicRadioListFieldComponent, typeof i84.CaseFlagTableComponent, typeof i85.SelectFlagTypeComponent, typeof i86.SearchLanguageInterpreterComponent, typeof i87.SelectFlagLocationComponent, typeof i88.ManageCaseFlagsComponent, typeof i89.AddCommentsComponent, typeof i90.UpdateFlagComponent, typeof i91.CaseFlagSummaryListComponent, typeof i92.ConfirmFlagStatusComponent, typeof i93.UpdateFlagAddTranslationFormComponent, typeof i94.LinkedCasesToTableComponent, typeof i95.LinkedCasesFromTableComponent, typeof i96.BeforeYouStartComponent, typeof i97.LinkCasesComponent, typeof i98.CheckYourAnswersComponent, typeof i99.UnLinkCasesComponent, typeof i100.NoLinkedCasesComponent, typeof i101.ReadQueryManagementFieldComponent, typeof i102.QueryDetailsComponent, typeof i103.QueryListComponent, typeof i104.QueryWriteRespondToQueryComponent, typeof i105.QueryWriteRaiseQueryComponent, typeof i106.QueryCaseDetailsHeaderComponent, typeof i107.QueryCheckYourAnswersComponent, typeof i108.QueryWriteAddDocumentsComponent, typeof i109.QueryWriteDateInputComponent, typeof i110.QualifyingQuestionOptionsComponent, typeof i111.QualifyingQuestionDetailComponent, typeof i112.QueryAttachmentsReadComponent, typeof i113.QueryEventCompletionComponent, typeof i114.CaseEventCompletionComponent, typeof i115.CaseEventCompletionTaskCancelledComponent, typeof i116.CaseEventCompletionTaskReassignedComponent], [typeof i117.CommonModule, typeof i118.RouterModule, typeof i119.FormsModule, typeof i119.ReactiveFormsModule, typeof i120.CaseEditDataModule, typeof i121.PaletteUtilsModule, typeof i122.PipesModule, typeof i123.BannersModule, typeof i124.HeadersModule, typeof i125.FootersModule, typeof i126.BodyModule, typeof i127.FormModule, typeof i128.TabsModule, typeof i129.LabelSubstitutorModule, typeof i130.MarkdownModule, typeof i131.NgxMatDatetimePickerModule, typeof i131.NgxMatTimepickerModule, typeof i131.NgxMatNativeDateModule, typeof i132.MatLegacyFormFieldModule, typeof i133.MatLegacyInputModule, typeof i134.MatDatepickerModule, typeof i135.MatLegacyAutocompleteModule, typeof i136.CdkTreeModule, typeof i137.OverlayModule, typeof i138.PaymentLibModule, typeof i139.ScrollToModule, typeof i140.RpxTranslationModule, typeof i136.CdkTreeModule, typeof i137.OverlayModule, typeof i141.MatLegacyDialogModule, typeof i142.MediaViewerModule, typeof i143.LoadingModule, typeof i144.MarkdownComponentModule], [typeof i131.NgxMatDatetimePickerModule, typeof i131.NgxMatNativeDateModule, typeof i131.NgxMatTimepickerModule, typeof i128.TabsModule, typeof i121.PaletteUtilsModule, typeof i122.PipesModule, typeof i144.MarkdownComponentModule, typeof i10.UnsupportedFieldComponent, typeof i11.DatetimePickerComponent, typeof i12.WaysToPayFieldComponent, typeof i13.FieldReadComponent, typeof i14.FieldWriteComponent, typeof i15.FieldReadLabelComponent, typeof i16.LabelFieldComponent, typeof i17.CasePaymentHistoryViewerFieldComponent, typeof i18.MoneyGbpInputComponent, typeof i19.CaseHistoryViewerFieldComponent, typeof i20.EventLogComponent, typeof i21.EventLogDetailsComponent, typeof i22.EventLogTableComponent, typeof i23.ReadTextFieldComponent, typeof i24.ReadTextAreaFieldComponent, typeof i25.ReadNumberFieldComponent, typeof i26.ReadEmailFieldComponent, typeof i27.ReadPhoneUKFieldComponent, typeof i28.ReadDateFieldComponent, typeof i29.ReadCollectionFieldComponent, typeof i30.ReadDocumentFieldComponent, typeof i31.ReadJudicialUserFieldComponent, typeof i32.ReadYesNoFieldComponent, typeof i33.ReadOrganisationFieldComponent, typeof i34.ReadOrganisationFieldTableComponent, typeof i35.ReadOrganisationFieldRawComponent, typeof i36.ReadOrderSummaryFieldComponent, typeof i37.ReadOrderSummaryRowComponent, typeof i38.ReadMoneyGbpFieldComponent, typeof i39.ReadMultiSelectListFieldComponent, typeof i40.ReadDynamicListFieldComponent, typeof i41.ReadFixedListFieldComponent, typeof i42.ReadFixedRadioListFieldComponent, typeof i43.ReadDynamicRadioListFieldComponent, typeof i44.ReadCaseLinkFieldComponent, typeof i45.ReadComplexFieldComponent, typeof i46.ReadComplexFieldRawComponent, typeof i47.ReadComplexFieldTableComponent, typeof i48.ReadComplexFieldCollectionTableComponent, typeof i49.ReadCaseFlagFieldComponent, typeof i50.ReadLinkedCasesFieldComponent, typeof i51.WriteJudicialUserFieldComponent, typeof i52.WriteAddressFieldComponent, typeof i53.WriteComplexFieldComponent, typeof i54.WriteOrganisationComplexFieldComponent, typeof i55.WriteDocumentFieldComponent, typeof i56.WriteDynamicListFieldComponent, typeof i57.WriteDynamicRadioListFieldComponent, typeof i58.WriteTextFieldComponent, typeof i59.WriteDateContainerFieldComponent, typeof i60.WriteTextAreaFieldComponent, typeof i61.WritePhoneUKFieldComponent, typeof i62.WriteNumberFieldComponent, typeof i63.WriteEmailFieldComponent, typeof i64.WriteDateFieldComponent, typeof i65.WriteCaseFlagFieldComponent, typeof i66.WriteLinkedCasesFieldComponent, typeof i67.WriteYesNoFieldComponent, typeof i68.WriteOrganisationFieldComponent, typeof i54.WriteOrganisationComplexFieldComponent, typeof i69.WriteOrderSummaryFieldComponent, typeof i70.WriteMoneyGbpFieldComponent, typeof i59.WriteDateContainerFieldComponent, typeof i71.WriteMultiSelectListFieldComponent, typeof i72.WriteFixedListFieldComponent, typeof i73.WriteFixedRadioListFieldComponent, typeof i74.WriteCaseLinkFieldComponent, typeof i75.WriteCollectionFieldComponent, typeof i76.CaseFileViewFieldComponent, typeof i77.CaseFileViewFolderComponent, typeof i78.CaseFileViewFolderSortComponent, typeof i79.CaseFileViewOverlayMenuComponent, typeof i80.CaseFileViewFolderDocumentActionsComponent, typeof i81.CaseFileViewFolderSelectorComponent, typeof i82.WriteDynamicMultiSelectListFieldComponent, typeof i57.WriteDynamicRadioListFieldComponent, typeof i56.WriteDynamicListFieldComponent, typeof i83.ReadDynamicMultiSelectListFieldComponent, typeof i40.ReadDynamicListFieldComponent, typeof i43.ReadDynamicRadioListFieldComponent, typeof i84.CaseFlagTableComponent, typeof i85.SelectFlagTypeComponent, typeof i86.SearchLanguageInterpreterComponent, typeof i87.SelectFlagLocationComponent, typeof i88.ManageCaseFlagsComponent, typeof i89.AddCommentsComponent, typeof i90.UpdateFlagComponent, typeof i91.CaseFlagSummaryListComponent, typeof i92.ConfirmFlagStatusComponent, typeof i93.UpdateFlagAddTranslationFormComponent, typeof i94.LinkedCasesToTableComponent, typeof i95.LinkedCasesFromTableComponent, typeof i96.BeforeYouStartComponent, typeof i97.LinkCasesComponent, typeof i98.CheckYourAnswersComponent, typeof i99.UnLinkCasesComponent, typeof i100.NoLinkedCasesComponent, typeof i101.ReadQueryManagementFieldComponent, typeof i102.QueryDetailsComponent, typeof i103.QueryListComponent, typeof i104.QueryWriteRespondToQueryComponent, typeof i105.QueryWriteRaiseQueryComponent, typeof i106.QueryCaseDetailsHeaderComponent, typeof i107.QueryCheckYourAnswersComponent, typeof i108.QueryWriteAddDocumentsComponent, typeof i109.QueryWriteDateInputComponent, typeof i110.QualifyingQuestionOptionsComponent, typeof i111.QualifyingQuestionDetailComponent, typeof i112.QueryAttachmentsReadComponent, typeof i113.QueryEventCompletionComponent, typeof i114.CaseEventCompletionComponent, typeof i115.CaseEventCompletionTaskCancelledComponent, typeof i116.CaseEventCompletionTaskReassignedComponent]>;
|
|
148
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.FlagFieldDisplayPipe, typeof i7.LanguageInterpreterDisplayPipe, typeof i8.ManageCaseFlagsLabelDisplayPipe, typeof i9.UpdateFlagTitleDisplayPipe, typeof i10.UnsupportedFieldComponent, typeof i11.DatetimePickerComponent, typeof i12.WaysToPayFieldComponent, typeof i13.FieldReadComponent, typeof i14.FieldWriteComponent, typeof i15.FieldReadLabelComponent, typeof i16.LabelFieldComponent, typeof i17.CasePaymentHistoryViewerFieldComponent, typeof i18.MoneyGbpInputComponent, typeof i19.CaseHistoryViewerFieldComponent, typeof i20.EventLogComponent, typeof i21.EventLogDetailsComponent, typeof i22.EventLogTableComponent, typeof i23.ReadTextFieldComponent, typeof i24.ReadTextAreaFieldComponent, typeof i25.ReadNumberFieldComponent, typeof i26.ReadEmailFieldComponent, typeof i27.ReadPhoneUKFieldComponent, typeof i28.ReadDateFieldComponent, typeof i29.ReadCollectionFieldComponent, typeof i30.ReadDocumentFieldComponent, typeof i31.ReadJudicialUserFieldComponent, typeof i32.ReadYesNoFieldComponent, typeof i33.ReadOrganisationFieldComponent, typeof i34.ReadOrganisationFieldTableComponent, typeof i35.ReadOrganisationFieldRawComponent, typeof i36.ReadOrderSummaryFieldComponent, typeof i37.ReadOrderSummaryRowComponent, typeof i38.ReadMoneyGbpFieldComponent, typeof i39.ReadMultiSelectListFieldComponent, typeof i40.ReadDynamicListFieldComponent, typeof i41.ReadFixedListFieldComponent, typeof i42.ReadFixedRadioListFieldComponent, typeof i43.ReadDynamicRadioListFieldComponent, typeof i44.ReadCaseLinkFieldComponent, typeof i45.ReadComplexFieldComponent, typeof i46.ReadComplexFieldRawComponent, typeof i47.ReadComplexFieldTableComponent, typeof i48.ReadComplexFieldCollectionTableComponent, typeof i49.ReadCaseFlagFieldComponent, typeof i50.ReadLinkedCasesFieldComponent, typeof i51.WriteJudicialUserFieldComponent, typeof i52.WriteAddressFieldComponent, typeof i53.WriteComplexFieldComponent, typeof i54.WriteOrganisationComplexFieldComponent, typeof i55.WriteDocumentFieldComponent, typeof i56.WriteDynamicListFieldComponent, typeof i57.WriteDynamicRadioListFieldComponent, typeof i58.WriteTextFieldComponent, typeof i59.WriteDateContainerFieldComponent, typeof i60.WriteTextAreaFieldComponent, typeof i61.WritePhoneUKFieldComponent, typeof i62.WriteNumberFieldComponent, typeof i63.WriteEmailFieldComponent, typeof i64.WriteDateFieldComponent, typeof i65.WriteCaseFlagFieldComponent, typeof i66.WriteLinkedCasesFieldComponent, typeof i67.WriteYesNoFieldComponent, typeof i68.WriteOrganisationFieldComponent, typeof i54.WriteOrganisationComplexFieldComponent, typeof i69.WriteOrderSummaryFieldComponent, typeof i70.WriteMoneyGbpFieldComponent, typeof i59.WriteDateContainerFieldComponent, typeof i71.WriteMultiSelectListFieldComponent, typeof i72.WriteFixedListFieldComponent, typeof i73.WriteFixedRadioListFieldComponent, typeof i74.WriteCaseLinkFieldComponent, typeof i75.WriteCollectionFieldComponent, typeof i76.CaseFileViewFieldComponent, typeof i77.CaseFileViewFolderComponent, typeof i78.CaseFileViewFolderSortComponent, typeof i79.CaseFileViewOverlayMenuComponent, typeof i80.CaseFileViewFolderDocumentActionsComponent, typeof i81.CaseFileViewFolderSelectorComponent, typeof i82.WriteDynamicMultiSelectListFieldComponent, typeof i57.WriteDynamicRadioListFieldComponent, typeof i56.WriteDynamicListFieldComponent, typeof i83.ReadDynamicMultiSelectListFieldComponent, typeof i40.ReadDynamicListFieldComponent, typeof i43.ReadDynamicRadioListFieldComponent, typeof i84.CaseFlagTableComponent, typeof i85.SelectFlagTypeComponent, typeof i86.SearchLanguageInterpreterComponent, typeof i87.SelectFlagLocationComponent, typeof i88.ManageCaseFlagsComponent, typeof i89.AddCommentsComponent, typeof i90.UpdateFlagComponent, typeof i91.CaseFlagSummaryListComponent, typeof i92.ConfirmFlagStatusComponent, typeof i93.UpdateFlagAddTranslationFormComponent, typeof i94.LinkedCasesToTableComponent, typeof i95.LinkedCasesFromTableComponent, typeof i96.BeforeYouStartComponent, typeof i97.LinkCasesComponent, typeof i98.CheckYourAnswersComponent, typeof i99.UnLinkCasesComponent, typeof i100.NoLinkedCasesComponent, typeof i101.ReadQueryManagementFieldComponent, typeof i102.QueryDetailsComponent, typeof i103.QueryListComponent, typeof i104.QueryWriteRespondToQueryComponent, typeof i105.QueryWriteRaiseQueryComponent, typeof i106.QueryCaseDetailsHeaderComponent, typeof i107.QueryCheckYourAnswersComponent, typeof i108.QueryWriteAddDocumentsComponent, typeof i109.QueryWriteDateInputComponent, typeof i110.QualifyingQuestionOptionsComponent, typeof i111.QualifyingQuestionDetailComponent, typeof i112.QueryAttachmentsReadComponent, typeof i113.QueryEventCompletionComponent, typeof i114.CaseEventCompletionComponent, typeof i115.CaseEventCompletionTaskCancelledComponent, typeof i116.CaseEventCompletionTaskReassignedComponent], [typeof i117.CommonModule, typeof i118.RouterModule, typeof i119.FormsModule, typeof i119.ReactiveFormsModule, typeof i120.CaseEditDataModule, typeof i121.PaletteUtilsModule, typeof i122.PipesModule, typeof i123.BannersModule, typeof i124.HeadersModule, typeof i125.FootersModule, typeof i126.BodyModule, typeof i127.FormModule, typeof i128.TabsModule, typeof i129.LabelSubstitutorModule, typeof i130.NgxMdModule, typeof i131.NgxMatDatetimePickerModule, typeof i131.NgxMatTimepickerModule, typeof i131.NgxMatNativeDateModule, typeof i132.MatLegacyFormFieldModule, typeof i133.MatLegacyInputModule, typeof i134.MatDatepickerModule, typeof i135.MatLegacyAutocompleteModule, typeof i136.CdkTreeModule, typeof i137.OverlayModule, typeof i138.PaymentLibModule, typeof i139.ScrollToModule, typeof i140.RpxTranslationModule, typeof i136.CdkTreeModule, typeof i137.OverlayModule, typeof i141.MatLegacyDialogModule, typeof i142.MediaViewerModule, typeof i143.LoadingModule, typeof i140.RpxTranslationModule, typeof i144.MarkdownComponentModule], [typeof i131.NgxMatDatetimePickerModule, typeof i131.NgxMatNativeDateModule, typeof i131.NgxMatTimepickerModule, typeof i128.TabsModule, typeof i121.PaletteUtilsModule, typeof i122.PipesModule, typeof i144.MarkdownComponentModule, typeof i10.UnsupportedFieldComponent, typeof i11.DatetimePickerComponent, typeof i12.WaysToPayFieldComponent, typeof i13.FieldReadComponent, typeof i14.FieldWriteComponent, typeof i15.FieldReadLabelComponent, typeof i16.LabelFieldComponent, typeof i17.CasePaymentHistoryViewerFieldComponent, typeof i18.MoneyGbpInputComponent, typeof i19.CaseHistoryViewerFieldComponent, typeof i20.EventLogComponent, typeof i21.EventLogDetailsComponent, typeof i22.EventLogTableComponent, typeof i23.ReadTextFieldComponent, typeof i24.ReadTextAreaFieldComponent, typeof i25.ReadNumberFieldComponent, typeof i26.ReadEmailFieldComponent, typeof i27.ReadPhoneUKFieldComponent, typeof i28.ReadDateFieldComponent, typeof i29.ReadCollectionFieldComponent, typeof i30.ReadDocumentFieldComponent, typeof i31.ReadJudicialUserFieldComponent, typeof i32.ReadYesNoFieldComponent, typeof i33.ReadOrganisationFieldComponent, typeof i34.ReadOrganisationFieldTableComponent, typeof i35.ReadOrganisationFieldRawComponent, typeof i36.ReadOrderSummaryFieldComponent, typeof i37.ReadOrderSummaryRowComponent, typeof i38.ReadMoneyGbpFieldComponent, typeof i39.ReadMultiSelectListFieldComponent, typeof i40.ReadDynamicListFieldComponent, typeof i41.ReadFixedListFieldComponent, typeof i42.ReadFixedRadioListFieldComponent, typeof i43.ReadDynamicRadioListFieldComponent, typeof i44.ReadCaseLinkFieldComponent, typeof i45.ReadComplexFieldComponent, typeof i46.ReadComplexFieldRawComponent, typeof i47.ReadComplexFieldTableComponent, typeof i48.ReadComplexFieldCollectionTableComponent, typeof i49.ReadCaseFlagFieldComponent, typeof i50.ReadLinkedCasesFieldComponent, typeof i51.WriteJudicialUserFieldComponent, typeof i52.WriteAddressFieldComponent, typeof i53.WriteComplexFieldComponent, typeof i54.WriteOrganisationComplexFieldComponent, typeof i55.WriteDocumentFieldComponent, typeof i56.WriteDynamicListFieldComponent, typeof i57.WriteDynamicRadioListFieldComponent, typeof i58.WriteTextFieldComponent, typeof i59.WriteDateContainerFieldComponent, typeof i60.WriteTextAreaFieldComponent, typeof i61.WritePhoneUKFieldComponent, typeof i62.WriteNumberFieldComponent, typeof i63.WriteEmailFieldComponent, typeof i64.WriteDateFieldComponent, typeof i65.WriteCaseFlagFieldComponent, typeof i66.WriteLinkedCasesFieldComponent, typeof i67.WriteYesNoFieldComponent, typeof i68.WriteOrganisationFieldComponent, typeof i54.WriteOrganisationComplexFieldComponent, typeof i69.WriteOrderSummaryFieldComponent, typeof i70.WriteMoneyGbpFieldComponent, typeof i59.WriteDateContainerFieldComponent, typeof i71.WriteMultiSelectListFieldComponent, typeof i72.WriteFixedListFieldComponent, typeof i73.WriteFixedRadioListFieldComponent, typeof i74.WriteCaseLinkFieldComponent, typeof i75.WriteCollectionFieldComponent, typeof i76.CaseFileViewFieldComponent, typeof i77.CaseFileViewFolderComponent, typeof i78.CaseFileViewFolderSortComponent, typeof i79.CaseFileViewOverlayMenuComponent, typeof i80.CaseFileViewFolderDocumentActionsComponent, typeof i81.CaseFileViewFolderSelectorComponent, typeof i82.WriteDynamicMultiSelectListFieldComponent, typeof i57.WriteDynamicRadioListFieldComponent, typeof i56.WriteDynamicListFieldComponent, typeof i83.ReadDynamicMultiSelectListFieldComponent, typeof i40.ReadDynamicListFieldComponent, typeof i43.ReadDynamicRadioListFieldComponent, typeof i84.CaseFlagTableComponent, typeof i85.SelectFlagTypeComponent, typeof i86.SearchLanguageInterpreterComponent, typeof i87.SelectFlagLocationComponent, typeof i88.ManageCaseFlagsComponent, typeof i89.AddCommentsComponent, typeof i90.UpdateFlagComponent, typeof i91.CaseFlagSummaryListComponent, typeof i92.ConfirmFlagStatusComponent, typeof i93.UpdateFlagAddTranslationFormComponent, typeof i94.LinkedCasesToTableComponent, typeof i95.LinkedCasesFromTableComponent, typeof i96.BeforeYouStartComponent, typeof i97.LinkCasesComponent, typeof i98.CheckYourAnswersComponent, typeof i99.UnLinkCasesComponent, typeof i100.NoLinkedCasesComponent, typeof i101.ReadQueryManagementFieldComponent, typeof i102.QueryDetailsComponent, typeof i103.QueryListComponent, typeof i104.QueryWriteRespondToQueryComponent, typeof i105.QueryWriteRaiseQueryComponent, typeof i106.QueryCaseDetailsHeaderComponent, typeof i107.QueryCheckYourAnswersComponent, typeof i108.QueryWriteAddDocumentsComponent, typeof i109.QueryWriteDateInputComponent, typeof i110.QualifyingQuestionOptionsComponent, typeof i111.QualifyingQuestionDetailComponent, typeof i112.QueryAttachmentsReadComponent, typeof i113.QueryEventCompletionComponent, typeof i114.CaseEventCompletionComponent, typeof i115.CaseEventCompletionTaskCancelledComponent, typeof i116.CaseEventCompletionTaskReassignedComponent]>;
|
|
149
149
|
static ɵinj: i0.ɵɵInjectorDeclaration<PaletteModule>;
|
|
150
150
|
}
|
|
151
151
|
//# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoRA,
|
|
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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoRA,qBA4Ea,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CACzB"}
|
|
@@ -3,6 +3,6 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class QualifyingQuestionDetailComponent {
|
|
4
4
|
qualifyingQuestion: QualifyingQuestion;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<QualifyingQuestionDetailComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QualifyingQuestionDetailComponent, "ccd-qualifying-question-detail", never, { "qualifyingQuestion":
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QualifyingQuestionDetailComponent, "ccd-qualifying-question-detail", never, { "qualifyingQuestion": "qualifyingQuestion"; }, {}, never, never, false, never>;
|
|
7
7
|
}
|
|
8
8
|
//# sourceMappingURL=qualifying-question-detail.component.d.ts.map
|
|
@@ -17,6 +17,6 @@ export declare class QualifyingQuestionOptionsComponent implements OnInit {
|
|
|
17
17
|
click(): void;
|
|
18
18
|
get displayError(): boolean;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<QualifyingQuestionOptionsComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QualifyingQuestionOptionsComponent, "ccd-qualifying-question-options", never, { "qualifyingQuestionsControl":
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QualifyingQuestionOptionsComponent, "ccd-qualifying-question-options", never, { "qualifyingQuestionsControl": "qualifyingQuestionsControl"; "qualifyingQuestions$": "qualifyingQuestions$"; }, {}, never, never, false, never>;
|
|
21
21
|
}
|
|
22
22
|
//# sourceMappingURL=qualifying-question-options.component.d.ts.map
|
|
@@ -6,6 +6,6 @@ export declare class QueryAttachmentsReadComponent implements OnChanges {
|
|
|
6
6
|
mockCaseFieldWithAttachments: CaseField;
|
|
7
7
|
ngOnChanges(): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryAttachmentsReadComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QueryAttachmentsReadComponent, "ccd-query-attachments-read", never, { "attachments":
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueryAttachmentsReadComponent, "ccd-query-attachments-read", never, { "attachments": "attachments"; }, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
11
11
|
//# sourceMappingURL=query-attachments-read.component.d.ts.map
|
|
@@ -25,6 +25,6 @@ export declare class QueryCheckYourAnswersComponent implements OnInit, OnDestroy
|
|
|
25
25
|
goBack(): void;
|
|
26
26
|
submit(): void;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryCheckYourAnswersComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QueryCheckYourAnswersComponent, "ccd-query-check-your-answers", never, { "formGroup":
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueryCheckYourAnswersComponent, "ccd-query-check-your-answers", never, { "formGroup": "formGroup"; "queryItem": "queryItem"; "queryCreateContext": "queryCreateContext"; }, { "backClicked": "backClicked"; }, never, never, false, never>;
|
|
29
29
|
}
|
|
30
30
|
//# sourceMappingURL=query-check-your-answers.component.d.ts.map
|