@hmcts/ccd-case-ui-toolkit 6.19.3-qm-respond-event-completion → 6.19.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js +3011 -7327
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
- package/esm2015/lib/shared/components/case-editor/case-edit/case-edit.component.js +1 -1
- package/esm2015/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.js +1 -1
- package/esm2015/lib/shared/components/case-editor/case-edit-generic-errors/case-edit-generic-errors.component.js +1 -1
- package/esm2015/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.js +2 -2
- package/esm2015/lib/shared/components/case-editor/case-editor.module.js +28 -24
- package/esm2015/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.js +3 -2
- package/esm2015/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.js +2 -2
- package/esm2015/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.js +2 -2
- package/esm2015/lib/shared/components/case-editor/services/cases.service.js +1 -6
- package/esm2015/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.js +10 -5
- package/esm2015/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.js +41 -53
- package/esm2015/lib/shared/components/case-viewer/case-viewer.module.js +2 -5
- package/esm2015/lib/shared/components/create-case-filters/create-case-filters.component.js +13 -8
- package/esm2015/lib/shared/components/palette/base-field/field-read.component.js +1 -1
- package/esm2015/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.js +30 -59
- package/esm2015/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.js +42 -244
- package/esm2015/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.js +73 -144
- package/esm2015/lib/shared/components/palette/case-flag/components/index.js +1 -4
- package/esm2015/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.js +73 -38
- package/esm2015/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.js +101 -133
- package/esm2015/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.js +7 -15
- package/esm2015/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.js +113 -186
- package/esm2015/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.js +97 -308
- package/esm2015/lib/shared/components/palette/case-flag/domain/case-flag-state.model.js +1 -1
- package/esm2015/lib/shared/components/palette/case-flag/domain/case-flag.model.js +1 -1
- package/esm2015/lib/shared/components/palette/case-flag/domain/language.model.js +1 -1
- package/esm2015/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.js +1 -2
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.js +2 -3
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.js +3 -8
- package/esm2015/lib/shared/components/palette/case-flag/enums/index.js +2 -8
- package/esm2015/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.js +2 -3
- package/esm2015/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.js +1 -2
- package/esm2015/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.js +1 -3
- package/esm2015/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.js +2 -4
- package/esm2015/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.js +4 -8
- package/esm2015/lib/shared/components/palette/case-flag/index.js +1 -2
- package/esm2015/lib/shared/components/palette/case-flag/read-case-flag-field.component.js +50 -121
- package/esm2015/lib/shared/components/palette/case-flag/write-case-flag-field.component.js +130 -234
- package/esm2015/lib/shared/components/palette/collection/write-collection-field.component.js +33 -31
- package/esm2015/lib/shared/components/palette/document/write-document-field.component.js +43 -20
- package/esm2015/lib/shared/components/palette/index.js +1 -3
- package/esm2015/lib/shared/components/palette/markdown/index.js +1 -2
- package/esm2015/lib/shared/components/palette/palette.module.js +52 -150
- package/esm2015/lib/shared/components/palette/palette.service.js +2 -4
- package/esm2015/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.js +1 -1
- package/esm2015/lib/shared/components/palette/yes-no/read-yes-no-field.component.js +5 -7
- package/esm2015/lib/shared/components/palette/yes-no/write-yes-no-field.component.js +4 -5
- package/esm2015/lib/shared/domain/case-flag/flag-type.model.js +2 -17
- package/esm2015/lib/shared/domain/case-view/case-view-trigger.model.js +2 -1
- package/esm2015/lib/shared/domain/definition/display-context-enum.model.js +1 -3
- package/esm2015/lib/shared/domain/definition/jurisdiction.model.js +1 -1
- package/esm2015/lib/shared/fixture/shared.test.fixture.js +1 -2
- package/esm2015/lib/shared/pipes/index.js +2 -3
- package/esm2015/lib/shared/pipes/pipes.module.js +5 -9
- package/esm2015/lib/shared/services/case-flag/case-flag-refdata.service.js +3 -9
- package/esm2015/lib/shared/services/jurisdiction/jurisdiction.service.js +6 -2
- package/esm2015/lib/shared/services/request/request.options.builder.js +1 -7
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +2198 -6026
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/shared/components/case-editor/case-editor.module.d.ts +20 -17
- 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/cases.service.d.ts +0 -1
- package/lib/shared/components/case-editor/services/cases.service.d.ts.map +1 -1
- 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 +1 -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/create-case-filters/create-case-filters.component.d.ts +3 -1
- package/lib/shared/components/create-case-filters/create-case-filters.component.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 +3 -3
- 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 +5 -20
- 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 +1 -2
- 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/index.d.ts +0 -3
- 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 +8 -4
- 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.component.d.ts +8 -10
- 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 +1 -2
- 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 +8 -12
- 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.component.d.ts +9 -19
- 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 +10 -1
- 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 +0 -6
- 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 +0 -1
- 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-step.enum.d.ts +1 -2
- 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-status.enum.d.ts +1 -2
- 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 +3 -8
- 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/index.d.ts +1 -7
- 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 +1 -2
- 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 +0 -1
- 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-error-message.enum.d.ts +1 -3
- 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 +2 -4
- 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 +3 -7
- 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 +0 -1
- package/lib/shared/components/palette/case-flag/index.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/read-case-flag-field.component.d.ts +8 -11
- 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 +24 -23
- 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 +2 -3
- package/lib/shared/components/palette/collection/write-collection-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/document/write-document-field.component.d.ts +8 -4
- package/lib/shared/components/palette/document/write-document-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/index.d.ts +0 -2
- package/lib/shared/components/palette/index.d.ts.map +1 -1
- package/lib/shared/components/palette/markdown/index.d.ts +0 -1
- package/lib/shared/components/palette/markdown/index.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.module.d.ts +118 -140
- 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/domain/case-flag/flag-type.model.d.ts +1 -6
- package/lib/shared/domain/case-flag/flag-type.model.d.ts.map +1 -1
- package/lib/shared/domain/case-view/case-view-trigger.model.d.ts +1 -0
- 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 +1 -3
- package/lib/shared/domain/definition/display-context-enum.model.d.ts.map +1 -1
- package/lib/shared/domain/definition/jurisdiction.model.d.ts +1 -0
- package/lib/shared/domain/definition/jurisdiction.model.d.ts.map +1 -1
- package/lib/shared/fixture/shared.test.fixture.d.ts.map +1 -1
- package/lib/shared/pipes/index.d.ts +1 -2
- package/lib/shared/pipes/index.d.ts.map +1 -1
- package/lib/shared/pipes/pipes.module.d.ts +2 -3
- package/lib/shared/pipes/pipes.module.d.ts.map +1 -1
- package/lib/shared/services/case-flag/case-flag-refdata.service.d.ts +2 -3
- package/lib/shared/services/case-flag/case-flag-refdata.service.d.ts.map +1 -1
- package/lib/shared/services/jurisdiction/jurisdiction.service.d.ts +3 -2
- 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/esm2015/lib/shared/components/case-editor/services/case-flag-state.service.js +0 -19
- package/esm2015/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.js +0 -181
- package/esm2015/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.js +0 -6
- package/esm2015/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.js +0 -292
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.js +0 -9
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.js +0 -12
- package/esm2015/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.js +0 -6
- package/esm2015/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.js +0 -6
- package/esm2015/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.js +0 -6
- package/esm2015/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.js +0 -6
- package/esm2015/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.js +0 -41
- package/esm2015/lib/shared/components/palette/case-flag/pipes/index.js +0 -5
- package/esm2015/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.js +0 -41
- package/esm2015/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.js +0 -109
- package/esm2015/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.js +0 -77
- package/esm2015/lib/shared/components/palette/markdown/markdown-component.module.js +0 -42
- package/esm2015/lib/shared/components/palette/query-management/__mocks__/index.js +0 -210
- package/esm2015/lib/shared/components/palette/query-management/components/index.js +0 -13
- package/esm2015/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.js +0 -45
- package/esm2015/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.js +0 -111
- package/esm2015/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.js +0 -69
- package/esm2015/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.js +0 -64
- package/esm2015/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.js +0 -316
- package/esm2015/lib/shared/components/palette/query-management/components/query-details/query-details.component.js +0 -344
- package/esm2015/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.js +0 -25
- package/esm2015/lib/shared/components/palette/query-management/components/query-list/query-list.component.js +0 -181
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.js +0 -78
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.js +0 -125
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.js +0 -239
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.js +0 -120
- package/esm2015/lib/shared/components/palette/query-management/enums/index.js +0 -6
- package/esm2015/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.js +0 -5
- package/esm2015/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.js +0 -6
- package/esm2015/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.js +0 -10
- package/esm2015/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.js +0 -6
- package/esm2015/lib/shared/components/palette/query-management/index.js +0 -7
- package/esm2015/lib/shared/components/palette/query-management/models/case-queries-collection.model.js +0 -2
- package/esm2015/lib/shared/components/palette/query-management/models/index.js +0 -8
- package/esm2015/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.js +0 -2
- package/esm2015/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.js +0 -2
- package/esm2015/lib/shared/components/palette/query-management/models/query-create-context.enum.js +0 -9
- package/esm2015/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.js +0 -2
- package/esm2015/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.js +0 -18
- package/esm2015/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.js +0 -41
- package/esm2015/lib/shared/components/palette/query-management/read-query-management-field.component.js +0 -136
- package/esm2015/lib/shared/components/palette/query-management/utils/query-management.utils.js +0 -22
- package/esm2015/lib/shared/domain/case-view/case-view-event-ids.enum.js +0 -6
- package/esm2015/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.js +0 -16
- package/esm2015/lib/shared/pipes/generic/index.js +0 -2
- package/lib/shared/components/case-editor/services/case-flag-state.service.d.ts +0 -11
- package/lib/shared/components/case-editor/services/case-flag-state.service.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.d.ts +0 -28
- package/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.d.ts +0 -5
- package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.d.ts +0 -27
- package/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.d.ts +0 -8
- package/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.d.ts +0 -11
- package/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.d.ts +0 -5
- package/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.d.ts +0 -5
- package/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.d.ts +0 -5
- package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.d.ts +0 -5
- package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.d.ts +0 -19
- package/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/pipes/index.d.ts +0 -5
- package/lib/shared/components/palette/case-flag/pipes/index.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.d.ts +0 -18
- package/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.d.ts +0 -25
- package/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.d.ts.map +0 -1
- package/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.d.ts +0 -21
- package/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.d.ts.map +0 -1
- package/lib/shared/components/palette/markdown/markdown-component.module.d.ts +0 -13
- package/lib/shared/components/palette/markdown/markdown-component.module.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/__mocks__/index.d.ts +0 -11
- package/lib/shared/components/palette/query-management/__mocks__/index.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/index.d.ts +0 -13
- package/lib/shared/components/palette/query-management/components/index.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.d.ts +0 -8
- package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.d.ts +0 -14
- package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.d.ts +0 -11
- package/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.d.ts +0 -10
- package/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.d.ts +0 -30
- package/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/query-details/query-details.component.d.ts +0 -16
- package/lib/shared/components/palette/query-management/components/query-details/query-details.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.d.ts +0 -9
- package/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/query-list/query-list.component.d.ts +0 -18
- package/lib/shared/components/palette/query-management/components/query-list/query-list.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.d.ts +0 -20
- package/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts +0 -20
- package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.d.ts +0 -11
- package/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.d.ts +0 -21
- package/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/enums/index.d.ts +0 -6
- package/lib/shared/components/palette/query-management/enums/index.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.d.ts +0 -4
- package/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.d.ts +0 -5
- package/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.d.ts +0 -9
- package/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.d.ts +0 -5
- package/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/index.d.ts +0 -7
- package/lib/shared/components/palette/query-management/index.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/models/case-queries-collection.model.d.ts +0 -27
- package/lib/shared/components/palette/query-management/models/case-queries-collection.model.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/models/index.d.ts +0 -8
- package/lib/shared/components/palette/query-management/models/index.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.d.ts +0 -5
- package/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.d.ts +0 -6
- package/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/models/query-create-context.enum.d.ts +0 -8
- package/lib/shared/components/palette/query-management/models/query-create-context.enum.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.d.ts +0 -7
- package/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.d.ts +0 -10
- package/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.d.ts +0 -22
- package/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/read-query-management-field.component.d.ts +0 -18
- package/lib/shared/components/palette/query-management/read-query-management-field.component.d.ts.map +0 -1
- package/lib/shared/components/palette/query-management/utils/query-management.utils.d.ts +0 -12
- package/lib/shared/components/palette/query-management/utils/query-management.utils.d.ts.map +0 -1
- package/lib/shared/domain/case-view/case-view-event-ids.enum.d.ts +0 -5
- package/lib/shared/domain/case-view/case-view-event-ids.enum.d.ts.map +0 -1
- package/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.d.ts +0 -8
- package/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.d.ts.map +0 -1
- package/lib/shared/pipes/generic/index.d.ts +0 -2
- package/lib/shared/pipes/generic/index.d.ts.map +0 -1
|
@@ -4,25 +4,28 @@ 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 "
|
|
7
|
+
import * as i6 from "./case-event-completion/case-event-completion.component";
|
|
8
|
+
import * as i7 from "./case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component";
|
|
9
|
+
import * as i8 from "./case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component";
|
|
10
|
+
import * as i9 from "./case-create/case-create.component";
|
|
11
|
+
import * as i10 from "./case-progress/case-progress.component";
|
|
12
|
+
import * as i11 from "./case-edit-generic-errors/case-edit-generic-errors.component";
|
|
13
|
+
import * as i12 from "@angular/common";
|
|
14
|
+
import * as i13 from "@angular/router";
|
|
15
|
+
import * as i14 from "@angular/forms";
|
|
16
|
+
import * as i15 from "../../commons/case-edit-data/case-edit-data.module";
|
|
17
|
+
import * as i16 from "../../directives/substitutor/label-substitutor.module";
|
|
18
|
+
import * as i17 from "../../directives/conditional-show/conditional-show.module";
|
|
19
|
+
import * as i18 from "../error/errors.module";
|
|
20
|
+
import * as i19 from "@angular/cdk/portal";
|
|
21
|
+
import * as i20 from "../loading-spinner/loading-spinner.module";
|
|
22
|
+
import * as i21 from "../../../components/banners/banners.module";
|
|
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";
|
|
23
26
|
export declare class CaseEditorModule {
|
|
24
27
|
static ɵfac: i0.ɵɵFactoryDef<CaseEditorModule, never>;
|
|
25
|
-
static ɵmod: i0.ɵɵNgModuleDefWithMeta<CaseEditorModule, [typeof i1.CaseEditConfirmComponent, typeof i2.CaseEditComponent, typeof i3.CaseEditPageComponent, typeof i4.CaseEditFormComponent, typeof i5.CaseEditSubmitComponent, typeof i6.
|
|
28
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<CaseEditorModule, [typeof i1.CaseEditConfirmComponent, typeof i2.CaseEditComponent, typeof i3.CaseEditPageComponent, typeof i4.CaseEditFormComponent, typeof i5.CaseEditSubmitComponent, typeof i6.CaseEventCompletionComponent, typeof i7.CaseEventCompletionTaskCancelledComponent, typeof i8.CaseEventCompletionTaskReassignedComponent, typeof i9.CaseCreateComponent, typeof i10.CaseProgressComponent, typeof i11.CaseEditGenericErrorsComponent], [typeof i12.CommonModule, typeof i13.RouterModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.CaseEditDataModule, typeof i16.LabelSubstitutorModule, typeof i17.ConditionalShowModule, typeof i18.ErrorsModule, typeof i19.PortalModule, typeof i20.LoadingSpinnerModule, typeof i21.BannersModule, typeof i22.PaletteModule, typeof i23.RpxTranslationModule], [typeof i1.CaseEditConfirmComponent, typeof i2.CaseEditComponent, typeof i3.CaseEditPageComponent, typeof i4.CaseEditFormComponent, typeof i5.CaseEditSubmitComponent, typeof i9.CaseCreateComponent, typeof i10.CaseProgressComponent, typeof i24.CallbackErrorsComponent]>;
|
|
26
29
|
static ɵinj: i0.ɵɵInjectorDef<CaseEditorModule>;
|
|
27
30
|
}
|
|
28
31
|
//# 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":";;;;;;;;;;;;;;;;;;;;;;;;;AAyDA,qBAqEa,gBAAgB;iCAAhB,gBAAgB;0CAAhB,gBAAgB;kCAAhB,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,EAAE,4BAA4B,EAAoC,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;iCAPd,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,EAAE,4BAA4B,EAAoC,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;iCA9Dd,0CAA0C;2CAA1C,0CAA0C;CAsFtD"}
|
|
@@ -36,7 +36,6 @@ export declare class CasesService {
|
|
|
36
36
|
getCaseViewV2(caseId: string): Observable<CaseView>;
|
|
37
37
|
private pipeErrorProcessor;
|
|
38
38
|
private finalizeGetCaseViewWith;
|
|
39
|
-
syncWait(seconds: any): void;
|
|
40
39
|
getEventTrigger(caseTypeId: string, eventTriggerId: string, caseId?: string, ignoreWarning?: string): Observable<CaseEventTrigger>;
|
|
41
40
|
createEvent(caseDetails: CaseView, eventData: CaseEventData): Observable<{}>;
|
|
42
41
|
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":"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,
|
|
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,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;iCA5W3D,YAAY;qCAAZ,YAAY;CAkXxB"}
|
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,EAAM,MAAM,MAAM,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,gBAAgB,EAAa,QAAQ,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9G,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;
|
|
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,EAAM,MAAM,MAAM,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,gBAAgB,EAAa,QAAQ,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9G,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;IAwBpF,SAAS,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAuB3B,MAAM,IAAI,OAAO,CAAC,OAAO,CAAC;IAQ1B,YAAY,IAAI,OAAO;iCAlHnB,yBAAyB;2CAAzB,yBAAyB;CAqHrC"}
|
package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts
CHANGED
|
@@ -57,8 +57,6 @@ export declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, O
|
|
|
57
57
|
notificationBannerConfig: NotificationBannerConfig;
|
|
58
58
|
selectedTabIndex: number;
|
|
59
59
|
activeCaseFlags: boolean;
|
|
60
|
-
caseFlagsExternalUser: boolean;
|
|
61
|
-
private readonly caseFlagsReadExternalMode;
|
|
62
60
|
private subs;
|
|
63
61
|
callbackErrorsSubject: Subject<any>;
|
|
64
62
|
tabGroup: MatTabGroup;
|
|
@@ -71,7 +69,7 @@ export declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, O
|
|
|
71
69
|
private checkRouteAndSetCaseViewTab;
|
|
72
70
|
postViewActivity(): Observable<Activity[]>;
|
|
73
71
|
clearErrorsAndWarnings(): void;
|
|
74
|
-
applyTrigger(trigger: CaseViewTrigger):
|
|
72
|
+
applyTrigger(trigger: CaseViewTrigger): void;
|
|
75
73
|
hasTabsPresent(): boolean;
|
|
76
74
|
callbackErrorsNotify(callbackErrorsContext: CallbackErrorsContext): void;
|
|
77
75
|
isDraft(): boolean;
|
|
@@ -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,SAAS,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAyB,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEhF,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD,OAAO,EACL,wBAAwB,EAGzB,MAAM,oDAAoD,CAAC;AAE5D,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,eAAe,EAAqB,WAAW,EAAS,MAAM,iBAAiB,CAAC;
|
|
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/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 "rpx-xui-translation";
|
|
30
|
+
import * as i29 from "../../../components/banners/banners.module";
|
|
31
|
+
import * as i30 from "../../directives/substitutor/label-substitutor.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.ɵɵFactoryDef<CaseViewerModule, never>;
|
|
36
|
-
static ɵmod: i0.ɵɵNgModuleDefWithMeta<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.MatTabsModule, typeof i26.ReactiveFormsModule, typeof i27.AlertModule, typeof i28.
|
|
36
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<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.MatTabsModule, typeof i26.ReactiveFormsModule, typeof i27.AlertModule, typeof i28.RpxTranslationModule, typeof i29.BannersModule, typeof i30.LabelSubstitutorModule, typeof i31.LoadingSpinnerModule, typeof i32.EventMessageModule], [typeof i3.CaseViewerComponent, typeof i5.CaseViewComponent]>;
|
|
37
37
|
static ɵinj: i0.ɵɵInjectorDef<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,qBAwDa,gBAAgB;iCAAhB,gBAAgB;0CAAhB,gBAAgB;kCAAhB,gBAAgB;CAC5B"}
|
|
@@ -7,11 +7,13 @@ import { DefinitionsService } from '../../services/definitions/definitions.servi
|
|
|
7
7
|
import { OrderService } from '../../services/order/order.service';
|
|
8
8
|
import { SessionStorageService } from '../../services/session/session-storage.service';
|
|
9
9
|
import { CreateCaseFiltersSelection } from './create-case-filters-selection.model';
|
|
10
|
+
import { JurisdictionService } from '../../services';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class CreateCaseFiltersComponent implements OnInit {
|
|
12
13
|
private readonly orderService;
|
|
13
14
|
private readonly definitionsService;
|
|
14
15
|
private readonly sessionStorageService;
|
|
16
|
+
private readonly jurisdictionService;
|
|
15
17
|
isDisabled: boolean;
|
|
16
18
|
startButtonText: string;
|
|
17
19
|
selectionSubmitted: EventEmitter<CreateCaseFiltersSelection>;
|
|
@@ -29,7 +31,7 @@ export declare class CreateCaseFiltersComponent implements OnInit {
|
|
|
29
31
|
filterJurisdictionControl: FormControl;
|
|
30
32
|
filterCaseTypeControl: FormControl;
|
|
31
33
|
filterEventControl: FormControl;
|
|
32
|
-
constructor(orderService: OrderService, definitionsService: DefinitionsService, sessionStorageService: SessionStorageService);
|
|
34
|
+
constructor(orderService: OrderService, definitionsService: DefinitionsService, sessionStorageService: SessionStorageService, jurisdictionService: JurisdictionService);
|
|
33
35
|
ngOnInit(): void;
|
|
34
36
|
onJurisdictionIdChange(): void;
|
|
35
37
|
onCaseTypeIdChange(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-case-filters.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/create-case-filters/create-case-filters.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAExD,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,8CAA8C,CAAC;AAC5E,OAAO,EAAE,YAAY,EAAE,MAAM,4CAA4C,CAAC;AAC1E,OAAO,EAAE,kBAAkB,EAAE,MAAM,gDAAgD,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AACvF,OAAO,EAAE,0BAA0B,EAAE,MAAM,uCAAuC,CAAC;;
|
|
1
|
+
{"version":3,"file":"create-case-filters.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/create-case-filters/create-case-filters.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAExD,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,8CAA8C,CAAC;AAC5E,OAAO,EAAE,YAAY,EAAE,MAAM,4CAA4C,CAAC;AAC1E,OAAO,EAAE,kBAAkB,EAAE,MAAM,gDAAgD,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AACvF,OAAO,EAAE,0BAA0B,EAAE,MAAM,uCAAuC,CAAC;AACnF,OAAO,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;;AAErD,qBAIa,0BAA2B,YAAW,MAAM;IA6BrD,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IA7B/B,UAAU,EAAE,OAAO,CAAC;IAEpB,eAAe,EAAE,MAAM,CAAC;IAExB,kBAAkB,EAAE,YAAY,CAAC,0BAA0B,CAAC,CAAsB;IAElF,gBAAgB,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEzD,SAAS,EAAE,SAAS,CAAqB;IAEzC,QAAQ,EAAE;QACf,YAAY,CAAC,EAAE,YAAY,CAAC;QAC5B,QAAQ,CAAC,EAAE,YAAY,CAAC;QACxB,KAAK,CAAC,EAAE,SAAS,CAAC;QAClB,SAAS,CAAC,EAAE,SAAS,CAAA;KACtB,CAAC;IAEK,aAAa,EAAE,YAAY,EAAE,CAAC;IAC9B,6BAA6B,CAAC,EAAE,YAAY,EAAE,CAAC;IAC/C,sBAAsB,CAAC,EAAE,SAAS,EAAE,CAAC;IAErC,yBAAyB,EAAE,WAAW,CAAC;IACvC,qBAAqB,EAAE,WAAW,CAAC;IACnC,kBAAkB,EAAE,WAAW,CAAC;gBAGpB,YAAY,EAAE,YAAY,EAC1B,kBAAkB,EAAE,kBAAkB,EACtC,qBAAqB,EAAE,qBAAqB,EAC5C,mBAAmB,EAAE,mBAAmB;IAGpD,QAAQ;IAaR,sBAAsB,IAAI,IAAI;IAW9B,kBAAkB,IAAI,IAAI;IAU1B,eAAe,IAAI,IAAI;IASvB,WAAW,IAAI,OAAO;IAQtB,KAAK;IAUL,YAAY,IAAI,IAAI;IASpB,UAAU,IAAI,IAAI;IAQzB,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,2BAA2B;IAInC,OAAO,CAAC,4BAA4B;IAMpC,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,kBAAkB;IAO1B,OAAO,CAAC,cAAc;IAOtB,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,aAAa;IAQrB,OAAO,CAAC,UAAU;IAQlB,OAAO,CAAC,OAAO;iCApLJ,0BAA0B;2CAA1B,0BAA0B;CAuLtC"}
|
|
@@ -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;AAE3C,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;iCAvDjB,kBAAkB;2CAAlB,kBAAkB;CA0D9B"}
|
package/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.d.ts
CHANGED
|
@@ -7,19 +7,19 @@ 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
10
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
12
11
|
addCommentsTitle: CaseFlagWizardStepTitle;
|
|
13
12
|
errorMessages: ErrorMessage[];
|
|
14
13
|
flagCommentsNotEnteredErrorMessage: AddCommentsErrorMessage;
|
|
15
14
|
flagCommentsCharLimitErrorMessage: AddCommentsErrorMessage;
|
|
16
|
-
|
|
15
|
+
addCommentsHint: AddCommentsStep;
|
|
16
|
+
addCommentsCharLimitInfo: AddCommentsStep;
|
|
17
17
|
readonly flagCommentsControlName = "flagComments";
|
|
18
18
|
private readonly commentsMaxCharLimit;
|
|
19
19
|
ngOnInit(): void;
|
|
20
20
|
onNext(): void;
|
|
21
21
|
private validateTextEntry;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDef<AddCommentsComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<AddCommentsComponent, "ccd-add-comments", never, { "formGroup": "formGroup"; "optional": "optional";
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<AddCommentsComponent, "ccd-add-comments", never, { "formGroup": "formGroup"; "optional": "optional"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
24
24
|
}
|
|
25
25
|
//# 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,EAAsB,uBAAuB,EAAE,MAAM,aAAa,CAAC;;AAEpH,qBAIa,oBAAqB,YAAW,MAAM;
|
|
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,EAAsB,uBAAuB,EAAE,MAAM,aAAa,CAAC;;AAEpH,qBAIa,oBAAqB,YAAW,MAAM;IAEjC,SAAS,EAAE,SAAS,CAAC;IACrB,QAAQ,UAAS;IAEhB,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,wBAAwB,EAAE,eAAe,CAAC;IACjD,SAAgB,uBAAuB,kBAAkB;IACzD,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAO;IAErC,QAAQ,IAAI,IAAI;IAOhB,MAAM,IAAI,IAAI;IAOrB,OAAO,CAAC,iBAAiB;iCA9Bd,oBAAoB;2CAApB,oBAAoB;CAoDhC"}
|
|
@@ -1,35 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { RpxTranslationService } from 'rpx-xui-translation';
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
3
2
|
import { FlagDetailDisplay } from '../../domain';
|
|
4
|
-
import {
|
|
3
|
+
import { CaseFlagSummaryListDisplayMode } from '../../enums';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class CaseFlagSummaryListComponent implements OnInit {
|
|
7
|
-
private readonly rpxTranslationService;
|
|
8
6
|
flagForSummaryDisplay: FlagDetailDisplay;
|
|
9
|
-
|
|
10
|
-
changeButtonEmitter: EventEmitter<number>;
|
|
7
|
+
summaryListDisplayMode: CaseFlagSummaryListDisplayMode;
|
|
11
8
|
flagDescription: string;
|
|
12
9
|
flagComments: string;
|
|
13
10
|
flagStatus: string;
|
|
14
|
-
|
|
15
|
-
flagCommentsWelsh: string;
|
|
16
|
-
otherDescription: string;
|
|
17
|
-
otherDescriptionWelsh: string;
|
|
18
|
-
summaryListDisplayMode: CaseFlagSummaryListDisplayMode;
|
|
11
|
+
displayMode: typeof CaseFlagSummaryListDisplayMode;
|
|
19
12
|
addUpdateFlagHeaderText: string;
|
|
20
|
-
caseFlagFieldState: typeof CaseFlagFieldState;
|
|
21
13
|
readonly caseLevelLocation = "Case level";
|
|
22
14
|
private readonly updateFlagHeaderText;
|
|
23
15
|
private readonly addFlagHeaderText;
|
|
24
|
-
displayMode: typeof CaseFlagSummaryListDisplayMode;
|
|
25
|
-
canDisplayStatus: boolean;
|
|
26
|
-
constructor(rpxTranslationService: RpxTranslationService);
|
|
27
16
|
ngOnInit(): void;
|
|
28
|
-
private getFlagDescription;
|
|
29
|
-
private getHeaderText;
|
|
30
|
-
private getSummaryListDisplayMode;
|
|
31
|
-
private getCanDisplayStatus;
|
|
32
17
|
static ɵfac: i0.ɵɵFactoryDef<CaseFlagSummaryListComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFlagSummaryListComponent, "ccd-case-flag-summary-list", never, { "flagForSummaryDisplay": "flagForSummaryDisplay"; "
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFlagSummaryListComponent, "ccd-case-flag-summary-list", never, { "flagForSummaryDisplay": "flagForSummaryDisplay"; "summaryListDisplayMode": "summaryListDisplayMode"; }, {}, never, never>;
|
|
34
19
|
}
|
|
35
20
|
//# 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,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAC;;AAE7D,qBAIa,4BAA6B,YAAW,MAAM;IAEzC,qBAAqB,EAAE,iBAAiB,CAAC;IACzC,sBAAsB,EAAE,8BAA8B,CAAC;IAEhE,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,wCAAkC;IAC7C,uBAAuB,EAAE,MAAM,CAAC;IACvC,SAAgB,iBAAiB,gBAAgB;IACjD,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAqB;IAC1D,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAiB;IAE5C,QAAQ,IAAI,IAAI;iCAdZ,4BAA4B;2CAA5B,4BAA4B;CA0BxC"}
|
|
@@ -5,9 +5,8 @@ export declare class CaseFlagTableComponent {
|
|
|
5
5
|
tableCaption: string;
|
|
6
6
|
flagData: FlagsWithFormGroupPath;
|
|
7
7
|
firstColumnHeader: string;
|
|
8
|
-
caseFlagsExternalUser: boolean;
|
|
9
8
|
get caseFlagStatus(): typeof CaseFlagStatus;
|
|
10
9
|
static ɵfac: i0.ɵɵFactoryDef<CaseFlagTableComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFlagTableComponent, "ccd-case-flag-table", never, { "tableCaption": "tableCaption"; "flagData": "flagData"; "firstColumnHeader": "firstColumnHeader";
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFlagTableComponent, "ccd-case-flag-table", never, { "tableCaption": "tableCaption"; "flagData": "flagData"; "firstColumnHeader": "firstColumnHeader"; }, {}, never, never>;
|
|
12
11
|
}
|
|
13
12
|
//# 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;IAEjB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,sBAAsB,CAAC;IACjC,iBAAiB,EAAE,MAAM,CAAC;IAE1C,IAAW,cAAc,IAAI,OAAO,cAAc,CAEjD;iCARU,sBAAsB;2CAAtB,sBAAsB;CASlC"}
|
|
@@ -6,7 +6,4 @@ export * from './search-language-interpreter/search-language-interpreter.compone
|
|
|
6
6
|
export * from './select-flag-location/select-flag-location.component';
|
|
7
7
|
export * from './select-flag-type/select-flag-type.component';
|
|
8
8
|
export * from './update-flag/update-flag.component';
|
|
9
|
-
export * from './update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component';
|
|
10
|
-
export * from './case-flag-summary-list/case-flag-summary-list.component';
|
|
11
|
-
export * from './confirm-flag-status/confirm-flag-status.component';
|
|
12
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC;AACtD,cAAc,2DAA2D,CAAC;AAC1E,cAAc,6CAA6C,CAAC;AAC5D,cAAc,iDAAiD,CAAC;AAChE,cAAc,qEAAqE,CAAC;AACpF,cAAc,uDAAuD,CAAC;AACtE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,qCAAqC,CAAC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC;AACtD,cAAc,2DAA2D,CAAC;AAC1E,cAAc,6CAA6C,CAAC;AAC5D,cAAc,iDAAiD,CAAC;AAChE,cAAc,qEAAqE,CAAC;AACpF,cAAc,uDAAuD,CAAC;AACtE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,qCAAqC,CAAC"}
|
|
@@ -5,10 +5,10 @@ import { CaseFlagState, FlagDetail, FlagDetailDisplayWithFormGroupPath, Flags, F
|
|
|
5
5
|
import { CaseFlagWizardStepTitle, SelectFlagErrorMessage } from '../../enums';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class ManageCaseFlagsComponent implements OnInit {
|
|
8
|
+
private static readonly CASE_LEVEL_CASE_FLAGS_FIELD_ID;
|
|
8
9
|
formGroup: FormGroup;
|
|
9
10
|
flagsData: FlagsWithFormGroupPath[];
|
|
10
11
|
caseTitle: string;
|
|
11
|
-
displayContextParameter: string;
|
|
12
12
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
13
13
|
manageCaseFlagTitle: CaseFlagWizardStepTitle;
|
|
14
14
|
errorMessages: ErrorMessage[];
|
|
@@ -17,14 +17,18 @@ export declare class ManageCaseFlagsComponent implements OnInit {
|
|
|
17
17
|
flags: Flags;
|
|
18
18
|
noFlagsError: boolean;
|
|
19
19
|
readonly selectedControlName = "selectedManageCaseLocation";
|
|
20
|
-
private readonly excludedFlagStatuses;
|
|
21
20
|
ngOnInit(): void;
|
|
22
21
|
mapFlagDetailForDisplay(flagDetail: FlagDetail, flagsInstance: FlagsWithFormGroupPath): FlagDetailDisplayWithFormGroupPath;
|
|
22
|
+
processLabel(flagDisplay: FlagDetailDisplayWithFormGroupPath): string;
|
|
23
|
+
getPartyName(flagDisplay: FlagDetailDisplayWithFormGroupPath): string;
|
|
24
|
+
getFlagName(flagDetail: FlagDetail): string;
|
|
25
|
+
getFlagDescription(flagDetail: FlagDetail): string;
|
|
26
|
+
getRoleOnCase(flagDisplay: FlagDetailDisplayWithFormGroupPath): string;
|
|
27
|
+
getFlagComments(flagDetail: FlagDetail): string;
|
|
23
28
|
onNext(): void;
|
|
24
|
-
setManageCaseFlagTitle(displayContextParameter: string): CaseFlagWizardStepTitle;
|
|
25
29
|
private validateSelection;
|
|
26
30
|
private onNoFlagsError;
|
|
27
31
|
static ɵfac: i0.ɵɵFactoryDef<ManageCaseFlagsComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<ManageCaseFlagsComponent, "ccd-manage-case-flags", never, { "formGroup": "formGroup"; "flagsData": "flagsData"; "caseTitle": "caseTitle";
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<ManageCaseFlagsComponent, "ccd-manage-case-flags", never, { "formGroup": "formGroup"; "flagsData": "flagsData"; "caseTitle": "caseTitle"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
29
33
|
}
|
|
30
34
|
//# sourceMappingURL=manage-case-flags.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manage-case-flags.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAA6B,MAAM,eAAe,CAAC;AAClG,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,kCAAkC,EAAE,KAAK,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAC5H,OAAO,
|
|
1
|
+
{"version":3,"file":"manage-case-flags.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAA6B,MAAM,eAAe,CAAC;AAClG,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,kCAAkC,EAAE,KAAK,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAC5H,OAAO,EAAsB,uBAAuB,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAC;;AAElG,qBAMa,wBAAyB,YAAW,MAAM;IAErD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,8BAA8B,CAAe;IAErD,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,sBAAsB,EAAE,CAAC;IACpC,SAAS,EAAE,MAAM,CAAC;IACjB,oBAAoB,EAAE,YAAY,CAAC,aAAa,CAAC,CAAqC;IAEhG,mBAAmB,EAAE,uBAAuB,CAAC;IAC7C,aAAa,EAAE,YAAY,EAAE,CAAM;IACnC,kCAAkC,EAAE,sBAAsB,CAAQ;IAClE,gBAAgB,EAAE,kCAAkC,EAAE,CAAC;IACvD,KAAK,EAAE,KAAK,CAAC;IACb,YAAY,UAAS;IAC5B,SAAgB,mBAAmB,gCAAgC;IAE5D,QAAQ,IAAI,IAAI;IAgChB,uBAAuB,CAAC,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,sBAAsB,GAAG,kCAAkC;IAa1H,YAAY,CAAC,WAAW,EAAE,kCAAkC,GAAG,MAAM;IAarE,YAAY,CAAC,WAAW,EAAE,kCAAkC,GAAG,MAAM;IAUrE,WAAW,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;IAU3C,kBAAkB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;IAalD,aAAa,CAAC,WAAW,EAAE,kCAAkC,GAAG,MAAM;IAOtE,eAAe,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;IAO/C,MAAM,IAAI,IAAI;IAarB,OAAO,CAAC,iBAAiB;IAazB,OAAO,CAAC,cAAc;iCApJX,wBAAwB;2CAAxB,wBAAwB;CA+JpC"}
|
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { RpxTranslationService } from 'rpx-xui-translation';
|
|
4
3
|
import { Observable } from 'rxjs';
|
|
5
4
|
import { ErrorMessage } from '../../../../../domain';
|
|
6
|
-
import { FlagType } from '../../../../../domain/case-flag';
|
|
7
5
|
import { CaseFlagState, Language } from '../../domain';
|
|
8
|
-
import { SearchLanguageInterpreterStep } from '../../enums';
|
|
9
|
-
import { SearchLanguageInterpreterControlNames } from './search-language-interpreter-control-names.enum';
|
|
6
|
+
import { CaseFlagWizardStepTitle, SearchLanguageInterpreterStep } from '../../enums';
|
|
10
7
|
import * as i0 from "@angular/core";
|
|
11
8
|
export declare class SearchLanguageInterpreterComponent implements OnInit {
|
|
12
|
-
private readonly rpxTranslationService;
|
|
13
|
-
get searchLanguageInterpreterStep(): typeof SearchLanguageInterpreterStep;
|
|
14
|
-
readonly SearchLanguageInterpreterControlNames: typeof SearchLanguageInterpreterControlNames;
|
|
15
9
|
formGroup: FormGroup;
|
|
16
|
-
|
|
10
|
+
languages: Language[];
|
|
11
|
+
flagCode: string;
|
|
17
12
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
18
13
|
readonly minSearchCharacters = 3;
|
|
14
|
+
readonly languageSearchTermControlName = "languageSearchTerm";
|
|
15
|
+
readonly manualLanguageEntryControlName = "manualLanguageEntry";
|
|
19
16
|
filteredLanguages$: Observable<Language[]>;
|
|
20
17
|
searchTerm: string;
|
|
21
18
|
isCheckboxEnabled: boolean;
|
|
19
|
+
searchLanguageInterpreterTitle: CaseFlagWizardStepTitle;
|
|
22
20
|
searchLanguageInterpreterHint: SearchLanguageInterpreterStep;
|
|
23
21
|
errorMessages: ErrorMessage[];
|
|
24
22
|
languageNotSelectedErrorMessage: string;
|
|
@@ -28,7 +26,7 @@ export declare class SearchLanguageInterpreterComponent implements OnInit {
|
|
|
28
26
|
noResults: boolean;
|
|
29
27
|
private readonly languageMaxCharLimit;
|
|
30
28
|
private readonly signLanguageFlagCode;
|
|
31
|
-
|
|
29
|
+
get searchLanguageInterpreterStep(): typeof SearchLanguageInterpreterStep;
|
|
32
30
|
ngOnInit(): void;
|
|
33
31
|
onNext(): void;
|
|
34
32
|
onEnterLanguageManually(event: Event): void;
|
|
@@ -36,6 +34,6 @@ export declare class SearchLanguageInterpreterComponent implements OnInit {
|
|
|
36
34
|
private validateLanguageEntry;
|
|
37
35
|
private filterLanguages;
|
|
38
36
|
static ɵfac: i0.ɵɵFactoryDef<SearchLanguageInterpreterComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<SearchLanguageInterpreterComponent, "ccd-search-language-interpreter", never, { "formGroup": "formGroup"; "
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<SearchLanguageInterpreterComponent, "ccd-search-language-interpreter", never, { "formGroup": "formGroup"; "languages": "languages"; "flagCode": "flagCode"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
40
38
|
}
|
|
41
39
|
//# sourceMappingURL=search-language-interpreter.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-language-interpreter.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.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,
|
|
1
|
+
{"version":3,"file":"search-language-interpreter.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.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,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACvD,OAAO,EAEL,uBAAuB,EAEvB,6BAA6B,EAC9B,MAAM,aAAa,CAAC;;AAErB,qBAKa,kCAAmC,YAAW,MAAM;IAGxD,SAAS,EAAE,SAAS,CAAC;IAGrB,SAAS,EAAE,QAAQ,EAAE,CAAC;IAGtB,QAAQ,EAAE,MAAM,CAAC;IAGjB,oBAAoB,EAAE,YAAY,CAAC,aAAa,CAAC,CAAqC;IAE7F,SAAgB,mBAAmB,KAAK;IACxC,SAAgB,6BAA6B,wBAAwB;IACrE,SAAgB,8BAA8B,yBAAyB;IAChE,kBAAkB,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,CAAC;IAC3C,UAAU,SAAM;IAChB,iBAAiB,UAAS;IAC1B,8BAA8B,EAAE,uBAAuB,CAAC;IACxD,6BAA6B,EAAE,6BAA6B,CAAC;IAC7D,aAAa,EAAE,YAAY,EAAE,CAAM;IACnC,+BAA+B,SAAM;IACrC,8BAA8B,SAAM;IACpC,6BAA6B,SAAM;IACnC,uCAAuC,SAAM;IAC7C,SAAS,UAAS;IACzB,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAM;IAC3C,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAY;IAEjD,IAAW,6BAA6B,IAAI,OAAO,6BAA6B,CAE/E;IAEM,QAAQ,IAAI,IAAI;IAsBhB,MAAM,IAAI,IAAI;IAUd,uBAAuB,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI;IAU3C,eAAe,CAAC,QAAQ,CAAC,EAAE,QAAQ,GAAG,MAAM,GAAG,SAAS;IAI/D,OAAO,CAAC,qBAAqB;IA2C7B,OAAO,CAAC,eAAe;iCA5HZ,kCAAkC;2CAAlC,kCAAkC;CAqI9C"}
|
|
@@ -7,7 +7,6 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class SelectFlagLocationComponent implements OnInit {
|
|
8
8
|
formGroup: FormGroup;
|
|
9
9
|
flagsData: FlagsWithFormGroupPath[];
|
|
10
|
-
isDisplayContextParameterExternal: boolean;
|
|
11
10
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
12
11
|
flagLocationTitle: CaseFlagWizardStepTitle;
|
|
13
12
|
errorMessages: ErrorMessage[];
|
|
@@ -22,6 +21,6 @@ export declare class SelectFlagLocationComponent implements OnInit {
|
|
|
22
21
|
private validateSelection;
|
|
23
22
|
private onCaseFlagsConfigError;
|
|
24
23
|
static ɵfac: i0.ɵɵFactoryDef<SelectFlagLocationComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<SelectFlagLocationComponent, "ccd-select-flag-location", never, { "formGroup": "formGroup"; "flagsData": "flagsData";
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<SelectFlagLocationComponent, "ccd-select-flag-location", never, { "formGroup": "formGroup"; "flagsData": "flagsData"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
26
25
|
}
|
|
27
26
|
//# sourceMappingURL=select-flag-location.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select-flag-location.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.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,sBAAsB,EAAE,MAAM,cAAc,CAAC;AACrE,OAAO,EAAsB,uBAAuB,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAC;;AAE1G,qBAIa,2BAA4B,YAAW,MAAM;IACxC,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,sBAAsB,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"select-flag-location.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.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,sBAAsB,EAAE,MAAM,cAAc,CAAC;AACrE,OAAO,EAAsB,uBAAuB,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAC;;AAE1G,qBAIa,2BAA4B,YAAW,MAAM;IACxC,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,sBAAsB,EAAE,CAAC;IAEnC,oBAAoB,EAAE,YAAY,CAAC,aAAa,CAAC,CAAqC;IAEhG,iBAAiB,EAAE,uBAAuB,CAAC;IAC3C,aAAa,EAAE,YAAY,EAAE,CAAM;IACnC,mCAAmC,EAAE,8BAA8B,CAAQ;IAC3E,iBAAiB,EAAE,sBAAsB,EAAE,CAAC;IAC5C,oBAAoB,UAAS;IACpC,SAAgB,2BAA2B,sBAAsB;IACjE,SAAgB,kBAAkB,gBAAgB;IAClD,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAe;IAElD,QAAQ,IAAI,IAAI;IAqBhB,MAAM,IAAI,IAAI;IAcrB,OAAO,CAAC,iBAAiB;IAazB,OAAO,CAAC,sBAAsB;iCA/DnB,2BAA2B;2CAA3B,2BAA2B;CAwEvC"}
|
|
@@ -5,7 +5,7 @@ import { ErrorMessage } from '../../../../../domain';
|
|
|
5
5
|
import { FlagType } from '../../../../../domain/case-flag';
|
|
6
6
|
import { CaseFlagRefdataService } from '../../../../../services';
|
|
7
7
|
import { CaseFlagState } from '../../domain';
|
|
8
|
-
import {
|
|
8
|
+
import { CaseFlagWizardStepTitle } from '../../enums';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class SelectFlagTypeComponent implements OnInit, OnDestroy {
|
|
11
11
|
private readonly caseFlagRefdataService;
|
|
@@ -13,34 +13,30 @@ export declare class SelectFlagTypeComponent implements OnInit, OnDestroy {
|
|
|
13
13
|
jurisdiction: string;
|
|
14
14
|
caseTypeId: string;
|
|
15
15
|
hmctsServiceId: string;
|
|
16
|
-
isDisplayContextParameterExternal: boolean;
|
|
17
16
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
18
17
|
flagCommentsOptionalEmitter: EventEmitter<any>;
|
|
19
18
|
flagTypes: FlagType[];
|
|
19
|
+
selectedFlagType: FlagType;
|
|
20
20
|
errorMessages: ErrorMessage[];
|
|
21
21
|
flagTypeNotSelectedErrorMessage: string;
|
|
22
22
|
flagTypeErrorMessage: string;
|
|
23
23
|
flagRefdata$: Subscription;
|
|
24
|
+
otherFlagTypeSelected: boolean;
|
|
24
25
|
refdataError: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
flagTypeControlChangesSubscription: Subscription;
|
|
28
|
-
caseFlagFormField: typeof CaseFlagFormFields;
|
|
26
|
+
readonly flagTypeControlName = "flagType";
|
|
27
|
+
readonly descriptionControlName = "otherFlagTypeDescription";
|
|
29
28
|
private readonly maxCharactersForOtherFlagType;
|
|
30
29
|
private readonly otherFlagTypeCode;
|
|
31
|
-
|
|
30
|
+
readonly caseLevelCaseFlagsFieldId = "caseFlags";
|
|
32
31
|
get caseFlagWizardStepTitle(): typeof CaseFlagWizardStepTitle;
|
|
33
|
-
get selectedFlagType(): FlagType | null;
|
|
34
|
-
get otherFlagTypeSelected(): boolean;
|
|
35
32
|
constructor(caseFlagRefdataService: CaseFlagRefdataService);
|
|
36
33
|
ngOnInit(): void;
|
|
37
34
|
ngOnDestroy(): void;
|
|
35
|
+
onFlagTypeChanged(flagType: FlagType): void;
|
|
38
36
|
onNext(): void;
|
|
39
|
-
identifyFlagType(_: number, flagType: FlagType): string;
|
|
40
37
|
private validateForm;
|
|
41
|
-
private processFlagTypes;
|
|
42
38
|
private onRefdataError;
|
|
43
39
|
static ɵfac: i0.ɵɵFactoryDef<SelectFlagTypeComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<SelectFlagTypeComponent, "ccd-select-flag-type", never, { "formGroup": "formGroup"; "jurisdiction": "jurisdiction"; "caseTypeId": "caseTypeId"; "hmctsServiceId": "hmctsServiceId";
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<SelectFlagTypeComponent, "ccd-select-flag-type", never, { "formGroup": "formGroup"; "jurisdiction": "jurisdiction"; "caseTypeId": "caseTypeId"; "hmctsServiceId": "hmctsServiceId"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; "flagCommentsOptionalEmitter": "flagCommentsOptionalEmitter"; }, never, never>;
|
|
45
41
|
}
|
|
46
42
|
//# sourceMappingURL=select-flag-type.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select-flag-type.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAAU,MAAM,eAAe,CAAC;AAC1F,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAEpC,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAC;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AAEjE,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAsB,
|
|
1
|
+
{"version":3,"file":"select-flag-type.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,MAAM,EAAU,MAAM,eAAe,CAAC;AAC1F,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAEpC,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAC;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AAEjE,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAsB,uBAAuB,EAA8B,MAAM,aAAa,CAAC;;AAEtG,qBAKa,uBAAwB,YAAW,MAAM,EAAE,SAAS;IAwCnD,OAAO,CAAC,QAAQ,CAAC,sBAAsB;IArC5C,SAAS,EAAE,SAAS,CAAC;IAGrB,YAAY,EAAE,MAAM,CAAC;IAGrB,UAAU,EAAE,MAAM,CAAC;IAGnB,cAAc,EAAE,MAAM,CAAC;IAGvB,oBAAoB,EAAE,YAAY,CAAC,aAAa,CAAC,CAAqC;IAGtF,2BAA2B,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEpE,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,gBAAgB,EAAE,QAAQ,CAAC;IAC3B,aAAa,EAAE,YAAY,EAAE,CAAC;IAC9B,+BAA+B,SAAM;IACrC,oBAAoB,SAAM;IAC1B,YAAY,EAAE,YAAY,CAAC;IAC3B,qBAAqB,UAAS;IAC9B,YAAY,UAAS;IAE5B,SAAgB,mBAAmB,cAAc;IACjD,SAAgB,sBAAsB,8BAA8B;IACpE,OAAO,CAAC,QAAQ,CAAC,6BAA6B,CAAM;IAEpD,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAY;IAC9C,SAAgB,yBAAyB,eAAe;IAExD,IAAW,uBAAuB,IAAI,OAAO,uBAAuB,CAEnE;gBAE4B,sBAAsB,EAAE,sBAAsB;IAEpE,QAAQ,IAAI,IAAI;IAqChB,WAAW,IAAI,IAAI;IAMnB,iBAAiB,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;IAM3C,MAAM,IAAI,IAAI;IA8BrB,OAAO,CAAC,YAAY;IAsBpB,OAAO,CAAC,cAAc;iCA/IX,uBAAuB;2CAAvB,uBAAuB;CAuJnC"}
|