@hmcts/ccd-case-ui-toolkit 7.0.7-task-completion-error-message → 7.0.7-welsh-translation-fixes
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/components/banners/notification-banner/domain/notification-banner-config.model.mjs +1 -1
- package/esm2020/lib/components/banners/notification-banner/notification-banner.component.mjs +41 -30
- package/esm2020/lib/shared/commons/constants.mjs +1 -2
- package/esm2020/lib/shared/components/case-editor/case-edit/case-edit.component.mjs +8 -18
- package/esm2020/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.mjs +2 -2
- package/esm2020/lib/shared/components/case-editor/case-edit-generic-errors/case-edit-generic-errors.component.mjs +2 -2
- package/esm2020/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.mjs +2 -11
- package/esm2020/lib/shared/components/case-editor/case-edit-submit/case-edit-submit-titles.enum.mjs +7 -0
- package/esm2020/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.mjs +166 -123
- package/esm2020/lib/shared/components/case-editor/case-editor.module.mjs +17 -22
- package/esm2020/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.mjs +2 -3
- package/esm2020/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.mjs +2 -2
- package/esm2020/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.mjs +2 -2
- package/esm2020/lib/shared/components/case-editor/services/case-flag-state.service.mjs +19 -0
- package/esm2020/lib/shared/components/case-editor/services/cases.service.mjs +6 -1
- package/esm2020/lib/shared/components/case-editor/services/event-completion-state-machine.service.mjs +1 -1
- package/esm2020/lib/shared/components/case-editor/services/work-allocation.service.mjs +1 -1
- package/esm2020/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.mjs +12 -38
- package/esm2020/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.mjs +51 -24
- package/esm2020/lib/shared/components/case-viewer/case-viewer.module.mjs +8 -5
- package/esm2020/lib/shared/components/palette/address/write-address-field.component.mjs +19 -20
- package/esm2020/lib/shared/components/palette/base-field/field-read.component.mjs +1 -1
- package/esm2020/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.mjs +70 -31
- package/esm2020/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.mjs +249 -46
- package/esm2020/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.mjs +140 -71
- 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/index.mjs +4 -1
- package/esm2020/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.mjs +73 -78
- package/esm2020/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.mjs +6 -0
- package/esm2020/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.mjs +133 -99
- package/esm2020/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.mjs +22 -9
- package/esm2020/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.mjs +213 -112
- 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 +439 -104
- package/esm2020/lib/shared/components/palette/case-flag/domain/case-flag-state.model.mjs +1 -1
- package/esm2020/lib/shared/components/palette/case-flag/domain/case-flag.model.mjs +1 -1
- package/esm2020/lib/shared/components/palette/case-flag/domain/language.model.mjs +1 -1
- package/esm2020/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.mjs +2 -1
- package/esm2020/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.mjs +3 -1
- package/esm2020/lib/shared/components/palette/case-flag/enums/case-flag-check-your-answers-step.enum.mjs +12 -0
- package/esm2020/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.mjs +15 -0
- package/esm2020/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.mjs +13 -0
- package/esm2020/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.mjs +3 -2
- package/esm2020/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.mjs +11 -3
- package/esm2020/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.mjs +6 -0
- package/esm2020/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.mjs +6 -0
- package/esm2020/lib/shared/components/palette/case-flag/enums/index.mjs +9 -2
- package/esm2020/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.mjs +3 -2
- package/esm2020/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.mjs +4 -1
- package/esm2020/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.mjs +6 -0
- package/esm2020/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.mjs +6 -0
- package/esm2020/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.mjs +5 -1
- package/esm2020/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.mjs +7 -2
- package/esm2020/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.mjs +10 -7
- package/esm2020/lib/shared/components/palette/case-flag/index.mjs +2 -1
- 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/index.mjs +5 -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 +156 -57
- package/esm2020/lib/shared/components/palette/case-flag/write-case-flag-field.component.mjs +385 -172
- package/esm2020/lib/shared/components/palette/case-link/write-case-link-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/collection/write-collection-field.component.mjs +49 -54
- package/esm2020/lib/shared/components/palette/complex/read-complex-field.component.mjs +12 -14
- package/esm2020/lib/shared/components/palette/complex/sort-order.mjs +7 -0
- package/esm2020/lib/shared/components/palette/complex/write-complex-field.component.mjs +5 -6
- package/esm2020/lib/shared/components/palette/date/write-date-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/datetime-picker/datetime-picker.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/document/write-document-field.component.mjs +23 -24
- package/esm2020/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/email/write-email-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/history/event-log/event-log-table.component.mjs +9 -7
- package/esm2020/lib/shared/components/palette/index.mjs +3 -1
- package/esm2020/lib/shared/components/palette/markdown/index.mjs +2 -1
- package/esm2020/lib/shared/components/palette/markdown/markdown-component.module.mjs +40 -0
- package/esm2020/lib/shared/components/palette/markdown/markdown.component.mjs +9 -7
- package/esm2020/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/number/write-number-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/palette.module.mjs +148 -49
- package/esm2020/lib/shared/components/palette/palette.service.mjs +4 -2
- package/esm2020/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/query-management/__mocks__/index.mjs +210 -0
- package/esm2020/lib/shared/components/palette/query-management/components/index.mjs +13 -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/enums/index.mjs +6 -0
- package/esm2020/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.mjs +5 -0
- package/esm2020/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.mjs +6 -0
- package/esm2020/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.mjs +10 -0
- package/esm2020/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.mjs +6 -0
- package/esm2020/lib/shared/components/palette/query-management/index.mjs +7 -0
- package/esm2020/lib/shared/components/palette/query-management/models/case-queries-collection.model.mjs +2 -0
- package/esm2020/lib/shared/components/palette/query-management/models/index.mjs +8 -0
- package/esm2020/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.mjs +2 -0
- package/esm2020/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.mjs +2 -0
- package/esm2020/lib/shared/components/palette/query-management/models/query-create-context.enum.mjs +9 -0
- package/esm2020/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.mjs +2 -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/write-text-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/text-area/write-text-area-field.component.mjs +8 -10
- package/esm2020/lib/shared/components/palette/utils/field-label.pipe.mjs +14 -7
- package/esm2020/lib/shared/components/palette/utils/first-error.pipe.mjs +16 -9
- package/esm2020/lib/shared/components/palette/yes-no/read-yes-no-field.component.mjs +10 -5
- package/esm2020/lib/shared/components/palette/yes-no/write-yes-no-field.component.mjs +12 -13
- package/esm2020/lib/shared/components/search-filters/search-filters.component.mjs +24 -4
- package/esm2020/lib/shared/domain/case-flag/flag-type.model.mjs +16 -2
- package/esm2020/lib/shared/domain/case-view/case-view-event-ids.enum.mjs +6 -0
- package/esm2020/lib/shared/domain/case-view/case-view-trigger.model.mjs +1 -2
- package/esm2020/lib/shared/domain/definition/display-context-enum.model.mjs +3 -1
- package/esm2020/lib/shared/domain/work-allocation/task-response.model.mjs +1 -1
- package/esm2020/lib/shared/fixture/shared.test.fixture.mjs +2 -1
- package/esm2020/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.mjs +16 -0
- package/esm2020/lib/shared/pipes/generic/index.mjs +2 -0
- package/esm2020/lib/shared/pipes/index.mjs +3 -2
- package/esm2020/lib/shared/pipes/pipes.module.mjs +9 -5
- package/esm2020/lib/shared/services/alert/alert.service.mjs +1 -1
- package/esm2020/lib/shared/services/case-flag/case-flag-refdata.service.mjs +9 -3
- package/esm2020/lib/shared/services/fields/fields.utils.mjs +22 -4
- package/esm2020/lib/shared/services/form/form-value.service.mjs +14 -11
- package/esm2020/lib/shared/services/jurisdiction/jurisdiction.service.mjs +2 -1
- package/esm2020/lib/shared/services/request/request.options.builder.mjs +7 -1
- package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs +8805 -4294
- package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs +9786 -5695
- package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/lib/components/banners/notification-banner/domain/notification-banner-config.model.d.ts +6 -5
- package/lib/components/banners/notification-banner/domain/notification-banner-config.model.d.ts.map +1 -1
- package/lib/shared/commons/constants.d.ts +0 -1
- package/lib/shared/commons/constants.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts +2 -3
- package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts.map +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-edit-submit/case-edit-submit-titles.enum.d.ts +6 -0
- package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit-titles.enum.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts +1 -1
- package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-editor.module.d.ts +17 -20
- package/lib/shared/components/case-editor/case-editor.module.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.d.ts.map +1 -1
- package/lib/shared/components/case-editor/services/case-flag-state.service.d.ts +11 -0
- package/lib/shared/components/case-editor/services/case-flag-state.service.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/cases.service.d.ts +1 -0
- package/lib/shared/components/case-editor/services/cases.service.d.ts.map +1 -1
- package/lib/shared/components/case-editor/services/work-allocation.service.d.ts +2 -2
- package/lib/shared/components/case-editor/services/work-allocation.service.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts +2 -5
- package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts +7 -3
- 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-viewer.module.d.ts +4 -4
- package/lib/shared/components/case-viewer/case-viewer.module.d.ts.map +1 -1
- package/lib/shared/components/palette/base-field/field-read.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.d.ts +6 -2
- package/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.d.ts +25 -8
- package/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.d.ts +2 -1
- package/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.d.ts +28 -0
- package/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/index.d.ts +3 -0
- package/lib/shared/components/palette/case-flag/components/index.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts +4 -8
- package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.d.ts +10 -8
- package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.d.ts +2 -1
- package/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.d.ts +16 -9
- package/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.d.ts.map +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 +27 -0
- package/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.d.ts +26 -11
- package/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/domain/case-flag-state.model.d.ts +1 -10
- package/lib/shared/components/palette/case-flag/domain/case-flag-state.model.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/domain/case-flag.model.d.ts +12 -1
- package/lib/shared/components/palette/case-flag/domain/case-flag.model.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/domain/language.model.d.ts +1 -0
- package/lib/shared/components/palette/case-flag/domain/language.model.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.d.ts +1 -0
- package/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.d.ts +3 -1
- package/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/enums/case-flag-check-your-answers-step.enum.d.ts +11 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-check-your-answers-step.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.d.ts +14 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.d.ts +12 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.d.ts +2 -1
- package/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.d.ts +11 -3
- package/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/index.d.ts +8 -1
- package/lib/shared/components/palette/case-flag/enums/index.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.d.ts +2 -1
- package/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.d.ts +3 -0
- package/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.d.ts +5 -1
- package/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.d.ts +7 -2
- package/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.d.ts +7 -4
- package/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/index.d.ts +1 -0
- package/lib/shared/components/palette/case-flag/index.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.d.ts +19 -0
- package/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/pipes/index.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/pipes/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.d.ts +18 -0
- package/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.d.ts +25 -0
- package/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.d.ts +21 -0
- package/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/read-case-flag-field.component.d.ts +12 -8
- package/lib/shared/components/palette/case-flag/read-case-flag-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts +52 -27
- package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/collection/write-collection-field.component.d.ts +3 -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.component.d.ts.map +1 -1
- package/lib/shared/components/palette/complex/sort-order.d.ts +6 -0
- package/lib/shared/components/palette/complex/sort-order.d.ts.map +1 -0
- package/lib/shared/components/palette/index.d.ts +2 -0
- package/lib/shared/components/palette/index.d.ts.map +1 -1
- package/lib/shared/components/palette/markdown/index.d.ts +1 -0
- package/lib/shared/components/palette/markdown/index.d.ts.map +1 -1
- package/lib/shared/components/palette/markdown/markdown-component.module.d.ts +13 -0
- package/lib/shared/components/palette/markdown/markdown-component.module.d.ts.map +1 -0
- package/lib/shared/components/palette/palette.module.d.ts +140 -118
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.service.d.ts.map +1 -1
- package/lib/shared/components/palette/query-management/__mocks__/index.d.ts +11 -0
- package/lib/shared/components/palette/query-management/__mocks__/index.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/index.d.ts +13 -0
- package/lib/shared/components/palette/query-management/components/index.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.d.ts +8 -0
- package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.d.ts +22 -0
- package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.d.ts +11 -0
- package/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.d.ts +10 -0
- package/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.d.ts +30 -0
- package/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/query-details/query-details.component.d.ts +16 -0
- package/lib/shared/components/palette/query-management/components/query-details/query-details.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.d.ts +9 -0
- package/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/query-list/query-list.component.d.ts +18 -0
- package/lib/shared/components/palette/query-management/components/query-list/query-list.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.d.ts +20 -0
- package/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts +20 -0
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.d.ts +11 -0
- package/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.d.ts +21 -0
- package/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/enums/index.d.ts +6 -0
- package/lib/shared/components/palette/query-management/enums/index.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.d.ts +4 -0
- package/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.d.ts +5 -0
- package/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.d.ts +9 -0
- package/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.d.ts +5 -0
- package/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/index.d.ts +7 -0
- package/lib/shared/components/palette/query-management/index.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/models/case-queries-collection.model.d.ts +27 -0
- package/lib/shared/components/palette/query-management/models/case-queries-collection.model.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/models/index.d.ts +8 -0
- package/lib/shared/components/palette/query-management/models/index.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.d.ts +5 -0
- package/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.d.ts +6 -0
- package/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/models/query-create-context.enum.d.ts +8 -0
- package/lib/shared/components/palette/query-management/models/query-create-context.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.d.ts +7 -0
- package/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.d.ts +10 -0
- package/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.d.ts +22 -0
- package/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/read-query-management-field.component.d.ts +18 -0
- package/lib/shared/components/palette/query-management/read-query-management-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/query-management/utils/query-management.utils.d.ts +12 -0
- package/lib/shared/components/palette/query-management/utils/query-management.utils.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/field-label.pipe.d.ts +3 -0
- package/lib/shared/components/palette/utils/field-label.pipe.d.ts.map +1 -1
- package/lib/shared/components/palette/utils/first-error.pipe.d.ts +8 -5
- package/lib/shared/components/palette/utils/first-error.pipe.d.ts.map +1 -1
- package/lib/shared/components/palette/yes-no/read-yes-no-field.component.d.ts.map +1 -1
- package/lib/shared/components/search-filters/search-filters.component.d.ts.map +1 -1
- package/lib/shared/domain/case-flag/flag-type.model.d.ts +6 -1
- package/lib/shared/domain/case-flag/flag-type.model.d.ts.map +1 -1
- package/lib/shared/domain/case-view/case-view-event-ids.enum.d.ts +5 -0
- package/lib/shared/domain/case-view/case-view-event-ids.enum.d.ts.map +1 -0
- package/lib/shared/domain/case-view/case-view-trigger.model.d.ts +0 -1
- package/lib/shared/domain/case-view/case-view-trigger.model.d.ts.map +1 -1
- package/lib/shared/domain/definition/display-context-enum.model.d.ts +3 -1
- package/lib/shared/domain/definition/display-context-enum.model.d.ts.map +1 -1
- package/lib/shared/domain/work-allocation/task-response.model.d.ts +1 -1
- package/lib/shared/domain/work-allocation/task-response.model.d.ts.map +1 -1
- package/lib/shared/fixture/shared.test.fixture.d.ts.map +1 -1
- package/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.d.ts +8 -0
- package/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.d.ts.map +1 -0
- package/lib/shared/pipes/generic/index.d.ts +2 -0
- package/lib/shared/pipes/generic/index.d.ts.map +1 -0
- package/lib/shared/pipes/index.d.ts +2 -1
- package/lib/shared/pipes/index.d.ts.map +1 -1
- package/lib/shared/pipes/pipes.module.d.ts +3 -2
- package/lib/shared/pipes/pipes.module.d.ts.map +1 -1
- package/lib/shared/services/alert/alert.service.d.ts.map +1 -1
- package/lib/shared/services/case-flag/case-flag-refdata.service.d.ts +3 -2
- package/lib/shared/services/case-flag/case-flag-refdata.service.d.ts.map +1 -1
- package/lib/shared/services/fields/fields.utils.d.ts +1 -0
- package/lib/shared/services/fields/fields.utils.d.ts.map +1 -1
- package/lib/shared/services/form/form-value.service.d.ts.map +1 -1
- package/lib/shared/services/jurisdiction/jurisdiction.service.d.ts.map +1 -1
- package/lib/shared/services/request/request.options.builder.d.ts.map +1 -1
- package/package.json +1 -1
package/lib/components/banners/notification-banner/domain/notification-banner-config.model.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
1
2
|
import { NotificationBannerType } from '../enums/notification-banner-type.enum';
|
|
2
3
|
export interface NotificationBannerConfig {
|
|
3
4
|
bannerType: NotificationBannerType;
|
|
4
|
-
headingText: string
|
|
5
|
-
description: string
|
|
5
|
+
headingText: Observable<string>;
|
|
6
|
+
description: Observable<string>;
|
|
6
7
|
showLink: boolean;
|
|
7
|
-
linkUrl?: string
|
|
8
|
-
linkText?: string
|
|
8
|
+
linkUrl?: Observable<string>;
|
|
9
|
+
linkText?: Observable<string>;
|
|
9
10
|
triggerOutputEvent?: boolean;
|
|
10
|
-
triggerOutputEventText?: string
|
|
11
|
+
triggerOutputEventText?: Observable<string>;
|
|
11
12
|
headerClass: string;
|
|
12
13
|
}
|
|
13
14
|
//# sourceMappingURL=notification-banner-config.model.d.ts.map
|
package/lib/components/banners/notification-banner/domain/notification-banner-config.model.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification-banner-config.model.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/components/banners/notification-banner/domain/notification-banner-config.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;AAEhF,MAAM,WAAW,wBAAwB;IACvC,UAAU,EAAE,sBAAsB,CAAC;IACnC,WAAW,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"notification-banner-config.model.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/components/banners/notification-banner/domain/notification-banner-config.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;AAEhF,MAAM,WAAW,wBAAwB;IACvC,UAAU,EAAE,sBAAsB,CAAC;IACnC,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC;IAChC,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC;IAChC,QAAQ,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC;IAC7B,QAAQ,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC;IAC9B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,sBAAsB,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC;IAC5C,WAAW,EAAE,MAAM,CAAC;CACrB"}
|
|
@@ -2,7 +2,6 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class Constants {
|
|
3
3
|
static readonly MANDATORY: string;
|
|
4
4
|
static readonly REGEX_WHITESPACES: string;
|
|
5
|
-
static readonly TASK_COMPLETION_ERROR = "The associated task for this event failed to complete automatically. Please complete the task manually in the Tasks tab on the case";
|
|
6
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<Constants, never>;
|
|
7
6
|
static ɵprov: i0.ɵɵInjectableDeclaration<Constants>;
|
|
8
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/commons/constants.ts"],"names":[],"mappings":";AAEA,qBACa,SAAS;IACpB,gBAAuB,SAAS,EAAE,MAAM,CAAe;IACvD,gBAAuB,iBAAiB,EAAE,MAAM,CAA2B;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/commons/constants.ts"],"names":[],"mappings":";AAEA,qBACa,SAAS;IACpB,gBAAuB,SAAS,EAAE,MAAM,CAAe;IACvD,gBAAuB,iBAAiB,EAAE,MAAM,CAA2B;yCAFhE,SAAS;6CAAT,SAAS;CAGrB"}
|
|
@@ -4,7 +4,7 @@ import { ActivatedRoute, Router } from '@angular/router';
|
|
|
4
4
|
import { Observable, Subject } from 'rxjs';
|
|
5
5
|
import { ConditionalShowRegistrarService } from '../../../directives';
|
|
6
6
|
import { CaseEditGetNextPage, CaseEditSubmitForm, CaseEditonEventCanBeCompleted, CaseEventData, CaseEventTrigger, CaseView, Draft, HttpError, Profile } from '../../../domain';
|
|
7
|
-
import {
|
|
7
|
+
import { FieldsPurger, FieldsUtils, FormErrorService, FormValueService, LoadingService, SessionStorageService, WindowService } from '../../../services';
|
|
8
8
|
import { Confirmation, Wizard, WizardPage } from '../domain';
|
|
9
9
|
import { EventCompletionParams } from '../domain/event-completion-params.model';
|
|
10
10
|
import { CaseNotifier, WizardFactoryService, WorkAllocationService } from '../services';
|
|
@@ -26,7 +26,6 @@ export declare class CaseEditComponent implements OnInit, OnDestroy {
|
|
|
26
26
|
private readonly loadingService;
|
|
27
27
|
private readonly validPageListCaseFieldsService;
|
|
28
28
|
private readonly workAllocationService;
|
|
29
|
-
private readonly alertService;
|
|
30
29
|
static readonly ORIGIN_QUERY_PARAM = "origin";
|
|
31
30
|
static readonly ALERT_MESSAGE = "Page is being refreshed so you will be redirected to the first page of this event.";
|
|
32
31
|
eventTrigger: CaseEventTrigger;
|
|
@@ -52,7 +51,7 @@ export declare class CaseEditComponent implements OnInit, OnDestroy {
|
|
|
52
51
|
error: HttpError;
|
|
53
52
|
callbackErrorsSubject: Subject<any>;
|
|
54
53
|
validPageList: WizardPage[];
|
|
55
|
-
constructor(fb: FormBuilder, caseNotifier: CaseNotifier, router: Router, route: ActivatedRoute, fieldsUtils: FieldsUtils, fieldsPurger: FieldsPurger, registrarService: ConditionalShowRegistrarService, wizardFactory: WizardFactoryService, sessionStorageService: SessionStorageService, windowsService: WindowService, formValueService: FormValueService, formErrorService: FormErrorService, loadingService: LoadingService, validPageListCaseFieldsService: ValidPageListCaseFieldsService, workAllocationService: WorkAllocationService
|
|
54
|
+
constructor(fb: FormBuilder, caseNotifier: CaseNotifier, router: Router, route: ActivatedRoute, fieldsUtils: FieldsUtils, fieldsPurger: FieldsPurger, registrarService: ConditionalShowRegistrarService, wizardFactory: WizardFactoryService, sessionStorageService: SessionStorageService, windowsService: WindowService, formValueService: FormValueService, formErrorService: FormErrorService, loadingService: LoadingService, validPageListCaseFieldsService: ValidPageListCaseFieldsService, workAllocationService: WorkAllocationService);
|
|
56
55
|
ngOnInit(): void;
|
|
57
56
|
ngOnDestroy(): void;
|
|
58
57
|
checkPageRefresh(): boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-edit.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-edit/case-edit.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAAU,MAAM,eAAe,CAAC;AAC1F,OAAO,EAAE,WAAW,EAAe,SAAS,EAAc,MAAM,gBAAgB,CAAC;AACjF,OAAO,EAAE,cAAc,EAAU,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAM,MAAM,MAAM,CAAC;AAE/C,OAAO,EAAE,+BAA+B,EAAkB,MAAM,qBAAqB,CAAC;AACtF,OAAO,EAC8C,mBAAmB,EACtE,kBAAkB,EAClB,6BAA6B,EAC7B,aAAa,EAAE,gBAAgB,EAC/B,QAAQ,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,EACpC,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EACL,YAAY,
|
|
1
|
+
{"version":3,"file":"case-edit.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-edit/case-edit.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-edit-page.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"case-edit-page.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.ts"],"names":[],"mappings":"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"}
|
package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit-titles.enum.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-edit-submit-titles.enum.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-edit-submit/case-edit-submit-titles.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,oBAAoB;IAC9B,sBAAsB,2BAA2B;IACjD,mBAAmB,wBAAwB;IAC3C,kBAAkB,uBAAuB;CAC1C"}
|
|
@@ -37,6 +37,7 @@ export declare class CaseEditSubmitComponent implements OnInit, OnDestroy {
|
|
|
37
37
|
ngOnDestroy(): void;
|
|
38
38
|
submit(): void;
|
|
39
39
|
onEventCanBeCompleted(eventCanBeCompleted: boolean): void;
|
|
40
|
+
private getPageTitle;
|
|
40
41
|
private get hasErrors();
|
|
41
42
|
navigateToPage(pageId: string): void;
|
|
42
43
|
callbackErrorsNotify(errorContext: CallbackErrorsContext): void;
|
|
@@ -52,7 +53,6 @@ export declare class CaseEditSubmitComponent implements OnInit, OnDestroy {
|
|
|
52
53
|
hasPrevious(): boolean;
|
|
53
54
|
isShown(page: WizardPage): boolean;
|
|
54
55
|
canShowFieldInCYA(field: CaseField): boolean;
|
|
55
|
-
isSolicitor(): boolean;
|
|
56
56
|
private sortFieldsByShowSummaryContent;
|
|
57
57
|
private getCaseFields;
|
|
58
58
|
getCaseId(): string;
|
package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-edit-submit.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,gBAAgB,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,IAAI,EAAE,MAAM,sCAAsC,CAAC;AAC5D,OAAO,EACL,gBAAgB,EAChB,WAAW,EACX,YAAY,EACZ,eAAe,EAChB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAA2B,qBAAqB,EAAE,MAAM,aAAa,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAE/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;;
|
|
1
|
+
{"version":3,"file":"case-edit-submit.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,28 +4,25 @@ import * as i2 from "./case-edit/case-edit.component";
|
|
|
4
4
|
import * as i3 from "./case-edit-page/case-edit-page.component";
|
|
5
5
|
import * as i4 from "./case-edit-form/case-edit-form.component";
|
|
6
6
|
import * as i5 from "./case-edit-submit/case-edit-submit.component";
|
|
7
|
-
import * as i6 from "./case-
|
|
8
|
-
import * as i7 from "./case-
|
|
9
|
-
import * as i8 from "./case-
|
|
10
|
-
import * as i9 from "
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "
|
|
13
|
-
import * as i12 from "
|
|
14
|
-
import * as i13 from "
|
|
15
|
-
import * as i14 from "
|
|
16
|
-
import * as i15 from "
|
|
17
|
-
import * as i16 from "
|
|
18
|
-
import * as i17 from "
|
|
19
|
-
import * as i18 from "
|
|
20
|
-
import * as i19 from "
|
|
21
|
-
import * as i20 from "
|
|
22
|
-
import * as i21 from "
|
|
23
|
-
import * as i22 from "../palette/palette.module";
|
|
24
|
-
import * as i23 from "rpx-xui-translation";
|
|
25
|
-
import * as i24 from "../error/callback-errors.component";
|
|
7
|
+
import * as i6 from "./case-create/case-create.component";
|
|
8
|
+
import * as i7 from "./case-progress/case-progress.component";
|
|
9
|
+
import * as i8 from "./case-edit-generic-errors/case-edit-generic-errors.component";
|
|
10
|
+
import * as i9 from "@angular/common";
|
|
11
|
+
import * as i10 from "@angular/router";
|
|
12
|
+
import * as i11 from "@angular/forms";
|
|
13
|
+
import * as i12 from "../../commons/case-edit-data/case-edit-data.module";
|
|
14
|
+
import * as i13 from "../../directives/substitutor/label-substitutor.module";
|
|
15
|
+
import * as i14 from "../../directives/conditional-show/conditional-show.module";
|
|
16
|
+
import * as i15 from "../error/errors.module";
|
|
17
|
+
import * as i16 from "@angular/cdk/portal";
|
|
18
|
+
import * as i17 from "../loading-spinner/loading-spinner.module";
|
|
19
|
+
import * as i18 from "../../../components/banners/banners.module";
|
|
20
|
+
import * as i19 from "../palette/palette.module";
|
|
21
|
+
import * as i20 from "rpx-xui-translation";
|
|
22
|
+
import * as i21 from "../error/callback-errors.component";
|
|
26
23
|
export declare class CaseEditorModule {
|
|
27
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseEditorModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CaseEditorModule, [typeof i1.CaseEditConfirmComponent, typeof i2.CaseEditComponent, typeof i3.CaseEditPageComponent, typeof i4.CaseEditFormComponent, typeof i5.CaseEditSubmitComponent, typeof i6.
|
|
25
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CaseEditorModule, [typeof i1.CaseEditConfirmComponent, typeof i2.CaseEditComponent, typeof i3.CaseEditPageComponent, typeof i4.CaseEditFormComponent, typeof i5.CaseEditSubmitComponent, typeof i6.CaseCreateComponent, typeof i7.CaseProgressComponent, typeof i8.CaseEditGenericErrorsComponent], [typeof i9.CommonModule, typeof i10.RouterModule, typeof i11.FormsModule, typeof i11.ReactiveFormsModule, typeof i12.CaseEditDataModule, typeof i13.LabelSubstitutorModule, typeof i14.ConditionalShowModule, typeof i15.ErrorsModule, typeof i16.PortalModule, typeof i17.LoadingSpinnerModule, typeof i18.BannersModule, typeof i19.PaletteModule, typeof i20.RpxTranslationModule], [typeof i1.CaseEditConfirmComponent, typeof i2.CaseEditComponent, typeof i3.CaseEditPageComponent, typeof i4.CaseEditFormComponent, typeof i5.CaseEditSubmitComponent, typeof i6.CaseCreateComponent, typeof i7.CaseProgressComponent, typeof i21.CallbackErrorsComponent]>;
|
|
29
26
|
static ɵinj: i0.ɵɵInjectorDeclaration<CaseEditorModule>;
|
|
30
27
|
}
|
|
31
28
|
//# sourceMappingURL=case-editor.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-editor.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-editor.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"case-editor.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-editor.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAsDA,qBAoEa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAI"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-event-completion-task-cancelled.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.ts"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"case-event-completion-task-cancelled.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAoC,4BAA4B,EAAE,MAAM,uCAAuC,CAAC;;AAEvH,qBAIa,yCAAyC;IAGE,OAAO,CAAC,QAAQ,CAAC,eAAe;IAF/E,MAAM,EAAE,MAAM,CAAC;gBAEiD,eAAe,EAAE,4BAA4B;IAI7G,UAAU,IAAI,IAAI;yCAPd,yCAAyC;2CAAzC,yCAAyC;CAWrD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-event-completion-task-reassigned.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAc,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAE,YAAY,EAAE,MAAM,6CAA6C,CAAC;AAC3E,OAAO,EAAE,qBAAqB,EAAE,MAAM,yDAAyD,CAAC;AAChG,OAAO,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAC1E,OAAO,EAAE,qBAAqB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,EAAE,qBAAqB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,
|
|
1
|
+
{"version":3,"file":"case-event-completion-task-reassigned.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAc,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAE,YAAY,EAAE,MAAM,6CAA6C,CAAC;AAC3E,OAAO,EAAE,qBAAqB,EAAE,MAAM,yDAAyD,CAAC;AAChG,OAAO,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAC1E,OAAO,EAAE,qBAAqB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,EAAE,qBAAqB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,EAAoC,4BAA4B,EAAE,MAAM,uCAAuC,CAAC;;AAEvH,qBAIa,0CAA2C,YAAW,MAAM,EAAE,SAAS;IAQ5B,OAAO,CAAC,QAAQ,CAAC,eAAe;IACpF,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,YAAY;IAbxB,MAAM,EAAE,MAAM,CAAC;IACf,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,MAAM,CAAC;IACzB,YAAY,EAAE,YAAY,CAAC;IAC3B,sBAAsB,EAAE,YAAY,CAAC;IACrC,0BAA0B,EAAE,YAAY,CAAC;gBAEuB,eAAe,EAAE,4BAA4B,EACjG,KAAK,EAAE,cAAc,EACrB,qBAAqB,EAAE,qBAAqB,EAC5C,qBAAqB,EAAE,qBAAqB,EAC5C,qBAAqB,EAAE,qBAAqB,EAC5C,iBAAiB,EAAE,iBAAiB,EACpC,YAAY,EAAE,YAAY;IAGtC,QAAQ,IAAI,IAAI;IAiChB,WAAW,IAAI,IAAI;IAYnB,UAAU,IAAI,IAAI;yCA9Dd,0CAA0C;2CAA1C,0CAA0C;CA0EtD"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CaseFlagStateService {
|
|
4
|
+
formGroup: FormGroup;
|
|
5
|
+
pageLocation: string;
|
|
6
|
+
fieldStateToNavigate: number;
|
|
7
|
+
resetCache(pageLocation: string): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaseFlagStateService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CaseFlagStateService>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=case-flag-state.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-flag-state.service.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/services/case-flag-state.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;;AAE3C,qBACa,oBAAoB;IACxB,SAAS,EAAE,SAAS,CAAqB;IACzC,YAAY,EAAE,MAAM,CAAC;IACrB,oBAAoB,EAAE,MAAM,CAAC;IAE7B,UAAU,CAAC,YAAY,EAAE,MAAM,GAAG,IAAI;yCALlC,oBAAoB;6CAApB,oBAAoB;CAUhC"}
|
|
@@ -36,6 +36,7 @@ export declare class CasesService {
|
|
|
36
36
|
getCaseViewV2(caseId: string): Observable<CaseView>;
|
|
37
37
|
private pipeErrorProcessor;
|
|
38
38
|
private finalizeGetCaseViewWith;
|
|
39
|
+
syncWait(seconds: any): void;
|
|
39
40
|
getEventTrigger(caseTypeId: string, eventTriggerId: string, caseId?: string, ignoreWarning?: string): Observable<CaseEventTrigger>;
|
|
40
41
|
createEvent(caseDetails: CaseView, eventData: CaseEventData): Observable<{}>;
|
|
41
42
|
validateCase(ctid: string, eventData: CaseEventData, pageId: string): Observable<object>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cases.service.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/services/cases.service.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"cases.service.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/services/cases.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAe,MAAM,sBAAsB,CAAC;AAG/D,OAAO,EAAE,UAAU,EAAc,MAAM,MAAM,CAAC;AAE9C,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D,OAAO,EACL,aAAa,EACb,gBAAgB,EAChB,iBAAiB,EACjB,QAAQ,EACR,uBAAuB,EACvB,sBAAsB,EAEF,qBAAqB,EAC1C,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAe,gBAAgB,EAAE,WAAW,EAAE,cAAc,EAAE,YAAY,EAAE,SAAS,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAC/I,OAAO,EAAE,mBAAmB,EAAE,MAAM,sDAAsD,CAAC;AAG3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,0CAA0C,CAAC;;AAE5F,qBACa,YAAY;IA2CrB,OAAO,CAAC,IAAI;IACZ,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,gCAAgC;IACxC,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,SAAS;IAhD5B,gBAAuB,sBAAsB,0EAA0E;IACvH,gBAAuB,+BAA+B,iGAC0C;IAChG,gBAAuB,gCAAgC,kGAC0C;IACjG,gBAAuB,gCAAgC,kGAC0C;IAIjG,gBAAuB,2BAA2B,0FACuC;IAEzF,gBAAuB,+BAA+B,8FACuC;IAC7F,gBAAuB,yBAAyB,wFACuC;IACvF,gBAAuB,wBAAwB,uFACuC;IAEtF,gBAAuB,gBAAgB,sBAAsB;IAEtD,GAAG,mBA8ByB,MAAM,cAC3B,MAAM,UACV,MAAM,KAAG,WAAW,QAAQ,CAAC,CAhCT;WAEhB,uCAAuC,CAAC,UAAU,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,kBAAkB,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,GAClI,UAAU,CAAC,sBAAsB,CAAC;WAOxB,qCAAqC,CAAC,UAAU,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,kBAAkB,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,GAChI,UAAU,CAAC,sBAAsB,CAAC;gBAQ5B,IAAI,EAAE,WAAW,EACjB,SAAS,EAAE,iBAAiB,EAC5B,YAAY,EAAE,YAAY,EAC1B,YAAY,EAAE,gBAAgB,EAC9B,gCAAgC,EAAE,gCAAgC,EAClE,cAAc,EAAE,cAAc,EACrB,qBAAqB,EAAE,qBAAqB,EAC5C,SAAS,EAAE,SAAS;IAIhC,WAAW,CAAC,cAAc,EAAE,MAAM,EACvC,UAAU,EAAE,MAAM,EAClB,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,CAAC;IAehC,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,CAAC;IA2B1D,OAAO,CAAC,kBAAkB;IAU1B,OAAO,CAAC,uBAAuB;IAMxB,QAAQ,CAAC,OAAO,KAAA;IAKhB,eAAe,CAAC,UAAU,EAAE,MAAM,EACvC,cAAc,EAAE,MAAM,EACtB,MAAM,CAAC,EAAE,MAAM,EACf,aAAa,CAAC,EAAE,MAAM,GAAG,UAAU,CAAC,gBAAgB,CAAC;IAgChD,WAAW,CAAC,WAAW,EAAE,QAAQ,EAAE,SAAS,EAAE,aAAa,GAAG,UAAU,CAAC,EAAE,CAAC;IAmB5E,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;IAmBxF,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,GAAG,UAAU,CAAC,MAAM,CAAC;IAuBtE,iBAAiB,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,iBAAiB,EAAE,CAAC;IAmBzE,OAAO,CAAC,oBAAoB;IAuB5B,OAAO,CAAC,sBAAsB;IAe9B,OAAO,CAAC,gBAAgB;IASjB,2BAA2B,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;IAIhE,6BAA6B,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,uBAAuB,GAAG,UAAU,CAAC,sBAAsB,CAAC;IAgCnH,2BAA2B,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,qBAAqB,GAAG,UAAU,CAAC,sBAAsB,CAAC;IAoD3G,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,mBAAmB,CAAC;yCAjX3D,YAAY;6CAAZ,YAAY;CAuXxB"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { AbstractAppConfig } from '../../../../app.config';
|
|
3
3
|
import { TaskSearchParameter } from '../../../domain';
|
|
4
|
-
import {
|
|
4
|
+
import { TaskResponse } from '../../../domain/work-allocation/task-response.model';
|
|
5
5
|
import { TaskPayload } from '../../../domain/work-allocation/TaskPayload';
|
|
6
6
|
import { AlertService, HttpErrorService, HttpService, SessionStorageService } from '../../../services';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
@@ -66,7 +66,7 @@ export declare class WorkAllocationService {
|
|
|
66
66
|
/**
|
|
67
67
|
* Call the API to get a task
|
|
68
68
|
*/
|
|
69
|
-
getTask(taskId: string): Observable<
|
|
69
|
+
getTask(taskId: string): Observable<TaskResponse>;
|
|
70
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkAllocationService, never>;
|
|
71
71
|
static ɵprov: i0.ɵɵInjectableDeclaration<WorkAllocationService>;
|
|
72
72
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"work-allocation.service.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/services/work-allocation.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAkB,MAAM,MAAM,CAAC;AAElD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAmB,MAAM,iBAAiB,CAAC;AAEvE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"work-allocation.service.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-editor/services/work-allocation.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAkB,MAAM,MAAM,CAAC;AAElD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAmB,MAAM,iBAAiB,CAAC;AAEvE,OAAO,EAAE,YAAY,EAAE,MAAM,qDAAqD,CAAC;AACnF,OAAO,EAAE,WAAW,EAAE,MAAM,6CAA6C,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;;AAEvG,eAAO,MAAM,oBAAoB,8BAA8B,CAAC;AAEhE,qBACa,qBAAqB;IAO9B,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IAVxC,OAAc,cAAc,SAA+B;IAC3D,OAAc,aAAa,SAA8B;IAEzD,OAAO,CAAC,QAAQ,CAAkB;gBAGf,IAAI,EAAE,WAAW,EACjB,SAAS,EAAE,iBAAiB,EAC5B,YAAY,EAAE,gBAAgB,EAC9B,YAAY,EAAE,YAAY,EAC1B,qBAAqB,EAAE,qBAAqB;IAK/D;;;OAGG;IACI,WAAW,CAAC,aAAa,EAAE,mBAAmB,GAAG,UAAU,CAAC,MAAM,CAAC;IAoB1E,OAAO,CAAC,WAAW;IAmBnB;;;;OAIG;IACI,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;IAelE;;;OAGG;IACI,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;IAmBpD;;;OAGG;IACI,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;IAuB7D;;;OAGG;IACI,yBAAyB,CAAC,QAAQ,EAAE,GAAG,GAAG,IAAI;IASrD;;;OAGG;IACI,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,OAAO;IAOjD;;;;;;;;;OASG;IACI,uBAAuB,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC;IA+BzH;;OAEG;IACI,0BAA0B,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,UAAU,CAAC,WAAW,CAAC;IAWpI;;OAEG;IACI,OAAO,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,YAAY,CAAC;yCAnN5C,qBAAqB;6CAArB,qBAAqB;CAyNjC"}
|
package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { ActivatedRoute, Router } from '@angular/router';
|
|
|
3
3
|
import { Observable, Subscription } from 'rxjs';
|
|
4
4
|
import { Activity, CaseEventData, CaseEventTrigger, CaseView, DisplayMode } from '../../../domain';
|
|
5
5
|
import { CaseReferencePipe } from '../../../pipes';
|
|
6
|
-
import { ActivityPollingService, AlertService
|
|
6
|
+
import { ActivityPollingService, AlertService } from '../../../services';
|
|
7
7
|
import { CaseNotifier, CasesService } from '../../case-editor';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class CaseEventTriggerComponent implements OnInit, OnDestroy {
|
|
@@ -15,16 +15,13 @@ export declare class CaseEventTriggerComponent implements OnInit, OnDestroy {
|
|
|
15
15
|
private readonly route;
|
|
16
16
|
private readonly caseReferencePipe;
|
|
17
17
|
private readonly activityPollingService;
|
|
18
|
-
private readonly sessionStorageService;
|
|
19
|
-
static readonly EVENT_COMPLETION_MESSAGE = "Case #%CASEREFERENCE% has been updated with event: %NAME%";
|
|
20
|
-
static readonly CALLBACK_FAILED_MESSAGE = " but the callback service cannot be completed";
|
|
21
18
|
BANNER: DisplayMode;
|
|
22
19
|
eventTrigger: CaseEventTrigger;
|
|
23
20
|
caseDetails: CaseView;
|
|
24
21
|
activitySubscription: Subscription;
|
|
25
22
|
caseSubscription: Subscription;
|
|
26
23
|
parentUrl: string;
|
|
27
|
-
constructor(ngZone: NgZone, casesService: CasesService, caseNotifier: CaseNotifier, router: Router, alertService: AlertService, route: ActivatedRoute, caseReferencePipe: CaseReferencePipe, activityPollingService: ActivityPollingService
|
|
24
|
+
constructor(ngZone: NgZone, casesService: CasesService, caseNotifier: CaseNotifier, router: Router, alertService: AlertService, route: ActivatedRoute, caseReferencePipe: CaseReferencePipe, activityPollingService: ActivityPollingService);
|
|
28
25
|
ngOnInit(): void;
|
|
29
26
|
ngOnDestroy(): void;
|
|
30
27
|
postEditActivity(): Observable<Activity[]>;
|
package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-event-trigger.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,YAAY,EAAM,MAAM,MAAM,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"case-event-trigger.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,YAAY,EAAM,MAAM,MAAM,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,gBAAgB,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACnG,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,sBAAsB,EAAE,YAAY,EAAmC,MAAM,mBAAmB,CAAC;AAC1G,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;;AAE/D,qBAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS;IAS/D,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,sBAAsB;IAflC,MAAM,cAAsB;IAC5B,YAAY,EAAE,gBAAgB,CAAC;IAC/B,WAAW,EAAE,QAAQ,CAAC;IACtB,oBAAoB,EAAE,YAAY,CAAC;IACnC,gBAAgB,EAAE,YAAY,CAAC;IAC/B,SAAS,EAAE,MAAM,CAAC;gBAGN,MAAM,EAAE,MAAM,EACd,YAAY,EAAE,YAAY,EAC1B,YAAY,EAAE,YAAY,EAC1B,MAAM,EAAE,MAAM,EACd,YAAY,EAAE,YAAY,EAC1B,KAAK,EAAE,cAAc,EACrB,iBAAiB,EAAE,iBAAiB,EACpC,sBAAsB,EAAE,sBAAsB;IAI1D,QAAQ,IAAI,IAAI;IAqBhB,WAAW,IAAI,IAAI;IASnB,gBAAgB,IAAI,UAAU,CAAC,QAAQ,EAAE,CAAC;IAI1C,MAAM,IAAI,CAAC,iBAAiB,EAAE,aAAa,KAAK,UAAU,CAAC,MAAM,CAAC;IAKlE,QAAQ,IAAI,CAAC,iBAAiB,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,KAAK,UAAU,CAAC,MAAM,CAAC;IAUpF,SAAS,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAuB3B,MAAM,IAAI,OAAO,CAAC,OAAO,CAAC;IAQ1B,YAAY,IAAI,OAAO;yCApGnB,yBAAyB;2CAAzB,yBAAyB;CAuGrC"}
|
package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { FormGroup } from '@angular/forms';
|
|
|
4
4
|
import { MatLegacyDialog as MatDialog, MatLegacyDialogConfig as MatDialogConfig } from '@angular/material/legacy-dialog';
|
|
5
5
|
import { MatLegacyTabGroup as MatTabGroup } from '@angular/material/legacy-tabs';
|
|
6
6
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
7
|
+
import { RpxTranslationService } from 'rpx-xui-translation';
|
|
7
8
|
import { Observable, Subject, Subscription } from 'rxjs';
|
|
8
9
|
import { NotificationBannerConfig } from '../../../../components/banners/notification-banner';
|
|
9
10
|
import { Activity, CaseField, CaseTab, CaseView, CaseViewTrigger, DisplayMode } from '../../../domain';
|
|
@@ -26,6 +27,7 @@ export declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, O
|
|
|
26
27
|
private readonly location;
|
|
27
28
|
private readonly crf;
|
|
28
29
|
private readonly sessionStorageService;
|
|
30
|
+
private readonly rpxTranslationService;
|
|
29
31
|
static readonly ORIGIN_QUERY_PARAM = "origin";
|
|
30
32
|
static readonly TRIGGER_TEXT_START = "Go";
|
|
31
33
|
static readonly TRIGGER_TEXT_CONTINUE = "Ignore Warning and Go";
|
|
@@ -56,10 +58,12 @@ export declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, O
|
|
|
56
58
|
notificationBannerConfig: NotificationBannerConfig;
|
|
57
59
|
selectedTabIndex: number;
|
|
58
60
|
activeCaseFlags: boolean;
|
|
61
|
+
caseFlagsExternalUser: boolean;
|
|
62
|
+
private readonly caseFlagsReadExternalMode;
|
|
59
63
|
private subs;
|
|
60
64
|
callbackErrorsSubject: Subject<any>;
|
|
61
65
|
tabGroup: MatTabGroup;
|
|
62
|
-
constructor(ngZone: NgZone, route: ActivatedRoute, router: Router, navigationNotifierService: NavigationNotifierService, orderService: OrderService, activityPollingService: ActivityPollingService, dialog: MatDialog, alertService: AlertService, draftService: DraftService, errorNotifierService: ErrorNotifierService, convertHrefToRouterService: ConvertHrefToRouterService, location: Location, crf: ChangeDetectorRef, sessionStorageService: SessionStorageService);
|
|
66
|
+
constructor(ngZone: NgZone, route: ActivatedRoute, router: Router, navigationNotifierService: NavigationNotifierService, orderService: OrderService, activityPollingService: ActivityPollingService, dialog: MatDialog, alertService: AlertService, draftService: DraftService, errorNotifierService: ErrorNotifierService, convertHrefToRouterService: ConvertHrefToRouterService, location: Location, crf: ChangeDetectorRef, sessionStorageService: SessionStorageService, rpxTranslationService: RpxTranslationService);
|
|
63
67
|
ngOnInit(): void;
|
|
64
68
|
ngOnChanges(changes: SimpleChanges): void;
|
|
65
69
|
isPrintEnabled(): boolean;
|
|
@@ -68,13 +72,13 @@ export declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, O
|
|
|
68
72
|
private checkRouteAndSetCaseViewTab;
|
|
69
73
|
postViewActivity(): Observable<Activity[]>;
|
|
70
74
|
clearErrorsAndWarnings(): void;
|
|
71
|
-
applyTrigger(trigger: CaseViewTrigger): void
|
|
75
|
+
applyTrigger(trigger: CaseViewTrigger): Promise<void>;
|
|
72
76
|
hasTabsPresent(): boolean;
|
|
73
77
|
callbackErrorsNotify(callbackErrorsContext: CallbackErrorsContext): void;
|
|
74
78
|
isDraft(): boolean;
|
|
75
79
|
isTriggerButtonDisabled(): boolean;
|
|
76
80
|
organiseTabPosition(): void;
|
|
77
|
-
tabChanged(tabIndexChanged: number): void
|
|
81
|
+
tabChanged(tabIndexChanged: number): Promise<void>;
|
|
78
82
|
onLinkClicked(triggerOutputEventText: string): void;
|
|
79
83
|
hasActiveCaseFlags(): boolean;
|
|
80
84
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-full-access-view.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EACL,iBAAiB,EAAoB,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,EACzE,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,qBAAqB,IAAI,eAAe,
|
|
1
|
+
{"version":3,"file":"case-full-access-view.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -26,14 +26,14 @@ import * as i24 from "../case-history/case-history.module";
|
|
|
26
26
|
import * as i25 from "@angular/material/legacy-tabs";
|
|
27
27
|
import * as i26 from "@angular/forms";
|
|
28
28
|
import * as i27 from "../../../components/banners/alert/alert.module";
|
|
29
|
-
import * as i28 from "
|
|
30
|
-
import * as i29 from "
|
|
31
|
-
import * as i30 from "
|
|
29
|
+
import * as i28 from "../../directives/substitutor/label-substitutor.module";
|
|
30
|
+
import * as i29 from "rpx-xui-translation";
|
|
31
|
+
import * as i30 from "../../../components/banners/banners.module";
|
|
32
32
|
import * as i31 from "../loading-spinner/loading-spinner.module";
|
|
33
33
|
import * as i32 from "../error-message/error-message.module";
|
|
34
34
|
export declare class CaseViewerModule {
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseViewerModule, never>;
|
|
36
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CaseViewerModule, [typeof i1.CaseEventTriggerComponent, typeof i2.CasePrinterComponent, typeof i3.CaseViewerComponent, typeof i4.CaseFullAccessViewComponent, typeof i5.CaseViewComponent, typeof i6.CaseBasicAccessViewComponent, typeof i7.PrintUrlPipe, typeof i8.CaseChallengedAccessRequestComponent, typeof i9.CaseSpecificAccessRequestComponent, typeof i10.CaseReviewSpecificAccessRequestComponent, typeof i11.CaseChallengedAccessSuccessComponent, typeof i12.CaseSpecificAccessSuccessComponent, typeof i13.CaseReviewSpecificAccessRejectComponent], [typeof i14.CommonModule, typeof i15.RouterModule, typeof i16.ErrorsModule, typeof i17.ActivityModule, typeof i18.CaseHeaderModule, typeof i19.EventStartModule, typeof i20.EventTriggerModule, typeof i21.PaletteModule, typeof i22.CaseEditorModule, typeof i23.ConditionalShowModule, typeof i24.CaseHistoryModule, typeof i25.MatLegacyTabsModule, typeof i26.ReactiveFormsModule, typeof i27.AlertModule, typeof i28.
|
|
36
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CaseViewerModule, [typeof i1.CaseEventTriggerComponent, typeof i2.CasePrinterComponent, typeof i3.CaseViewerComponent, typeof i4.CaseFullAccessViewComponent, typeof i5.CaseViewComponent, typeof i6.CaseBasicAccessViewComponent, typeof i7.PrintUrlPipe, typeof i8.CaseChallengedAccessRequestComponent, typeof i9.CaseSpecificAccessRequestComponent, typeof i10.CaseReviewSpecificAccessRequestComponent, typeof i11.CaseChallengedAccessSuccessComponent, typeof i12.CaseSpecificAccessSuccessComponent, typeof i13.CaseReviewSpecificAccessRejectComponent], [typeof i14.CommonModule, typeof i15.RouterModule, typeof i16.ErrorsModule, typeof i17.ActivityModule, typeof i18.CaseHeaderModule, typeof i19.EventStartModule, typeof i20.EventTriggerModule, typeof i21.PaletteModule, typeof i22.CaseEditorModule, typeof i23.ConditionalShowModule, typeof i24.CaseHistoryModule, typeof i25.MatLegacyTabsModule, typeof i26.ReactiveFormsModule, typeof i27.AlertModule, typeof i28.LabelSubstitutorModule, typeof i29.RpxTranslationModule, typeof i30.BannersModule, typeof i28.LabelSubstitutorModule, typeof i31.LoadingSpinnerModule, typeof i32.EventMessageModule], [typeof i3.CaseViewerComponent, typeof i5.CaseViewComponent]>;
|
|
37
37
|
static ɵinj: i0.ɵɵInjectorDeclaration<CaseViewerModule>;
|
|
38
38
|
}
|
|
39
39
|
//# sourceMappingURL=case-viewer.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-viewer.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/case-viewer.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2CA,
|
|
1
|
+
{"version":3,"file":"case-viewer.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/case-viewer.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2CA,qBAyDa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAC5B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"field-read.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/base-field/field-read.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,wBAAwB,EAAmB,MAAM,EAAa,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAC1H,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"field-read.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/base-field/field-read.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,wBAAwB,EAAmB,MAAM,EAAa,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAC1H,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAG3C,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;;AAI7E,qBAIa,kBAAmB,SAAQ,0BAA2B,YAAW,MAAM;IAgBtE,OAAO,CAAC,QAAQ,CAAC,QAAQ;IAA4B,OAAO,CAAC,QAAQ,CAAC,cAAc;IAdzF,SAAS,UAAS;IAGlB,SAAS,EAAE,SAAS,CAAqB;IAGzC,UAAU,EAAE,SAAS,EAAE,CAAM;IAG7B,2BAA2B,CAAC,EAAE,OAAO,CAAC;IAGtC,cAAc,EAAE,gBAAgB,CAAC;gBAEX,QAAQ,EAAE,wBAAwB,EAAmB,cAAc,EAAE,cAAc;IAIzG,QAAQ,IAAI,IAAI;IAmCvB,OAAO,CAAC,oBAAoB;yCAvDjB,kBAAkB;2CAAlB,kBAAkB;CA0D9B"}
|
package/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.d.ts
CHANGED
|
@@ -7,19 +7,23 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class AddCommentsComponent implements OnInit {
|
|
8
8
|
formGroup: FormGroup;
|
|
9
9
|
optional: boolean;
|
|
10
|
+
isDisplayContextParameterExternal: boolean;
|
|
11
|
+
isDisplayContextParameter2Point1Enabled: boolean;
|
|
10
12
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
11
13
|
addCommentsTitle: CaseFlagWizardStepTitle;
|
|
12
14
|
errorMessages: ErrorMessage[];
|
|
13
15
|
flagCommentsNotEnteredErrorMessage: AddCommentsErrorMessage;
|
|
14
16
|
flagCommentsCharLimitErrorMessage: AddCommentsErrorMessage;
|
|
15
17
|
addCommentsHint: AddCommentsStep;
|
|
16
|
-
|
|
18
|
+
addCommentsStepEnum: typeof AddCommentsStep;
|
|
17
19
|
readonly flagCommentsControlName = "flagComments";
|
|
18
20
|
private readonly commentsMaxCharLimit;
|
|
21
|
+
private readonly otherFlagTypeCode;
|
|
22
|
+
get otherInternalFlagTypeSelected(): boolean;
|
|
19
23
|
ngOnInit(): void;
|
|
20
24
|
onNext(): void;
|
|
21
25
|
private validateTextEntry;
|
|
22
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddCommentsComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddCommentsComponent, "ccd-add-comments", never, { "formGroup": "formGroup"; "optional": "optional"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never, false, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddCommentsComponent, "ccd-add-comments", never, { "formGroup": "formGroup"; "optional": "optional"; "isDisplayContextParameterExternal": "isDisplayContextParameterExternal"; "isDisplayContextParameter2Point1Enabled": "isDisplayContextParameter2Point1Enabled"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never, false, never>;
|
|
24
28
|
}
|
|
25
29
|
//# sourceMappingURL=add-comments.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-comments.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,uBAAuB,EAAE,eAAe,
|
|
1
|
+
{"version":3,"file":"add-comments.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAA0C,uBAAuB,EAAE,MAAM,aAAa,CAAC;;AAExI,qBAIa,oBAAqB,YAAW,MAAM;IACjC,SAAS,EAAE,SAAS,CAAC;IACrB,QAAQ,UAAS;IACjB,iCAAiC,UAAS;IAC1C,uCAAuC,UAAS;IAE/C,oBAAoB,EAAE,YAAY,CAAC,aAAa,CAAC,CAAqC;IAEhG,gBAAgB,EAAE,uBAAuB,CAAC;IAC1C,aAAa,EAAE,YAAY,EAAE,CAAM;IACnC,kCAAkC,EAAE,uBAAuB,CAAQ;IACnE,iCAAiC,EAAE,uBAAuB,CAAQ;IAClE,eAAe,EAAE,eAAe,CAAC;IACjC,mBAAmB,yBAAmB;IAC7C,SAAgB,uBAAuB,kBAAkB;IACzD,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAO;IAE5C,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAY;IAE9C,IAAW,6BAA6B,IAAI,OAAO,CAGlD;IAEM,QAAQ,IAAI,IAAI;IAWhB,MAAM,IAAI,IAAI;IAOrB,OAAO,CAAC,iBAAiB;yCA1Cd,oBAAoB;2CAApB,oBAAoB;CAkEhC"}
|
|
@@ -1,20 +1,37 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { RpxTranslationService } from 'rpx-xui-translation';
|
|
2
3
|
import { FlagDetailDisplay } from '../../domain';
|
|
3
|
-
import { CaseFlagSummaryListDisplayMode } from '../../enums';
|
|
4
|
+
import { CaseFlagCheckYourAnswersPageStep, CaseFlagFieldState, CaseFlagSummaryListDisplayMode } from '../../enums';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class CaseFlagSummaryListComponent implements OnInit {
|
|
7
|
+
private readonly rpxTranslationService;
|
|
6
8
|
flagForSummaryDisplay: FlagDetailDisplay;
|
|
7
|
-
|
|
9
|
+
displayContextParameter: string;
|
|
10
|
+
changeButtonEmitter: EventEmitter<number>;
|
|
8
11
|
flagDescription: string;
|
|
9
12
|
flagComments: string;
|
|
10
13
|
flagStatus: string;
|
|
11
|
-
|
|
14
|
+
flagDescriptionWelsh: string;
|
|
15
|
+
flagCommentsWelsh: string;
|
|
16
|
+
otherDescription: string;
|
|
17
|
+
otherDescriptionWelsh: string;
|
|
18
|
+
flagUpdateComments: string;
|
|
19
|
+
summaryListDisplayMode: CaseFlagSummaryListDisplayMode;
|
|
12
20
|
addUpdateFlagHeaderText: string;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
21
|
+
caseFlagFieldState: typeof CaseFlagFieldState;
|
|
22
|
+
displayMode: typeof CaseFlagSummaryListDisplayMode;
|
|
23
|
+
flagTypeHeaderText: string;
|
|
24
|
+
caseFlagCheckYourAnswersPageStep: typeof CaseFlagCheckYourAnswersPageStep;
|
|
25
|
+
is2Point1Enabled: boolean;
|
|
26
|
+
externalUserUpdate: boolean;
|
|
27
|
+
constructor(rpxTranslationService: RpxTranslationService);
|
|
16
28
|
ngOnInit(): void;
|
|
29
|
+
private getFlagDescription;
|
|
30
|
+
private getAddUpdateFlagHeaderText;
|
|
31
|
+
private getFlagTypeHeaderText;
|
|
32
|
+
private getSummaryListDisplayMode;
|
|
33
|
+
private getDisplayContextParameter2Point1Enabled;
|
|
17
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseFlagSummaryListComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFlagSummaryListComponent, "ccd-case-flag-summary-list", never, { "flagForSummaryDisplay": "flagForSummaryDisplay"; "
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFlagSummaryListComponent, "ccd-case-flag-summary-list", never, { "flagForSummaryDisplay": "flagForSummaryDisplay"; "displayContextParameter": "displayContextParameter"; }, { "changeButtonEmitter": "changeButtonEmitter"; }, never, never, false, never>;
|
|
19
36
|
}
|
|
20
37
|
//# sourceMappingURL=case-flag-summary-list.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-flag-summary-list.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"case-flag-summary-list.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAc,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,EACL,gCAAgC,EAEhC,kBAAkB,EAClB,8BAA8B,EAC/B,MAAM,aAAa,CAAC;;AAErB,qBAIa,4BAA6B,YAAW,MAAM;IAsB7C,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IArBlC,qBAAqB,EAAE,iBAAiB,CAAC;IACzC,uBAAuB,EAAE,MAAM,CAAC;IAC/B,mBAAmB,uBAA8B;IAE3D,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,MAAM,CAAC;IACzB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,sBAAsB,EAAE,8BAA8B,CAAC;IACvD,uBAAuB,EAAE,MAAM,CAAC;IAChC,kBAAkB,4BAAsB;IACxC,WAAW,wCAAkC;IAC7C,kBAAkB,EAAE,MAAM,CAAC;IAC3B,gCAAgC,0CAAoC;IACpE,gBAAgB,UAAS;IACzB,kBAAkB,UAAS;gBAEL,qBAAqB,EAAE,qBAAqB;IAElE,QAAQ,IAAI,IAAI;IAmBvB,OAAO,CAAC,kBAAkB;IAgB1B,OAAO,CAAC,0BAA0B;IAiBlC,OAAO,CAAC,qBAAqB;IAe7B,OAAO,CAAC,yBAAyB;IASjC,OAAO,CAAC,wCAAwC;yCApGrC,4BAA4B;2CAA5B,4BAA4B;CAwGxC"}
|
|
@@ -5,8 +5,9 @@ export declare class CaseFlagTableComponent {
|
|
|
5
5
|
tableCaption: string;
|
|
6
6
|
flagData: FlagsWithFormGroupPath;
|
|
7
7
|
firstColumnHeader: string;
|
|
8
|
+
caseFlagsExternalUser: boolean;
|
|
8
9
|
get caseFlagStatus(): typeof CaseFlagStatus;
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseFlagTableComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFlagTableComponent, "ccd-case-flag-table", never, { "tableCaption": "tableCaption"; "flagData": "flagData"; "firstColumnHeader": "firstColumnHeader"; }, {}, never, never, false, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFlagTableComponent, "ccd-case-flag-table", never, { "tableCaption": "tableCaption"; "flagData": "flagData"; "firstColumnHeader": "firstColumnHeader"; "caseFlagsExternalUser": "caseFlagsExternalUser"; }, {}, never, never, false, never>;
|
|
11
12
|
}
|
|
12
13
|
//# sourceMappingURL=case-flag-table.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-flag-table.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;;AAE7C,qBAKa,sBAAsB;
|
|
1
|
+
{"version":3,"file":"case-flag-table.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;;AAE7C,qBAKa,sBAAsB;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,sBAAsB,CAAC;IACjC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,qBAAqB,UAAS;IAE9C,IAAW,cAAc,IAAI,OAAO,cAAc,CAEjD;yCARU,sBAAsB;2CAAtB,sBAAsB;CASlC"}
|