@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,20 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { RouterModule } from '@angular/router';
|
|
4
|
+
import { BodyComponent } from './body.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export class BodyModule {
|
|
7
|
+
}
|
|
8
|
+
BodyModule.ɵfac = function BodyModule_Factory(t) { return new (t || BodyModule)(); };
|
|
9
|
+
BodyModule.ɵmod = i0.ɵɵdefineNgModule({ type: BodyModule });
|
|
10
|
+
BodyModule.ɵinj = i0.ɵɵdefineInjector({ imports: [[CommonModule, RouterModule]] });
|
|
11
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(BodyModule, { declarations: [BodyComponent], imports: [CommonModule, RouterModule], exports: [BodyComponent] }); })();
|
|
12
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BodyModule, [{
|
|
13
|
+
type: NgModule,
|
|
14
|
+
args: [{
|
|
15
|
+
imports: [CommonModule, RouterModule],
|
|
16
|
+
declarations: [BodyComponent],
|
|
17
|
+
exports: [BodyComponent]
|
|
18
|
+
}]
|
|
19
|
+
}], null, null); })();
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYm9keS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvY29tcG9uZW50cy9ib2R5L2JvZHkubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7O0FBT2pELE1BQU0sT0FBTyxVQUFVOztvRUFBVixVQUFVOzhDQUFWLFVBQVU7a0RBSlYsQ0FBQyxZQUFZLEVBQUUsWUFBWSxDQUFDO3dGQUk1QixVQUFVLG1CQUhKLGFBQWEsYUFEbEIsWUFBWSxFQUFFLFlBQVksYUFFMUIsYUFBYTt1RkFFZCxVQUFVO2NBTHRCLFFBQVE7ZUFBQztnQkFDTixPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsWUFBWSxDQUFDO2dCQUNyQyxZQUFZLEVBQUUsQ0FBQyxhQUFhLENBQUM7Z0JBQzdCLE9BQU8sRUFBRSxDQUFDLGFBQWEsQ0FBQzthQUMzQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUm91dGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcblxuaW1wb3J0IHsgQm9keUNvbXBvbmVudCB9IGZyb20gJy4vYm9keS5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIFJvdXRlck1vZHVsZV0sXG4gICAgZGVjbGFyYXRpb25zOiBbQm9keUNvbXBvbmVudF0sXG4gICAgZXhwb3J0czogW0JvZHlDb21wb25lbnRdXG59KVxuZXhwb3J0IGNsYXNzIEJvZHlNb2R1bGUge31cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './body.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvY29tcG9uZW50cy9ib2R5L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsa0JBQWtCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2JvZHkuY29tcG9uZW50JztcbiJdfQ==
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
function FooterComponent_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
5
|
+
i0.ɵɵelementStart(0, "div", 3);
|
|
6
|
+
i0.ɵɵelementStart(1, "div", 4);
|
|
7
|
+
i0.ɵɵprojection(2);
|
|
8
|
+
i0.ɵɵelementStart(3, "div", 5);
|
|
9
|
+
i0.ɵɵelementStart(4, "p", 6);
|
|
10
|
+
i0.ɵɵelementStart(5, "a", 7);
|
|
11
|
+
i0.ɵɵtext(6, "Open Government Licence");
|
|
12
|
+
i0.ɵɵelementEnd();
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
i0.ɵɵelementStart(7, "p");
|
|
15
|
+
i0.ɵɵtext(8, "All content is available under the ");
|
|
16
|
+
i0.ɵɵelementStart(9, "a", 7);
|
|
17
|
+
i0.ɵɵtext(10, "Open Government Licence v3.0");
|
|
18
|
+
i0.ɵɵelementEnd();
|
|
19
|
+
i0.ɵɵtext(11, ", except where otherwise stated");
|
|
20
|
+
i0.ɵɵelementEnd();
|
|
21
|
+
i0.ɵɵelementEnd();
|
|
22
|
+
i0.ɵɵelementEnd();
|
|
23
|
+
i0.ɵɵelementStart(12, "div", 8);
|
|
24
|
+
i0.ɵɵelementStart(13, "a", 9);
|
|
25
|
+
i0.ɵɵtext(14, "\u00A9 Crown copyright");
|
|
26
|
+
i0.ɵɵelementEnd();
|
|
27
|
+
i0.ɵɵelementEnd();
|
|
28
|
+
i0.ɵɵelementEnd();
|
|
29
|
+
} }
|
|
30
|
+
function FooterComponent_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
31
|
+
i0.ɵɵelementStart(0, "div", 3);
|
|
32
|
+
i0.ɵɵelementStart(1, "div", 10);
|
|
33
|
+
i0.ɵɵelementStart(2, "span", 11);
|
|
34
|
+
i0.ɵɵtext(3, "Help");
|
|
35
|
+
i0.ɵɵelementEnd();
|
|
36
|
+
i0.ɵɵelementEnd();
|
|
37
|
+
i0.ɵɵelementStart(4, "div", 12);
|
|
38
|
+
i0.ɵɵelementStart(5, "span", 11);
|
|
39
|
+
i0.ɵɵtext(6, "Email: ");
|
|
40
|
+
i0.ɵɵelementStart(7, "a", 13);
|
|
41
|
+
i0.ɵɵtext(8);
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
i0.ɵɵelementEnd();
|
|
44
|
+
i0.ɵɵelementEnd();
|
|
45
|
+
i0.ɵɵelementStart(9, "div", 14);
|
|
46
|
+
i0.ɵɵelementStart(10, "span", 11);
|
|
47
|
+
i0.ɵɵtext(11);
|
|
48
|
+
i0.ɵɵelementEnd();
|
|
49
|
+
i0.ɵɵelementEnd();
|
|
50
|
+
i0.ɵɵelementStart(12, "div", 15);
|
|
51
|
+
i0.ɵɵelementStart(13, "span", 11);
|
|
52
|
+
i0.ɵɵtext(14);
|
|
53
|
+
i0.ɵɵelementEnd();
|
|
54
|
+
i0.ɵɵelementEnd();
|
|
55
|
+
i0.ɵɵprojection(15, 1);
|
|
56
|
+
i0.ɵɵelementEnd();
|
|
57
|
+
} if (rf & 2) {
|
|
58
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
59
|
+
i0.ɵɵadvance(7);
|
|
60
|
+
i0.ɵɵpropertyInterpolate1("href", "mailto:", ctx_r1.email, "", i0.ɵɵsanitizeUrl);
|
|
61
|
+
i0.ɵɵadvance(1);
|
|
62
|
+
i0.ɵɵtextInterpolate(ctx_r1.email);
|
|
63
|
+
i0.ɵɵadvance(3);
|
|
64
|
+
i0.ɵɵtextInterpolate1("Phone: ", ctx_r1.phone, "");
|
|
65
|
+
i0.ɵɵadvance(3);
|
|
66
|
+
i0.ɵɵtextInterpolate(ctx_r1.workhours);
|
|
67
|
+
} }
|
|
68
|
+
const _c0 = [[["", "footerSolsNavLinks", ""]], [["", "footerCaseWorkerNavLinks", ""]]];
|
|
69
|
+
const _c1 = ["[footerSolsNavLinks]", "[footerCaseWorkerNavLinks]"];
|
|
70
|
+
export class FooterComponent {
|
|
71
|
+
}
|
|
72
|
+
FooterComponent.ɵfac = function FooterComponent_Factory(t) { return new (t || FooterComponent)(); };
|
|
73
|
+
FooterComponent.ɵcmp = i0.ɵɵdefineComponent({ type: FooterComponent, selectors: [["cut-footer-bar"]], inputs: { email: "email", isSolicitor: "isSolicitor", phone: "phone", workhours: "workhours" }, ngContentSelectors: _c1, decls: 4, vars: 4, consts: [["id", "footer", "role", "footer", 1, "group", "js-footer"], [1, "footer-wrapper"], ["class", "footer-meta", 4, "ngIf"], [1, "footer-meta"], [1, "footer-meta-inner"], [1, "open-government-licence"], [1, "logo"], ["href", "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", "rel", "license"], [1, "copyright"], ["href", "https://www.nationalarchives.gov.uk/information-management/re-using-public-sector-information/copyright-and-re-use/crown-copyright/"], [1, "title"], [1, "footer-text"], [1, "email"], [3, "href"], [1, "phone"], [1, "work-hours"]], template: function FooterComponent_Template(rf, ctx) { if (rf & 1) {
|
|
74
|
+
i0.ɵɵprojectionDef(_c0);
|
|
75
|
+
i0.ɵɵelementStart(0, "footer", 0);
|
|
76
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
77
|
+
i0.ɵɵtemplate(2, FooterComponent_div_2_Template, 15, 0, "div", 2);
|
|
78
|
+
i0.ɵɵtemplate(3, FooterComponent_div_3_Template, 16, 4, "div", 2);
|
|
79
|
+
i0.ɵɵelementEnd();
|
|
80
|
+
i0.ɵɵelementEnd();
|
|
81
|
+
} if (rf & 2) {
|
|
82
|
+
i0.ɵɵadvance(1);
|
|
83
|
+
i0.ɵɵclassProp("full-screen", !ctx.isSolicitor);
|
|
84
|
+
i0.ɵɵadvance(1);
|
|
85
|
+
i0.ɵɵproperty("ngIf", ctx.isSolicitor);
|
|
86
|
+
i0.ɵɵadvance(1);
|
|
87
|
+
i0.ɵɵproperty("ngIf", !ctx.isSolicitor);
|
|
88
|
+
} }, directives: [i1.NgIf], styles: [".footer-text[_ngcontent-%COMP%]{color:#231f20;margin-top:5px;font-size:16px;font-weight:400;font-style:normal;font-stretch:normal;letter-spacing:normal}#footer[_ngcontent-%COMP%] .full-screen[_ngcontent-%COMP%]{max-width:100%;padding-left:20px}"] });
|
|
89
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FooterComponent, [{
|
|
90
|
+
type: Component,
|
|
91
|
+
args: [{
|
|
92
|
+
selector: 'cut-footer-bar',
|
|
93
|
+
templateUrl: './footer.html',
|
|
94
|
+
styleUrls: ['./footer.scss']
|
|
95
|
+
}]
|
|
96
|
+
}], null, { email: [{
|
|
97
|
+
type: Input
|
|
98
|
+
}], isSolicitor: [{
|
|
99
|
+
type: Input
|
|
100
|
+
}], phone: [{
|
|
101
|
+
type: Input
|
|
102
|
+
}], workhours: [{
|
|
103
|
+
type: Input
|
|
104
|
+
}] }); })();
|
|
105
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vdGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NjZC1jYXNlLXVpLXRvb2xraXQvc3JjL2xpYi9jb21wb25lbnRzL2Zvb3Rlci9mb290ZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL2NvbXBvbmVudHMvZm9vdGVyL2Zvb3Rlci5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7O0lDSTdDLDhCQUE2QztJQUMzQyw4QkFBK0I7SUFDN0Isa0JBQXVEO0lBQ3ZELDhCQUFxQztJQUNuQyw0QkFBZ0I7SUFBQSw0QkFBbUc7SUFBQSx1Q0FBdUI7SUFBQSxpQkFBSTtJQUFBLGlCQUFJO0lBQ2xKLHlCQUFHO0lBQUEsbURBQW1DO0lBQUEsNEJBQW1HO0lBQUEsNkNBQTRCO0lBQUEsaUJBQUk7SUFBQSxnREFBK0I7SUFBQSxpQkFBSTtJQUM5TSxpQkFBTTtJQUNSLGlCQUFNO0lBRU4sK0JBQXVCO0lBQ3JCLDZCQUE4STtJQUFBLHVDQUFpQjtJQUFBLGlCQUFJO0lBQ3JLLGlCQUFNO0lBQ1IsaUJBQU07OztJQUdOLDhCQUE4QztJQUM1QywrQkFBbUI7SUFDakIsZ0NBQTBCO0lBQUEsb0JBQUk7SUFBQSxpQkFBTztJQUN2QyxpQkFBTTtJQUNOLCtCQUFtQjtJQUNqQixnQ0FBMEI7SUFBQSx1QkFBTztJQUFBLDZCQUEyQjtJQUFBLFlBQVM7SUFBQSxpQkFBSTtJQUFBLGlCQUFPO0lBQ2xGLGlCQUFNO0lBQ04sK0JBQW1CO0lBQ2pCLGlDQUEwQjtJQUFBLGFBQWdCO0lBQUEsaUJBQU87SUFDbkQsaUJBQU07SUFDTixnQ0FBd0I7SUFDdEIsaUNBQTBCO0lBQUEsYUFBYTtJQUFBLGlCQUFPO0lBQ2hELGlCQUFNO0lBQ04sc0JBQTZEO0lBQy9ELGlCQUFNOzs7SUFUa0MsZUFBdUI7SUFBdkIsZ0ZBQXVCO0lBQUMsZUFBUztJQUFULGtDQUFTO0lBRzNDLGVBQWdCO0lBQWhCLGtEQUFnQjtJQUdoQixlQUFhO0lBQWIsc0NBQWE7Ozs7QUR2Qi9DLE1BQU0sT0FBTyxlQUFlOzs4RUFBZixlQUFlO29EQUFmLGVBQWU7O1FDUDVCLGlDQUEwRDtRQUN4RCw4QkFBK0Q7UUFHN0QsaUVBWU07UUFHTixpRUFjTTtRQUVSLGlCQUFNO1FBQ1IsaUJBQVM7O1FBbkNGLGVBQWtDO1FBQWxDLCtDQUFrQztRQUcvQixlQUFpQjtRQUFqQixzQ0FBaUI7UUFlakIsZUFBa0I7UUFBbEIsdUNBQWtCOzt1RkRaZixlQUFlO2NBTDNCLFNBQVM7ZUFBQztnQkFDUCxRQUFRLEVBQUUsZ0JBQWdCO2dCQUMxQixXQUFXLEVBQUUsZUFBZTtnQkFDNUIsU0FBUyxFQUFFLENBQUMsZUFBZSxDQUFDO2FBQy9CO2dCQUlRLEtBQUs7a0JBRFgsS0FBSztZQUlDLFdBQVc7a0JBRGpCLEtBQUs7WUFJQyxLQUFLO2tCQURYLEtBQUs7WUFJQyxTQUFTO2tCQURmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnY3V0LWZvb3Rlci1iYXInLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9mb290ZXIuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vZm9vdGVyLnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBGb290ZXJDb21wb25lbnQge1xuXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBlbWFpbDogc3RyaW5nO1xuXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBpc1NvbGljaXRvcjogYm9vbGVhbjtcblxuICBASW5wdXQoKVxuICBwdWJsaWMgcGhvbmU6IHN0cmluZztcblxuICBASW5wdXQoKVxuICBwdWJsaWMgd29ya2hvdXJzOiBzdHJpbmc7XG5cbn1cbiIsIjxmb290ZXIgY2xhc3M9XCJncm91cCBqcy1mb290ZXJcIiBpZD1cImZvb3RlclwiIHJvbGU9XCJmb290ZXJcIj5cbiAgPGRpdiBbY2xhc3MuZnVsbC1zY3JlZW5dPVwiIWlzU29saWNpdG9yXCIgY2xhc3M9XCJmb290ZXItd3JhcHBlclwiPlxuXG4gICAgPCEtLSBDb25kaXRpb246IFNvbGljaXRvciAtLT5cbiAgICA8ZGl2ICpuZ0lmPVwiaXNTb2xpY2l0b3JcIiBjbGFzcz1cImZvb3Rlci1tZXRhXCI+XG4gICAgICA8ZGl2IGNsYXNzPVwiZm9vdGVyLW1ldGEtaW5uZXJcIj5cbiAgICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2Zvb3RlclNvbHNOYXZMaW5rc11cIj48L25nLWNvbnRlbnQ+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJvcGVuLWdvdmVybm1lbnQtbGljZW5jZVwiPlxuICAgICAgICAgIDxwIGNsYXNzPVwibG9nb1wiPjxhIGhyZWY9XCJodHRwczovL3d3dy5uYXRpb25hbGFyY2hpdmVzLmdvdi51ay9kb2Mvb3Blbi1nb3Zlcm5tZW50LWxpY2VuY2UvdmVyc2lvbi8zL1wiIHJlbD1cImxpY2Vuc2VcIj5PcGVuIEdvdmVybm1lbnQgTGljZW5jZTwvYT48L3A+XG4gICAgICAgICAgPHA+QWxsIGNvbnRlbnQgaXMgYXZhaWxhYmxlIHVuZGVyIHRoZSA8YSBocmVmPVwiaHR0cHM6Ly93d3cubmF0aW9uYWxhcmNoaXZlcy5nb3YudWsvZG9jL29wZW4tZ292ZXJubWVudC1saWNlbmNlL3ZlcnNpb24vMy9cIiByZWw9XCJsaWNlbnNlXCI+T3BlbiBHb3Zlcm5tZW50IExpY2VuY2UgdjMuMDwvYT4sIGV4Y2VwdCB3aGVyZSBvdGhlcndpc2Ugc3RhdGVkPC9wPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvZGl2PlxuXG4gICAgICA8ZGl2IGNsYXNzPVwiY29weXJpZ2h0XCI+XG4gICAgICAgIDxhIGhyZWY9XCJodHRwczovL3d3dy5uYXRpb25hbGFyY2hpdmVzLmdvdi51ay9pbmZvcm1hdGlvbi1tYW5hZ2VtZW50L3JlLXVzaW5nLXB1YmxpYy1zZWN0b3ItaW5mb3JtYXRpb24vY29weXJpZ2h0LWFuZC1yZS11c2UvY3Jvd24tY29weXJpZ2h0L1wiPsKpIENyb3duIGNvcHlyaWdodDwvYT5cbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuXG4gICAgPCEtLSBDb25kaXRpb246IENhc2UgV29ya2VyIC0tPlxuICAgIDxkaXYgKm5nSWY9XCIhaXNTb2xpY2l0b3JcIiBjbGFzcz1cImZvb3Rlci1tZXRhXCI+XG4gICAgICA8ZGl2IGNsYXNzPVwidGl0bGVcIj5cbiAgICAgICAgPHNwYW4gY2xhc3M9XCJmb290ZXItdGV4dFwiPkhlbHA8L3NwYW4+XG4gICAgICA8L2Rpdj5cbiAgICAgIDxkaXYgY2xhc3M9XCJlbWFpbFwiPlxuICAgICAgICA8c3BhbiBjbGFzcz1cImZvb3Rlci10ZXh0XCI+RW1haWw6IDxhIGhyZWY9XCJtYWlsdG86e3tlbWFpbH19XCI+e3tlbWFpbH19PC9hPjwvc3Bhbj5cbiAgICAgIDwvZGl2PlxuICAgICAgPGRpdiBjbGFzcz1cInBob25lXCI+XG4gICAgICAgIDxzcGFuIGNsYXNzPVwiZm9vdGVyLXRleHRcIj5QaG9uZToge3twaG9uZX19PC9zcGFuPlxuICAgICAgPC9kaXY+XG4gICAgICA8ZGl2IGNsYXNzPVwid29yay1ob3Vyc1wiPlxuICAgICAgICA8c3BhbiBjbGFzcz1cImZvb3Rlci10ZXh0XCI+e3t3b3JraG91cnN9fTwvc3Bhbj5cbiAgICAgIDwvZGl2PlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2Zvb3RlckNhc2VXb3JrZXJOYXZMaW5rc11cIj48L25nLWNvbnRlbnQ+XG4gICAgPC9kaXY+XG5cbiAgPC9kaXY+XG48L2Zvb3Rlcj5cbiJdfQ==
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { FooterComponent } from './footer.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class FootersModule {
|
|
6
|
+
}
|
|
7
|
+
FootersModule.ɵfac = function FootersModule_Factory(t) { return new (t || FootersModule)(); };
|
|
8
|
+
FootersModule.ɵmod = i0.ɵɵdefineNgModule({ type: FootersModule });
|
|
9
|
+
FootersModule.ɵinj = i0.ɵɵdefineInjector({ imports: [[CommonModule]] });
|
|
10
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(FootersModule, { declarations: [FooterComponent], imports: [CommonModule], exports: [FooterComponent] }); })();
|
|
11
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FootersModule, [{
|
|
12
|
+
type: NgModule,
|
|
13
|
+
args: [{
|
|
14
|
+
imports: [CommonModule],
|
|
15
|
+
declarations: [FooterComponent],
|
|
16
|
+
exports: [FooterComponent]
|
|
17
|
+
}]
|
|
18
|
+
}], null, null); })();
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vdGVycy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvY29tcG9uZW50cy9mb290ZXIvZm9vdGVycy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLG9CQUFvQixDQUFDOztBQU9yRCxNQUFNLE9BQU8sYUFBYTs7MEVBQWIsYUFBYTtpREFBYixhQUFhO3FEQUpiLENBQUMsWUFBWSxDQUFDO3dGQUlkLGFBQWEsbUJBSFAsZUFBZSxhQURwQixZQUFZLGFBRVosZUFBZTt1RkFFaEIsYUFBYTtjQUx6QixRQUFRO2VBQUM7Z0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO2dCQUN2QixZQUFZLEVBQUUsQ0FBQyxlQUFlLENBQUM7Z0JBQy9CLE9BQU8sRUFBRSxDQUFDLGVBQWUsQ0FBQzthQUM3QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBGb290ZXJDb21wb25lbnQgfSBmcm9tICcuL2Zvb3Rlci5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICAgIGRlY2xhcmF0aW9uczogW0Zvb3RlckNvbXBvbmVudF0sXG4gICAgZXhwb3J0czogW0Zvb3RlckNvbXBvbmVudF1cbn0pXG5leHBvcnQgY2xhc3MgRm9vdGVyc01vZHVsZSB7fVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './footer.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvY29tcG9uZW50cy9mb290ZXIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZm9vdGVyLmNvbXBvbmVudCc7XG4iXX0=
|
package/dist/ccd-case-ui-toolkit/esm2015/lib/components/form/date-input/date-input.component.js
ADDED
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
import { Component, forwardRef, Input } from '@angular/core';
|
|
2
|
+
import { FormControl, NG_VALIDATORS, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
const _c0 = function (a0) { return { "govuk-input--error": a0 }; };
|
|
6
|
+
function DateInputComponent_div_16_Template(rf, ctx) { if (rf & 1) {
|
|
7
|
+
const _r8 = i0.ɵɵgetCurrentView();
|
|
8
|
+
i0.ɵɵelementStart(0, "div", 12);
|
|
9
|
+
i0.ɵɵelementStart(1, "label", 2);
|
|
10
|
+
i0.ɵɵtext(2, "Hour");
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
i0.ɵɵelementStart(3, "input", 13, 14);
|
|
13
|
+
i0.ɵɵlistener("input", function DateInputComponent_div_16_Template_input_input_3_listener() { i0.ɵɵrestoreView(_r8); const _r6 = i0.ɵɵreference(4); const ctx_r7 = i0.ɵɵnextContext(); return ctx_r7.hourChange(_r6.value); })("keyup", function DateInputComponent_div_16_Template_input_keyup_3_listener() { i0.ɵɵrestoreView(_r8); const _r6 = i0.ɵɵreference(4); const ctx_r9 = i0.ɵɵnextContext(); return ctx_r9.hourChange(_r6.value); })("focus", function DateInputComponent_div_16_Template_input_focus_3_listener() { i0.ɵɵrestoreView(_r8); const ctx_r10 = i0.ɵɵnextContext(); return ctx_r10.inputFocus(); });
|
|
14
|
+
i0.ɵɵelementEnd();
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
} if (rf & 2) {
|
|
17
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
18
|
+
i0.ɵɵadvance(1);
|
|
19
|
+
i0.ɵɵproperty("for", ctx_r3.hourId());
|
|
20
|
+
i0.ɵɵadvance(2);
|
|
21
|
+
i0.ɵɵproperty("id", ctx_r3.hourId())("name", ctx_r3.hourId())("value", ctx_r3.displayHour)("ngClass", i0.ɵɵpureFunction1(5, _c0, ctx_r3.isInvalid));
|
|
22
|
+
} }
|
|
23
|
+
function DateInputComponent_div_17_Template(rf, ctx) { if (rf & 1) {
|
|
24
|
+
const _r13 = i0.ɵɵgetCurrentView();
|
|
25
|
+
i0.ɵɵelementStart(0, "div", 15);
|
|
26
|
+
i0.ɵɵelementStart(1, "label", 2);
|
|
27
|
+
i0.ɵɵtext(2, "Minute");
|
|
28
|
+
i0.ɵɵelementEnd();
|
|
29
|
+
i0.ɵɵelementStart(3, "input", 13, 16);
|
|
30
|
+
i0.ɵɵlistener("input", function DateInputComponent_div_17_Template_input_input_3_listener() { i0.ɵɵrestoreView(_r13); const _r11 = i0.ɵɵreference(4); const ctx_r12 = i0.ɵɵnextContext(); return ctx_r12.minuteChange(_r11.value); })("keyup", function DateInputComponent_div_17_Template_input_keyup_3_listener() { i0.ɵɵrestoreView(_r13); const _r11 = i0.ɵɵreference(4); const ctx_r14 = i0.ɵɵnextContext(); return ctx_r14.minuteChange(_r11.value); })("focus", function DateInputComponent_div_17_Template_input_focus_3_listener() { i0.ɵɵrestoreView(_r13); const ctx_r15 = i0.ɵɵnextContext(); return ctx_r15.inputFocus(); });
|
|
31
|
+
i0.ɵɵelementEnd();
|
|
32
|
+
i0.ɵɵelementEnd();
|
|
33
|
+
} if (rf & 2) {
|
|
34
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
35
|
+
i0.ɵɵadvance(1);
|
|
36
|
+
i0.ɵɵproperty("for", ctx_r4.minuteId());
|
|
37
|
+
i0.ɵɵadvance(2);
|
|
38
|
+
i0.ɵɵproperty("id", ctx_r4.minuteId())("name", ctx_r4.minuteId())("value", ctx_r4.displayMinute)("ngClass", i0.ɵɵpureFunction1(5, _c0, ctx_r4.isInvalid));
|
|
39
|
+
} }
|
|
40
|
+
function DateInputComponent_div_18_Template(rf, ctx) { if (rf & 1) {
|
|
41
|
+
const _r18 = i0.ɵɵgetCurrentView();
|
|
42
|
+
i0.ɵɵelementStart(0, "div", 17);
|
|
43
|
+
i0.ɵɵelementStart(1, "label", 2);
|
|
44
|
+
i0.ɵɵtext(2, "Second");
|
|
45
|
+
i0.ɵɵelementEnd();
|
|
46
|
+
i0.ɵɵelementStart(3, "input", 13, 18);
|
|
47
|
+
i0.ɵɵlistener("input", function DateInputComponent_div_18_Template_input_input_3_listener() { i0.ɵɵrestoreView(_r18); const _r16 = i0.ɵɵreference(4); const ctx_r17 = i0.ɵɵnextContext(); return ctx_r17.secondChange(_r16.value); })("keyup", function DateInputComponent_div_18_Template_input_keyup_3_listener() { i0.ɵɵrestoreView(_r18); const _r16 = i0.ɵɵreference(4); const ctx_r19 = i0.ɵɵnextContext(); return ctx_r19.secondChange(_r16.value); })("focus", function DateInputComponent_div_18_Template_input_focus_3_listener() { i0.ɵɵrestoreView(_r18); const ctx_r20 = i0.ɵɵnextContext(); return ctx_r20.inputFocus(); });
|
|
48
|
+
i0.ɵɵelementEnd();
|
|
49
|
+
i0.ɵɵelementEnd();
|
|
50
|
+
} if (rf & 2) {
|
|
51
|
+
const ctx_r5 = i0.ɵɵnextContext();
|
|
52
|
+
i0.ɵɵadvance(1);
|
|
53
|
+
i0.ɵɵproperty("for", ctx_r5.secondId());
|
|
54
|
+
i0.ɵɵadvance(2);
|
|
55
|
+
i0.ɵɵproperty("id", ctx_r5.secondId())("name", ctx_r5.secondId())("value", ctx_r5.displaySecond)("ngClass", i0.ɵɵpureFunction1(5, _c0, ctx_r5.isInvalid));
|
|
56
|
+
} }
|
|
57
|
+
export class DateInputComponent {
|
|
58
|
+
constructor() {
|
|
59
|
+
this.isTouched = false;
|
|
60
|
+
this.displayDay = null;
|
|
61
|
+
this.displayMonth = null;
|
|
62
|
+
this.displayYear = null;
|
|
63
|
+
this.displayHour = null;
|
|
64
|
+
this.displayMinute = null;
|
|
65
|
+
this.displaySecond = null;
|
|
66
|
+
// Works with
|
|
67
|
+
// 2018-04-09T08:02:27.542
|
|
68
|
+
// 2018-04-09T08:02:27.542Z
|
|
69
|
+
// 2018-04-09T08:02:27.542+01:00
|
|
70
|
+
this.DATE_FORMAT = /^(19|20)\d{2}-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?|Z)?$/;
|
|
71
|
+
this.rawValue = '';
|
|
72
|
+
}
|
|
73
|
+
ngOnInit() {
|
|
74
|
+
if (this.mandatory && this.isDateTime) {
|
|
75
|
+
this.displayHour = '00';
|
|
76
|
+
this.displayMinute = '00';
|
|
77
|
+
this.displaySecond = '00';
|
|
78
|
+
this.hour = '00';
|
|
79
|
+
this.minute = '00';
|
|
80
|
+
this.second = '00';
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
writeValue(obj) {
|
|
84
|
+
if (obj) {
|
|
85
|
+
this.rawValue = this.removeMilliseconds(obj);
|
|
86
|
+
// needs to handle also partial dates, e.g. -05-2016 (missing day)
|
|
87
|
+
const [datePart, timePart] = this.rawValue.split('T');
|
|
88
|
+
const dateValues = datePart.split('-');
|
|
89
|
+
this.year = this.displayYear = dateValues[0] || '';
|
|
90
|
+
this.month = this.displayMonth = dateValues[1] || '';
|
|
91
|
+
this.day = this.displayDay = dateValues[2] || '';
|
|
92
|
+
if (timePart) {
|
|
93
|
+
const timeParts = timePart.split(':');
|
|
94
|
+
this.hour = this.displayHour = timeParts[0] || '';
|
|
95
|
+
this.minute = this.displayMinute = timeParts[1] || '';
|
|
96
|
+
this.second = this.displaySecond = timeParts[2] || '';
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
validate(control) {
|
|
101
|
+
if (this.mandatory && !this.viewValue()) {
|
|
102
|
+
return {
|
|
103
|
+
required: 'This field is required'
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
if (control.value && !this.isDateFormat(this.getValueForValidation(control))) {
|
|
107
|
+
return {
|
|
108
|
+
pattern: 'Date is not valid'
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
return undefined;
|
|
112
|
+
}
|
|
113
|
+
registerOnChange(fn) {
|
|
114
|
+
this.propagateChange = fn;
|
|
115
|
+
}
|
|
116
|
+
registerOnTouched(fn) {
|
|
117
|
+
// Do nothing.
|
|
118
|
+
}
|
|
119
|
+
ngOnDestroy() {
|
|
120
|
+
this.validate = (control) => {
|
|
121
|
+
return undefined;
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
dayChange(value) {
|
|
125
|
+
// get value from input
|
|
126
|
+
this.day = value;
|
|
127
|
+
this.rawValue = this.viewValue();
|
|
128
|
+
// update the form
|
|
129
|
+
this.propagateChange(this.rawValue);
|
|
130
|
+
}
|
|
131
|
+
monthChange(value) {
|
|
132
|
+
// get value from input
|
|
133
|
+
this.month = value;
|
|
134
|
+
this.rawValue = this.viewValue();
|
|
135
|
+
// update the form
|
|
136
|
+
this.propagateChange(this.rawValue);
|
|
137
|
+
}
|
|
138
|
+
yearChange(value) {
|
|
139
|
+
// get value from input
|
|
140
|
+
this.year = value;
|
|
141
|
+
this.rawValue = this.viewValue();
|
|
142
|
+
// update the form
|
|
143
|
+
this.propagateChange(this.rawValue);
|
|
144
|
+
}
|
|
145
|
+
hourChange(value) {
|
|
146
|
+
// get value from input
|
|
147
|
+
this.hour = value;
|
|
148
|
+
this.rawValue = this.viewValue();
|
|
149
|
+
// update the form
|
|
150
|
+
this.propagateChange(this.rawValue);
|
|
151
|
+
}
|
|
152
|
+
minuteChange(value) {
|
|
153
|
+
// get value from input
|
|
154
|
+
this.minute = value;
|
|
155
|
+
this.rawValue = this.viewValue();
|
|
156
|
+
// update the form
|
|
157
|
+
this.propagateChange(this.rawValue);
|
|
158
|
+
}
|
|
159
|
+
secondChange(value) {
|
|
160
|
+
// get value from input
|
|
161
|
+
this.second = value;
|
|
162
|
+
this.rawValue = this.viewValue();
|
|
163
|
+
// update the form
|
|
164
|
+
this.propagateChange(this.rawValue);
|
|
165
|
+
}
|
|
166
|
+
inputFocus() {
|
|
167
|
+
this.isTouched = false;
|
|
168
|
+
this.touch();
|
|
169
|
+
}
|
|
170
|
+
touch() {
|
|
171
|
+
if (this.isTouched) {
|
|
172
|
+
this.formControl.markAsTouched();
|
|
173
|
+
this.propagateChange(this.rawValue);
|
|
174
|
+
}
|
|
175
|
+
else {
|
|
176
|
+
this.formControl.markAsUntouched();
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
dayId() {
|
|
180
|
+
return this.id + '-day';
|
|
181
|
+
}
|
|
182
|
+
monthId() {
|
|
183
|
+
return this.id + '-month';
|
|
184
|
+
}
|
|
185
|
+
yearId() {
|
|
186
|
+
return this.id + '-year';
|
|
187
|
+
}
|
|
188
|
+
hourId() {
|
|
189
|
+
return this.id + '-hour';
|
|
190
|
+
}
|
|
191
|
+
minuteId() {
|
|
192
|
+
return this.id + '-minute';
|
|
193
|
+
}
|
|
194
|
+
secondId() {
|
|
195
|
+
return this.id + '-second';
|
|
196
|
+
}
|
|
197
|
+
viewValue() {
|
|
198
|
+
if (this.day || this.month || this.year || this.hour || this.minute || this.second) {
|
|
199
|
+
const date = [
|
|
200
|
+
this.year ? this.year : '',
|
|
201
|
+
this.month ? this.pad(this.month) : '',
|
|
202
|
+
this.day ? this.pad(this.day) : ''
|
|
203
|
+
].join('-');
|
|
204
|
+
if (this.isDateTime) {
|
|
205
|
+
const time = [
|
|
206
|
+
this.hour ? this.pad(this.hour) : '',
|
|
207
|
+
this.minute ? this.pad(this.minute) : '',
|
|
208
|
+
this.second ? this.pad(this.second) : ''
|
|
209
|
+
].join(':');
|
|
210
|
+
return date + 'T' + time + '.000';
|
|
211
|
+
}
|
|
212
|
+
else {
|
|
213
|
+
return date;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
return null;
|
|
217
|
+
}
|
|
218
|
+
isDateFormat(val) {
|
|
219
|
+
return this.DATE_FORMAT.test(val);
|
|
220
|
+
}
|
|
221
|
+
pad(num, padNum = 2) {
|
|
222
|
+
const val = num !== undefined ? num.toString() : '';
|
|
223
|
+
return val.length >= padNum ? val : new Array(padNum - val.length + 1).join('0') + val;
|
|
224
|
+
}
|
|
225
|
+
getValueForValidation(control) {
|
|
226
|
+
if (this.isDateTime) {
|
|
227
|
+
return control.value;
|
|
228
|
+
}
|
|
229
|
+
else {
|
|
230
|
+
return control.value.replace(/Z.*/, 'T00:00:00Z');
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
removeMilliseconds(dateTime) {
|
|
234
|
+
return dateTime.replace(/\..*/, '');
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
DateInputComponent.ɵfac = function DateInputComponent_Factory(t) { return new (t || DateInputComponent)(); };
|
|
238
|
+
DateInputComponent.ɵcmp = i0.ɵɵdefineComponent({ type: DateInputComponent, selectors: [["cut-date-input"]], inputs: { id: "id", mandatory: "mandatory", isDateTime: "isDateTime", formControl: "formControl", isInvalid: "isInvalid" }, features: [i0.ɵɵProvidersFeature([
|
|
239
|
+
{
|
|
240
|
+
provide: NG_VALUE_ACCESSOR,
|
|
241
|
+
useExisting: forwardRef(() => DateInputComponent),
|
|
242
|
+
multi: true
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
provide: NG_VALIDATORS,
|
|
246
|
+
useExisting: forwardRef(() => DateInputComponent),
|
|
247
|
+
multi: true
|
|
248
|
+
}
|
|
249
|
+
])], decls: 19, vars: 24, consts: [[1, "form-date"], [1, "form-group", "form-group-day"], [1, "form-label", 3, "for"], ["type", "text", "pattern", "[0-9]*", "inputmode", "numeric", 1, "form-control", 3, "id", "name", "value", "ngClass", "change", "keyup", "focus"], ["dayInput", ""], [1, "form-group", "form-group-month"], ["monthInput", ""], [1, "form-group", "form-group-year"], ["yearInput", ""], ["class", "form-group form-group-hour", 4, "ngIf"], ["class", "form-group form-group-minute", 4, "ngIf"], ["class", "form-group form-group-second", 4, "ngIf"], [1, "form-group", "form-group-hour"], ["type", "number", 1, "form-control", 3, "id", "name", "value", "ngClass", "input", "keyup", "focus"], ["hourInput", ""], [1, "form-group", "form-group-minute"], ["minuteInput", ""], [1, "form-group", "form-group-second"], ["secondInput", ""]], template: function DateInputComponent_Template(rf, ctx) { if (rf & 1) {
|
|
250
|
+
const _r21 = i0.ɵɵgetCurrentView();
|
|
251
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
252
|
+
i0.ɵɵelementStart(1, "div", 1);
|
|
253
|
+
i0.ɵɵelementStart(2, "label", 2);
|
|
254
|
+
i0.ɵɵtext(3, "Day");
|
|
255
|
+
i0.ɵɵelementEnd();
|
|
256
|
+
i0.ɵɵelementStart(4, "input", 3, 4);
|
|
257
|
+
i0.ɵɵlistener("change", function DateInputComponent_Template_input_change_4_listener() { i0.ɵɵrestoreView(_r21); const _r0 = i0.ɵɵreference(5); return ctx.dayChange(_r0.value); })("keyup", function DateInputComponent_Template_input_keyup_4_listener() { i0.ɵɵrestoreView(_r21); const _r0 = i0.ɵɵreference(5); return ctx.dayChange(_r0.value); })("focus", function DateInputComponent_Template_input_focus_4_listener() { return ctx.inputFocus(); });
|
|
258
|
+
i0.ɵɵelementEnd();
|
|
259
|
+
i0.ɵɵelementEnd();
|
|
260
|
+
i0.ɵɵelementStart(6, "div", 5);
|
|
261
|
+
i0.ɵɵelementStart(7, "label", 2);
|
|
262
|
+
i0.ɵɵtext(8, "Month");
|
|
263
|
+
i0.ɵɵelementEnd();
|
|
264
|
+
i0.ɵɵelementStart(9, "input", 3, 6);
|
|
265
|
+
i0.ɵɵlistener("change", function DateInputComponent_Template_input_change_9_listener() { i0.ɵɵrestoreView(_r21); const _r1 = i0.ɵɵreference(10); return ctx.monthChange(_r1.value); })("keyup", function DateInputComponent_Template_input_keyup_9_listener() { i0.ɵɵrestoreView(_r21); const _r1 = i0.ɵɵreference(10); return ctx.monthChange(_r1.value); })("focus", function DateInputComponent_Template_input_focus_9_listener() { return ctx.inputFocus(); });
|
|
266
|
+
i0.ɵɵelementEnd();
|
|
267
|
+
i0.ɵɵelementEnd();
|
|
268
|
+
i0.ɵɵelementStart(11, "div", 7);
|
|
269
|
+
i0.ɵɵelementStart(12, "label", 2);
|
|
270
|
+
i0.ɵɵtext(13, "Year");
|
|
271
|
+
i0.ɵɵelementEnd();
|
|
272
|
+
i0.ɵɵelementStart(14, "input", 3, 8);
|
|
273
|
+
i0.ɵɵlistener("change", function DateInputComponent_Template_input_change_14_listener() { i0.ɵɵrestoreView(_r21); const _r2 = i0.ɵɵreference(15); return ctx.yearChange(_r2.value); })("keyup", function DateInputComponent_Template_input_keyup_14_listener() { i0.ɵɵrestoreView(_r21); const _r2 = i0.ɵɵreference(15); return ctx.yearChange(_r2.value); })("focus", function DateInputComponent_Template_input_focus_14_listener() { return ctx.inputFocus(); });
|
|
274
|
+
i0.ɵɵelementEnd();
|
|
275
|
+
i0.ɵɵelementEnd();
|
|
276
|
+
i0.ɵɵtemplate(16, DateInputComponent_div_16_Template, 5, 7, "div", 9);
|
|
277
|
+
i0.ɵɵtemplate(17, DateInputComponent_div_17_Template, 5, 7, "div", 10);
|
|
278
|
+
i0.ɵɵtemplate(18, DateInputComponent_div_18_Template, 5, 7, "div", 11);
|
|
279
|
+
i0.ɵɵelementEnd();
|
|
280
|
+
} if (rf & 2) {
|
|
281
|
+
i0.ɵɵadvance(2);
|
|
282
|
+
i0.ɵɵproperty("for", ctx.dayId());
|
|
283
|
+
i0.ɵɵadvance(2);
|
|
284
|
+
i0.ɵɵproperty("id", ctx.dayId())("name", ctx.dayId())("value", ctx.displayDay)("ngClass", i0.ɵɵpureFunction1(18, _c0, ctx.isInvalid));
|
|
285
|
+
i0.ɵɵadvance(3);
|
|
286
|
+
i0.ɵɵproperty("for", ctx.monthId());
|
|
287
|
+
i0.ɵɵadvance(2);
|
|
288
|
+
i0.ɵɵproperty("id", ctx.monthId())("name", ctx.monthId())("value", ctx.displayMonth)("ngClass", i0.ɵɵpureFunction1(20, _c0, ctx.isInvalid));
|
|
289
|
+
i0.ɵɵadvance(3);
|
|
290
|
+
i0.ɵɵproperty("for", ctx.yearId());
|
|
291
|
+
i0.ɵɵadvance(2);
|
|
292
|
+
i0.ɵɵproperty("id", ctx.yearId())("name", ctx.yearId())("value", ctx.displayYear)("ngClass", i0.ɵɵpureFunction1(22, _c0, ctx.isInvalid));
|
|
293
|
+
i0.ɵɵadvance(2);
|
|
294
|
+
i0.ɵɵproperty("ngIf", ctx.isDateTime);
|
|
295
|
+
i0.ɵɵadvance(1);
|
|
296
|
+
i0.ɵɵproperty("ngIf", ctx.isDateTime);
|
|
297
|
+
i0.ɵɵadvance(1);
|
|
298
|
+
i0.ɵɵproperty("ngIf", ctx.isDateTime);
|
|
299
|
+
} }, directives: [i1.NgClass, i1.NgIf], encapsulation: 2 });
|
|
300
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DateInputComponent, [{
|
|
301
|
+
type: Component,
|
|
302
|
+
args: [{
|
|
303
|
+
selector: 'cut-date-input',
|
|
304
|
+
templateUrl: './date-input.html',
|
|
305
|
+
providers: [
|
|
306
|
+
{
|
|
307
|
+
provide: NG_VALUE_ACCESSOR,
|
|
308
|
+
useExisting: forwardRef(() => DateInputComponent),
|
|
309
|
+
multi: true
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
provide: NG_VALIDATORS,
|
|
313
|
+
useExisting: forwardRef(() => DateInputComponent),
|
|
314
|
+
multi: true
|
|
315
|
+
}
|
|
316
|
+
],
|
|
317
|
+
}]
|
|
318
|
+
}], null, { id: [{
|
|
319
|
+
type: Input
|
|
320
|
+
}], mandatory: [{
|
|
321
|
+
type: Input
|
|
322
|
+
}], isDateTime: [{
|
|
323
|
+
type: Input
|
|
324
|
+
}], formControl: [{
|
|
325
|
+
type: Input
|
|
326
|
+
}], isInvalid: [{
|
|
327
|
+
type: Input
|
|
328
|
+
}] }); })();
|
|
329
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1pbnB1dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvY29tcG9uZW50cy9mb3JtL2RhdGUtaW5wdXQvZGF0ZS1pbnB1dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvY29tcG9uZW50cy9mb3JtL2RhdGUtaW5wdXQvZGF0ZS1pbnB1dC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLEtBQUssRUFBcUIsTUFBTSxlQUFlLENBQUM7QUFDaEYsT0FBTyxFQUF5QyxXQUFXLEVBQUUsYUFBYSxFQUFFLGlCQUFpQixFQUErQixNQUFNLGdCQUFnQixDQUFDOzs7Ozs7SUNpRGpKLCtCQUEyRDtJQUN6RCxnQ0FBMkM7SUFBQSxvQkFBSTtJQUFBLGlCQUFRO0lBQ3ZELHFDQVNxRDtJQUg5Qyw4TkFBcUMsaU5BQUEsMktBQUE7SUFONUMsaUJBU3FEO0lBQ3ZELGlCQUFNOzs7SUFYc0IsZUFBZ0I7SUFBaEIscUNBQWdCO0lBR25DLGVBQWU7SUFBZixvQ0FBZSx5QkFBQSw2QkFBQSx5REFBQTs7OztJQVV4QiwrQkFBNkQ7SUFDM0QsZ0NBQTZDO0lBQUEsc0JBQU07SUFBQSxpQkFBUTtJQUMzRCxxQ0FTcUQ7SUFIOUMscU9BQXlDLHdOQUFBLDRLQUFBO0lBTmhELGlCQVNxRDtJQUN2RCxpQkFBTTs7O0lBWHNCLGVBQWtCO0lBQWxCLHVDQUFrQjtJQUdyQyxlQUFpQjtJQUFqQixzQ0FBaUIsMkJBQUEsK0JBQUEseURBQUE7Ozs7SUFVMUIsK0JBQTZEO0lBQzNELGdDQUE2QztJQUFBLHNCQUFNO0lBQUEsaUJBQVE7SUFDM0QscUNBU3FEO0lBSDlDLHFPQUF5Qyx3TkFBQSw0S0FBQTtJQU5o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d0IsZUFBZTtRQUFmLGlDQUFlO1FBR2xDLGVBQWM7UUFBZCxnQ0FBYyxxQkFBQSx5QkFBQSx1REFBQTtRQWFLLGVBQWlCO1FBQWpCLG1DQUFpQjtRQUdwQyxlQUFnQjtRQUFoQixrQ0FBZ0IsdUJBQUEsMkJBQUEsdURBQUE7UUFhRyxlQUFnQjtRQUFoQixrQ0FBZ0I7UUFHbkMsZUFBZTtRQUFmLGlDQUFlLHNCQUFBLDBCQUFBLHVEQUFBO1FBWWlCLGVBQWdCO1FBQWhCLHFDQUFnQjtRQWNkLGVBQWdCO1FBQWhCLHFDQUFnQjtRQWNoQixlQUFnQjtRQUFoQixxQ0FBZ0I7O3VGRDNEaEQsa0JBQWtCO2NBaEI5QixTQUFTO2VBQUM7Z0JBQ1QsUUFBUSxFQUFFLGdCQUFnQjtnQkFDMUIsV0FBVyxFQUFFLG1CQUFtQjtnQkFDaEMsU0FBUyxFQUFFO29CQUNUO3dCQUNFLE9BQU8sRUFBRSxpQkFBaUI7d0JBQzFCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBRyxFQUFFLG1CQUFtQixDQUFDO3dCQUNqRCxLQUFLLEVBQUUsSUFBSTtxQkFDWjtvQkFDRDt3QkFDRSxPQUFPLEVBQUUsYUFBYTt3QkFDdEIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsbUJBQW1CLENBQUM7d0JBQ2pELEtBQUssRUFBRSxJQUFJO3FCQUNaO2lCQUNGO2FBQ0Y7Z0JBR1EsRUFBRTtrQkFEUixLQUFLO1lBSUMsU0FBUztrQkFEZixLQUFLO1lBSUMsVUFBVTtrQkFEaEIsS0FBSztZQUlDLFdBQVc7a0JBRGpCLEtBQUs7WUFJQyxTQUFTO2tCQURmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIGZvcndhcmRSZWYsIElucHV0LCBPbkRlc3Ryb3ksIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWJzdHJhY3RDb250cm9sLCBDb250cm9sVmFsdWVBY2Nlc3NvciwgRm9ybUNvbnRyb2wsIE5HX1ZBTElEQVRPUlMsIE5HX1ZBTFVFX0FDQ0VTU09SLCBWYWxpZGF0aW9uRXJyb3JzLCBWYWxpZGF0b3IgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2N1dC1kYXRlLWlucHV0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2RhdGUtaW5wdXQuaHRtbCcsXG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gRGF0ZUlucHV0Q29tcG9uZW50KSxcbiAgICAgIG11bHRpOiB0cnVlXG4gICAgfSxcbiAgICB7XG4gICAgICBwcm92aWRlOiBOR19WQUxJREFUT1JTLFxuICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gRGF0ZUlucHV0Q29tcG9uZW50KSxcbiAgICAgIG11bHRpOiB0cnVlXG4gICAgfVxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBEYXRlSW5wdXRDb21wb25lbnQgaW1wbGVtZW50cyBDb250cm9sVmFsdWVBY2Nlc3NvciwgVmFsaWRhdG9yLCBPbkluaXQsIE9uRGVzdHJveSB7XG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBpZDogc3RyaW5nO1xuXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBtYW5kYXRvcnk6IGJvb2xlYW47XG5cbiAgQElucHV0KClcbiAgcHVibGljIGlzRGF0ZVRpbWU6IGJvb2xlYW47XG5cbiAgQElucHV0KClcbiAgcHVibGljIGZvcm1Db250cm9sOiBGb3JtQ29udHJvbDtcblxuICBASW5wdXQoKVxuICBwdWJsaWMgaXNJbnZhbGlkOiBib29sZWFuO1xuXG4gIHB1YmxpYyBpc1RvdWNoZWQgPSBmYWxzZTtcbiAgcHVibGljIGRpc3BsYXlEYXk6IHN0cmluZyA9IG51bGw7XG4gIHB1YmxpYyBkaXNwbGF5TW9udGg6IHN0cmluZyA9IG51bGw7XG4gIHB1YmxpYyBkaXNwbGF5WWVhcjogc3RyaW5nID0gbnVsbDtcblxuICBwdWJsaWMgZGlzcGxheUhvdXI6IHN0cmluZyA9IG51bGw7XG4gIHB1YmxpYyBkaXNwbGF5TWludXRlOiBzdHJpbmcgPSBudWxsO1xuICBwdWJsaWMgZGlzcGxheVNlY29uZDogc3RyaW5nID0gbnVsbDtcbiAgLy8gV29ya3Mgd2l0aFxuICAvLyAyMDE4LTA0LTA5VDA4OjAyOjI3LjU0MlxuICAvLyAyMDE4LTA0LTA5VDA4OjAyOjI3LjU0MlpcbiAgLy8gMjAxOC0wNC0wOVQwODowMjoyNy41NDIrMDE6MDBcbiAgcHJpdmF0ZSByZWFkb25seSBEQVRFX0ZPUk1BVCA9XG4gICAgL14oMTl8MjApXFxkezJ9LT8oXFxkXFxkKS0/KFxcZFxcZCkoPzpUKFxcZFxcZCkoPzo6PyhcXGRcXGQpKD86Oj8oXFxkXFxkKSg/OlxcLihcXGQrKSk/KT8pPyhafChbKy1dKShcXGRcXGQpOj8oXFxkXFxkKSk/fFopPyQvO1xuICAvLyAgICB5ZWFyIC0gbW9udGggLSAgZGF5ICAgICBUICAgSEggICAgIDogICBNTSAgICAgIDogIFNTICAgICAgIC4wMDAgICAgICAgIFogb3IgKyAgICAgMDEgOiAgIDAwXG4gIHByaXZhdGUgcHJvcGFnYXRlQ2hhbmdlOiAoXzogYW55KSA9PiB7fTtcbiAgcHJpdmF0ZSByYXdWYWx1ZSA9ICcnO1xuICBwcml2YXRlIGRheTogc3RyaW5nO1xuICBwcml2YXRlIG1vbnRoOiBzdHJpbmc7XG4gIHByaXZhdGUgeWVhcjogc3RyaW5nO1xuICBwcml2YXRlIGhvdXI6IHN0cmluZztcbiAgcHJpdmF0ZSBtaW51dGU6IHN0cmluZztcbiAgcHJpdmF0ZSBzZWNvbmQ6IHN0cmluZztcblxuICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgaWYgKHRoaXMubWFuZGF0b3J5ICYmIHRoaXMuaXNEYXRlVGltZSkge1xuICAgICAgdGhpcy5kaXNwbGF5SG91ciA9ICcwMCc7XG4gICAgICB0aGlzLmRpc3BsYXlNaW51dGUgPSAnMDAnO1xuICAgICAgdGhpcy5kaXNwbGF5U2Vjb25kID0gJzAwJztcbiAgICAgIHRoaXMuaG91ciA9ICcwMCc7XG4gICAgICB0aGlzLm1pbnV0ZSA9ICcwMCc7XG4gICAgICB0aGlzLnNlY29uZCA9ICcwMCc7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIHdyaXRlVmFsdWUob2JqOiBzdHJpbmcpOiB2b2lkIHsgLy8gMjAxOC0wNC0wOVQwODowMjoyNy41NDJcbiAgICBpZiAob2JqKSB7XG4gICAgICB0aGlzLnJhd1ZhbHVlID0gdGhpcy5yZW1vdmVNaWxsaXNlY29uZHMob2JqKTtcbiAgICAgIC8vIG5lZWRzIHRvIGhhbmRsZSBhbHNvIHBhcnRpYWwgZGF0ZXMsIGUuZy4gLTA1LTIwMTYgKG1pc3NpbmcgZGF5KVxuICAgICAgY29uc3QgW2RhdGVQYXJ0LCB0aW1lUGFydF0gPSB0aGlzLnJhd1ZhbHVlLnNwbGl0KCdUJyk7XG4gICAgICBjb25zdCBkYXRlVmFsdWVzID0gZGF0ZVBhcnQuc3BsaXQoJy0nKTtcbiAgICAgIHRoaXMueWVhciA9IHRoaXMuZGlzcGxheVllYXIgPSBkYXRlVmFsdWVzWzBdIHx8ICcnO1xuICAgICAgdGhpcy5tb250aCA9IHRoaXMuZGlzcGxheU1vbnRoID0gZGF0ZVZhbHVlc1sxXSB8fCAnJztcbiAgICAgIHRoaXMuZGF5ID0gdGhpcy5kaXNwbGF5RGF5ID0gZGF0ZVZhbHVlc1syXSB8fCAnJztcbiAgICAgIGlmICh0aW1lUGFydCkge1xuICAgICAgICBjb25zdCB0aW1lUGFydHMgPSB0aW1lUGFydC5zcGxpdCgnOicpO1xuICAgICAgICB0aGlzLmhvdXIgPSB0aGlzLmRpc3BsYXlIb3VyID0gdGltZVBhcnRzWzBdIHx8ICcnO1xuICAgICAgICB0aGlzLm1pbnV0ZSA9IHRoaXMuZGlzcGxheU1pbnV0ZSA9IHRpbWVQYXJ0c1sxXSB8fCAnJztcbiAgICAgICAgdGhpcy5zZWNvbmQgPSB0aGlzLmRpc3BsYXlTZWNvbmQgPSB0aW1lUGFydHNbMl0gfHwgJyc7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgcHVibGljIHZhbGlkYXRlKGNvbnRyb2w6IEFic3RyYWN0Q29udHJvbCk6IFZhbGlkYXRpb25FcnJvcnMge1xuICAgIGlmICh0aGlzLm1hbmRhdG9yeSAmJiAhdGhpcy52aWV3VmFsdWUoKSkge1xuICAgICAgcmV0dXJuIHtcbiAgICAgICAgcmVxdWlyZWQ6ICdUaGlzIGZpZWxkIGlzIHJlcXVpcmVkJ1xuICAgICAgfTtcbiAgICB9XG4gICAgaWYgKGNvbnRyb2wudmFsdWUgJiYgIXRoaXMuaXNEYXRlRm9ybWF0KHRoaXMuZ2V0VmFsdWVGb3JWYWxpZGF0aW9uKGNvbnRyb2wpKSkge1xuICAgICAgcmV0dXJuIHtcbiAgICAgICAgcGF0dGVybjogJ0RhdGUgaXMgbm90IHZhbGlkJ1xuICAgICAgfTtcbiAgICB9XG4gICAgcmV0dXJuIHVuZGVmaW5lZDtcbiAgfVxuXG4gIHB1YmxpYyByZWdpc3Rlck9uQ2hhbmdlKGZuOiBhbnkpOiB2b2lkIHtcbiAgICB0aGlzLnByb3BhZ2F0ZUNoYW5nZSA9IGZuO1xuICB9XG5cbiAgcHVibGljIHJlZ2lzdGVyT25Ub3VjaGVkKGZuOiBhbnkpOiB2b2lkIHtcbiAgICAvLyBEbyBub3RoaW5nLlxuICB9XG5cbiAgcHVibGljIG5nT25EZXN0cm95KCkge1xuICAgIHRoaXMudmFsaWRhdGUgPSAoY29udHJvbDogQWJzdHJhY3RDb250cm9sKTogVmFsaWRhdGlvbkVycm9ycyA9PiB7XG4gICAgICByZXR1cm4gdW5kZWZpbmVkO1xuICAgIH07XG4gIH1cblxuICBwdWJsaWMgZGF5Q2hhbmdlKHZhbHVlOiBzdHJpbmcpIHtcbiAgICAvLyBnZXQgdmFsdWUgZnJvbSBpbnB1dFxuICAgIHRoaXMuZGF5ID0gdmFsdWU7XG5cbiAgICB0aGlzLnJhd1ZhbHVlID0gdGhpcy52aWV3VmFsdWUoKTtcblxuICAgIC8vIHVwZGF0ZSB0aGUgZm9ybVxuICAgIHRoaXMucHJvcGFnYXRlQ2hhbmdlKHRoaXMucmF3VmFsdWUpO1xuICB9XG5cbiAgcHVibGljIG1vbnRoQ2hhbmdlKHZhbHVlOiBzdHJpbmcpIHtcbiAgICAvLyBnZXQgdmFsdWUgZnJvbSBpbnB1dFxuICAgIHRoaXMubW9udGggPSB2YWx1ZTtcblxuICAgIHRoaXMucmF3VmFsdWUgPSB0aGlzLnZpZXdWYWx1ZSgpO1xuXG4gICAgLy8gdXBkYXRlIHRoZSBmb3JtXG4gICAgdGhpcy5wcm9wYWdhdGVDaGFuZ2UodGhpcy5yYXdWYWx1ZSk7XG5cbiAgfVxuXG4gIHB1YmxpYyB5ZWFyQ2hhbmdlKHZhbHVlOiBzdHJpbmcpIHtcbiAgICAvLyBnZXQgdmFsdWUgZnJvbSBpbnB1dFxuICAgIHRoaXMueWVhciA9IHZhbHVlO1xuXG4gICAgdGhpcy5yYXdWYWx1ZSA9IHRoaXMudmlld1ZhbHVlKCk7XG5cbiAgICAvLyB1cGRhdGUgdGhlIGZvcm1cbiAgICB0aGlzLnByb3BhZ2F0ZUNoYW5nZSh0aGlzLnJhd1ZhbHVlKTtcbiAgfVxuXG4gIHB1YmxpYyBob3VyQ2hhbmdlKHZhbHVlOiBzdHJpbmcpIHtcbiAgICAvLyBnZXQgdmFsdWUgZnJvbSBpbnB1dFxuICAgIHRoaXMuaG91ciA9IHZhbHVlO1xuXG4gICAgdGhpcy5yYXdWYWx1ZSA9IHRoaXMudmlld1ZhbHVlKCk7XG5cbiAgICAvLyB1cGRhdGUgdGhlIGZvcm1cbiAgICB0aGlzLnByb3BhZ2F0ZUNoYW5nZSh0aGlzLnJhd1ZhbHVlKTtcbiAgfVxuXG4gIHB1YmxpYyBtaW51dGVDaGFuZ2UodmFsdWU6IHN0cmluZykge1xuICAgIC8vIGdldCB2YWx1ZSBmcm9tIGlucHV0XG4gICAgdGhpcy5taW51dGUgPSB2YWx1ZTtcblxuICAgIHRoaXMucmF3VmFsdWUgPSB0aGlzLnZpZXdWYWx1ZSgpO1xuXG4gICAgLy8gdXBkYXRlIHRoZSBmb3JtXG4gICAgdGhpcy5wcm9wYWdhdGVDaGFuZ2UodGhpcy5yYXdWYWx1ZSk7XG5cbiAgfVxuXG4gIHB1YmxpYyBzZWNvbmRDaGFuZ2UodmFsdWU6IHN0cmluZykge1xuICAgIC8vIGdldCB2YWx1ZSBmcm9tIGlucHV0XG4gICAgdGhpcy5zZWNvbmQgPSB2YWx1ZTtcblxuICAgIHRoaXMucmF3VmFsdWUgPSB0aGlzLnZpZXdWYWx1ZSgpO1xuXG4gICAgLy8gdXBkYXRlIHRoZSBmb3JtXG4gICAgdGhpcy5wcm9wYWdhdGVDaGFuZ2UodGhpcy5yYXdWYWx1ZSk7XG4gIH1cblxuICBwdWJsaWMgaW5wdXRGb2N1cygpIHtcbiAgICB0aGlzLmlzVG91Y2hlZCA9IGZhbHNlO1xuICAgIHRoaXMudG91Y2goKTtcbiAgfVxuXG4gIHB1YmxpYyB0b3VjaCgpIHtcbiAgICBpZiAodGhpcy5pc1RvdWNoZWQpIHtcbiAgICAgIHRoaXMuZm9ybUNvbnRyb2wubWFya0FzVG91Y2hlZCgpO1xuICAgICAgdGhpcy5wcm9wYWdhdGVDaGFuZ2UodGhpcy5yYXdWYWx1ZSk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuZm9ybUNvbnRyb2wubWFya0FzVW50b3VjaGVkKCk7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIGRheUlkKCkge1xuICAgIHJldHVybiB0aGlzLmlkICsgJy1kYXknO1xuICB9XG5cbiAgcHVibGljIG1vbnRoSWQoKSB7XG4gICAgcmV0dXJuIHRoaXMuaWQgKyAnLW1vbnRoJztcbiAgfVxuXG4gIHB1YmxpYyB5ZWFySWQoKSB7XG4gICAgcmV0dXJuIHRoaXMuaWQgKyAnLXllYXInO1xuICB9XG5cbiAgcHVibGljIGhvdXJJZCgpIHtcbiAgICByZXR1cm4gdGhpcy5pZCArICctaG91cic7XG4gIH1cblxuICBwdWJsaWMgbWludXRlSWQoKSB7XG4gICAgcmV0dXJuIHRoaXMuaWQgKyAnLW1pbnV0ZSc7XG4gIH1cblxuICBwdWJsaWMgc2Vjb25kSWQoKSB7XG4gICAgcmV0dXJuIHRoaXMuaWQgKyAnLXNlY29uZCc7XG4gIH1cblxuICBwcml2YXRlIHZpZXdWYWx1ZSgpOiBzdHJpbmcge1xuICAgIGlmICh0aGlzLmRheSB8fCB0aGlzLm1vbnRoIHx8IHRoaXMueWVhciB8fCB0aGlzLmhvdXIgfHwgdGhpcy5taW51dGUgfHwgdGhpcy5zZWNvbmQpIHtcbiAgICAgIGNvbnN0IGRhdGUgPSBbXG4gICAgICAgIHRoaXMueWVhciA/IHRoaXMueWVhciA6ICcnLFxuICAgICAgICB0aGlzLm1vbnRoID8gdGhpcy5wYWQodGhpcy5tb250aCkgOiAnJyxcbiAgICAgICAgdGhpcy5kYXkgPyB0aGlzLnBhZCh0aGlzLmRheSkgOiAnJ1xuICAgICAgXS5qb2luKCctJyk7XG4gICAgICBpZiAodGhpcy5pc0RhdGVUaW1lKSB7XG4gICAgICAgIGNvbnN0IHRpbWUgPSBbXG4gICAgICAgICAgdGhpcy5ob3VyID8gdGhpcy5wYWQodGhpcy5ob3VyKSA6ICcnLFxuICAgICAgICAgIHRoaXMubWludXRlID8gdGhpcy5wYWQodGhpcy5taW51dGUpIDogJycsXG4gICAgICAgICAgdGhpcy5zZWNvbmQgPyB0aGlzLnBhZCh0aGlzLnNlY29uZCkgOiAnJ1xuICAgICAgICBdLmpvaW4oJzonKTtcbiAgICAgICAgcmV0dXJuIGRhdGUgKyAnVCcgKyB0aW1lICsgJy4wMDAnO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgcmV0dXJuIGRhdGU7XG4gICAgICB9XG4gICAgfVxuICAgIHJldHVybiBudWxsO1xuICB9XG5cbiAgcHJpdmF0ZSBpc0RhdGVGb3JtYXQodmFsOiBhbnkpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5EQVRFX0ZPUk1BVC50ZXN0KHZhbCk7XG4gIH1cblxuICBwcml2YXRlIHBhZChudW06IGFueSwgcGFkTnVtID0gMik6IHN0cmluZyB7XG4gICAgY29uc3QgdmFsID0gbnVtICE9PSB1bmRlZmluZWQgPyBudW0udG9TdHJpbmcoKSA6ICcnO1xuICAgIHJldHVybiB2YWwubGVuZ3RoID49IHBhZE51bSA/IHZhbCA6IG5ldyBBcnJheShwYWROdW0gLSB2YWwubGVuZ3RoICsgMSkuam9pbignMCcpICsgdmFsO1xuICB9XG5cbiAgcHJpdmF0ZSBnZXRWYWx1ZUZvclZhbGlkYXRpb24oY29udHJvbDogYW55KSB7XG4gICAgaWYgKHRoaXMuaXNEYXRlVGltZSkge1xuICAgICAgcmV0dXJuIGNvbnRyb2wudmFsdWU7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiBjb250cm9sLnZhbHVlLnJlcGxhY2UoL1ouKi8sICdUMDA6MDA6MDBaJyk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSByZW1vdmVNaWxsaXNlY29uZHMoZGF0ZVRpbWU6IHN0cmluZyk6IHN0cmluZyB7XG4gICAgcmV0dXJuIGRhdGVUaW1lLnJlcGxhY2UoL1xcLi4qLywgJycpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiZm9ybS1kYXRlXCI+XG5cbiAgPGRpdiBjbGFzcz1cImZvcm0tZ3JvdXAgZm9ybS1ncm91cC1kYXlcIj5cbiAgICA8bGFiZWwgY2xhc3M9XCJmb3JtLWxhYmVsXCIgW2Zvcl09XCJkYXlJZCgpXCI+RGF5PC9sYWJlbD5cbiAgICA8aW5wdXQgI2RheUlucHV0XG4gICAgICAgICAgIGNsYXNzPVwiZm9ybS1jb250cm9sXCJcbiAgICAgICAgICAgW2lkXT1cImRheUlkKClcIlxuICAgICAgICAgICBbbmFtZV09XCJkYXlJZCgpXCJcbiAgICAgICAgICAgdHlwZT1cInRleHRcIlxuICAgICAgICAgICBwYXR0ZXJuPVwiWzAtOV0qXCJcbiAgICAgICAgICAgaW5wdXRtb2RlPVwibnVtZXJpY1wiXG4gICAgICAgICAgIFt2YWx1ZV09XCJkaXNwbGF5RGF5XCJcbiAgICAgICAgICAgKGNoYW5nZSk9XCJkYXlDaGFuZ2UoZGF5SW5wdXQudmFsdWUpXCJcbiAgICAgICAgICAgKGtleXVwKT1cImRheUNoYW5nZShkYXlJbnB1dC52YWx1ZSlcIlxuICAgICAgICAgICAoZm9jdXMpPVwiaW5wdXRGb2N1cygpXCJcbiAgICAgICAgICAgW25nQ2xhc3NdPVwieydnb3Z1ay1pbnB1dC0tZXJyb3InOiBpc0ludmFsaWR9XCI+XG4gIDwvZGl2PlxuXG4gIDxkaXYgY2xhc3M9XCJmb3JtLWdyb3VwIGZvcm0tZ3JvdXAtbW9udGhcIj5cbiAgICA8bGFiZWwgY2xhc3M9XCJmb3JtLWxhYmVsXCIgW2Zvcl09XCJtb250aElkKClcIj5Nb250aDwvbGFiZWw+XG4gICAgPGlucHV0ICNtb250aElucHV0XG4gICAgICAgICAgIGNsYXNzPVwiZm9ybS1jb250cm9sXCJcbiAgICAgICAgICAgW2lkXT1cIm1vbnRoSWQoKVwiXG4gICAgICAgICAgIFtuYW1lXT1cIm1vbnRoSWQoKVwiXG4gICAgICAgICAgIHR5cGU9XCJ0ZXh0XCJcbiAgICAgICAgICAgcGF0dGVybj1cIlswLTldKlwiXG4gICAgICAgICAgIGlucHV0bW9kZT1cIm51bWVyaWNcIlxuICAgICAgICAgICBbdmFsdWVdPVwiZGlzcGxheU1vbnRoXCJcbiAgICAgICAgICAgKGNoYW5nZSk9XCJtb250aENoYW5nZShtb250aElucHV0LnZhbHVlKVwiXG4gICAgICAgICAgIChrZXl1cCk9XCJtb250aENoYW5nZShtb250aElucHV0LnZhbHVlKVwiXG4gICAgICAgICAgIChmb2N1cyk9XCJpbnB1dEZvY3VzKClcIlxuICAgICAgICAgICBbbmdDbGFzc109XCJ7J2dvdnVrLWlucHV0LS1lcnJvcic6IGlzSW52YWxpZH1cIj5cbiAgPC9kaXY+XG5cbiAgPGRpdiBjbGFzcz1cImZvcm0tZ3JvdXAgZm9ybS1ncm91cC15ZWFyXCI+XG4gICAgPGxhYmVsIGNsYXNzPVwiZm9ybS1sYWJlbFwiIFtmb3JdPVwieWVhcklkKClcIj5ZZWFyPC9sYWJlbD5cbiAgICA8aW5wdXQgI3llYXJJbnB1dFxuICAgICAgICAgICBjbGFzcz1cImZvcm0tY29udHJvbFwiXG4gICAgICAgICAgIFtpZF09XCJ5ZWFySWQoKVwiXG4gICAgICAgICAgIFtuYW1lXT1cInllYXJJZCgpXCJcbiAgICAgICAgICAgdHlwZT1cInRleHRcIlxuICAgICAgICAgICBwYXR0ZXJuPVwiWzAtOV0qXCJcbiAgICAgICAgICAgaW5wdXRtb2RlPVwibnVtZXJpY1wiXG4gICAgICAgICAgIFt2YWx1ZV09XCJkaXNwbGF5WWVhclwiXG4gICAgICAgICAgIChjaGFuZ2UpPVwieWVhckNoYW5nZSh5ZWFySW5wdXQudmFsdWUpXCJcbiAgICAgICAgICAgKGtleXVwKT1cInllYXJDaGFuZ2UoeWVhcklucHV0LnZhbHVlKVwiXG4gICAgICAgICAgIChmb2N1cyk9XCJpbnB1dEZvY3VzKClcIlxuICAgICAgICAgICBbbmdDbGFzc109XCJ7J2dvdnVrLWlucHV0LS1lcnJvcic6IGlzSW52YWxpZH1cIj5cbiAgPC9kaXY+XG5cbiAgPGRpdiBjbGFzcz1cImZvcm0tZ3JvdXAgZm9ybS1ncm91cC1ob3VyXCIgKm5nSWY9XCJpc0RhdGVUaW1lXCI+XG4gICAgPGxhYmVsIGNsYXNzPVwiZm9ybS1sYWJlbFwiIFtmb3JdPVwiaG91cklkKClcIj5Ib3VyPC9sYWJlbD5cbiAgICA8aW5wdXQgI2hvdXJJbnB1dFxuICAgICAgICAgICBjbGFzcz1cImZvcm0tY29udHJvbFwiXG4gICAgICAgICAgIFtpZF09XCJob3VySWQoKVwiXG4gICAgICAgICAgIFtuYW1lXT1cImhvdXJJZCgpXCJcbiAgICAgICAgICAgdHlwZT1cIm51bWJlclwiXG4gICAgICAgICAgIFt2YWx1ZV09XCJkaXNwbGF5SG91clwiXG4gICAgICAgICAgIChpbnB1dCk9XCJob3VyQ2hhbmdlKGhvdXJJbnB1dC52YWx1ZSlcIlxuICAgICAgICAgICAoa2V5dXApPVwiaG91ckNoYW5nZShob3VySW5wdXQudmFsdWUpXCJcbiAgICAgICAgICAgKGZvY3VzKT1cImlucHV0Rm9jdXMoKVwiXG4gICAgICAgICAgIFtuZ0NsYXNzXT1cInsnZ292dWstaW5wdXQtLWVycm9yJzogaXNJbnZhbGlkfVwiPlxuICA8L2Rpdj5cblxuICA8ZGl2IGNsYXNzPVwiZm9ybS1ncm91cCBmb3JtLWdyb3VwLW1pbnV0ZVwiICpuZ0lmPVwiaXNEYXRlVGltZVwiPlxuICAgIDxsYWJlbCBjbGFzcz1cImZvcm0tbGFiZWxcIiBbZm9yXT1cIm1pbnV0ZUlkKClcIj5NaW51dGU8L2xhYmVsPlxuICAgIDxpbnB1dCAjbWludXRlSW5wdXRcbiAgICAgICAgICAgY2xhc3M9XCJmb3JtLWNvbnRyb2xcIlxuICAgICAgICAgICBbaWRdPVwibWludXRlSWQoKVwiXG4gICAgICAgICAgIFtuYW1lXT1cIm1pbnV0ZUlkKClcIlxuICAgICAgICAgICB0eXBlPVwibnVtYmVyXCJcbiAgICAgICAgICAgW3ZhbHVlXT1cImRpc3BsYXlNaW51dGVcIlxuICAgICAgICAgICAoaW5wdXQpPVwibWludXRlQ2hhbmdlKG1pbnV0ZUlucHV0LnZhbHVlKVwiXG4gICAgICAgICAgIChrZXl1cCk9XCJtaW51dGVDaGFuZ2UobWludXRlSW5wdXQudmFsdWUpXCJcbiAgICAgICAgICAgKGZvY3VzKT1cImlucHV0Rm9jdXMoKVwiXG4gICAgICAgICAgIFtuZ0NsYXNzXT1cInsnZ292dWstaW5wdXQtLWVycm9yJzogaXNJbnZhbGlkfVwiPlxuICA8L2Rpdj5cblxuICA8ZGl2IGNsYXNzPVwiZm9ybS1ncm91cCBmb3JtLWdyb3VwLXNlY29uZFwiICpuZ0lmPVwiaXNEYXRlVGltZVwiPlxuICAgIDxsYWJlbCBjbGFzcz1cImZvcm0tbGFiZWxcIiBbZm9yXT1cInNlY29uZElkKClcIj5TZWNvbmQ8L2xhYmVsPlxuICAgIDxpbnB1dCAjc2Vjb25kSW5wdXRcbiAgICAgICAgICAgY2xhc3M9XCJmb3JtLWNvbnRyb2xcIlxuICAgICAgICAgICBbaWRdPVwic2Vjb25kSWQoKVwiXG4gICAgICAgICAgIFtuYW1lXT1cInNlY29uZElkKClcIlxuICAgICAgICAgICB0eXBlPVwibnVtYmVyXCJcbiAgICAgICAgICAgW3ZhbHVlXT1cImRpc3BsYXlTZWNvbmRcIlxuICAgICAgICAgICAoaW5wdXQpPVwic2Vjb25kQ2hhbmdlKHNlY29uZElucHV0LnZhbHVlKVwiXG4gICAgICAgICAgIChrZXl1cCk9XCJzZWNvbmRDaGFuZ2Uoc2Vjb25kSW5wdXQudmFsdWUpXCJcbiAgICAgICAgICAgKGZvY3VzKT1cImlucHV0Rm9jdXMoKVwiXG4gICAgICAgICAgIFtuZ0NsYXNzXT1cInsnZ292dWstaW5wdXQtLWVycm9yJzogaXNJbnZhbGlkfVwiPlxuICA8L2Rpdj5cblxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './date-input.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvY29tcG9uZW50cy9mb3JtL2RhdGUtaW5wdXQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZGF0ZS1pbnB1dC5jb21wb25lbnQnO1xuIl19
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { DateInputComponent } from './date-input/date-input.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class FormModule {
|
|
6
|
+
}
|
|
7
|
+
FormModule.ɵfac = function FormModule_Factory(t) { return new (t || FormModule)(); };
|
|
8
|
+
FormModule.ɵmod = i0.ɵɵdefineNgModule({ type: FormModule });
|
|
9
|
+
FormModule.ɵinj = i0.ɵɵdefineInjector({ imports: [[
|
|
10
|
+
CommonModule
|
|
11
|
+
]] });
|
|
12
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(FormModule, { declarations: [DateInputComponent], imports: [CommonModule], exports: [DateInputComponent] }); })();
|
|
13
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormModule, [{
|
|
14
|
+
type: NgModule,
|
|
15
|
+
args: [{
|
|
16
|
+
imports: [
|
|
17
|
+
CommonModule
|
|
18
|
+
],
|
|
19
|
+
declarations: [
|
|
20
|
+
DateInputComponent,
|
|
21
|
+
],
|
|
22
|
+
exports: [
|
|
23
|
+
DateInputComponent,
|
|
24
|
+
]
|
|
25
|
+
}]
|
|
26
|
+
}], null, null); })();
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvY29tcG9uZW50cy9mb3JtL2Zvcm0ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLG1DQUFtQyxDQUFDOztBQWF2RSxNQUFNLE9BQU8sVUFBVTs7b0VBQVYsVUFBVTs4Q0FBVixVQUFVO2tEQVZaO1lBQ1AsWUFBWTtTQUNiO3dGQVFVLFVBQVUsbUJBTm5CLGtCQUFrQixhQUhsQixZQUFZLGFBTVosa0JBQWtCO3VGQUdULFVBQVU7Y0FYdEIsUUFBUTtlQUFDO2dCQUNSLE9BQU8sRUFBRTtvQkFDUCxZQUFZO2lCQUNiO2dCQUNELFlBQVksRUFBRTtvQkFDWixrQkFBa0I7aUJBQ25CO2dCQUNELE9BQU8sRUFBRTtvQkFDUCxrQkFBa0I7aUJBQ25CO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERhdGVJbnB1dENvbXBvbmVudCB9IGZyb20gJy4vZGF0ZS1pbnB1dC9kYXRlLWlucHV0LmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGVcbiAgXSxcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgRGF0ZUlucHV0Q29tcG9uZW50LFxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgRGF0ZUlucHV0Q29tcG9uZW50LFxuICBdXG59KVxuZXhwb3J0IGNsYXNzIEZvcm1Nb2R1bGUge31cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './date-input';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvY29tcG9uZW50cy9mb3JtL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9kYXRlLWlucHV0JztcbiJdfQ==
|