@hmcts/ccd-case-ui-toolkit 5.0.3-angular11-upgrade → 5.0.4-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/RELEASE-NOTES.md +0 -8
- package/dist/ccd-case-ui-toolkit/bundles/hmcts-ccd-case-ui-toolkit.umd.js +7241 -0
- package/dist/ccd-case-ui-toolkit/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -0
- package/dist/ccd-case-ui-toolkit/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +17 -0
- package/dist/ccd-case-ui-toolkit/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -0
- package/dist/ccd-case-ui-toolkit/esm2015/hmcts-ccd-case-ui-toolkit.js +5 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/app.config.js +37 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/banners/alert/alert-icon-class.pipe.js +25 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/banners/alert/alert.component.js +101 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/banners/alert/alert.module.js +26 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/banners/alert/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/banners/banners.module.js +27 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/banners/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/body/body.component.js +25 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/body/body.module.js +20 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/body/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/footer/footer.component.js +105 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/footer/footers.module.js +19 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/footer/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/form/date-input/date-input.component.js +329 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/form/date-input/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/form/form.module.js +27 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/form/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/header/header-bar/header-bar.component.js +108 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/header/header-bar/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/header/headers.module.js +23 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/header/index.js +5 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/header/navigation/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/header/navigation/navigation-item.component.js +44 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/header/navigation/navigation.component.js +30 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/header/phase/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/header/phase/phase.component.js +42 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/index.js +7 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/tabs/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/tabs/tab.component.js +34 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/tabs/tabs.component.js +86 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/components/tabs/tabs.module.js +36 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/commons/constants.js +12 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/case-access-utils/index.js +94 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/domain/confirmation.model.js +21 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/domain/event-completion-return-states.enum.model.js +7 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/domain/event-completion-state-machine-context.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/domain/event-completion-states.enum.model.js +14 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/domain/index.js +8 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/domain/wizard-page-field-complex-override.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/domain/wizard-page-field.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/domain/wizard-page.model.js +28 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/domain/wizard.model.js +57 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/services/case.notifier.js +19 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/services/cases.service.js +270 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/services/wizard-page-field-to-case-field.mapper.js +115 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/case-editor/services/work-allocation.service.js +170 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/dialogs/document-dialog/document-dialog.component.js +59 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/dialogs/remove-dialog/remove-dialog.component.js +57 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/helpers/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/helpers/init-dialog-helper.js +16 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/address/address-option.model.js +24 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/address/write-address-field.component.js +244 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/base-field/abstract-field-read.component.js +32 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/base-field/abstract-field-write.component.js +44 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/base-field/abstract-form-field.component.js +79 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/base-field/field-read-label.component.js +93 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/base-field/field-read.component.js +85 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/base-field/field-write.component.js +84 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/base-field/index.js +8 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/base-field/palette-context.enum.js +7 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/base-field/payment-field.component.js +32 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/case-link/read-case-link-field.component.js +38 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/case-link/write-case-link-field.component.js +125 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/collection/collection-create-checker.service.js +42 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/collection/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/collection/read-collection-field.component.js +91 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/collection/write-collection-field.component.js +414 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.js +29 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.js +29 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.js +154 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/ccd-tab-fields.pipe.js +31 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/cdd-page-fields.pipe.js +39 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/fields-filter.pipe.js +103 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/index.js +12 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/read-complex-field-collection-table.component.js +414 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/read-complex-field-raw.component.js +61 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/read-complex-field-table.component.js +97 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/read-complex-field.component.js +81 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/sort-order.js +7 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/complex/write-complex-field.component.js +178 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/date/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/date/read-date-field.component.js +29 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/date/write-date-container-field.component.js +41 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/date/write-date-field.component.js +81 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/datetime-picker/datetime-picker-utils.js +12 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/datetime-picker/datetime-picker.component.js +300 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/datetime-picker/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/document/document-url.pipe.js +24 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/document/file-upload-progress.guard.js +29 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/document/file-upload-state.service.js +16 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/document/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/document/read-document-field.component.js +80 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/document/write-document-field.component.js +369 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/dynamic-list/dynamic-list.pipe.js +18 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/dynamic-list/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/dynamic-list/read-dynamic-list-field.component.js +35 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.js +121 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/dynamic-radio-list/dynamic-radio-list.pipe.js +25 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/dynamic-radio-list/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/dynamic-radio-list/read-dynamic-radio-list-field.component.js +41 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.js +126 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/email/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/email/read-email-field.component.js +36 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/email/write-email-field.component.js +76 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/fixed-list/fixed-list.pipe.js +23 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/fixed-list/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/fixed-list/read-fixed-list-field.component.js +25 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.js +110 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/fixed-radio-list/fixed-radio-list.pipe.js +18 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/fixed-radio-list/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/fixed-radio-list/read-fixed-radio-list-field.component.js +25 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.js +101 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/history/case-history-viewer-field.component.js +21 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/history/event-log/event-log-details.component.js +127 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/history/event-log/event-log-table.component.js +234 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/history/event-log/event-log.component.js +83 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/history/event-log/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/history/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/label/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/label/label-field.component.js +37 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/markdown/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/markdown/markdown.component.js +44 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/money-gbp/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/money-gbp/money-gbp-input.component.js +123 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.js +48 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.js +83 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/multi-select-list/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.js +50 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.js +132 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/number/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/number/read-number-field.component.js +25 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/number/write-number-field.component.js +76 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/order-summary/fee-value.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/order-summary/fee.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/order-summary/index.js +7 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/order-summary/order-summary.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/order-summary/read-order-summary-field.component.js +71 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/order-summary/read-order-summary-row.component.js +51 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/order-summary/write-order-summary-field.component.js +49 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/organisation/index.js +6 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/organisation/read-organisation-field-raw.component.js +90 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/organisation/read-organisation-field-table.component.js +100 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/organisation/read-organisation-field.component.js +63 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/organisation/write-organisation-complex-field.component.js +37 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/organisation/write-organisation-field.component.js +394 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/palette.module.js +413 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/palette.service.js +114 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/payment/case-payment-history-viewer-field.component.js +27 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/payment/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/phone-uk/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/phone-uk/read-phone-uk-field.component.js +23 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.js +76 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/text/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/text/read-text-field.component.js +23 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/text/write-text-field.component.js +81 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/text-area/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/text-area/read-text-area-field.component.js +23 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/text-area/write-text-area-field.component.js +91 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/unsupported-field.component.js +17 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/utils/dash.pipe.js +16 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/utils/date.pipe.js +132 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/utils/field-label.pipe.js +22 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/utils/first-error.pipe.js +41 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/utils/index.js +10 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/utils/is-compound.pipe.js +31 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/utils/is-mandatory.pipe.js +21 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/utils/is-read-only-and-not-collection.pipe.js +31 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/utils/is-read-only.pipe.js +21 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/utils/utils.module.js +62 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/waystopay/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/waystopay/waystopay-field.component.js +37 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/yes-no/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/yes-no/read-yes-no-field.component.js +32 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/yes-no/write-yes-no-field.component.js +105 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/yes-no/yes-no.service.js +48 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/search-filters/domain/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/search-filters/domain/search-input.model.js +10 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/search-filters/index.js +5 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/search-filters/search-filters-wrapper.component.js +61 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/search-filters/search-filters.component.js +296 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/search-filters/search-filters.module.js +65 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/conditional-show/conditional-show-form.directive.js +164 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/conditional-show/conditional-show.module.js +33 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/conditional-show/domain/conditional-show.model.js +296 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/conditional-show/domain/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/conditional-show/index.js +5 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/conditional-show/services/conditional-show-registrar.service.js +19 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/conditional-show/services/grey-bar.service.js +47 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/conditional-show/services/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/focus-element/focus-element.directive.js +36 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/focus-element/focus-element.module.js +21 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/focus-element/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/substitutor/index.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/substitutor/label-substitutor.directive.js +78 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/substitutor/label-substitutor.module.js +30 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/substitutor/services/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/directives/substitutor/services/placeholder.service.js +200 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/activity/activity.model.js +10 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/activity/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/addresses/address.model.js +12 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/addresses/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/alert/alert-level.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/alert/alert.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/alert/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-details.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-event-data.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/access-types.model.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/case-event-trigger.model.js +22 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/case-print-document.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/case-tab.model.js +11 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/case-view-event.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/case-view-trigger.model.js +4 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/case-view.model.js +16 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/challenged-access-request.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/index.js +12 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/review-specific-access-request.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/role-assignment-response.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/role-request.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/case-view/specific-access-request.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/access-control-list.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/banner.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/case-event.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/case-field.model.js +194 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/case-state.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/case-type-lite.model.js +5 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/case-type.model.js +11 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/event-case-field.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/field-type-enum.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/field-type.model.js +20 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/fixed-list-item.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/index.js +12 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/definition/jurisdiction.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/document/document-data.model.js +13 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/document/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/draft.model.js +11 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/error-message.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/http/http-error.model.js +27 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/http/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/index.js +23 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/order/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/order/orderable.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/organisation/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/organisation/organisation-converter.js +42 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/organisation/simple-organisation.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/pagination-metadata.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/predicate.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/profile/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/profile/profile.model.js +29 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/search/field.model.js +11 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/search/index.js +5 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/search/search-result-view-column.model.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/search/search-result-view-item.model.js +11 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/search/search-result-view.model.js +22 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/search/sorting/search-result-view-item-comparator.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/search/sorting/sort-order.js +7 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/search/sorting/sort-parameters.js +7 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/user/user-details.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/user/user-info.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/work-allocation/Task.js +21 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/work-allocation/TaskPayload.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/work-allocation/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/work-allocation/task-response.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/work-allocation/task-search-parameter.model.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/workbasket/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/domain/workbasket/workbasket-input.model.js +12 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/fixture/case-field-builder.js +69 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/fixture/shared.test.fixture.js +129 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/index.js +9 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/pipes/case-reference/case-reference.pipe.js +33 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/pipes/case-reference/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/pipes/case-title/ccd-case-title.pipe.js +29 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/pipes/case-title/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/pipes/index.js +5 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/pipes/pipes.module.js +37 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/pipes/search-result/sorting/sort-search-result.pipe.js +24 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/activity/activity.polling.service.js +112 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/activity/activity.service.js +91 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/activity/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/addresses/address-parser.js +76 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/addresses/addresses.service.js +57 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/addresses/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/alert/alert.service.js +122 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/alert/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/auth/auth.service.js +33 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/auth/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/banners/banners.service.js +33 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/banners/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/browser/browser.service.js +24 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/browser/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/case-fields/case-field.service.js +34 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/case-fields/format-translator.service.js +242 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/case-fields/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/definitions/definitions.module.js +19 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/definitions/definitions.service.js +35 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/definitions/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/document-management/document-management.service.js +112 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/document-management/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/draft/draft.service.js +86 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/draft/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/error/error-notifier.service.js +18 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/error/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/eventStatusService/event-status.service.js +21 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/eventStatusService/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/fields/fields.purger.js +277 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/fields/fields.utils.js +334 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/fields/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/form/field-type-sanitiser.js +75 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/form/form-error.service.js +46 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/form/form-validators.service.js +56 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/form/form-value.service.js +490 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/form/index.js +5 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/http/http-error.service.js +65 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/http/http.service.js +93 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/http/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/index.js +29 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/jurisdiction/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/jurisdiction/jurisdiction.service.js +18 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/loading/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/loading/loading.module.js +22 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/loading/loading.service.js +38 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/navigation/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/navigation/navigation-notifier.service.js +18 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/navigation/navigation-origin.model.js +9 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/order/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/order/order.service.js +39 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/organisation/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/organisation/organisation.service.js +57 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/profile/index.js +3 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/profile/profile.notifier.js +19 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/profile/profile.service.js +34 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/request/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/request/request.options.builder.js +55 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/router/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/router/router-helper.service.js +20 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/search/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/search/search.service.js +83 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/search-result/sorting/search-result-view-item-comparator-factory.js +71 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/session/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/session/session-storage.service.js +34 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/window/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/window/window.service.js +37 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/workbasket/index.js +2 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/services/workbasket/workbasket-input-filter.service.js +53 -0
- package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/test/test-route-snapshot-builder.js +39 -0
- package/dist/ccd-case-ui-toolkit/esm2015/public-api.js +3 -0
- package/dist/ccd-case-ui-toolkit/fesm2015/hmcts-ccd-case-ui-toolkit.js +5987 -0
- package/dist/ccd-case-ui-toolkit/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -0
- package/dist/ccd-case-ui-toolkit/hmcts-ccd-case-ui-toolkit.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/hmcts-ccd-case-ui-toolkit.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/app.config.d.ts +125 -0
- package/dist/ccd-case-ui-toolkit/lib/app.config.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/alert/alert-icon-class.pipe.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/alert/alert-icon-class.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/alert/alert.component.d.ts +19 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/alert/alert.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/alert/alert.module.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/alert/alert.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/alert/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/alert/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/banners.module.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/banners.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/components/banners/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/body/body.component.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/components/body/body.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/body/body.module.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/components/body/body.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/body/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/components/body/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/footer/footer.component.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/components/footer/footer.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/footer/footers.module.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/components/footer/footers.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/footer/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/components/footer/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/form/date-input/date-input.component.d.ts +54 -0
- package/dist/ccd-case-ui-toolkit/lib/components/form/date-input/date-input.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/form/date-input/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/components/form/date-input/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/form/form.module.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/components/form/form.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/form/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/components/form/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/header-bar/header-bar.component.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/header-bar/header-bar.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/header-bar/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/header-bar/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/headers.module.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/headers.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/index.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/navigation/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/navigation/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/navigation/navigation-item.component.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/navigation/navigation-item.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/navigation/navigation.component.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/navigation/navigation.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/phase/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/phase/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/phase/phase.component.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/components/header/phase/phase.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/index.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/components/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/tabs/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/components/tabs/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/tabs/tab.component.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/components/tabs/tab.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/tabs/tabs.component.d.ts +16 -0
- package/dist/ccd-case-ui-toolkit/lib/components/tabs/tabs.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/components/tabs/tabs.module.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/components/tabs/tabs.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/commons/constants.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/commons/constants.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/case-access-utils/index.d.ts +25 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/case-access-utils/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/confirmation.model.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/confirmation.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/event-completion-return-states.enum.model.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/event-completion-return-states.enum.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/event-completion-state-machine-context.model.d.ts +24 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/event-completion-state-machine-context.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/event-completion-states.enum.model.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/event-completion-states.enum.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/index.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/wizard-page-field-complex-override.model.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/wizard-page-field-complex-override.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/wizard-page-field.model.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/wizard-page-field.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/wizard-page.model.d.ts +17 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/wizard-page.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/wizard.model.d.ts +18 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/domain/wizard.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/services/case.notifier.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/services/case.notifier.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/services/cases.service.d.ts +59 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/services/cases.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/services/wizard-page-field-to-case-field.mapper.d.ts +17 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/services/wizard-page-field-to-case-field.mapper.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/services/work-allocation.service.d.ts +72 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/case-editor/services/work-allocation.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/dialogs/document-dialog/document-dialog.component.d.ts +14 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/dialogs/document-dialog/document-dialog.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/dialogs/remove-dialog/remove-dialog.component.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/dialogs/remove-dialog/remove-dialog.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/helpers/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/helpers/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/helpers/init-dialog-helper.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/helpers/init-dialog-helper.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/address/address-option.model.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/address/address-option.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/address/write-address-field.component.d.ts +36 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/address/write-address-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/abstract-field-read.component.d.ts +17 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/abstract-field-read.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/abstract-field-write.component.d.ts +17 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/abstract-field-write.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/abstract-form-field.component.d.ts +20 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/abstract-form-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/field-read-label.component.d.ts +16 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/field-read-label.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/field-read.component.d.ts +20 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/field-read.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/field-write.component.d.ts +19 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/field-write.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/index.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/palette-context.enum.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/palette-context.enum.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/payment-field.component.d.ts +14 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/base-field/payment-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/case-link/read-case-link-field.component.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/case-link/read-case-link-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/case-link/write-case-link-field.component.d.ts +16 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/case-link/write-case-link-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/collection/collection-create-checker.service.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/collection/collection-create-checker.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/collection/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/collection/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/collection/read-collection-field.component.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/collection/read-collection-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/collection/write-collection-field.component.d.ts +56 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/collection/write-collection-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.d.ts +27 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/ccd-tab-fields.pipe.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/ccd-tab-fields.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/cdd-page-fields.pipe.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/cdd-page-fields.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/fields-filter.pipe.d.ts +23 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/fields-filter.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/index.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/read-complex-field-collection-table.component.d.ts +32 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/read-complex-field-collection-table.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/read-complex-field-raw.component.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/read-complex-field-raw.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/read-complex-field-table.component.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/read-complex-field-table.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/read-complex-field.component.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/read-complex-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/sort-order.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/sort-order.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/write-complex-field.component.d.ts +30 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/complex/write-complex-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/date/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/date/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/date/read-date-field.component.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/date/read-date-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/date/write-date-container-field.component.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/date/write-date-container-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/date/write-date-field.component.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/date/write-date-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/datetime-picker/datetime-picker-utils.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/datetime-picker/datetime-picker-utils.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/datetime-picker/datetime-picker.component.d.ts +53 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/datetime-picker/datetime-picker.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/datetime-picker/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/datetime-picker/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/document-url.pipe.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/document-url.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/file-upload-progress.guard.d.ts +14 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/file-upload-progress.guard.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/file-upload-state.service.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/file-upload-state.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/read-document-field.component.d.ts +24 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/read-document-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/write-document-field.component.d.ts +66 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/document/write-document-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-list/dynamic-list.pipe.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-list/dynamic-list.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-list/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-list/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-list/read-dynamic-list-field.component.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-list/read-dynamic-list-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-radio-list/dynamic-radio-list.pipe.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-radio-list/dynamic-radio-list.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-radio-list/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-radio-list/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-radio-list/read-dynamic-radio-list-field.component.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-radio-list/read-dynamic-radio-list-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/email/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/email/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/email/read-email-field.component.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/email/read-email-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/email/write-email-field.component.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/email/write-email-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-list/fixed-list.pipe.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-list/fixed-list.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-list/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-list/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-list/read-fixed-list-field.component.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-list/read-fixed-list-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-radio-list/fixed-radio-list.pipe.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-radio-list/fixed-radio-list.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-radio-list/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-radio-list/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-radio-list/read-fixed-radio-list-field.component.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-radio-list/read-fixed-radio-list-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/case-history-viewer-field.component.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/case-history-viewer-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/event-log/event-log-details.component.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/event-log/event-log-details.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/event-log/event-log-table.component.d.ts +22 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/event-log/event-log-table.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/event-log/event-log.component.d.ts +15 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/event-log/event-log.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/event-log/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/event-log/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/history/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/label/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/label/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/label/label-field.component.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/label/label-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/markdown/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/markdown/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/markdown/markdown.component.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/markdown/markdown.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/money-gbp/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/money-gbp/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/money-gbp/money-gbp-input.component.d.ts +23 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/money-gbp/money-gbp-input.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/multi-select-list/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/multi-select-list/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/number/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/number/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/number/read-number-field.component.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/number/read-number-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/number/write-number-field.component.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/number/write-number-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/fee-value.model.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/fee-value.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/fee.model.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/fee.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/index.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/order-summary.model.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/order-summary.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/read-order-summary-field.component.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/read-order-summary-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/read-order-summary-row.component.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/read-order-summary-row.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/write-order-summary-field.component.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/order-summary/write-order-summary-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/index.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/read-organisation-field-raw.component.d.ts +20 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/read-organisation-field-raw.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/read-organisation-field-table.component.d.ts +20 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/read-organisation-field-table.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/read-organisation-field.component.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/read-organisation-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/write-organisation-complex-field.component.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/write-organisation-complex-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/write-organisation-field.component.d.ts +47 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/organisation/write-organisation-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/palette.module.d.ts +99 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/palette.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/palette.service.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/palette.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/payment/case-payment-history-viewer-field.component.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/payment/case-payment-history-viewer-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/payment/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/payment/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/phone-uk/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/phone-uk/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/phone-uk/read-phone-uk-field.component.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/phone-uk/read-phone-uk-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text/read-text-field.component.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text/read-text-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text/write-text-field.component.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text/write-text-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text-area/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text-area/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text-area/read-text-area-field.component.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text-area/read-text-area-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text-area/write-text-area-field.component.d.ts +15 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/text-area/write-text-area-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/unsupported-field.component.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/unsupported-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/dash.pipe.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/dash.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/date.pipe.d.ts +23 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/date.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/field-label.pipe.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/field-label.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/first-error.pipe.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/first-error.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/index.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/is-compound.pipe.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/is-compound.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/is-mandatory.pipe.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/is-mandatory.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/is-read-only-and-not-collection.pipe.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/is-read-only-and-not-collection.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/is-read-only.pipe.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/is-read-only.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/utils.module.d.ts +16 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/utils/utils.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/waystopay/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/waystopay/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/waystopay/waystopay-field.component.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/waystopay/waystopay-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/yes-no/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/yes-no/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/yes-no/read-yes-no-field.component.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/yes-no/read-yes-no-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/yes-no/write-yes-no-field.component.d.ts +15 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/yes-no/write-yes-no-field.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/yes-no/yes-no.service.d.ts +14 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/palette/yes-no/yes-no.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/domain/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/domain/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/domain/search-input.model.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/domain/search-input.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/index.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/search-filters-wrapper.component.d.ts +21 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/search-filters-wrapper.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/search-filters.component.d.ts +57 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/search-filters.component.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/search-filters.module.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/components/search-filters/search-filters.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/conditional-show-form.directive.d.ts +40 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/conditional-show-form.directive.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/conditional-show.module.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/conditional-show.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/domain/conditional-show.model.d.ts +56 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/domain/conditional-show.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/domain/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/domain/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/index.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/services/conditional-show-registrar.service.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/services/conditional-show-registrar.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/services/grey-bar.service.d.ts +22 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/services/grey-bar.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/services/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/conditional-show/services/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/focus-element/focus-element.directive.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/focus-element/focus-element.directive.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/focus-element/focus-element.module.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/focus-element/focus-element.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/focus-element/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/focus-element/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/substitutor/index.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/substitutor/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/substitutor/label-substitutor.directive.d.ts +27 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/substitutor/label-substitutor.directive.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/substitutor/label-substitutor.module.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/substitutor/label-substitutor.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/substitutor/services/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/substitutor/services/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/substitutor/services/placeholder.service.d.ts +64 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/directives/substitutor/services/placeholder.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/activity/activity.model.d.ts +16 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/activity/activity.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/activity/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/activity/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/addresses/address.model.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/addresses/address.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/addresses/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/addresses/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/alert/alert-level.model.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/alert/alert-level.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/alert/alert.model.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/alert/alert.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/alert/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/alert/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-details.model.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-details.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-event-data.model.d.ts +14 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-event-data.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/access-types.model.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/access-types.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-event-trigger.model.d.ts +18 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-event-trigger.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-print-document.model.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-print-document.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-tab.model.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-tab.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-view-event.model.d.ts +19 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-view-event.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-view-trigger.model.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-view-trigger.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-view.model.d.ts +36 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/case-view.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/challenged-access-request.model.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/challenged-access-request.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/index.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/review-specific-access-request.model.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/review-specific-access-request.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/role-assignment-response.model.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/role-assignment-response.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/role-request.model.d.ts +35 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/role-request.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/specific-access-request.model.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/case-view/specific-access-request.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/access-control-list.model.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/access-control-list.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/banner.model.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/banner.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/case-event.model.d.ts +14 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/case-event.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/case-field.model.d.ts +44 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/case-field.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/case-state.model.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/case-state.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/case-type-lite.model.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/case-type-lite.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/case-type.model.d.ts +15 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/case-type.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/event-case-field.model.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/event-case-field.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/field-type-enum.model.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/field-type-enum.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/field-type.model.d.ts +14 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/field-type.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/fixed-list-item.model.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/fixed-list-item.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/index.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/jurisdiction.model.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/definition/jurisdiction.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/document/document-data.model.d.ts +26 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/document/document-data.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/document/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/document/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/draft.model.d.ts +13 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/draft.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/error-message.model.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/error-message.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/http/http-error.model.d.ts +18 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/http/http-error.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/http/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/http/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/index.d.ts +23 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/order/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/order/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/order/orderable.model.d.ts +4 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/order/orderable.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/organisation/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/organisation/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/organisation/organisation-converter.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/organisation/organisation-converter.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/organisation/simple-organisation.model.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/organisation/simple-organisation.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/pagination-metadata.model.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/pagination-metadata.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/predicate.model.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/predicate.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/profile/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/profile/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/profile/profile.model.d.ts +24 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/profile/profile.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/field.model.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/field.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/index.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/search-result-view-column.model.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/search-result-view-column.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/search-result-view-item.model.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/search-result-view-item.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/search-result-view.model.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/search-result-view.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/sorting/search-result-view-item-comparator.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/sorting/search-result-view-item-comparator.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/sorting/sort-order.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/sorting/sort-order.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/sorting/sort-parameters.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/search/sorting/sort-parameters.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/user/user-details.model.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/user/user-details.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/user/user-info.model.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/user/user-info.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/work-allocation/Task.d.ts +50 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/work-allocation/Task.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/work-allocation/TaskPayload.d.ts +6 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/work-allocation/TaskPayload.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/work-allocation/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/work-allocation/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/work-allocation/task-response.model.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/work-allocation/task-response.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/work-allocation/task-search-parameter.model.d.ts +15 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/work-allocation/task-search-parameter.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/workbasket/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/workbasket/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/workbasket/workbasket-input.model.d.ts +14 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/domain/workbasket/workbasket-input.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/fixture/case-field-builder.d.ts +22 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/fixture/case-field-builder.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/fixture/shared.test.fixture.d.ts +25 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/fixture/shared.test.fixture.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/index.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/case-reference/case-reference.pipe.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/case-reference/case-reference.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/case-reference/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/case-reference/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/case-title/ccd-case-title.pipe.d.ts +15 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/case-title/ccd-case-title.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/case-title/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/case-title/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/index.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/pipes.module.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/pipes.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/search-result/sorting/sort-search-result.pipe.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/pipes/search-result/sorting/sort-search-result.pipe.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/activity/activity.polling.service.d.ts +30 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/activity/activity.polling.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/activity/activity.service.d.ts +26 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/activity/activity.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/activity/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/activity/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/addresses/address-parser.d.ts +18 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/addresses/address-parser.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/addresses/addresses.service.d.ts +21 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/addresses/addresses.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/addresses/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/addresses/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/alert/alert.service.d.ts +35 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/alert/alert.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/alert/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/alert/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/auth/auth.service.d.ts +16 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/auth/auth.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/auth/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/auth/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/banners/banners.service.d.ts +15 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/banners/banners.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/banners/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/banners/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/browser/browser.service.d.ts +9 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/browser/browser.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/browser/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/browser/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/case-fields/case-field.service.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/case-fields/case-field.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/case-fields/format-translator.service.d.ts +16 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/case-fields/format-translator.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/case-fields/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/case-fields/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/definitions/definitions.module.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/definitions/definitions.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/definitions/definitions.service.d.ts +16 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/definitions/definitions.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/definitions/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/definitions/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/document-management/document-management.service.d.ts +34 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/document-management/document-management.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/document-management/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/document-management/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/draft/draft.service.d.ts +25 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/draft/draft.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/draft/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/draft/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/error/error-notifier.service.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/error/error-notifier.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/error/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/error/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/eventStatusService/event-status.service.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/eventStatusService/event-status.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/eventStatusService/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/eventStatusService/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/fields/fields.purger.d.ts +39 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/fields/fields.purger.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/fields/fields.utils.d.ts +81 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/fields/fields.utils.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/fields/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/fields/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/form/field-type-sanitiser.d.ts +29 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/form/field-type-sanitiser.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/form/form-error.service.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/form/form-error.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/form/form-validators.service.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/form/form-validators.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/form/form-value.service.d.ts +172 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/form/form-value.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/form/index.d.ts +5 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/form/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/http/http-error.service.d.ts +19 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/http/http-error.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/http/http.service.d.ts +60 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/http/http.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/http/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/http/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/index.d.ts +29 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/jurisdiction/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/jurisdiction/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/jurisdiction/jurisdiction.service.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/jurisdiction/jurisdiction.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/loading/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/loading/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/loading/loading.module.d.ts +7 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/loading/loading.module.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/loading/loading.service.d.ts +16 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/loading/loading.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/navigation/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/navigation/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/navigation/navigation-notifier.service.d.ts +10 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/navigation/navigation-notifier.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/navigation/navigation-origin.model.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/navigation/navigation-origin.model.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/order/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/order/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/order/order.service.d.ts +19 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/order/order.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/organisation/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/organisation/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/organisation/organisation.service.d.ts +53 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/organisation/organisation.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/profile/index.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/profile/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/profile/profile.notifier.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/profile/profile.notifier.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/profile/profile.service.d.ts +16 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/profile/profile.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/request/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/request/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/request/request.options.builder.d.ts +17 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/request/request.options.builder.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/router/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/router/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/router/router-helper.service.d.ts +8 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/router/router-helper.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/search/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/search/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/search/search.service.d.ts +32 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/search/search.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/search-result/sorting/search-result-view-item-comparator-factory.d.ts +12 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/search-result/sorting/search-result-view-item-comparator-factory.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/session/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/session/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/session/session-storage.service.d.ts +22 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/session/session-storage.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/window/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/window/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/window/window.service.d.ts +15 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/window/window.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/workbasket/index.d.ts +2 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/workbasket/index.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/workbasket/workbasket-input-filter.service.d.ts +19 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/services/workbasket/workbasket-input-filter.service.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/test/test-route-snapshot-builder.d.ts +11 -0
- package/dist/ccd-case-ui-toolkit/lib/shared/test/test-route-snapshot-builder.d.ts.map +1 -0
- package/dist/ccd-case-ui-toolkit/package.json +30 -0
- package/dist/ccd-case-ui-toolkit/public-api.d.ts +3 -0
- package/dist/ccd-case-ui-toolkit/public-api.d.ts.map +1 -0
- package/package.json +1 -1
- package/projects/ccd-case-ui-toolkit/ng-package.json +1 -1
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { AbstractFieldWriteComponent } from '../base-field/abstract-field-write.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "@angular/common";
|
|
6
|
+
import * as i2 from "@angular/forms";
|
|
7
|
+
import * as i3 from "../utils/field-label.pipe";
|
|
8
|
+
import * as i4 from "../utils/first-error.pipe";
|
|
9
|
+
function WriteFixedRadioListFieldComponent_span_4_Template(rf, ctx) { if (rf & 1) {
|
|
10
|
+
i0.ɵɵelementStart(0, "span", 6);
|
|
11
|
+
i0.ɵɵtext(1);
|
|
12
|
+
i0.ɵɵpipe(2, "ccdFieldLabel");
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
} if (rf & 2) {
|
|
15
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
16
|
+
i0.ɵɵadvance(1);
|
|
17
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, ctx_r0.caseField));
|
|
18
|
+
} }
|
|
19
|
+
function WriteFixedRadioListFieldComponent_span_5_Template(rf, ctx) { if (rf & 1) {
|
|
20
|
+
i0.ɵɵelementStart(0, "span", 7);
|
|
21
|
+
i0.ɵɵtext(1);
|
|
22
|
+
i0.ɵɵelementEnd();
|
|
23
|
+
} if (rf & 2) {
|
|
24
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
25
|
+
i0.ɵɵadvance(1);
|
|
26
|
+
i0.ɵɵtextInterpolate(ctx_r1.caseField.hint_text);
|
|
27
|
+
} }
|
|
28
|
+
function WriteFixedRadioListFieldComponent_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
29
|
+
i0.ɵɵelementStart(0, "span", 8);
|
|
30
|
+
i0.ɵɵtext(1);
|
|
31
|
+
i0.ɵɵpipe(2, "ccdFirstError");
|
|
32
|
+
i0.ɵɵelementEnd();
|
|
33
|
+
} if (rf & 2) {
|
|
34
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
35
|
+
i0.ɵɵadvance(1);
|
|
36
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(2, 1, ctx_r2.fixedRadioListControl.errors, ctx_r2.caseField.label));
|
|
37
|
+
} }
|
|
38
|
+
const _c0 = function (a0) { return { selected: a0 }; };
|
|
39
|
+
function WriteFixedRadioListFieldComponent_div_8_Template(rf, ctx) { if (rf & 1) {
|
|
40
|
+
i0.ɵɵelementStart(0, "div", 9);
|
|
41
|
+
i0.ɵɵelement(1, "input", 10);
|
|
42
|
+
i0.ɵɵelementStart(2, "label", 11);
|
|
43
|
+
i0.ɵɵtext(3);
|
|
44
|
+
i0.ɵɵelementEnd();
|
|
45
|
+
i0.ɵɵelementEnd();
|
|
46
|
+
} if (rf & 2) {
|
|
47
|
+
const radioButton_r4 = ctx.$implicit;
|
|
48
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
49
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(7, _c0, ctx_r3.fixedRadioListControl.value === radioButton_r4.code));
|
|
50
|
+
i0.ɵɵadvance(1);
|
|
51
|
+
i0.ɵɵproperty("id", ctx_r3.id() + "-" + radioButton_r4.code)("name", ctx_r3.id())("formControl", ctx_r3.fixedRadioListControl)("value", radioButton_r4.code);
|
|
52
|
+
i0.ɵɵadvance(1);
|
|
53
|
+
i0.ɵɵproperty("for", ctx_r3.id() + "-" + radioButton_r4.code);
|
|
54
|
+
i0.ɵɵadvance(1);
|
|
55
|
+
i0.ɵɵtextInterpolate(radioButton_r4.label);
|
|
56
|
+
} }
|
|
57
|
+
const _c1 = function (a0) { return { "form-group-error": a0 }; };
|
|
58
|
+
export class WriteFixedRadioListFieldComponent extends AbstractFieldWriteComponent {
|
|
59
|
+
ngOnInit() {
|
|
60
|
+
const notEmpty = this.caseField.value !== null && this.caseField.value !== undefined;
|
|
61
|
+
this.fixedRadioListControl = this.registerControl(new FormControl(notEmpty ? this.caseField.value : null));
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
WriteFixedRadioListFieldComponent.ɵfac = function WriteFixedRadioListFieldComponent_Factory(t) { return ɵWriteFixedRadioListFieldComponent_BaseFactory(t || WriteFixedRadioListFieldComponent); };
|
|
65
|
+
WriteFixedRadioListFieldComponent.ɵcmp = i0.ɵɵdefineComponent({ type: WriteFixedRadioListFieldComponent, selectors: [["ccd-write-fixed-radio-list-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 9, vars: 9, consts: [[1, "form-group", "bottom-30", 3, "ngClass", "id"], [3, "for"], ["class", "form-label", 4, "ngIf"], ["class", "form-hint", 4, "ngIf"], ["class", "error-message", 4, "ngIf"], ["class", "multiple-choice", 3, "ngClass", 4, "ngFor", "ngForOf"], [1, "form-label"], [1, "form-hint"], [1, "error-message"], [1, "multiple-choice", 3, "ngClass"], ["type", "radio", 1, "form-control", 3, "id", "name", "formControl", "value"], [1, "form-label", 3, "for"]], template: function WriteFixedRadioListFieldComponent_Template(rf, ctx) { if (rf & 1) {
|
|
66
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
67
|
+
i0.ɵɵelementStart(1, "fieldset");
|
|
68
|
+
i0.ɵɵelementStart(2, "legend");
|
|
69
|
+
i0.ɵɵelementStart(3, "label", 1);
|
|
70
|
+
i0.ɵɵtemplate(4, WriteFixedRadioListFieldComponent_span_4_Template, 3, 3, "span", 2);
|
|
71
|
+
i0.ɵɵelementEnd();
|
|
72
|
+
i0.ɵɵtemplate(5, WriteFixedRadioListFieldComponent_span_5_Template, 2, 1, "span", 3);
|
|
73
|
+
i0.ɵɵtemplate(6, WriteFixedRadioListFieldComponent_span_6_Template, 3, 4, "span", 4);
|
|
74
|
+
i0.ɵɵelementEnd();
|
|
75
|
+
i0.ɵɵelementContainerStart(7);
|
|
76
|
+
i0.ɵɵtemplate(8, WriteFixedRadioListFieldComponent_div_8_Template, 4, 9, "div", 5);
|
|
77
|
+
i0.ɵɵelementContainerEnd();
|
|
78
|
+
i0.ɵɵelementEnd();
|
|
79
|
+
i0.ɵɵelementEnd();
|
|
80
|
+
} if (rf & 2) {
|
|
81
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(7, _c1, !ctx.fixedRadioListControl.valid && (ctx.fixedRadioListControl.dirty || ctx.fixedRadioListControl.touched)))("id", ctx.id());
|
|
82
|
+
i0.ɵɵadvance(3);
|
|
83
|
+
i0.ɵɵproperty("for", ctx.id());
|
|
84
|
+
i0.ɵɵadvance(1);
|
|
85
|
+
i0.ɵɵproperty("ngIf", ctx.caseField.label);
|
|
86
|
+
i0.ɵɵadvance(1);
|
|
87
|
+
i0.ɵɵproperty("ngIf", ctx.caseField.hint_text);
|
|
88
|
+
i0.ɵɵadvance(1);
|
|
89
|
+
i0.ɵɵproperty("ngIf", ctx.fixedRadioListControl.errors && (ctx.fixedRadioListControl.dirty || ctx.fixedRadioListControl.touched));
|
|
90
|
+
i0.ɵɵadvance(2);
|
|
91
|
+
i0.ɵɵproperty("ngForOf", ctx.caseField.field_type.fixed_list_items);
|
|
92
|
+
} }, directives: [i1.NgClass, i1.NgIf, i1.NgForOf, i2.RadioControlValueAccessor, i2.DefaultValueAccessor, i2.NgControlStatus, i2.FormControlDirective], pipes: [i3.FieldLabelPipe, i4.FirstErrorPipe], encapsulation: 2 });
|
|
93
|
+
const ɵWriteFixedRadioListFieldComponent_BaseFactory = /*@__PURE__*/ i0.ɵɵgetInheritedFactory(WriteFixedRadioListFieldComponent);
|
|
94
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WriteFixedRadioListFieldComponent, [{
|
|
95
|
+
type: Component,
|
|
96
|
+
args: [{
|
|
97
|
+
selector: 'ccd-write-fixed-radio-list-field',
|
|
98
|
+
templateUrl: './write-fixed-radio-list-field.html'
|
|
99
|
+
}]
|
|
100
|
+
}], null, null); })();
|
|
101
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGUtZml4ZWQtcmFkaW8tbGlzdC1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9maXhlZC1yYWRpby1saXN0L3dyaXRlLWZpeGVkLXJhZGlvLWxpc3QtZmllbGQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvZml4ZWQtcmFkaW8tbGlzdC93cml0ZS1maXhlZC1yYWRpby1saXN0LWZpZWxkLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUNsRCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDN0MsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sOENBQThDLENBQUM7Ozs7Ozs7SUNFbkYsK0JBQWlEO0lBQUEsWUFBNkI7O0lBQUEsaUJBQU87OztJQUFwQyxlQUE2QjtJQUE3Qiw0REFBNkI7OztJQUVoRiwrQkFBb0Q7SUFBQSxZQUF1QjtJQUFBLGlCQUFPOzs7SUFBOUIsZUFBdUI7SUFBdkIsZ0RBQXVCOzs7SUFDM0UsK0JBQW1JO0lBQUEsWUFBZ0U7O0lBQUEsaUJBQU87OztJQUF2RSxlQUFnRTtJQUFoRSx1R0FBZ0U7Ozs7SUFHbk0sOEJBQXdLO0lBQ3RLLDRCQUF5SjtJQUN6SixpQ0FBNEQ7SUFBQSxZQUFxQjtJQUFBLGlCQUFRO0lBQzNGLGlCQUFNOzs7O0lBSHlGLGdIQUF3RTtJQUN6SSxlQUFnQztJQUFoQyw0REFBZ0MscUJBQUEsNkNBQUEsOEJBQUE7SUFDbEMsZUFBaUM7SUFBakMsNkRBQWlDO0lBQUMsZUFBcUI7SUFBckIsMENBQXFCOzs7QURKekYsTUFBTSxPQUFPLGlDQUFrQyxTQUFRLDJCQUEyQjtJQUl6RSxRQUFRO1FBQ2IsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLEtBQUssSUFBSSxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxLQUFLLFNBQVMsQ0FBQztRQUNyRixJQUFJLENBQUMscUJBQXFCLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLFdBQVcsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBZ0IsQ0FBQztJQUM1SCxDQUFDOzs0SkFQVSxpQ0FBaUM7c0VBQWpDLGlDQUFpQztRQ1I5Qyw4QkFBK0s7UUFDN0ssZ0NBQVU7UUFDUiw4QkFBUTtRQUNOLGdDQUFvQjtRQUNsQixvRkFBcUY7UUFDdkYsaUJBQVE7UUFDUixvRkFBa0Y7UUFDbEYsb0ZBQTBNO1FBQzVNLGlCQUFTO1FBQ1QsNkJBQWM7UUFDWixrRkFHTTtRQUNSLDBCQUFlO1FBQ2pCLGlCQUFXO1FBQ2IsaUJBQU07O1FBaEI0QixnS0FBZ0ksZ0JBQUE7UUFHckosZUFBWTtRQUFaLDhCQUFZO1FBQ1MsZUFBcUI7UUFBckIsMENBQXFCO1FBRXhCLGVBQXlCO1FBQXpCLDhDQUF5QjtRQUNyQixlQUFvRztRQUFwRyxpSUFBb0c7UUFHNUUsZUFBd0M7UUFBeEMsbUVBQXdDOzs4RkRGdEYsaUNBQWlDO3VGQUFqQyxpQ0FBaUM7Y0FKN0MsU0FBUztlQUFDO2dCQUNULFFBQVEsRUFBRSxrQ0FBa0M7Z0JBQzVDLFdBQVcsRUFBRSxxQ0FBcUM7YUFDbkQiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBBYnN0cmFjdEZpZWxkV3JpdGVDb21wb25lbnQgfSBmcm9tICcuLi9iYXNlLWZpZWxkL2Fic3RyYWN0LWZpZWxkLXdyaXRlLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2NjZC13cml0ZS1maXhlZC1yYWRpby1saXN0LWZpZWxkJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3dyaXRlLWZpeGVkLXJhZGlvLWxpc3QtZmllbGQuaHRtbCdcbn0pXG5leHBvcnQgY2xhc3MgV3JpdGVGaXhlZFJhZGlvTGlzdEZpZWxkQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RGaWVsZFdyaXRlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBwdWJsaWMgZml4ZWRSYWRpb0xpc3RDb250cm9sOiBGb3JtQ29udHJvbDtcblxuICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgY29uc3Qgbm90RW1wdHkgPSB0aGlzLmNhc2VGaWVsZC52YWx1ZSAhPT0gbnVsbCAmJiB0aGlzLmNhc2VGaWVsZC52YWx1ZSAhPT0gdW5kZWZpbmVkO1xuICAgIHRoaXMuZml4ZWRSYWRpb0xpc3RDb250cm9sID0gdGhpcy5yZWdpc3RlckNvbnRyb2wobmV3IEZvcm1Db250cm9sKG5vdEVtcHR5ID8gdGhpcy5jYXNlRmllbGQudmFsdWUgOiBudWxsKSkgYXMgRm9ybUNvbnRyb2w7XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJmb3JtLWdyb3VwIGJvdHRvbS0zMFwiIFtuZ0NsYXNzXT1cInsnZm9ybS1ncm91cC1lcnJvcic6ICFmaXhlZFJhZGlvTGlzdENvbnRyb2wudmFsaWQgJiYgKGZpeGVkUmFkaW9MaXN0Q29udHJvbC5kaXJ0eSB8fCBmaXhlZFJhZGlvTGlzdENvbnRyb2wudG91Y2hlZCl9XCIgW2lkXT1cImlkKClcIj5cbiAgPGZpZWxkc2V0PlxuICAgIDxsZWdlbmQ+XG4gICAgICA8bGFiZWwgW2Zvcl09XCJpZCgpXCI+XG4gICAgICAgIDxzcGFuIGNsYXNzPVwiZm9ybS1sYWJlbFwiICpuZ0lmPVwiY2FzZUZpZWxkLmxhYmVsXCI+e3tjYXNlRmllbGQgfCBjY2RGaWVsZExhYmVsfX08L3NwYW4+XG4gICAgICA8L2xhYmVsPlxuICAgICAgPHNwYW4gY2xhc3M9XCJmb3JtLWhpbnRcIiAqbmdJZj1cImNhc2VGaWVsZC5oaW50X3RleHRcIj57e2Nhc2VGaWVsZC5oaW50X3RleHR9fTwvc3Bhbj5cbiAgICAgIDxzcGFuIGNsYXNzPVwiZXJyb3ItbWVzc2FnZVwiICpuZ0lmPVwiZml4ZWRSYWRpb0xpc3RDb250cm9sLmVycm9ycyAmJiAoZml4ZWRSYWRpb0xpc3RDb250cm9sLmRpcnR5IHx8IGZpeGVkUmFkaW9MaXN0Q29udHJvbC50b3VjaGVkKVwiPnt7Zml4ZWRSYWRpb0xpc3RDb250cm9sLmVycm9ycyB8IGNjZEZpcnN0RXJyb3I6Y2FzZUZpZWxkLmxhYmVsfX08L3NwYW4+XG4gICAgPC9sZWdlbmQ+XG4gICAgPG5nLWNvbnRhaW5lcj5cbiAgICAgIDxkaXYgY2xhc3M9XCJtdWx0aXBsZS1jaG9pY2VcIiAqbmdGb3I9XCJsZXQgcmFkaW9CdXR0b24gb2YgY2FzZUZpZWxkLmZpZWxkX3R5cGUuZml4ZWRfbGlzdF9pdGVtc1wiIFtuZ0NsYXNzXT1cIntzZWxlY3RlZDogZml4ZWRSYWRpb0xpc3RDb250cm9sLnZhbHVlID09PSByYWRpb0J1dHRvbi5jb2RlfVwiPlxuICAgICAgICA8aW5wdXQgY2xhc3M9XCJmb3JtLWNvbnRyb2xcIiBbaWRdPVwiaWQoKSsnLScrcmFkaW9CdXR0b24uY29kZVwiIFtuYW1lXT1cImlkKClcIiB0eXBlPVwicmFkaW9cIiBbZm9ybUNvbnRyb2xdPVwiZml4ZWRSYWRpb0xpc3RDb250cm9sXCIgW3ZhbHVlXT1cInJhZGlvQnV0dG9uLmNvZGVcIj5cbiAgICAgICAgPGxhYmVsIGNsYXNzPVwiZm9ybS1sYWJlbFwiIFtmb3JdPVwiaWQoKSsnLScrcmFkaW9CdXR0b24uY29kZVwiPnt7cmFkaW9CdXR0b24ubGFiZWx9fTwvbGFiZWw+XG4gICAgICA8L2Rpdj5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgPC9maWVsZHNldD5cbjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { AbstractFieldReadComponent } from '../base-field/abstract-field-read.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "./event-log/event-log.component";
|
|
5
|
+
export class CaseHistoryViewerFieldComponent extends AbstractFieldReadComponent {
|
|
6
|
+
}
|
|
7
|
+
CaseHistoryViewerFieldComponent.ɵfac = function CaseHistoryViewerFieldComponent_Factory(t) { return ɵCaseHistoryViewerFieldComponent_BaseFactory(t || CaseHistoryViewerFieldComponent); };
|
|
8
|
+
CaseHistoryViewerFieldComponent.ɵcmp = i0.ɵɵdefineComponent({ type: CaseHistoryViewerFieldComponent, selectors: [["ccd-case-history-viewer-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [[3, "events"]], template: function CaseHistoryViewerFieldComponent_Template(rf, ctx) { if (rf & 1) {
|
|
9
|
+
i0.ɵɵelement(0, "ccd-event-log", 0);
|
|
10
|
+
} if (rf & 2) {
|
|
11
|
+
i0.ɵɵproperty("events", ctx.caseField.value);
|
|
12
|
+
} }, directives: [i1.EventLogComponent], encapsulation: 2 });
|
|
13
|
+
const ɵCaseHistoryViewerFieldComponent_BaseFactory = /*@__PURE__*/ i0.ɵɵgetInheritedFactory(CaseHistoryViewerFieldComponent);
|
|
14
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CaseHistoryViewerFieldComponent, [{
|
|
15
|
+
type: Component,
|
|
16
|
+
args: [{
|
|
17
|
+
selector: 'ccd-case-history-viewer-field',
|
|
18
|
+
templateUrl: 'case-history-viewer-field.component.html',
|
|
19
|
+
}]
|
|
20
|
+
}], null, null); })();
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FzZS1oaXN0b3J5LXZpZXdlci1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9oaXN0b3J5L2Nhc2UtaGlzdG9yeS12aWV3ZXItZmllbGQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvaGlzdG9yeS9jYXNlLWhpc3Rvcnktdmlld2VyLWZpZWxkLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sNkNBQTZDLENBQUM7OztBQU16RixNQUFNLE9BQU8sK0JBQWdDLFNBQVEsMEJBQTBCOztzSkFBbEUsK0JBQStCO29FQUEvQiwrQkFBK0I7UUNQNUMsbUNBQTBEOztRQUEzQyw0Q0FBMEI7OzRGRE81QiwrQkFBK0I7dUZBQS9CLCtCQUErQjtjQUozQyxTQUFTO2VBQUM7Z0JBQ1QsUUFBUSxFQUFFLCtCQUErQjtnQkFDekMsV0FBVyxFQUFFLDBDQUEwQzthQUN4RCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWJzdHJhY3RGaWVsZFJlYWRDb21wb25lbnQgfSBmcm9tICcuLi9iYXNlLWZpZWxkL2Fic3RyYWN0LWZpZWxkLXJlYWQuY29tcG9uZW50JztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnY2NkLWNhc2UtaGlzdG9yeS12aWV3ZXItZmllbGQnLFxuICB0ZW1wbGF0ZVVybDogJ2Nhc2UtaGlzdG9yeS12aWV3ZXItZmllbGQuY29tcG9uZW50Lmh0bWwnLFxufSlcbmV4cG9ydCBjbGFzcyBDYXNlSGlzdG9yeVZpZXdlckZpZWxkQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RGaWVsZFJlYWRDb21wb25lbnQge31cbiIsIjxjY2QtZXZlbnQtbG9nIFtldmVudHNdPVwiY2FzZUZpZWxkLnZhbHVlXCI+PC9jY2QtZXZlbnQtbG9nPiJdfQ==
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { CaseViewEvent } from '../../../../domain';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../utils/date.pipe";
|
|
5
|
+
import * as i2 from "@angular/common";
|
|
6
|
+
import * as i3 from "../../utils/dash.pipe";
|
|
7
|
+
export class EventLogDetailsComponent {
|
|
8
|
+
}
|
|
9
|
+
EventLogDetailsComponent.ɵfac = function EventLogDetailsComponent_Factory(t) { return new (t || EventLogDetailsComponent)(); };
|
|
10
|
+
EventLogDetailsComponent.ɵcmp = i0.ɵɵdefineComponent({ type: EventLogDetailsComponent, selectors: [["ccd-event-log-details"]], inputs: { event: "event" }, decls: 55, vars: 22, consts: [["tabindex", "0", 1, "EventLogDetails"], [1, "heading-h2"], ["tabindex", "0", "aria-live", "polite"], [1, "text-16"], [1, "tooltip", "text-16"], [1, "tooltiptext", "text-16"]], template: function EventLogDetailsComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "table", 0);
|
|
12
|
+
i0.ɵɵelementStart(1, "caption");
|
|
13
|
+
i0.ɵɵelementStart(2, "h2", 1);
|
|
14
|
+
i0.ɵɵtext(3, "Details");
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
i0.ɵɵelementEnd();
|
|
17
|
+
i0.ɵɵelementStart(4, "tbody", 2);
|
|
18
|
+
i0.ɵɵelementStart(5, "tr");
|
|
19
|
+
i0.ɵɵelementStart(6, "th");
|
|
20
|
+
i0.ɵɵelementStart(7, "span", 3);
|
|
21
|
+
i0.ɵɵtext(8, "Date");
|
|
22
|
+
i0.ɵɵelementEnd();
|
|
23
|
+
i0.ɵɵelementEnd();
|
|
24
|
+
i0.ɵɵelementStart(9, "td");
|
|
25
|
+
i0.ɵɵelementStart(10, "div", 4);
|
|
26
|
+
i0.ɵɵtext(11);
|
|
27
|
+
i0.ɵɵpipe(12, "ccdDate");
|
|
28
|
+
i0.ɵɵelementStart(13, "span", 5);
|
|
29
|
+
i0.ɵɵtext(14);
|
|
30
|
+
i0.ɵɵpipe(15, "ccdDate");
|
|
31
|
+
i0.ɵɵelementEnd();
|
|
32
|
+
i0.ɵɵelementEnd();
|
|
33
|
+
i0.ɵɵelementEnd();
|
|
34
|
+
i0.ɵɵelementEnd();
|
|
35
|
+
i0.ɵɵelementStart(16, "tr");
|
|
36
|
+
i0.ɵɵelementStart(17, "th");
|
|
37
|
+
i0.ɵɵelementStart(18, "span", 3);
|
|
38
|
+
i0.ɵɵtext(19, "Author");
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
i0.ɵɵelementEnd();
|
|
41
|
+
i0.ɵɵelementStart(20, "td");
|
|
42
|
+
i0.ɵɵelementStart(21, "span", 3);
|
|
43
|
+
i0.ɵɵtext(22);
|
|
44
|
+
i0.ɵɵpipe(23, "titlecase");
|
|
45
|
+
i0.ɵɵpipe(24, "uppercase");
|
|
46
|
+
i0.ɵɵelementEnd();
|
|
47
|
+
i0.ɵɵelementEnd();
|
|
48
|
+
i0.ɵɵelementEnd();
|
|
49
|
+
i0.ɵɵelementStart(25, "tr");
|
|
50
|
+
i0.ɵɵelementStart(26, "th");
|
|
51
|
+
i0.ɵɵelementStart(27, "span", 3);
|
|
52
|
+
i0.ɵɵtext(28, "End state");
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
i0.ɵɵelementEnd();
|
|
55
|
+
i0.ɵɵelementStart(29, "td");
|
|
56
|
+
i0.ɵɵelementStart(30, "span", 3);
|
|
57
|
+
i0.ɵɵtext(31);
|
|
58
|
+
i0.ɵɵelementEnd();
|
|
59
|
+
i0.ɵɵelementEnd();
|
|
60
|
+
i0.ɵɵelementEnd();
|
|
61
|
+
i0.ɵɵelementStart(32, "tr");
|
|
62
|
+
i0.ɵɵelementStart(33, "th");
|
|
63
|
+
i0.ɵɵelementStart(34, "span", 3);
|
|
64
|
+
i0.ɵɵtext(35, "Event");
|
|
65
|
+
i0.ɵɵelementEnd();
|
|
66
|
+
i0.ɵɵelementEnd();
|
|
67
|
+
i0.ɵɵelementStart(36, "td");
|
|
68
|
+
i0.ɵɵelementStart(37, "span", 3);
|
|
69
|
+
i0.ɵɵtext(38);
|
|
70
|
+
i0.ɵɵelementEnd();
|
|
71
|
+
i0.ɵɵelementEnd();
|
|
72
|
+
i0.ɵɵelementEnd();
|
|
73
|
+
i0.ɵɵelementStart(39, "tr");
|
|
74
|
+
i0.ɵɵelementStart(40, "th");
|
|
75
|
+
i0.ɵɵelementStart(41, "span", 3);
|
|
76
|
+
i0.ɵɵtext(42, "Summary");
|
|
77
|
+
i0.ɵɵelementEnd();
|
|
78
|
+
i0.ɵɵelementEnd();
|
|
79
|
+
i0.ɵɵelementStart(43, "td");
|
|
80
|
+
i0.ɵɵelementStart(44, "span", 3);
|
|
81
|
+
i0.ɵɵtext(45);
|
|
82
|
+
i0.ɵɵpipe(46, "ccdDash");
|
|
83
|
+
i0.ɵɵelementEnd();
|
|
84
|
+
i0.ɵɵelementEnd();
|
|
85
|
+
i0.ɵɵelementEnd();
|
|
86
|
+
i0.ɵɵelementStart(47, "tr");
|
|
87
|
+
i0.ɵɵelementStart(48, "th");
|
|
88
|
+
i0.ɵɵelementStart(49, "span", 3);
|
|
89
|
+
i0.ɵɵtext(50, "Comment");
|
|
90
|
+
i0.ɵɵelementEnd();
|
|
91
|
+
i0.ɵɵelementEnd();
|
|
92
|
+
i0.ɵɵelementStart(51, "td");
|
|
93
|
+
i0.ɵɵelementStart(52, "span", 3);
|
|
94
|
+
i0.ɵɵtext(53);
|
|
95
|
+
i0.ɵɵpipe(54, "ccdDash");
|
|
96
|
+
i0.ɵɵelementEnd();
|
|
97
|
+
i0.ɵɵelementEnd();
|
|
98
|
+
i0.ɵɵelementEnd();
|
|
99
|
+
i0.ɵɵelementEnd();
|
|
100
|
+
i0.ɵɵelementEnd();
|
|
101
|
+
} if (rf & 2) {
|
|
102
|
+
i0.ɵɵadvance(11);
|
|
103
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind2(12, 8, ctx.event.timestamp, "local"), " ");
|
|
104
|
+
i0.ɵɵadvance(3);
|
|
105
|
+
i0.ɵɵtextInterpolate1("Local: ", i0.ɵɵpipeBind2(15, 11, ctx.event.timestamp, "local"), "");
|
|
106
|
+
i0.ɵɵadvance(8);
|
|
107
|
+
i0.ɵɵtextInterpolate2("", i0.ɵɵpipeBind1(23, 14, ctx.event.user_first_name), " ", i0.ɵɵpipeBind1(24, 16, ctx.event.user_last_name), "");
|
|
108
|
+
i0.ɵɵadvance(9);
|
|
109
|
+
i0.ɵɵtextInterpolate(ctx.event.state_name);
|
|
110
|
+
i0.ɵɵadvance(7);
|
|
111
|
+
i0.ɵɵtextInterpolate(ctx.event.event_name);
|
|
112
|
+
i0.ɵɵadvance(7);
|
|
113
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(46, 18, ctx.event.summary));
|
|
114
|
+
i0.ɵɵadvance(8);
|
|
115
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(54, 20, ctx.event.comment));
|
|
116
|
+
} }, pipes: [i1.DatePipe, i2.TitleCasePipe, i2.UpperCasePipe, i3.DashPipe], styles: [".EventLogDetails[_ngcontent-%COMP%] td[_ngcontent-%COMP%], .EventLogDetails[_ngcontent-%COMP%] th[_ngcontent-%COMP%]{border-bottom:none}"] });
|
|
117
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EventLogDetailsComponent, [{
|
|
118
|
+
type: Component,
|
|
119
|
+
args: [{
|
|
120
|
+
selector: 'ccd-event-log-details',
|
|
121
|
+
templateUrl: './event-log-details.component.html',
|
|
122
|
+
styleUrls: ['./event-log-details.scss']
|
|
123
|
+
}]
|
|
124
|
+
}], null, { event: [{
|
|
125
|
+
type: Input
|
|
126
|
+
}] }); })();
|
|
127
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXZlbnQtbG9nLWRldGFpbHMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvaGlzdG9yeS9ldmVudC1sb2cvZXZlbnQtbG9nLWRldGFpbHMuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvaGlzdG9yeS9ldmVudC1sb2cvZXZlbnQtbG9nLWRldGFpbHMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDakQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLG9CQUFvQixDQUFDOzs7OztBQU9uRCxNQUFNLE9BQU8sd0JBQXdCOztnR0FBeEIsd0JBQXdCOzZEQUF4Qix3QkFBd0I7UUNSckMsZ0NBQTRDO1FBQzFDLCtCQUFTO1FBQUEsNkJBQXVCO1FBQUEsdUJBQU87UUFBQSxpQkFBSztRQUFBLGlCQUFVO1FBQ3RELGdDQUF1QztRQUNyQywwQkFBSTtRQUNGLDBCQUFJO1FBQUEsK0JBQXNCO1FBQUEsb0JBQUk7UUFBQSxpQkFBTztRQUFBLGlCQUFLO1FBQzFDLDBCQUFJO1FBQ0YsK0JBQTZCO1FBQUEsYUFDM0I7O1FBQUEsZ0NBQWtDO1FBQUEsYUFBOEM7O1FBQUEsaUJBQU87UUFDekYsaUJBQU07UUFDUixpQkFBSztRQUNQLGlCQUFLO1FBQ0wsMkJBQUk7UUFDRiwyQkFBSTtRQUFBLGdDQUFzQjtRQUFBLHVCQUFNO1FBQUEsaUJBQU87UUFBQSxpQkFBSztRQUM1QywyQkFBSTtRQUFBLGdDQUFzQjtRQUFBLGFBQTBFOzs7UUFBQSxpQkFBTztRQUFBLGlCQUFLO1FBQ2xILGlCQUFLO1FBQ0wsMkJBQUk7UUFDRiwyQkFBSTtRQUFBLGdDQUFzQjtRQUFBLDBCQUFTO1FBQUEsaUJBQU87UUFBQSxpQkFBSztRQUMvQywyQkFBSTtRQUFBLGdDQUFzQjtRQUFBLGFBQW9CO1FBQUEsaUJBQU87UUFBQSxpQkFBSztRQUM1RCxpQkFBSztRQUNMLDJCQUFJO1FBQ0YsMkJBQUk7UUFBQSxnQ0FBc0I7UUFBQSxzQkFBSztRQUFBLGlCQUFPO1FBQUEsaUJBQUs7UUFDM0MsMkJBQUk7UUFBQSxnQ0FBc0I7UUFBQSxhQUFvQjtRQUFBLGlCQUFPO1FBQUEsaUJBQUs7UUFDNUQsaUJBQUs7UUFDTCwyQkFBSTtRQUNGLDJCQUFJO1FBQUEsZ0NBQXNCO1FBQUEsd0JBQU87UUFBQSxpQkFBTztRQUFBLGlCQUFLO1FBQzdDLDJCQUFJO1FBQUEsZ0NBQXNCO1FBQUEsYUFBMkI7O1FBQUEsaUJBQU87UUFBQSxpQkFBSztRQUNuRSxpQkFBSztRQUNMLDJCQUFJO1FBQ0YsMkJBQUk7UUFBQSxnQ0FBc0I7UUFBQSx3QkFBTztRQUFBLGlCQUFPO1FBQUEsaUJBQUs7UUFDN0MsMkJBQUk7UUFBQSxnQ0FBc0I7UUFBQSxhQUEyQjs7UUFBQSxpQkFBTztRQUFBLGlCQUFLO1FBQ25FLGlCQUFLO1FBQ1AsaUJBQVE7UUFDVixpQkFBUTs7UUExQjZCLGdCQUMzQjtRQUQyQixtRkFDM0I7UUFBa0MsZUFBOEM7UUFBOUMsMEZBQThDO1FBTTFELGVBQTBFO1FBQTFFLHVJQUEwRTtRQUkxRSxlQUFvQjtRQUFwQiwwQ0FBb0I7UUFJcEIsZUFBb0I7UUFBcEIsMENBQW9CO1FBSXBCLGVBQTJCO1FBQTNCLCtEQUEyQjtRQUkzQixlQUEyQjtRQUEzQiwrREFBMkI7O3VGRHJCOUMsd0JBQXdCO2NBTHBDLFNBQVM7ZUFBQztnQkFDVCxRQUFRLEVBQUUsdUJBQXVCO2dCQUNqQyxXQUFXLEVBQUUsb0NBQW9DO2dCQUNqRCxTQUFTLEVBQUUsQ0FBQywwQkFBMEIsQ0FBQzthQUN4QztnQkFHUSxLQUFLO2tCQURYLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDYXNlVmlld0V2ZW50IH0gZnJvbSAnLi4vLi4vLi4vLi4vZG9tYWluJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnY2NkLWV2ZW50LWxvZy1kZXRhaWxzJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2V2ZW50LWxvZy1kZXRhaWxzLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZXZlbnQtbG9nLWRldGFpbHMuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIEV2ZW50TG9nRGV0YWlsc0NvbXBvbmVudCB7XG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBldmVudDogQ2FzZVZpZXdFdmVudDtcbn1cbiIsIjx0YWJsZSB0YWJpbmRleD1cIjBcIiBjbGFzcz1cIkV2ZW50TG9nRGV0YWlsc1wiPlxuICA8Y2FwdGlvbj48aDIgY2xhc3M9XCJoZWFkaW5nLWgyXCI+RGV0YWlsczwvaDI+PC9jYXB0aW9uPlxuICA8dGJvZHkgdGFiaW5kZXg9XCIwXCIgYXJpYS1saXZlPVwicG9saXRlXCI+XG4gICAgPHRyPlxuICAgICAgPHRoPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPkRhdGU8L3NwYW4+PC90aD5cbiAgICAgIDx0ZD5cbiAgICAgICAgPGRpdiBjbGFzcz1cInRvb2x0aXAgdGV4dC0xNlwiPnt7ZXZlbnQudGltZXN0YW1wIHwgY2NkRGF0ZSA6ICdsb2NhbCd9fVxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwidG9vbHRpcHRleHQgdGV4dC0xNlwiPkxvY2FsOiB7e2V2ZW50LnRpbWVzdGFtcCB8IGNjZERhdGUgOiAnbG9jYWwnfX08L3NwYW4+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC90ZD5cbiAgICA8L3RyPlxuICAgIDx0cj5cbiAgICAgIDx0aD48c3BhbiBjbGFzcz1cInRleHQtMTZcIj5BdXRob3I8L3NwYW4+PC90aD5cbiAgICAgIDx0ZD48c3BhbiBjbGFzcz1cInRleHQtMTZcIj57e2V2ZW50LnVzZXJfZmlyc3RfbmFtZSB8IHRpdGxlY2FzZX19IHt7ZXZlbnQudXNlcl9sYXN0X25hbWUgfCB1cHBlcmNhc2V9fTwvc3Bhbj48L3RkPlxuICAgIDwvdHI+XG4gICAgPHRyPlxuICAgICAgPHRoPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPkVuZCBzdGF0ZTwvc3Bhbj48L3RoPlxuICAgICAgPHRkPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPnt7ZXZlbnQuc3RhdGVfbmFtZX19PC9zcGFuPjwvdGQ+XG4gICAgPC90cj5cbiAgICA8dHI+XG4gICAgICA8dGg+PHNwYW4gY2xhc3M9XCJ0ZXh0LTE2XCI+RXZlbnQ8L3NwYW4+PC90aD5cbiAgICAgIDx0ZD48c3BhbiBjbGFzcz1cInRleHQtMTZcIj57e2V2ZW50LmV2ZW50X25hbWV9fTwvc3Bhbj48L3RkPlxuICAgIDwvdHI+XG4gICAgPHRyPlxuICAgICAgPHRoPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPlN1bW1hcnk8L3NwYW4+PC90aD5cbiAgICAgIDx0ZD48c3BhbiBjbGFzcz1cInRleHQtMTZcIj57e2V2ZW50LnN1bW1hcnkgfCBjY2REYXNofX08L3NwYW4+PC90ZD5cbiAgICA8L3RyPlxuICAgIDx0cj5cbiAgICAgIDx0aD48c3BhbiBjbGFzcz1cInRleHQtMTZcIj5Db21tZW50PC9zcGFuPjwvdGg+XG4gICAgICA8dGQ+PHNwYW4gY2xhc3M9XCJ0ZXh0LTE2XCI+e3tldmVudC5jb21tZW50IHwgY2NkRGFzaH19PC9zcGFuPjwvdGQ+XG4gICAgPC90cj5cbiAgPC90Ym9keT5cbjwvdGFibGU+XG4iXX0=
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
import { formatDate } from '@angular/common';
|
|
2
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
3
|
+
import { CaseViewEvent } from '../../../../domain';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "@angular/common";
|
|
6
|
+
import * as i2 from "@angular/router";
|
|
7
|
+
import * as i3 from "../../utils/date.pipe";
|
|
8
|
+
function EventLogTableComponent_tr_16_div_3_a_1_Template(rf, ctx) { if (rf & 1) {
|
|
9
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
|
10
|
+
i0.ɵɵelementStart(0, "a", 16);
|
|
11
|
+
i0.ɵɵlistener("click", function EventLogTableComponent_tr_16_div_3_a_1_Template_a_click_0_listener() { i0.ɵɵrestoreView(_r9); const event_r1 = i0.ɵɵnextContext(2).$implicit; const ctx_r7 = i0.ɵɵnextContext(); return ctx_r7.caseHistoryClicked(event_r1.id); });
|
|
12
|
+
i0.ɵɵtext(1);
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
} if (rf & 2) {
|
|
15
|
+
const event_r1 = i0.ɵɵnextContext(2).$implicit;
|
|
16
|
+
const ctx_r6 = i0.ɵɵnextContext();
|
|
17
|
+
i0.ɵɵattribute("aria-label", ctx_r6.getAriaLabelforLink(event_r1));
|
|
18
|
+
i0.ɵɵadvance(1);
|
|
19
|
+
i0.ɵɵtextInterpolate(event_r1.event_name);
|
|
20
|
+
} }
|
|
21
|
+
function EventLogTableComponent_tr_16_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
i0.ɵɵelementStart(0, "div", 14);
|
|
23
|
+
i0.ɵɵtemplate(1, EventLogTableComponent_tr_16_div_3_a_1_Template, 2, 2, "a", 15);
|
|
24
|
+
i0.ɵɵelementEnd();
|
|
25
|
+
} if (rf & 2) {
|
|
26
|
+
const event_r1 = i0.ɵɵnextContext().$implicit;
|
|
27
|
+
i0.ɵɵadvance(1);
|
|
28
|
+
i0.ɵɵproperty("ngIf", event_r1.state_id !== "Draft");
|
|
29
|
+
} }
|
|
30
|
+
const _c0 = function (a2) { return ["./", "event", a2, "history"]; };
|
|
31
|
+
function EventLogTableComponent_tr_16_div_4_a_1_Template(rf, ctx) { if (rf & 1) {
|
|
32
|
+
i0.ɵɵelementStart(0, "a", 18);
|
|
33
|
+
i0.ɵɵtext(1);
|
|
34
|
+
i0.ɵɵelementEnd();
|
|
35
|
+
} if (rf & 2) {
|
|
36
|
+
const event_r1 = i0.ɵɵnextContext(2).$implicit;
|
|
37
|
+
const ctx_r12 = i0.ɵɵnextContext();
|
|
38
|
+
i0.ɵɵproperty("routerLink", i0.ɵɵpureFunction1(4, _c0, event_r1.id))("target", "_blank");
|
|
39
|
+
i0.ɵɵattribute("aria-label", ctx_r12.getAriaLabelforLink(event_r1));
|
|
40
|
+
i0.ɵɵadvance(1);
|
|
41
|
+
i0.ɵɵtextInterpolate(event_r1.event_name);
|
|
42
|
+
} }
|
|
43
|
+
function EventLogTableComponent_tr_16_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
44
|
+
i0.ɵɵelementStart(0, "div");
|
|
45
|
+
i0.ɵɵtemplate(1, EventLogTableComponent_tr_16_div_4_a_1_Template, 2, 6, "a", 17);
|
|
46
|
+
i0.ɵɵelementEnd();
|
|
47
|
+
} if (rf & 2) {
|
|
48
|
+
const event_r1 = i0.ɵɵnextContext().$implicit;
|
|
49
|
+
i0.ɵɵadvance(1);
|
|
50
|
+
i0.ɵɵproperty("ngIf", event_r1.state_id !== "Draft");
|
|
51
|
+
} }
|
|
52
|
+
function EventLogTableComponent_tr_16_span_5_Template(rf, ctx) { if (rf & 1) {
|
|
53
|
+
i0.ɵɵelementStart(0, "span");
|
|
54
|
+
i0.ɵɵtext(1);
|
|
55
|
+
i0.ɵɵelementEnd();
|
|
56
|
+
} if (rf & 2) {
|
|
57
|
+
const event_r1 = i0.ɵɵnextContext().$implicit;
|
|
58
|
+
i0.ɵɵadvance(1);
|
|
59
|
+
i0.ɵɵtextInterpolate(event_r1.event_name);
|
|
60
|
+
} }
|
|
61
|
+
function EventLogTableComponent_tr_16_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
62
|
+
i0.ɵɵelementStart(0, "div", 19);
|
|
63
|
+
i0.ɵɵelementStart(1, "a", 20);
|
|
64
|
+
i0.ɵɵelement(2, "img", 21);
|
|
65
|
+
i0.ɵɵelementEnd();
|
|
66
|
+
i0.ɵɵelementStart(3, "span", 22);
|
|
67
|
+
i0.ɵɵtext(4);
|
|
68
|
+
i0.ɵɵelementEnd();
|
|
69
|
+
i0.ɵɵelementEnd();
|
|
70
|
+
} if (rf & 2) {
|
|
71
|
+
const event_r1 = i0.ɵɵnextContext().$implicit;
|
|
72
|
+
const ctx_r5 = i0.ɵɵnextContext();
|
|
73
|
+
i0.ɵɵadvance(1);
|
|
74
|
+
i0.ɵɵpropertyInterpolate("href", ctx_r5.getSignificantItemUrl(event_r1), i0.ɵɵsanitizeUrl);
|
|
75
|
+
i0.ɵɵattribute("aria-label", ctx_r5.getAriaLabelforLink(event_r1));
|
|
76
|
+
i0.ɵɵadvance(3);
|
|
77
|
+
i0.ɵɵtextInterpolate(ctx_r5.getSignificantItemDesc(event_r1));
|
|
78
|
+
} }
|
|
79
|
+
const _c1 = function (a0) { return { "EventLogTable-Selected": a0 }; };
|
|
80
|
+
function EventLogTableComponent_tr_16_Template(rf, ctx) { if (rf & 1) {
|
|
81
|
+
const _r18 = i0.ɵɵgetCurrentView();
|
|
82
|
+
i0.ɵɵelementStart(0, "tr", 4);
|
|
83
|
+
i0.ɵɵlistener("click", function EventLogTableComponent_tr_16_Template_tr_click_0_listener() { i0.ɵɵrestoreView(_r18); const event_r1 = ctx.$implicit; const ctx_r17 = i0.ɵɵnextContext(); return ctx_r17.select(event_r1); });
|
|
84
|
+
i0.ɵɵelementStart(1, "td");
|
|
85
|
+
i0.ɵɵelementContainerStart(2, 5);
|
|
86
|
+
i0.ɵɵtemplate(3, EventLogTableComponent_tr_16_div_3_Template, 2, 1, "div", 6);
|
|
87
|
+
i0.ɵɵtemplate(4, EventLogTableComponent_tr_16_div_4_Template, 2, 1, "div", 7);
|
|
88
|
+
i0.ɵɵelementContainerEnd();
|
|
89
|
+
i0.ɵɵtemplate(5, EventLogTableComponent_tr_16_span_5_Template, 2, 1, "span", 8);
|
|
90
|
+
i0.ɵɵtemplate(6, EventLogTableComponent_tr_16_div_6_Template, 5, 3, "div", 9);
|
|
91
|
+
i0.ɵɵelementEnd();
|
|
92
|
+
i0.ɵɵelementStart(7, "td", 10);
|
|
93
|
+
i0.ɵɵlistener("keydown.enter", function EventLogTableComponent_tr_16_Template_td_keydown_enter_7_listener() { i0.ɵɵrestoreView(_r18); const event_r1 = ctx.$implicit; const ctx_r19 = i0.ɵɵnextContext(); return ctx_r19.select(event_r1); });
|
|
94
|
+
i0.ɵɵelementStart(8, "div", 11);
|
|
95
|
+
i0.ɵɵtext(9);
|
|
96
|
+
i0.ɵɵpipe(10, "ccdDate");
|
|
97
|
+
i0.ɵɵelementStart(11, "span", 12);
|
|
98
|
+
i0.ɵɵtext(12);
|
|
99
|
+
i0.ɵɵpipe(13, "ccdDate");
|
|
100
|
+
i0.ɵɵelementEnd();
|
|
101
|
+
i0.ɵɵelementEnd();
|
|
102
|
+
i0.ɵɵelementEnd();
|
|
103
|
+
i0.ɵɵelementStart(14, "td", 13);
|
|
104
|
+
i0.ɵɵelementStart(15, "span", 2);
|
|
105
|
+
i0.ɵɵtext(16);
|
|
106
|
+
i0.ɵɵpipe(17, "titlecase");
|
|
107
|
+
i0.ɵɵpipe(18, "uppercase");
|
|
108
|
+
i0.ɵɵelementEnd();
|
|
109
|
+
i0.ɵɵelementEnd();
|
|
110
|
+
i0.ɵɵelementEnd();
|
|
111
|
+
} if (rf & 2) {
|
|
112
|
+
const event_r1 = ctx.$implicit;
|
|
113
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
114
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(22, _c1, ctx_r0.selected === event_r1));
|
|
115
|
+
i0.ɵɵattribute("aria-label", ctx_r0.getAriaLabelforRow(event_r1));
|
|
116
|
+
i0.ɵɵadvance(2);
|
|
117
|
+
i0.ɵɵproperty("ngSwitch", ctx_r0.isPartOfCaseTimeline);
|
|
118
|
+
i0.ɵɵadvance(1);
|
|
119
|
+
i0.ɵɵproperty("ngSwitchCase", true);
|
|
120
|
+
i0.ɵɵadvance(1);
|
|
121
|
+
i0.ɵɵproperty("ngSwitchCase", false);
|
|
122
|
+
i0.ɵɵadvance(1);
|
|
123
|
+
i0.ɵɵproperty("ngIf", event_r1.state_id === "Draft");
|
|
124
|
+
i0.ɵɵadvance(1);
|
|
125
|
+
i0.ɵɵproperty("ngIf", ctx_r0.significantItemExist(event_r1));
|
|
126
|
+
i0.ɵɵadvance(1);
|
|
127
|
+
i0.ɵɵattribute("aria-label", ctx_r0.getAriaLabelforColumn(event_r1));
|
|
128
|
+
i0.ɵɵadvance(2);
|
|
129
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind2(10, 12, event_r1.timestamp, "local"), " ");
|
|
130
|
+
i0.ɵɵadvance(3);
|
|
131
|
+
i0.ɵɵtextInterpolate1("Local: ", i0.ɵɵpipeBind2(13, 15, event_r1.timestamp, "local"), "");
|
|
132
|
+
i0.ɵɵadvance(4);
|
|
133
|
+
i0.ɵɵtextInterpolate2("", i0.ɵɵpipeBind1(17, 18, event_r1.user_first_name), " ", i0.ɵɵpipeBind1(18, 20, event_r1.user_last_name), "");
|
|
134
|
+
} }
|
|
135
|
+
export class EventLogTableComponent {
|
|
136
|
+
constructor() {
|
|
137
|
+
this.onSelect = new EventEmitter();
|
|
138
|
+
this.onCaseHistory = new EventEmitter();
|
|
139
|
+
this.isPartOfCaseTimeline = false;
|
|
140
|
+
}
|
|
141
|
+
ngOnInit() {
|
|
142
|
+
this.isPartOfCaseTimeline = this.onCaseHistory.observers.length > 0;
|
|
143
|
+
}
|
|
144
|
+
select(event) {
|
|
145
|
+
this.selected = event;
|
|
146
|
+
this.onSelect.emit(event);
|
|
147
|
+
}
|
|
148
|
+
significantItemExist(event) {
|
|
149
|
+
return (event.significant_item &&
|
|
150
|
+
event.significant_item.type === 'DOCUMENT' &&
|
|
151
|
+
event.significant_item.url !== undefined &&
|
|
152
|
+
event.significant_item.description !== undefined);
|
|
153
|
+
}
|
|
154
|
+
getSignificantItemUrl(event) {
|
|
155
|
+
if (event.significant_item) {
|
|
156
|
+
return event.significant_item.url;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
getSignificantItemDesc(event) {
|
|
160
|
+
if (event.significant_item) {
|
|
161
|
+
return event.significant_item.description;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
caseHistoryClicked(eventId) {
|
|
165
|
+
this.onCaseHistory.emit(eventId);
|
|
166
|
+
}
|
|
167
|
+
getAriaLabelforColumn(event) {
|
|
168
|
+
if (this.selected !== event) {
|
|
169
|
+
return `date ${formatDate(event.timestamp, 'dd MMM yyyy hh:mm:ss a', 'en-GB')},
|
|
170
|
+
press enter key for event ${event.event_name} details`;
|
|
171
|
+
}
|
|
172
|
+
else {
|
|
173
|
+
return '';
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
getAriaLabelforRow(event) {
|
|
177
|
+
return `you are on event ${event.event_name} row, press tab key to navigate to columns`;
|
|
178
|
+
}
|
|
179
|
+
getAriaLabelforLink(event) {
|
|
180
|
+
return `press enter key to open event ${event.event_name} link in separate window`;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
EventLogTableComponent.ɵfac = function EventLogTableComponent_Factory(t) { return new (t || EventLogTableComponent)(); };
|
|
184
|
+
EventLogTableComponent.ɵcmp = i0.ɵɵdefineComponent({ type: EventLogTableComponent, selectors: [["ccd-event-log-table"]], inputs: { events: "events", selected: "selected" }, outputs: { onSelect: "onSelect", onCaseHistory: "onCaseHistory" }, decls: 17, vars: 1, consts: [[1, "EventLogTable"], [1, "heading-h2"], [1, "text-16"], ["tabindex", "0", 3, "ngClass", "click", 4, "ngFor", "ngForOf"], ["tabindex", "0", 3, "ngClass", "click"], [3, "ngSwitch"], ["id", "case-timeline", 4, "ngSwitchCase"], [4, "ngSwitchCase"], [4, "ngIf"], ["class", "tooltip", 4, "ngIf"], ["tabindex", "0", 3, "keydown.enter"], [1, "tooltip", "text-16"], [1, "tooltiptext"], ["tabindex", "0"], ["id", "case-timeline"], ["class", "text-16 event-link", 3, "click", 4, "ngIf"], [1, "text-16", "event-link", 3, "click"], ["class", "text-16 event-link", 3, "routerLink", "target", 4, "ngIf"], [1, "text-16", "event-link", 3, "routerLink", "target"], [1, "tooltip"], ["target", "_blank", "rel", "noopener", 3, "href"], ["alt", "document image", "src", "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABoCAYAAABmOHdtAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4yMfEgaZUAAAkoSURBVHhe7d33c5RFHAZw/wCKiF0s2LAwiigq9l5G/UV/UUeFkEAoQqiWoKKI1Dg6YxQQbGmkXQoJIQQiaSShhiQMkgIphCSXkN4buPtcnnDG9fXCa+FN9mY+M5Lce7f3ZPb2u/vu+3rRsKn+Z4ey4e7BIB4XnQ8doA7QHB2gSTpAk3SAJlk+wOG9VL/7L+gATbrgAxzlHgAM6skVcTDhw2i4daENXvbZCXd9EAU8fqRbADi/5j9JB2jSBRvg2Hmh8MAnMbAl/Ths+jUPqhvboLapHXJKTkPU/mKI2FcEdyyJhOvmhoLqvczQAZp0wQU4YVEAuPnGw5GTtdDd0wOdXd3Q1uGQXVID/HlXdw+0tHVCWU0zvLMhFSZ5R4Dqvc+HDtCkCybAW8RAIHn6xkJpuR3aOrqgqqEVPDanwZu+u8HLLwPY1aduTAF7fSvwuLqmNliweRfc6x0JqrYMxN8FONwj9Cz0Pq8/HWBvEP2Do389wFHugTDROxqOldcDu2hmfiXcucQGN8wLgxHiWOnc6zjKncs9t8DVs4Ih+kAxFFY2QK0IUXr1q11wvRhYJOc2DQSD6B8cDXMLPAuKYyUd4P8d4Eg3B7+UfOgRA4V0XHxYafx7kcCCePT0IHhudTyEZZ6Al9YlAAO+bEbQH8RlnYT6lg4oqW6CG+eHw7Apfg6KNhrRAVo9wAeXxcKu3DJgOTLn53S4cmYwMLiA1AI4VdsCja0dwC5feroZOKXjcWO9woDHtbSLMkfYmHgMVG1zhQ7Q6gHyg/IDnbA3AssRLiLM/SUDyutagc8vrmoEDj4suAsqGuCa2SFwuWcQLAzIhJ6eMxCYVgi3LY4AVRuN6ACtHuALaxKgobUT8kUI0uRlMcAy5+fkfOjsktO5nr4pHrvmG75JUFzdDE1iGie9/s1uuHiaP7y4NgH4B8gtrYFJH8eAqo1GdIBWD5BTs6KqJmCZMW5RBLAgfmd9MvDxeeRhYNe7QhTPUqWYvkFdC2xK/A34fl9EHYZ80b2lmqZ2GPNuKDi3zRU6QKsHyC7F4PjB7vsoBi6eFgCBaQXQ0dkN2cWn4VJRJEvsgtuzSqFdPEd6ZlU8cKr31BfxwN/zDzdZlFKSqo1GdIBWD3D8+1HAQvhQUTWc+/J3BLj1QDHwyz+zwA4MhoH/euQUsJzhFO8SjwC4X4QscZks6Wg5vOKzE1RtNKIDtHqAb36bBOVieiXVN7cDB4crZ24Bt+9TgQXwmpgc4GDDQrm6oRUqxAAi+cTmwAg3f+Agwikfnz9mdjCo2mhEB2j1AN/6Lgn4gVhWjFtkg9EegbA8MgvYNW37ioFTNRbUHIRYmE8XJZLE5TD+u0EMWNLpxjbg8ao2GtEBWj3AmxeEAx9ZYgCR5vllAAeR2EMl0NDSDnweBxGWKzyxztObj6/YDix3uHzGQcS2twg42KjaaEQHaPUAH/9cfEChTgwcUm1zBzz82TZgF14hvvglLiYE7SkEdmEuzXM5jIW55w9pwFMHM8R/S/0Ld8t2YR2g4ocD4bYxBfYXVgG/3Lm5iEv67ptSgY8vt+UCt7dd+24osBzilo5l4QeBC7OrtmYDyxwue42ZEwKqNhrRAVo9QBbMreILXWIXfHtDCnAQCU4/DpzK7cmrgNHTRRcXuBiwJ68S+HrPrNoBl4ivAenplduBiwmJuWXAKZ6qjUZ0gIMlwOa2DiiqaoS31ydDX4BiwJAYYNqxCmB5wkEnI98OXJx4emU8jHKX2z/8UepIDHBXThnoAIdqgAyKm4h4ovxGr1DoG0S+TwE+1okBRLpFFOHSdXPDgEv6nBouDT0AfL/V0Yfhz4NIKDi3zRU6QKsH+NCnscBFBBbULLA5SKyMzgYu6funFsBVs4Lh5gU2KBGhSXy9KRuSgYsJM3/cAyyX8srrYaxXOKjaaEQHaPUAOYXqFhN/iSfMFwdmAhcLth8uBXbxgyeqgL/nhTbx4jkSNylxcOAmo4dEqSNxEAkRpZH0wtoEULXRiA7Q6gG+9nUiFFY2Aif549+LAJYpq7bmABdUt4iSRrp6dghwaZ8bJ9mFueWDS/qzf0qHxtZOsNe3ADdmqtpoRAdo9QB5OrFYfGiJZcWED6OAWzs8f0wHnlRaHpEFXJBlucM/AKeEH4UdAC4mrI3NBS46cAsIl8VUbTSiA7R6gFyOYnBHy+pgmiiaJW5L25F9ErhIkHy0HPj7J1bEAZfFuPD66PI44GDz8Kdiyie0d3ZBgpjGSc+K6Z2kaqMRHaDVA3xMfDiJW3W5NfeRz7YBP3h45nHoEKWJtK/QDiy0n1udAPx5S3sX3Lt0KzDo59fsAAbIQnri0mhQtdGIDtDqAbJ8mLIhBbi5nFs6eKE0p2B8LAnaCzfNDwdukOQF2OzK3MrB91sXmwMn7A3ARQXLDiI6QMUPzwfLDE76+XMW0ryEn4PDT0l5wNOeDJqDREh6IfAPwdOaz68WXVjglJCD1kTRzSXnNrlCBzhYAvwrnIIliBJG4pI+bzLBJX8+n4MO/yA8ngFy0OKUMPVYBXDp3/m9XaEDHOwBcirHDZWcyn0spmcSp3CqY50xUF4yxsHjVE0z8JYDqmON6AAHe4C8gIYX1jBAn225wPJFdawzBsibVHARgUFyEFIda0QHONgDpK/jcoHlB28e4WoBfKmY7kncUtzVLW/S091XHvHiRtWxRnSAgz7A3ptBcNmLS/a8+VjU/iLg7U5YtvB4bioatzAceHkrb27Bk0osf/7w3i7QAQ76AHtxAyVPlPNWTly6z8ivhDd8d8NLPjvBY1Mq8CZlvClZQXkd8OJDHaAO0DWTvG3gtTkRePqSgwJPmPMSLm5zO3PmDBRW1IPHehGucNuicFC9lyt0gEMtQLr7gyjg1g0uCrCrcoq2t8AOyb9VABcTbl9sA9VrD4QOUPHaA2HZAIk3Fxsx1Q/u8Y4GBsugeVKJ2+FUr3U+dIAmWT7A/5sO0CQdoEk6QJN0gCbpAE0yHSBfYKgaMcMG/YMjHeDfMB2g6iDtHB2gSTpAk3SAJukATdIBmvSvBcj/UUnfGwxWitCcKcNxhQ7QQRmOK1iIql50KFGG4wodoIMyHFfoAB2U4bhCB+igDMcVOkAHZTiu0AFK/md/Bw8XevIIyEqZAAAAAElFTkSuQmCC", 1, "doc-img"], [1, "tooltiptext", "doc-tooltip"]], template: function EventLogTableComponent_Template(rf, ctx) { if (rf & 1) {
|
|
185
|
+
i0.ɵɵelementStart(0, "table", 0);
|
|
186
|
+
i0.ɵɵelementStart(1, "caption");
|
|
187
|
+
i0.ɵɵelementStart(2, "h2", 1);
|
|
188
|
+
i0.ɵɵtext(3, "History");
|
|
189
|
+
i0.ɵɵelementEnd();
|
|
190
|
+
i0.ɵɵelementEnd();
|
|
191
|
+
i0.ɵɵelementStart(4, "thead");
|
|
192
|
+
i0.ɵɵelementStart(5, "tr");
|
|
193
|
+
i0.ɵɵelementStart(6, "th");
|
|
194
|
+
i0.ɵɵelementStart(7, "span", 2);
|
|
195
|
+
i0.ɵɵtext(8, "Event");
|
|
196
|
+
i0.ɵɵelementEnd();
|
|
197
|
+
i0.ɵɵelementEnd();
|
|
198
|
+
i0.ɵɵelementStart(9, "th");
|
|
199
|
+
i0.ɵɵelementStart(10, "span", 2);
|
|
200
|
+
i0.ɵɵtext(11, "Date");
|
|
201
|
+
i0.ɵɵelementEnd();
|
|
202
|
+
i0.ɵɵelementEnd();
|
|
203
|
+
i0.ɵɵelementStart(12, "th");
|
|
204
|
+
i0.ɵɵelementStart(13, "span", 2);
|
|
205
|
+
i0.ɵɵtext(14, "Author");
|
|
206
|
+
i0.ɵɵelementEnd();
|
|
207
|
+
i0.ɵɵelementEnd();
|
|
208
|
+
i0.ɵɵelementEnd();
|
|
209
|
+
i0.ɵɵelementEnd();
|
|
210
|
+
i0.ɵɵelementStart(15, "tbody");
|
|
211
|
+
i0.ɵɵtemplate(16, EventLogTableComponent_tr_16_Template, 19, 24, "tr", 3);
|
|
212
|
+
i0.ɵɵelementEnd();
|
|
213
|
+
i0.ɵɵelementEnd();
|
|
214
|
+
} if (rf & 2) {
|
|
215
|
+
i0.ɵɵadvance(16);
|
|
216
|
+
i0.ɵɵproperty("ngForOf", ctx.events);
|
|
217
|
+
} }, directives: [i1.NgForOf, i1.NgClass, i1.NgSwitch, i1.NgSwitchCase, i1.NgIf, i2.RouterLinkWithHref], pipes: [i3.DatePipe, i1.TitleCasePipe, i1.UpperCasePipe], styles: ["#case-timeline[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{cursor:pointer;text-decoration:underline;color:#005ea5}#case-timeline[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:#2b8cc4}#case-timeline[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:visited{color:#4c2c92}.EventLogTable[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%]:first-child{padding-left:10px}.EventLogTable[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] > tr.EventLogTable-Selected[_ngcontent-%COMP%]{border-left:8px solid #005ea5;background-color:#f8f8f8}.EventLogTable[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] > tr.EventLogTable-Selected[_ngcontent-%COMP%] td[_ngcontent-%COMP%]:first-child{padding-left:6px}.EventLogTable[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%]:not(.EventLogTable-Selected):hover{border-left:8px solid #2b8cc4;background-color:#f8f8f8;cursor:pointer;cursor:hand}.EventLogTable[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%]:not(.EventLogTable-Selected):hover td[_ngcontent-%COMP%]:first-child{padding-left:6px}.EventLogTable[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%] .event-link[_ngcontent-%COMP%]{float:left;padding-right:8px}.EventLogTable[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%] .doc-img[_ngcontent-%COMP%]{width:16px;float:left}.EventLogTable[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%] .doc-tooltip[_ngcontent-%COMP%]{left:35%;bottom:7px}.EventLogTable[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%] .doc-tooltip[_ngcontent-%COMP%]:after{border-color:transparent}"] });
|
|
218
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EventLogTableComponent, [{
|
|
219
|
+
type: Component,
|
|
220
|
+
args: [{
|
|
221
|
+
selector: 'ccd-event-log-table',
|
|
222
|
+
templateUrl: './event-log-table.component.html',
|
|
223
|
+
styleUrls: ['./event-log-table.scss']
|
|
224
|
+
}]
|
|
225
|
+
}], null, { events: [{
|
|
226
|
+
type: Input
|
|
227
|
+
}], selected: [{
|
|
228
|
+
type: Input
|
|
229
|
+
}], onSelect: [{
|
|
230
|
+
type: Output
|
|
231
|
+
}], onCaseHistory: [{
|
|
232
|
+
type: Output
|
|
233
|
+
}] }); })();
|
|
234
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXZlbnQtbG9nLXRhYmxlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NjZC1jYXNlLXVpLXRvb2xraXQvc3JjL2xpYi9zaGFyZWQvY29tcG9uZW50cy9wYWxldHRlL2hpc3RvcnkvZXZlbnQtbG9nL2V2ZW50LWxvZy10YWJsZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9oaXN0b3J5L2V2ZW50LWxvZy9ldmVudC1sb2ctdGFibGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDL0UsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLG9CQUFvQixDQUFDOzs7Ozs7O0lDWXpDLDZCQUNpSDtJQUQ5RyxrUUFBc0M7SUFDd0UsWUFBb0I7SUFBQSxpQkFBSTs7OztJQUF6RSxrRUFBZ0Q7SUFBQyxlQUFvQjtJQUFwQix5Q0FBb0I7OztJQUZ2SSwrQkFBNkM7SUFDM0MsZ0ZBQ3lJO0lBQzNJLGlCQUFNOzs7SUFERCxlQUFnQztJQUFoQyxvREFBZ0M7Ozs7SUFHbkMsNkJBRW1IO0lBQUEsWUFBb0I7SUFBQSxpQkFBSTs7OztJQUZ4SSxvRUFBbUQsb0JBQUE7SUFFWSxtRUFBZ0Q7SUFBQyxlQUFvQjtJQUFwQix5Q0FBb0I7OztJQUh6SSwyQkFBMkI7SUFDekIsZ0ZBRTJJO0lBQzdJLGlCQUFNOzs7SUFEQyxlQUFnQztJQUFoQyxvREFBZ0M7OztJQUd6Qyw0QkFBeUM7SUFBQSxZQUFvQjtJQUFBLGlCQUFPOzs7SUFBM0IsZUFBb0I7SUFBcEIseUNBQW9COzs7SUFDN0QsK0JBQXlEO0lBQ3ZELDZCQUEySDtJQUN6SCwwQkFBNHlHO0lBQzl5RyxpQkFBSTtJQUNKLGdDQUFzQztJQUFBLFlBQWlDO0lBQUEsaUJBQU87SUFDaEYsaUJBQU07Ozs7SUFKRCxlQUF1QztJQUF2QywwRkFBdUM7SUFBZ0Msa0VBQWdEO0lBR3BGLGVBQWlDO0lBQWpDLDZEQUFpQzs7Ozs7SUFsQjdFLDZCQUFpTDtJQUFoSiw2TkFBdUI7SUFDdEQsMEJBQUk7SUFDRixnQ0FBZ0Q7SUFDOUMsNkVBR007SUFDTiw2RUFJTTtJQUNSLDBCQUFlO0lBQ2YsK0VBQW9FO0lBQ3BFLDZFQUtNO0lBQ1IsaUJBQUs7SUFDTCw4QkFBb0c7SUFBaEMsNk9BQStCO0lBQUMsK0JBQTZCO0lBQUEsWUFDL0g7O0lBQUEsaUNBQTBCO0lBQUEsYUFBOEM7O0lBQUEsaUJBQU87SUFDakYsaUJBQU07SUFBQSxpQkFBSztJQUNYLCtCQUFpQjtJQUFBLGdDQUFzQjtJQUFBLGFBQTBFOzs7SUFBQSxpQkFBTztJQUFBLGlCQUFLO0lBQy9ILGlCQUFLOzs7O0lBekJvRCxtRkFBMEQ7SUFBYyxpRUFBK0M7SUFFOUosZUFBaUM7SUFBakMsc0RBQWlDO0lBQ3BCLGVBQWtCO0lBQWxCLG1DQUFrQjtJQUlyQyxlQUFtQjtJQUFuQixvQ0FBbUI7SUFNcEIsZUFBZ0M7SUFBaEMsb0RBQWdDO0lBQ2pCLGVBQWlDO0lBQWpDLDREQUFpQztJQU94QyxlQUFrRDtJQUFsRCxvRUFBa0Q7SUFBOEQsZUFDL0g7SUFEK0gsbUZBQy9IO0lBQTBCLGVBQThDO0lBQTlDLHlGQUE4QztJQUVuQyxlQUEwRTtJQUExRSxxSUFBMEU7O0FEekJySCxNQUFNLE9BQU8sc0JBQXNCO0lBTG5DO1FBY1MsYUFBUSxHQUFHLElBQUksWUFBWSxFQUFpQixDQUFDO1FBRzdDLGtCQUFhLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztRQUUzQyx5QkFBb0IsR0FBRyxLQUFLLENBQUM7S0FrRHJDO0lBaERRLFFBQVE7UUFDYixJQUFJLENBQUMsb0JBQW9CLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQztJQUN0RSxDQUFDO0lBRU0sTUFBTSxDQUFDLEtBQW9CO1FBQ2hDLElBQUksQ0FBQyxRQUFRLEdBQUcsS0FBSyxDQUFDO1FBQ3RCLElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzVCLENBQUM7SUFFTSxvQkFBb0IsQ0FBQyxLQUFvQjtRQUM5QyxPQUFPLENBQUMsS0FBSyxDQUFDLGdCQUFnQjtZQUMxQixLQUFLLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxLQUFLLFVBQVU7WUFDMUMsS0FBSyxDQUFDLGdCQUFnQixDQUFDLEdBQUcsS0FBSyxTQUFTO1lBQ3hDLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQyxXQUFXLEtBQUssU0FBUyxDQUFDLENBQUM7SUFDeEQsQ0FBQztJQUVNLHFCQUFxQixDQUFDLEtBQW9CO1FBQy9DLElBQUksS0FBSyxDQUFDLGdCQUFnQixFQUFFO1lBQzFCLE9BQU8sS0FBSyxDQUFDLGdCQUFnQixDQUFDLEdBQUcsQ0FBQztTQUNuQztJQUNILENBQUM7SUFFTSxzQkFBc0IsQ0FBQyxLQUFvQjtRQUNoRCxJQUFJLEtBQUssQ0FBQyxnQkFBZ0IsRUFBRTtZQUMxQixPQUFPLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQyxXQUFXLENBQUM7U0FDM0M7SUFDSCxDQUFDO0lBRU0sa0JBQWtCLENBQUMsT0FBZTtRQUN2QyxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUNuQyxDQUFDO0lBRU0scUJBQXFCLENBQUMsS0FBb0I7UUFDL0MsSUFBSSxJQUFJLENBQUMsUUFBUSxLQUFLLEtBQUssRUFBRTtZQUMzQixPQUFPLFFBQVEsVUFBVSxDQUFDLEtBQUssQ0FBQyxTQUFTLEVBQUUsd0JBQXdCLEVBQUUsT0FBTyxDQUFDO29DQUMvQyxLQUFLLENBQUMsVUFBVSxVQUFVLENBQUM7U0FDMUQ7YUFBTTtZQUNMLE9BQU8sRUFBRSxDQUFDO1NBQ1g7SUFDSCxDQUFDO0lBRU0sa0JBQWtCLENBQUMsS0FBb0I7UUFDNUMsT0FBTyxvQkFBb0IsS0FBSyxDQUFDLFVBQVUsNENBQTRDLENBQUM7SUFDMUYsQ0FBQztJQUVNLG1CQUFtQixDQUFDLEtBQW9CO1FBQzdDLE9BQU8saUNBQWlDLEtBQUssQ0FBQyxVQUFVLDBCQUEwQixDQUFDO0lBQ3JGLENBQUM7OzRGQS9EVSxzQkFBc0I7MkRBQXRCLHNCQUFzQjtRQ1RuQyxnQ0FBNkI7UUFDM0IsK0JBQVM7UUFBQSw2QkFBdUI7UUFBQSx1QkFBTztRQUFBLGlCQUFLO1FBQUEsaUJBQVU7UUFDdEQsNkJBQU87UUFDUCwwQkFBSTtRQUNGLDBCQUFJO1FBQUEsK0JBQXNCO1FBQUEscUJBQUs7UUFBQSxpQkFBTztRQUFBLGlCQUFLO1FBQzNDLDBCQUFJO1FBQUEsZ0NBQXNCO1FBQUEscUJBQUk7UUFBQSxpQkFBTztRQUFBLGlCQUFLO1FBQzFDLDJCQUFJO1FBQUEsZ0NBQXNCO1FBQUEsdUJBQU07UUFBQSxpQkFBTztRQUFBLGlCQUFLO1FBQzlDLGlCQUFLO1FBQ0wsaUJBQVE7UUFDUiw4QkFBTztRQUNQLHlFQXlCSztRQUNMLGlCQUFRO1FBQ1YsaUJBQVE7O1FBM0JnQixnQkFBUztRQUFULG9DQUFTOzt1RkREcEIsc0JBQXNCO2NBTGxDLFNBQVM7ZUFBQztnQkFDVCxRQUFRLEVBQUUscUJBQXFCO2dCQUMvQixXQUFXLEVBQUUsa0NBQWtDO2dCQUMvQyxTQUFTLEVBQUUsQ0FBQyx3QkFBd0IsQ0FBQzthQUN0QztnQkFJUSxNQUFNO2tCQURaLEtBQUs7WUFJQyxRQUFRO2tCQURkLEtBQUs7WUFJQyxRQUFRO2tCQURkLE1BQU07WUFJQSxhQUFhO2tCQURuQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgZm9ybWF0RGF0ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDYXNlVmlld0V2ZW50IH0gZnJvbSAnLi4vLi4vLi4vLi4vZG9tYWluJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnY2NkLWV2ZW50LWxvZy10YWJsZScsXG4gIHRlbXBsYXRlVXJsOiAnLi9ldmVudC1sb2ctdGFibGUuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9ldmVudC1sb2ctdGFibGUuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIEV2ZW50TG9nVGFibGVDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBldmVudHM6IENhc2VWaWV3RXZlbnRbXTtcblxuICBASW5wdXQoKVxuICBwdWJsaWMgc2VsZWN0ZWQ6IENhc2VWaWV3RXZlbnQ7XG5cbiAgQE91dHB1dCgpXG4gIHB1YmxpYyBvblNlbGVjdCA9IG5ldyBFdmVudEVtaXR0ZXI8Q2FzZVZpZXdFdmVudD4oKTtcblxuICBAT3V0cHV0KClcbiAgcHVibGljIG9uQ2FzZUhpc3RvcnkgPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcblxuICBwdWJsaWMgaXNQYXJ0T2ZDYXNlVGltZWxpbmUgPSBmYWxzZTtcblxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5pc1BhcnRPZkNhc2VUaW1lbGluZSA9IHRoaXMub25DYXNlSGlzdG9yeS5vYnNlcnZlcnMubGVuZ3RoID4gMDtcbiAgfVxuXG4gIHB1YmxpYyBzZWxlY3QoZXZlbnQ6IENhc2VWaWV3RXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLnNlbGVjdGVkID0gZXZlbnQ7XG4gICAgdGhpcy5vblNlbGVjdC5lbWl0KGV2ZW50KTtcbiAgfVxuXG4gIHB1YmxpYyBzaWduaWZpY2FudEl0ZW1FeGlzdChldmVudDogQ2FzZVZpZXdFdmVudCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiAoZXZlbnQuc2lnbmlmaWNhbnRfaXRlbSAmJlxuICAgICAgICBldmVudC5zaWduaWZpY2FudF9pdGVtLnR5cGUgPT09ICdET0NVTUVOVCcgJiZcbiAgICAgICAgZXZlbnQuc2lnbmlmaWNhbnRfaXRlbS51cmwgIT09IHVuZGVmaW5lZCAmJlxuICAgICAgICBldmVudC5zaWduaWZpY2FudF9pdGVtLmRlc2NyaXB0aW9uICE9PSB1bmRlZmluZWQpO1xuICB9XG5cbiAgcHVibGljIGdldFNpZ25pZmljYW50SXRlbVVybChldmVudDogQ2FzZVZpZXdFdmVudCk6IHN0cmluZyB7XG4gICAgaWYgKGV2ZW50LnNpZ25pZmljYW50X2l0ZW0pIHtcbiAgICAgIHJldHVybiBldmVudC5zaWduaWZpY2FudF9pdGVtLnVybDtcbiAgICB9XG4gIH1cblxuICBwdWJsaWMgZ2V0U2lnbmlmaWNhbnRJdGVtRGVzYyhldmVudDogQ2FzZVZpZXdFdmVudCk6IHN0cmluZyB7XG4gICAgaWYgKGV2ZW50LnNpZ25pZmljYW50X2l0ZW0pIHtcbiAgICAgIHJldHVybiBldmVudC5zaWduaWZpY2FudF9pdGVtLmRlc2NyaXB0aW9uO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBjYXNlSGlzdG9yeUNsaWNrZWQoZXZlbnRJZDogc3RyaW5nKSB7XG4gICAgdGhpcy5vbkNhc2VIaXN0b3J5LmVtaXQoZXZlbnRJZCk7XG4gIH1cblxuICBwdWJsaWMgZ2V0QXJpYUxhYmVsZm9yQ29sdW1uKGV2ZW50OiBDYXNlVmlld0V2ZW50KTogc3RyaW5nIHtcbiAgICBpZiAodGhpcy5zZWxlY3RlZCAhPT0gZXZlbnQpIHtcbiAgICAgIHJldHVybiBgZGF0ZSAke2Zvcm1hdERhdGUoZXZlbnQudGltZXN0YW1wLCAnZGQgTU1NIHl5eXkgaGg6bW06c3MgYScsICdlbi1HQicpfSxcbiAgICAgICAgcHJlc3MgZW50ZXIga2V5IGZvciBldmVudCAke2V2ZW50LmV2ZW50X25hbWV9IGRldGFpbHNgO1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gJyc7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIGdldEFyaWFMYWJlbGZvclJvdyhldmVudDogQ2FzZVZpZXdFdmVudCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIGB5b3UgYXJlIG9uIGV2ZW50ICR7ZXZlbnQuZXZlbnRfbmFtZX0gcm93LCBwcmVzcyB0YWIga2V5IHRvIG5hdmlnYXRlIHRvIGNvbHVtbnNgO1xuICB9XG5cbiAgcHVibGljIGdldEFyaWFMYWJlbGZvckxpbmsoZXZlbnQ6IENhc2VWaWV3RXZlbnQpOiBzdHJpbmcge1xuICAgIHJldHVybiBgcHJlc3MgZW50ZXIga2V5IHRvIG9wZW4gZXZlbnQgJHtldmVudC5ldmVudF9uYW1lfSBsaW5rIGluIHNlcGFyYXRlIHdpbmRvd2A7XG4gIH1cbn1cbiIsIjx0YWJsZSBjbGFzcz1cIkV2ZW50TG9nVGFibGVcIj5cbiAgPGNhcHRpb24+PGgyIGNsYXNzPVwiaGVhZGluZy1oMlwiPkhpc3Rvcnk8L2gyPjwvY2FwdGlvbj5cbiAgPHRoZWFkPlxuICA8dHI+XG4gICAgPHRoPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPkV2ZW50PC9zcGFuPjwvdGg+XG4gICAgPHRoPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPkRhdGU8L3NwYW4+PC90aD5cbiAgICA8dGg+PHNwYW4gY2xhc3M9XCJ0ZXh0LTE2XCI+QXV0aG9yPC9zcGFuPjwvdGg+XG4gIDwvdHI+XG4gIDwvdGhlYWQ+XG4gIDx0Ym9keT5cbiAgPHRyICpuZ0Zvcj1cImxldCBldmVudCBvZiBldmVudHNcIiAoY2xpY2spPVwic2VsZWN0KGV2ZW50KVwiIFtuZ0NsYXNzXT1cInsnRXZlbnRMb2dUYWJsZS1TZWxlY3RlZCc6IHNlbGVjdGVkID09PSBldmVudH1cIiB0YWJpbmRleD1cIjBcIiBhdHRyLmFyaWEtbGFiZWw9XCJ7e2dldEFyaWFMYWJlbGZvclJvdyhldmVudCl9fVwiPlxuICAgIDx0ZD5cbiAgICAgIDxuZy1jb250YWluZXIgW25nU3dpdGNoXT1cImlzUGFydE9mQ2FzZVRpbWVsaW5lXCI+XG4gICAgICAgIDxkaXYgaWQ9XCJjYXNlLXRpbWVsaW5lXCIgKm5nU3dpdGNoQ2FzZT1cInRydWVcIj5cbiAgICAgICAgICA8YSAoY2xpY2spPVwiY2FzZUhpc3RvcnlDbGlja2VkKGV2ZW50LmlkKVwiXG4gICAgICAgICAgICAqbmdJZj1cImV2ZW50LnN0YXRlX2lkICE9PSAnRHJhZnQnXCIgY2xhc3M9XCJ0ZXh0LTE2IGV2ZW50LWxpbmtcIiBhdHRyLmFyaWEtbGFiZWw9XCJ7e2dldEFyaWFMYWJlbGZvckxpbmsoZXZlbnQpfX1cIj57e2V2ZW50LmV2ZW50X25hbWV9fTwvYT5cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDxkaXYgKm5nU3dpdGNoQ2FzZT1cImZhbHNlXCI+XG4gICAgICAgICAgPGEgW3JvdXRlckxpbmtdPVwiWycuLycsICdldmVudCcsIGV2ZW50LmlkLCAnaGlzdG9yeSddXCJcbiAgICAgICAgICAgICAgW3RhcmdldF09XCInX2JsYW5rJ1wiXG4gICAgICAgICAgICAgICpuZ0lmPVwiZXZlbnQuc3RhdGVfaWQgIT09ICdEcmFmdCdcIiBjbGFzcz1cInRleHQtMTYgZXZlbnQtbGlua1wiIGF0dHIuYXJpYS1sYWJlbD1cInt7Z2V0QXJpYUxhYmVsZm9yTGluayhldmVudCl9fVwiPnt7ZXZlbnQuZXZlbnRfbmFtZX19PC9hPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPHNwYW4gKm5nSWY9XCJldmVudC5zdGF0ZV9pZCA9PT0gJ0RyYWZ0J1wiPnt7ZXZlbnQuZXZlbnRfbmFtZX19PC9zcGFuPlxuICAgICAgPGRpdiBjbGFzcz1cInRvb2x0aXBcIiAqbmdJZj1cInNpZ25pZmljYW50SXRlbUV4aXN0KGV2ZW50KVwiPlxuICAgICAgICA8YSBocmVmPVwie3tnZXRTaWduaWZpY2FudEl0ZW1VcmwoZXZlbnQpfX1cIiB0YXJnZXQ9XCJfYmxhbmtcIiByZWw9XCJub29wZW5lclwiIGF0dHIuYXJpYS1sYWJlbD1cInt7Z2V0QXJpYUxhYmVsZm9yTGluayhldmVudCl9fVwiPlxuICAgICAgICAgIDxpbWcgY2xhc3M9XCJkb2MtaW1nXCIgYWx0PVwiZG9jdW1lbnQgaW1hZ2VcIiBzcmM9XCJkYXRhOmltYWdlL3BuZztiYXNlNjQsaVZCT1J3MEtHZ29BQUFBTlNVaEVVZ0FBQUZBQUFBQm9DQVlBQUFCbU9IZHRBQUFBQkdkQlRVRUFBTEdQQy94aEJRQUFBQWx3U0ZsekFBQU93d0FBRHNNQngyK29aQUFBQUJsMFJWaDBVMjltZEhkaGNtVUFjR0ZwYm5RdWJtVjBJRFF1TUM0eU1mRWdhWlVBQUFrb1NVUkJWSGhlN2QzM2M1UkZIQVp3L3dDS2lGMHMyTEF3aWlncTlsNUcvVVYvVVVlRmtFQW9RcWlXb0tLSTFEZzZZeFFRYkdta1hRb0pJUVFpYVNTaGhpUU1rZ0lwaENTWGtONGJ1UHRjbm5ERzlmWENhK0ZOOW1ZK001TGNlN2YzWlBiMnUvdnUrM3JSc0tuK1o0ZXk0ZTdCSUI0WG5ROGRvQTdRSEIyZ1NUcEFrM1NBSmxrK3dPRzlWTC83TCtnQVRicmdBeHpsSGdBTTZza1ZjVERodzJpNGRhRU5YdmJaQ1hkOUVBVThmcVJiQURpLzVqOUpCMmpTQlJ2ZzJIbWg4TUFuTWJBbC9UaHMralVQcWh2Ym9MYXBIWEpLVGtQVS9tS0kyRmNFZHl5SmhPdm1ob0xxdmN6UUFacDB3UVU0WVZFQXVQbkd3NUdUdGREZDB3T2RYZDNRMXVHUVhWSUQvSGxYZHcrMHRIVkNXVTB6dkxNaEZTWjVSNERxdmMrSER0Q2tDeWJBVzhSQUlIbjZ4a0pwdVIzYU9ycWdxcUVWUERhbndadSt1OEhMTHdQWTFhZHVUQUY3ZlN2d3VMcW1ObGl3ZVJmYzZ4MEpxcllNeE44Rk9Od2o5Q3owUHE4L0hXQnZFUDJEbzM4OXdGSHVnVERST3hxT2xkY0R1MmhtZmlYY3VjUUdOOHdMZ3hIaVdPbmM2empLbmNzOXQ4RFZzNEloK2tBeEZGWTJRSzBJVVhyMXExMXd2UmhZSk9jMkRRU0Q2QjhjRFhNTFBBdUtZeVVkNFA4ZDRFZzNCNytVZk9nUkE0VjBYSHhZYWZ4N2tjQ0NlUFQwSUhodWRUeUVaWjZBbDlZbEFBTytiRWJRSDhSbG5ZVDZsZzRvcVc2Q0crZUh3N0FwZmc2S05oclJBVm85d0FlWHhjS3UzREpnT1RMbjUzUzRjbVl3TUxpQTFBSTRWZHNDamEwZHdDNWZlcm9aT0tYamNXTzl3b0RIdGJTTE1rZlltSGdNVkcxemhRN1E2Z0h5Zy9JRG5iQTNBc3NSTGlMTS9TVUR5dXRhZ2M4dnJtb0VEajRzdUFzcUd1Q2EyU0Z3dVdjUUxBekloSjZlTXhDWVZnaTNMWTRBVlJ1TjZBQ3RIdUFMYXhLZ29iVVQ4a1VJMHVSbE1jQXk1K2ZrZk9qc2t0TzVucjRwSHJ2bUc3NUpVRnpkREUxaUdpZTkvczF1dUhpYVA3eTROZ0g0QjhndHJZRkpIOGVBcW8xR2RJQldENUJUczZLcUptQ1pNVzVSQkxBZ2ZtZDlNdkR4ZWVSaFlOZTdRaFRQVXFXWXZrRmRDMnhLL0EzNGZsOUVIWVo4MGIybG1xWjJHUE51S0RpM3pSVTZRS3NIeUM3RjRQakI3dnNvQmk2ZUZnQ0JhUVhRMGRrTjJjV240VkpSSkV2c2d0dXpTcUZkUEVkNlpsVThjS3IzMUJmeHdOL3pEemRabEZLU3FvMUdkSUJXRDNEOCsxSEFRdmhRVVRXYysvSjNCTGoxUURId3l6K3p3QTRNaG9IL2V1UVVzSnpoRk84U2p3QzRYNFFzY1prczZXZzV2T0t6RTFSdE5LSUR0SHFBYjM2YkJPVmllaVhWTjdjREI0Y3JaMjRCdCs5VGdRWHdtcGdjNEdERFFybTZvUlVxeEFBaStjVG13QWczZitBZ3dpa2ZuejltZGpDbzJtaEVCMmoxQU4vNkxnbjRnVmhXakZ0a2c5RWVnYkE4TWd2WU5XMzdpb0ZUTlJiVUhJUlltRThYSlpMRTVURCt1MEVNV05McHhqYmc4YW8yR3RFQldqM0FteGVFQXg5WllnQ1I1dmxsQUFlUjJFTWwwTkRTRG53ZUJ4R1dLenl4enRPYmo2L1lEaXgzdUh6R1FjUzJ0d2c0MktqYWFFUUhhUFVBSC85Y2ZFQ2hUZ3djVW0xekJ6ejgyVFpnRjE0aHZ2Z2xMaVlFN1NrRWRtRXV6WE01aklXNTV3OXB3Rk1ITThSL1MvMExkOHQyWVIyZzRvY0Q0Yll4QmZZWFZnRy8zTG01aUV2NjdwdFNnWTh2dCtVQ3Q3ZGQrMjRvc0J6aWxvNWw0UWVCQzdPcnRtWUR5eHd1ZTQyWkV3S3FOaHJSQVZvOVFCYk1yZUlMWFdJWGZIdERDbkFRQ1U0L0Rweks3Y21yZ05IVFJSY1h1Qml3SjY4UytIclByTm9CbDRpdkFlbnBsZHVCaXdtSnVXWEFLWjZxalVaMGdJTWx3T2EyRGlpcWFvUzMxeWREWDRCaXdKQVlZTnF4Q21CNXdrRW5JOThPWEp4NGVtVThqSEtYMnovOFVlcElESEJYVGhub0FJZHFnQXlLbTRoNG92eEdyMURvRzBTK1R3RSsxb2tCUkxwRkZPSFNkWFBEZ0V2Nm5Cb3VEVDBBZkwvVjBZZmh6NE5JS0RpM3pSVTZRS3NIK05DbnNjQkZCQmJVTExBNVNLeU16Z1l1NmZ1bkZzQlZzNExoNWdVMktCR2hTWHk5S1J1U2dZc0pNMy9jQXl5WDhzcnJZYXhYT0tqYWFFUUhhUFVBT1lYcUZoTi9pU2ZNRndkbUFoY0x0aDh1QlhieGd5ZXFnTC9uaFRieDRqa1NOeWx4Y09BbW80ZEVxU054RUFrUnBaSDB3dG9FVUxYUmlBN1E2Z0crOW5VaUZGWTJBaWY1NDkrTEFKWXBxN2JtQUJkVXQ0aVNScnA2ZGdod2FaOGJKOW1GdWVXRFMvcXpmMHFIeHRaT3NOZTNBRGRtcXRwb1JBZG85UUI1T3JGWWZHaUpaY1dFRDZPQVd6czhmMHdIbmxSYUhwRUZYSkJsdWNNL0FLZUVINFVkQUM0bXJJM05CUzQ2Y0FzSWw4VlViVFNpQTdSNmdGeU9ZbkJIeStwZ21paWFKVzVMMjVGOUVyaElrSHkwSFBqN0oxYkVBWmZGdVBENjZQSTQ0R0R6OEtkaXlpZTBkM1pCZ3BqR1NjK0s2WjJrYXFNUkhhRFZBM3hNZkRpSlczVzVOZmVSejdZQlAzaDQ1bkhvRUtXSnRLL1FEaXkwbjF1ZEFQeDVTM3NYM0x0MEt6RG81OWZzQUFiSVFucmkwbWhRdGRHSUR0RHFBYko4bUxJaEJiaTVuRnM2ZUtFMHAyQjhMQW5hQ3pmTkR3ZHVrT1FGMk96SzNNckI5MXNYbXdNbjdBM0FSUVhMRGlJNlFNVVB6d2ZMREU3NitYTVcwcnlFbjRQRFQwbDV3Tk9lREpxRFJFaDZJZkFQd2RPYXo2OFdYVmpnbEpDRDFrVFJ6U1huTnJsQ0J6aFlBdndybklJbGlCSkc0cEkrYnpMQkpYOCtuNE1PL3lBOG5nRnkwT0tVTVBWWUJYRHAzL205WGFFREhPd0JjaXJIRFpXY3luMHNwbWNTcDNDcVk1MHhVRjR5eHNIalZFMHo4SllEcW1PTjZBQUhlNEM4Z0lZWDFqQkFuMjI1d1BKRmRhd3pCc2liVkhBUmdVRnlFRklkYTBRSE9OZ0RwSy9qY29IbEIyOGU0V29CZkttWTdrbmNVdHpWTFcvUzA5MVhIdkhpUnRXeFJuU0FnejdBM3B0QmNObUxTL2E4K1ZqVS9pTGc3VTVZdHZCNGJpb2F0ekFjZUhrcmIyN0JrMG9zZi83dzNpN1FBUTc2QUh0eEF5VlBsUE5XVGx5Nno4aXZoRGQ4ZDhOTFBqdkJZMU1xOENabHZDbFpRWGtkOE9KREhhQU8wRFdUdkczZ3RUa1JlUHFTZ3dKUG1QTVNMbTV6TzNQbURCUlcxSVBIZWhHdWNOdWljRkM5bHl0MGdFTXRRTHI3Z3lqZzFnMHVDckNyY29xMnQ4QU95YjlWQUJjVGJsOXNBOVZyRDRRT1VQSGFBMkhaQUlrM0Z4c3gxUS91OFk0R0JzdWdlVktKMitGVXIzVStkSUFtV1Q3QS81c08wQ1Fkb0VrNlFKTjBnQ2JwQUUweUhTQmZZS2dhTWNNRy9ZTWpIZURmTUIyZzZpRHRIQjJnU1RwQWszU0FKdWtBVGRJQm12U3ZCY2ovVVVuZkd3eFdpdENjS2NOeGhRN1FRUm1PSzFpSXFsNTBLRkdHNHdvZG9JTXlIRmZvQUIyVTRiaENCK2lnRE1jVk9rQUhaVGl1MEFGSy9tZC9CdzhYZXZJSXlFcVpBQUFBQUVsRlRrU3VRbUNDXCIvPlxuICAgICAgICA8L2E+XG4gICAgICAgIDxzcGFuIGNsYXNzPVwidG9vbHRpcHRleHQgZG9jLXRvb2x0aXBcIj57e2dldFNpZ25pZmljYW50SXRlbURlc2MoZXZlbnQpfX08L3NwYW4+XG4gICAgICA8L2Rpdj5cbiAgICA8L3RkPlxuICAgIDx0ZCB0YWJpbmRleD1cIjBcIiBhdHRyLmFyaWEtbGFiZWw9XCJ7e2dldEFyaWFMYWJlbGZvckNvbHVtbihldmVudCl9fVwiIChrZXlkb3duLmVudGVyKT1cInNlbGVjdChldmVudClcIj48ZGl2IGNsYXNzPVwidG9vbHRpcCB0ZXh0LTE2XCI+e3tldmVudC50aW1lc3RhbXAgfCBjY2REYXRlIDogJ2xvY2FsJ319XG4gICAgICA8c3BhbiBjbGFzcz1cInRvb2x0aXB0ZXh0XCI+TG9jYWw6IHt7ZXZlbnQudGltZXN0YW1wIHwgY2NkRGF0ZSA6ICdsb2NhbCd9fTwvc3Bhbj5cbiAgICA8L2Rpdj48L3RkPlxuICAgIDx0ZCB0YWJpbmRleD1cIjBcIj48c3BhbiBjbGFzcz1cInRleHQtMTZcIj57e2V2ZW50LnVzZXJfZmlyc3RfbmFtZSB8IHRpdGxlY2FzZX19IHt7ZXZlbnQudXNlcl9sYXN0X25hbWUgfCB1cHBlcmNhc2V9fTwvc3Bhbj48L3RkPlxuICA8L3RyPlxuICA8L3Rib2R5PlxuPC90YWJsZT5cbiJdfQ==
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "./event-log-table.component";
|
|
5
|
+
import * as i3 from "./event-log-details.component";
|
|
6
|
+
function EventLogComponent_ccd_event_log_table_3_Template(rf, ctx) { if (rf & 1) {
|
|
7
|
+
const _r4 = i0.ɵɵgetCurrentView();
|
|
8
|
+
i0.ɵɵelementStart(0, "ccd-event-log-table", 7);
|
|
9
|
+
i0.ɵɵlistener("onSelect", function EventLogComponent_ccd_event_log_table_3_Template_ccd_event_log_table_onSelect_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r3 = i0.ɵɵnextContext(); return ctx_r3.select($event); })("onCaseHistory", function EventLogComponent_ccd_event_log_table_3_Template_ccd_event_log_table_onCaseHistory_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r5 = i0.ɵɵnextContext(); return ctx_r5.caseHistoryClicked($event); });
|
|
10
|
+
i0.ɵɵelementEnd();
|
|
11
|
+
} if (rf & 2) {
|
|
12
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
13
|
+
i0.ɵɵproperty("events", ctx_r0.events)("selected", ctx_r0.selected);
|
|
14
|
+
} }
|
|
15
|
+
function EventLogComponent_ccd_event_log_table_4_Template(rf, ctx) { if (rf & 1) {
|
|
16
|
+
const _r7 = i0.ɵɵgetCurrentView();
|
|
17
|
+
i0.ɵɵelementStart(0, "ccd-event-log-table", 8);
|
|
18
|
+
i0.ɵɵlistener("onSelect", function EventLogComponent_ccd_event_log_table_4_Template_ccd_event_log_table_onSelect_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r6 = i0.ɵɵnextContext(); return ctx_r6.select($event); });
|
|
19
|
+
i0.ɵɵelementEnd();
|
|
20
|
+
} if (rf & 2) {
|
|
21
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
22
|
+
i0.ɵɵproperty("events", ctx_r1.events)("selected", ctx_r1.selected);
|
|
23
|
+
} }
|
|
24
|
+
function EventLogComponent_ccd_event_log_details_7_Template(rf, ctx) { if (rf & 1) {
|
|
25
|
+
i0.ɵɵelement(0, "ccd-event-log-details", 9);
|
|
26
|
+
} if (rf & 2) {
|
|
27
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
28
|
+
i0.ɵɵproperty("event", ctx_r2.selected);
|
|
29
|
+
} }
|
|
30
|
+
export class EventLogComponent {
|
|
31
|
+
constructor() {
|
|
32
|
+
this.onCaseHistory = new EventEmitter();
|
|
33
|
+
this.isPartOfCaseTimeline = false;
|
|
34
|
+
}
|
|
35
|
+
ngOnInit() {
|
|
36
|
+
this.selected = this.events[0];
|
|
37
|
+
this.isPartOfCaseTimeline = this.onCaseHistory.observers.length > 0;
|
|
38
|
+
}
|
|
39
|
+
select(event) {
|
|
40
|
+
this.selected = event;
|
|
41
|
+
}
|
|
42
|
+
caseHistoryClicked(eventId) {
|
|
43
|
+
this.onCaseHistory.emit(eventId);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
EventLogComponent.ɵfac = function EventLogComponent_Factory(t) { return new (t || EventLogComponent)(); };
|
|
47
|
+
EventLogComponent.ɵcmp = i0.ɵɵdefineComponent({ type: EventLogComponent, selectors: [["ccd-event-log"]], inputs: { events: "events" }, outputs: { onCaseHistory: "onCaseHistory" }, decls: 8, vars: 4, consts: [[1, "grid-row"], [1, "column-one-half"], [3, "ngSwitch"], [3, "events", "selected", "onSelect", "onCaseHistory", 4, "ngSwitchCase"], [3, "events", "selected", "onSelect", 4, "ngSwitchCase"], [1, "EventLog-DetailsPanel"], [3, "event", 4, "ngIf"], [3, "events", "selected", "onSelect", "onCaseHistory"], [3, "events", "selected", "onSelect"], [3, "event"]], template: function EventLogComponent_Template(rf, ctx) { if (rf & 1) {
|
|
48
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
49
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
50
|
+
i0.ɵɵelementContainerStart(2, 2);
|
|
51
|
+
i0.ɵɵtemplate(3, EventLogComponent_ccd_event_log_table_3_Template, 1, 2, "ccd-event-log-table", 3);
|
|
52
|
+
i0.ɵɵtemplate(4, EventLogComponent_ccd_event_log_table_4_Template, 1, 2, "ccd-event-log-table", 4);
|
|
53
|
+
i0.ɵɵelementContainerEnd();
|
|
54
|
+
i0.ɵɵelementEnd();
|
|
55
|
+
i0.ɵɵelementStart(5, "div", 1);
|
|
56
|
+
i0.ɵɵelementStart(6, "div", 5);
|
|
57
|
+
i0.ɵɵtemplate(7, EventLogComponent_ccd_event_log_details_7_Template, 1, 1, "ccd-event-log-details", 6);
|
|
58
|
+
i0.ɵɵelementEnd();
|
|
59
|
+
i0.ɵɵelementEnd();
|
|
60
|
+
i0.ɵɵelementEnd();
|
|
61
|
+
} if (rf & 2) {
|
|
62
|
+
i0.ɵɵadvance(2);
|
|
63
|
+
i0.ɵɵproperty("ngSwitch", ctx.isPartOfCaseTimeline);
|
|
64
|
+
i0.ɵɵadvance(1);
|
|
65
|
+
i0.ɵɵproperty("ngSwitchCase", true);
|
|
66
|
+
i0.ɵɵadvance(1);
|
|
67
|
+
i0.ɵɵproperty("ngSwitchCase", false);
|
|
68
|
+
i0.ɵɵadvance(3);
|
|
69
|
+
i0.ɵɵproperty("ngIf", ctx.selected);
|
|
70
|
+
} }, directives: [i1.NgSwitch, i1.NgSwitchCase, i1.NgIf, i2.EventLogTableComponent, i3.EventLogDetailsComponent], styles: ["@media (max-width:991px){[class*=col-md][_ngcontent-%COMP%]{margin-bottom:30px}}.EventLog-DetailsPanel[_ngcontent-%COMP%]{border:1px solid #bfc1c3;padding:0 10px 10px;margin-top:20px}"] });
|
|
71
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EventLogComponent, [{
|
|
72
|
+
type: Component,
|
|
73
|
+
args: [{
|
|
74
|
+
selector: 'ccd-event-log',
|
|
75
|
+
templateUrl: './event-log.component.html',
|
|
76
|
+
styleUrls: ['./event-log.scss']
|
|
77
|
+
}]
|
|
78
|
+
}], null, { events: [{
|
|
79
|
+
type: Input
|
|
80
|
+
}], onCaseHistory: [{
|
|
81
|
+
type: Output
|
|
82
|
+
}] }); })();
|
|
83
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXZlbnQtbG9nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NjZC1jYXNlLXVpLXRvb2xraXQvc3JjL2xpYi9zaGFyZWQvY29tcG9uZW50cy9wYWxldHRlL2hpc3RvcnkvZXZlbnQtbG9nL2V2ZW50LWxvZy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9oaXN0b3J5L2V2ZW50LWxvZy9ldmVudC1sb2cuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7OztJQ0d6RSw4Q0FBMko7SUFBekUsZ09BQTJCLHlPQUFBO0lBQThDLGlCQUFzQjs7O0lBQXZJLHNDQUFpQiw2QkFBQTs7OztJQUMzRCw4Q0FBK0c7SUFBNUIsZ09BQTJCO0lBQUMsaUJBQXNCOzs7SUFBMUYsc0NBQWlCLDZCQUFBOzs7SUFLNUQsMkNBQW1GOzs7SUFBM0MsdUNBQWtCOztBRERoRSxNQUFNLE9BQU8saUJBQWlCO0lBTDlCO1FBV1Msa0JBQWEsR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO1FBSTNDLHlCQUFvQixHQUFHLEtBQUssQ0FBQztLQWVyQztJQWJRLFFBQVE7UUFDYixJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDL0IsSUFBSSxDQUFDLG9CQUFvQixHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUM7SUFDdEUsQ0FBQztJQUVNLE1BQU0sQ0FBQyxLQUFvQjtRQUNoQyxJQUFJLENBQUMsUUFBUSxHQUFHLEtBQUssQ0FBQztJQUN4QixDQUFDO0lBRU0sa0JBQWtCLENBQUMsT0FBZTtRQUN2QyxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUNuQyxDQUFDOztrRkF2QlUsaUJBQWlCO3NEQUFqQixpQkFBaUI7UUNSOUIsOEJBQXNCO1FBQ3BCLDhCQUE2QjtRQUMzQixnQ0FBZ0Q7UUFDOUMsa0dBQWlMO1FBQ2pMLGtHQUFxSTtRQUN2SSwwQkFBZTtRQUNqQixpQkFBTTtRQUNOLDhCQUE2QjtRQUMzQiw4QkFBbUM7UUFDakMsc0dBQW1GO1FBQ3JGLGlCQUFNO1FBQ1IsaUJBQU07UUFDUixpQkFBTTs7UUFWWSxlQUFpQztRQUFqQyxtREFBaUM7UUFDdkIsZUFBa0I7UUFBbEIsbUNBQWtCO1FBQ2xCLGVBQW1CO1FBQW5CLG9DQUFtQjtRQUtqQixlQUFjO1FBQWQsbUNBQWM7O3VGREQvQixpQkFBaUI7Y0FMN0IsU0FBUztlQUFDO2dCQUNULFFBQVEsRUFBRSxlQUFlO2dCQUN6QixXQUFXLEVBQUUsNEJBQTRCO2dCQUN6QyxTQUFTLEVBQUUsQ0FBQyxrQkFBa0IsQ0FBQzthQUNoQztnQkFJUSxNQUFNO2tCQURaLEtBQUs7WUFJQyxhQUFhO2tCQURuQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ2FzZVZpZXdFdmVudCB9IGZyb20gJy4uLy4uLy4uLy4uL2RvbWFpbic7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2NjZC1ldmVudC1sb2cnLFxuICB0ZW1wbGF0ZVVybDogJy4vZXZlbnQtbG9nLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZXZlbnQtbG9nLnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBFdmVudExvZ0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgQElucHV0KClcbiAgcHVibGljIGV2ZW50czogQ2FzZVZpZXdFdmVudFtdO1xuXG4gIEBPdXRwdXQoKVxuICBwdWJsaWMgb25DYXNlSGlzdG9yeSA9IG5ldyBFdmVudEVtaXR0ZXI8c3RyaW5nPigpO1xuXG4gIHB1YmxpYyBzZWxlY3RlZDogQ2FzZVZpZXdFdmVudDtcblxuICBwdWJsaWMgaXNQYXJ0T2ZDYXNlVGltZWxpbmUgPSBmYWxzZTtcblxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5zZWxlY3RlZCA9IHRoaXMuZXZlbnRzWzBdO1xuICAgIHRoaXMuaXNQYXJ0T2ZDYXNlVGltZWxpbmUgPSB0aGlzLm9uQ2FzZUhpc3Rvcnkub2JzZXJ2ZXJzLmxlbmd0aCA+IDA7XG4gIH1cblxuICBwdWJsaWMgc2VsZWN0KGV2ZW50OiBDYXNlVmlld0V2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5zZWxlY3RlZCA9IGV2ZW50O1xuICB9XG5cbiAgcHVibGljIGNhc2VIaXN0b3J5Q2xpY2tlZChldmVudElkOiBzdHJpbmcpIHtcbiAgICB0aGlzLm9uQ2FzZUhpc3RvcnkuZW1pdChldmVudElkKTtcbiAgfVxuXG59XG4iLCI8ZGl2IGNsYXNzPVwiZ3JpZC1yb3dcIj5cbiAgPGRpdiBjbGFzcz1cImNvbHVtbi1vbmUtaGFsZlwiPlxuICAgIDxuZy1jb250YWluZXIgW25nU3dpdGNoXT1cImlzUGFydE9mQ2FzZVRpbWVsaW5lXCI+XG4gICAgICA8Y2NkLWV2ZW50LWxvZy10YWJsZSAqbmdTd2l0Y2hDYXNlPVwidHJ1ZVwiIFtldmVudHNdPVwiZXZlbnRzXCIgW3NlbGVjdGVkXT1cInNlbGVjdGVkXCIgKG9uU2VsZWN0KT1cInNlbGVjdCgkZXZlbnQpXCIgKG9uQ2FzZUhpc3RvcnkpPVwiY2FzZUhpc3RvcnlDbGlja2VkKCRldmVudClcIj48L2NjZC1ldmVudC1sb2ctdGFibGU+XG4gICAgICA8Y2NkLWV2ZW50LWxvZy10YWJsZSAqbmdTd2l0Y2hDYXNlPVwiZmFsc2VcIiBbZXZlbnRzXT1cImV2ZW50c1wiIFtzZWxlY3RlZF09XCJzZWxlY3RlZFwiIChvblNlbGVjdCk9XCJzZWxlY3QoJGV2ZW50KVwiPjwvY2NkLWV2ZW50LWxvZy10YWJsZT5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgPC9kaXY+XG4gIDxkaXYgY2xhc3M9XCJjb2x1bW4tb25lLWhhbGZcIj5cbiAgICA8ZGl2IGNsYXNzPVwiRXZlbnRMb2ctRGV0YWlsc1BhbmVsXCI+XG4gICAgICA8Y2NkLWV2ZW50LWxvZy1kZXRhaWxzICpuZ0lmPVwic2VsZWN0ZWRcIiBbZXZlbnRdPVwic2VsZWN0ZWRcIj48L2NjZC1ldmVudC1sb2ctZGV0YWlscz5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG48L2Rpdj5cbiJdfQ==
|