@hmcts/ccd-case-ui-toolkit 5.0.2-angular11-upgrade → 5.0.6-angular11-upgrade
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js +7239 -0
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -0
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +17 -0
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -0
- package/esm2015/hmcts-ccd-case-ui-toolkit.js +5 -0
- package/esm2015/lib/app.config.js +37 -0
- package/esm2015/lib/components/banners/alert/alert-icon-class.pipe.js +25 -0
- package/esm2015/lib/components/banners/alert/alert.component.js +101 -0
- package/esm2015/lib/components/banners/alert/alert.module.js +26 -0
- package/esm2015/lib/components/banners/alert/index.js +4 -0
- package/esm2015/lib/components/banners/banners.module.js +27 -0
- package/esm2015/lib/components/banners/index.js +2 -0
- package/esm2015/lib/components/body/body.component.js +25 -0
- package/esm2015/lib/components/body/body.module.js +20 -0
- package/esm2015/lib/components/body/index.js +2 -0
- package/esm2015/lib/components/footer/footer.component.js +105 -0
- package/esm2015/lib/components/footer/footers.module.js +19 -0
- package/esm2015/lib/components/footer/index.js +2 -0
- package/esm2015/lib/components/form/date-input/date-input.component.js +329 -0
- package/esm2015/lib/components/form/date-input/index.js +2 -0
- package/esm2015/lib/components/form/form.module.js +27 -0
- package/esm2015/lib/components/form/index.js +2 -0
- package/esm2015/lib/components/header/header-bar/header-bar.component.js +108 -0
- package/esm2015/lib/components/header/header-bar/index.js +2 -0
- package/esm2015/lib/components/header/headers.module.js +23 -0
- package/esm2015/lib/components/header/index.js +5 -0
- package/esm2015/lib/components/header/navigation/index.js +3 -0
- package/esm2015/lib/components/header/navigation/navigation-item.component.js +44 -0
- package/esm2015/lib/components/header/navigation/navigation.component.js +30 -0
- package/esm2015/lib/components/header/phase/index.js +2 -0
- package/esm2015/lib/components/header/phase/phase.component.js +42 -0
- package/esm2015/lib/components/index.js +7 -0
- package/esm2015/lib/components/tabs/index.js +4 -0
- package/esm2015/lib/components/tabs/tab.component.js +34 -0
- package/esm2015/lib/components/tabs/tabs.component.js +86 -0
- package/esm2015/lib/components/tabs/tabs.module.js +36 -0
- package/esm2015/lib/shared/commons/constants.js +12 -0
- package/esm2015/lib/shared/components/case-editor/case-access-utils/index.js +94 -0
- package/esm2015/lib/shared/components/case-editor/domain/confirmation.model.js +21 -0
- package/esm2015/lib/shared/components/case-editor/domain/event-completion-return-states.enum.model.js +7 -0
- package/esm2015/lib/shared/components/case-editor/domain/event-completion-state-machine-context.model.js +2 -0
- package/esm2015/lib/shared/components/case-editor/domain/event-completion-states.enum.model.js +14 -0
- package/esm2015/lib/shared/components/case-editor/domain/index.js +8 -0
- package/esm2015/lib/shared/components/case-editor/domain/wizard-page-field-complex-override.model.js +3 -0
- package/esm2015/lib/shared/components/case-editor/domain/wizard-page-field.model.js +3 -0
- package/esm2015/lib/shared/components/case-editor/domain/wizard-page.model.js +28 -0
- package/esm2015/lib/shared/components/case-editor/domain/wizard.model.js +57 -0
- package/esm2015/lib/shared/components/case-editor/services/case.notifier.js +19 -0
- package/esm2015/lib/shared/components/case-editor/services/cases.service.js +270 -0
- package/esm2015/lib/shared/components/case-editor/services/wizard-page-field-to-case-field.mapper.js +115 -0
- package/esm2015/lib/shared/components/case-editor/services/work-allocation.service.js +170 -0
- package/esm2015/lib/shared/components/dialogs/document-dialog/document-dialog.component.js +59 -0
- package/esm2015/lib/shared/components/dialogs/remove-dialog/remove-dialog.component.js +57 -0
- package/esm2015/lib/shared/components/helpers/index.js +2 -0
- package/esm2015/lib/shared/components/helpers/init-dialog-helper.js +16 -0
- package/esm2015/lib/shared/components/palette/address/address-option.model.js +24 -0
- package/esm2015/lib/shared/components/palette/address/write-address-field.component.js +244 -0
- package/esm2015/lib/shared/components/palette/base-field/abstract-field-read.component.js +32 -0
- package/esm2015/lib/shared/components/palette/base-field/abstract-field-write.component.js +44 -0
- package/esm2015/lib/shared/components/palette/base-field/abstract-form-field.component.js +79 -0
- package/esm2015/lib/shared/components/palette/base-field/field-read-label.component.js +93 -0
- package/esm2015/lib/shared/components/palette/base-field/field-read.component.js +85 -0
- package/esm2015/lib/shared/components/palette/base-field/field-write.component.js +84 -0
- package/esm2015/lib/shared/components/palette/base-field/index.js +8 -0
- package/esm2015/lib/shared/components/palette/base-field/palette-context.enum.js +7 -0
- package/esm2015/lib/shared/components/palette/base-field/payment-field.component.js +32 -0
- package/esm2015/lib/shared/components/palette/case-link/read-case-link-field.component.js +38 -0
- package/esm2015/lib/shared/components/palette/case-link/write-case-link-field.component.js +125 -0
- package/esm2015/lib/shared/components/palette/collection/collection-create-checker.service.js +42 -0
- package/esm2015/lib/shared/components/palette/collection/index.js +3 -0
- package/esm2015/lib/shared/components/palette/collection/read-collection-field.component.js +91 -0
- package/esm2015/lib/shared/components/palette/collection/write-collection-field.component.js +414 -0
- package/esm2015/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.js +29 -0
- package/esm2015/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.js +29 -0
- package/esm2015/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.js +154 -0
- package/esm2015/lib/shared/components/palette/complex/ccd-tab-fields.pipe.js +31 -0
- package/esm2015/lib/shared/components/palette/complex/cdd-page-fields.pipe.js +39 -0
- package/esm2015/lib/shared/components/palette/complex/fields-filter.pipe.js +103 -0
- package/esm2015/lib/shared/components/palette/complex/index.js +12 -0
- package/esm2015/lib/shared/components/palette/complex/read-complex-field-collection-table.component.js +414 -0
- package/esm2015/lib/shared/components/palette/complex/read-complex-field-raw.component.js +61 -0
- package/esm2015/lib/shared/components/palette/complex/read-complex-field-table.component.js +97 -0
- package/esm2015/lib/shared/components/palette/complex/read-complex-field.component.js +81 -0
- package/esm2015/lib/shared/components/palette/complex/sort-order.js +7 -0
- package/esm2015/lib/shared/components/palette/complex/write-complex-field.component.js +178 -0
- package/esm2015/lib/shared/components/palette/date/index.js +4 -0
- package/esm2015/lib/shared/components/palette/date/read-date-field.component.js +29 -0
- package/esm2015/lib/shared/components/palette/date/write-date-container-field.component.js +41 -0
- package/esm2015/lib/shared/components/palette/date/write-date-field.component.js +81 -0
- package/esm2015/lib/shared/components/palette/datetime-picker/datetime-picker-utils.js +12 -0
- package/esm2015/lib/shared/components/palette/datetime-picker/datetime-picker.component.js +300 -0
- package/esm2015/lib/shared/components/palette/datetime-picker/index.js +2 -0
- package/esm2015/lib/shared/components/palette/document/document-url.pipe.js +24 -0
- package/esm2015/lib/shared/components/palette/document/file-upload-progress.guard.js +29 -0
- package/esm2015/lib/shared/components/palette/document/file-upload-state.service.js +16 -0
- package/esm2015/lib/shared/components/palette/document/index.js +4 -0
- package/esm2015/lib/shared/components/palette/document/read-document-field.component.js +80 -0
- package/esm2015/lib/shared/components/palette/document/write-document-field.component.js +369 -0
- package/esm2015/lib/shared/components/palette/dynamic-list/dynamic-list.pipe.js +18 -0
- package/esm2015/lib/shared/components/palette/dynamic-list/index.js +4 -0
- package/esm2015/lib/shared/components/palette/dynamic-list/read-dynamic-list-field.component.js +35 -0
- package/esm2015/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.js +121 -0
- package/esm2015/lib/shared/components/palette/dynamic-radio-list/dynamic-radio-list.pipe.js +25 -0
- package/esm2015/lib/shared/components/palette/dynamic-radio-list/index.js +4 -0
- package/esm2015/lib/shared/components/palette/dynamic-radio-list/read-dynamic-radio-list-field.component.js +41 -0
- package/esm2015/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.js +126 -0
- package/esm2015/lib/shared/components/palette/email/index.js +3 -0
- package/esm2015/lib/shared/components/palette/email/read-email-field.component.js +36 -0
- package/esm2015/lib/shared/components/palette/email/write-email-field.component.js +76 -0
- package/esm2015/lib/shared/components/palette/fixed-list/fixed-list.pipe.js +23 -0
- package/esm2015/lib/shared/components/palette/fixed-list/index.js +4 -0
- package/esm2015/lib/shared/components/palette/fixed-list/read-fixed-list-field.component.js +25 -0
- package/esm2015/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.js +110 -0
- package/esm2015/lib/shared/components/palette/fixed-radio-list/fixed-radio-list.pipe.js +18 -0
- package/esm2015/lib/shared/components/palette/fixed-radio-list/index.js +4 -0
- package/esm2015/lib/shared/components/palette/fixed-radio-list/read-fixed-radio-list-field.component.js +25 -0
- package/esm2015/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.js +101 -0
- package/esm2015/lib/shared/components/palette/history/case-history-viewer-field.component.js +21 -0
- package/esm2015/lib/shared/components/palette/history/event-log/event-log-details.component.js +127 -0
- package/esm2015/lib/shared/components/palette/history/event-log/event-log-table.component.js +234 -0
- package/esm2015/lib/shared/components/palette/history/event-log/event-log.component.js +83 -0
- package/esm2015/lib/shared/components/palette/history/event-log/index.js +4 -0
- package/esm2015/lib/shared/components/palette/history/index.js +3 -0
- package/esm2015/lib/shared/components/palette/label/index.js +2 -0
- package/esm2015/lib/shared/components/palette/label/label-field.component.js +37 -0
- package/esm2015/lib/shared/components/palette/markdown/index.js +2 -0
- package/esm2015/lib/shared/components/palette/markdown/markdown.component.js +44 -0
- package/esm2015/lib/shared/components/palette/money-gbp/index.js +4 -0
- package/esm2015/lib/shared/components/palette/money-gbp/money-gbp-input.component.js +123 -0
- package/esm2015/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.js +48 -0
- package/esm2015/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.js +83 -0
- package/esm2015/lib/shared/components/palette/multi-select-list/index.js +3 -0
- package/esm2015/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.js +50 -0
- package/esm2015/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.js +132 -0
- package/esm2015/lib/shared/components/palette/number/index.js +3 -0
- package/esm2015/lib/shared/components/palette/number/read-number-field.component.js +25 -0
- package/esm2015/lib/shared/components/palette/number/write-number-field.component.js +76 -0
- package/esm2015/lib/shared/components/palette/order-summary/fee-value.model.js +3 -0
- package/esm2015/lib/shared/components/palette/order-summary/fee.model.js +3 -0
- package/esm2015/lib/shared/components/palette/order-summary/index.js +7 -0
- package/esm2015/lib/shared/components/palette/order-summary/order-summary.model.js +3 -0
- package/esm2015/lib/shared/components/palette/order-summary/read-order-summary-field.component.js +71 -0
- package/esm2015/lib/shared/components/palette/order-summary/read-order-summary-row.component.js +51 -0
- package/esm2015/lib/shared/components/palette/order-summary/write-order-summary-field.component.js +49 -0
- package/esm2015/lib/shared/components/palette/organisation/index.js +6 -0
- package/esm2015/lib/shared/components/palette/organisation/read-organisation-field-raw.component.js +90 -0
- package/esm2015/lib/shared/components/palette/organisation/read-organisation-field-table.component.js +100 -0
- package/esm2015/lib/shared/components/palette/organisation/read-organisation-field.component.js +63 -0
- package/esm2015/lib/shared/components/palette/organisation/write-organisation-complex-field.component.js +37 -0
- package/esm2015/lib/shared/components/palette/organisation/write-organisation-field.component.js +394 -0
- package/esm2015/lib/shared/components/palette/palette.module.js +413 -0
- package/esm2015/lib/shared/components/palette/palette.service.js +114 -0
- package/esm2015/lib/shared/components/palette/payment/case-payment-history-viewer-field.component.js +27 -0
- package/esm2015/lib/shared/components/palette/payment/index.js +2 -0
- package/esm2015/lib/shared/components/palette/phone-uk/index.js +3 -0
- package/esm2015/lib/shared/components/palette/phone-uk/read-phone-uk-field.component.js +23 -0
- package/esm2015/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.js +76 -0
- package/esm2015/lib/shared/components/palette/text/index.js +3 -0
- package/esm2015/lib/shared/components/palette/text/read-text-field.component.js +23 -0
- package/esm2015/lib/shared/components/palette/text/write-text-field.component.js +81 -0
- package/esm2015/lib/shared/components/palette/text-area/index.js +3 -0
- package/esm2015/lib/shared/components/palette/text-area/read-text-area-field.component.js +23 -0
- package/esm2015/lib/shared/components/palette/text-area/write-text-area-field.component.js +91 -0
- package/esm2015/lib/shared/components/palette/unsupported-field.component.js +17 -0
- package/esm2015/lib/shared/components/palette/utils/dash.pipe.js +16 -0
- package/esm2015/lib/shared/components/palette/utils/date.pipe.js +132 -0
- package/esm2015/lib/shared/components/palette/utils/field-label.pipe.js +22 -0
- package/esm2015/lib/shared/components/palette/utils/first-error.pipe.js +41 -0
- package/esm2015/lib/shared/components/palette/utils/index.js +10 -0
- package/esm2015/lib/shared/components/palette/utils/is-compound.pipe.js +31 -0
- package/esm2015/lib/shared/components/palette/utils/is-mandatory.pipe.js +21 -0
- package/esm2015/lib/shared/components/palette/utils/is-read-only-and-not-collection.pipe.js +31 -0
- package/esm2015/lib/shared/components/palette/utils/is-read-only.pipe.js +21 -0
- package/esm2015/lib/shared/components/palette/utils/utils.module.js +62 -0
- package/esm2015/lib/shared/components/palette/waystopay/index.js +2 -0
- package/esm2015/lib/shared/components/palette/waystopay/waystopay-field.component.js +37 -0
- package/esm2015/lib/shared/components/palette/yes-no/index.js +4 -0
- package/esm2015/lib/shared/components/palette/yes-no/read-yes-no-field.component.js +32 -0
- package/esm2015/lib/shared/components/palette/yes-no/write-yes-no-field.component.js +105 -0
- package/esm2015/lib/shared/components/palette/yes-no/yes-no.service.js +48 -0
- package/esm2015/lib/shared/components/search-filters/domain/index.js +2 -0
- package/esm2015/lib/shared/components/search-filters/domain/search-input.model.js +10 -0
- package/esm2015/lib/shared/components/search-filters/index.js +5 -0
- package/esm2015/lib/shared/components/search-filters/search-filters-wrapper.component.js +61 -0
- package/esm2015/lib/shared/components/search-filters/search-filters.component.js +296 -0
- package/esm2015/lib/shared/components/search-filters/search-filters.module.js +65 -0
- package/esm2015/lib/shared/directives/conditional-show/conditional-show-form.directive.js +164 -0
- package/esm2015/lib/shared/directives/conditional-show/conditional-show.module.js +33 -0
- package/esm2015/lib/shared/directives/conditional-show/domain/conditional-show.model.js +296 -0
- package/esm2015/lib/shared/directives/conditional-show/domain/index.js +2 -0
- package/esm2015/lib/shared/directives/conditional-show/index.js +5 -0
- package/esm2015/lib/shared/directives/conditional-show/services/conditional-show-registrar.service.js +19 -0
- package/esm2015/lib/shared/directives/conditional-show/services/grey-bar.service.js +47 -0
- package/esm2015/lib/shared/directives/conditional-show/services/index.js +3 -0
- package/esm2015/lib/shared/directives/focus-element/focus-element.directive.js +36 -0
- package/esm2015/lib/shared/directives/focus-element/focus-element.module.js +21 -0
- package/esm2015/lib/shared/directives/focus-element/index.js +3 -0
- package/esm2015/lib/shared/directives/index.js +4 -0
- package/esm2015/lib/shared/directives/substitutor/index.js +4 -0
- package/esm2015/lib/shared/directives/substitutor/label-substitutor.directive.js +78 -0
- package/esm2015/lib/shared/directives/substitutor/label-substitutor.module.js +30 -0
- package/esm2015/lib/shared/directives/substitutor/services/index.js +2 -0
- package/esm2015/lib/shared/directives/substitutor/services/placeholder.service.js +200 -0
- package/esm2015/lib/shared/domain/activity/activity.model.js +10 -0
- package/esm2015/lib/shared/domain/activity/index.js +2 -0
- package/esm2015/lib/shared/domain/addresses/address.model.js +12 -0
- package/esm2015/lib/shared/domain/addresses/index.js +2 -0
- package/esm2015/lib/shared/domain/alert/alert-level.model.js +2 -0
- package/esm2015/lib/shared/domain/alert/alert.model.js +3 -0
- package/esm2015/lib/shared/domain/alert/index.js +3 -0
- package/esm2015/lib/shared/domain/case-details.model.js +3 -0
- package/esm2015/lib/shared/domain/case-event-data.model.js +3 -0
- package/esm2015/lib/shared/domain/case-view/access-types.model.js +4 -0
- package/esm2015/lib/shared/domain/case-view/case-event-trigger.model.js +22 -0
- package/esm2015/lib/shared/domain/case-view/case-print-document.model.js +3 -0
- package/esm2015/lib/shared/domain/case-view/case-tab.model.js +11 -0
- package/esm2015/lib/shared/domain/case-view/case-view-event.model.js +3 -0
- package/esm2015/lib/shared/domain/case-view/case-view-trigger.model.js +4 -0
- package/esm2015/lib/shared/domain/case-view/case-view.model.js +16 -0
- package/esm2015/lib/shared/domain/case-view/challenged-access-request.model.js +2 -0
- package/esm2015/lib/shared/domain/case-view/index.js +12 -0
- package/esm2015/lib/shared/domain/case-view/review-specific-access-request.model.js +2 -0
- package/esm2015/lib/shared/domain/case-view/role-assignment-response.model.js +2 -0
- package/esm2015/lib/shared/domain/case-view/role-request.model.js +2 -0
- package/esm2015/lib/shared/domain/case-view/specific-access-request.model.js +2 -0
- package/esm2015/lib/shared/domain/definition/access-control-list.model.js +3 -0
- package/esm2015/lib/shared/domain/definition/banner.model.js +3 -0
- package/esm2015/lib/shared/domain/definition/case-event.model.js +3 -0
- package/esm2015/lib/shared/domain/definition/case-field.model.js +194 -0
- package/esm2015/lib/shared/domain/definition/case-state.model.js +3 -0
- package/esm2015/lib/shared/domain/definition/case-type-lite.model.js +5 -0
- package/esm2015/lib/shared/domain/definition/case-type.model.js +11 -0
- package/esm2015/lib/shared/domain/definition/event-case-field.model.js +3 -0
- package/esm2015/lib/shared/domain/definition/field-type-enum.model.js +2 -0
- package/esm2015/lib/shared/domain/definition/field-type.model.js +20 -0
- package/esm2015/lib/shared/domain/definition/fixed-list-item.model.js +3 -0
- package/esm2015/lib/shared/domain/definition/index.js +12 -0
- package/esm2015/lib/shared/domain/definition/jurisdiction.model.js +3 -0
- package/esm2015/lib/shared/domain/document/document-data.model.js +13 -0
- package/esm2015/lib/shared/domain/document/index.js +2 -0
- package/esm2015/lib/shared/domain/draft.model.js +11 -0
- package/esm2015/lib/shared/domain/error-message.model.js +2 -0
- package/esm2015/lib/shared/domain/http/http-error.model.js +27 -0
- package/esm2015/lib/shared/domain/http/index.js +2 -0
- package/esm2015/lib/shared/domain/index.js +23 -0
- package/esm2015/lib/shared/domain/order/index.js +2 -0
- package/esm2015/lib/shared/domain/order/orderable.model.js +2 -0
- package/esm2015/lib/shared/domain/organisation/index.js +3 -0
- package/esm2015/lib/shared/domain/organisation/organisation-converter.js +42 -0
- package/esm2015/lib/shared/domain/organisation/simple-organisation.model.js +2 -0
- package/esm2015/lib/shared/domain/pagination-metadata.model.js +3 -0
- package/esm2015/lib/shared/domain/predicate.model.js +2 -0
- package/esm2015/lib/shared/domain/profile/index.js +2 -0
- package/esm2015/lib/shared/domain/profile/profile.model.js +29 -0
- package/esm2015/lib/shared/domain/search/field.model.js +11 -0
- package/esm2015/lib/shared/domain/search/index.js +5 -0
- package/esm2015/lib/shared/domain/search/search-result-view-column.model.js +3 -0
- package/esm2015/lib/shared/domain/search/search-result-view-item.model.js +11 -0
- package/esm2015/lib/shared/domain/search/search-result-view.model.js +22 -0
- package/esm2015/lib/shared/domain/search/sorting/search-result-view-item-comparator.js +2 -0
- package/esm2015/lib/shared/domain/search/sorting/sort-order.js +7 -0
- package/esm2015/lib/shared/domain/search/sorting/sort-parameters.js +7 -0
- package/esm2015/lib/shared/domain/user/user-details.model.js +2 -0
- package/esm2015/lib/shared/domain/user/user-info.model.js +2 -0
- package/esm2015/lib/shared/domain/work-allocation/Task.js +21 -0
- package/esm2015/lib/shared/domain/work-allocation/TaskPayload.js +2 -0
- package/esm2015/lib/shared/domain/work-allocation/index.js +2 -0
- package/esm2015/lib/shared/domain/work-allocation/task-response.model.js +2 -0
- package/esm2015/lib/shared/domain/work-allocation/task-search-parameter.model.js +2 -0
- package/esm2015/lib/shared/domain/workbasket/index.js +2 -0
- package/esm2015/lib/shared/domain/workbasket/workbasket-input.model.js +12 -0
- package/esm2015/lib/shared/fixture/case-field-builder.js +69 -0
- package/esm2015/lib/shared/fixture/shared.test.fixture.js +129 -0
- package/esm2015/lib/shared/index.js +8 -0
- package/esm2015/lib/shared/pipes/case-reference/case-reference.pipe.js +33 -0
- package/esm2015/lib/shared/pipes/case-reference/index.js +2 -0
- package/esm2015/lib/shared/pipes/case-title/ccd-case-title.pipe.js +29 -0
- package/esm2015/lib/shared/pipes/case-title/index.js +2 -0
- package/esm2015/lib/shared/pipes/index.js +5 -0
- package/esm2015/lib/shared/pipes/pipes.module.js +37 -0
- package/esm2015/lib/shared/pipes/search-result/sorting/sort-search-result.pipe.js +24 -0
- package/esm2015/lib/shared/services/activity/activity.polling.service.js +112 -0
- package/esm2015/lib/shared/services/activity/activity.service.js +91 -0
- package/esm2015/lib/shared/services/activity/index.js +3 -0
- package/esm2015/lib/shared/services/addresses/address-parser.js +76 -0
- package/esm2015/lib/shared/services/addresses/addresses.service.js +57 -0
- package/esm2015/lib/shared/services/addresses/index.js +2 -0
- package/esm2015/lib/shared/services/alert/alert.service.js +122 -0
- package/esm2015/lib/shared/services/alert/index.js +2 -0
- package/esm2015/lib/shared/services/auth/auth.service.js +33 -0
- package/esm2015/lib/shared/services/auth/index.js +2 -0
- package/esm2015/lib/shared/services/banners/banners.service.js +33 -0
- package/esm2015/lib/shared/services/banners/index.js +2 -0
- package/esm2015/lib/shared/services/browser/browser.service.js +24 -0
- package/esm2015/lib/shared/services/browser/index.js +2 -0
- package/esm2015/lib/shared/services/case-fields/case-field.service.js +34 -0
- package/esm2015/lib/shared/services/case-fields/format-translator.service.js +242 -0
- package/esm2015/lib/shared/services/case-fields/index.js +2 -0
- package/esm2015/lib/shared/services/definitions/definitions.module.js +19 -0
- package/esm2015/lib/shared/services/definitions/definitions.service.js +35 -0
- package/esm2015/lib/shared/services/definitions/index.js +3 -0
- package/esm2015/lib/shared/services/document-management/document-management.service.js +112 -0
- package/esm2015/lib/shared/services/document-management/index.js +2 -0
- package/esm2015/lib/shared/services/draft/draft.service.js +86 -0
- package/esm2015/lib/shared/services/draft/index.js +2 -0
- package/esm2015/lib/shared/services/error/error-notifier.service.js +18 -0
- package/esm2015/lib/shared/services/error/index.js +2 -0
- package/esm2015/lib/shared/services/eventStatusService/event-status.service.js +21 -0
- package/esm2015/lib/shared/services/eventStatusService/index.js +2 -0
- package/esm2015/lib/shared/services/fields/fields.purger.js +277 -0
- package/esm2015/lib/shared/services/fields/fields.utils.js +334 -0
- package/esm2015/lib/shared/services/fields/index.js +3 -0
- package/esm2015/lib/shared/services/form/field-type-sanitiser.js +75 -0
- package/esm2015/lib/shared/services/form/form-error.service.js +46 -0
- package/esm2015/lib/shared/services/form/form-validators.service.js +56 -0
- package/esm2015/lib/shared/services/form/form-value.service.js +490 -0
- package/esm2015/lib/shared/services/form/index.js +5 -0
- package/esm2015/lib/shared/services/http/http-error.service.js +65 -0
- package/esm2015/lib/shared/services/http/http.service.js +93 -0
- package/esm2015/lib/shared/services/http/index.js +3 -0
- package/esm2015/lib/shared/services/index.js +29 -0
- package/esm2015/lib/shared/services/jurisdiction/index.js +2 -0
- package/esm2015/lib/shared/services/jurisdiction/jurisdiction.service.js +18 -0
- package/esm2015/lib/shared/services/loading/index.js +3 -0
- package/esm2015/lib/shared/services/loading/loading.module.js +22 -0
- package/esm2015/lib/shared/services/loading/loading.service.js +38 -0
- package/esm2015/lib/shared/services/navigation/index.js +3 -0
- package/esm2015/lib/shared/services/navigation/navigation-notifier.service.js +18 -0
- package/esm2015/lib/shared/services/navigation/navigation-origin.model.js +9 -0
- package/esm2015/lib/shared/services/order/index.js +2 -0
- package/esm2015/lib/shared/services/order/order.service.js +39 -0
- package/esm2015/lib/shared/services/organisation/index.js +2 -0
- package/esm2015/lib/shared/services/organisation/organisation.service.js +57 -0
- package/esm2015/lib/shared/services/profile/index.js +3 -0
- package/esm2015/lib/shared/services/profile/profile.notifier.js +19 -0
- package/esm2015/lib/shared/services/profile/profile.service.js +34 -0
- package/esm2015/lib/shared/services/request/index.js +2 -0
- package/esm2015/lib/shared/services/request/request.options.builder.js +55 -0
- package/esm2015/lib/shared/services/router/index.js +2 -0
- package/esm2015/lib/shared/services/router/router-helper.service.js +20 -0
- package/esm2015/lib/shared/services/search/index.js +2 -0
- package/esm2015/lib/shared/services/search/search.service.js +83 -0
- package/esm2015/lib/shared/services/search-result/sorting/search-result-view-item-comparator-factory.js +71 -0
- package/esm2015/lib/shared/services/session/index.js +2 -0
- package/esm2015/lib/shared/services/session/session-storage.service.js +34 -0
- package/esm2015/lib/shared/services/window/index.js +2 -0
- package/esm2015/lib/shared/services/window/window.service.js +37 -0
- package/esm2015/lib/shared/services/workbasket/index.js +2 -0
- package/esm2015/lib/shared/services/workbasket/workbasket-input-filter.service.js +53 -0
- package/esm2015/lib/shared/test/test-route-snapshot-builder.js +39 -0
- package/esm2015/public-api.js +3 -0
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +5985 -0
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -0
- package/hmcts-ccd-case-ui-toolkit.d.ts +6 -0
- package/hmcts-ccd-case-ui-toolkit.d.ts.map +1 -0
- package/lib/app.config.d.ts +125 -0
- package/lib/app.config.d.ts.map +1 -0
- package/lib/components/banners/alert/alert-icon-class.pipe.d.ts +10 -0
- package/lib/components/banners/alert/alert-icon-class.pipe.d.ts.map +1 -0
- package/lib/components/banners/alert/alert.component.d.ts +19 -0
- package/lib/components/banners/alert/alert.component.d.ts.map +1 -0
- package/lib/components/banners/alert/alert.module.d.ts +10 -0
- package/lib/components/banners/alert/alert.module.d.ts.map +1 -0
- package/lib/components/banners/alert/index.d.ts +4 -0
- package/lib/components/banners/alert/index.d.ts.map +1 -0
- package/lib/components/banners/banners.module.d.ts +9 -0
- package/lib/components/banners/banners.module.d.ts.map +1 -0
- package/lib/components/banners/index.d.ts +2 -0
- package/lib/components/banners/index.d.ts.map +1 -0
- package/lib/components/body/body.component.d.ts +6 -0
- package/lib/components/body/body.component.d.ts.map +1 -0
- package/lib/components/body/body.module.d.ts +10 -0
- package/lib/components/body/body.module.d.ts.map +1 -0
- package/lib/components/body/index.d.ts +2 -0
- package/lib/components/body/index.d.ts.map +1 -0
- package/lib/components/footer/footer.component.d.ts +10 -0
- package/lib/components/footer/footer.component.d.ts.map +1 -0
- package/lib/components/footer/footers.module.d.ts +9 -0
- package/lib/components/footer/footers.module.d.ts.map +1 -0
- package/lib/components/footer/index.d.ts +2 -0
- package/lib/components/footer/index.d.ts.map +1 -0
- package/lib/components/form/date-input/date-input.component.d.ts +54 -0
- package/lib/components/form/date-input/date-input.component.d.ts.map +1 -0
- package/lib/components/form/date-input/index.d.ts +2 -0
- package/lib/components/form/date-input/index.d.ts.map +1 -0
- package/lib/components/form/form.module.d.ts +9 -0
- package/lib/components/form/form.module.d.ts.map +1 -0
- package/lib/components/form/index.d.ts +2 -0
- package/lib/components/form/index.d.ts.map +1 -0
- package/lib/components/header/header-bar/header-bar.component.d.ts +11 -0
- package/lib/components/header/header-bar/header-bar.component.d.ts.map +1 -0
- package/lib/components/header/header-bar/index.d.ts +2 -0
- package/lib/components/header/header-bar/index.d.ts.map +1 -0
- package/lib/components/header/headers.module.d.ts +13 -0
- package/lib/components/header/headers.module.d.ts.map +1 -0
- package/lib/components/header/index.d.ts +5 -0
- package/lib/components/header/index.d.ts.map +1 -0
- package/lib/components/header/navigation/index.d.ts +3 -0
- package/lib/components/header/navigation/index.d.ts.map +1 -0
- package/lib/components/header/navigation/navigation-item.component.d.ts +9 -0
- package/lib/components/header/navigation/navigation-item.component.d.ts.map +1 -0
- package/lib/components/header/navigation/navigation.component.d.ts +7 -0
- package/lib/components/header/navigation/navigation.component.d.ts.map +1 -0
- package/lib/components/header/phase/index.d.ts +2 -0
- package/lib/components/header/phase/index.d.ts.map +1 -0
- package/lib/components/header/phase/phase.component.d.ts +9 -0
- package/lib/components/header/phase/phase.component.d.ts.map +1 -0
- package/lib/components/index.d.ts +7 -0
- package/lib/components/index.d.ts.map +1 -0
- package/lib/components/tabs/index.d.ts +4 -0
- package/lib/components/tabs/index.d.ts.map +1 -0
- package/lib/components/tabs/tab.component.d.ts +9 -0
- package/lib/components/tabs/tab.component.d.ts.map +1 -0
- package/lib/components/tabs/tabs.component.d.ts +16 -0
- package/lib/components/tabs/tabs.component.d.ts.map +1 -0
- package/lib/components/tabs/tabs.module.d.ts +11 -0
- package/lib/components/tabs/tabs.module.d.ts.map +1 -0
- package/lib/shared/commons/constants.d.ts +8 -0
- package/lib/shared/commons/constants.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-access-utils/index.d.ts +25 -0
- package/lib/shared/components/case-editor/case-access-utils/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/confirmation.model.d.ts +12 -0
- package/lib/shared/components/case-editor/domain/confirmation.model.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/event-completion-return-states.enum.model.d.ts +6 -0
- package/lib/shared/components/case-editor/domain/event-completion-return-states.enum.model.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/event-completion-state-machine-context.model.d.ts +24 -0
- package/lib/shared/components/case-editor/domain/event-completion-state-machine-context.model.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/event-completion-states.enum.model.d.ts +13 -0
- package/lib/shared/components/case-editor/domain/event-completion-states.enum.model.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/index.d.ts +8 -0
- package/lib/shared/components/case-editor/domain/index.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/wizard-page-field-complex-override.model.d.ts +8 -0
- package/lib/shared/components/case-editor/domain/wizard-page-field-complex-override.model.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/wizard-page-field.model.d.ts +9 -0
- package/lib/shared/components/case-editor/domain/wizard-page-field.model.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/wizard-page.model.d.ts +17 -0
- package/lib/shared/components/case-editor/domain/wizard-page.model.d.ts.map +1 -0
- package/lib/shared/components/case-editor/domain/wizard.model.d.ts +18 -0
- package/lib/shared/components/case-editor/domain/wizard.model.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/case.notifier.d.ts +12 -0
- package/lib/shared/components/case-editor/services/case.notifier.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/cases.service.d.ts +59 -0
- package/lib/shared/components/case-editor/services/cases.service.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/wizard-page-field-to-case-field.mapper.d.ts +17 -0
- package/lib/shared/components/case-editor/services/wizard-page-field-to-case-field.mapper.d.ts.map +1 -0
- package/lib/shared/components/case-editor/services/work-allocation.service.d.ts +72 -0
- package/lib/shared/components/case-editor/services/work-allocation.service.d.ts.map +1 -0
- package/lib/shared/components/dialogs/document-dialog/document-dialog.component.d.ts +14 -0
- package/lib/shared/components/dialogs/document-dialog/document-dialog.component.d.ts.map +1 -0
- package/lib/shared/components/dialogs/remove-dialog/remove-dialog.component.d.ts +12 -0
- package/lib/shared/components/dialogs/remove-dialog/remove-dialog.component.d.ts.map +1 -0
- package/lib/shared/components/helpers/index.d.ts +2 -0
- package/lib/shared/components/helpers/index.d.ts.map +1 -0
- package/lib/shared/components/helpers/init-dialog-helper.d.ts +3 -0
- package/lib/shared/components/helpers/init-dialog-helper.d.ts.map +1 -0
- package/lib/shared/components/palette/address/address-option.model.d.ts +10 -0
- package/lib/shared/components/palette/address/address-option.model.d.ts.map +1 -0
- package/lib/shared/components/palette/address/write-address-field.component.d.ts +36 -0
- package/lib/shared/components/palette/address/write-address-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/base-field/abstract-field-read.component.d.ts +17 -0
- package/lib/shared/components/palette/base-field/abstract-field-read.component.d.ts.map +1 -0
- package/lib/shared/components/palette/base-field/abstract-field-write.component.d.ts +17 -0
- package/lib/shared/components/palette/base-field/abstract-field-write.component.d.ts.map +1 -0
- package/lib/shared/components/palette/base-field/abstract-form-field.component.d.ts +20 -0
- package/lib/shared/components/palette/base-field/abstract-form-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/base-field/field-read-label.component.d.ts +16 -0
- package/lib/shared/components/palette/base-field/field-read-label.component.d.ts.map +1 -0
- package/lib/shared/components/palette/base-field/field-read.component.d.ts +20 -0
- package/lib/shared/components/palette/base-field/field-read.component.d.ts.map +1 -0
- package/lib/shared/components/palette/base-field/field-write.component.d.ts +19 -0
- package/lib/shared/components/palette/base-field/field-write.component.d.ts.map +1 -0
- package/lib/shared/components/palette/base-field/index.d.ts +8 -0
- package/lib/shared/components/palette/base-field/index.d.ts.map +1 -0
- package/lib/shared/components/palette/base-field/palette-context.enum.d.ts +6 -0
- package/lib/shared/components/palette/base-field/palette-context.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/base-field/payment-field.component.d.ts +14 -0
- package/lib/shared/components/palette/base-field/payment-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/read-case-link-field.component.d.ts +8 -0
- package/lib/shared/components/palette/case-link/read-case-link-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/write-case-link-field.component.d.ts +16 -0
- package/lib/shared/components/palette/case-link/write-case-link-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/collection/collection-create-checker.service.d.ts +13 -0
- package/lib/shared/components/palette/collection/collection-create-checker.service.d.ts.map +1 -0
- package/lib/shared/components/palette/collection/index.d.ts +3 -0
- package/lib/shared/components/palette/collection/index.d.ts.map +1 -0
- package/lib/shared/components/palette/collection/read-collection-field.component.d.ts +11 -0
- package/lib/shared/components/palette/collection/read-collection-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/collection/write-collection-field.component.d.ts +56 -0
- package/lib/shared/components/palette/collection/write-collection-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.d.ts +11 -0
- package/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.d.ts +10 -0
- package/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.d.ts +27 -0
- package/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/ccd-tab-fields.pipe.d.ts +10 -0
- package/lib/shared/components/palette/complex/ccd-tab-fields.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/cdd-page-fields.pipe.d.ts +11 -0
- package/lib/shared/components/palette/complex/cdd-page-fields.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/fields-filter.pipe.d.ts +23 -0
- package/lib/shared/components/palette/complex/fields-filter.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/index.d.ts +12 -0
- package/lib/shared/components/palette/complex/index.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/read-complex-field-collection-table.component.d.ts +32 -0
- package/lib/shared/components/palette/complex/read-complex-field-collection-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/read-complex-field-raw.component.d.ts +13 -0
- package/lib/shared/components/palette/complex/read-complex-field-raw.component.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/read-complex-field-table.component.d.ts +9 -0
- package/lib/shared/components/palette/complex/read-complex-field-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/read-complex-field.component.d.ts +13 -0
- package/lib/shared/components/palette/complex/read-complex-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/sort-order.d.ts +6 -0
- package/lib/shared/components/palette/complex/sort-order.d.ts.map +1 -0
- package/lib/shared/components/palette/complex/write-complex-field.component.d.ts +30 -0
- package/lib/shared/components/palette/complex/write-complex-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/date/index.d.ts +4 -0
- package/lib/shared/components/palette/date/index.d.ts.map +1 -0
- package/lib/shared/components/palette/date/read-date-field.component.d.ts +8 -0
- package/lib/shared/components/palette/date/read-date-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/date/write-date-container-field.component.d.ts +7 -0
- package/lib/shared/components/palette/date/write-date-container-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/date/write-date-field.component.d.ts +12 -0
- package/lib/shared/components/palette/date/write-date-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/datetime-picker/datetime-picker-utils.d.ts +3 -0
- package/lib/shared/components/palette/datetime-picker/datetime-picker-utils.d.ts.map +1 -0
- package/lib/shared/components/palette/datetime-picker/datetime-picker.component.d.ts +53 -0
- package/lib/shared/components/palette/datetime-picker/datetime-picker.component.d.ts.map +1 -0
- package/lib/shared/components/palette/datetime-picker/index.d.ts +2 -0
- package/lib/shared/components/palette/datetime-picker/index.d.ts.map +1 -0
- package/lib/shared/components/palette/document/document-url.pipe.d.ts +11 -0
- package/lib/shared/components/palette/document/document-url.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/document/file-upload-progress.guard.d.ts +14 -0
- package/lib/shared/components/palette/document/file-upload-progress.guard.d.ts.map +1 -0
- package/lib/shared/components/palette/document/file-upload-state.service.d.ts +9 -0
- package/lib/shared/components/palette/document/file-upload-state.service.d.ts.map +1 -0
- package/lib/shared/components/palette/document/index.d.ts +4 -0
- package/lib/shared/components/palette/document/index.d.ts.map +1 -0
- package/lib/shared/components/palette/document/read-document-field.component.d.ts +24 -0
- package/lib/shared/components/palette/document/read-document-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/document/write-document-field.component.d.ts +66 -0
- package/lib/shared/components/palette/document/write-document-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/dynamic-list/dynamic-list.pipe.d.ts +10 -0
- package/lib/shared/components/palette/dynamic-list/dynamic-list.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/dynamic-list/index.d.ts +4 -0
- package/lib/shared/components/palette/dynamic-list/index.d.ts.map +1 -0
- package/lib/shared/components/palette/dynamic-list/read-dynamic-list-field.component.d.ts +9 -0
- package/lib/shared/components/palette/dynamic-list/read-dynamic-list-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.d.ts +11 -0
- package/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/dynamic-radio-list/dynamic-radio-list.pipe.d.ts +10 -0
- package/lib/shared/components/palette/dynamic-radio-list/dynamic-radio-list.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/dynamic-radio-list/index.d.ts +4 -0
- package/lib/shared/components/palette/dynamic-radio-list/index.d.ts.map +1 -0
- package/lib/shared/components/palette/dynamic-radio-list/read-dynamic-radio-list-field.component.d.ts +9 -0
- package/lib/shared/components/palette/dynamic-radio-list/read-dynamic-radio-list-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.d.ts +12 -0
- package/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/email/index.d.ts +3 -0
- package/lib/shared/components/palette/email/index.d.ts.map +1 -0
- package/lib/shared/components/palette/email/read-email-field.component.d.ts +8 -0
- package/lib/shared/components/palette/email/read-email-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/email/write-email-field.component.d.ts +11 -0
- package/lib/shared/components/palette/email/write-email-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/fixed-list/fixed-list.pipe.d.ts +10 -0
- package/lib/shared/components/palette/fixed-list/fixed-list.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/fixed-list/index.d.ts +4 -0
- package/lib/shared/components/palette/fixed-list/index.d.ts.map +1 -0
- package/lib/shared/components/palette/fixed-list/read-fixed-list-field.component.d.ts +7 -0
- package/lib/shared/components/palette/fixed-list/read-fixed-list-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.d.ts +12 -0
- package/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/fixed-radio-list/fixed-radio-list.pipe.d.ts +10 -0
- package/lib/shared/components/palette/fixed-radio-list/fixed-radio-list.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/fixed-radio-list/index.d.ts +4 -0
- package/lib/shared/components/palette/fixed-radio-list/index.d.ts.map +1 -0
- package/lib/shared/components/palette/fixed-radio-list/read-fixed-radio-list-field.component.d.ts +7 -0
- package/lib/shared/components/palette/fixed-radio-list/read-fixed-radio-list-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.d.ts +11 -0
- package/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/history/case-history-viewer-field.component.d.ts +7 -0
- package/lib/shared/components/palette/history/case-history-viewer-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/history/event-log/event-log-details.component.d.ts +8 -0
- package/lib/shared/components/palette/history/event-log/event-log-details.component.d.ts.map +1 -0
- package/lib/shared/components/palette/history/event-log/event-log-table.component.d.ts +22 -0
- package/lib/shared/components/palette/history/event-log/event-log-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/history/event-log/event-log.component.d.ts +15 -0
- package/lib/shared/components/palette/history/event-log/event-log.component.d.ts.map +1 -0
- package/lib/shared/components/palette/history/event-log/index.d.ts +4 -0
- package/lib/shared/components/palette/history/event-log/index.d.ts.map +1 -0
- package/lib/shared/components/palette/history/index.d.ts +3 -0
- package/lib/shared/components/palette/history/index.d.ts.map +1 -0
- package/lib/shared/components/palette/label/index.d.ts +2 -0
- package/lib/shared/components/palette/label/index.d.ts.map +1 -0
- package/lib/shared/components/palette/label/label-field.component.d.ts +10 -0
- package/lib/shared/components/palette/label/label-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/markdown/index.d.ts +2 -0
- package/lib/shared/components/palette/markdown/index.d.ts.map +1 -0
- package/lib/shared/components/palette/markdown/markdown.component.d.ts +12 -0
- package/lib/shared/components/palette/markdown/markdown.component.d.ts.map +1 -0
- package/lib/shared/components/palette/money-gbp/index.d.ts +4 -0
- package/lib/shared/components/palette/money-gbp/index.d.ts.map +1 -0
- package/lib/shared/components/palette/money-gbp/money-gbp-input.component.d.ts +23 -0
- package/lib/shared/components/palette/money-gbp/money-gbp-input.component.d.ts.map +1 -0
- package/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.d.ts +12 -0
- package/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.d.ts +11 -0
- package/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/multi-select-list/index.d.ts +3 -0
- package/lib/shared/components/palette/multi-select-list/index.d.ts.map +1 -0
- package/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.d.ts +7 -0
- package/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.d.ts +13 -0
- package/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/number/index.d.ts +3 -0
- package/lib/shared/components/palette/number/index.d.ts.map +1 -0
- package/lib/shared/components/palette/number/read-number-field.component.d.ts +7 -0
- package/lib/shared/components/palette/number/read-number-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/number/write-number-field.component.d.ts +11 -0
- package/lib/shared/components/palette/number/write-number-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/order-summary/fee-value.model.d.ts +5 -0
- package/lib/shared/components/palette/order-summary/fee-value.model.d.ts.map +1 -0
- package/lib/shared/components/palette/order-summary/fee.model.d.ts +7 -0
- package/lib/shared/components/palette/order-summary/fee.model.d.ts.map +1 -0
- package/lib/shared/components/palette/order-summary/index.d.ts +7 -0
- package/lib/shared/components/palette/order-summary/index.d.ts.map +1 -0
- package/lib/shared/components/palette/order-summary/order-summary.model.d.ts +7 -0
- package/lib/shared/components/palette/order-summary/order-summary.model.d.ts.map +1 -0
- package/lib/shared/components/palette/order-summary/read-order-summary-field.component.d.ts +10 -0
- package/lib/shared/components/palette/order-summary/read-order-summary-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/order-summary/read-order-summary-row.component.d.ts +12 -0
- package/lib/shared/components/palette/order-summary/read-order-summary-row.component.d.ts.map +1 -0
- package/lib/shared/components/palette/order-summary/write-order-summary-field.component.d.ts +10 -0
- package/lib/shared/components/palette/order-summary/write-order-summary-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/organisation/index.d.ts +6 -0
- package/lib/shared/components/palette/organisation/index.d.ts.map +1 -0
- package/lib/shared/components/palette/organisation/read-organisation-field-raw.component.d.ts +20 -0
- package/lib/shared/components/palette/organisation/read-organisation-field-raw.component.d.ts.map +1 -0
- package/lib/shared/components/palette/organisation/read-organisation-field-table.component.d.ts +20 -0
- package/lib/shared/components/palette/organisation/read-organisation-field-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/organisation/read-organisation-field.component.d.ts +13 -0
- package/lib/shared/components/palette/organisation/read-organisation-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/organisation/write-organisation-complex-field.component.d.ts +11 -0
- package/lib/shared/components/palette/organisation/write-organisation-complex-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/organisation/write-organisation-field.component.d.ts +47 -0
- package/lib/shared/components/palette/organisation/write-organisation-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/palette.module.d.ts +99 -0
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -0
- package/lib/shared/components/palette/palette.service.d.ts +9 -0
- package/lib/shared/components/palette/palette.service.d.ts.map +1 -0
- package/lib/shared/components/palette/payment/case-payment-history-viewer-field.component.d.ts +10 -0
- package/lib/shared/components/palette/payment/case-payment-history-viewer-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/payment/index.d.ts +2 -0
- package/lib/shared/components/palette/payment/index.d.ts.map +1 -0
- package/lib/shared/components/palette/phone-uk/index.d.ts +3 -0
- package/lib/shared/components/palette/phone-uk/index.d.ts.map +1 -0
- package/lib/shared/components/palette/phone-uk/read-phone-uk-field.component.d.ts +7 -0
- package/lib/shared/components/palette/phone-uk/read-phone-uk-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.d.ts +11 -0
- package/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/text/index.d.ts +3 -0
- package/lib/shared/components/palette/text/index.d.ts.map +1 -0
- package/lib/shared/components/palette/text/read-text-field.component.d.ts +7 -0
- package/lib/shared/components/palette/text/read-text-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/text/write-text-field.component.d.ts +12 -0
- package/lib/shared/components/palette/text/write-text-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/text-area/index.d.ts +3 -0
- package/lib/shared/components/palette/text-area/index.d.ts.map +1 -0
- package/lib/shared/components/palette/text-area/read-text-area-field.component.d.ts +7 -0
- package/lib/shared/components/palette/text-area/read-text-area-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/text-area/write-text-area-field.component.d.ts +15 -0
- package/lib/shared/components/palette/text-area/write-text-area-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/unsupported-field.component.d.ts +6 -0
- package/lib/shared/components/palette/unsupported-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/dash.pipe.d.ts +8 -0
- package/lib/shared/components/palette/utils/dash.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/date.pipe.d.ts +23 -0
- package/lib/shared/components/palette/utils/date.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/field-label.pipe.d.ts +9 -0
- package/lib/shared/components/palette/utils/field-label.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/first-error.pipe.d.ts +9 -0
- package/lib/shared/components/palette/utils/first-error.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/index.d.ts +10 -0
- package/lib/shared/components/palette/utils/index.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/is-compound.pipe.d.ts +11 -0
- package/lib/shared/components/palette/utils/is-compound.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/is-mandatory.pipe.d.ts +12 -0
- package/lib/shared/components/palette/utils/is-mandatory.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/is-read-only-and-not-collection.pipe.d.ts +13 -0
- package/lib/shared/components/palette/utils/is-read-only-and-not-collection.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/is-read-only.pipe.d.ts +12 -0
- package/lib/shared/components/palette/utils/is-read-only.pipe.d.ts.map +1 -0
- package/lib/shared/components/palette/utils/utils.module.d.ts +16 -0
- package/lib/shared/components/palette/utils/utils.module.d.ts.map +1 -0
- package/lib/shared/components/palette/waystopay/index.d.ts +2 -0
- package/lib/shared/components/palette/waystopay/index.d.ts.map +1 -0
- package/lib/shared/components/palette/waystopay/waystopay-field.component.d.ts +11 -0
- package/lib/shared/components/palette/waystopay/waystopay-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/yes-no/index.d.ts +4 -0
- package/lib/shared/components/palette/yes-no/index.d.ts.map +1 -0
- package/lib/shared/components/palette/yes-no/read-yes-no-field.component.d.ts +13 -0
- package/lib/shared/components/palette/yes-no/read-yes-no-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/yes-no/write-yes-no-field.component.d.ts +15 -0
- package/lib/shared/components/palette/yes-no/write-yes-no-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/yes-no/yes-no.service.d.ts +14 -0
- package/lib/shared/components/palette/yes-no/yes-no.service.d.ts.map +1 -0
- package/lib/shared/components/search-filters/domain/index.d.ts +2 -0
- package/lib/shared/components/search-filters/domain/index.d.ts.map +1 -0
- package/lib/shared/components/search-filters/domain/search-input.model.d.ts +11 -0
- package/lib/shared/components/search-filters/domain/search-input.model.d.ts.map +1 -0
- package/lib/shared/components/search-filters/index.d.ts +5 -0
- package/lib/shared/components/search-filters/index.d.ts.map +1 -0
- package/lib/shared/components/search-filters/search-filters-wrapper.component.d.ts +21 -0
- package/lib/shared/components/search-filters/search-filters-wrapper.component.d.ts.map +1 -0
- package/lib/shared/components/search-filters/search-filters.component.d.ts +57 -0
- package/lib/shared/components/search-filters/search-filters.component.d.ts.map +1 -0
- package/lib/shared/components/search-filters/search-filters.module.d.ts +13 -0
- package/lib/shared/components/search-filters/search-filters.module.d.ts.map +1 -0
- package/lib/shared/directives/conditional-show/conditional-show-form.directive.d.ts +40 -0
- package/lib/shared/directives/conditional-show/conditional-show-form.directive.d.ts.map +1 -0
- package/lib/shared/directives/conditional-show/conditional-show.module.d.ts +8 -0
- package/lib/shared/directives/conditional-show/conditional-show.module.d.ts.map +1 -0
- package/lib/shared/directives/conditional-show/domain/conditional-show.model.d.ts +56 -0
- package/lib/shared/directives/conditional-show/domain/conditional-show.model.d.ts.map +1 -0
- package/lib/shared/directives/conditional-show/domain/index.d.ts +2 -0
- package/lib/shared/directives/conditional-show/domain/index.d.ts.map +1 -0
- package/lib/shared/directives/conditional-show/index.d.ts +5 -0
- package/lib/shared/directives/conditional-show/index.d.ts.map +1 -0
- package/lib/shared/directives/conditional-show/services/conditional-show-registrar.service.d.ts +10 -0
- package/lib/shared/directives/conditional-show/services/conditional-show-registrar.service.d.ts.map +1 -0
- package/lib/shared/directives/conditional-show/services/grey-bar.service.d.ts +22 -0
- package/lib/shared/directives/conditional-show/services/grey-bar.service.d.ts.map +1 -0
- package/lib/shared/directives/conditional-show/services/index.d.ts +3 -0
- package/lib/shared/directives/conditional-show/services/index.d.ts.map +1 -0
- package/lib/shared/directives/focus-element/focus-element.directive.d.ts +12 -0
- package/lib/shared/directives/focus-element/focus-element.directive.d.ts.map +1 -0
- package/lib/shared/directives/focus-element/focus-element.module.d.ts +8 -0
- package/lib/shared/directives/focus-element/focus-element.module.d.ts.map +1 -0
- package/lib/shared/directives/focus-element/index.d.ts +3 -0
- package/lib/shared/directives/focus-element/index.d.ts.map +1 -0
- package/lib/shared/directives/index.d.ts +4 -0
- package/lib/shared/directives/index.d.ts.map +1 -0
- package/lib/shared/directives/substitutor/index.d.ts +4 -0
- package/lib/shared/directives/substitutor/index.d.ts.map +1 -0
- package/lib/shared/directives/substitutor/label-substitutor.directive.d.ts +27 -0
- package/lib/shared/directives/substitutor/label-substitutor.directive.d.ts.map +1 -0
- package/lib/shared/directives/substitutor/label-substitutor.module.d.ts +8 -0
- package/lib/shared/directives/substitutor/label-substitutor.module.d.ts.map +1 -0
- package/lib/shared/directives/substitutor/services/index.d.ts +2 -0
- package/lib/shared/directives/substitutor/services/index.d.ts.map +1 -0
- package/lib/shared/directives/substitutor/services/placeholder.service.d.ts +64 -0
- package/lib/shared/directives/substitutor/services/placeholder.service.d.ts.map +1 -0
- package/lib/shared/domain/activity/activity.model.d.ts +16 -0
- package/lib/shared/domain/activity/activity.model.d.ts.map +1 -0
- package/lib/shared/domain/activity/index.d.ts +2 -0
- package/lib/shared/domain/activity/index.d.ts.map +1 -0
- package/lib/shared/domain/addresses/address.model.d.ts +10 -0
- package/lib/shared/domain/addresses/address.model.d.ts.map +1 -0
- package/lib/shared/domain/addresses/index.d.ts +2 -0
- package/lib/shared/domain/addresses/index.d.ts.map +1 -0
- package/lib/shared/domain/alert/alert-level.model.d.ts +2 -0
- package/lib/shared/domain/alert/alert-level.model.d.ts.map +1 -0
- package/lib/shared/domain/alert/alert.model.d.ts +6 -0
- package/lib/shared/domain/alert/alert.model.d.ts.map +1 -0
- package/lib/shared/domain/alert/index.d.ts +3 -0
- package/lib/shared/domain/alert/index.d.ts.map +1 -0
- package/lib/shared/domain/case-details.model.d.ts +12 -0
- package/lib/shared/domain/case-details.model.d.ts.map +1 -0
- package/lib/shared/domain/case-event-data.model.d.ts +14 -0
- package/lib/shared/domain/case-event-data.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/access-types.model.d.ts +5 -0
- package/lib/shared/domain/case-view/access-types.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/case-event-trigger.model.d.ts +18 -0
- package/lib/shared/domain/case-view/case-event-trigger.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/case-print-document.model.d.ts +6 -0
- package/lib/shared/domain/case-view/case-print-document.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/case-tab.model.d.ts +10 -0
- package/lib/shared/domain/case-view/case-tab.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/case-view-event.model.d.ts +19 -0
- package/lib/shared/domain/case-view/case-view-event.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/case-view-trigger.model.d.ts +9 -0
- package/lib/shared/domain/case-view/case-view-trigger.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/case-view.model.d.ts +36 -0
- package/lib/shared/domain/case-view/case-view.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/challenged-access-request.model.d.ts +6 -0
- package/lib/shared/domain/case-view/challenged-access-request.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/index.d.ts +12 -0
- package/lib/shared/domain/case-view/index.d.ts.map +1 -0
- package/lib/shared/domain/case-view/review-specific-access-request.model.d.ts +5 -0
- package/lib/shared/domain/case-view/review-specific-access-request.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/role-assignment-response.model.d.ts +7 -0
- package/lib/shared/domain/case-view/role-assignment-response.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/role-request.model.d.ts +35 -0
- package/lib/shared/domain/case-view/role-request.model.d.ts.map +1 -0
- package/lib/shared/domain/case-view/specific-access-request.model.d.ts +4 -0
- package/lib/shared/domain/case-view/specific-access-request.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/access-control-list.model.d.ts +8 -0
- package/lib/shared/domain/definition/access-control-list.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/banner.model.d.ts +8 -0
- package/lib/shared/domain/definition/banner.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/case-event.model.d.ts +14 -0
- package/lib/shared/domain/definition/case-event.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/case-field.model.d.ts +44 -0
- package/lib/shared/domain/definition/case-field.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/case-state.model.d.ts +8 -0
- package/lib/shared/domain/definition/case-state.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/case-type-lite.model.d.ts +10 -0
- package/lib/shared/domain/definition/case-type-lite.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/case-type.model.d.ts +15 -0
- package/lib/shared/domain/definition/case-type.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/event-case-field.model.d.ts +5 -0
- package/lib/shared/domain/definition/event-case-field.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/field-type-enum.model.d.ts +2 -0
- package/lib/shared/domain/definition/field-type-enum.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/field-type.model.d.ts +14 -0
- package/lib/shared/domain/definition/field-type.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/fixed-list-item.model.d.ts +7 -0
- package/lib/shared/domain/definition/fixed-list-item.model.d.ts.map +1 -0
- package/lib/shared/domain/definition/index.d.ts +12 -0
- package/lib/shared/domain/definition/index.d.ts.map +1 -0
- package/lib/shared/domain/definition/jurisdiction.model.d.ts +8 -0
- package/lib/shared/domain/definition/jurisdiction.model.d.ts.map +1 -0
- package/lib/shared/domain/document/document-data.model.d.ts +26 -0
- package/lib/shared/domain/document/document-data.model.d.ts.map +1 -0
- package/lib/shared/domain/document/index.d.ts +2 -0
- package/lib/shared/domain/document/index.d.ts.map +1 -0
- package/lib/shared/domain/draft.model.d.ts +13 -0
- package/lib/shared/domain/draft.model.d.ts.map +1 -0
- package/lib/shared/domain/error-message.model.d.ts +9 -0
- package/lib/shared/domain/error-message.model.d.ts.map +1 -0
- package/lib/shared/domain/http/http-error.model.d.ts +18 -0
- package/lib/shared/domain/http/http-error.model.d.ts.map +1 -0
- package/lib/shared/domain/http/index.d.ts +2 -0
- package/lib/shared/domain/http/index.d.ts.map +1 -0
- package/lib/shared/domain/index.d.ts +23 -0
- package/lib/shared/domain/index.d.ts.map +1 -0
- package/lib/shared/domain/order/index.d.ts +2 -0
- package/lib/shared/domain/order/index.d.ts.map +1 -0
- package/lib/shared/domain/order/orderable.model.d.ts +4 -0
- package/lib/shared/domain/order/orderable.model.d.ts.map +1 -0
- package/lib/shared/domain/organisation/index.d.ts +3 -0
- package/lib/shared/domain/organisation/index.d.ts.map +1 -0
- package/lib/shared/domain/organisation/organisation-converter.d.ts +10 -0
- package/lib/shared/domain/organisation/organisation-converter.d.ts.map +1 -0
- package/lib/shared/domain/organisation/simple-organisation.model.d.ts +6 -0
- package/lib/shared/domain/organisation/simple-organisation.model.d.ts.map +1 -0
- package/lib/shared/domain/pagination-metadata.model.d.ts +5 -0
- package/lib/shared/domain/pagination-metadata.model.d.ts.map +1 -0
- package/lib/shared/domain/predicate.model.d.ts +2 -0
- package/lib/shared/domain/predicate.model.d.ts.map +1 -0
- package/lib/shared/domain/profile/index.d.ts +2 -0
- package/lib/shared/domain/profile/index.d.ts.map +1 -0
- package/lib/shared/domain/profile/profile.model.d.ts +24 -0
- package/lib/shared/domain/profile/profile.model.d.ts.map +1 -0
- package/lib/shared/domain/search/field.model.d.ts +11 -0
- package/lib/shared/domain/search/field.model.d.ts.map +1 -0
- package/lib/shared/domain/search/index.d.ts +5 -0
- package/lib/shared/domain/search/index.d.ts.map +1 -0
- package/lib/shared/domain/search/search-result-view-column.model.d.ts +10 -0
- package/lib/shared/domain/search/search-result-view-column.model.d.ts.map +1 -0
- package/lib/shared/domain/search/search-result-view-item.model.d.ts +10 -0
- package/lib/shared/domain/search/search-result-view-item.model.d.ts.map +1 -0
- package/lib/shared/domain/search/search-result-view.model.d.ts +9 -0
- package/lib/shared/domain/search/search-result-view.model.d.ts.map +1 -0
- package/lib/shared/domain/search/sorting/search-result-view-item-comparator.d.ts +5 -0
- package/lib/shared/domain/search/sorting/search-result-view-item-comparator.d.ts.map +1 -0
- package/lib/shared/domain/search/sorting/sort-order.d.ts +6 -0
- package/lib/shared/domain/search/sorting/sort-order.d.ts.map +1 -0
- package/lib/shared/domain/search/sorting/sort-parameters.d.ts +8 -0
- package/lib/shared/domain/search/sorting/sort-parameters.d.ts.map +1 -0
- package/lib/shared/domain/user/user-details.model.d.ts +10 -0
- package/lib/shared/domain/user/user-details.model.d.ts.map +1 -0
- package/lib/shared/domain/user/user-info.model.d.ts +11 -0
- package/lib/shared/domain/user/user-info.model.d.ts.map +1 -0
- package/lib/shared/domain/work-allocation/Task.d.ts +50 -0
- package/lib/shared/domain/work-allocation/Task.d.ts.map +1 -0
- package/lib/shared/domain/work-allocation/TaskPayload.d.ts +6 -0
- package/lib/shared/domain/work-allocation/TaskPayload.d.ts.map +1 -0
- package/lib/shared/domain/work-allocation/index.d.ts +2 -0
- package/lib/shared/domain/work-allocation/index.d.ts.map +1 -0
- package/lib/shared/domain/work-allocation/task-response.model.d.ts +5 -0
- package/lib/shared/domain/work-allocation/task-response.model.d.ts.map +1 -0
- package/lib/shared/domain/work-allocation/task-search-parameter.model.d.ts +15 -0
- package/lib/shared/domain/work-allocation/task-search-parameter.model.d.ts.map +1 -0
- package/lib/shared/domain/workbasket/index.d.ts +2 -0
- package/lib/shared/domain/workbasket/index.d.ts.map +1 -0
- package/lib/shared/domain/workbasket/workbasket-input.model.d.ts +14 -0
- package/lib/shared/domain/workbasket/workbasket-input.model.d.ts.map +1 -0
- package/lib/shared/fixture/case-field-builder.d.ts +22 -0
- package/lib/shared/fixture/case-field-builder.d.ts.map +1 -0
- package/lib/shared/fixture/shared.test.fixture.d.ts +25 -0
- package/lib/shared/fixture/shared.test.fixture.d.ts.map +1 -0
- package/lib/shared/index.d.ts +8 -0
- package/lib/shared/index.d.ts.map +1 -0
- package/lib/shared/pipes/case-reference/case-reference.pipe.d.ts +8 -0
- package/lib/shared/pipes/case-reference/case-reference.pipe.d.ts.map +1 -0
- package/lib/shared/pipes/case-reference/index.d.ts +2 -0
- package/lib/shared/pipes/case-reference/index.d.ts.map +1 -0
- package/lib/shared/pipes/case-title/ccd-case-title.pipe.d.ts +15 -0
- package/lib/shared/pipes/case-title/ccd-case-title.pipe.d.ts.map +1 -0
- package/lib/shared/pipes/case-title/index.d.ts +2 -0
- package/lib/shared/pipes/case-title/index.d.ts.map +1 -0
- package/lib/shared/pipes/index.d.ts +5 -0
- package/lib/shared/pipes/index.d.ts.map +1 -0
- package/lib/shared/pipes/pipes.module.d.ts +11 -0
- package/lib/shared/pipes/pipes.module.d.ts.map +1 -0
- package/lib/shared/pipes/search-result/sorting/sort-search-result.pipe.d.ts +10 -0
- package/lib/shared/pipes/search-result/sorting/sort-search-result.pipe.d.ts.map +1 -0
- package/lib/shared/services/activity/activity.polling.service.d.ts +30 -0
- package/lib/shared/services/activity/activity.polling.service.d.ts.map +1 -0
- package/lib/shared/services/activity/activity.service.d.ts +26 -0
- package/lib/shared/services/activity/activity.service.d.ts.map +1 -0
- package/lib/shared/services/activity/index.d.ts +3 -0
- package/lib/shared/services/activity/index.d.ts.map +1 -0
- package/lib/shared/services/addresses/address-parser.d.ts +18 -0
- package/lib/shared/services/addresses/address-parser.d.ts.map +1 -0
- package/lib/shared/services/addresses/addresses.service.d.ts +21 -0
- package/lib/shared/services/addresses/addresses.service.d.ts.map +1 -0
- package/lib/shared/services/addresses/index.d.ts +2 -0
- package/lib/shared/services/addresses/index.d.ts.map +1 -0
- package/lib/shared/services/alert/alert.service.d.ts +35 -0
- package/lib/shared/services/alert/alert.service.d.ts.map +1 -0
- package/lib/shared/services/alert/index.d.ts +2 -0
- package/lib/shared/services/alert/index.d.ts.map +1 -0
- package/lib/shared/services/auth/auth.service.d.ts +16 -0
- package/lib/shared/services/auth/auth.service.d.ts.map +1 -0
- package/lib/shared/services/auth/index.d.ts +2 -0
- package/lib/shared/services/auth/index.d.ts.map +1 -0
- package/lib/shared/services/banners/banners.service.d.ts +15 -0
- package/lib/shared/services/banners/banners.service.d.ts.map +1 -0
- package/lib/shared/services/banners/index.d.ts +2 -0
- package/lib/shared/services/banners/index.d.ts.map +1 -0
- package/lib/shared/services/browser/browser.service.d.ts +9 -0
- package/lib/shared/services/browser/browser.service.d.ts.map +1 -0
- package/lib/shared/services/browser/index.d.ts +2 -0
- package/lib/shared/services/browser/index.d.ts.map +1 -0
- package/lib/shared/services/case-fields/case-field.service.d.ts +11 -0
- package/lib/shared/services/case-fields/case-field.service.d.ts.map +1 -0
- package/lib/shared/services/case-fields/format-translator.service.d.ts +16 -0
- package/lib/shared/services/case-fields/format-translator.service.d.ts.map +1 -0
- package/lib/shared/services/case-fields/index.d.ts +2 -0
- package/lib/shared/services/case-fields/index.d.ts.map +1 -0
- package/lib/shared/services/definitions/definitions.module.d.ts +7 -0
- package/lib/shared/services/definitions/definitions.module.d.ts.map +1 -0
- package/lib/shared/services/definitions/definitions.service.d.ts +16 -0
- package/lib/shared/services/definitions/definitions.service.d.ts.map +1 -0
- package/lib/shared/services/definitions/index.d.ts +3 -0
- package/lib/shared/services/definitions/index.d.ts.map +1 -0
- package/lib/shared/services/document-management/document-management.service.d.ts +34 -0
- package/lib/shared/services/document-management/document-management.service.d.ts.map +1 -0
- package/lib/shared/services/document-management/index.d.ts +2 -0
- package/lib/shared/services/document-management/index.d.ts.map +1 -0
- package/lib/shared/services/draft/draft.service.d.ts +25 -0
- package/lib/shared/services/draft/draft.service.d.ts.map +1 -0
- package/lib/shared/services/draft/index.d.ts +2 -0
- package/lib/shared/services/draft/index.d.ts.map +1 -0
- package/lib/shared/services/error/error-notifier.service.d.ts +10 -0
- package/lib/shared/services/error/error-notifier.service.d.ts.map +1 -0
- package/lib/shared/services/error/index.d.ts +2 -0
- package/lib/shared/services/error/index.d.ts.map +1 -0
- package/lib/shared/services/eventStatusService/event-status.service.d.ts +11 -0
- package/lib/shared/services/eventStatusService/event-status.service.d.ts.map +1 -0
- package/lib/shared/services/eventStatusService/index.d.ts +2 -0
- package/lib/shared/services/eventStatusService/index.d.ts.map +1 -0
- package/lib/shared/services/fields/fields.purger.d.ts +39 -0
- package/lib/shared/services/fields/fields.purger.d.ts.map +1 -0
- package/lib/shared/services/fields/fields.utils.d.ts +81 -0
- package/lib/shared/services/fields/fields.utils.d.ts.map +1 -0
- package/lib/shared/services/fields/index.d.ts +3 -0
- package/lib/shared/services/fields/index.d.ts.map +1 -0
- package/lib/shared/services/form/field-type-sanitiser.d.ts +29 -0
- package/lib/shared/services/form/field-type-sanitiser.d.ts.map +1 -0
- package/lib/shared/services/form/form-error.service.d.ts +12 -0
- package/lib/shared/services/form/form-error.service.d.ts.map +1 -0
- package/lib/shared/services/form/form-validators.service.d.ts +12 -0
- package/lib/shared/services/form/form-validators.service.d.ts.map +1 -0
- package/lib/shared/services/form/form-value.service.d.ts +172 -0
- package/lib/shared/services/form/form-value.service.d.ts.map +1 -0
- package/lib/shared/services/form/index.d.ts +5 -0
- package/lib/shared/services/form/index.d.ts.map +1 -0
- package/lib/shared/services/http/http-error.service.d.ts +19 -0
- package/lib/shared/services/http/http-error.service.d.ts.map +1 -0
- package/lib/shared/services/http/http.service.d.ts +60 -0
- package/lib/shared/services/http/http.service.d.ts.map +1 -0
- package/lib/shared/services/http/index.d.ts +3 -0
- package/lib/shared/services/http/index.d.ts.map +1 -0
- package/lib/shared/services/index.d.ts +29 -0
- package/lib/shared/services/index.d.ts.map +1 -0
- package/lib/shared/services/jurisdiction/index.d.ts +2 -0
- package/lib/shared/services/jurisdiction/index.d.ts.map +1 -0
- package/lib/shared/services/jurisdiction/jurisdiction.service.d.ts +11 -0
- package/lib/shared/services/jurisdiction/jurisdiction.service.d.ts.map +1 -0
- package/lib/shared/services/loading/index.d.ts +3 -0
- package/lib/shared/services/loading/index.d.ts.map +1 -0
- package/lib/shared/services/loading/loading.module.d.ts +7 -0
- package/lib/shared/services/loading/loading.module.d.ts.map +1 -0
- package/lib/shared/services/loading/loading.service.d.ts +16 -0
- package/lib/shared/services/loading/loading.service.d.ts.map +1 -0
- package/lib/shared/services/navigation/index.d.ts +3 -0
- package/lib/shared/services/navigation/index.d.ts.map +1 -0
- package/lib/shared/services/navigation/navigation-notifier.service.d.ts +10 -0
- package/lib/shared/services/navigation/navigation-notifier.service.d.ts.map +1 -0
- package/lib/shared/services/navigation/navigation-origin.model.d.ts +8 -0
- package/lib/shared/services/navigation/navigation-origin.model.d.ts.map +1 -0
- package/lib/shared/services/order/index.d.ts +2 -0
- package/lib/shared/services/order/index.d.ts.map +1 -0
- package/lib/shared/services/order/order.service.d.ts +19 -0
- package/lib/shared/services/order/order.service.d.ts.map +1 -0
- package/lib/shared/services/organisation/index.d.ts +2 -0
- package/lib/shared/services/organisation/index.d.ts.map +1 -0
- package/lib/shared/services/organisation/organisation.service.d.ts +53 -0
- package/lib/shared/services/organisation/organisation.service.d.ts.map +1 -0
- package/lib/shared/services/profile/index.d.ts +3 -0
- package/lib/shared/services/profile/index.d.ts.map +1 -0
- package/lib/shared/services/profile/profile.notifier.d.ts +11 -0
- package/lib/shared/services/profile/profile.notifier.d.ts.map +1 -0
- package/lib/shared/services/profile/profile.service.d.ts +16 -0
- package/lib/shared/services/profile/profile.service.d.ts.map +1 -0
- package/lib/shared/services/request/index.d.ts +2 -0
- package/lib/shared/services/request/index.d.ts.map +1 -0
- package/lib/shared/services/request/request.options.builder.d.ts +17 -0
- package/lib/shared/services/request/request.options.builder.d.ts.map +1 -0
- package/lib/shared/services/router/index.d.ts +2 -0
- package/lib/shared/services/router/index.d.ts.map +1 -0
- package/lib/shared/services/router/router-helper.service.d.ts +8 -0
- package/lib/shared/services/router/router-helper.service.d.ts.map +1 -0
- package/lib/shared/services/search/index.d.ts +2 -0
- package/lib/shared/services/search/index.d.ts.map +1 -0
- package/lib/shared/services/search/search.service.d.ts +32 -0
- package/lib/shared/services/search/search.service.d.ts.map +1 -0
- package/lib/shared/services/search-result/sorting/search-result-view-item-comparator-factory.d.ts +12 -0
- package/lib/shared/services/search-result/sorting/search-result-view-item-comparator-factory.d.ts.map +1 -0
- package/lib/shared/services/session/index.d.ts +2 -0
- package/lib/shared/services/session/index.d.ts.map +1 -0
- package/lib/shared/services/session/session-storage.service.d.ts +22 -0
- package/lib/shared/services/session/session-storage.service.d.ts.map +1 -0
- package/lib/shared/services/window/index.d.ts +2 -0
- package/lib/shared/services/window/index.d.ts.map +1 -0
- package/lib/shared/services/window/window.service.d.ts +15 -0
- package/lib/shared/services/window/window.service.d.ts.map +1 -0
- package/lib/shared/services/workbasket/index.d.ts +2 -0
- package/lib/shared/services/workbasket/index.d.ts.map +1 -0
- package/lib/shared/services/workbasket/workbasket-input-filter.service.d.ts +19 -0
- package/lib/shared/services/workbasket/workbasket-input-filter.service.d.ts.map +1 -0
- package/lib/shared/test/test-route-snapshot-builder.d.ts +11 -0
- package/lib/shared/test/test-route-snapshot-builder.d.ts.map +1 -0
- package/package.json +14 -199
- package/public-api.d.ts +3 -0
- package/public-api.d.ts.map +1 -0
- package/.editorconfig +0 -14
- package/.github/CONTRIBUTING.md +0 -39
- package/.github/ISSUE_TEMPLATE.md +0 -5
- package/.github/PULL_REQUEST_TEMPLATE.md +0 -23
- package/.github/stale.yml +0 -24
- package/.github/workflows/npmpublish.yml +0 -98
- package/.nyc_output/.gitkeep +0 -1
- package/.project +0 -4
- package/.storybook/main.js +0 -13
- package/.storybook/preview.js +0 -15
- package/.storybook/tsconfig.json +0 -21
- package/.storybook/typings.d.ts +0 -4
- package/.travis.yml +0 -54
- package/LICENSE.md +0 -9
- package/README.md +0 -191
- package/RELEASE-NOTES.md +0 -1153
- package/angular.json +0 -193
- package/bin/run-yarn-audit.sh +0 -38
- package/browserslist +0 -12
- package/documentation.json +0 -88650
- package/e2e/tsconfig.e2e.json +0 -13
- package/projects/ccd-case-ui-toolkit/ng-package.json +0 -8
- package/projects/ccd-case-ui-toolkit/package.json +0 -18
- package/projects/ccd-case-ui-toolkit/tsconfig.lib.json +0 -33
- package/projects/ccd-case-ui-toolkit/tsconfig.lib.prod.json +0 -7
- package/projects/ccd-case-ui-toolkit/tsconfig.spec.json +0 -21
- package/projects/ccd-case-ui-toolkit/tslint.json +0 -96
- package/scripts/create-release-tag.sh +0 -23
- package/sonar-project.properties +0 -12
- package/storybook/assets/fonts/bold-a2452cb66f-v1.woff2 +0 -0
- package/storybook/assets/fonts/bold-f38c792ac2-v1.woff +0 -0
- package/storybook/assets/fonts/bold-fb2676462a-v1.eot +0 -0
- package/storybook/assets/fonts/bold-tabular-357fdfbcc3-v1.eot +0 -0
- package/storybook/assets/fonts/bold-tabular-784c21afb8-v1.woff +0 -0
- package/storybook/assets/fonts/bold-tabular-b89238d840-v1.woff2 +0 -0
- package/storybook/assets/fonts/light-2c037cf7e1-v1.eot +0 -0
- package/storybook/assets/fonts/light-458f8ea81c-v1.woff +0 -0
- package/storybook/assets/fonts/light-f38ad40456-v1.woff2 +0 -0
- package/storybook/assets/fonts/light-tabular-498ea8ffe2-v1.eot +0 -0
- package/storybook/assets/fonts/light-tabular-62cc6f0a28-v1.woff +0 -0
- package/storybook/assets/fonts/light-tabular-851b10ccdd-v1.woff2 +0 -0
- package/storybook/assets/images/govuk-crest-2x.png +0 -0
- package/storybook/assets/images/govuk-crest.png +0 -0
- package/storybook/assets/img/accordion-minus.png +0 -0
- package/storybook/assets/img/accordion-plus.png +0 -0
- package/storybook/assets/img/apple-touch-icon-120x120.png +0 -0
- package/storybook/assets/img/apple-touch-icon-152x152.png +0 -0
- package/storybook/assets/img/apple-touch-icon-60x60.png +0 -0
- package/storybook/assets/img/apple-touch-icon-76x76.png +0 -0
- package/storybook/assets/img/dropdown-arrow.PNG +0 -0
- package/storybook/assets/img/editor.png +0 -0
- package/storybook/assets/img/editorBanner.png +0 -0
- package/storybook/assets/img/favicon.ico +0 -0
- package/storybook/assets/img/gov.uk_logotype_crown.svg +0 -7
- package/storybook/assets/img/gov.uk_logotype_crown_invert_trans.png +0 -0
- package/storybook/assets/img/icon-search-white.png +0 -0
- package/storybook/assets/img/viewer.png +0 -0
- package/storybook/assets/img/viewerBanner.png +0 -0
- package/storybook/assets/img/warning.png +0 -0
- package/storybook/assets/img/x.PNG +0 -0
- package/storybook/assets/sass/annotation-ui-theme.scss +0 -217
- package/storybook/assets/sass/application-ie8.scss +0 -3
- package/storybook/assets/sass/application.scss +0 -214
- package/storybook/assets/sass/components/_cookie-banner.scss +0 -24
- package/storybook/assets/sass/jui/all.scss +0 -20
- package/storybook/assets/sass/jui/objects/_manifest.scss +0 -5
- package/storybook/assets/sass/jui/objects/_objects.container.scss +0 -7
- package/storybook/assets/sass/jui/settings/_manifest.scss +0 -6
- package/storybook/assets/sass/jui/settings/_settings.aspect-ratio.scss +0 -9
- package/storybook/assets/sass/jui/settings/_settings.general.scss +0 -34
- package/storybook/assets/sass/patterns/_check-your-answers.scss +0 -86
- package/storybook/assets/sass/patterns/_pba.scss +0 -278
- package/storybook/assets/sass/patterns/_related-items.scss +0 -11
- package/storybook/assets/sass/patterns/_task-list.scss +0 -72
- package/storybook/assets/sass/unbranded.scss +0 -12
- package/storybook/storybook.component.ts +0 -11
- package/storybook/storybook.styles.scss +0 -17
- package/storybook/style/_buttons.scss +0 -19
- package/storybook/style/_forms.scss +0 -19
- package/storybook/style/_markdown.scss +0 -48
- package/storybook/style/_material.scss +0 -53
- package/storybook/style/_notifications.scss +0 -23
- package/storybook/style/_palette.scss +0 -77
- package/storybook/style/_print.scss +0 -19
- package/storybook/style/app.scss +0 -399
- package/storybook/style/vendor/prism.scss +0 -116
- package/storybook-static/0.835660aac5fb57f1c871.manager.bundle.js +0 -2
- package/storybook-static/0.835660aac5fb57f1c871.manager.bundle.js.LICENSE.txt +0 -8
- package/storybook-static/0.8a2e5fcc.iframe.bundle.js +0 -3
- package/storybook-static/0.8a2e5fcc.iframe.bundle.js.LICENSE.txt +0 -17
- package/storybook-static/0.8a2e5fcc.iframe.bundle.js.map +0 -1
- package/storybook-static/1.2f18dfb406091ad58686.manager.bundle.js +0 -1
- package/storybook-static/1.ab9ea240.iframe.bundle.js +0 -3
- package/storybook-static/1.ab9ea240.iframe.bundle.js.LICENSE.txt +0 -8
- package/storybook-static/1.ab9ea240.iframe.bundle.js.map +0 -1
- package/storybook-static/10.fa5fcd50.iframe.bundle.js +0 -3
- package/storybook-static/10.fa5fcd50.iframe.bundle.js.LICENSE.txt +0 -12
- package/storybook-static/10.fa5fcd50.iframe.bundle.js.map +0 -1
- package/storybook-static/2.e37e048c.iframe.bundle.js +0 -1
- package/storybook-static/3.a2afbe6b.iframe.bundle.js +0 -1
- package/storybook-static/5.472a084050c6577e437c.manager.bundle.js +0 -2
- package/storybook-static/5.472a084050c6577e437c.manager.bundle.js.LICENSE.txt +0 -31
- package/storybook-static/6.6d8b7e0d6abfb2af3157.manager.bundle.js +0 -1
- package/storybook-static/7.33e8f7c3.iframe.bundle.js +0 -3
- package/storybook-static/7.33e8f7c3.iframe.bundle.js.LICENSE.txt +0 -31
- package/storybook-static/7.33e8f7c3.iframe.bundle.js.map +0 -1
- package/storybook-static/7.b9048b95a2d61a0d5990.manager.bundle.js +0 -1
- package/storybook-static/8.c0075f29233ef3a5f866.manager.bundle.js +0 -2
- package/storybook-static/8.c0075f29233ef3a5f866.manager.bundle.js.LICENSE.txt +0 -12
- package/storybook-static/8.c6adb04b.iframe.bundle.js +0 -1
- package/storybook-static/9.73d6cb6ada64ba200277.manager.bundle.js +0 -1
- package/storybook-static/9.eaf466b7.iframe.bundle.js +0 -1
- package/storybook-static/favicon.ico +0 -0
- package/storybook-static/iframe.html +0 -364
- package/storybook-static/index.html +0 -59
- package/storybook-static/main.6f2a4d7a.iframe.bundle.js +0 -1
- package/storybook-static/main.bbfce4da3ddc788a6d97.manager.bundle.js +0 -1
- package/storybook-static/project.json +0 -1
- package/storybook-static/runtime~main.17dc4af8228ff7ffc150.manager.bundle.js +0 -1
- package/storybook-static/runtime~main.da0120f3.iframe.bundle.js +0 -1
- package/storybook-static/static/media/code-brackets.2e1112d7.svg +0 -1
- package/storybook-static/static/media/colors.a4bd0486.svg +0 -1
- package/storybook-static/static/media/comments.a3859089.svg +0 -1
- package/storybook-static/static/media/direction.b770f9af.svg +0 -1
- package/storybook-static/static/media/flow.edad2ac1.svg +0 -1
- package/storybook-static/static/media/plugin.d494b228.svg +0 -1
- package/storybook-static/static/media/repo.6d496322.svg +0 -1
- package/storybook-static/static/media/stackalt.dba9fbb3.svg +0 -1
- package/storybook-static/vendors~main.ac63a4b3609bbef0abd4.manager.bundle.js +0 -2
- package/storybook-static/vendors~main.ac63a4b3609bbef0abd4.manager.bundle.js.LICENSE.txt +0 -104
- package/storybook-static/vendors~main.c4556936.iframe.bundle.js +0 -13
- package/storybook-static/vendors~main.c4556936.iframe.bundle.js.LICENSE.txt +0 -94
- package/storybook-static/vendors~main.c4556936.iframe.bundle.js.map +0 -1
- package/tsconfig.json +0 -44
- package/tslint.json +0 -96
- package/yarn-audit-known-issues +0 -28
package/RELEASE-NOTES.md
DELETED
|
@@ -1,1153 +0,0 @@
|
|
|
1
|
-
## RELEASE NOTES
|
|
2
|
-
|
|
3
|
-
### Version 4.17.12-EUI-5743-Mandatory-field-validation-in-collection
|
|
4
|
-
**EUI-5743** Bug fix for the Mandatory field validation in collection
|
|
5
|
-
|
|
6
|
-
### Version 4.17.6-EUI-5736-unassigned-cases-pagination
|
|
7
|
-
**EUI-5736** unassigned cases pagination
|
|
8
|
-
|
|
9
|
-
### Version 4.12.1-EUI-5682-complex-table-collection-1
|
|
10
|
-
**EUI-5682** Bug fix for the complex collection table view
|
|
11
|
-
|
|
12
|
-
### Version 4.12.1-EUI-5225-organisation-search
|
|
13
|
-
**EUI-5225** Bug fix the organisation search functionality
|
|
14
|
-
|
|
15
|
-
### Version 4.12.1-EUI-5877-repeating-label
|
|
16
|
-
**EUI-5877** Bug fix for repeating label
|
|
17
|
-
|
|
18
|
-
### Version 4.12.6-date-year-validation
|
|
19
|
-
**EUI-4606** Enhanced the date year input validation to restrict between 1900-2100
|
|
20
|
-
|
|
21
|
-
### Version 4.17.6-EUI-5736-unassigned-cases-pagination
|
|
22
|
-
**EUI-5736** unassigned cases pagination
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
### Version 4.14.1-EUI-5305-change-link-accessibility-update
|
|
26
|
-
**EUI-5305** Accessibility improvement for 'Change' links
|
|
27
|
-
|
|
28
|
-
### Version 4.12.0
|
|
29
|
-
Add refunds functionality
|
|
30
|
-
|
|
31
|
-
### Version 4.13.8-event-start-task-not-required"
|
|
32
|
-
**EUI-5569** Task not required for event functionality
|
|
33
|
-
|
|
34
|
-
### Version 4.13.8-event-start-task-not-required"
|
|
35
|
-
**EUI-5569** Task not required for event functionality
|
|
36
|
-
### Version 4.12.1-EUI-5877-repeating-label
|
|
37
|
-
**EUI-5877** Bug fix for repeating label
|
|
38
|
-
|
|
39
|
-
### Version 4.9.16-wcag20-exui-4"
|
|
40
|
-
**FPLA: Accessibility Issues Found in ExUI** FPLA: Accessibility Issues Found in ExUI
|
|
41
|
-
|
|
42
|
-
### Version 4.13.8-event-start-task-not-required"
|
|
43
|
-
**EUI-5569** Task not required for event functionality
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
### Version 4.12.16-task-event-completion"
|
|
47
|
-
**Task event completion and state machine** Task event completion and state machine
|
|
48
|
-
|
|
49
|
-
### Version 4.12.6-limit-search-results-10k-400-5"
|
|
50
|
-
**Limit search results to 10k / 400 pages** Limit search results to 10k / 400 pages
|
|
51
|
-
|
|
52
|
-
### Version 4.9.15-state-machine"
|
|
53
|
-
**Task event completion and state machine** Task event completion and state machine
|
|
54
|
-
|
|
55
|
-
### Version 4.3.9-markdown-case-ref-EUI-3650
|
|
56
|
-
**EUI-3650** Added formatting for case reference inside markdown
|
|
57
|
-
|
|
58
|
-
### Version 4.7.6-tab-not-defined-error"
|
|
59
|
-
**EUI-4562** Case details Active tasks tab on success not returning to active tasks page
|
|
60
|
-
|
|
61
|
-
### Version 4.3.6-hotfix-EUI-4404
|
|
62
|
-
**EUI-4404** Fix rendering of read-only Collection field within editable Complex field
|
|
63
|
-
|
|
64
|
-
### Version 4.7.6-tab-not-defined-error"
|
|
65
|
-
**EUI-4562** Case details Active tasks tab on success not returning to active tasks page
|
|
66
|
-
|
|
67
|
-
### Version 4.7.6-hearings-tab
|
|
68
|
-
**EUI-4441** Add hearings tab in case details
|
|
69
|
-
**EUI-4441** Add hearings tab in case details
|
|
70
|
-
|
|
71
|
-
### Version 4.7.6-hearings-tab
|
|
72
|
-
**EUI-4441** Add hearings tab in case details
|
|
73
|
-
**EUI-4627** Can't access /hearings tab from URL
|
|
74
|
-
|
|
75
|
-
### Version 4.7.0-EUI-4412-order-fields-CYA-page
|
|
76
|
-
**EUI-4414** Field order on the CYA page changes
|
|
77
|
-
|
|
78
|
-
### Version 3.1.5-complex-type-showing-in-tab
|
|
79
|
-
**EUI-3798** 'Empty' complex type showing in tab (due to Label)
|
|
80
|
-
|
|
81
|
-
### Version 3.1.5-complex-field-check-answers
|
|
82
|
-
**EUI-4033** Ensured complex fields were interpolated on check you answers page
|
|
83
|
-
|
|
84
|
-
### Version 3.1.5-pcm-role-non-completion
|
|
85
|
-
### Version 4.3.1-EUI-4202-challenged-access-request-screen-functionality
|
|
86
|
-
**EUI-4202** Challenged Access Request screen functionality - happy path
|
|
87
|
-
|
|
88
|
-
### Version 4.5.0-rc.4
|
|
89
|
-
**EUI-4415** Label not rendering
|
|
90
|
-
|
|
91
|
-
### Version 4.3.1-EUI-3473-challenged-access-request-screen
|
|
92
|
-
**EUI-3473** Challenged Access Request screen for Case Access Management
|
|
93
|
-
|
|
94
|
-
### Version 4.3.1-switch-tabs
|
|
95
|
-
**EUI-3881** Fix bug that it can't switch case detail tabs after inserting prepended tabs
|
|
96
|
-
|
|
97
|
-
### Version 4.0.0-value-disappearing
|
|
98
|
-
**EUI-4364** Values disappearing after mid event callback when modifying case data
|
|
99
|
-
|
|
100
|
-
### Version 4.1.6-EUI-4343-case-field-validation-red-bar-missing
|
|
101
|
-
**EUI-4343** CCD case field validation indicator missing in WA2 release 2 part2 branch
|
|
102
|
-
### Version 4.3.2-rc3
|
|
103
|
-
**EUI-4430** Case reference field regression bugs
|
|
104
|
-
|
|
105
|
-
### Version 4.3.2-rc1
|
|
106
|
-
**EUI-4348** Filter options not retained for search
|
|
107
|
-
|
|
108
|
-
### Version 4.3.2
|
|
109
|
-
**EUI-4423** Populated file filed treated as empty when secure docstore toggle is enabled
|
|
110
|
-
**EUI-4346** Link a case event throws error
|
|
111
|
-
**EUI-4349** Reset caseDetailsPage Position to Top
|
|
112
|
-
|
|
113
|
-
### Version 4.3.0-rc.16-case-submission-error
|
|
114
|
-
**EUI-4462** "edit case event submission throws error"
|
|
115
|
-
|
|
116
|
-
### Version 4.3.4
|
|
117
|
-
**EUI-4210** Automated Test Failures
|
|
118
|
-
|
|
119
|
-
### Version 4.1.6-EUI-3528-4205-RHF-enhancements
|
|
120
|
-
**EUI-3528** "Retain Hidden Value" support for DynamicList fields, _only_ for `retain_hidden_value` flag set to `false` or unspecified
|
|
121
|
-
**EUI-4205** "Retain Hidden Value" - prevent deletion of Complex sub-field value if parent unknown
|
|
122
|
-
|
|
123
|
-
### Version 4.3.0
|
|
124
|
-
**EUI-4344** Document uploaded shows incorrect name
|
|
125
|
-
**EUI-4377** removing unwanted html tags from title
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
### Version 4.2.3
|
|
129
|
-
**EUI-3425** Hotfix for work already done. Secure uploading for new cases
|
|
130
|
-
|
|
131
|
-
### Version 4.2.2
|
|
132
|
-
**EUI-4161** Turn HRS documentLink URLs into relative URLs, as is done for dm-store URLs
|
|
133
|
-
|
|
134
|
-
### Version 4.2.1
|
|
135
|
-
**EUI-3425** Update Document Management Service to call new document upload API in ccd-case-ui-toolkit
|
|
136
|
-
**EUI-3426** Repoint node layer at the new document store API
|
|
137
|
-
|
|
138
|
-
### Version 4.2.0
|
|
139
|
-
**EUI-2276** Case field showing on summary screen when complex type field is hidden
|
|
140
|
-
**EUI-2829** Support Dynamic RadioList
|
|
141
|
-
**EUI-3621** Add support for searching cases wrt collections of fixed lists
|
|
142
|
-
**EUI-4095** Time stamp on case events incorrect
|
|
143
|
-
**EUI-4125** Update phme flag not seen in ExUI summary page
|
|
144
|
-
**EUI-4320** MultiSelect field params missing in search request query string
|
|
145
|
-
|
|
146
|
-
### Version 4.1.0
|
|
147
|
-
**EUI-2027** Button Labels (AA)
|
|
148
|
-
**EUI-2030** Colour Contrast (AA)
|
|
149
|
-
**EUI-3155** Non-Descriptive Headings (AA) - issues 02, 06, 05 (part of it)
|
|
150
|
-
**EUI-4118** Mandatory datetime picker fields are not giving required field errors
|
|
151
|
-
**EUI-1621** Date/time DISPLAY for Workbasket & Search Input & Results
|
|
152
|
-
**EUI-1692** DateTime Entry & Display Formatting for Complex Types
|
|
153
|
-
**EUI-2792** Date and Time entry (Testing Story)
|
|
154
|
-
**EUI-4155** WA post-MVP Pagination- Angular - My tasks (in Tasks list) - CCD UI Toolkit
|
|
155
|
-
**EUI-3049** Wrap and restyle date time picker component
|
|
156
|
-
**EUI-3051** Handle #DATETIMEENTRY field context
|
|
157
|
-
**EUI-3581** Field interpolation does not work for the field type MultiSelectList
|
|
158
|
-
**EUI-4244** SSCS - Midevent callbacks sending empty fields for optional empty document
|
|
159
|
-
|
|
160
|
-
### Version 4.0.0
|
|
161
|
-
**EUI-4227** Fixed an error with show/hide not working quite right in some configurations.
|
|
162
|
-
**EUI-2022** ExUI - Error Messages (Complex Type)
|
|
163
|
-
**EUI-4033** Ensured complex fields were interpolated on Check Your Answers page
|
|
164
|
-
**EUI-4077** Ensuring searchForCompletable not called if user is pui-case-manager
|
|
165
|
-
**EUI-2027** Accessibility amends for button labels
|
|
166
|
-
**EUI-3155** Accessibility amends for non-descriptive headings
|
|
167
|
-
**EUI-3550** Replace heading tags with spans on case edit pages
|
|
168
|
-
**EUI-2792** Datetime picker fixes after testing integration with webapp
|
|
169
|
-
**EUI-3825** Fix for missing FTPA tab contents.
|
|
170
|
-
**EUI-2017** ExUI - Navigate in table using keyboard
|
|
171
|
-
**EUI-2022** ExUI - Error Messages (A)
|
|
172
|
-
**EUI-2023** ExUI - Labels (A)
|
|
173
|
-
**EUI-3538** ExUI - FieldShowCondition failing on SearchInputFields and WorkBasketInputFields
|
|
174
|
-
**EUI-3466** ExUI - Spinner issue in demo MO unassigned cases page
|
|
175
|
-
**EUI-3497** ExUI - Unassigned cases does not show all unassigned cases
|
|
176
|
-
**EUI-3049** Create datetime picker for use in write date fields (and edit read date fields for consistency)
|
|
177
|
-
**EUI-3732** ExUI - Breathing space data not persisted on Previous button click with ExpUI Demo
|
|
178
|
-
**EUI-2569** ExUI - Labels not displaying in Case Heading
|
|
179
|
-
**EUI-3870** ExUI - Unresponsive and 'laggy' show-hide conditions
|
|
180
|
-
**EUI-3682** Callback Error still not showing proper error message in XUI screen
|
|
181
|
-
**EUI-3505** Applied fix to disable and enable collection remove button based on CRUD permissions
|
|
182
|
-
**EUI-2039** Changed Date Input fields to conform to accessibility standards
|
|
183
|
-
**EUI-2029** WCAG AA Status Message Fixes
|
|
184
|
-
**EUI-2739** Fix "retain hidden fields" functionality for Complex collection, nested Complex, and nested Complex collection types
|
|
185
|
-
**EUI-3622** Re-evaluate "retain hidden value" matrix linked to acceptance criteria
|
|
186
|
-
**EUI-3868** "Retain Hidden Value" matrix - support for Scenarios 5 and 8 for "retain = true"
|
|
187
|
-
**EUI-2744** EventToComplexTypes regression with hidden fields
|
|
188
|
-
**EUI-4106** Show/hide functionality
|
|
189
|
-
### Version 4.0.0-activity-tracker-unauthorised-beta
|
|
190
|
-
**EUI-4226** Fixed an issue with 401/403 errors ignoring that the user is unauthorised.
|
|
191
|
-
|
|
192
|
-
### Version 3.1.5-complex-hidden-collection-show
|
|
193
|
-
**EUI-3983** Fixed issue with show fields displaying momentarily before show-condition logic evaluated
|
|
194
|
-
|
|
195
|
-
### Version 3.1.6-case-field-labels-showing-on-summary-screen-when-complex-type-is-hidden
|
|
196
|
-
**EUI-2276** Case field showing on summary screen when complex type field is hidden
|
|
197
|
-
|
|
198
|
-
### Version 3.1.5-nested-multi-select-labels-theta
|
|
199
|
-
**EUI-3581** Fixed an issue with label placeholders not working for multiselects within complex fields or collections. Also fixed an issue with FixedRadioList fields showing the code, not the label. Finally,
|
|
200
|
-
fixed an issue with the rendering of complex collections on the Case Details tabs.
|
|
201
|
-
|
|
202
|
-
### Version 3.1.5-datetime-picker-validation
|
|
203
|
-
**EUI-4118** Add and improve validation to datetime picker
|
|
204
|
-
|
|
205
|
-
### Version 3.1.5-datetime-picker-validation
|
|
206
|
-
**EUI-4118** Add and improve validation to datetime picker
|
|
207
|
-
|
|
208
|
-
### Version 4.1.6-ccd-cve-fix
|
|
209
|
-
**EUI-4112** CVE fix for ccd toolkit
|
|
210
|
-
|
|
211
|
-
### Version 4.0.0-activity-tracker-unauthorised-beta
|
|
212
|
-
**EUI-4226** Fixed an issue with 401/403 errors ignoring that the user is unauthorised.
|
|
213
|
-
|
|
214
|
-
### Version 3.1.5-complex-hidden-collection-show
|
|
215
|
-
**EUI-3983** Fixed issue with show fields displaying momentarily before show-condition logic evaluated
|
|
216
|
-
|
|
217
|
-
### Version 4.1.0
|
|
218
|
-
**EUI-2027** Button Labels (AA)
|
|
219
|
-
**EUI-2030** Colour Contrast (AA)
|
|
220
|
-
**EUI-3155** Non-Descriptive Headings (AA) - issues 02, 06, 05 (part of it)
|
|
221
|
-
**EUI-4118** Mandatory datetime picker fields are not giving required field errors
|
|
222
|
-
**EUI-1621** Date/time DISPLAY for Workbasket & Search Input & Results
|
|
223
|
-
**EUI-1692** DateTime Entry & Display Formatting for Complex Types
|
|
224
|
-
**EUI-2792** Date and Time entry (Testing Story)
|
|
225
|
-
**EUI-4155** WA post-MVP Pagination- Angular - My tasks (in Tasks list) - CCD UI Toolkit
|
|
226
|
-
**EUI-3049** Wrap and restyle date time picker component
|
|
227
|
-
**EUI-3051** Handle #DATETIMEENTRY field context
|
|
228
|
-
**EUI-3581** Field interpolation does not work for the field type MultiSelectList
|
|
229
|
-
**EUI-4244** SSCS - Midevent callbacks sending empty fields for optional empty document
|
|
230
|
-
|
|
231
|
-
### Version 4.0.0-prepended-tabs-v3
|
|
232
|
-
**EUI-3777** Create prepended tabs on case view
|
|
233
|
-
|
|
234
|
-
### Version 4.0.0
|
|
235
|
-
**EUI-4227** Fixed an error with show/hide not working quite right in some configurations.
|
|
236
|
-
**EUI-2022** ExUI - Error Messages (Complex Type)
|
|
237
|
-
**EUI-4033** Ensured complex fields were interpolated on Check Your Answers page
|
|
238
|
-
**EUI-4077** Ensuring searchForCompletable not called if user is pui-case-manager
|
|
239
|
-
**EUI-2027** Accessibility amends for button labels
|
|
240
|
-
**EUI-3155** Accessibility amends for non-descriptive headings
|
|
241
|
-
**EUI-3550** Replace heading tags with spans on case edit pages
|
|
242
|
-
**EUI-2792** Datetime picker fixes after testing integration with webapp
|
|
243
|
-
**EUI-3825** Fix for missing FTPA tab contents.
|
|
244
|
-
**EUI-2017** ExUI - Navigate in table using keyboard
|
|
245
|
-
**EUI-2022** ExUI - Error Messages (A)
|
|
246
|
-
**EUI-2023** ExUI - Labels (A)
|
|
247
|
-
**EUI-3538** ExUI - FieldShowCondition failing on SearchInputFields and WorkBasketInputFields
|
|
248
|
-
**EUI-3466** ExUI - Spinner issue in demo MO unassigned cases page
|
|
249
|
-
**EUI-3497** ExUI - Unassigned cases does not show all unassigned cases
|
|
250
|
-
**EUI-3049** Create datetime picker for use in write date fields (and edit read date fields for consistency)
|
|
251
|
-
**EUI-3732** ExUI - Breathing space data not persisted on Previous button click with ExpUI Demo
|
|
252
|
-
**EUI-2569** ExUI - Labels not displaying in Case Heading
|
|
253
|
-
**EUI-3870** ExUI - Unresponsive and 'laggy' show-hide conditions
|
|
254
|
-
**EUI-3682** Callback Error still not showing proper error message in XUI screen
|
|
255
|
-
**EUI-3505** Applied fix to disable and enable collection remove button based on CRUD permissions
|
|
256
|
-
**EUI-2039** Changed Date Input fields to conform to accessibility standards
|
|
257
|
-
**EUI-2029** WCAG AA Status Message Fixes
|
|
258
|
-
**EUI-2739** Fix "retain hidden fields" functionality for Complex collection, nested Complex, and nested Complex collection types
|
|
259
|
-
**EUI-3622** Re-evaluate "retain hidden value" matrix linked to acceptance criteria
|
|
260
|
-
**EUI-3868** "Retain Hidden Value" matrix - support for Scenarios 5 and 8 for "retain = true"
|
|
261
|
-
**EUI-2744** EventToComplexTypes regression with hidden fields
|
|
262
|
-
**EUI-4106** Show/hide functionality
|
|
263
|
-
|
|
264
|
-
### Version 3.1.5-nested-multi-select-labels-theta
|
|
265
|
-
**EUI-3581** Fixed an issue with label placeholders not working for multiselects within complex fields or collections. Also fixed an issue with FixedRadioList fields showing the code, not the label. Finally,
|
|
266
|
-
fixed an issue with the rendering of complex collections on the Case Details tabs.
|
|
267
|
-
|
|
268
|
-
### Version 3.1.5-datetime-picker-validation
|
|
269
|
-
**EUI-4118** Add and improve validation to datetime picker
|
|
270
|
-
|
|
271
|
-
### Version 3.1.5-profile-call-before-event-trigger
|
|
272
|
-
**EUI-3335** profile call needs to happen first
|
|
273
|
-
|
|
274
|
-
### Version 3.1.2
|
|
275
|
-
**EUI-4013**
|
|
276
|
-
**EUI-4024**
|
|
277
|
-
**EUI-4029**
|
|
278
|
-
**EUI-4031**
|
|
279
|
-
|
|
280
|
-
### Version 3.1.2
|
|
281
|
-
Activity Tracker Performance changes
|
|
282
|
-
|
|
283
|
-
### Version 3.1.1
|
|
284
|
-
**EUI-3348** pre-select default organisation depends on PrepopulateToUsersOrganisation
|
|
285
|
-
|
|
286
|
-
### Version 3.0.3
|
|
287
|
-
**EUI-3505** OCMC: OCON9x paper response form button should be disabled continued...
|
|
288
|
-
|
|
289
|
-
### Version 3.0.0
|
|
290
|
-
**EUI-3997** Master release candidate
|
|
291
|
-
**EUI-2569** ExUI - Labels not displaying in Case Heading
|
|
292
|
-
**EUI-3870** ExUI - Unresponsive and 'laggy' show-hide conditions
|
|
293
|
-
**EUI-3682** Callback Error still not showing proper error message in XUI screen
|
|
294
|
-
**EUI-2039** Changed Date Input fields to conform to accessibility standards
|
|
295
|
-
|
|
296
|
-
### Version 2.79.7
|
|
297
|
-
**EUI-3638** ExUI - Activity Tracker not shown on UI as expected by business
|
|
298
|
-
**EUI-2925** Review implementation of Activity tracker in MC Demo Int env
|
|
299
|
-
|
|
300
|
-
### Version 2.79.6
|
|
301
|
-
**EUI-3770** Hotfix for previous pages not populating default field values.
|
|
302
|
-
|
|
303
|
-
### Version 2.79.5
|
|
304
|
-
**EUI-3797** Hotfix for missing content in the Payment History tab.
|
|
305
|
-
|
|
306
|
-
### Version 2.79.4
|
|
307
|
-
**EUI-3708** Fix for case submission regression.
|
|
308
|
-
**EUI-3728** Fix for labels showing on tabs that should be hidden.
|
|
309
|
-
|
|
310
|
-
### Version 2.79.3-mandatory-organisation-hotfix
|
|
311
|
-
**EUI-3674** Add organisation policy MANDATORY validator check
|
|
312
|
-
|
|
313
|
-
### Version 2.79.2
|
|
314
|
-
**EUI-3587** Fix "Print URL" pipe for rewriting remote Print Service URLs to a "local" version for the front-end
|
|
315
|
-
|
|
316
|
-
### Version 2.79.1
|
|
317
|
-
**EUI-3452** Fix to some issues on the Check your answers page.
|
|
318
|
-
|
|
319
|
-
### Version 2.79.0
|
|
320
|
-
**EUI-3548** WA integration
|
|
321
|
-
|
|
322
|
-
### Version 2.75.1
|
|
323
|
-
**EUI-3577** Fixing DynamicList regression bugs
|
|
324
|
-
|
|
325
|
-
### Version 2.75.0
|
|
326
|
-
**EUI-3267** Reintroducing the grey bars for fields shown by other fields
|
|
327
|
-
|
|
328
|
-
### Version 2.74.2
|
|
329
|
-
**EUI-3594** Incorporating Version 2.73.0-hotfix-error-message-display from hotfix branch
|
|
330
|
-
|
|
331
|
-
### Version 2.74.1
|
|
332
|
-
**EUI-3506** Non-Descriptive Headings (AA) - issue 04
|
|
333
|
-
|
|
334
|
-
### Version 2.73.5-ngmodel-deprecation
|
|
335
|
-
**EUI-3410** ngModel deprecation
|
|
336
|
-
|
|
337
|
-
### Version 2.73.2-collection-date-field
|
|
338
|
-
**EUI-2667** Fix to date field rendering within collections
|
|
339
|
-
|
|
340
|
-
### Version 2.73.0-hotfix-error-message-display
|
|
341
|
-
**EUI-3594** Fix issue with error message specifics not being displayed
|
|
342
|
-
|
|
343
|
-
### Version 2.73.0
|
|
344
|
-
**EUI-3222** Loading spinner
|
|
345
|
-
|
|
346
|
-
### Version 2.72.9-fix-case-submission
|
|
347
|
-
**EUI-3494** Fixed the missing case ID on case creation.
|
|
348
|
-
**EUI-3495** Fixed an issue where the user was return to Case list following case creation.
|
|
349
|
-
|
|
350
|
-
### Version 2.72.6-fix-filter-any-state
|
|
351
|
-
**EUI-3490** Fixed an issue with the Case list filter where "Any" state is selected.
|
|
352
|
-
|
|
353
|
-
### Version 2.72.5-remove-null-http-request-headers
|
|
354
|
-
**EUI-3464** Fix Document field uploads by removing setting of null HTTP "Accept" and "Content-Type" headers
|
|
355
|
-
|
|
356
|
-
### Version 2.72.4-check-your-answers
|
|
357
|
-
Fix EUI-3452 - fix for show/hide conditions on Check Your Answers page.
|
|
358
|
-
|
|
359
|
-
### Version 2.72.3-dynamic-list-null-values
|
|
360
|
-
EUI-3045 Handle null values appropriately.
|
|
361
|
-
|
|
362
|
-
### Version 2.72.2
|
|
363
|
-
EUI-3045 performance enhancements and 3045 work
|
|
364
|
-
|
|
365
|
-
### Version 2.72.1-do-not-send-empty-documents
|
|
366
|
-
Fix EUI-3403 - fixed a subsequent issue with empty documents being sent.
|
|
367
|
-
|
|
368
|
-
### Version 2.72.0-task-event-completion
|
|
369
|
-
**EUI-3229** Task event completion - part 2
|
|
370
|
-
|
|
371
|
-
### Version 2.71.4-optional-top-level-documents
|
|
372
|
-
Fix EUI-3403 - fix for optional top-level documents incorrectly showing.
|
|
373
|
-
|
|
374
|
-
### Version 2.71.3-conditional-show-perf
|
|
375
|
-
Fix EUI-3398 - don't submit labels with empty string values
|
|
376
|
-
|
|
377
|
-
### Version 2.71.2-conditional-show-perf
|
|
378
|
-
Fix EUI-3381 - fix for missing alert banner.
|
|
379
|
-
|
|
380
|
-
### Version 2.71.1-conditional-show-perf
|
|
381
|
-
Fix EUI-3375 - more tweaks to collections on data submission
|
|
382
|
-
|
|
383
|
-
### Version 2.71.0-conditional-show-perf
|
|
384
|
-
Release candidate for conditional show performance.
|
|
385
|
-
|
|
386
|
-
### Version 2.70.1-fix-alert-service
|
|
387
|
-
Fixes for case filtering.
|
|
388
|
-
|
|
389
|
-
### Version 2.70.0-fix-alert-service
|
|
390
|
-
Fix breaking changes of Alert Service
|
|
391
|
-
|
|
392
|
-
### Version 2.69.1-fix-replace-document-issue
|
|
393
|
-
**EUI-2243** Fix upload replacement document issue
|
|
394
|
-
|
|
395
|
-
### Version 2.69.0-color-contrast-aa
|
|
396
|
-
**EUI-2030** Change selected table row background colour to improve accessibility (AA)
|
|
397
|
-
|
|
398
|
-
### Version 2.68.16-prerelease-conditional-show-perf
|
|
399
|
-
EUI-3366 - CYA hide hidden fields
|
|
400
|
-
EUI-3284 - Form submission must include data in complex field values
|
|
401
|
-
EUI-3359 - Full stop in field names broke show hide
|
|
402
|
-
|
|
403
|
-
### Version 2.68.15-prerelease-conditional-show-perf
|
|
404
|
-
Don't submit labels if they are blank
|
|
405
|
-
|
|
406
|
-
### Version 2.68.14-prerelease-conditional-show-perf
|
|
407
|
-
**EUI-2830** Dynamic list fixes
|
|
408
|
-
|
|
409
|
-
### Version 2.68.13-prerelease-conditional-show-perf
|
|
410
|
-
We do need to submit labels
|
|
411
|
-
|
|
412
|
-
### Version 2.68.12-prerelease-conditional-show-perf
|
|
413
|
-
**EUI-3331** Problem with event_data submission
|
|
414
|
-
|
|
415
|
-
### Version 2.68.11-prerelease-conditional-show-perf
|
|
416
|
-
**EUI-3270** Improve performance of event forms.
|
|
417
|
-
Work around for case when profile data is not available.
|
|
418
|
-
Merge master to simplify final branch merge
|
|
419
|
-
|
|
420
|
-
### Version 2.68.10-prerelease-conditional-show-perf
|
|
421
|
-
**EUI-3168** fix regression issues and further improve performance
|
|
422
|
-
|
|
423
|
-
### Version 2.68.9-prerelease-conditional-show-perf
|
|
424
|
-
**EUI-3151** dynamic lists and nested complex in collection fixes
|
|
425
|
-
|
|
426
|
-
### Version 2.68.8-prerelease-conditional-show-perf
|
|
427
|
-
**EUI-3151** form validation and label fixes
|
|
428
|
-
|
|
429
|
-
### Version 2.68.7-prerelease-conditional-show-perf
|
|
430
|
-
**EUI-3151** Changes to make validation work properly and fix all the tests
|
|
431
|
-
|
|
432
|
-
### Version 2.68.6-prerelease-conditional-show-perf
|
|
433
|
-
**EUI-3151** Fix more problems caused by components not being registered. Fix problem with [hidden] not working inside inline template
|
|
434
|
-
|
|
435
|
-
### Version 2.68.5-prerelease-conditional-show-perf
|
|
436
|
-
**EUI-3151** Fix problems caused by components not being registered
|
|
437
|
-
|
|
438
|
-
### Version 2.68.4-prerelease-conditional-show-perf
|
|
439
|
-
**EUI-3151** Additional changes to fix probate regression during case creation
|
|
440
|
-
|
|
441
|
-
### Version 2.68.3-prerelease-conditional-show-perf
|
|
442
|
-
**EUI-3151** Fix probate regression during case creation
|
|
443
|
-
|
|
444
|
-
### Version 2.68.2-prerelease-conditional-show-perf
|
|
445
|
-
**EUI-3055** Fix regression in address field and tests
|
|
446
|
-
|
|
447
|
-
### Version 2.68.0-prerelease-conditional-show-perf
|
|
448
|
-
**EUI-3055** Better performance in edit forms through new show hide implementation
|
|
449
|
-
|
|
450
|
-
### Version 2.67.10-feature-toggle-work-allocation
|
|
451
|
-
**Feature Toggle Work Allocation** Hot Fix
|
|
452
|
-
|
|
453
|
-
### Version 2.67.6-task-event-completion
|
|
454
|
-
**EUI-2986** Task Event completion
|
|
455
|
-
|
|
456
|
-
### Version 2.67.9-ie-textbox-expand-issue
|
|
457
|
-
**EUI-2333** IE textbox expand issue
|
|
458
|
-
|
|
459
|
-
### Version 2.67.5-dynamiclist-fix-in-complex
|
|
460
|
-
**EUI-2350** Dynamic Lists in Complex Types
|
|
461
|
-
|
|
462
|
-
### Version 2.67.4-reset-button-and-keyboard-fix
|
|
463
|
-
**EUI-2989** GDS styles Checkbox: keyboard tab and spacebar not effective on Safari and Firefox
|
|
464
|
-
**EUI-2987** reset button not working on x-ui
|
|
465
|
-
|
|
466
|
-
### Version 2.67.3-tab-name-replaceAll
|
|
467
|
-
**EUI-3041** Use Tab names but use replaceAll
|
|
468
|
-
|
|
469
|
-
### Version 2.67.2-tab-name
|
|
470
|
-
**EUI-3041** Use Tab name instead of Index
|
|
471
|
-
|
|
472
|
-
### Version 2.67.1-focus-order
|
|
473
|
-
**EUI-2020** Accessibility amends for tabs and page load
|
|
474
|
-
|
|
475
|
-
### Version 2.67.0-performance-tabs
|
|
476
|
-
**EUI-2955** Improve performance time when loading by lazy loading
|
|
477
|
-
|
|
478
|
-
### Version 2.66.0
|
|
479
|
-
**EUI-2741** Improve performance time when loading a case with large hearing and judgement collections
|
|
480
|
-
|
|
481
|
-
### Version 2.65.8-media-viewer-hotfix
|
|
482
|
-
**EUI-2981** bug/EUI-2981-cannot-open-media-viewer-2
|
|
483
|
-
|
|
484
|
-
### Version 2.65.6
|
|
485
|
-
**EUI** bumping up
|
|
486
|
-
|
|
487
|
-
### Version 2.65.5
|
|
488
|
-
**EUI** bumping up
|
|
489
|
-
|
|
490
|
-
### Version 2.65.2-hidden-fields-revert
|
|
491
|
-
**EUI** Undoing retain hidden fields functionality
|
|
492
|
-
|
|
493
|
-
### Version 2.65.1
|
|
494
|
-
**EUI** Undoing retain hidden fields revert
|
|
495
|
-
|
|
496
|
-
### Version 2.65
|
|
497
|
-
**EUI** Catching up with releases
|
|
498
|
-
|
|
499
|
-
### Version 2.64.52-collection-permission
|
|
500
|
-
**EUI-1370** UI When using case role collection of complex types doesn't seem to work
|
|
501
|
-
|
|
502
|
-
### Version 2.64.50-case-share-hot-fix
|
|
503
|
-
* correct and cherry-pick the right commits
|
|
504
|
-
|
|
505
|
-
### Version 2.64.49-retain-hidden-value-complex-and-collection-types-fix
|
|
506
|
-
**EUI-2739** Fix "retain hidden fields" functionality for all field types, including Complex and Collection types
|
|
507
|
-
|
|
508
|
-
### Version 2.64.48-case-share-hot-fix
|
|
509
|
-
* determine whether a case sharable by supplementary_data
|
|
510
|
-
|
|
511
|
-
### Version 2.64.47-case-share-hot-fix
|
|
512
|
-
* variant base on 2.64.41-reinstate-EUI-2575
|
|
513
|
-
* add hot fix for case share for retaining case role
|
|
514
|
-
|
|
515
|
-
### Version 2.64.46-caselist-selected-check
|
|
516
|
-
**EUI-2740** Fix bug for the caselist check
|
|
517
|
-
|
|
518
|
-
### Version 2.64.45-caselist-selected-check
|
|
519
|
-
**EUI-2681** Fix bug for the caselist check
|
|
520
|
-
|
|
521
|
-
### Version 2.64.44-retain-hidden-value-fix-for-complex-types
|
|
522
|
-
**EUI-2681** Fix bug with check for complex field types
|
|
523
|
-
|
|
524
|
-
### Version 2.64.43-retain-hidden-value-fix-for-complex-types
|
|
525
|
-
**EUI-2681** Fix: Do not set a field control's value to `null` if it corresponds to a complex `CaseField` type
|
|
526
|
-
|
|
527
|
-
### Version 2.64.42-retain-hidden-value-support
|
|
528
|
-
**EUI-1783** Delete hidden field value except if `retain_hidden_value` flag is true
|
|
529
|
-
|
|
530
|
-
### Version 2.64.41-reinstate-EUI-2575
|
|
531
|
-
**EUI-2657** - Reinstate EUI-2575 (`use_case` query param), in line with the reversion in CCD Demo environment being undone
|
|
532
|
-
|
|
533
|
-
### Version 2.64.40-unasinged-cases-date-format
|
|
534
|
-
**EUI-2590** - unassinged-cases list date format
|
|
535
|
-
|
|
536
|
-
### Version 2.64.39-fix-datepipe-error
|
|
537
|
-
**EUI-2649** - EUI-2649-case-detail-is-broken
|
|
538
|
-
|
|
539
|
-
### Version 2.64.38-revert-EUI-2575
|
|
540
|
-
**EUI-2649** - Revert EUI-2575 (which changed `usecase` query param to `use_case`), due to reversion in CCD Demo environment
|
|
541
|
-
|
|
542
|
-
### Version 2.64.37-organisation-complex-field-type
|
|
543
|
-
**EUI-2087** - Search organisation support full UK address fields
|
|
544
|
-
|
|
545
|
-
### Version 2.64.36-hide-generic-callback-error-message
|
|
546
|
-
**EUI-2344** - Hide generic callback error message when there is a custom configured message provided by a Service
|
|
547
|
-
|
|
548
|
-
### Version 2.64.35-organisation-complex-field-type
|
|
549
|
-
**EUI-2086** - Search organisation
|
|
550
|
-
**EUI-2087** - Select organisation
|
|
551
|
-
**EUI-2089** - Save organisation
|
|
552
|
-
|
|
553
|
-
### Version 2.64.34-utc-local-date-fix
|
|
554
|
-
**EUI-1844** - Changed UTC to Local date view in event log
|
|
555
|
-
|
|
556
|
-
### Version 2.64.33-internal-search-api-url-update
|
|
557
|
-
**EUI-2575** - Update query param in Internal Search API URL from `usecase` to `use_case` (see RDM-8932)
|
|
558
|
-
|
|
559
|
-
### Version 2.64.32-org-service-handle-error
|
|
560
|
-
**EUI-2086** - unhappy path
|
|
561
|
-
|
|
562
|
-
### Version 2.64.31-mv-upgrade-prerelease - September 9 2020
|
|
563
|
-
**EUI-2370** - added case jurisdiction to media viewer controller
|
|
564
|
-
|
|
565
|
-
### Version 2.64.30-cacheable-org-service - Sept 8 2020
|
|
566
|
-
**EUI-2229** - cacheable organisation Service
|
|
567
|
-
|
|
568
|
-
### Version 2.64.29-case-list-selection - September 4 2020
|
|
569
|
-
**EUI-2103** - case selection
|
|
570
|
-
|
|
571
|
-
### Version 2.64.28-case-list-component-reset-sel-cases - September 2 2020
|
|
572
|
-
**EUI-2168** - reset selected cases on model change
|
|
573
|
-
|
|
574
|
-
### Version 2.64.27-mv-upgrade-prerelease - September 2 2020
|
|
575
|
-
**EUI-2370** - fixing previous release
|
|
576
|
-
|
|
577
|
-
### Version 2.64.26-mv-upgrade-prerelease - September 2 2020
|
|
578
|
-
**EUI-2370** - passed case id into media viewer
|
|
579
|
-
|
|
580
|
-
### Version 2.64.25-case-sharing-prerelease - August 27 2020
|
|
581
|
-
**EUI-2532** - removed org-policy dependency when sharing a case
|
|
582
|
-
|
|
583
|
-
### Version 2.64.24-case-sharing-prerelease - August 24 2020
|
|
584
|
-
**EUI-2500** - type.type instead of type.id
|
|
585
|
-
|
|
586
|
-
### Version 2.64.22-consumer-sorting-prerelease - August 17 2020
|
|
587
|
-
**EUI-1731** - Fix for sort behaviour - passing type
|
|
588
|
-
|
|
589
|
-
### Version 2.64.21-case-sharing-prerelease - August 11 2020
|
|
590
|
-
**EUI-2186** - Disabled case share selection if no organisation policy
|
|
591
|
-
|
|
592
|
-
### Version 2.64.20-consumer-sorting - August 06 2020
|
|
593
|
-
**EUI-1731** - Sort Behaviour in Manage Cases - Task 3
|
|
594
|
-
|
|
595
|
-
### Version 2.64.19-security-fix - July 31 2020
|
|
596
|
-
**EUI-2115** - CaseListComponent - Dependency updates to fix security vulnerabilities
|
|
597
|
-
|
|
598
|
-
### Version 2.64.14-security-fix - July 29 2020
|
|
599
|
-
**EUI-2115** - CaseListComponent
|
|
600
|
-
|
|
601
|
-
### Version 2.64.13-security-fix - July 29 2020
|
|
602
|
-
**EUI-2115** - CaseListComponent
|
|
603
|
-
|
|
604
|
-
### Version 2.64.12-case-sharing-prerelease - July 28 2020
|
|
605
|
-
**EUI-2115** - CaseListComponent
|
|
606
|
-
|
|
607
|
-
### Version 2.64.10-elastic-search-prerelease - July 23 2020
|
|
608
|
-
**EUI-1753** - Elastic Search Endpoint
|
|
609
|
-
|
|
610
|
-
### Version 2.64.6-case-sharing-prerelease - June 30 2020
|
|
611
|
-
**EUI-2185** - Reset case selection link shows for other jurisdictions eg: Probate. Fixed.
|
|
612
|
-
|
|
613
|
-
### Version 2.64.5-case-sharing-prerelease - June 23 2020
|
|
614
|
-
**EUI-1938** - Only available to professional users - Case list selection - MC
|
|
615
|
-
**EUI-2101** - Share case styling issue
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
### Version 2.64.4-EUI-1940-prerelease - March 3 2020
|
|
619
|
-
**EUI-1940** - Case list selection for sharing a case
|
|
620
|
-
|
|
621
|
-
### Version 2.64.3-EUI-1610-prerelease - March 3 2020
|
|
622
|
-
**EUI-1610** - Importing rx-polling from npmjs rather than github
|
|
623
|
-
|
|
624
|
-
### Version 2.64.2-EUI-1610-prerelease - March 2 2020
|
|
625
|
-
**EUI-1610** - Changed import strategy for rx-polling
|
|
626
|
-
**EUI-1476** - Continued activity logging when browser inactive
|
|
627
|
-
|
|
628
|
-
### Version 2.64.0-prerelease - January 30 2020
|
|
629
|
-
***CCD-17.1**
|
|
630
|
-
|
|
631
|
-
### Version 2.63.1-RDM-6719-prerelease - January 6 2020
|
|
632
|
-
***RDM-6719** Add Banner Feature to CCD UI
|
|
633
|
-
2.64.0-prerelease
|
|
634
|
-
|
|
635
|
-
### Version 2.63.0 - December 18 2019
|
|
636
|
-
release from master branch
|
|
637
|
-
|
|
638
|
-
### Version 2.63.0-RDM-5875-paydemo
|
|
639
|
-
**RDM-6635** - Bulk scanning transaction page integration into CCD web component
|
|
640
|
-
|
|
641
|
-
### Version 2.62.29-RDM-6887-prerelease - December 17 2019
|
|
642
|
-
***RDM-6887** Remove duplicate display context from data store endpoint
|
|
643
|
-
|
|
644
|
-
### Version 2.62.28-RDM-6061-prerelease - December 17 2019
|
|
645
|
-
**RDM-6061** - JS error when a non-available case field is used in showCondition
|
|
646
|
-
|
|
647
|
-
### Version 2.62.26-RDM-6716-prerelease - December 17 2019
|
|
648
|
-
**RDM-6716** default '--select a value--' bug fix for fixed list
|
|
649
|
-
|
|
650
|
-
### Version 2.62.27-RDM-6555-prerelease - December 12 2019
|
|
651
|
-
***RDM-6555** Address Current known security vulnerabilities in ccd-case-ui-toolkit
|
|
652
|
-
|
|
653
|
-
### Version 2.62.25-RDM-5007-prerelease - December 10 2019
|
|
654
|
-
**RDM-5007** CaseField must be READONLY if user has no UPDATE rights
|
|
655
|
-
|
|
656
|
-
### Version 2.62.24-RDM-5303-prerelease - December 9 2019
|
|
657
|
-
**RDM-5303** Document file name disappears when you come back to the page from a previous page
|
|
658
|
-
**RDM-6135** Collection item is hidden when navigating back from Previous page
|
|
659
|
-
|
|
660
|
-
### Version 2.62.23-RDM-4324-prerelease - December 5 2019
|
|
661
|
-
**RDM-4324** DisplayOrder required for ComplexType elements
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
### Version 2.62.22-RDM-4837-prerelease
|
|
665
|
-
**RDM-4837** - Field interpolation syntax is displayed if the source field is NULL
|
|
666
|
-
|
|
667
|
-
### Version 2.62.21-RDM-4335-prerelease
|
|
668
|
-
**RDM-4335** - Implement and consume external POST Create Case endpoint in API v2
|
|
669
|
-
|
|
670
|
-
### Version 2.62.20-RDM-5883-prerelease - November 11 2019
|
|
671
|
-
**RDM-5883** - Implement and consume external GET Printable Documents endpoint in API v2
|
|
672
|
-
|
|
673
|
-
### Version 2.62.19-RDM-6084-prerelease November 8 2019
|
|
674
|
-
**RDM-6084** - Unable to open case in new tab from filter/search results pages
|
|
675
|
-
|
|
676
|
-
### Version 2.62.18-RDM-5296-prerelease
|
|
677
|
-
**RDM-5296** Table Collection View - Case Link is not displayed as a link
|
|
678
|
-
**RDM-5293** Table Collection View - Data from the first complex type is repeated for all collection items
|
|
679
|
-
|
|
680
|
-
### Version 2.60.5-RDM-6350-RC1-prerelease
|
|
681
|
-
**RDM-6350** - Fix for AboutToStart callback not showing errors correctly in UI
|
|
682
|
-
|
|
683
|
-
### Version 2.60.2-RDM-5928-RC1-prerelease
|
|
684
|
-
**RDM-6055** [Immigration and Asylum]- PDF file format is not supported by MV
|
|
685
|
-
|
|
686
|
-
### Version 2.60.2-RDM-5928-RC1-prerelease
|
|
687
|
-
**RDM-5928** [RC15.01] Show/Hide field within a Complextype field having value is not displayed
|
|
688
|
-
|
|
689
|
-
### Version 2.60.1-RDM-5582-RC1-prerelease
|
|
690
|
-
**RDM-5196** change the way search result component handles routing to case details(#406)
|
|
691
|
-
**RDM-4617** emitter for case view and draft store
|
|
692
|
-
**RDM-5310 ** ComplexElementsOnEvent: Proceed button does not render correctly when a Collection in a Complex is referenced
|
|
693
|
-
**RDM-4073 ** UI refactoring: introduce utility methods on CaseField isCollection and isCollectionOfComplex
|
|
694
|
-
**RDM-4135** Integrate Media Viewer
|
|
695
|
-
**RDM-5582** Upgrade MV to new version (Annotations support)
|
|
696
|
-
|
|
697
|
-
### Version 2.59.4 - August 19 2019
|
|
698
|
-
Revert 5398 - Document in collections
|
|
699
|
-
|
|
700
|
-
### Version 2.59.3 - August 19 2019
|
|
701
|
-
REVERT | **RDM-5310** Fix for ComplexElementsOnEvent when used with CRUD on Complex Type
|
|
702
|
-
|
|
703
|
-
### Version 2.59.2 - August 19 2019
|
|
704
|
-
**RDM-5072** remove some bad code introduced in WriteAddressFieldComponent
|
|
705
|
-
|
|
706
|
-
### Version 2.59.1 - August 15 2019
|
|
707
|
-
**RDM-5398** Allow file upload document type whitelist
|
|
708
|
-
|
|
709
|
-
### Version 2.59.0 - August 15 2019
|
|
710
|
-
**RDM-4544** Allow file upload document type whitelist
|
|
711
|
-
|
|
712
|
-
### Version 2.58.19 - August 15 2019
|
|
713
|
-
**RDM-5310** Fix for ComplexElementsOnEvent when used with CRUD on Complex Type
|
|
714
|
-
|
|
715
|
-
### Version 2.58.18 - August 14 2019
|
|
716
|
-
**CLEAN RELEASE OF v2.58.13** Pay Component Upgrade
|
|
717
|
-
|
|
718
|
-
### Version 2.58.16 - August 13 2019
|
|
719
|
-
**RDM-4068** CRUD permissions on elements within complex types
|
|
720
|
-
|
|
721
|
-
### Version 2.58.15 - August 12 2019
|
|
722
|
-
**RDM-5604** Object instantiation with curly braces breaks read-label-field component
|
|
723
|
-
|
|
724
|
-
### Version 2.58.14 - August 07 2019
|
|
725
|
-
**RDM-4073** Ui refactoring: Introduce utility methods on CaseField isCollection and isCollectionOfComplex
|
|
726
|
-
|
|
727
|
-
### Version 2.58.13 - July 30 2019
|
|
728
|
-
**RDM-5318** Changes to make Workbasket tolerant of missing defaults
|
|
729
|
-
|
|
730
|
-
### Version 2.58.12 - August 01 2019
|
|
731
|
-
**RDM-5313** Inline mandatory validation error to be displayed for document upload field
|
|
732
|
-
|
|
733
|
-
### Version 2.58.11 - July 29 2019
|
|
734
|
-
**RDM-4692** ccd-write-address-field id fix
|
|
735
|
-
|
|
736
|
-
### Version 2.58.10 - July 26 2019
|
|
737
|
-
**RDM-5053** Dynamic list: Page Show condition fix
|
|
738
|
-
|
|
739
|
-
### Version 2.58.9 - July 19 2019
|
|
740
|
-
**RDM-5031** redirect to case-list when user do not have access to the case after an event
|
|
741
|
-
|
|
742
|
-
### Version 2.58.8 - July 12 2019
|
|
743
|
-
**RDM-4673** Show/Hide condition handling on New Collection View UI change
|
|
744
|
-
|
|
745
|
-
### Version 2.58.7 - July 11 2019
|
|
746
|
-
**RDM-4121** Console error when trying to Remove a collection item that has complex field with a collection item
|
|
747
|
-
**RDM-3480** Document links getting lost in Mandatory field on Complex Type
|
|
748
|
-
|
|
749
|
-
### Version 2.58.6 - July 10 2019
|
|
750
|
-
**RDM-5044** Fix for Field interpolation is broken on workbasket results
|
|
751
|
-
|
|
752
|
-
### Version 2.58.5 - July 09 2019
|
|
753
|
-
**RDM-4279** Fix for DAC Focus Order
|
|
754
|
-
|
|
755
|
-
### Version 2.58.3 - July 02 2019
|
|
756
|
-
**RDM-5168** Sumbitted Callback fix
|
|
757
|
-
|
|
758
|
-
### Version 2.58.2 - July 01 2019
|
|
759
|
-
**RDM-4266** DAC - List mark-up
|
|
760
|
-
**RDM-4274** DAC - Non-Descriptive form fields
|
|
761
|
-
**RDM-4282** DAC - no postcode link P1 - Colour contrast
|
|
762
|
-
|
|
763
|
-
### Version 2.58.1 - July 1 2019
|
|
764
|
-
**RDM-4525** Remove unused id on write fixed list field template as breaking external tests.
|
|
765
|
-
|
|
766
|
-
### Version 2.58.0 - June 27 2019
|
|
767
|
-
**RDM-4890** Integrate New Postcode Lookup into CCD
|
|
768
|
-
**RDM-3782** Previous Case Reference data is displayed until new data is loaded
|
|
769
|
-
**RDM-4906** Payment web-component v1.8.6 integration in CCD
|
|
770
|
-
|
|
771
|
-
### Version 2.57.0 - June 26 2019
|
|
772
|
-
**RDM-4525** Ordering of fixed lists
|
|
773
|
-
|
|
774
|
-
### Version 2.56.0 - June 25 2019
|
|
775
|
-
**RDM-2987** Markdown supporting Iterating collection items when accessing Complex elements
|
|
776
|
-
|
|
777
|
-
### Version 2.55.2 - June 24 2019
|
|
778
|
-
**RDM-4512** Remove console warning message
|
|
779
|
-
|
|
780
|
-
### Version 2.55.1 - June 19 2019
|
|
781
|
-
**RDM-4264** DAC - Duplicate postcode input IDs
|
|
782
|
-
|
|
783
|
-
### Version 2.55.0 - June 13 2019
|
|
784
|
-
**RDM-4781** RDM-4781-Data not being shown on multi-select list
|
|
785
|
-
|
|
786
|
-
### Version 2.54.0 - June 07 2019
|
|
787
|
-
**RDM-4336** RDM-4336 New external V2 Create Event endpoint
|
|
788
|
-
|
|
789
|
-
### Version 2.53.0 - June 07 2019
|
|
790
|
-
**RDM-4537** Case List Filters extraction and new contract
|
|
791
|
-
|
|
792
|
-
### Version 2.52.0 - June 07 2019
|
|
793
|
-
**RDM-2804** OR and Not Equals support for Show and Hide
|
|
794
|
-
|
|
795
|
-
### Version 2.51.1 - June 07 2019
|
|
796
|
-
**RDM-4927** | Fixed list not populating values for collection fields, Unit test fixes
|
|
797
|
-
|
|
798
|
-
### Version 2.51.0 - May 29 2019
|
|
799
|
-
**RDM-3201** Dynamic Fixed Lists (Using service callbacks)
|
|
800
|
-
|
|
801
|
-
### Version 2.50.2 - May 29 2019
|
|
802
|
-
**RDM-4687** Continue button is not enabled for a mandatory collection field that includes show/hide conditions inside complex fields
|
|
803
|
-
|
|
804
|
-
### Version 2.50.1 - May 29 2019
|
|
805
|
-
**RDM-4622** Page Show Conditions not working as expected in CaseEventToFields
|
|
806
|
-
|
|
807
|
-
### Version 2.50.0 - May 28 2019
|
|
808
|
-
**RDM-4537** Case List Filters extraction and new contract
|
|
809
|
-
|
|
810
|
-
### Version 2.49.2 - May 21 2019
|
|
811
|
-
**RDM-876** Hide print button when not configured
|
|
812
|
-
|
|
813
|
-
### REVRTED Version 2.49.0 - May 14 2019
|
|
814
|
-
**RDM-4537** Case List Filters extraction and new contract
|
|
815
|
-
|
|
816
|
-
### Version 2.48.0 - May 7 2019
|
|
817
|
-
**RDM-4575** search filters definition service
|
|
818
|
-
|
|
819
|
-
### Version 2.47.0 - May 7 2019
|
|
820
|
-
**RDM-4574** Create Case Filters componant retrieve jurisdiction internally
|
|
821
|
-
|
|
822
|
-
### Version 2.46.0 - May 1 2019
|
|
823
|
-
**RDM-3496** Case View of Nested Complex Types - Collection of complex types within complex types
|
|
824
|
-
|
|
825
|
-
### Version 2.45.0 - April 29 2019
|
|
826
|
-
**RDM-3460** Complex element *only* as list screen input
|
|
827
|
-
|
|
828
|
-
### Version 2.43.0 - April 29 2019
|
|
829
|
-
**RDM-4386** Make print, event selector and history tab optional but present by default
|
|
830
|
-
**RDM-4130** Extract Results List Component to toolkit
|
|
831
|
-
|
|
832
|
-
### Version 2.42.3 - April 23 2019
|
|
833
|
-
**RDM-3940** Add Hide and Show support to new ComplexTypeToEvent mapping
|
|
834
|
-
|
|
835
|
-
### Version 2.42.2 - April 17 2019
|
|
836
|
-
**RDM-3325/4591** - Text field whitespaces fix
|
|
837
|
-
|
|
838
|
-
### Version 2.42.1 - April 16 2019
|
|
839
|
-
**RDM-3897** - Add optional property casereference to the CaseEventData object
|
|
840
|
-
|
|
841
|
-
### Version 2.42.0 - April 15 2019
|
|
842
|
-
**RDM-4184** - Remove Fixed History Tab
|
|
843
|
-
|
|
844
|
-
### Version 2.41.1 - April 12 2019
|
|
845
|
-
**RDM-3525-Bug-Fix** - Disable previous button and cancel link on click on submit
|
|
846
|
-
|
|
847
|
-
### Version 2.41.0 - April 11 2019
|
|
848
|
-
**RDM-3325-Firefox-Bug-Fix** - Mandatory Text field breaks the UI on Firefox
|
|
849
|
-
**RDM-4521** - Confirmation green bar not displayed
|
|
850
|
-
|
|
851
|
-
### Version 2.39.0 - March 27 2019
|
|
852
|
-
**RDM-3325** - CCD does not apply validation rules to text fields containing only whitespace characters
|
|
853
|
-
|
|
854
|
-
### Version 2.38.0 - March 26 2019
|
|
855
|
-
**RDM-4190** - Case Timeline integrated with Demo app
|
|
856
|
-
|
|
857
|
-
### Version 2.37.0 - March 15 2019
|
|
858
|
-
**RDM-2348** - Grey bar for on same page hide and show of fields
|
|
859
|
-
|
|
860
|
-
### Version 2.36.1 - March 15 2019
|
|
861
|
-
**RDM-4177** - Event Selector fix
|
|
862
|
-
|
|
863
|
-
### Version 2.36.0 - March 14 2019
|
|
864
|
-
**RDM-4177** - New Event Selector contract
|
|
865
|
-
|
|
866
|
-
### Version 2.35.0 - March 12 2019
|
|
867
|
-
**RDM-4187** - Add new Case Timeline Component
|
|
868
|
-
|
|
869
|
-
### Version 2.34.0 - March 11 2019
|
|
870
|
-
**RDM-3699** - Font size inconsistencies throughout CCD
|
|
871
|
-
|
|
872
|
-
### Version 2.33.0 - March 7 2019
|
|
873
|
-
**RDM-4233** - demo case progression fix
|
|
874
|
-
**RDM-4109** - flexible case history tab component
|
|
875
|
-
|
|
876
|
-
### Version 2.32.0 - March 6 2019
|
|
877
|
-
**RDM-3471** - As a user I am able to view collections in table (columns) without accordions
|
|
878
|
-
**RDM-3472** - As a user I can expand/collapse collection table rows - case details
|
|
879
|
-
**RDM-3473** - As a user viewing collection table on case details I can sort
|
|
880
|
-
|
|
881
|
-
### Version 2.31.0 - March 4 2019
|
|
882
|
-
**RDM-3972** - Case list and seach in CCD does not show the case reference number with hyphen
|
|
883
|
-
**RDM-3936** - Update Court staff footer to provide seperate info for each service
|
|
884
|
-
|
|
885
|
-
### Version 2.30.0 - March 1 2019
|
|
886
|
-
**RDM-RDM-4009** - New Search API V2 endpoint
|
|
887
|
-
|
|
888
|
-
### Version 2.29.0 - February 28 2019
|
|
889
|
-
**RDM-3916** - Move create case filters to toolkit and implement new contract
|
|
890
|
-
|
|
891
|
-
### Version 2.27.1 - February 22 2019
|
|
892
|
-
**RDM-3430** - Run polling outside angular zone
|
|
893
|
-
|
|
894
|
-
### Version 2.28.0 - February 27 2019
|
|
895
|
-
**RDM-4109** - Management web consuming the new case history base type
|
|
896
|
-
|
|
897
|
-
### Version 2.27.0 - February 21 2019
|
|
898
|
-
**RDM-2986** - New ComplexType to Events mapping
|
|
899
|
-
|
|
900
|
-
### Version 2.26.0 - February 19 2019
|
|
901
|
-
**RDM-3915** - Extract Case Create filters component as is
|
|
902
|
-
|
|
903
|
-
### Version 2.25.0 - February 13 2019
|
|
904
|
-
**RDM-3820** - New contract - extract Case Search Form component
|
|
905
|
-
|
|
906
|
-
### Version 2.24.1 - February 13 2019
|
|
907
|
-
**RDM-2963** changed initialisation values to null
|
|
908
|
-
|
|
909
|
-
### Version 2.24.0 - February 12 2019
|
|
910
|
-
**RDM-3821** - Extract Case Search Form to ui-toolkit as is
|
|
911
|
-
|
|
912
|
-
### Version 2.23.5 - February 08 2019
|
|
913
|
-
**Test Fixes** - Upgrade to Chrome Headless
|
|
914
|
-
|
|
915
|
-
### Version 2.23.4 - February 08 2019
|
|
916
|
-
**RDM-3675** - fix to image sourcing
|
|
917
|
-
|
|
918
|
-
### Version 2.23.3 Beta-v3 - February 07 2019
|
|
919
|
-
**RDM-3695/RDM-3752** - CRUD contract on Collection Items FE Changes Beta-v3
|
|
920
|
-
|
|
921
|
-
### Version 2.23.2 Beta-v2 - February 07 2019
|
|
922
|
-
**RDM-3695/RDM-3752** - CRUD contract on Collection Items FE Changes Beta-v2
|
|
923
|
-
|
|
924
|
-
### Version 2.23.1 Beta - February 07 2019
|
|
925
|
-
**RDM-3695/RDM-3752** - CRUD contract on Collection Items FE Changes Beta
|
|
926
|
-
|
|
927
|
-
### Version 2.23.0 - February 06 2019
|
|
928
|
-
**RDM-3799** - New case view contract.
|
|
929
|
-
**RDM-3545** - Case Linking - Error text missing when value input into field of type CaseLink fails validation on event
|
|
930
|
-
|
|
931
|
-
### Version 2.22.2 - Beta Release - February 02 2019
|
|
932
|
-
**RDM-3849** - Fixed hide show not enabled
|
|
933
|
-
|
|
934
|
-
### Version 2.22.0 - January 25 2019
|
|
935
|
-
**RDM-3675** - Extraction of Case View into toolkit
|
|
936
|
-
|
|
937
|
-
### Version 2.21.2 - January 22 2019
|
|
938
|
-
**RDM-3584** - Previous page data to be sent on Midevent callback
|
|
939
|
-
|
|
940
|
-
### Version 2.21.0 - January 14 2019
|
|
941
|
-
**RDM-2806** - Markdown in CYA displays the actual Markdown (used for Section headings)
|
|
942
|
-
**RDM-3401, RDM-3403, RDM-3404, RDM-3409, RDM-3410** - Accessibility fixes
|
|
943
|
-
|
|
944
|
-
### Version 2.20.2 - January 10 2019
|
|
945
|
-
**RDM-3628** - revert for CRUD contract on Collection Items - Standard API
|
|
946
|
-
|
|
947
|
-
### Version 2.20.1 - January 9 2019
|
|
948
|
-
**RDM-3628** - Add null check for CaseLinks
|
|
949
|
-
|
|
950
|
-
### Version 2.20.0 - January 9 2019
|
|
951
|
-
**RDM-2455** - CRUD contract on Collection Items - Standard API
|
|
952
|
-
|
|
953
|
-
### Version 2.19.1 - January 9 2019
|
|
954
|
-
**RDM-3594** - Fix failed regex (callback) validation not being displayed in the Error Box
|
|
955
|
-
|
|
956
|
-
### Version 2.19.0 - January 9 2019
|
|
957
|
-
**RDM-3651** - Update Check Your Answer wording
|
|
958
|
-
|
|
959
|
-
### Version 2.18.0 - January 8 2019
|
|
960
|
-
**RDM-3574** - UI Toolkit: Use Post/Put/Get/Delete Draft endpoint in API v2
|
|
961
|
-
|
|
962
|
-
### Version 2.17.0 - December 18 2018
|
|
963
|
-
**RDM-3501** - UI Toolkit: Use Get Profile API v2
|
|
964
|
-
|
|
965
|
-
### Version 2.15.0 - December 14 2018
|
|
966
|
-
**RDM-2323** - Support field concatenation in List / results views
|
|
967
|
-
|
|
968
|
-
### Version 2.14.0 - December 14 2018
|
|
969
|
-
**RDM-3502** - UI Toolkit: Use Validate API v2
|
|
970
|
-
|
|
971
|
-
### Version 2.13.0 - December 12 2018
|
|
972
|
-
**RDM-3512** - Implement internal Get Trigger for Draft endpoint in API v2
|
|
973
|
-
|
|
974
|
-
### Version 2.12.1 - December 12 2018
|
|
975
|
-
**RDM-3418** - BUG FIX - Validation errors prevents navigation
|
|
976
|
-
|
|
977
|
-
### Version 2.12.0 - December 10 2018
|
|
978
|
-
**RDM-3256** - Save and Resume content changes
|
|
979
|
-
|
|
980
|
-
**Revert-RDM-3284** - Revert RDM-3284 until Backend changes are completely implemented
|
|
981
|
-
|
|
982
|
-
**RDM-2974** - Implement the `<BR>` style for Markdown linebreaks
|
|
983
|
-
|
|
984
|
-
### Version 2.11.0 - December 07 2018 - *Deprecated Version*
|
|
985
|
-
**RDM-3284** - CRUD contract on Collection for Add new item
|
|
986
|
-
|
|
987
|
-
### Version 2.10.0 - December 06 2018
|
|
988
|
-
**RDM-3484** - Start consuming new start event internal API endpoint (mgmt web and demo app).
|
|
989
|
-
|
|
990
|
-
### Version 2.9.0 - December 5 2018
|
|
991
|
-
**RDM-2009** - ComplexType element (non-collection) in Labels (with markdown) & show/hide
|
|
992
|
-
**RDM-3391** - Radio option should be selected when clicked on the label text
|
|
993
|
-
|
|
994
|
-
### Version 2.8.1 - November 28 2018
|
|
995
|
-
**RDM-3463** - Update dependency on compodoc to Version 1.1.7, to eliminate vulnerability introduced by compromised version (> 3.3.4) of event-stream package.
|
|
996
|
-
|
|
997
|
-
### Version 2.8.0 - November 22 2018
|
|
998
|
-
**RDM-3427** - Start consuming new start case internal API endpoint (mgmt web and demo).
|
|
999
|
-
|
|
1000
|
-
### Version 2.7.0 - November 22 2018
|
|
1001
|
-
**RDM-2803** - Hide & Show to support multiple ANDs and CONTAINS.
|
|
1002
|
-
**RDM-1893** - As a user I am able to see fixed list as a radio buttoned list - New Type 'RadioButtonList'
|
|
1003
|
-
|
|
1004
|
-
### Version 2.6.0 - November 20 2018
|
|
1005
|
-
**RDM-3238** - Support for case linking.
|
|
1006
|
-
|
|
1007
|
-
### Version 2.5.1 - November 15 2018
|
|
1008
|
-
**RDM-3230** - Small patch to export profile service.
|
|
1009
|
-
|
|
1010
|
-
### Version 2.5.0 - November 14 2018
|
|
1011
|
-
**RDM-3000** - Support for Midevent Callback (Display of Errors and Warning messages)
|
|
1012
|
-
|
|
1013
|
-
### Version 2.4.0 - November 12 2018
|
|
1014
|
-
**RDM-3230** - Up version of angular to fix Router bug angular/angular#26496
|
|
1015
|
-
|
|
1016
|
-
### Version 2.3.0 - November 09 2018
|
|
1017
|
-
**RDM-3230** - Relax versions for yarn and npm in engine section.
|
|
1018
|
-
|
|
1019
|
-
### Version 2.2.0 - November 09 2018
|
|
1020
|
-
**RDM-3230** - Heroku publish script and simplifying deployment process. Fixing builds steps and removing postinstall which now is heroku-postbuild and does not affect pipeline or other teams now.
|
|
1021
|
-
|
|
1022
|
-
### Version 2.1.0 - November 08 2018
|
|
1023
|
-
**RDM-3230** - Demo app published to Heroku. New library directory structure. Reorganising the code. Refactor old rxjs 5 syntax to 6. Fixes to the lib around how event trigger is being loaded and how router handles loading non existent pages.
|
|
1024
|
-
|
|
1025
|
-
### Version 2.0.0 - November 06 2018
|
|
1026
|
-
**RDM-3064** - Case progression: Better component contract
|
|
1027
|
-
|
|
1028
|
-
### Version 1.2.32 - November 06 2018
|
|
1029
|
-
**RDM-3230** - Fix to emit event id when submitting in case create or progress components. Updated stub. Updated styling of demo app.
|
|
1030
|
-
|
|
1031
|
-
### Version 1.2.31 - November 03 2018
|
|
1032
|
-
**RDM-3230** - Fix alert error when going to first page if no page param or no fields or pages in data specified.
|
|
1033
|
-
|
|
1034
|
-
### Version 1.2.30 - November 03 2018
|
|
1035
|
-
**RDM-3230** - Fix issue with routing to start page broken when non existent page is requested.
|
|
1036
|
-
|
|
1037
|
-
### Version 1.2.29 - October 31 2018
|
|
1038
|
-
**RDM-3230** - Add missing providers in CaseEditorModule and write up README of demo app.
|
|
1039
|
-
|
|
1040
|
-
### Version 1.2.28 - October 29 2018
|
|
1041
|
-
**RDM-3230** - Vanilla app to POC the case progression facade components
|
|
1042
|
-
|
|
1043
|
-
### Version 1.2.27 - October 29 2018
|
|
1044
|
-
**RDM-1202** - Custom case event field labels and hint texts
|
|
1045
|
-
|
|
1046
|
-
### Version 1.2.24 - October 19 2018
|
|
1047
|
-
**RDM-3064** Add CaseCreateComponent and CaseProgressComponent to NgModule.
|
|
1048
|
-
|
|
1049
|
-
### Version 1.2.23 - October 19 2018
|
|
1050
|
-
**RDM-3064** Case progression: Merge master
|
|
1051
|
-
|
|
1052
|
-
### Version 1.2.22 - October 19 2018
|
|
1053
|
-
**RDM-3064** Case progression: Better component contract + Facilitate configuration of case progression component
|
|
1054
|
-
|
|
1055
|
-
### Version 1.2.21 - October 18 2018
|
|
1056
|
-
**RDM-3144** - Merged changes from 1.2.18 & 1.2.20
|
|
1057
|
-
|
|
1058
|
-
### Version 1.2.20 - October 18 2018
|
|
1059
|
-
**RDM-3144** - Updates on tags
|
|
1060
|
-
|
|
1061
|
-
### Version 1.2.19 - October 18 2018
|
|
1062
|
-
**RDM-3144** - Added missing exports
|
|
1063
|
-
|
|
1064
|
-
### Version 1.2.18 - October 18 2018
|
|
1065
|
-
**RDM-3178** + **RDM-3179** + bug fix to cancel on CYA page of create case event with S&R
|
|
1066
|
-
|
|
1067
|
-
### Version 1.2.17 - October 18 2018
|
|
1068
|
-
**RDM-3144** - CaseTypeLite class introduced. Jurisdiction now refers to CaseTypeLite instead of CaseType to prevent cyclic dependency.
|
|
1069
|
-
|
|
1070
|
-
### Version 1.2.16 - October 15 2018
|
|
1071
|
-
**RDM-3063** - Case Progression: Extract case progression with existing contract part 2
|
|
1072
|
-
|
|
1073
|
-
### Version 1.2.15 - October 15 2018
|
|
1074
|
-
**RDM-3063** - Case Progression: Extract case progression with existing contract
|
|
1075
|
-
|
|
1076
|
-
### Version 1.2.14 - October 11 2018
|
|
1077
|
-
**RDM-3061** - Case progression: Extract services from Case Management Web.
|
|
1078
|
-
|
|
1079
|
-
### Version 1.2.13 - October 10 2018
|
|
1080
|
-
**RDM-3023** - Migration of save or discard modal from mgmt web.
|
|
1081
|
-
|
|
1082
|
-
### Version 1.2.12 - October 9 2018
|
|
1083
|
-
**RDM-3023** - Fixing release issues.
|
|
1084
|
-
|
|
1085
|
-
### Version 1.2.11 - October 9 2018
|
|
1086
|
-
**RDM-3023** - Move palette from mgmt web part 4.
|
|
1087
|
-
|
|
1088
|
-
### Version 1.2.10 - October 8 2018
|
|
1089
|
-
**RDM-3023** - Move palette from mgmt web part 3.
|
|
1090
|
-
|
|
1091
|
-
### Version 1.2.9 - October 8 2018
|
|
1092
|
-
**RDM-3023** - Move palette from mgmt web part 3.
|
|
1093
|
-
|
|
1094
|
-
### Version 1.2.8 - October 8 2018
|
|
1095
|
-
**RDM-3023** - Move palette from mgmt web part 2.
|
|
1096
|
-
|
|
1097
|
-
### Version 1.2.6 - October 4 2018
|
|
1098
|
-
**RDM-3023** - Move palette from mgmt web.
|
|
1099
|
-
|
|
1100
|
-
### Version 1.2.5 - September 27 2018
|
|
1101
|
-
**RDM-2569** - Upgraded to Angular version 6.1.8
|
|
1102
|
-
|
|
1103
|
-
### Version 1.2.4 - August 31 2018
|
|
1104
|
-
**RDM-2468** Bug:
|
|
1105
|
-
- Date field error correction
|
|
1106
|
-
|
|
1107
|
-
### Version 1.2.3 - August 24 2018
|
|
1108
|
-
- New publishing key
|
|
1109
|
-
|
|
1110
|
-
### Version 1.2.2 - August 22 2018
|
|
1111
|
-
**RDM-2542** Enhancement:
|
|
1112
|
-
- GDPR - Solicitors footer links
|
|
1113
|
-
|
|
1114
|
-
### Version 1.2.1 - July 3 2018
|
|
1115
|
-
- New publishing key
|
|
1116
|
-
|
|
1117
|
-
### Version 1.2.0 - July 3 2018
|
|
1118
|
-
- Upgraded to Angular version 5.2.0
|
|
1119
|
-
|
|
1120
|
-
### Version 1.1.8 - July 3 2018
|
|
1121
|
-
- Bumped the version to 1.1.8
|
|
1122
|
-
|
|
1123
|
-
### Version 1.1.7 - July 2 2018
|
|
1124
|
-
**RDM-1886** Enhancement:
|
|
1125
|
-
- Sign Out link redesign
|
|
1126
|
-
|
|
1127
|
-
### Version 1.1.6 - May 24 2018
|
|
1128
|
-
**RDM-1149** Fixes added:
|
|
1129
|
-
- Mandatory field skipping issue found in tests fixed
|
|
1130
|
-
- Several PR comments addressed
|
|
1131
|
-
|
|
1132
|
-
### Version 1.1.5 - May 22 2018
|
|
1133
|
-
**RDM-1149** Fixes added:
|
|
1134
|
-
- Issue 'error on single digit hour'
|
|
1135
|
-
- Incorrect Hour/Minute/Second initialization when field is mandatory
|
|
1136
|
-
- Changed to a simpler Regex validation
|
|
1137
|
-
- Bumped the version to 1.1.5
|
|
1138
|
-
|
|
1139
|
-
### Version 1.1.4 - May 22 2018
|
|
1140
|
-
Bumped up the version
|
|
1141
|
-
|
|
1142
|
-
### Version 1.1.3 - May 22 2018
|
|
1143
|
-
**RDM-1149** Added _DateTime_ support to the existing _Date_ component
|
|
1144
|
-
|
|
1145
|
-
### Version 1.1.2 - May 21 2018
|
|
1146
|
-
**RDM-1851** Added support for few elements not rendering properly in IE Browsers
|
|
1147
|
-
**RDM-1851** Added Feedback link
|
|
1148
|
-
|
|
1149
|
-
### Version 1.1.1 - May 18 2018
|
|
1150
|
-
**RDM-1851** Header and footer needs to match Gov.Uk styling - Attempt to put back README to overcome a problem in npmjs
|
|
1151
|
-
|
|
1152
|
-
### Version 1.1.0 - May 18 2018
|
|
1153
|
-
**RDM-1851** Header and footer needs to match Gov.Uk styling
|