@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,300 @@
|
|
|
1
|
+
import { NgxMatDateAdapter, NgxMatDatetimePicker, NGX_MAT_DATE_FORMATS } from '@angular-material-components/datetime-picker';
|
|
2
|
+
import { NgxMatMomentAdapter, NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS } from '@angular-material-components/moment-adapter';
|
|
3
|
+
import { Component, ElementRef, Inject, Input, ViewChild, ViewEncapsulation } from '@angular/core';
|
|
4
|
+
import { FormControl, Validators } from '@angular/forms';
|
|
5
|
+
import * as moment from 'moment';
|
|
6
|
+
import { FormatTranslatorService } from '../../../services/case-fields/format-translator.service';
|
|
7
|
+
import { AbstractFormFieldComponent } from '../base-field/abstract-form-field.component';
|
|
8
|
+
import { CUSTOM_MOMENT_FORMATS } from './datetime-picker-utils';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
import * as i1 from "../../../services/case-fields/format-translator.service";
|
|
11
|
+
import * as i2 from "@angular/common";
|
|
12
|
+
import * as i3 from "@angular/forms";
|
|
13
|
+
import * as i4 from "@angular-material-components/datetime-picker";
|
|
14
|
+
import * as i5 from "@angular/material/datepicker";
|
|
15
|
+
import * as i6 from "@angular/material/form-field";
|
|
16
|
+
import * as i7 from "../utils/field-label.pipe";
|
|
17
|
+
import * as i8 from "../utils/first-error.pipe";
|
|
18
|
+
const _c0 = ["picker"];
|
|
19
|
+
const _c1 = ["input"];
|
|
20
|
+
function DatetimePickerComponent_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
i0.ɵɵelementStart(0, "span", 10);
|
|
22
|
+
i0.ɵɵtext(1);
|
|
23
|
+
i0.ɵɵpipe(2, "ccdFieldLabel");
|
|
24
|
+
i0.ɵɵelementEnd();
|
|
25
|
+
} if (rf & 2) {
|
|
26
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
27
|
+
i0.ɵɵadvance(1);
|
|
28
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, ctx_r0.caseField));
|
|
29
|
+
} }
|
|
30
|
+
function DatetimePickerComponent_span_4_Template(rf, ctx) { if (rf & 1) {
|
|
31
|
+
i0.ɵɵelementStart(0, "span", 11);
|
|
32
|
+
i0.ɵɵtext(1);
|
|
33
|
+
i0.ɵɵelementEnd();
|
|
34
|
+
} if (rf & 2) {
|
|
35
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
36
|
+
i0.ɵɵadvance(1);
|
|
37
|
+
i0.ɵɵtextInterpolate(ctx_r1.caseField.hint_text);
|
|
38
|
+
} }
|
|
39
|
+
function DatetimePickerComponent_span_5_Template(rf, ctx) { if (rf & 1) {
|
|
40
|
+
i0.ɵɵelementStart(0, "span", 12);
|
|
41
|
+
i0.ɵɵtext(1);
|
|
42
|
+
i0.ɵɵpipe(2, "ccdFirstError");
|
|
43
|
+
i0.ɵɵelementEnd();
|
|
44
|
+
} if (rf & 2) {
|
|
45
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
46
|
+
i0.ɵɵadvance(1);
|
|
47
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(2, 1, ctx_r2.dateControl.errors, ctx_r2.caseField.label));
|
|
48
|
+
} }
|
|
49
|
+
function DatetimePickerComponent_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
50
|
+
i0.ɵɵelementStart(0, "span", 12);
|
|
51
|
+
i0.ɵɵtext(1, "This date is older than the minimum date allowed");
|
|
52
|
+
i0.ɵɵelementEnd();
|
|
53
|
+
} }
|
|
54
|
+
function DatetimePickerComponent_span_7_Template(rf, ctx) { if (rf & 1) {
|
|
55
|
+
i0.ɵɵelementStart(0, "span", 12);
|
|
56
|
+
i0.ɵɵtext(1, "This date is later than the maximum date allowed");
|
|
57
|
+
i0.ɵɵelementEnd();
|
|
58
|
+
} }
|
|
59
|
+
const _c2 = function (a0) { return { "form-group-error": a0 }; };
|
|
60
|
+
export class DatetimePickerComponent extends AbstractFormFieldComponent {
|
|
61
|
+
constructor(formatTranslationService, ngxMatDateFormats) {
|
|
62
|
+
super();
|
|
63
|
+
this.formatTranslationService = formatTranslationService;
|
|
64
|
+
this.ngxMatDateFormats = ngxMatDateFormats;
|
|
65
|
+
this.showSpinners = true;
|
|
66
|
+
this.showSeconds = false;
|
|
67
|
+
this.touchUi = false;
|
|
68
|
+
this.enableMeridian = false;
|
|
69
|
+
this.stepHour = 1;
|
|
70
|
+
this.stepMinute = 1;
|
|
71
|
+
this.stepSecond = 1;
|
|
72
|
+
this.color = 'primary';
|
|
73
|
+
this.disableMinute = true;
|
|
74
|
+
this.hideTime = true;
|
|
75
|
+
this.hideMinutes = true;
|
|
76
|
+
this.startView = 'month';
|
|
77
|
+
this.yearSelection = false;
|
|
78
|
+
this.checkTime = true;
|
|
79
|
+
this.stringEdited = false;
|
|
80
|
+
this.minError = false;
|
|
81
|
+
this.maxError = false;
|
|
82
|
+
this.dateControl = new FormControl(new Date());
|
|
83
|
+
this.minimumDate = new Date('01/01/1800');
|
|
84
|
+
this.maximumDate = null;
|
|
85
|
+
this.momentFormat = 'YYYY-MM-DDTHH:mm:ss.SSS';
|
|
86
|
+
}
|
|
87
|
+
ngOnInit() {
|
|
88
|
+
this.dateTimeEntryFormat = this.formatTranslationService.showOnlyDates(this.caseField.dateTimeEntryFormat);
|
|
89
|
+
this.configureDatePicker(this.dateTimeEntryFormat);
|
|
90
|
+
// set date control based on mandatory field
|
|
91
|
+
this.dateControl = (this.caseField.isMandatory ?
|
|
92
|
+
this.registerControl(new FormControl(this.caseField.value || '', [Validators.required]))
|
|
93
|
+
: this.registerControl(new FormControl(this.caseField.value)));
|
|
94
|
+
// in resetting the format just after the page initialises, the input can be reformatted
|
|
95
|
+
// otherwise the last format given will be how the text shown will be displayed
|
|
96
|
+
setTimeout(() => {
|
|
97
|
+
this.setDateTimeFormat();
|
|
98
|
+
this.formatValueAndSetErrors();
|
|
99
|
+
}, 1000);
|
|
100
|
+
// when the status changes check that the maximum/minimum date has not been exceeded
|
|
101
|
+
this.dateControl.statusChanges.subscribe(() => {
|
|
102
|
+
this.minError = this.dateControl.hasError('matDatetimePickerMin');
|
|
103
|
+
this.maxError = this.dateControl.hasError('matDatetimePickerMax');
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
setDateTimeFormat() {
|
|
107
|
+
this.ngxMatDateFormats.parse.dateInput = this.dateTimeEntryFormat;
|
|
108
|
+
this.ngxMatDateFormats.display.dateInput = this.dateTimeEntryFormat;
|
|
109
|
+
}
|
|
110
|
+
/*
|
|
111
|
+
When the value changes, update the form control
|
|
112
|
+
*/
|
|
113
|
+
valueChanged() {
|
|
114
|
+
this.formatValueAndSetErrors();
|
|
115
|
+
}
|
|
116
|
+
focusIn() {
|
|
117
|
+
this.setDateTimeFormat();
|
|
118
|
+
}
|
|
119
|
+
focusOut() {
|
|
120
|
+
// focus out needed to obtain errors (relevant to formatting)
|
|
121
|
+
this.formatValueAndSetErrors();
|
|
122
|
+
}
|
|
123
|
+
toggleClick() {
|
|
124
|
+
this.setDateTimeFormat();
|
|
125
|
+
}
|
|
126
|
+
minDate(caseField) {
|
|
127
|
+
// set minimum date
|
|
128
|
+
if (caseField.field_type.min instanceof Date) {
|
|
129
|
+
this.minimumDate = caseField.field_type.min ? new Date(caseField.field_type.min) : this.minimumDate;
|
|
130
|
+
}
|
|
131
|
+
return this.minimumDate;
|
|
132
|
+
}
|
|
133
|
+
maxDate(caseField) {
|
|
134
|
+
// set maximum date
|
|
135
|
+
if (caseField.field_type.max instanceof Date) {
|
|
136
|
+
this.maximumDate = caseField.field_type.max ? new Date(caseField.field_type.max) : this.maximumDate;
|
|
137
|
+
}
|
|
138
|
+
return this.maximumDate;
|
|
139
|
+
}
|
|
140
|
+
configureDatePicker(dateTimePickerFormat) {
|
|
141
|
+
if (this.caseField.field_type.type === 'Date') {
|
|
142
|
+
this.hideTime = true;
|
|
143
|
+
this.checkTime = false;
|
|
144
|
+
this.dateTimeEntryFormat = this.formatTranslationService.removeTime(this.dateTimeEntryFormat);
|
|
145
|
+
this.momentFormat = 'YYYY-MM-DD';
|
|
146
|
+
}
|
|
147
|
+
if (this.checkTime) {
|
|
148
|
+
if (this.formatTranslationService.hasSeconds(dateTimePickerFormat)) {
|
|
149
|
+
this.showSeconds = true;
|
|
150
|
+
this.hideMinutes = false;
|
|
151
|
+
this.disableMinute = false;
|
|
152
|
+
this.hideTime = false;
|
|
153
|
+
if (!this.formatTranslationService.is24Hour(dateTimePickerFormat)) {
|
|
154
|
+
this.enableMeridian = true;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
if (this.formatTranslationService.hasHours(dateTimePickerFormat)) {
|
|
158
|
+
this.hideTime = false;
|
|
159
|
+
if (!this.formatTranslationService.is24Hour(dateTimePickerFormat)) {
|
|
160
|
+
this.enableMeridian = true;
|
|
161
|
+
}
|
|
162
|
+
return;
|
|
163
|
+
}
|
|
164
|
+
if (this.formatTranslationService.hasMinutes(dateTimePickerFormat)) {
|
|
165
|
+
this.hideMinutes = false;
|
|
166
|
+
this.disableMinute = false;
|
|
167
|
+
this.hideTime = false;
|
|
168
|
+
if (!this.formatTranslationService.is24Hour(dateTimePickerFormat)) {
|
|
169
|
+
this.enableMeridian = true;
|
|
170
|
+
}
|
|
171
|
+
return;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
if (this.formatTranslationService.hasDate(dateTimePickerFormat)) {
|
|
175
|
+
return;
|
|
176
|
+
}
|
|
177
|
+
if (this.formatTranslationService.hasNoDay(dateTimePickerFormat)) {
|
|
178
|
+
this.startView = 'multi-year';
|
|
179
|
+
}
|
|
180
|
+
if (this.formatTranslationService.hasNoDayAndMonth(dateTimePickerFormat)) {
|
|
181
|
+
this.startView = 'multi-year';
|
|
182
|
+
this.yearSelection = true;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
yearSelected(event) {
|
|
186
|
+
if (this.startView === 'multi-year' && this.yearSelection) {
|
|
187
|
+
this.dateControl.patchValue(event.toISOString());
|
|
188
|
+
this.datetimePicker.close();
|
|
189
|
+
this.valueChanged();
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
monthSelected(event) {
|
|
193
|
+
if (this.startView === 'multi-year') {
|
|
194
|
+
this.dateControl.patchValue(event.toISOString());
|
|
195
|
+
this.dateControl.patchValue(event.toISOString());
|
|
196
|
+
this.datetimePicker.close();
|
|
197
|
+
this.valueChanged();
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
formatValueAndSetErrors() {
|
|
201
|
+
if (this.inputElement.nativeElement.value) {
|
|
202
|
+
let formValue = this.inputElement.nativeElement.value;
|
|
203
|
+
formValue = moment(formValue, this.dateTimeEntryFormat).format(this.momentFormat);
|
|
204
|
+
if (formValue !== 'Invalid date') {
|
|
205
|
+
// if not invalid set the value as the formatted value
|
|
206
|
+
this.dateControl.setValue(formValue);
|
|
207
|
+
}
|
|
208
|
+
else {
|
|
209
|
+
// ensure that the datepicker picks up the invalid error
|
|
210
|
+
const keepErrorText = this.inputElement.nativeElement.value;
|
|
211
|
+
this.dateControl.setValue(keepErrorText);
|
|
212
|
+
this.inputElement.nativeElement.value = keepErrorText;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
else {
|
|
216
|
+
// ensure required errors are picked up if relevant
|
|
217
|
+
this.dateControl.setValue('');
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
DatetimePickerComponent.ɵfac = function DatetimePickerComponent_Factory(t) { return new (t || DatetimePickerComponent)(i0.ɵɵdirectiveInject(i1.FormatTranslatorService), i0.ɵɵdirectiveInject(NGX_MAT_DATE_FORMATS)); };
|
|
222
|
+
DatetimePickerComponent.ɵcmp = i0.ɵɵdefineComponent({ type: DatetimePickerComponent, selectors: [["ccd-datetime-picker"]], viewQuery: function DatetimePickerComponent_Query(rf, ctx) { if (rf & 1) {
|
|
223
|
+
i0.ɵɵviewQuery(_c0, 1);
|
|
224
|
+
i0.ɵɵviewQuery(_c1, 1);
|
|
225
|
+
} if (rf & 2) {
|
|
226
|
+
let _t;
|
|
227
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.datetimePicker = _t.first);
|
|
228
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.inputElement = _t.first);
|
|
229
|
+
} }, inputs: { dateControl: "dateControl" }, features: [i0.ɵɵProvidersFeature([
|
|
230
|
+
{ provide: NGX_MAT_DATE_FORMATS, useValue: CUSTOM_MOMENT_FORMATS },
|
|
231
|
+
{ provide: NgxMatDateAdapter, useClass: NgxMatMomentAdapter },
|
|
232
|
+
{ provide: NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS, useValue: { useUtc: true } }
|
|
233
|
+
]), i0.ɵɵInheritDefinitionFeature], decls: 14, vars: 26, consts: [[1, "govuk-form-group", "bottom-30", 3, "id", "ngClass"], ["class", "form-label", 4, "ngIf"], ["class", "form-hint", 4, "ngIf"], ["class", "error-message", 4, "ngIf"], [1, "datepicker-container"], ["ng-model-options", "{timezone:'utc'}", 1, "govuk-input", 3, "min", "max", "formControl", "ngxMatDatetimePicker", "focusin", "focusout", "dateChange"], ["input", ""], ["matSuffix", "", "id", "pickerOpener", 3, "for"], [3, "color", "touchUi", "hideTime", "startView", "stepHour", "stepSecond", "stepMinute", "showSeconds", "showSpinners", "disableMinute", "enableMeridian", "yearSelected", "monthSelected", "opened"], ["picker", ""], [1, "form-label"], [1, "form-hint"], [1, "error-message"]], template: function DatetimePickerComponent_Template(rf, ctx) { if (rf & 1) {
|
|
234
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
235
|
+
i0.ɵɵelementStart(1, "fieldset");
|
|
236
|
+
i0.ɵɵelementStart(2, "legend");
|
|
237
|
+
i0.ɵɵtemplate(3, DatetimePickerComponent_span_3_Template, 3, 3, "span", 1);
|
|
238
|
+
i0.ɵɵtemplate(4, DatetimePickerComponent_span_4_Template, 2, 1, "span", 2);
|
|
239
|
+
i0.ɵɵtemplate(5, DatetimePickerComponent_span_5_Template, 3, 4, "span", 3);
|
|
240
|
+
i0.ɵɵtemplate(6, DatetimePickerComponent_span_6_Template, 2, 0, "span", 3);
|
|
241
|
+
i0.ɵɵtemplate(7, DatetimePickerComponent_span_7_Template, 2, 0, "span", 3);
|
|
242
|
+
i0.ɵɵelementEnd();
|
|
243
|
+
i0.ɵɵelementStart(8, "div", 4);
|
|
244
|
+
i0.ɵɵelementStart(9, "input", 5, 6);
|
|
245
|
+
i0.ɵɵlistener("focusin", function DatetimePickerComponent_Template_input_focusin_9_listener() { return ctx.focusIn(); })("focusout", function DatetimePickerComponent_Template_input_focusout_9_listener() { return ctx.focusOut(); })("dateChange", function DatetimePickerComponent_Template_input_dateChange_9_listener() { return ctx.valueChanged(); });
|
|
246
|
+
i0.ɵɵelementEnd();
|
|
247
|
+
i0.ɵɵelement(11, "mat-datepicker-toggle", 7);
|
|
248
|
+
i0.ɵɵelementStart(12, "ngx-mat-datetime-picker", 8, 9);
|
|
249
|
+
i0.ɵɵlistener("yearSelected", function DatetimePickerComponent_Template_ngx_mat_datetime_picker_yearSelected_12_listener($event) { return ctx.yearSelected($event); })("monthSelected", function DatetimePickerComponent_Template_ngx_mat_datetime_picker_monthSelected_12_listener($event) { return ctx.monthSelected($event); })("opened", function DatetimePickerComponent_Template_ngx_mat_datetime_picker_opened_12_listener() { return ctx.toggleClick(); });
|
|
250
|
+
i0.ɵɵelementEnd();
|
|
251
|
+
i0.ɵɵelementEnd();
|
|
252
|
+
i0.ɵɵelementEnd();
|
|
253
|
+
i0.ɵɵelementEnd();
|
|
254
|
+
} if (rf & 2) {
|
|
255
|
+
const _r6 = i0.ɵɵreference(13);
|
|
256
|
+
i0.ɵɵproperty("id", ctx.caseField.id)("ngClass", i0.ɵɵpureFunction1(24, _c2, ctx.dateControl && !ctx.dateControl.valid && ctx.dateControl.dirty));
|
|
257
|
+
i0.ɵɵadvance(3);
|
|
258
|
+
i0.ɵɵproperty("ngIf", ctx.caseField.label);
|
|
259
|
+
i0.ɵɵadvance(1);
|
|
260
|
+
i0.ɵɵproperty("ngIf", ctx.caseField.hint_text);
|
|
261
|
+
i0.ɵɵadvance(1);
|
|
262
|
+
i0.ɵɵproperty("ngIf", ctx.dateControl && ctx.dateControl.errors && ctx.dateControl.dirty && !(ctx.minError || ctx.maxError));
|
|
263
|
+
i0.ɵɵadvance(1);
|
|
264
|
+
i0.ɵɵproperty("ngIf", ctx.dateControl && ctx.dateControl.dirty && ctx.minError);
|
|
265
|
+
i0.ɵɵadvance(1);
|
|
266
|
+
i0.ɵɵproperty("ngIf", ctx.dateControl && ctx.dateControl.dirty && ctx.maxError);
|
|
267
|
+
i0.ɵɵadvance(2);
|
|
268
|
+
i0.ɵɵattributeInterpolate1("aria-label", "Please enter a date and time in the format ", ctx.dateTimeEntryFormat, "");
|
|
269
|
+
i0.ɵɵproperty("min", ctx.minDate(ctx.caseField))("max", ctx.maxDate(ctx.caseField))("formControl", ctx.dateControl)("ngxMatDatetimePicker", _r6);
|
|
270
|
+
i0.ɵɵadvance(2);
|
|
271
|
+
i0.ɵɵproperty("for", _r6);
|
|
272
|
+
i0.ɵɵadvance(1);
|
|
273
|
+
i0.ɵɵproperty("color", ctx.color)("touchUi", ctx.touchUi)("hideTime", ctx.hideTime)("startView", ctx.startView)("stepHour", ctx.stepHour)("stepSecond", ctx.stepSecond)("stepMinute", ctx.stepMinute)("showSeconds", ctx.showSeconds)("showSpinners", ctx.showSpinners)("disableMinute", ctx.disableMinute)("enableMeridian", ctx.enableMeridian);
|
|
274
|
+
} }, directives: [i2.NgClass, i2.NgIf, i3.DefaultValueAccessor, i4.NgxMatDatetimeInput, i3.NgControlStatus, i3.FormControlDirective, i5.MatDatepickerToggle, i6.MatSuffix, i4.NgxMatDatetimePicker], pipes: [i7.FieldLabelPipe, i8.FirstErrorPipe], styles: ["@charset \"UTF-8\";.datepicker-container{display:inline-block;position:relative;min-width:298px}.datepicker-container .govuk-input{height:35px;min-width:298px;width:auto;padding-right:40px;border:1px solid #000}.datepicker-container .govuk-input:focus{outline:1px solid #fd0;border:1px solid #000}.datepicker-container .govuk-input::-ms-clear{display:none}.datepicker-container .datepicker-wrapper-input{position:relative;display:inline-block;top:-20%;border:0}.datepicker-container .datepicker-wrapper-input:focus{border:0;outline:none}.datepicker-container .mat-icon-button{height:32px;width:32px}.datepicker-container .mat-icon-button:focus{outline:1px solid #fd0}.datepicker-container .mat-icon-button .mat-datepicker-toggle-default-icon{position:relative;top:-5px}.datepicker-container .mat-datepicker-toggle{position:absolute;right:0}.cdk-overlay-container .mat-datepicker-content{border:1px solid #000;border-radius:0;max-width:295px}.cdk-overlay-container .mat-datepicker-content .mat-calendar-table{width:calc(100% - 1px);table-layout:fixed}.cdk-overlay-container .mat-datepicker-content .mat-calendar-header{height:34px;border-bottom:1px ridge #bfc1c3}.cdk-overlay-container .mat-datepicker-content .mat-calendar-period-button{left:14%;min-width:125px;border-right:1px ridge #bfc1c3;border-left:1px ridge #bfc1c3;border-radius:0;top:-20px;width:200%}.cdk-overlay-container .mat-datepicker-content .mat-calendar-period-button .mat-button-wrapper{text-align:center;font-weight:700}.cdk-overlay-container .mat-datepicker-content .mat-calendar-period-button:focus{border:2px solid #000}.cdk-overlay-container .mat-datepicker-content .mat-calendar-previous-button{left:-73%;top:-20px;border:2px solid transparent;border-radius:0}.cdk-overlay-container .mat-datepicker-content .mat-calendar-previous-button:focus{border-color:#000}.cdk-overlay-container .mat-datepicker-content .mat-calendar-previous-button:after{border-left-width:5px;border-top-width:5px;color:#000;padding:4px;top:-2px;left:-2px}.cdk-overlay-container .mat-datepicker-content .mat-calendar-next-button{top:-20px;left:1%;border:2px solid transparent;border-radius:0}.cdk-overlay-container .mat-datepicker-content .mat-calendar-next-button:focus{border-color:#000}.cdk-overlay-container .mat-datepicker-content .mat-calendar-next-button:after{border-right-width:5px;border-top-width:5px;color:#000;padding:4px;top:-2px;left:-2px}.cdk-overlay-container .mat-datepicker-content .mat-button-wrapper{text-transform:capitalize!important}.cdk-overlay-container .mat-datepicker-content .mat-calendar{border-bottom:1px solid #000}.cdk-overlay-container .mat-datepicker-content .mat-calendar-table-header-divider{padding:0;border-bottom:none}.cdk-overlay-container .mat-datepicker-content .mat-calendar-table-header-divider:after{height:0}.cdk-overlay-container .mat-datepicker-content .mat-calendar-content{padding:0}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header{color:#000}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header th.ng-star-inserted{font-weight:700;font-size:15px;padding-top:2%;padding-bottom:2%;-moz-column-width:20px;column-width:20px}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header tr:first-of-type th{visibility:hidden}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header tr:first-of-type th:after{visibility:visible;color:#000;position:relative;left:-15px}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header tr:first-of-type th:first-of-type:after{content:\"MON\"}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header tr:first-of-type th:nth-of-type(2):after{left:-12px;content:\"TUE\"}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header tr:first-of-type th:nth-of-type(3):after{left:-18px;content:\"WED\"}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header tr:first-of-type th:nth-of-type(4):after{left:-14px;content:\"THU\"}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header tr:first-of-type th:nth-of-type(5):after{left:-10px;content:\"FRI\"}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header tr:first-of-type th:nth-of-type(6):after{content:\"SAT\"}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-table-header tr:first-of-type th:nth-of-type(7):after{content:\"SUN\"}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-body-label{font-weight:700;font-size:large;color:#000}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-body-selected{border:none;background-color:transparent;color:#fff}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-body-active{background-color:#5694ca}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-body-today{border:none;box-shadow:none}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-body-cell{border:1px ridge #bfc1c3}.cdk-overlay-container .mat-datepicker-content ngx-mat-month-view .mat-calendar-body-cell[aria-selected=true]{background-color:#1d70b8;outline:3px solid #fd0;border:2px solid #000;outline-offset:1px;z-index:1}.cdk-overlay-container .mat-datepicker-content ngx-mat-multi-year-view .mat-calendar-table{border-collapse:separate;border-spacing:10px}.cdk-overlay-container .mat-datepicker-content ngx-mat-multi-year-view .mat-calendar-table .mat-calendar-body-active{background-color:#5694ca}.cdk-overlay-container .mat-datepicker-content ngx-mat-multi-year-view .mat-calendar-table .mat-calendar-body-cell{border:1px solid #bfc1c3}.cdk-overlay-container .mat-datepicker-content ngx-mat-multi-year-view .mat-calendar-table .mat-calendar-body-cell .mat-calendar-body-cell-content{border:none}.cdk-overlay-container .mat-datepicker-content ngx-mat-multi-year-view .mat-calendar-table .mat-calendar-body-cell .mat-calendar-body-selected{border:none;box-shadow:none;background-color:transparent}.cdk-overlay-container .mat-datepicker-content ngx-mat-multi-year-view .mat-calendar-table .mat-calendar-body-cell[aria-selected=true]{background-color:#1d70b8;outline:2px solid #fd0}.cdk-overlay-container .mat-datepicker-content ngx-mat-year-view .mat-calendar-table{border-collapse:separate;border-spacing:20px}.cdk-overlay-container .mat-datepicker-content ngx-mat-year-view .mat-calendar-table tr:first-of-type{visibility:collapse}.cdk-overlay-container .mat-datepicker-content ngx-mat-year-view .mat-calendar-table .mat-calendar-body-active{background-color:#5694ca}.cdk-overlay-container .mat-datepicker-content ngx-mat-year-view .mat-calendar-table .mat-calendar-body-cell{border:1px solid #bfc1c3}.cdk-overlay-container .mat-datepicker-content ngx-mat-year-view .mat-calendar-table .mat-calendar-body-cell .mat-calendar-body-cell-content{border:none}.cdk-overlay-container .mat-datepicker-content ngx-mat-year-view .mat-calendar-table .mat-calendar-body-cell .mat-calendar-body-selected{border:none;box-shadow:none;background-color:transparent}.cdk-overlay-container .mat-datepicker-content ngx-mat-year-view .mat-calendar-table .mat-calendar-body-cell[aria-selected=true]{background-color:#1d70b8;outline:3px solid #fd0;border:2px solid #000;outline-offset:1px}.cdk-overlay-container .mat-datepicker-content .time-container{height:80px;padding-top:0}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker{width:100%}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table{margin-left:0!important}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tbody{position:relative}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr .mat-icon-button .mat-button-wrapper{width:auto;height:auto}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr .mat-icon-button:focus{outline:none}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:first-child{position:absolute;left:49px;top:15px;z-index:2}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:first-child button:disabled{display:none}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:first-child td:first-child [aria-label=\"expand_less icon\"]{position:absolute;left:-2px;top:25px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:first-child td:nth-child(3) [aria-label=\"expand_less icon\"].mat-icon-button{position:absolute;left:82px!important;top:25px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:first-child td:nth-child(5) [aria-label=\"expand_less icon\"].mat-icon-button{position:absolute;left:169px!important;top:25px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:first-child td:last-child [aria-label=\"expand_less icon\"].mat-icon-button{left:153px!important}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:first-child td:nth-last-child(2) [aria-label=\"expand_less icon\"].mat-icon-button{left:65px!important}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2){display:flex;padding:20px 0 20px 15px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2) td{margin-right:30px;text-align:right}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2) td:first-child .mat-form-field{width:50px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2) td:first-child .mat-form-field:before{color:#000;content:\"Hours\";position:relative;top:-5px;left:-5px;font-size:15px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2) td:nth-child(3) .mat-form-field:before{color:#000;content:\"Minutes\";position:relative;top:-5px;font-size:15px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2) td:last-child{text-align:left;left:-15px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2) .mat-form-field-disabled{display:none}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2) td:nth-of-type(5) .mat-form-field:before{color:#000;content:\"Seconds\";position:relative;top:-5px;font-size:15px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2) .meridian{border-bottom:none}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2) .meridian .mat-button{height:30px;top:21px;border-radius:0;color:#000;border-color:#000;background-color:#dee0e2;display:flex;justify-content:center}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(2) .meridian .mat-button .mat-button-wrapper{position:relative;top:-2px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(4){display:flex;padding:2rem 0 2rem 15px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(4) td{margin-right:30px;text-align:right}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:nth-child(4) td:last-child{text-align:left}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:last-child{position:absolute;left:49px;top:40px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:last-child button:disabled{display:none}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:last-child td:first-child [aria-label=\"expand_more icon\"]{position:absolute;top:15px;left:-2px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:last-child td:nth-child(3) [aria-label=\"expand_more icon\"].mat-icon-button{position:absolute;left:82px!important;top:15px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:last-child td:nth-child(5) [aria-label=\"expand_more icon\"].mat-icon-button{position:absolute;top:15px;left:169px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:last-child td:last-child [aria-label=\"expand_more icon\"].mat-icon-button{left:65px!important}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr:last-child td:last-child.ng-star-inserted [aria-label=\"expand_more icon\"].mat-icon-button{left:153px!important}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr td{padding:0;border-bottom:0;position:relative}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr .spacer{display:none}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr .mat-icon{visibility:hidden;display:none}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr .mat-button-wrapper{display:block;width:15px;height:8px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr .mat-form-field-wrapper{padding-bottom:0}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr .mat-form-field{width:auto;max-width:none}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr [aria-label=\"expand_less icon\"].mat-icon-button .mat-button-wrapper:after{content:\" \u25B2\"}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr [aria-label=\"expand_more icon\"].mat-icon-button .mat-button-wrapper:after{content:\"\u25BC\"}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr .mat-form-field-flex{width:100%}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr .mat-form-field-flex .mat-form-field-infix{border:1px solid #000;height:20px;width:37px;display:flex;justify-content:center;align-items:center}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr .mat-form-field-underline{visibility:hidden}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr input{height:33px;width:37px}.cdk-overlay-container .mat-datepicker-content .time-container .ngx-mat-timepicker .table tr input:focus{border-color:#000}.cdk-overlay-container .mat-datepicker-content .actions{padding-bottom:20px;margin-top:20px;justify-content:flex-start}.cdk-overlay-container .mat-datepicker-content .actions .mat-button{background-color:#00823b;position:relative;display:-moz-inline-stack;display:inline-block;padding:.526315em .789473em .263157em;border:none;border-radius:0;outline:1px solid transparent;outline-offset:-1px;-webkit-appearance:none;box-shadow:0 2px 0 #003618;font-size:1em;line-height:1.25;text-decoration:none;-webkit-font-smoothing:antialiased;color:#fff;box-sizing:border-box;vertical-align:top;width:80px;cursor:pointer}.cdk-overlay-container .mat-datepicker-content .actions .mat-button:focus{outline:2px solid #fd0}.cdk-overlay-container .mat-datepicker-content .actions .mat-button:hover{background-color:#006400}.cdk-overlay-container .mat-datepicker-content .actions .mat-button .mat-icon{visibility:hidden}.cdk-overlay-container .mat-datepicker-content .actions .mat-button .mat-button-wrapper:before{color:#fff;content:\"Confirm\";position:relative;font-size:15px;left:-3px}"], encapsulation: 2 });
|
|
275
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DatetimePickerComponent, [{
|
|
276
|
+
type: Component,
|
|
277
|
+
args: [{
|
|
278
|
+
selector: 'ccd-datetime-picker',
|
|
279
|
+
templateUrl: './datetime-picker.component.html',
|
|
280
|
+
styleUrls: ['./datetime-picker.component.scss'],
|
|
281
|
+
encapsulation: ViewEncapsulation.None,
|
|
282
|
+
providers: [
|
|
283
|
+
{ provide: NGX_MAT_DATE_FORMATS, useValue: CUSTOM_MOMENT_FORMATS },
|
|
284
|
+
{ provide: NgxMatDateAdapter, useClass: NgxMatMomentAdapter },
|
|
285
|
+
{ provide: NGX_MAT_MOMENT_DATE_ADAPTER_OPTIONS, useValue: { useUtc: true } }
|
|
286
|
+
]
|
|
287
|
+
}]
|
|
288
|
+
}], function () { return [{ type: i1.FormatTranslatorService }, { type: undefined, decorators: [{
|
|
289
|
+
type: Inject,
|
|
290
|
+
args: [NGX_MAT_DATE_FORMATS]
|
|
291
|
+
}] }]; }, { datetimePicker: [{
|
|
292
|
+
type: ViewChild,
|
|
293
|
+
args: ['picker', { static: false }]
|
|
294
|
+
}], inputElement: [{
|
|
295
|
+
type: ViewChild,
|
|
296
|
+
args: ['input', { static: false }]
|
|
297
|
+
}], dateControl: [{
|
|
298
|
+
type: Input
|
|
299
|
+
}] }); })();
|
|
300
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXRpbWUtcGlja2VyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NjZC1jYXNlLXVpLXRvb2xraXQvc3JjL2xpYi9zaGFyZWQvY29tcG9uZW50cy9wYWxldHRlL2RhdGV0aW1lLXBpY2tlci9kYXRldGltZS1waWNrZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvZGF0ZXRpbWUtcGlja2VyL2RhdGV0aW1lLXBpY2tlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsaUJBQWlCLEVBRWpCLG9CQUFvQixFQUFFLG9CQUFvQixFQUMzQyxNQUFNLDhDQUE4QyxDQUFDO0FBQ3RELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxtQ0FBbUMsRUFBRSxNQUFNLDZDQUE2QyxDQUFDO0FBQ3ZILE9BQU8sRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQVUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNHLE9BQU8sRUFBRSxXQUFXLEVBQUUsVUFBVSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFJekQsT0FBTyxLQUFLLE1BQU0sTUFBTSxRQUFRLENBQUM7QUFDakMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0seURBQXlELENBQUM7QUFDbEcsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFDekYsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0seUJBQXlCLENBQUM7Ozs7Ozs7Ozs7Ozs7SUNWMUQsZ0NBQWlEO0lBQUEsWUFBOEI7O0lBQUEsaUJBQU87OztJQUFyQyxlQUE4QjtJQUE5Qiw0REFBOEI7OztJQUMvRSxnQ0FBb0Q7SUFBQSxZQUF1QjtJQUFBLGlCQUFPOzs7SUFBOUIsZUFBdUI7SUFBdkIsZ0RBQXVCOzs7SUFDM0UsZ0NBQ2dHO0lBQUEsWUFBc0Q7O0lBQUEsaUJBQU87OztJQUE3RCxlQUFzRDtJQUF0RCw2RkFBc0Q7OztJQUNoSixnQ0FDcUQ7SUFBQSxnRUFBZ0Q7SUFBQSxpQkFBTzs7O0lBQzVHLGdDQUNxRDtJQUFBLGdFQUFnRDtJQUFBLGlCQUFPOzs7QURrQnhILE1BQU0sT0FBTyx1QkFBd0IsU0FBUSwwQkFBMEI7SUE4QnJFLFlBQTZCLHdCQUFpRCxFQUM3QixpQkFBb0M7UUFDbkYsS0FBSyxFQUFFLENBQUM7UUFGbUIsNkJBQXdCLEdBQXhCLHdCQUF3QixDQUF5QjtRQUM3QixzQkFBaUIsR0FBakIsaUJBQWlCLENBQW1CO1FBN0I5RSxpQkFBWSxHQUFHLElBQUksQ0FBQztRQUNwQixnQkFBVyxHQUFHLEtBQUssQ0FBQztRQUNwQixZQUFPLEdBQUcsS0FBSyxDQUFDO1FBQ2hCLG1CQUFjLEdBQUcsS0FBSyxDQUFDO1FBQ3ZCLGFBQVEsR0FBRyxDQUFDLENBQUM7UUFDYixlQUFVLEdBQUcsQ0FBQyxDQUFDO1FBQ2YsZUFBVSxHQUFHLENBQUMsQ0FBQztRQUNmLFVBQUssR0FBaUIsU0FBUyxDQUFDO1FBQ2hDLGtCQUFhLEdBQUcsSUFBSSxDQUFDO1FBQ3JCLGFBQVEsR0FBRyxJQUFJLENBQUM7UUFDaEIsZ0JBQVcsR0FBRyxJQUFJLENBQUM7UUFDbkIsY0FBUyxHQUFHLE9BQU8sQ0FBQztRQUNwQixrQkFBYSxHQUFHLEtBQUssQ0FBQztRQUN0QixjQUFTLEdBQUcsSUFBSSxDQUFDO1FBQ2pCLGlCQUFZLEdBQUcsS0FBSyxDQUFDO1FBQ3JCLGFBQVEsR0FBRyxLQUFLLENBQUM7UUFDakIsYUFBUSxHQUFHLEtBQUssQ0FBQztRQU1SLGdCQUFXLEdBQWdCLElBQUksV0FBVyxDQUFDLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztRQUUvRCxnQkFBVyxHQUFHLElBQUksSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDO1FBQ3JDLGdCQUFXLEdBQUcsSUFBSSxDQUFDO1FBQ25CLGlCQUFZLEdBQUcseUJBQXlCLENBQUM7SUFLakQsQ0FBQztJQUVNLFFBQVE7UUFDYixJQUFJLENBQUMsbUJBQW1CLEdBQUcsSUFBSSxDQUFDLHdCQUF3QixDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLG1CQUFtQixDQUFDLENBQUM7UUFDM0csSUFBSSxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDO1FBQ25ELDRDQUE0QztRQUM1QyxJQUFJLENBQUMsV0FBVyxHQUFHLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxXQUFXLENBQUMsQ0FBQztZQUM5QyxJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksV0FBVyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxJQUFJLEVBQUUsRUFBRSxDQUFDLFVBQVUsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDO1lBQ3ZGLENBQUMsQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksV0FBVyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBZ0IsQ0FBQztRQUNqRix3RkFBd0Y7UUFDeEYsK0VBQStFO1FBQy9FLFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFDZCxJQUFJLENBQUMsaUJBQWlCLEVBQUUsQ0FBQztZQUN6QixJQUFJLENBQUMsdUJBQXVCLEVBQUUsQ0FBQztRQUNqQyxDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUM7UUFDVCxvRkFBb0Y7UUFDcEYsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLEdBQUcsRUFBRTtZQUM1QyxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLHNCQUFzQixDQUFDLENBQUM7WUFDbEUsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLFFBQVEsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO1FBQ3BFLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVNLGlCQUFpQjtRQUN0QixJQUFJLENBQUMsaUJBQWlCLENBQUMsS0FBSyxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsbUJBQW1CLENBQUM7UUFDbEUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE9BQU8sQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLG1CQUFtQixDQUFDO0lBQ3RFLENBQUM7SUFFRDs7TUFFRTtJQUNLLFlBQVk7UUFDakIsSUFBSSxDQUFDLHVCQUF1QixFQUFFLENBQUM7SUFDakMsQ0FBQztJQUVNLE9BQU87UUFDWixJQUFJLENBQUMsaUJBQWlCLEVBQUUsQ0FBQztJQUMzQixDQUFDO0lBRU0sUUFBUTtRQUNiLDZEQUE2RDtRQUM3RCxJQUFJLENBQUMsdUJBQXVCLEVBQUUsQ0FBQztJQUNqQyxDQUFDO0lBRU0sV0FBVztRQUNoQixJQUFJLENBQUMsaUJBQWlCLEVBQUUsQ0FBQztJQUMzQixDQUFDO0lBRU0sT0FBTyxDQUFDLFNBQW9CO1FBQ2pDLG1CQUFtQjtRQUNuQixJQUFJLFNBQVMsQ0FBQyxVQUFVLENBQUMsR0FBRyxZQUFZLElBQUksRUFBRTtZQUM1QyxJQUFJLENBQUMsV0FBVyxHQUFHLFNBQVMsQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDO1NBQ3JHO1FBQ0QsT0FBTyxJQUFJLENBQUMsV0FBVyxDQUFDO0lBQzFCLENBQUM7SUFFTSxPQUFPLENBQUMsU0FBb0I7UUFDakMsbUJBQW1CO1FBQ25CLElBQUksU0FBUyxDQUFDLFVBQVUsQ0FBQyxHQUFHLFlBQVksSUFBSSxFQUFFO1lBQzVDLElBQUksQ0FBQyxXQUFXLEdBQUcsU0FBUyxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUM7U0FDckc7UUFDRCxPQUFPLElBQUksQ0FBQyxXQUFXLENBQUM7SUFDMUIsQ0FBQztJQUVNLG1CQUFtQixDQUFDLG9CQUE0QjtRQUNyRCxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsVUFBVSxDQUFDLElBQUksS0FBSyxNQUFNLEVBQUU7WUFDN0MsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUM7WUFDckIsSUFBSSxDQUFDLFNBQVMsR0FBRyxLQUFLLENBQUM7WUFDdkIsSUFBSSxDQUFDLG1CQUFtQixHQUFHLElBQUksQ0FBQyx3QkFBd0IsQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLG1CQUFtQixDQUFDLENBQUM7WUFDOUYsSUFBSSxDQUFDLFlBQVksR0FBRyxZQUFZLENBQUM7U0FDbEM7UUFFRCxJQUFJLElBQUksQ0FBQyxTQUFTLEVBQUU7WUFFbEIsSUFBSSxJQUFJLENBQUMsd0JBQXdCLENBQUMsVUFBVSxDQUFDLG9CQUFvQixDQUFDLEVBQUU7Z0JBQ2xFLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDO2dCQUN4QixJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQztnQkFDekIsSUFBSSxDQUFDLGFBQWEsR0FBRyxLQUFLLENBQUM7Z0JBQzNCLElBQUksQ0FBQyxRQUFRLEdBQUcsS0FBSyxDQUFDO2dCQUN0QixJQUFJLENBQUMsSUFBSSxDQUFDLHdCQUF3QixDQUFDLFFBQVEsQ0FBQyxvQkFBb0IsQ0FBQyxFQUFFO29CQUNqRSxJQUFJLENBQUMsY0FBYyxHQUFHLElBQUksQ0FBQztpQkFDNUI7YUFDRjtZQUNELElBQUksSUFBSSxDQUFDLHdCQUF3QixDQUFDLFFBQVEsQ0FBQyxvQkFBb0IsQ0FBQyxFQUFFO2dCQUNoRSxJQUFJLENBQUMsUUFBUSxHQUFHLEtBQUssQ0FBQztnQkFDdEIsSUFBSSxDQUFDLElBQUksQ0FBQyx3QkFBd0IsQ0FBQyxRQUFRLENBQUMsb0JBQW9CLENBQUMsRUFBRTtvQkFDakUsSUFBSSxDQUFDLGNBQWMsR0FBRyxJQUFJLENBQUM7aUJBQzVCO2dCQUNELE9BQU87YUFDUjtZQUVELElBQUksSUFBSSxDQUFDLHdCQUF3QixDQUFDLFVBQVUsQ0FBQyxvQkFBb0IsQ0FBQyxFQUFFO2dCQUNsRSxJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQztnQkFDekIsSUFBSSxDQUFDLGFBQWEsR0FBRyxLQUFLLENBQUM7Z0JBQzNCLElBQUksQ0FBQyxRQUFRLEdBQUcsS0FBSyxDQUFDO2dCQUN0QixJQUFJLENBQUMsSUFBSSxDQUFDLHdCQUF3QixDQUFDLFFBQVEsQ0FBQyxvQkFBb0IsQ0FBQyxFQUFFO29CQUNqRSxJQUFJLENBQUMsY0FBYyxHQUFHLElBQUksQ0FBQztpQkFDNUI7Z0JBQ0QsT0FBTzthQUNSO1NBQ0Y7UUFFRCxJQUFJLElBQUksQ0FBQyx3QkFBd0IsQ0FBQyxPQUFPLENBQUMsb0JBQW9CLENBQUMsRUFBRTtZQUMvRCxPQUFPO1NBQ1I7UUFFRCxJQUFJLElBQUksQ0FBQyx3QkFBd0IsQ0FBQyxRQUFRLENBQUMsb0JBQW9CLENBQUMsRUFBRTtZQUNoRSxJQUFJLENBQUMsU0FBUyxHQUFHLFlBQVksQ0FBQztTQUMvQjtRQUVELElBQUksSUFBSSxDQUFDLHdCQUF3QixDQUFDLGdCQUFnQixDQUFDLG9CQUFvQixDQUFDLEVBQUU7WUFDeEUsSUFBSSxDQUFDLFNBQVMsR0FBRyxZQUFZLENBQUM7WUFDOUIsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUM7U0FDM0I7SUFDSCxDQUFDO0lBRU0sWUFBWSxDQUFDLEtBQWE7UUFDL0IsSUFBSSxJQUFJLENBQUMsU0FBUyxLQUFLLFlBQVksSUFBSSxJQUFJLENBQUMsYUFBYSxFQUFFO1lBQ3pELElBQUksQ0FBQyxXQUFXLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFDO1lBQ2pELElBQUksQ0FBQyxjQUFjLENBQUMsS0FBSyxFQUFFLENBQUM7WUFDNUIsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDO1NBQ3JCO0lBQ0gsQ0FBQztJQUVNLGFBQWEsQ0FBQyxLQUFhO1FBQ2hDLElBQUksSUFBSSxDQUFDLFNBQVMsS0FBSyxZQUFZLEVBQUU7WUFDbkMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLFdBQVcsRUFBRSxDQUFDLENBQUM7WUFDakQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLFdBQVcsRUFBRSxDQUFDLENBQUM7WUFDakQsSUFBSSxDQUFDLGNBQWMsQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUM1QixJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7U0FDckI7SUFDSCxDQUFDO0lBRU8sdUJBQXVCO1FBQzdCLElBQUksSUFBSSxDQUFDLFlBQVksQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFO1lBQ3pDLElBQUksU0FBUyxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQztZQUN0RCxTQUFTLEdBQUcsTUFBTSxDQUFDLFNBQVMsRUFBRSxJQUFJLENBQUMsbUJBQW1CLENBQUMsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDO1lBQ2xGLElBQUksU0FBUyxLQUFLLGNBQWMsRUFBRTtnQkFDaEMsc0RBQXNEO2dCQUN0RCxJQUFJLENBQUMsV0FBVyxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsQ0FBQzthQUN0QztpQkFBTTtnQkFDTCx3REFBd0Q7Z0JBQ3hELE1BQU0sYUFBYSxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQztnQkFDNUQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsYUFBYSxDQUFDLENBQUM7Z0JBQ3pDLElBQUksQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLEtBQUssR0FBRyxhQUFhLENBQUM7YUFDdkQ7U0FDRjthQUFNO1lBQ0wsbURBQW1EO1lBQ25ELElBQUksQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLEVBQUUsQ0FBQyxDQUFDO1NBQy9CO0lBQ0gsQ0FBQzs7OEZBdExVLHVCQUF1Qix5RUErQnhCLG9CQUFvQjs0REEvQm5CLHVCQUF1Qjs7Ozs7OztrRkFQdkI7WUFDVCxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxRQUFRLEVBQUUscUJBQXFCLEVBQUU7WUFDbEUsRUFBRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsUUFBUSxFQUFFLG1CQUFtQixFQUFFO1lBQzdELEVBQUUsT0FBTyxFQUFFLG1DQUFtQyxFQUFFLFFBQVEsRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUsRUFBRTtTQUM3RTtRQzFCSCw4QkFDOEY7UUFDNUYsZ0NBQVU7UUFDUiw4QkFBUTtRQUNOLDBFQUFzRjtRQUN0RiwwRUFBa0Y7UUFDbEYsMEVBQzZKO1FBQ3ZKLDBFQUM0RztRQUM1RywwRUFDNEc7UUFDcEgsaUJBQVM7UUFDVCw4QkFBa0M7UUFDaEMsbUNBV0M7UUFKTSx1R0FBVyxhQUFTLElBQUMsNEZBQ1QsY0FBVSxJQURELGdHQUVQLGtCQUFjLElBRlA7UUFQNUIsaUJBV0M7UUFDRCw0Q0FBMEY7UUFDMUYsc0RBZUM7UUFId0IsMElBQWdCLHdCQUFvQixJQUFDLCtIQUNwQix5QkFBcUIsSUFERCwyR0FFM0IsaUJBQWEsSUFGYztRQUk5RCxpQkFBMEI7UUFDNUIsaUJBQU07UUFDUixpQkFBVztRQUNiLGlCQUFNOzs7UUE5Q21DLHFDQUFtQiw0R0FBQTtRQUk1QixlQUFxQjtRQUFyQiwwQ0FBcUI7UUFDdEIsZUFBeUI7UUFBekIsOENBQXlCO1FBRTNDLGVBQXVGO1FBQXZGLDRIQUF1RjtRQUV2RixlQUFrRDtRQUFsRCwrRUFBa0Q7UUFFbEQsZUFBa0Q7UUFBbEQsK0VBQWtEO1FBS2xELGVBQW9GO1FBQXBGLG9IQUFvRjtRQUNwRixnREFBMEIsbUNBQUEsZ0NBQUEsNkJBQUE7UUFTQSxlQUFjO1FBQWQseUJBQWM7UUFFdEIsZUFBZTtRQUFmLGlDQUFlLHdCQUFBLDBCQUFBLDRCQUFBLDBCQUFBLDhCQUFBLDhCQUFBLGdDQUFBLGtDQUFBLG9DQUFBLHNDQUFBOzt1RkRDakMsdUJBQXVCO2NBWm5DLFNBQVM7ZUFBQztnQkFDVCxRQUFRLEVBQUUscUJBQXFCO2dCQUMvQixXQUFXLEVBQUUsa0NBQWtDO2dCQUMvQyxTQUFTLEVBQUUsQ0FBQyxrQ0FBa0MsQ0FBQztnQkFDL0MsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7Z0JBQ3JDLFNBQVMsRUFBRTtvQkFDVCxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxRQUFRLEVBQUUscUJBQXFCLEVBQUU7b0JBQ2xFLEVBQUUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLFFBQVEsRUFBRSxtQkFBbUIsRUFBRTtvQkFDN0QsRUFBRSxPQUFPLEVBQUUsbUNBQW1DLEVBQUUsUUFBUSxFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSxFQUFFO2lCQUM3RTthQUNGOztzQkFpQ0ksTUFBTTt1QkFBQyxvQkFBb0I7d0JBVmlCLGNBQWM7a0JBQTVELFNBQVM7bUJBQUMsUUFBUSxFQUFFLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRTtZQUNRLFlBQVk7a0JBQXpELFNBQVM7bUJBQUMsT0FBTyxFQUFFLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRTtZQUVyQixXQUFXO2tCQUExQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgTmd4TWF0RGF0ZUFkYXB0ZXIsXG4gIE5neE1hdERhdGVGb3JtYXRzLFxuICBOZ3hNYXREYXRldGltZVBpY2tlciwgTkdYX01BVF9EQVRFX0ZPUk1BVFNcbn0gZnJvbSAnQGFuZ3VsYXItbWF0ZXJpYWwtY29tcG9uZW50cy9kYXRldGltZS1waWNrZXInO1xuaW1wb3J0IHsgTmd4TWF0TW9tZW50QWRhcHRlciwgTkdYX01BVF9NT01FTlRfREFURV9BREFQVEVSX09QVElPTlMgfSBmcm9tICdAYW5ndWxhci1tYXRlcmlhbC1jb21wb25lbnRzL21vbWVudC1hZGFwdGVyJztcbmltcG9ydCB7IENvbXBvbmVudCwgRWxlbWVudFJlZiwgSW5qZWN0LCBJbnB1dCwgT25Jbml0LCBWaWV3Q2hpbGQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtQ29udHJvbCwgVmFsaWRhdG9ycyB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IFRoZW1lUGFsZXR0ZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NvcmUnO1xuaW1wb3J0IHsgTW9tZW50IH0gZnJvbSAnbW9tZW50L21vbWVudCc7XG5cbmltcG9ydCAqIGFzIG1vbWVudCBmcm9tICdtb21lbnQnO1xuaW1wb3J0IHsgRm9ybWF0VHJhbnNsYXRvclNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi9zZXJ2aWNlcy9jYXNlLWZpZWxkcy9mb3JtYXQtdHJhbnNsYXRvci5zZXJ2aWNlJztcbmltcG9ydCB7IEFic3RyYWN0Rm9ybUZpZWxkQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFzZS1maWVsZC9hYnN0cmFjdC1mb3JtLWZpZWxkLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDVVNUT01fTU9NRU5UX0ZPUk1BVFMgfSBmcm9tICcuL2RhdGV0aW1lLXBpY2tlci11dGlscyc7XG5pbXBvcnQgeyBDYXNlRmllbGQgfSBmcm9tICcuLi8uLi8uLi9kb21haW4vZGVmaW5pdGlvbi9jYXNlLWZpZWxkLm1vZGVsJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnY2NkLWRhdGV0aW1lLXBpY2tlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9kYXRldGltZS1waWNrZXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9kYXRldGltZS1waWNrZXIuY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgcHJvdmlkZXJzOiBbXG4gICAgeyBwcm92aWRlOiBOR1hfTUFUX0RBVEVfRk9STUFUUywgdXNlVmFsdWU6IENVU1RPTV9NT01FTlRfRk9STUFUUyB9LFxuICAgIHsgcHJvdmlkZTogTmd4TWF0RGF0ZUFkYXB0ZXIsIHVzZUNsYXNzOiBOZ3hNYXRNb21lbnRBZGFwdGVyIH0sXG4gICAgeyBwcm92aWRlOiBOR1hfTUFUX01PTUVOVF9EQVRFX0FEQVBURVJfT1BUSU9OUywgdXNlVmFsdWU6IHsgdXNlVXRjOiB0cnVlIH0gfVxuICBdXG59KVxuXG5leHBvcnQgY2xhc3MgRGF0ZXRpbWVQaWNrZXJDb21wb25lbnQgZXh0ZW5kcyBBYnN0cmFjdEZvcm1GaWVsZENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgcHVibGljIHNob3dTcGlubmVycyA9IHRydWU7XG4gIHB1YmxpYyBzaG93U2Vjb25kcyA9IGZhbHNlO1xuICBwdWJsaWMgdG91Y2hVaSA9IGZhbHNlO1xuICBwdWJsaWMgZW5hYmxlTWVyaWRpYW4gPSBmYWxzZTtcbiAgcHVibGljIHN0ZXBIb3VyID0gMTtcbiAgcHVibGljIHN0ZXBNaW51dGUgPSAxO1xuICBwdWJsaWMgc3RlcFNlY29uZCA9IDE7XG4gIHB1YmxpYyBjb2xvcjogVGhlbWVQYWxldHRlID0gJ3ByaW1hcnknO1xuICBwdWJsaWMgZGlzYWJsZU1pbnV0ZSA9IHRydWU7XG4gIHB1YmxpYyBoaWRlVGltZSA9IHRydWU7XG4gIHB1YmxpYyBoaWRlTWludXRlcyA9IHRydWU7XG4gIHB1YmxpYyBzdGFydFZpZXcgPSAnbW9udGgnO1xuICBwdWJsaWMgeWVhclNlbGVjdGlvbiA9IGZhbHNlO1xuICBwdWJsaWMgY2hlY2tUaW1lID0gdHJ1ZTtcbiAgcHVibGljIHN0cmluZ0VkaXRlZCA9IGZhbHNlO1xuICBwdWJsaWMgbWluRXJyb3IgPSBmYWxzZTtcbiAgcHVibGljIG1heEVycm9yID0gZmFsc2U7XG4gIHB1YmxpYyBkYXRlVGltZUVudHJ5Rm9ybWF0OiBzdHJpbmc7XG5cbiAgQFZpZXdDaGlsZCgncGlja2VyJywgeyBzdGF0aWM6IGZhbHNlIH0pIHB1YmxpYyBkYXRldGltZVBpY2tlcjogTmd4TWF0RGF0ZXRpbWVQaWNrZXI8YW55PjtcbiAgQFZpZXdDaGlsZCgnaW5wdXQnLCB7IHN0YXRpYzogZmFsc2UgfSkgcHVibGljIGlucHV0RWxlbWVudDogRWxlbWVudFJlZjxIVE1MSW5wdXRFbGVtZW50PjtcblxuICBASW5wdXQoKSBwdWJsaWMgZGF0ZUNvbnRyb2w6IEZvcm1Db250cm9sID0gbmV3IEZvcm1Db250cm9sKG5ldyBEYXRlKCkpO1xuXG4gIHByaXZhdGUgbWluaW11bURhdGUgPSBuZXcgRGF0ZSgnMDEvMDEvMTgwMCcpO1xuICBwcml2YXRlIG1heGltdW1EYXRlID0gbnVsbDtcbiAgcHJpdmF0ZSBtb21lbnRGb3JtYXQgPSAnWVlZWS1NTS1ERFRISDptbTpzcy5TU1MnO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVhZG9ubHkgZm9ybWF0VHJhbnNsYXRpb25TZXJ2aWNlOiBGb3JtYXRUcmFuc2xhdG9yU2VydmljZSxcbiAgICBASW5qZWN0KE5HWF9NQVRfREFURV9GT1JNQVRTKSBwcml2YXRlIHJlYWRvbmx5IG5neE1hdERhdGVGb3JtYXRzOiBOZ3hNYXREYXRlRm9ybWF0cykge1xuICAgIHN1cGVyKCk7XG4gIH1cblxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5kYXRlVGltZUVudHJ5Rm9ybWF0ID0gdGhpcy5mb3JtYXRUcmFuc2xhdGlvblNlcnZpY2Uuc2hvd09ubHlEYXRlcyh0aGlzLmNhc2VGaWVsZC5kYXRlVGltZUVudHJ5Rm9ybWF0KTtcbiAgICB0aGlzLmNvbmZpZ3VyZURhdGVQaWNrZXIodGhpcy5kYXRlVGltZUVudHJ5Rm9ybWF0KTtcbiAgICAvLyBzZXQgZGF0ZSBjb250cm9sIGJhc2VkIG9uIG1hbmRhdG9yeSBmaWVsZFxuICAgIHRoaXMuZGF0ZUNvbnRyb2wgPSAodGhpcy5jYXNlRmllbGQuaXNNYW5kYXRvcnkgP1xuICAgICAgdGhpcy5yZWdpc3RlckNvbnRyb2wobmV3IEZvcm1Db250cm9sKHRoaXMuY2FzZUZpZWxkLnZhbHVlIHx8ICcnLCBbVmFsaWRhdG9ycy5yZXF1aXJlZF0pKVxuICAgICAgIDogdGhpcy5yZWdpc3RlckNvbnRyb2wobmV3IEZvcm1Db250cm9sKHRoaXMuY2FzZUZpZWxkLnZhbHVlKSkpIGFzIEZvcm1Db250cm9sO1xuICAgIC8vIGluIHJlc2V0dGluZyB0aGUgZm9ybWF0IGp1c3QgYWZ0ZXIgdGhlIHBhZ2UgaW5pdGlhbGlzZXMsIHRoZSBpbnB1dCBjYW4gYmUgcmVmb3JtYXR0ZWRcbiAgICAvLyBvdGhlcndpc2UgdGhlIGxhc3QgZm9ybWF0IGdpdmVuIHdpbGwgYmUgaG93IHRoZSB0ZXh0IHNob3duIHdpbGwgYmUgZGlzcGxheWVkXG4gICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICB0aGlzLnNldERhdGVUaW1lRm9ybWF0KCk7XG4gICAgICB0aGlzLmZvcm1hdFZhbHVlQW5kU2V0RXJyb3JzKCk7XG4gICAgfSwgMTAwMCk7XG4gICAgLy8gd2hlbiB0aGUgc3RhdHVzIGNoYW5nZXMgY2hlY2sgdGhhdCB0aGUgbWF4aW11bS9taW5pbXVtIGRhdGUgaGFzIG5vdCBiZWVuIGV4Y2VlZGVkXG4gICAgdGhpcy5kYXRlQ29udHJvbC5zdGF0dXNDaGFuZ2VzLnN1YnNjcmliZSgoKSA9PiB7XG4gICAgICB0aGlzLm1pbkVycm9yID0gdGhpcy5kYXRlQ29udHJvbC5oYXNFcnJvcignbWF0RGF0ZXRpbWVQaWNrZXJNaW4nKTtcbiAgICAgIHRoaXMubWF4RXJyb3IgPSB0aGlzLmRhdGVDb250cm9sLmhhc0Vycm9yKCdtYXREYXRldGltZVBpY2tlck1heCcpO1xuICAgIH0pO1xuICB9XG5cbiAgcHVibGljIHNldERhdGVUaW1lRm9ybWF0KCk6IHZvaWQge1xuICAgIHRoaXMubmd4TWF0RGF0ZUZvcm1hdHMucGFyc2UuZGF0ZUlucHV0ID0gdGhpcy5kYXRlVGltZUVudHJ5Rm9ybWF0O1xuICAgIHRoaXMubmd4TWF0RGF0ZUZvcm1hdHMuZGlzcGxheS5kYXRlSW5wdXQgPSB0aGlzLmRhdGVUaW1lRW50cnlGb3JtYXQ7XG4gIH1cblxuICAvKlxuICBXaGVuIHRoZSB2YWx1ZSBjaGFuZ2VzLCB1cGRhdGUgdGhlIGZvcm0gY29udHJvbFxuICAqL1xuICBwdWJsaWMgdmFsdWVDaGFuZ2VkKCk6IHZvaWQge1xuICAgIHRoaXMuZm9ybWF0VmFsdWVBbmRTZXRFcnJvcnMoKTtcbiAgfVxuXG4gIHB1YmxpYyBmb2N1c0luKCk6IHZvaWQge1xuICAgIHRoaXMuc2V0RGF0ZVRpbWVGb3JtYXQoKTtcbiAgfVxuXG4gIHB1YmxpYyBmb2N1c091dCgpOiB2b2lkIHtcbiAgICAvLyBmb2N1cyBvdXQgbmVlZGVkIHRvIG9idGFpbiBlcnJvcnMgKHJlbGV2YW50IHRvIGZvcm1hdHRpbmcpXG4gICAgdGhpcy5mb3JtYXRWYWx1ZUFuZFNldEVycm9ycygpO1xuICB9XG5cbiAgcHVibGljIHRvZ2dsZUNsaWNrKCk6IHZvaWQge1xuICAgIHRoaXMuc2V0RGF0ZVRpbWVGb3JtYXQoKTtcbiAgfVxuXG4gIHB1YmxpYyBtaW5EYXRlKGNhc2VGaWVsZDogQ2FzZUZpZWxkKTogRGF0ZSB7XG4gICAgLy8gc2V0IG1pbmltdW0gZGF0ZVxuICAgIGlmIChjYXNlRmllbGQuZmllbGRfdHlwZS5taW4gaW5zdGFuY2VvZiBEYXRlKSB7XG4gICAgICB0aGlzLm1pbmltdW1EYXRlID0gY2FzZUZpZWxkLmZpZWxkX3R5cGUubWluID8gbmV3IERhdGUoY2FzZUZpZWxkLmZpZWxkX3R5cGUubWluKSA6IHRoaXMubWluaW11bURhdGU7XG4gICAgfVxuICAgIHJldHVybiB0aGlzLm1pbmltdW1EYXRlO1xuICB9XG5cbiAgcHVibGljIG1heERhdGUoY2FzZUZpZWxkOiBDYXNlRmllbGQpOiBEYXRlIHtcbiAgICAvLyBzZXQgbWF4aW11bSBkYXRlXG4gICAgaWYgKGNhc2VGaWVsZC5maWVsZF90eXBlLm1heCBpbnN0YW5jZW9mIERhdGUpIHtcbiAgICAgIHRoaXMubWF4aW11bURhdGUgPSBjYXNlRmllbGQuZmllbGRfdHlwZS5tYXggPyBuZXcgRGF0ZShjYXNlRmllbGQuZmllbGRfdHlwZS5tYXgpIDogdGhpcy5tYXhpbXVtRGF0ZTtcbiAgICB9XG4gICAgcmV0dXJuIHRoaXMubWF4aW11bURhdGU7XG4gIH1cblxuICBwdWJsaWMgY29uZmlndXJlRGF0ZVBpY2tlcihkYXRlVGltZVBpY2tlckZvcm1hdDogc3RyaW5nKTogdm9pZCB7XG4gICAgaWYgKHRoaXMuY2FzZUZpZWxkLmZpZWxkX3R5cGUudHlwZSA9PT0gJ0RhdGUnKSB7XG4gICAgICB0aGlzLmhpZGVUaW1lID0gdHJ1ZTtcbiAgICAgIHRoaXMuY2hlY2tUaW1lID0gZmFsc2U7XG4gICAgICB0aGlzLmRhdGVUaW1lRW50cnlGb3JtYXQgPSB0aGlzLmZvcm1hdFRyYW5zbGF0aW9uU2VydmljZS5yZW1vdmVUaW1lKHRoaXMuZGF0ZVRpbWVFbnRyeUZvcm1hdCk7XG4gICAgICB0aGlzLm1vbWVudEZvcm1hdCA9ICdZWVlZLU1NLUREJztcbiAgICB9XG5cbiAgICBpZiAodGhpcy5jaGVja1RpbWUpIHtcblxuICAgICAgaWYgKHRoaXMuZm9ybWF0VHJhbnNsYXRpb25TZXJ2aWNlLmhhc1NlY29uZHMoZGF0ZVRpbWVQaWNrZXJGb3JtYXQpKSB7XG4gICAgICAgIHRoaXMuc2hvd1NlY29uZHMgPSB0cnVlO1xuICAgICAgICB0aGlzLmhpZGVNaW51dGVzID0gZmFsc2U7XG4gICAgICAgIHRoaXMuZGlzYWJsZU1pbnV0ZSA9IGZhbHNlO1xuICAgICAgICB0aGlzLmhpZGVUaW1lID0gZmFsc2U7XG4gICAgICAgIGlmICghdGhpcy5mb3JtYXRUcmFuc2xhdGlvblNlcnZpY2UuaXMyNEhvdXIoZGF0ZVRpbWVQaWNrZXJGb3JtYXQpKSB7XG4gICAgICAgICAgdGhpcy5lbmFibGVNZXJpZGlhbiA9IHRydWU7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIGlmICh0aGlzLmZvcm1hdFRyYW5zbGF0aW9uU2VydmljZS5oYXNIb3VycyhkYXRlVGltZVBpY2tlckZvcm1hdCkpIHtcbiAgICAgICAgdGhpcy5oaWRlVGltZSA9IGZhbHNlO1xuICAgICAgICBpZiAoIXRoaXMuZm9ybWF0VHJhbnNsYXRpb25TZXJ2aWNlLmlzMjRIb3VyKGRhdGVUaW1lUGlja2VyRm9ybWF0KSkge1xuICAgICAgICAgIHRoaXMuZW5hYmxlTWVyaWRpYW4gPSB0cnVlO1xuICAgICAgICB9XG4gICAgICAgIHJldHVybjtcbiAgICAgIH1cblxuICAgICAgaWYgKHRoaXMuZm9ybWF0VHJhbnNsYXRpb25TZXJ2aWNlLmhhc01pbnV0ZXMoZGF0ZVRpbWVQaWNrZXJGb3JtYXQpKSB7XG4gICAgICAgIHRoaXMuaGlkZU1pbnV0ZXMgPSBmYWxzZTtcbiAgICAgICAgdGhpcy5kaXNhYmxlTWludXRlID0gZmFsc2U7XG4gICAgICAgIHRoaXMuaGlkZVRpbWUgPSBmYWxzZTtcbiAgICAgICAgaWYgKCF0aGlzLmZvcm1hdFRyYW5zbGF0aW9uU2VydmljZS5pczI0SG91cihkYXRlVGltZVBpY2tlckZvcm1hdCkpIHtcbiAgICAgICAgICB0aGlzLmVuYWJsZU1lcmlkaWFuID0gdHJ1ZTtcbiAgICAgICAgfVxuICAgICAgICByZXR1cm47XG4gICAgICB9XG4gICAgfVxuXG4gICAgaWYgKHRoaXMuZm9ybWF0VHJhbnNsYXRpb25TZXJ2aWNlLmhhc0RhdGUoZGF0ZVRpbWVQaWNrZXJGb3JtYXQpKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgaWYgKHRoaXMuZm9ybWF0VHJhbnNsYXRpb25TZXJ2aWNlLmhhc05vRGF5KGRhdGVUaW1lUGlja2VyRm9ybWF0KSkge1xuICAgICAgdGhpcy5zdGFydFZpZXcgPSAnbXVsdGkteWVhcic7XG4gICAgfVxuXG4gICAgaWYgKHRoaXMuZm9ybWF0VHJhbnNsYXRpb25TZXJ2aWNlLmhhc05vRGF5QW5kTW9udGgoZGF0ZVRpbWVQaWNrZXJGb3JtYXQpKSB7XG4gICAgICB0aGlzLnN0YXJ0VmlldyA9ICdtdWx0aS15ZWFyJztcbiAgICAgIHRoaXMueWVhclNlbGVjdGlvbiA9IHRydWU7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIHllYXJTZWxlY3RlZChldmVudDogTW9tZW50KTogdm9pZCB7XG4gICAgaWYgKHRoaXMuc3RhcnRWaWV3ID09PSAnbXVsdGkteWVhcicgJiYgdGhpcy55ZWFyU2VsZWN0aW9uKSB7XG4gICAgICB0aGlzLmRhdGVDb250cm9sLnBhdGNoVmFsdWUoZXZlbnQudG9JU09TdHJpbmcoKSk7XG4gICAgICB0aGlzLmRhdGV0aW1lUGlja2VyLmNsb3NlKCk7XG4gICAgICB0aGlzLnZhbHVlQ2hhbmdlZCgpO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBtb250aFNlbGVjdGVkKGV2ZW50OiBNb21lbnQpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5zdGFydFZpZXcgPT09ICdtdWx0aS15ZWFyJykge1xuICAgICAgdGhpcy5kYXRlQ29udHJvbC5wYXRjaFZhbHVlKGV2ZW50LnRvSVNPU3RyaW5nKCkpO1xuICAgICAgdGhpcy5kYXRlQ29udHJvbC5wYXRjaFZhbHVlKGV2ZW50LnRvSVNPU3RyaW5nKCkpO1xuICAgICAgdGhpcy5kYXRldGltZVBpY2tlci5jbG9zZSgpO1xuICAgICAgdGhpcy52YWx1ZUNoYW5nZWQoKTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGZvcm1hdFZhbHVlQW5kU2V0RXJyb3JzKCk6IHZvaWQge1xuICAgIGlmICh0aGlzLmlucHV0RWxlbWVudC5uYXRpdmVFbGVtZW50LnZhbHVlKSB7XG4gICAgICBsZXQgZm9ybVZhbHVlID0gdGhpcy5pbnB1dEVsZW1lbnQubmF0aXZlRWxlbWVudC52YWx1ZTtcbiAgICAgIGZvcm1WYWx1ZSA9IG1vbWVudChmb3JtVmFsdWUsIHRoaXMuZGF0ZVRpbWVFbnRyeUZvcm1hdCkuZm9ybWF0KHRoaXMubW9tZW50Rm9ybWF0KTtcbiAgICAgIGlmIChmb3JtVmFsdWUgIT09ICdJbnZhbGlkIGRhdGUnKSB7XG4gICAgICAgIC8vIGlmIG5vdCBpbnZhbGlkIHNldCB0aGUgdmFsdWUgYXMgdGhlIGZvcm1hdHRlZCB2YWx1ZVxuICAgICAgICB0aGlzLmRhdGVDb250cm9sLnNldFZhbHVlKGZvcm1WYWx1ZSk7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICAvLyBlbnN1cmUgdGhhdCB0aGUgZGF0ZXBpY2tlciBwaWNrcyB1cCB0aGUgaW52YWxpZCBlcnJvclxuICAgICAgICBjb25zdCBrZWVwRXJyb3JUZXh0ID0gdGhpcy5pbnB1dEVsZW1lbnQubmF0aXZlRWxlbWVudC52YWx1ZTtcbiAgICAgICAgdGhpcy5kYXRlQ29udHJvbC5zZXRWYWx1ZShrZWVwRXJyb3JUZXh0KTtcbiAgICAgICAgdGhpcy5pbnB1dEVsZW1lbnQubmF0aXZlRWxlbWVudC52YWx1ZSA9IGtlZXBFcnJvclRleHQ7XG4gICAgICB9XG4gICAgfSBlbHNlIHtcbiAgICAgIC8vIGVuc3VyZSByZXF1aXJlZCBlcnJvcnMgYXJlIHBpY2tlZCB1cCBpZiByZWxldmFudFxuICAgICAgdGhpcy5kYXRlQ29udHJvbC5zZXRWYWx1ZSgnJyk7XG4gICAgfVxuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiZ292dWstZm9ybS1ncm91cCAgYm90dG9tLTMwXCIgW2lkXT1cImNhc2VGaWVsZC5pZFwiXG4gICAgIFtuZ0NsYXNzXT1cInsnZm9ybS1ncm91cC1lcnJvcic6IGRhdGVDb250cm9sICYmICFkYXRlQ29udHJvbC52YWxpZCAmJiBkYXRlQ29udHJvbC5kaXJ0eX1cIj5cbiAgPGZpZWxkc2V0PlxuICAgIDxsZWdlbmQ+XG4gICAgICA8c3BhbiBjbGFzcz1cImZvcm0tbGFiZWxcIiAqbmdJZj1cImNhc2VGaWVsZC5sYWJlbFwiPnt7Y2FzZUZpZWxkIHwgY2NkRmllbGRMYWJlbCB9fTwvc3Bhbj5cbiAgICAgIDxzcGFuIGNsYXNzPVwiZm9ybS1oaW50XCIgKm5nSWY9XCJjYXNlRmllbGQuaGludF90ZXh0XCI+e3tjYXNlRmllbGQuaGludF90ZXh0fX08L3NwYW4+XG4gICAgICA8c3BhbiBjbGFzcz1cImVycm9yLW1lc3NhZ2VcIlxuICAgICAgICAgICAgKm5nSWY9XCJkYXRlQ29udHJvbCAmJiBkYXRlQ29udHJvbC5lcnJvcnMgJiYgZGF0ZUNvbnRyb2wuZGlydHkgJiYgIShtaW5FcnJvciB8fCBtYXhFcnJvcilcIj57e2RhdGVDb250cm9sLmVycm9ycyB8IGNjZEZpcnN0RXJyb3I6Y2FzZUZpZWxkLmxhYmVsfX08L3NwYW4+XG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cImVycm9yLW1lc3NhZ2VcIlxuICAgICAgICAgICAgKm5nSWY9XCJkYXRlQ29udHJvbCAmJiBkYXRlQ29udHJvbC5kaXJ0eSAmJiBtaW5FcnJvclwiPlRoaXMgZGF0ZSBpcyBvbGRlciB0aGFuIHRoZSBtaW5pbXVtIGRhdGUgYWxsb3dlZDwvc3Bhbj5cbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiZXJyb3ItbWVzc2FnZVwiXG4gICAgICAgICAgICAqbmdJZj1cImRhdGVDb250cm9sICYmIGRhdGVDb250cm9sLmRpcnR5ICYmIG1heEVycm9yXCI+VGhpcyBkYXRlIGlzIGxhdGVyIHRoYW4gdGhlIG1heGltdW0gZGF0ZSBhbGxvd2VkPC9zcGFuPlxuICAgIDwvbGVnZW5kPlxuICAgIDxkaXYgY2xhc3M9XCJkYXRlcGlja2VyLWNvbnRhaW5lclwiPlxuICAgICAgPGlucHV0IGNsYXNzPVwiZ292dWstaW5wdXRcIlxuICAgICAgICAgICAgICNpbnB1dFxuICAgICAgICAgICAgIGF0dHIuYXJpYS1sYWJlbD1cIlBsZWFzZSBlbnRlciBhIGRhdGUgYW5kIHRpbWUgaW4gdGhlIGZvcm1hdCB7e2RhdGVUaW1lRW50cnlGb3JtYXR9fVwiXG4gICAgICAgICAgICAgW21pbl09XCJtaW5EYXRlKGNhc2VGaWVsZClcIlxuICAgICAgICAgICAgIFttYXhdPVwibWF4RGF0ZShjYXNlRmllbGQpXCJcbiAgICAgICAgICAgICBbZm9ybUNvbnRyb2xdPVwiZGF0ZUNvbnRyb2xcIlxuICAgICAgICAgICAgIFtuZ3hNYXREYXRldGltZVBpY2tlcl09XCJwaWNrZXJcIlxuICAgICAgICAgICAgIChmb2N1c2luKT1cImZvY3VzSW4oKVwiXG4gICAgICAgICAgICAgKGZvY3Vzb3V0KT1cImZvY3VzT3V0KClcIlxuICAgICAgICAgICAgIChkYXRlQ2hhbmdlKT1cInZhbHVlQ2hhbmdlZCgpXCJcbiAgICAgICAgICAgICBuZy1tb2RlbC1vcHRpb25zPVwie3RpbWV6b25lOid1dGMnfVwiXG4gICAgICA+XG4gICAgICA8bWF0LWRhdGVwaWNrZXItdG9nZ2xlIG1hdFN1ZmZpeCBbZm9yXT1cInBpY2tlclwiIGlkPVwicGlja2VyT3BlbmVyXCI+PC9tYXQtZGF0ZXBpY2tlci10b2dnbGU+XG4gICAgICA8bmd4LW1hdC1kYXRldGltZS1waWNrZXIgI3BpY2tlclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtjb2xvcl09XCJjb2xvclwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3RvdWNoVWldPVwidG91Y2hVaVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2hpZGVUaW1lXT1cImhpZGVUaW1lXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbc3RhcnRWaWV3XT1cInN0YXJ0Vmlld1wiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3N0ZXBIb3VyXT1cInN0ZXBIb3VyXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbc3RlcFNlY29uZF09XCJzdGVwU2Vjb25kXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbc3RlcE1pbnV0ZV09XCJzdGVwTWludXRlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbc2hvd1NlY29uZHNdPVwic2hvd1NlY29uZHNcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtzaG93U3Bpbm5lcnNdPVwic2hvd1NwaW5uZXJzXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbZGlzYWJsZU1pbnV0ZV09XCJkaXNhYmxlTWludXRlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbZW5hYmxlTWVyaWRpYW5dPVwiZW5hYmxlTWVyaWRpYW5cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICh5ZWFyU2VsZWN0ZWQpPVwieWVhclNlbGVjdGVkKCRldmVudClcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIChtb250aFNlbGVjdGVkKT1cIm1vbnRoU2VsZWN0ZWQoJGV2ZW50KVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKG9wZW5lZCk9XCJ0b2dnbGVDbGljaygpXCJcbiAgICAgID5cbiAgICAgIDwvbmd4LW1hdC1kYXRldGltZS1waWNrZXI+XG4gICAgPC9kaXY+XG4gIDwvZmllbGRzZXQ+XG48L2Rpdj5cbiJdfQ==
|
package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/datetime-picker/index.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './datetime-picker.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9kYXRldGltZS1waWNrZXIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw2QkFBNkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZGF0ZXRpbWUtcGlja2VyLmNvbXBvbmVudCc7Il19
|
package/dist/ccd-case-ui-toolkit/esm2015/lib/shared/components/palette/document/document-url.pipe.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Pipe } from '@angular/core';
|
|
2
|
+
import { AbstractAppConfig } from '../../../../app.config';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../../../app.config";
|
|
5
|
+
export class DocumentUrlPipe {
|
|
6
|
+
constructor(appConfig) {
|
|
7
|
+
this.appConfig = appConfig;
|
|
8
|
+
}
|
|
9
|
+
transform(value) {
|
|
10
|
+
const remoteHrsPattern = new RegExp(this.appConfig.getRemoteHrsUrl());
|
|
11
|
+
value = value.replace(remoteHrsPattern, this.appConfig.getHrsUrl());
|
|
12
|
+
const remoteDocumentManagementPattern = new RegExp(this.appConfig.getRemoteDocumentManagementUrl());
|
|
13
|
+
return value.replace(remoteDocumentManagementPattern, this.appConfig.getDocumentManagementUrl());
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
DocumentUrlPipe.ɵfac = function DocumentUrlPipe_Factory(t) { return new (t || DocumentUrlPipe)(i0.ɵɵdirectiveInject(i1.AbstractAppConfig)); };
|
|
17
|
+
DocumentUrlPipe.ɵpipe = i0.ɵɵdefinePipe({ name: "ccdDocumentUrl", type: DocumentUrlPipe, pure: true });
|
|
18
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DocumentUrlPipe, [{
|
|
19
|
+
type: Pipe,
|
|
20
|
+
args: [{
|
|
21
|
+
name: 'ccdDocumentUrl'
|
|
22
|
+
}]
|
|
23
|
+
}], function () { return [{ type: i1.AbstractAppConfig }]; }, null); })();
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG9jdW1lbnQtdXJsLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9kb2N1bWVudC9kb2N1bWVudC11cmwucGlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsSUFBSSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUNwRCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQzs7O0FBSzNELE1BQU0sT0FBTyxlQUFlO0lBRTFCLFlBQTZCLFNBQTRCO1FBQTVCLGNBQVMsR0FBVCxTQUFTLENBQW1CO0lBQUcsQ0FBQztJQUV0RCxTQUFTLENBQUMsS0FBYTtRQUM1QixNQUFNLGdCQUFnQixHQUFHLElBQUksTUFBTSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsZUFBZSxFQUFFLENBQUMsQ0FBQztRQUN0RSxLQUFLLEdBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxnQkFBZ0IsRUFBRSxJQUFJLENBQUMsU0FBUyxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUM7UUFDcEUsTUFBTSwrQkFBK0IsR0FBRyxJQUFJLE1BQU0sQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLDhCQUE4QixFQUFFLENBQUMsQ0FBQztRQUNwRyxPQUFPLEtBQUssQ0FBQyxPQUFPLENBQUMsK0JBQStCLEVBQUUsSUFBSSxDQUFDLFNBQVMsQ0FBQyx3QkFBd0IsRUFBRSxDQUFDLENBQUM7SUFDbkcsQ0FBQzs7OEVBVFUsZUFBZTt3RUFBZixlQUFlO3VGQUFmLGVBQWU7Y0FIM0IsSUFBSTtlQUFDO2dCQUNKLElBQUksRUFBRSxnQkFBZ0I7YUFDdkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBBYnN0cmFjdEFwcENvbmZpZyB9IGZyb20gJy4uLy4uLy4uLy4uL2FwcC5jb25maWcnO1xuXG5AUGlwZSh7XG4gIG5hbWU6ICdjY2REb2N1bWVudFVybCdcbn0pXG5leHBvcnQgY2xhc3MgRG9jdW1lbnRVcmxQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSByZWFkb25seSBhcHBDb25maWc6IEFic3RyYWN0QXBwQ29uZmlnKSB7fVxuXG4gIHB1YmxpYyB0cmFuc2Zvcm0odmFsdWU6IHN0cmluZyk6IHN0cmluZyB7XG4gICAgY29uc3QgcmVtb3RlSHJzUGF0dGVybiA9IG5ldyBSZWdFeHAodGhpcy5hcHBDb25maWcuZ2V0UmVtb3RlSHJzVXJsKCkpO1xuICAgIHZhbHVlID0gdmFsdWUucmVwbGFjZShyZW1vdGVIcnNQYXR0ZXJuLCB0aGlzLmFwcENvbmZpZy5nZXRIcnNVcmwoKSk7XG4gICAgY29uc3QgcmVtb3RlRG9jdW1lbnRNYW5hZ2VtZW50UGF0dGVybiA9IG5ldyBSZWdFeHAodGhpcy5hcHBDb25maWcuZ2V0UmVtb3RlRG9jdW1lbnRNYW5hZ2VtZW50VXJsKCkpO1xuICAgIHJldHVybiB2YWx1ZS5yZXBsYWNlKHJlbW90ZURvY3VtZW50TWFuYWdlbWVudFBhdHRlcm4sIHRoaXMuYXBwQ29uZmlnLmdldERvY3VtZW50TWFuYWdlbWVudFVybCgpKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { WindowService } from '../../../services/window/window.service';
|
|
3
|
+
import { FileUploadStateService } from './file-upload-state.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "./file-upload-state.service";
|
|
6
|
+
import * as i2 from "../../../services/window/window.service";
|
|
7
|
+
export class FileUploadProgressGuard {
|
|
8
|
+
constructor(fileUploadStateService, windowService) {
|
|
9
|
+
this.fileUploadStateService = fileUploadStateService;
|
|
10
|
+
this.windowService = windowService;
|
|
11
|
+
}
|
|
12
|
+
canDeactivate() {
|
|
13
|
+
if (this.fileUploadStateService.isUploadInProgress()) {
|
|
14
|
+
const userDecision = !this.windowService.confirm(FileUploadProgressGuard.CONFIRM_MESSAGE);
|
|
15
|
+
if (userDecision) {
|
|
16
|
+
this.fileUploadStateService.setUploadInProgress(false);
|
|
17
|
+
}
|
|
18
|
+
return userDecision;
|
|
19
|
+
}
|
|
20
|
+
return true;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
FileUploadProgressGuard.CONFIRM_MESSAGE = 'File upload in progress. Press “Cancel” to cancel the upload. Press “Ok” to continue the document upload.';
|
|
24
|
+
FileUploadProgressGuard.ɵfac = function FileUploadProgressGuard_Factory(t) { return new (t || FileUploadProgressGuard)(i0.ɵɵinject(i1.FileUploadStateService), i0.ɵɵinject(i2.WindowService)); };
|
|
25
|
+
FileUploadProgressGuard.ɵprov = i0.ɵɵdefineInjectable({ token: FileUploadProgressGuard, factory: FileUploadProgressGuard.ɵfac });
|
|
26
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FileUploadProgressGuard, [{
|
|
27
|
+
type: Injectable
|
|
28
|
+
}], function () { return [{ type: i1.FileUploadStateService }, { type: i2.WindowService }]; }, null); })();
|
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZS11cGxvYWQtcHJvZ3Jlc3MuZ3VhcmQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9kb2N1bWVudC9maWxlLXVwbG9hZC1wcm9ncmVzcy5ndWFyZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTNDLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUN4RSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQzs7OztBQUdyRSxNQUFNLE9BQU8sdUJBQXVCO0lBSWhDLFlBQ3FCLHNCQUE4QyxFQUM5QyxhQUE0QjtRQUQ1QiwyQkFBc0IsR0FBdEIsc0JBQXNCLENBQXdCO1FBQzlDLGtCQUFhLEdBQWIsYUFBYSxDQUFlO0lBQzlDLENBQUM7SUFFRyxhQUFhO1FBQ2hCLElBQUksSUFBSSxDQUFDLHNCQUFzQixDQUFDLGtCQUFrQixFQUFFLEVBQUU7WUFDbEQsTUFBTSxZQUFZLEdBQUcsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLE9BQU8sQ0FBQyx1QkFBdUIsQ0FBQyxlQUFlLENBQUMsQ0FBQztZQUMxRixJQUFJLFlBQVksRUFBRTtnQkFDZCxJQUFJLENBQUMsc0JBQXNCLENBQUMsbUJBQW1CLENBQUMsS0FBSyxDQUFDLENBQUM7YUFDMUQ7WUFDRCxPQUFPLFlBQVksQ0FBQztTQUN2QjtRQUNELE9BQU8sSUFBSSxDQUFDO0lBQ2hCLENBQUM7O0FBaEJzQix1Q0FBZSxHQUFHLDJHQUEyRyxDQUFDOzhGQUY1SSx1QkFBdUI7K0RBQXZCLHVCQUF1QixXQUF2Qix1QkFBdUI7dUZBQXZCLHVCQUF1QjtjQURuQyxVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ2FuRGVhY3RpdmF0ZSB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQgeyBXaW5kb3dTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vc2VydmljZXMvd2luZG93L3dpbmRvdy5zZXJ2aWNlJztcbmltcG9ydCB7IEZpbGVVcGxvYWRTdGF0ZVNlcnZpY2UgfSBmcm9tICcuL2ZpbGUtdXBsb2FkLXN0YXRlLnNlcnZpY2UnO1xuXG5ASW5qZWN0YWJsZSgpXG5leHBvcnQgY2xhc3MgRmlsZVVwbG9hZFByb2dyZXNzR3VhcmQgaW1wbGVtZW50cyBDYW5EZWFjdGl2YXRlPGFueT4ge1xuXG4gICAgcHVibGljIHN0YXRpYyByZWFkb25seSBDT05GSVJNX01FU1NBR0UgPSAnRmlsZSB1cGxvYWQgaW4gcHJvZ3Jlc3MuIFByZXNzIOKAnENhbmNlbOKAnSB0byBjYW5jZWwgdGhlIHVwbG9hZC4gUHJlc3Mg4oCcT2vigJ0gdG8gY29udGludWUgdGhlIGRvY3VtZW50IHVwbG9hZC4nO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgZmlsZVVwbG9hZFN0YXRlU2VydmljZTogRmlsZVVwbG9hZFN0YXRlU2VydmljZSxcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSB3aW5kb3dTZXJ2aWNlOiBXaW5kb3dTZXJ2aWNlXG4gICAgKSB7fVxuXG4gICAgcHVibGljIGNhbkRlYWN0aXZhdGUoKSB7XG4gICAgICAgIGlmICh0aGlzLmZpbGVVcGxvYWRTdGF0ZVNlcnZpY2UuaXNVcGxvYWRJblByb2dyZXNzKCkpIHtcbiAgICAgICAgICAgIGNvbnN0IHVzZXJEZWNpc2lvbiA9ICF0aGlzLndpbmRvd1NlcnZpY2UuY29uZmlybShGaWxlVXBsb2FkUHJvZ3Jlc3NHdWFyZC5DT05GSVJNX01FU1NBR0UpO1xuICAgICAgICAgICAgaWYgKHVzZXJEZWNpc2lvbikge1xuICAgICAgICAgICAgICAgIHRoaXMuZmlsZVVwbG9hZFN0YXRlU2VydmljZS5zZXRVcGxvYWRJblByb2dyZXNzKGZhbHNlKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIHJldHVybiB1c2VyRGVjaXNpb247XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIHRydWU7XG4gICAgfVxuXG59XG4iXX0=
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class FileUploadStateService {
|
|
4
|
+
setUploadInProgress(value) {
|
|
5
|
+
this.uploadInProgress = value;
|
|
6
|
+
}
|
|
7
|
+
isUploadInProgress() {
|
|
8
|
+
return this.uploadInProgress;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
FileUploadStateService.ɵfac = function FileUploadStateService_Factory(t) { return new (t || FileUploadStateService)(); };
|
|
12
|
+
FileUploadStateService.ɵprov = i0.ɵɵdefineInjectable({ token: FileUploadStateService, factory: FileUploadStateService.ɵfac });
|
|
13
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FileUploadStateService, [{
|
|
14
|
+
type: Injectable
|
|
15
|
+
}], null, null); })();
|
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZS11cGxvYWQtc3RhdGUuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NjZC1jYXNlLXVpLXRvb2xraXQvc3JjL2xpYi9zaGFyZWQvY29tcG9uZW50cy9wYWxldHRlL2RvY3VtZW50L2ZpbGUtdXBsb2FkLXN0YXRlLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFHM0MsTUFBTSxPQUFPLHNCQUFzQjtJQUd4QixtQkFBbUIsQ0FBQyxLQUFjO1FBQ3JDLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxLQUFLLENBQUM7SUFDbEMsQ0FBQztJQUVNLGtCQUFrQjtRQUNyQixPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQztJQUNqQyxDQUFDOzs0RkFUUSxzQkFBc0I7OERBQXRCLHNCQUFzQixXQUF0QixzQkFBc0I7dUZBQXRCLHNCQUFzQjtjQURsQyxVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ASW5qZWN0YWJsZSgpXG5leHBvcnQgY2xhc3MgRmlsZVVwbG9hZFN0YXRlU2VydmljZSB7XG4gICAgcHVibGljIHVwbG9hZEluUHJvZ3Jlc3M6IGJvb2xlYW47XG5cbiAgICBwdWJsaWMgc2V0VXBsb2FkSW5Qcm9ncmVzcyh2YWx1ZTogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICB0aGlzLnVwbG9hZEluUHJvZ3Jlc3MgPSB2YWx1ZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgaXNVcGxvYWRJblByb2dyZXNzKCk6IGJvb2xlYW4ge1xuICAgICAgICByZXR1cm4gdGhpcy51cGxvYWRJblByb2dyZXNzO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './document-url.pipe';
|
|
2
|
+
export * from './read-document-field.component';
|
|
3
|
+
export * from './write-document-field.component';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9kb2N1bWVudC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyxrQ0FBa0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZG9jdW1lbnQtdXJsLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9yZWFkLWRvY3VtZW50LWZpZWxkLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3dyaXRlLWRvY3VtZW50LWZpZWxkLmNvbXBvbmVudCc7XG4iXX0=
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { DocumentManagementService } from '../../../services/document-management';
|
|
4
|
+
import { WindowService } from '../../../services/window';
|
|
5
|
+
import { CasesService } from '../../case-editor/services/cases.service';
|
|
6
|
+
import { AbstractFieldReadComponent } from '../base-field/abstract-field-read.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../../../services/window";
|
|
9
|
+
import * as i2 from "../../../services/document-management";
|
|
10
|
+
import * as i3 from "@angular/router";
|
|
11
|
+
import * as i4 from "../../case-editor/services/cases.service";
|
|
12
|
+
import * as i5 from "@angular/common";
|
|
13
|
+
function ReadDocumentFieldComponent_a_0_Template(rf, ctx) { if (rf & 1) {
|
|
14
|
+
const _r2 = i0.ɵɵgetCurrentView();
|
|
15
|
+
i0.ɵɵelementStart(0, "a", 1);
|
|
16
|
+
i0.ɵɵlistener("click", function ReadDocumentFieldComponent_a_0_Template_a_click_0_listener() { i0.ɵɵrestoreView(_r2); const ctx_r1 = i0.ɵɵnextContext(); return ctx_r1.showMediaViewer(); });
|
|
17
|
+
i0.ɵɵtext(1);
|
|
18
|
+
i0.ɵɵelementEnd();
|
|
19
|
+
} if (rf & 2) {
|
|
20
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
21
|
+
i0.ɵɵadvance(1);
|
|
22
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.caseField.value.document_filename, "\n");
|
|
23
|
+
} }
|
|
24
|
+
const MEDIA_VIEWER_INFO = 'media-viewer-info';
|
|
25
|
+
export class ReadDocumentFieldComponent extends AbstractFieldReadComponent {
|
|
26
|
+
constructor(windowService, documentManagement, router, route, casesService) {
|
|
27
|
+
super();
|
|
28
|
+
this.windowService = windowService;
|
|
29
|
+
this.documentManagement = documentManagement;
|
|
30
|
+
this.router = router;
|
|
31
|
+
this.route = route;
|
|
32
|
+
this.casesService = casesService;
|
|
33
|
+
}
|
|
34
|
+
showMediaViewer() {
|
|
35
|
+
const caseId = this.route.snapshot.params['cid'];
|
|
36
|
+
this.windowService.removeLocalStorage(MEDIA_VIEWER_INFO);
|
|
37
|
+
if (caseId) {
|
|
38
|
+
this.caseViewSubscription = this.casesService.getCaseViewV2(caseId).subscribe(caseView => {
|
|
39
|
+
if (this.caseField && this.caseField.value) {
|
|
40
|
+
const mergedInfo = Object.assign(Object.assign({}, this.caseField.value), { id: caseView.case_id, jurisdiction: caseView.case_type.jurisdiction.id });
|
|
41
|
+
this.openMediaViewer(mergedInfo);
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
else {
|
|
46
|
+
if (this.caseField && this.caseField.value) {
|
|
47
|
+
this.openMediaViewer(this.caseField.value);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
openMediaViewer(documentFieldValue) {
|
|
52
|
+
this.windowService.setLocalStorage(MEDIA_VIEWER_INFO, this.documentManagement.getMediaViewerInfo(documentFieldValue));
|
|
53
|
+
this.windowService.openOnNewTab(this.getMediaViewerUrl());
|
|
54
|
+
}
|
|
55
|
+
getMediaViewerUrl() {
|
|
56
|
+
const routerMediaViewer = this.router.createUrlTree(['/media-viewer']);
|
|
57
|
+
if (routerMediaViewer) {
|
|
58
|
+
return routerMediaViewer.toString();
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
ngOnDestroy() {
|
|
62
|
+
if (this.caseViewSubscription) {
|
|
63
|
+
this.caseViewSubscription.unsubscribe();
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
ReadDocumentFieldComponent.ɵfac = function ReadDocumentFieldComponent_Factory(t) { return new (t || ReadDocumentFieldComponent)(i0.ɵɵdirectiveInject(i1.WindowService), i0.ɵɵdirectiveInject(i2.DocumentManagementService), i0.ɵɵdirectiveInject(i3.Router), i0.ɵɵdirectiveInject(i3.ActivatedRoute), i0.ɵɵdirectiveInject(i4.CasesService)); };
|
|
68
|
+
ReadDocumentFieldComponent.ɵcmp = i0.ɵɵdefineComponent({ type: ReadDocumentFieldComponent, selectors: [["ccd-read-document-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [["href", "javascript:void(0)", 3, "click", 4, "ngIf"], ["href", "javascript:void(0)", 3, "click"]], template: function ReadDocumentFieldComponent_Template(rf, ctx) { if (rf & 1) {
|
|
69
|
+
i0.ɵɵtemplate(0, ReadDocumentFieldComponent_a_0_Template, 2, 1, "a", 0);
|
|
70
|
+
} if (rf & 2) {
|
|
71
|
+
i0.ɵɵproperty("ngIf", ctx.caseField.value);
|
|
72
|
+
} }, directives: [i5.NgIf], encapsulation: 2 });
|
|
73
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadDocumentFieldComponent, [{
|
|
74
|
+
type: Component,
|
|
75
|
+
args: [{
|
|
76
|
+
selector: 'ccd-read-document-field',
|
|
77
|
+
templateUrl: './read-document-field.html'
|
|
78
|
+
}]
|
|
79
|
+
}], function () { return [{ type: i1.WindowService }, { type: i2.DocumentManagementService }, { type: i3.Router }, { type: i3.ActivatedRoute }, { type: i4.CasesService }]; }, null); })();
|
|
80
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVhZC1kb2N1bWVudC1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9kb2N1bWVudC9yZWFkLWRvY3VtZW50LWZpZWxkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NjZC1jYXNlLXVpLXRvb2xraXQvc3JjL2xpYi9zaGFyZWQvY29tcG9uZW50cy9wYWxldHRlL2RvY3VtZW50L3JlYWQtZG9jdW1lbnQtZmllbGQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFhLE1BQU0sZUFBZSxDQUFDO0FBQ3JELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFekQsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sdUNBQXVDLENBQUM7QUFDbEYsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQUN4RSxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQzs7Ozs7Ozs7O0lDTnpGLDRCQUMrQjtJQUE1Qiw0TEFBMkI7SUFDNUIsWUFDRjtJQUFBLGlCQUFJOzs7SUFERixlQUNGO0lBREUsMEVBQ0Y7O0FES0EsTUFBTSxpQkFBaUIsR0FBRyxtQkFBbUIsQ0FBQztBQU05QyxNQUFNLE9BQU8sMEJBQTJCLFNBQVEsMEJBQTBCO0lBSXhFLFlBQ21CLGFBQTRCLEVBQzVCLGtCQUE2QyxFQUM3QyxNQUFjLEVBQ2QsS0FBcUIsRUFDckIsWUFBMEI7UUFFM0MsS0FBSyxFQUFFLENBQUM7UUFOUyxrQkFBYSxHQUFiLGFBQWEsQ0FBZTtRQUM1Qix1QkFBa0IsR0FBbEIsa0JBQWtCLENBQTJCO1FBQzdDLFdBQU0sR0FBTixNQUFNLENBQVE7UUFDZCxVQUFLLEdBQUwsS0FBSyxDQUFnQjtRQUNyQixpQkFBWSxHQUFaLFlBQVksQ0FBYztJQUc3QyxDQUFDO0lBRU0sZUFBZTtRQUNwQixNQUFNLE1BQU0sR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDakQsSUFBSSxDQUFDLGFBQWEsQ0FBQyxrQkFBa0IsQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO1FBQ3pELElBQUksTUFBTSxFQUFFO1lBQ1YsSUFBSSxDQUFDLG9CQUFvQixHQUFHLElBQUksQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsRUFBRTtnQkFDdkYsSUFBSSxJQUFJLENBQUMsU0FBUyxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxFQUFFO29CQUMxQyxNQUFNLFVBQVUsbUNBQ1gsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLEtBQ3ZCLEVBQUUsRUFBRSxRQUFRLENBQUMsT0FBTyxFQUNwQixZQUFZLEVBQUUsUUFBUSxDQUFDLFNBQVMsQ0FBQyxZQUFZLENBQUMsRUFBRSxHQUNqRCxDQUFDO29CQUNGLElBQUksQ0FBQyxlQUFlLENBQUMsVUFBVSxDQUFDLENBQUM7aUJBQ2xDO1lBQ0gsQ0FBQyxDQUFDLENBQUM7U0FDSjthQUFNO1lBQ0wsSUFBSSxJQUFJLENBQUMsU0FBUyxJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxFQUFFO2dCQUMxQyxJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUM7YUFDNUM7U0FDRjtJQUNILENBQUM7SUFFTSxlQUFlLENBQUMsa0JBQWtCO1FBQ3ZDLElBQUksQ0FBQyxhQUFhLENBQUMsZUFBZSxDQUFDLGlCQUFpQixFQUFFLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxrQkFBa0IsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLENBQUM7UUFDdEgsSUFBSSxDQUFDLGFBQWEsQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLGlCQUFpQixFQUFFLENBQUMsQ0FBQztJQUM1RCxDQUFDO0lBRU0saUJBQWlCO1FBQ3RCLE1BQU0saUJBQWlCLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxhQUFhLENBQUMsQ0FBQyxlQUFlLENBQUMsQ0FBQyxDQUFDO1FBQ3ZFLElBQUksaUJBQWlCLEVBQUU7WUFDckIsT0FBTyxpQkFBaUIsQ0FBQyxRQUFRLEVBQUUsQ0FBQztTQUNyQztJQUNILENBQUM7SUFFTSxXQUFXO1FBQ2hCLElBQUksSUFBSSxDQUFDLG9CQUFvQixFQUFFO1lBQzdCLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxXQUFXLEVBQUUsQ0FBQztTQUN6QztJQUNILENBQUM7O29HQW5EVSwwQkFBMEI7K0RBQTFCLDBCQUEwQjtRQ2R2Qyx1RUFHSTs7UUFIQSwwQ0FBcUI7O3VGRGNaLDBCQUEwQjtjQUp0QyxTQUFTO2VBQUM7Z0JBQ1QsUUFBUSxFQUFFLHlCQUF5QjtnQkFDbkMsV0FBVyxFQUFFLDRCQUE0QjthQUMxQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25EZXN0cm95IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBBY3RpdmF0ZWRSb3V0ZSwgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7IFN1YnNjcmlwdGlvbiB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgRG9jdW1lbnRNYW5hZ2VtZW50U2VydmljZSB9IGZyb20gJy4uLy4uLy4uL3NlcnZpY2VzL2RvY3VtZW50LW1hbmFnZW1lbnQnO1xuaW1wb3J0IHsgV2luZG93U2VydmljZSB9IGZyb20gJy4uLy4uLy4uL3NlcnZpY2VzL3dpbmRvdyc7XG5pbXBvcnQgeyBDYXNlc1NlcnZpY2UgfSBmcm9tICcuLi8uLi9jYXNlLWVkaXRvci9zZXJ2aWNlcy9jYXNlcy5zZXJ2aWNlJztcbmltcG9ydCB7IEFic3RyYWN0RmllbGRSZWFkQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFzZS1maWVsZC9hYnN0cmFjdC1maWVsZC1yZWFkLmNvbXBvbmVudCc7XG5cbmNvbnN0IE1FRElBX1ZJRVdFUl9JTkZPID0gJ21lZGlhLXZpZXdlci1pbmZvJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnY2NkLXJlYWQtZG9jdW1lbnQtZmllbGQnLFxuICB0ZW1wbGF0ZVVybDogJy4vcmVhZC1kb2N1bWVudC1maWVsZC5odG1sJ1xufSlcbmV4cG9ydCBjbGFzcyBSZWFkRG9jdW1lbnRGaWVsZENvbXBvbmVudCBleHRlbmRzIEFic3RyYWN0RmllbGRSZWFkQ29tcG9uZW50IGltcGxlbWVudHMgT25EZXN0cm95IHtcblxuICBwdWJsaWMgY2FzZVZpZXdTdWJzY3JpcHRpb246IFN1YnNjcmlwdGlvbjtcblxuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIHJlYWRvbmx5IHdpbmRvd1NlcnZpY2U6IFdpbmRvd1NlcnZpY2UsXG4gICAgcHJpdmF0ZSByZWFkb25seSBkb2N1bWVudE1hbmFnZW1lbnQ6IERvY3VtZW50TWFuYWdlbWVudFNlcnZpY2UsXG4gICAgcHJpdmF0ZSByZWFkb25seSByb3V0ZXI6IFJvdXRlcixcbiAgICBwcml2YXRlIHJlYWRvbmx5IHJvdXRlOiBBY3RpdmF0ZWRSb3V0ZSxcbiAgICBwcml2YXRlIHJlYWRvbmx5IGNhc2VzU2VydmljZTogQ2FzZXNTZXJ2aWNlXG4gICkge1xuICAgIHN1cGVyKCk7XG4gIH1cblxuICBwdWJsaWMgc2hvd01lZGlhVmlld2VyKCk6IHZvaWQge1xuICAgIGNvbnN0IGNhc2VJZCA9IHRoaXMucm91dGUuc25hcHNob3QucGFyYW1zWydjaWQnXTtcbiAgICB0aGlzLndpbmRvd1NlcnZpY2UucmVtb3ZlTG9jYWxTdG9yYWdlKE1FRElBX1ZJRVdFUl9JTkZPKTtcbiAgICBpZiAoY2FzZUlkKSB7XG4gICAgICB0aGlzLmNhc2VWaWV3U3Vic2NyaXB0aW9uID0gdGhpcy5jYXNlc1NlcnZpY2UuZ2V0Q2FzZVZpZXdWMihjYXNlSWQpLnN1YnNjcmliZShjYXNlVmlldyA9PiB7XG4gICAgICAgIGlmICh0aGlzLmNhc2VGaWVsZCAmJiB0aGlzLmNhc2VGaWVsZC52YWx1ZSkge1xuICAgICAgICAgIGNvbnN0IG1lcmdlZEluZm8gPSB7XG4gICAgICAgICAgICAuLi50aGlzLmNhc2VGaWVsZC52YWx1ZSxcbiAgICAgICAgICAgIGlkOiBjYXNlVmlldy5jYXNlX2lkLFxuICAgICAgICAgICAganVyaXNkaWN0aW9uOiBjYXNlVmlldy5jYXNlX3R5cGUuanVyaXNkaWN0aW9uLmlkXG4gICAgICAgICAgfTtcbiAgICAgICAgICB0aGlzLm9wZW5NZWRpYVZpZXdlcihtZXJnZWRJbmZvKTtcbiAgICAgICAgfVxuICAgICAgfSk7XG4gICAgfSBlbHNlIHtcbiAgICAgIGlmICh0aGlzLmNhc2VGaWVsZCAmJiB0aGlzLmNhc2VGaWVsZC52YWx1ZSkge1xuICAgICAgICB0aGlzLm9wZW5NZWRpYVZpZXdlcih0aGlzLmNhc2VGaWVsZC52YWx1ZSk7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgcHVibGljIG9wZW5NZWRpYVZpZXdlcihkb2N1bWVudEZpZWxkVmFsdWUpOiB2b2lkIHtcbiAgICB0aGlzLndpbmRvd1NlcnZpY2Uuc2V0TG9jYWxTdG9yYWdlKE1FRElBX1ZJRVdFUl9JTkZPLCB0aGlzLmRvY3VtZW50TWFuYWdlbWVudC5nZXRNZWRpYVZpZXdlckluZm8oZG9jdW1lbnRGaWVsZFZhbHVlKSk7XG4gICAgdGhpcy53aW5kb3dTZXJ2aWNlLm9wZW5Pbk5ld1RhYih0aGlzLmdldE1lZGlhVmlld2VyVXJsKCkpO1xuICB9XG5cbiAgcHVibGljIGdldE1lZGlhVmlld2VyVXJsKCk6IHN0cmluZyB7XG4gICAgY29uc3Qgcm91dGVyTWVkaWFWaWV3ZXIgPSB0aGlzLnJvdXRlci5jcmVhdGVVcmxUcmVlKFsnL21lZGlhLXZpZXdlciddKTtcbiAgICBpZiAocm91dGVyTWVkaWFWaWV3ZXIpIHtcbiAgICAgIHJldHVybiByb3V0ZXJNZWRpYVZpZXdlci50b1N0cmluZygpO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5jYXNlVmlld1N1YnNjcmlwdGlvbikge1xuICAgICAgdGhpcy5jYXNlVmlld1N1YnNjcmlwdGlvbi51bnN1YnNjcmliZSgpO1xuICAgIH1cbiAgfVxufVxuIiwiPGEgKm5nSWY9XCJjYXNlRmllbGQudmFsdWVcIiBocmVmPVwiamF2YXNjcmlwdDp2b2lkKDApXCJcbiAgIChjbGljayk9XCJzaG93TWVkaWFWaWV3ZXIoKVwiPlxuICB7eyBjYXNlRmllbGQudmFsdWUuZG9jdW1lbnRfZmlsZW5hbWUgfX1cbjwvYT5cbiJdfQ==
|