@hmcts/ccd-case-ui-toolkit 6.19.6 → 6.19.7
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 +7512 -3030
- 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 +17 -21
- package/esm2015/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.js +2 -3
- 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/case-flag-state.service.js +19 -0
- package/esm2015/lib/shared/components/case-editor/services/cases.service.js +6 -1
- package/esm2015/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.js +5 -10
- package/esm2015/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.js +53 -41
- package/esm2015/lib/shared/components/case-viewer/case-viewer.module.js +5 -2
- 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 +59 -30
- package/esm2015/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.js +244 -42
- package/esm2015/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.js +144 -73
- package/esm2015/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.js +181 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/index.js +4 -1
- package/esm2015/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.js +38 -73
- package/esm2015/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.js +133 -101
- package/esm2015/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.js +15 -7
- package/esm2015/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.js +207 -112
- package/esm2015/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.js +292 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.js +308 -97
- 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 +2 -1
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.js +9 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.js +13 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.js +3 -2
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.js +8 -3
- package/esm2015/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/index.js +8 -2
- package/esm2015/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.js +3 -2
- package/esm2015/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.js +2 -1
- package/esm2015/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.js +3 -1
- package/esm2015/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.js +4 -2
- package/esm2015/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.js +10 -7
- package/esm2015/lib/shared/components/palette/case-flag/index.js +2 -1
- package/esm2015/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.js +41 -0
- package/esm2015/lib/shared/components/palette/case-flag/pipes/index.js +5 -0
- package/esm2015/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.js +41 -0
- package/esm2015/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.js +109 -0
- package/esm2015/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.js +77 -0
- package/esm2015/lib/shared/components/palette/case-flag/read-case-flag-field.component.js +149 -50
- package/esm2015/lib/shared/components/palette/case-flag/write-case-flag-field.component.js +345 -163
- package/esm2015/lib/shared/components/palette/collection/write-collection-field.component.js +31 -33
- package/esm2015/lib/shared/components/palette/index.js +3 -1
- package/esm2015/lib/shared/components/palette/markdown/index.js +2 -1
- package/esm2015/lib/shared/components/palette/markdown/markdown-component.module.js +42 -0
- package/esm2015/lib/shared/components/palette/palette.module.js +147 -50
- package/esm2015/lib/shared/components/palette/palette.service.js +4 -2
- package/esm2015/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.js +1 -1
- package/esm2015/lib/shared/components/palette/query-management/__mocks__/index.js +210 -0
- package/esm2015/lib/shared/components/palette/query-management/components/index.js +13 -0
- package/esm2015/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.js +45 -0
- package/esm2015/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.js +111 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.js +69 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.js +64 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.js +316 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-details/query-details.component.js +344 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.js +25 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-list/query-list.component.js +181 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.js +78 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.js +125 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.js +239 -0
- package/esm2015/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.js +120 -0
- package/esm2015/lib/shared/components/palette/query-management/enums/index.js +6 -0
- package/esm2015/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.js +5 -0
- package/esm2015/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.js +10 -0
- package/esm2015/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/query-management/index.js +7 -0
- package/esm2015/lib/shared/components/palette/query-management/models/case-queries-collection.model.js +2 -0
- package/esm2015/lib/shared/components/palette/query-management/models/index.js +8 -0
- package/esm2015/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.js +2 -0
- package/esm2015/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.js +2 -0
- package/esm2015/lib/shared/components/palette/query-management/models/query-create-context.enum.js +9 -0
- package/esm2015/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.js +2 -0
- package/esm2015/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.js +18 -0
- package/esm2015/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.js +41 -0
- package/esm2015/lib/shared/components/palette/query-management/read-query-management-field.component.js +136 -0
- package/esm2015/lib/shared/components/palette/query-management/utils/query-management.utils.js +22 -0
- package/esm2015/lib/shared/components/palette/yes-no/read-yes-no-field.component.js +7 -5
- package/esm2015/lib/shared/components/palette/yes-no/write-yes-no-field.component.js +5 -4
- package/esm2015/lib/shared/domain/case-flag/flag-type.model.js +17 -2
- package/esm2015/lib/shared/domain/case-view/case-view-event-ids.enum.js +6 -0
- package/esm2015/lib/shared/domain/case-view/case-view-trigger.model.js +1 -2
- package/esm2015/lib/shared/domain/definition/display-context-enum.model.js +3 -1
- package/esm2015/lib/shared/fixture/shared.test.fixture.js +2 -1
- package/esm2015/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.js +16 -0
- package/esm2015/lib/shared/pipes/generic/index.js +2 -0
- package/esm2015/lib/shared/pipes/index.js +3 -2
- package/esm2015/lib/shared/pipes/pipes.module.js +9 -5
- package/esm2015/lib/shared/services/case-flag/case-flag-refdata.service.js +9 -3
- package/esm2015/lib/shared/services/fields/fields.utils.js +4 -2
- package/esm2015/lib/shared/services/jurisdiction/jurisdiction.service.js +2 -1
- package/esm2015/lib/shared/services/request/request.options.builder.js +7 -1
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +6142 -2156
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.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-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 +3 -1
- 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 +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 +20 -5
- 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 +15 -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 +19 -9
- 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 +8 -0
- 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-step.enum.d.ts +2 -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-display-context-parameter.enum.d.ts +8 -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 +8 -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 +7 -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 +1 -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 +3 -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 +4 -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 +49 -26
- 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/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 +14 -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/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/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/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.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
|
@@ -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.ɵɵFactoryDef<CaseEditorModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDefWithMeta<CaseEditorModule, [typeof i1.CaseEditConfirmComponent, typeof i2.CaseEditComponent, typeof i3.CaseEditPageComponent, typeof i4.CaseEditFormComponent, typeof i5.CaseEditSubmitComponent, typeof i6.
|
|
25
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<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.ɵɵInjectorDef<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;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,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;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,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;iCA9Dd,0CAA0C;2CAA1C,0CAA0C;CAsFtD"}
|
|
@@ -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.ɵɵFactoryDef<CaseFlagStateService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDef<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;iCALlC,oBAAoB;qCAApB,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":"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"}
|
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;IAoBpF,SAAS,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAuB3B,MAAM,IAAI,OAAO,CAAC,OAAO,CAAC;IAQ1B,YAAY,IAAI,OAAO;iCA9GnB,yBAAyB;2CAAzB,yBAAyB;CAiHrC"}
|
package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts
CHANGED
|
@@ -57,6 +57,8 @@ 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;
|
|
60
62
|
private subs;
|
|
61
63
|
callbackErrorsSubject: Subject<any>;
|
|
62
64
|
tabGroup: MatTabGroup;
|
|
@@ -69,7 +71,7 @@ export declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, O
|
|
|
69
71
|
private checkRouteAndSetCaseViewTab;
|
|
70
72
|
postViewActivity(): Observable<Activity[]>;
|
|
71
73
|
clearErrorsAndWarnings(): void;
|
|
72
|
-
applyTrigger(trigger: CaseViewTrigger): void
|
|
74
|
+
applyTrigger(trigger: CaseViewTrigger): Promise<void>;
|
|
73
75
|
hasTabsPresent(): boolean;
|
|
74
76
|
callbackErrorsNotify(callbackErrorsContext: CallbackErrorsContext): void;
|
|
75
77
|
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 "../../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.ɵɵ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.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.ɵɵ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,qBAyDa,gBAAgB;iCAAhB,gBAAgB;0CAAhB,gBAAgB;kCAAhB,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;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;
|
|
10
11
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
11
12
|
addCommentsTitle: CaseFlagWizardStepTitle;
|
|
12
13
|
errorMessages: ErrorMessage[];
|
|
13
14
|
flagCommentsNotEnteredErrorMessage: AddCommentsErrorMessage;
|
|
14
15
|
flagCommentsCharLimitErrorMessage: AddCommentsErrorMessage;
|
|
15
|
-
|
|
16
|
-
addCommentsCharLimitInfo: AddCommentsStep;
|
|
16
|
+
addCommentsStepEnum: typeof 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"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<AddCommentsComponent, "ccd-add-comments", never, { "formGroup": "formGroup"; "optional": "optional"; "isDisplayContextParameterExternal": "isDisplayContextParameterExternal"; }, { "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;IACjC,SAAS,EAAE,SAAS,CAAC;IACrB,QAAQ,UAAS;IACjB,iCAAiC,UAAS;IAEzC,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,mBAAmB,yBAAmB;IAC7C,SAAgB,uBAAuB,kBAAkB;IACzD,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAO;IAErC,QAAQ,IAAI,IAAI;IAShB,MAAM,IAAI,IAAI;IAOrB,OAAO,CAAC,iBAAiB;iCA/Bd,oBAAoB;2CAApB,oBAAoB;CAqDhC"}
|
|
@@ -1,20 +1,35 @@
|
|
|
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 { 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
|
+
summaryListDisplayMode: CaseFlagSummaryListDisplayMode;
|
|
12
19
|
addUpdateFlagHeaderText: string;
|
|
20
|
+
caseFlagFieldState: typeof CaseFlagFieldState;
|
|
13
21
|
readonly caseLevelLocation = "Case level";
|
|
14
22
|
private readonly updateFlagHeaderText;
|
|
15
23
|
private readonly addFlagHeaderText;
|
|
24
|
+
displayMode: typeof CaseFlagSummaryListDisplayMode;
|
|
25
|
+
canDisplayStatus: boolean;
|
|
26
|
+
constructor(rpxTranslationService: RpxTranslationService);
|
|
16
27
|
ngOnInit(): void;
|
|
28
|
+
private getFlagDescription;
|
|
29
|
+
private getHeaderText;
|
|
30
|
+
private getSummaryListDisplayMode;
|
|
31
|
+
private getCanDisplayStatus;
|
|
17
32
|
static ɵfac: i0.ɵɵFactoryDef<CaseFlagSummaryListComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFlagSummaryListComponent, "ccd-case-flag-summary-list", never, { "flagForSummaryDisplay": "flagForSummaryDisplay"; "
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFlagSummaryListComponent, "ccd-case-flag-summary-list", never, { "flagForSummaryDisplay": "flagForSummaryDisplay"; "displayContextParameter": "displayContextParameter"; }, { "changeButtonEmitter": "changeButtonEmitter"; }, never, never>;
|
|
19
34
|
}
|
|
20
35
|
//# 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,EAAmC,kBAAkB,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAC;;AAElH,qBAIa,4BAA6B,YAAW,MAAM;IAqB7C,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IApBlC,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,sBAAsB,EAAE,8BAA8B,CAAC;IACvD,uBAAuB,EAAE,MAAM,CAAC;IAChC,kBAAkB,4BAAsB;IAC/C,SAAgB,iBAAiB,gBAAgB;IACjD,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAqB;IAC1D,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAiB;IAC5C,WAAW,wCAAkC;IAC7C,gBAAgB,UAAS;gBAEH,qBAAqB,EAAE,qBAAqB;IAElE,QAAQ,IAAI,IAAI;IAcvB,OAAO,CAAC,kBAAkB;IAgB1B,OAAO,CAAC,aAAa;IAYrB,OAAO,CAAC,yBAAyB;IAQjC,OAAO,CAAC,mBAAmB;iCAzEhB,4BAA4B;2CAA5B,4BAA4B;CA8ExC"}
|
|
@@ -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.ɵɵFactoryDef<CaseFlagTableComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFlagTableComponent, "ccd-case-flag-table", never, { "tableCaption": "tableCaption"; "flagData": "flagData"; "firstColumnHeader": "firstColumnHeader"; }, {}, never, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFlagTableComponent, "ccd-case-flag-table", never, { "tableCaption": "tableCaption"; "flagData": "flagData"; "firstColumnHeader": "firstColumnHeader"; "caseFlagsExternalUser": "caseFlagsExternalUser"; }, {}, never, 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;iCARU,sBAAsB;2CAAtB,sBAAsB;CASlC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ErrorMessage } from '../../../../../domain';
|
|
4
|
+
import { CaseFlagState } from '../../domain';
|
|
5
|
+
import { CaseFlagStatus, CaseFlagWizardStepTitle, ConfirmStatusErrorMessage, ConfirmStatusStep } from '../../enums';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ConfirmFlagStatusComponent implements OnInit {
|
|
8
|
+
formGroup: FormGroup;
|
|
9
|
+
defaultStatus: string;
|
|
10
|
+
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
11
|
+
confirmFlagStatusTitle: CaseFlagWizardStepTitle;
|
|
12
|
+
caseFlagStatusEnum: typeof CaseFlagStatus;
|
|
13
|
+
flagCreationStatuses: string[];
|
|
14
|
+
errorMessages: ErrorMessage[];
|
|
15
|
+
statusReasonNotEnteredErrorMessage: ConfirmStatusErrorMessage;
|
|
16
|
+
statusReasonCharLimitErrorMessage: ConfirmStatusErrorMessage;
|
|
17
|
+
statusReasonHint: ConfirmStatusStep;
|
|
18
|
+
statusReasonCharLimitInfo: ConfirmStatusStep;
|
|
19
|
+
readonly selectedStatusControlName = "selectedStatus";
|
|
20
|
+
readonly statusReasonControlName = "statusReason";
|
|
21
|
+
private readonly reasonMaxCharLimit;
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
onNext(): void;
|
|
24
|
+
private validateTextEntry;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDef<ConfirmFlagStatusComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<ConfirmFlagStatusComponent, "ccd-confirm-flag-status", never, { "formGroup": "formGroup"; "defaultStatus": "defaultStatus"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=confirm-flag-status.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"confirm-flag-status.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.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,EAEL,cAAc,EACd,uBAAuB,EACvB,yBAAyB,EACzB,iBAAiB,EAClB,MAAM,aAAa,CAAC;;AAErB,qBAIa,0BAA2B,YAAW,MAAM;IAEvC,SAAS,EAAE,SAAS,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IAErB,oBAAoB,EAAE,YAAY,CAAC,aAAa,CAAC,CAAqC;IAEhG,sBAAsB,EAAE,uBAAuB,CAAC;IAChD,kBAAkB,wBAAkB;IACpC,oBAAoB,EAAE,MAAM,EAAE,CAAC;IAC/B,aAAa,EAAE,YAAY,EAAE,CAAM;IACnC,kCAAkC,EAAE,yBAAyB,CAAQ;IACrE,iCAAiC,EAAE,yBAAyB,CAAQ;IACpE,gBAAgB,EAAE,iBAAiB,CAAC;IACpC,yBAAyB,EAAE,iBAAiB,CAAC;IACpD,SAAgB,yBAAyB,oBAAoB;IAC7D,SAAgB,uBAAuB,kBAAkB;IACzD,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAO;IAEnC,QAAQ,IAAI,IAAI;IAUhB,MAAM,IAAI,IAAI;IAOrB,OAAO,CAAC,iBAAiB;iCApCd,0BAA0B;2CAA1B,0BAA0B;CA2DtC"}
|
|
@@ -6,4 +6,7 @@ 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';
|
|
9
12
|
//# 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;AACpD,cAAc,2FAA2F,CAAC;AAC1G,cAAc,2DAA2D,CAAC;AAC1E,cAAc,qDAAqD,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;
|
|
9
8
|
formGroup: FormGroup;
|
|
10
9
|
flagsData: FlagsWithFormGroupPath[];
|
|
11
10
|
caseTitle: string;
|
|
11
|
+
displayContextParameter: string;
|
|
12
12
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
13
13
|
manageCaseFlagTitle: CaseFlagWizardStepTitle;
|
|
14
14
|
errorMessages: ErrorMessage[];
|
|
@@ -17,18 +17,14 @@ export declare class ManageCaseFlagsComponent implements OnInit {
|
|
|
17
17
|
flags: Flags;
|
|
18
18
|
noFlagsError: boolean;
|
|
19
19
|
readonly selectedControlName = "selectedManageCaseLocation";
|
|
20
|
+
private readonly excludedFlagStatuses;
|
|
20
21
|
ngOnInit(): void;
|
|
21
22
|
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;
|
|
28
23
|
onNext(): void;
|
|
24
|
+
setManageCaseFlagTitle(displayContextParameter: string): CaseFlagWizardStepTitle;
|
|
29
25
|
private validateSelection;
|
|
30
26
|
private onNoFlagsError;
|
|
31
27
|
static ɵfac: i0.ɵɵFactoryDef<ManageCaseFlagsComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<ManageCaseFlagsComponent, "ccd-manage-case-flags", never, { "formGroup": "formGroup"; "flagsData": "flagsData"; "caseTitle": "caseTitle"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<ManageCaseFlagsComponent, "ccd-manage-case-flags", never, { "formGroup": "formGroup"; "flagsData": "flagsData"; "caseTitle": "caseTitle"; "displayContextParameter": "displayContextParameter"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
33
29
|
}
|
|
34
30
|
//# 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,EAAuE,uBAAuB,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAC;;AAEnJ,qBAMa,wBAAyB,YAAW,MAAM;IACrC,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,sBAAsB,EAAE,CAAC;IACpC,SAAS,EAAE,MAAM,CAAC;IAClB,uBAAuB,EAAE,MAAM,CAAC;IAC/B,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;IACnE,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAA4E;IAE1G,QAAQ,IAAI,IAAI;IAkChB,uBAAuB,CAAC,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,sBAAsB,GAAG,kCAAkC;IAa1H,MAAM,IAAI,IAAI;IAed,sBAAsB,CAAC,uBAAuB,EAAE,MAAM,GAAG,uBAAuB;IAWvF,OAAO,CAAC,iBAAiB;IAezB,OAAO,CAAC,cAAc;iCAxGX,wBAAwB;2CAAxB,wBAAwB;CAmHpC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-language-interpreter-control-names.enum.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,qCAAqC;IAC/C,oBAAoB,uBAAuB;IAC3C,qBAAqB,wBAAwB;CAC9C"}
|
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { RpxTranslationService } from 'rpx-xui-translation';
|
|
3
4
|
import { Observable } from 'rxjs';
|
|
4
5
|
import { ErrorMessage } from '../../../../../domain';
|
|
6
|
+
import { FlagType } from '../../../../../domain/case-flag';
|
|
5
7
|
import { CaseFlagState, Language } from '../../domain';
|
|
6
|
-
import {
|
|
8
|
+
import { SearchLanguageInterpreterStep } from '../../enums';
|
|
9
|
+
import { SearchLanguageInterpreterControlNames } from './search-language-interpreter-control-names.enum';
|
|
7
10
|
import * as i0 from "@angular/core";
|
|
8
11
|
export declare class SearchLanguageInterpreterComponent implements OnInit {
|
|
12
|
+
private readonly rpxTranslationService;
|
|
13
|
+
get searchLanguageInterpreterStep(): typeof SearchLanguageInterpreterStep;
|
|
14
|
+
readonly SearchLanguageInterpreterControlNames: typeof SearchLanguageInterpreterControlNames;
|
|
9
15
|
formGroup: FormGroup;
|
|
10
|
-
|
|
11
|
-
flagCode: string;
|
|
16
|
+
flagType: FlagType;
|
|
12
17
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
13
18
|
readonly minSearchCharacters = 3;
|
|
14
|
-
readonly languageSearchTermControlName = "languageSearchTerm";
|
|
15
|
-
readonly manualLanguageEntryControlName = "manualLanguageEntry";
|
|
16
19
|
filteredLanguages$: Observable<Language[]>;
|
|
17
20
|
searchTerm: string;
|
|
18
21
|
isCheckboxEnabled: boolean;
|
|
19
|
-
searchLanguageInterpreterTitle: CaseFlagWizardStepTitle;
|
|
20
22
|
searchLanguageInterpreterHint: SearchLanguageInterpreterStep;
|
|
21
23
|
errorMessages: ErrorMessage[];
|
|
22
24
|
languageNotSelectedErrorMessage: string;
|
|
@@ -26,7 +28,7 @@ export declare class SearchLanguageInterpreterComponent implements OnInit {
|
|
|
26
28
|
noResults: boolean;
|
|
27
29
|
private readonly languageMaxCharLimit;
|
|
28
30
|
private readonly signLanguageFlagCode;
|
|
29
|
-
|
|
31
|
+
constructor(rpxTranslationService: RpxTranslationService);
|
|
30
32
|
ngOnInit(): void;
|
|
31
33
|
onNext(): void;
|
|
32
34
|
onEnterLanguageManually(event: Event): void;
|
|
@@ -34,6 +36,6 @@ export declare class SearchLanguageInterpreterComponent implements OnInit {
|
|
|
34
36
|
private validateLanguageEntry;
|
|
35
37
|
private filterLanguages;
|
|
36
38
|
static ɵfac: i0.ɵɵFactoryDef<SearchLanguageInterpreterComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<SearchLanguageInterpreterComponent, "ccd-search-language-interpreter", never, { "formGroup": "formGroup"; "
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<SearchLanguageInterpreterComponent, "ccd-search-language-interpreter", never, { "formGroup": "formGroup"; "flagType": "flagType"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
38
40
|
}
|
|
39
41
|
//# 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,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,
|
|
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,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACvD,OAAO,EAA6D,6BAA6B,EAAE,MAAM,aAAa,CAAC;AACvH,OAAO,EAAE,qCAAqC,EAAE,MAAM,kDAAkD,CAAC;;AAEzG,qBAKa,kCAAmC,YAAW,MAAM;IA6BnD,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IA5BlD,IAAW,6BAA6B,IAAI,OAAO,6BAA6B,CAE/E;IACD,SAAgB,qCAAqC,+CAAyC;IAGvF,SAAS,EAAE,SAAS,CAAC;IAGrB,QAAQ,EAAE,QAAQ,CAAC;IAGnB,oBAAoB,EAAE,YAAY,CAAC,aAAa,CAAC,CAAqC;IAE7F,SAAgB,mBAAmB,KAAK;IACjC,kBAAkB,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,CAAC;IAC3C,UAAU,SAAM;IAChB,iBAAiB,UAAS;IAC1B,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;gBAEpB,qBAAqB,EAAE,qBAAqB;IAElE,QAAQ,IAAI,IAAI;IAmBhB,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;iCArHZ,kCAAkC;2CAAlC,kCAAkC;CAwI9C"}
|
|
@@ -7,6 +7,7 @@ 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;
|
|
10
11
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
11
12
|
flagLocationTitle: CaseFlagWizardStepTitle;
|
|
12
13
|
errorMessages: ErrorMessage[];
|
|
@@ -21,6 +22,6 @@ export declare class SelectFlagLocationComponent implements OnInit {
|
|
|
21
22
|
private validateSelection;
|
|
22
23
|
private onCaseFlagsConfigError;
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDef<SelectFlagLocationComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<SelectFlagLocationComponent, "ccd-select-flag-location", never, { "formGroup": "formGroup"; "flagsData": "flagsData"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<SelectFlagLocationComponent, "ccd-select-flag-location", never, { "formGroup": "formGroup"; "flagsData": "flagsData"; "isDisplayContextParameterExternal": "isDisplayContextParameterExternal"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never>;
|
|
25
26
|
}
|
|
26
27
|
//# 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;IACpC,iCAAiC,UAAS;IAEzC,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;IA8BhB,MAAM,IAAI,IAAI;IAWrB,OAAO,CAAC,iBAAiB;IAazB,OAAO,CAAC,sBAAsB;iCAtEnB,2BAA2B;2CAA3B,2BAA2B;CA+EvC"}
|
|
@@ -4,8 +4,8 @@ import { Subscription } from 'rxjs';
|
|
|
4
4
|
import { ErrorMessage } from '../../../../../domain';
|
|
5
5
|
import { FlagType } from '../../../../../domain/case-flag';
|
|
6
6
|
import { CaseFlagRefdataService } from '../../../../../services';
|
|
7
|
-
import { CaseFlagState } from '../../domain';
|
|
8
|
-
import { CaseFlagWizardStepTitle } from '../../enums';
|
|
7
|
+
import { CaseFlagState, FlagsWithFormGroupPath } from '../../domain';
|
|
8
|
+
import { CaseFlagFormFields, 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,30 +13,36 @@ export declare class SelectFlagTypeComponent implements OnInit, OnDestroy {
|
|
|
13
13
|
jurisdiction: string;
|
|
14
14
|
caseTypeId: string;
|
|
15
15
|
hmctsServiceId: string;
|
|
16
|
+
isDisplayContextParameterExternal: boolean;
|
|
17
|
+
selectedFlagsLocation: FlagsWithFormGroupPath;
|
|
16
18
|
caseFlagStateEmitter: EventEmitter<CaseFlagState>;
|
|
17
19
|
flagCommentsOptionalEmitter: EventEmitter<any>;
|
|
18
20
|
flagTypes: FlagType[];
|
|
19
|
-
selectedFlagType: FlagType;
|
|
20
21
|
errorMessages: ErrorMessage[];
|
|
21
22
|
flagTypeNotSelectedErrorMessage: string;
|
|
22
23
|
flagTypeErrorMessage: string;
|
|
23
24
|
flagRefdata$: Subscription;
|
|
24
|
-
otherFlagTypeSelected: boolean;
|
|
25
25
|
refdataError: boolean;
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
cachedPath: (FlagType | false)[];
|
|
27
|
+
cachedFlagType: FlagType;
|
|
28
|
+
flagTypeControlChangesSubscription: Subscription;
|
|
29
|
+
caseFlagFormField: typeof CaseFlagFormFields;
|
|
30
|
+
isCaseLevelFlag: boolean;
|
|
28
31
|
private readonly maxCharactersForOtherFlagType;
|
|
29
32
|
private readonly otherFlagTypeCode;
|
|
30
|
-
readonly caseLevelCaseFlagsFieldId
|
|
33
|
+
private readonly caseLevelCaseFlagsFieldId;
|
|
31
34
|
get caseFlagWizardStepTitle(): typeof CaseFlagWizardStepTitle;
|
|
35
|
+
get selectedFlagType(): FlagType | null;
|
|
36
|
+
get otherFlagTypeSelected(): boolean;
|
|
32
37
|
constructor(caseFlagRefdataService: CaseFlagRefdataService);
|
|
33
38
|
ngOnInit(): void;
|
|
34
39
|
ngOnDestroy(): void;
|
|
35
|
-
onFlagTypeChanged(flagType: FlagType): void;
|
|
36
40
|
onNext(): void;
|
|
41
|
+
identifyFlagType(_: number, flagType: FlagType): string;
|
|
37
42
|
private validateForm;
|
|
43
|
+
private processFlagTypes;
|
|
38
44
|
private onRefdataError;
|
|
39
45
|
static ɵfac: i0.ɵɵFactoryDef<SelectFlagTypeComponent, never>;
|
|
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>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<SelectFlagTypeComponent, "ccd-select-flag-type", never, { "formGroup": "formGroup"; "jurisdiction": "jurisdiction"; "caseTypeId": "caseTypeId"; "hmctsServiceId": "hmctsServiceId"; "isDisplayContextParameterExternal": "isDisplayContextParameterExternal"; "selectedFlagsLocation": "selectedFlagsLocation"; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; "flagCommentsOptionalEmitter": "flagCommentsOptionalEmitter"; }, never, never>;
|
|
41
47
|
}
|
|
42
48
|
//# 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;
|
|
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,sBAAsB,EAAE,MAAM,cAAc,CAAC;AACrE,OAAO,EAAsB,kBAAkB,EAAE,uBAAuB,EAA8B,MAAM,aAAa,CAAC;;AAG1H,qBAKa,uBAAwB,YAAW,MAAM,EAAE,SAAS;IAsDnD,OAAO,CAAC,QAAQ,CAAC,sBAAsB;IApD5C,SAAS,EAAE,SAAS,CAAC;IAGrB,YAAY,EAAE,MAAM,CAAC;IAGrB,UAAU,EAAE,MAAM,CAAC;IAGnB,cAAc,EAAE,MAAM,CAAC;IAGvB,iCAAiC,UAAS;IAG1C,qBAAqB,EAAE,sBAAsB,CAAC;IAG9C,oBAAoB,EAAE,YAAY,CAAC,aAAa,CAAC,CAAqC;IAGtF,2BAA2B,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEpE,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,aAAa,EAAE,YAAY,EAAE,CAAC;IAC9B,+BAA+B,SAAM;IACrC,oBAAoB,SAAM;IAC1B,YAAY,EAAE,YAAY,CAAC;IAC3B,YAAY,UAAS;IACrB,UAAU,EAAE,CAAC,QAAQ,GAAG,KAAK,CAAC,EAAE,CAAC;IACjC,cAAc,EAAE,QAAQ,CAAC;IACzB,kCAAkC,EAAE,YAAY,CAAC;IACjD,iBAAiB,4BAAsB;IACvC,eAAe,EAAE,OAAO,CAAC;IAEhC,OAAO,CAAC,QAAQ,CAAC,6BAA6B,CAAM;IAEpD,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAY;IAC9C,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAe;IAEzD,IAAW,uBAAuB,IAAI,OAAO,uBAAuB,CAEnE;IAED,IAAW,gBAAgB,IAAI,QAAQ,GAAG,IAAI,CAE7C;IAED,IAAW,qBAAqB,IAAI,OAAO,CAE1C;gBAE4B,sBAAsB,EAAE,sBAAsB;IAEpE,QAAQ,IAAI,IAAI;IAqDhB,WAAW,IAAI,IAAI;IAOnB,MAAM,IAAI,IAAI;IA2Bd,gBAAgB,CAAC,CAAC,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,GAAG,MAAM;IAI9D,OAAO,CAAC,YAAY;IA0BpB,OAAO,CAAC,gBAAgB;IAkBxB,OAAO,CAAC,cAAc;iCA/LX,uBAAuB;2CAAvB,uBAAuB;CAuMnC"}
|