@hmcts/ccd-case-ui-toolkit 5.0.29-angular11-upgrade → 5.0.31-angular11-upgrade
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js +12829 -9709
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
- package/esm2015/lib/app.config.js +1 -1
- package/esm2015/lib/components/banners/banners.module.js +13 -6
- package/esm2015/lib/components/banners/index.js +2 -1
- package/esm2015/lib/components/banners/notification-banner/domain/index.js +2 -0
- package/esm2015/lib/components/banners/notification-banner/domain/notification-banner-config.model.js +2 -0
- package/esm2015/lib/components/banners/notification-banner/enums/index.js +3 -0
- package/esm2015/lib/components/banners/notification-banner/enums/notification-banner-style.enum.js +8 -0
- package/esm2015/lib/components/banners/notification-banner/enums/notification-banner-type.enum.js +8 -0
- package/esm2015/lib/components/banners/notification-banner/index.js +4 -0
- package/esm2015/lib/components/banners/notification-banner/notification-banner.component.js +130 -0
- package/esm2015/lib/components/banners/notification-banner/notification-banner.module.js +19 -0
- package/esm2015/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.js +2 -7
- package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.js +42 -31
- package/esm2015/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.js +157 -153
- package/esm2015/lib/shared/components/case-editor/case-editor.module.js +19 -16
- package/esm2015/lib/shared/components/case-list-filters/case-list-filters.component.js +2 -4
- package/esm2015/lib/shared/components/case-list-filters/case-list-filters.module.js +4 -1
- package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.js +2 -5
- package/esm2015/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.js +32 -17
- package/esm2015/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.js +197 -104
- package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.js +2 -4
- package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.js +2 -5
- package/esm2015/lib/shared/components/case-viewer/case-viewer.module.js +18 -10
- package/esm2015/lib/shared/components/case-viewer/printer/case-printer.component.js +2 -5
- package/esm2015/lib/shared/components/palette/address/write-address-field.component.js +2 -6
- package/esm2015/lib/shared/components/palette/base-field/field-read.component.js +2 -4
- package/esm2015/lib/shared/components/palette/base-field/field-write.component.js +5 -1
- package/esm2015/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.js +145 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.js +97 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.js +148 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/index.js +9 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.js +200 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.js +295 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.js +188 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.js +251 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.js +192 -0
- package/esm2015/lib/shared/components/palette/case-flag/domain/case-flag-state.model.js +2 -0
- package/esm2015/lib/shared/components/palette/case-flag/domain/case-flag.model.js +2 -0
- package/esm2015/lib/shared/components/palette/case-flag/domain/index.js +4 -0
- package/esm2015/lib/shared/components/palette/case-flag/domain/language.model.js +2 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.js +7 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-summary-list-display-mode.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.js +12 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/index.js +14 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/search-language-interpreter-error-message.enum.js +7 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/search-language-interpreter-step.enum.js +8 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/select-flag-location-error-message.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.js +7 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.js +14 -0
- package/esm2015/lib/shared/components/palette/case-flag/index.js +6 -0
- package/esm2015/lib/shared/components/palette/case-flag/read-case-flag-field.component.js +152 -0
- package/esm2015/lib/shared/components/palette/case-flag/write-case-flag-field.component.js +455 -0
- package/esm2015/lib/shared/components/palette/complex/read-complex-field.component.js +2 -6
- package/esm2015/lib/shared/components/palette/date/write-date-container-field.component.js +2 -6
- package/esm2015/lib/shared/components/palette/history/case-history-viewer-field.component.js +2 -3
- package/esm2015/lib/shared/components/palette/history/event-log/event-log.component.js +2 -5
- package/esm2015/lib/shared/components/palette/index.js +2 -1
- package/esm2015/lib/shared/components/palette/judicial-user/read-judicial-user-field.component.js +4 -4
- package/esm2015/lib/shared/components/palette/label/label-field.component.js +2 -4
- package/esm2015/lib/shared/components/palette/order-summary/read-order-summary-field.component.js +2 -5
- package/esm2015/lib/shared/components/palette/order-summary/read-order-summary-row.component.js +2 -3
- package/esm2015/lib/shared/components/palette/order-summary/write-order-summary-field.component.js +2 -3
- package/esm2015/lib/shared/components/palette/organisation/read-organisation-field.component.js +2 -5
- package/esm2015/lib/shared/components/palette/organisation/write-organisation-field.component.js +2 -6
- package/esm2015/lib/shared/components/palette/palette.module.js +69 -17
- package/esm2015/lib/shared/components/palette/palette.service.js +5 -1
- package/esm2015/lib/shared/components/search-result/search-result.component.js +45 -50
- package/esm2015/lib/shared/domain/case-flag/flag-type.model.js +13 -0
- package/esm2015/lib/shared/domain/case-flag/hmcts-service-detail.model.js +9 -0
- package/esm2015/lib/shared/domain/case-flag/index.js +3 -0
- package/esm2015/lib/shared/domain/case-view/case-view.model.js +1 -1
- package/esm2015/lib/shared/domain/definition/field-type-enum.model.js +1 -1
- package/esm2015/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.js +2 -2
- package/esm2015/lib/shared/services/addresses/address-parser.js +6 -6
- package/esm2015/lib/shared/services/addresses/address-type.enum.js +7 -0
- package/esm2015/lib/shared/services/addresses/addresses.service.js +3 -5
- package/esm2015/lib/shared/services/case-flag/case-flag-refdata.service.js +75 -0
- package/esm2015/lib/shared/services/case-flag/index.js +3 -0
- package/esm2015/lib/shared/services/case-flag/refdata-case-flag-type.enum.js +6 -0
- package/esm2015/lib/shared/services/fields/fields.utils.js +220 -5
- package/esm2015/lib/shared/services/form/form-value.service.js +100 -73
- package/esm2015/lib/shared/services/index.js +2 -1
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +13996 -11169
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/app.config.d.ts +2 -0
- package/lib/app.config.d.ts.map +1 -1
- package/lib/components/banners/banners.module.d.ts +2 -1
- package/lib/components/banners/banners.module.d.ts.map +1 -1
- package/lib/components/banners/index.d.ts +1 -0
- package/lib/components/banners/index.d.ts.map +1 -1
- package/lib/components/banners/notification-banner/domain/index.d.ts +2 -0
- package/lib/components/banners/notification-banner/domain/index.d.ts.map +1 -0
- package/lib/components/banners/notification-banner/domain/notification-banner-config.model.d.ts +13 -0
- package/lib/components/banners/notification-banner/domain/notification-banner-config.model.d.ts.map +1 -0
- package/lib/components/banners/notification-banner/enums/index.d.ts +3 -0
- package/lib/components/banners/notification-banner/enums/index.d.ts.map +1 -0
- package/lib/components/banners/notification-banner/enums/notification-banner-style.enum.d.ts +7 -0
- package/lib/components/banners/notification-banner/enums/notification-banner-style.enum.d.ts.map +1 -0
- package/lib/components/banners/notification-banner/enums/notification-banner-type.enum.d.ts +7 -0
- package/lib/components/banners/notification-banner/enums/notification-banner-type.enum.d.ts.map +1 -0
- package/lib/components/banners/notification-banner/index.d.ts +4 -0
- package/lib/components/banners/notification-banner/index.d.ts.map +1 -0
- package/lib/components/banners/notification-banner/notification-banner.component.d.ts +13 -0
- package/lib/components/banners/notification-banner/notification-banner.component.d.ts.map +1 -0
- package/lib/components/banners/notification-banner/notification-banner.module.d.ts +9 -0
- package/lib/components/banners/notification-banner/notification-banner.module.d.ts.map +1 -0
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts +11 -5
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts +14 -25
- package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts +6 -10
- package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts +18 -4
- package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/case-viewer.module.d.ts.map +1 -1
- package/lib/shared/components/palette/base-field/field-read.component.d.ts.map +1 -1
- package/lib/shared/components/palette/base-field/field-write.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.d.ts +25 -0
- package/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.d.ts +20 -0
- package/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.d.ts +12 -0
- package/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/index.d.ts +9 -0
- package/lib/shared/components/palette/case-flag/components/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts +28 -0
- package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.d.ts +39 -0
- package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.d.ts +26 -0
- package/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.d.ts +40 -0
- package/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.d.ts +26 -0
- package/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/domain/case-flag-state.model.d.ts +18 -0
- package/lib/shared/components/palette/case-flag/domain/case-flag-state.model.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/domain/case-flag.model.d.ts +47 -0
- package/lib/shared/components/palette/case-flag/domain/case-flag.model.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/domain/index.d.ts +4 -0
- package/lib/shared/components/palette/case-flag/domain/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/domain/language.model.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/domain/language.model.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.d.ts +6 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-summary-list-display-mode.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-summary-list-display-mode.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.d.ts +11 -0
- package/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/index.d.ts +14 -0
- package/lib/shared/components/palette/case-flag/enums/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/search-language-interpreter-error-message.enum.d.ts +6 -0
- package/lib/shared/components/palette/case-flag/enums/search-language-interpreter-error-message.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/search-language-interpreter-step.enum.d.ts +7 -0
- package/lib/shared/components/palette/case-flag/enums/search-language-interpreter-step.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/select-flag-location-error-message.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/select-flag-location-error-message.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.d.ts +6 -0
- package/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.d.ts +5 -0
- package/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.d.ts +12 -0
- package/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/index.d.ts +6 -0
- package/lib/shared/components/palette/case-flag/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/read-case-flag-field.component.d.ts +27 -0
- package/lib/shared/components/palette/case-flag/read-case-flag-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts +61 -0
- package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/index.d.ts +1 -0
- package/lib/shared/components/palette/index.d.ts.map +1 -1
- package/lib/shared/components/palette/judicial-user/read-judicial-user-field.component.d.ts +3 -3
- package/lib/shared/components/palette/judicial-user/read-judicial-user-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.module.d.ts +94 -84
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.service.d.ts.map +1 -1
- package/lib/shared/domain/case-flag/flag-type.model.d.ts +21 -0
- package/lib/shared/domain/case-flag/flag-type.model.d.ts.map +1 -0
- package/lib/shared/domain/case-flag/hmcts-service-detail.model.d.ts +17 -0
- package/lib/shared/domain/case-flag/hmcts-service-detail.model.d.ts.map +1 -0
- package/lib/shared/domain/case-flag/index.d.ts +3 -0
- package/lib/shared/domain/case-flag/index.d.ts.map +1 -0
- package/lib/shared/domain/case-view/case-view.model.d.ts +2 -0
- package/lib/shared/domain/case-view/case-view.model.d.ts.map +1 -1
- package/lib/shared/domain/definition/field-type-enum.model.d.ts +1 -1
- package/lib/shared/domain/definition/field-type-enum.model.d.ts.map +1 -1
- package/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.d.ts.map +1 -1
- package/lib/shared/services/addresses/address-type.enum.d.ts +6 -0
- package/lib/shared/services/addresses/address-type.enum.d.ts.map +1 -0
- package/lib/shared/services/addresses/addresses.service.d.ts +0 -3
- package/lib/shared/services/addresses/addresses.service.d.ts.map +1 -1
- package/lib/shared/services/case-flag/case-flag-refdata.service.d.ts +31 -0
- package/lib/shared/services/case-flag/case-flag-refdata.service.d.ts.map +1 -0
- package/lib/shared/services/case-flag/index.d.ts +3 -0
- package/lib/shared/services/case-flag/index.d.ts.map +1 -0
- package/lib/shared/services/case-flag/refdata-case-flag-type.enum.d.ts +5 -0
- package/lib/shared/services/case-flag/refdata-case-flag-type.enum.d.ts.map +1 -0
- package/lib/shared/services/fields/fields.utils.d.ts +41 -8
- package/lib/shared/services/fields/fields.utils.d.ts.map +1 -1
- package/lib/shared/services/form/form-value.service.d.ts +20 -19
- package/lib/shared/services/form/form-value.service.d.ts.map +1 -1
- package/lib/shared/services/index.d.ts +1 -0
- package/lib/shared/services/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.js +0 -11
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.d.ts +0 -10
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.d.ts.map +0 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { Subscription } from 'rxjs';
|
|
3
|
-
import { JudicialUserModel } from '../../../domain/jurisdiction';
|
|
4
|
-
import { JurisdictionService } from '../../../services';
|
|
5
|
-
import { AbstractFieldReadComponent } from '../base-field';
|
|
3
|
+
import { JudicialUserModel } from '../../../domain/jurisdiction/judicial-user.model';
|
|
4
|
+
import { JurisdictionService } from '../../../services/jurisdiction/jurisdiction.service';
|
|
5
|
+
import { AbstractFieldReadComponent } from '../base-field/abstract-field-read.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class ReadJudicialUserFieldComponent extends AbstractFieldReadComponent implements OnInit, OnDestroy {
|
|
8
8
|
private readonly jurisdictionService;
|
package/lib/shared/components/palette/judicial-user/read-judicial-user-field.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"read-judicial-user-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/judicial-user/read-judicial-user-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,iBAAiB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"read-judicial-user-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/judicial-user/read-judicial-user-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,iBAAiB,EAAE,MAAM,kDAAkD,CAAC;AACrF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qDAAqD,CAAC;AAC1F,OAAO,EAAE,0BAA0B,EAAE,MAAM,6CAA6C,CAAC;;AAEzF,qBAIa,8BAA+B,SAAQ,0BAA2B,YAAW,MAAM,EAAE,SAAS;IAK7F,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAHzC,YAAY,EAAE,iBAAiB,CAAC;IAChC,GAAG,EAAE,YAAY,CAAC;gBAEI,mBAAmB,EAAE,mBAAmB;IAI9D,QAAQ,IAAI,IAAI;IAShB,WAAW,IAAI,IAAI;iCAlBf,8BAA8B;2CAA9B,8BAA8B;CAuB1C"}
|
|
@@ -4,92 +4,102 @@ import * as i2 from "./fixed-radio-list/fixed-radio-list.pipe";
|
|
|
4
4
|
import * as i3 from "./dynamic-list/dynamic-list.pipe";
|
|
5
5
|
import * as i4 from "./dynamic-radio-list/dynamic-radio-list.pipe";
|
|
6
6
|
import * as i5 from "./document/document-url.pipe";
|
|
7
|
-
import * as i6 from "./
|
|
8
|
-
import * as i7 from "./
|
|
9
|
-
import * as i8 from "./
|
|
10
|
-
import * as i9 from "./
|
|
11
|
-
import * as i10 from "./
|
|
12
|
-
import * as i11 from "./
|
|
13
|
-
import * as i12 from "./
|
|
14
|
-
import * as i13 from "./
|
|
15
|
-
import * as i14 from "./
|
|
16
|
-
import * as i15 from "./
|
|
17
|
-
import * as i16 from "./
|
|
18
|
-
import * as i17 from "./
|
|
19
|
-
import * as i18 from "./
|
|
20
|
-
import * as i19 from "./
|
|
21
|
-
import * as i20 from "./
|
|
22
|
-
import * as i21 from "./
|
|
23
|
-
import * as i22 from "./
|
|
24
|
-
import * as i23 from "./
|
|
25
|
-
import * as i24 from "./
|
|
26
|
-
import * as i25 from "./
|
|
27
|
-
import * as i26 from "./
|
|
28
|
-
import * as i27 from "./
|
|
29
|
-
import * as i28 from "./
|
|
30
|
-
import * as i29 from "./
|
|
31
|
-
import * as i30 from "./
|
|
32
|
-
import * as i31 from "./
|
|
33
|
-
import * as i32 from "./
|
|
34
|
-
import * as i33 from "./
|
|
35
|
-
import * as i34 from "./
|
|
36
|
-
import * as i35 from "./
|
|
37
|
-
import * as i36 from "./
|
|
38
|
-
import * as i37 from "./
|
|
39
|
-
import * as i38 from "./
|
|
40
|
-
import * as i39 from "./
|
|
41
|
-
import * as i40 from "./
|
|
42
|
-
import * as i41 from "./
|
|
43
|
-
import * as i42 from "./
|
|
44
|
-
import * as i43 from "./
|
|
45
|
-
import * as i44 from "./
|
|
46
|
-
import * as i45 from "./
|
|
47
|
-
import * as i46 from "./
|
|
48
|
-
import * as i47 from "./
|
|
49
|
-
import * as i48 from "./
|
|
50
|
-
import * as i49 from "./
|
|
51
|
-
import * as i50 from "./
|
|
52
|
-
import * as i51 from "./
|
|
53
|
-
import * as i52 from "./
|
|
54
|
-
import * as i53 from "./
|
|
55
|
-
import * as i54 from "./
|
|
56
|
-
import * as i55 from "./
|
|
57
|
-
import * as i56 from "./
|
|
58
|
-
import * as i57 from "./
|
|
59
|
-
import * as i58 from "./
|
|
60
|
-
import * as i59 from "./
|
|
61
|
-
import * as i60 from "./
|
|
62
|
-
import * as i61 from "./
|
|
63
|
-
import * as i62 from "./
|
|
64
|
-
import * as i63 from "./
|
|
65
|
-
import * as i64 from "./
|
|
66
|
-
import * as i65 from "./
|
|
67
|
-
import * as i66 from "./
|
|
68
|
-
import * as i67 from "./
|
|
69
|
-
import * as i68 from "./
|
|
70
|
-
import * as i69 from "
|
|
71
|
-
import * as i70 from "
|
|
72
|
-
import * as i71 from "
|
|
73
|
-
import * as i72 from "./
|
|
74
|
-
import * as i73 from "
|
|
75
|
-
import * as i74 from "
|
|
76
|
-
import * as i75 from "
|
|
77
|
-
import * as i76 from "
|
|
78
|
-
import * as i77 from "
|
|
79
|
-
import * as i78 from "
|
|
80
|
-
import * as i79 from "
|
|
81
|
-
import * as i80 from "
|
|
82
|
-
import * as i81 from "
|
|
83
|
-
import * as i82 from "
|
|
84
|
-
import * as i83 from "
|
|
85
|
-
import * as i84 from "
|
|
86
|
-
import * as i85 from "
|
|
87
|
-
import * as i86 from "
|
|
88
|
-
import * as i87 from "
|
|
89
|
-
import * as i88 from "
|
|
7
|
+
import * as i6 from "./case-flag/components/case-flag-table/case-flag-table.component";
|
|
8
|
+
import * as i7 from "./case-flag/components/select-flag-type/select-flag-type.component";
|
|
9
|
+
import * as i8 from "./case-flag/components/search-language-interpreter/search-language-interpreter.component";
|
|
10
|
+
import * as i9 from "./case-flag/components/select-flag-location/select-flag-location.component";
|
|
11
|
+
import * as i10 from "./case-flag/components/manage-case-flags/manage-case-flags.component";
|
|
12
|
+
import * as i11 from "./case-flag/components/add-comments/add-comments.component";
|
|
13
|
+
import * as i12 from "./case-flag/components/update-flag/update-flag.component";
|
|
14
|
+
import * as i13 from "./case-flag/components/case-flag-summary-list/case-flag-summary-list.component";
|
|
15
|
+
import * as i14 from "./unsupported-field.component";
|
|
16
|
+
import * as i15 from "./datetime-picker/datetime-picker.component";
|
|
17
|
+
import * as i16 from "./waystopay/waystopay-field.component";
|
|
18
|
+
import * as i17 from "./markdown/markdown.component";
|
|
19
|
+
import * as i18 from "./base-field/field-read.component";
|
|
20
|
+
import * as i19 from "./base-field/field-write.component";
|
|
21
|
+
import * as i20 from "./base-field/field-read-label.component";
|
|
22
|
+
import * as i21 from "./label/label-field.component";
|
|
23
|
+
import * as i22 from "./payment/case-payment-history-viewer-field.component";
|
|
24
|
+
import * as i23 from "./money-gbp/money-gbp-input.component";
|
|
25
|
+
import * as i24 from "./history/case-history-viewer-field.component";
|
|
26
|
+
import * as i25 from "./history/event-log/event-log.component";
|
|
27
|
+
import * as i26 from "./history/event-log/event-log-details.component";
|
|
28
|
+
import * as i27 from "./history/event-log/event-log-table.component";
|
|
29
|
+
import * as i28 from "./text/read-text-field.component";
|
|
30
|
+
import * as i29 from "./text-area/read-text-area-field.component";
|
|
31
|
+
import * as i30 from "./number/read-number-field.component";
|
|
32
|
+
import * as i31 from "./email/read-email-field.component";
|
|
33
|
+
import * as i32 from "./phone-uk/read-phone-uk-field.component";
|
|
34
|
+
import * as i33 from "./date/read-date-field.component";
|
|
35
|
+
import * as i34 from "./collection/read-collection-field.component";
|
|
36
|
+
import * as i35 from "./document/read-document-field.component";
|
|
37
|
+
import * as i36 from "./judicial-user/read-judicial-user-field.component";
|
|
38
|
+
import * as i37 from "./yes-no/read-yes-no-field.component";
|
|
39
|
+
import * as i38 from "./organisation/read-organisation-field.component";
|
|
40
|
+
import * as i39 from "./organisation/read-organisation-field-table.component";
|
|
41
|
+
import * as i40 from "./organisation/read-organisation-field-raw.component";
|
|
42
|
+
import * as i41 from "./order-summary/read-order-summary-field.component";
|
|
43
|
+
import * as i42 from "./order-summary/read-order-summary-row.component";
|
|
44
|
+
import * as i43 from "./money-gbp/read-money-gbp-field.component";
|
|
45
|
+
import * as i44 from "./multi-select-list/read-multi-select-list-field.component";
|
|
46
|
+
import * as i45 from "./dynamic-list/read-dynamic-list-field.component";
|
|
47
|
+
import * as i46 from "./fixed-list/read-fixed-list-field.component";
|
|
48
|
+
import * as i47 from "./fixed-radio-list/read-fixed-radio-list-field.component";
|
|
49
|
+
import * as i48 from "./dynamic-radio-list/read-dynamic-radio-list-field.component";
|
|
50
|
+
import * as i49 from "./case-link/read-case-link-field.component";
|
|
51
|
+
import * as i50 from "./complex/read-complex-field.component";
|
|
52
|
+
import * as i51 from "./complex/read-complex-field-raw.component";
|
|
53
|
+
import * as i52 from "./complex/read-complex-field-table.component";
|
|
54
|
+
import * as i53 from "./complex/read-complex-field-collection-table.component";
|
|
55
|
+
import * as i54 from "./case-flag/read-case-flag-field.component";
|
|
56
|
+
import * as i55 from "./judicial-user/write-judicial-user-field.component";
|
|
57
|
+
import * as i56 from "./address/write-address-field.component";
|
|
58
|
+
import * as i57 from "./complex/write-complex-field.component";
|
|
59
|
+
import * as i58 from "./organisation/write-organisation-complex-field.component";
|
|
60
|
+
import * as i59 from "./document/write-document-field.component";
|
|
61
|
+
import * as i60 from "./dynamic-list/write-dynamic-list-field.component";
|
|
62
|
+
import * as i61 from "./dynamic-radio-list/write-dynamic-radio-list-field.component";
|
|
63
|
+
import * as i62 from "./text/write-text-field.component";
|
|
64
|
+
import * as i63 from "./date/write-date-container-field.component";
|
|
65
|
+
import * as i64 from "./text-area/write-text-area-field.component";
|
|
66
|
+
import * as i65 from "./phone-uk/write-phone-uk-field.component";
|
|
67
|
+
import * as i66 from "./number/write-number-field.component";
|
|
68
|
+
import * as i67 from "./email/write-email-field.component";
|
|
69
|
+
import * as i68 from "./date/write-date-field.component";
|
|
70
|
+
import * as i69 from "./case-flag/write-case-flag-field.component";
|
|
71
|
+
import * as i70 from "./yes-no/write-yes-no-field.component";
|
|
72
|
+
import * as i71 from "./organisation/write-organisation-field.component";
|
|
73
|
+
import * as i72 from "./order-summary/write-order-summary-field.component";
|
|
74
|
+
import * as i73 from "./money-gbp/write-money-gbp-field.component";
|
|
75
|
+
import * as i74 from "./multi-select-list/write-multi-select-list-field.component";
|
|
76
|
+
import * as i75 from "./fixed-list/write-fixed-list-field.component";
|
|
77
|
+
import * as i76 from "./fixed-radio-list/write-fixed-radio-list-field.component";
|
|
78
|
+
import * as i77 from "./case-link/write-case-link-field.component";
|
|
79
|
+
import * as i78 from "./collection/write-collection-field.component";
|
|
80
|
+
import * as i79 from "@angular/common";
|
|
81
|
+
import * as i80 from "@angular/router";
|
|
82
|
+
import * as i81 from "@angular/forms";
|
|
83
|
+
import * as i82 from "./utils/utils.module";
|
|
84
|
+
import * as i83 from "../../pipes/pipes.module";
|
|
85
|
+
import * as i84 from "../../../components/banners/banners.module";
|
|
86
|
+
import * as i85 from "../../../components/header/headers.module";
|
|
87
|
+
import * as i86 from "../../../components/footer/footers.module";
|
|
88
|
+
import * as i87 from "../../../components/body/body.module";
|
|
89
|
+
import * as i88 from "../../../components/form/form.module";
|
|
90
|
+
import * as i89 from "../../../components/tabs/tabs.module";
|
|
91
|
+
import * as i90 from "../../directives/substitutor/label-substitutor.module";
|
|
92
|
+
import * as i91 from "ngx-md";
|
|
93
|
+
import * as i92 from "@angular-material-components/datetime-picker";
|
|
94
|
+
import * as i93 from "@angular/material/form-field";
|
|
95
|
+
import * as i94 from "@angular/material/input";
|
|
96
|
+
import * as i95 from "@angular/material/datepicker";
|
|
97
|
+
import * as i96 from "@angular/material/autocomplete";
|
|
98
|
+
import * as i97 from "@hmcts/ccpay-web-component";
|
|
99
|
+
import * as i98 from "@nicky-lenaers/ngx-scroll-to";
|
|
90
100
|
export declare class PaletteModule {
|
|
91
101
|
static ɵfac: i0.ɵɵFactoryDef<PaletteModule, never>;
|
|
92
|
-
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.
|
|
102
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.CaseFlagTableComponent, typeof i7.SelectFlagTypeComponent, typeof i8.SearchLanguageInterpreterComponent, typeof i9.SelectFlagLocationComponent, typeof i10.ManageCaseFlagsComponent, typeof i11.AddCommentsComponent, typeof i12.UpdateFlagComponent, typeof i13.CaseFlagSummaryListComponent, typeof i14.UnsupportedFieldComponent, typeof i15.DatetimePickerComponent, typeof i16.WaysToPayFieldComponent, typeof i17.MarkdownComponent, typeof i18.FieldReadComponent, typeof i19.FieldWriteComponent, typeof i20.FieldReadLabelComponent, typeof i21.LabelFieldComponent, typeof i22.CasePaymentHistoryViewerFieldComponent, typeof i23.MoneyGbpInputComponent, typeof i24.CaseHistoryViewerFieldComponent, typeof i25.EventLogComponent, typeof i26.EventLogDetailsComponent, typeof i27.EventLogTableComponent, typeof i28.ReadTextFieldComponent, typeof i29.ReadTextAreaFieldComponent, typeof i30.ReadNumberFieldComponent, typeof i31.ReadEmailFieldComponent, typeof i32.ReadPhoneUKFieldComponent, typeof i33.ReadDateFieldComponent, typeof i34.ReadCollectionFieldComponent, typeof i35.ReadDocumentFieldComponent, typeof i36.ReadJudicialUserFieldComponent, typeof i37.ReadYesNoFieldComponent, typeof i38.ReadOrganisationFieldComponent, typeof i39.ReadOrganisationFieldTableComponent, typeof i40.ReadOrganisationFieldRawComponent, typeof i41.ReadOrderSummaryFieldComponent, typeof i42.ReadOrderSummaryRowComponent, typeof i43.ReadMoneyGbpFieldComponent, typeof i44.ReadMultiSelectListFieldComponent, typeof i45.ReadDynamicListFieldComponent, typeof i46.ReadFixedListFieldComponent, typeof i47.ReadFixedRadioListFieldComponent, typeof i48.ReadDynamicRadioListFieldComponent, typeof i49.ReadCaseLinkFieldComponent, typeof i50.ReadComplexFieldComponent, typeof i51.ReadComplexFieldRawComponent, typeof i52.ReadComplexFieldTableComponent, typeof i53.ReadComplexFieldCollectionTableComponent, typeof i54.ReadCaseFlagFieldComponent, typeof i55.WriteJudicialUserFieldComponent, typeof i56.WriteAddressFieldComponent, typeof i57.WriteComplexFieldComponent, typeof i58.WriteOrganisationComplexFieldComponent, typeof i59.WriteDocumentFieldComponent, typeof i60.WriteDynamicListFieldComponent, typeof i61.WriteDynamicRadioListFieldComponent, typeof i62.WriteTextFieldComponent, typeof i63.WriteDateContainerFieldComponent, typeof i64.WriteTextAreaFieldComponent, typeof i65.WritePhoneUKFieldComponent, typeof i66.WriteNumberFieldComponent, typeof i67.WriteEmailFieldComponent, typeof i68.WriteDateFieldComponent, typeof i69.WriteCaseFlagFieldComponent, typeof i70.WriteYesNoFieldComponent, typeof i71.WriteOrganisationFieldComponent, typeof i58.WriteOrganisationComplexFieldComponent, typeof i72.WriteOrderSummaryFieldComponent, typeof i73.WriteMoneyGbpFieldComponent, typeof i63.WriteDateContainerFieldComponent, typeof i74.WriteMultiSelectListFieldComponent, typeof i75.WriteFixedListFieldComponent, typeof i76.WriteFixedRadioListFieldComponent, typeof i77.WriteCaseLinkFieldComponent, typeof i78.WriteCollectionFieldComponent], [typeof i79.CommonModule, typeof i80.RouterModule, typeof i81.FormsModule, typeof i81.ReactiveFormsModule, typeof i82.PaletteUtilsModule, typeof i83.PipesModule, typeof i84.BannersModule, typeof i85.HeadersModule, typeof i86.FootersModule, typeof i87.BodyModule, typeof i88.FormModule, typeof i89.TabsModule, typeof i90.LabelSubstitutorModule, typeof i91.NgxMdModule, typeof i92.NgxMatDatetimePickerModule, typeof i92.NgxMatTimepickerModule, typeof i92.NgxMatNativeDateModule, typeof i93.MatFormFieldModule, typeof i94.MatInputModule, typeof i95.MatDatepickerModule, typeof i96.MatAutocompleteModule, typeof i97.PaymentLibModule, typeof i98.ScrollToModule], [typeof i92.NgxMatDatetimePickerModule, typeof i92.NgxMatNativeDateModule, typeof i92.NgxMatTimepickerModule, typeof i89.TabsModule, typeof i82.PaletteUtilsModule, typeof i83.PipesModule, typeof i14.UnsupportedFieldComponent, typeof i15.DatetimePickerComponent, typeof i16.WaysToPayFieldComponent, typeof i17.MarkdownComponent, typeof i18.FieldReadComponent, typeof i19.FieldWriteComponent, typeof i20.FieldReadLabelComponent, typeof i21.LabelFieldComponent, typeof i22.CasePaymentHistoryViewerFieldComponent, typeof i23.MoneyGbpInputComponent, typeof i24.CaseHistoryViewerFieldComponent, typeof i25.EventLogComponent, typeof i26.EventLogDetailsComponent, typeof i27.EventLogTableComponent, typeof i28.ReadTextFieldComponent, typeof i29.ReadTextAreaFieldComponent, typeof i30.ReadNumberFieldComponent, typeof i31.ReadEmailFieldComponent, typeof i32.ReadPhoneUKFieldComponent, typeof i33.ReadDateFieldComponent, typeof i34.ReadCollectionFieldComponent, typeof i35.ReadDocumentFieldComponent, typeof i36.ReadJudicialUserFieldComponent, typeof i37.ReadYesNoFieldComponent, typeof i38.ReadOrganisationFieldComponent, typeof i39.ReadOrganisationFieldTableComponent, typeof i40.ReadOrganisationFieldRawComponent, typeof i41.ReadOrderSummaryFieldComponent, typeof i42.ReadOrderSummaryRowComponent, typeof i43.ReadMoneyGbpFieldComponent, typeof i44.ReadMultiSelectListFieldComponent, typeof i45.ReadDynamicListFieldComponent, typeof i46.ReadFixedListFieldComponent, typeof i47.ReadFixedRadioListFieldComponent, typeof i48.ReadDynamicRadioListFieldComponent, typeof i49.ReadCaseLinkFieldComponent, typeof i50.ReadComplexFieldComponent, typeof i51.ReadComplexFieldRawComponent, typeof i52.ReadComplexFieldTableComponent, typeof i53.ReadComplexFieldCollectionTableComponent, typeof i54.ReadCaseFlagFieldComponent, typeof i55.WriteJudicialUserFieldComponent, typeof i56.WriteAddressFieldComponent, typeof i57.WriteComplexFieldComponent, typeof i58.WriteOrganisationComplexFieldComponent, typeof i59.WriteDocumentFieldComponent, typeof i60.WriteDynamicListFieldComponent, typeof i61.WriteDynamicRadioListFieldComponent, typeof i62.WriteTextFieldComponent, typeof i63.WriteDateContainerFieldComponent, typeof i64.WriteTextAreaFieldComponent, typeof i65.WritePhoneUKFieldComponent, typeof i66.WriteNumberFieldComponent, typeof i67.WriteEmailFieldComponent, typeof i68.WriteDateFieldComponent, typeof i69.WriteCaseFlagFieldComponent, typeof i70.WriteYesNoFieldComponent, typeof i71.WriteOrganisationFieldComponent, typeof i58.WriteOrganisationComplexFieldComponent, typeof i72.WriteOrderSummaryFieldComponent, typeof i73.WriteMoneyGbpFieldComponent, typeof i63.WriteDateContainerFieldComponent, typeof i74.WriteMultiSelectListFieldComponent, typeof i75.WriteFixedListFieldComponent, typeof i76.WriteFixedRadioListFieldComponent, typeof i77.WriteCaseLinkFieldComponent, typeof i78.WriteCollectionFieldComponent]>;
|
|
93
103
|
static ɵinj: i0.ɵɵInjectorDef<PaletteModule>;
|
|
94
104
|
}
|
|
95
105
|
//# sourceMappingURL=palette.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"palette.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"palette.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkJA,qBAgEa,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"palette.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,IAAI,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;
|
|
1
|
+
{"version":3,"file":"palette.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,IAAI,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;AAkDrE,qBACa,cAAc;IAElB,sBAAsB,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC;iCAFlE,cAAc;qCAAd,cAAc;CAkE1B"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DTO to provide typing of the response from the Reference Data Common API for Case Flags data.
|
|
3
|
+
*
|
|
4
|
+
* @see {@link https://tools.hmcts.net/confluence/pages/viewpage.action?pageId=1525476616#CaseFlagsHLDVersion1.0-Output}
|
|
5
|
+
* for full details
|
|
6
|
+
*/
|
|
7
|
+
export declare class FlagType {
|
|
8
|
+
name: string;
|
|
9
|
+
hearingRelevant: boolean;
|
|
10
|
+
flagComment: boolean;
|
|
11
|
+
flagCode: string;
|
|
12
|
+
isParent: boolean;
|
|
13
|
+
Path: string[];
|
|
14
|
+
childFlags: FlagType[];
|
|
15
|
+
listOfValuesLength: number;
|
|
16
|
+
listOfValues: {
|
|
17
|
+
key: string;
|
|
18
|
+
value: string;
|
|
19
|
+
}[];
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=flag-type.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flag-type.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-flag/flag-type.model.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,qBAAa,QAAQ;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,eAAe,EAAE,OAAO,CAAC;IACzB,WAAW,EAAE,OAAO,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,OAAO,CAAC;IAElB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,UAAU,EAAE,QAAQ,EAAE,CAAC;IACvB,kBAAkB,SAAK;IACvB,YAAY,EAAE;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAC,EAAE,CAAM;CAC1D"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DTO to provide typing of the response from the Reference Data Location API for HMCTS service details.
|
|
3
|
+
*/
|
|
4
|
+
export declare class HmctsServiceDetail {
|
|
5
|
+
business_area: string;
|
|
6
|
+
ccd_case_types: string[];
|
|
7
|
+
ccd_service_name: string;
|
|
8
|
+
jurisdiction: string;
|
|
9
|
+
last_update?: string;
|
|
10
|
+
org_unit: string;
|
|
11
|
+
service_code?: string;
|
|
12
|
+
service_description?: string;
|
|
13
|
+
service_id: number;
|
|
14
|
+
service_short_description?: string;
|
|
15
|
+
sub_business_area: string;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=hmcts-service-detail.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hmcts-service-detail.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-flag/hmcts-service-detail.model.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,qBAAa,kBAAkB;IAC7B,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,UAAU,SAAK;IACf,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,iBAAiB,EAAE,MAAM,CAAC;CAC3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-flag/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,8BAA8B,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Flags } from '../../components/palette/case-flag';
|
|
1
2
|
import { CaseField } from '../definition';
|
|
2
3
|
import { CaseTab } from './case-tab.model';
|
|
3
4
|
import { CaseViewEvent } from './case-view-event.model';
|
|
@@ -32,5 +33,6 @@ export declare class CaseView {
|
|
|
32
33
|
baseLocation?: number;
|
|
33
34
|
};
|
|
34
35
|
};
|
|
36
|
+
case_flag?: Flags;
|
|
35
37
|
}
|
|
36
38
|
//# sourceMappingURL=case-view.model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-view.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-view/case-view.model.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAG5D,qBAAa,QAAQ;IACZ,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE;QAChB,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,YAAY,EAAE;YACZ,EAAE,EAAE,MAAM,CAAC;YACX,IAAI,EAAE,MAAM,CAAC;YACb,WAAW,CAAC,EAAE,MAAM,CAAA;SACrB,CAAC;QACF,YAAY,CAAC,EAAE,OAAO,CAAA;KACvB,CAAC;IACK,KAAK,EAAE;QACZ,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,CAAC,EAAE,MAAM,CAAA;QACpB,aAAa,CAAC,EAAE,MAAM,CAAA;KACvB,CAAC;IACK,QAAQ,EAAE,MAAM,EAAE,CAAC;IAEnB,IAAI,EAAE,OAAO,EAAE,CAAC;IAChB,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B,MAAM,EAAE,aAAa,EAAE,CAAC;IAExB,cAAc,CAAC,EAAE,SAAS,EAAE,CAAC;IAC7B,WAAW,CAAC,EAAE;QACnB,qBAAqB,CAAC,EAAE,MAAM,CAAC;QAC/B,sBAAsB,CAAC,EAAE;YACvB,YAAY,CAAC,EAAE,MAAM,CAAA;SACtB,CAAA;KACF,CAAC;
|
|
1
|
+
{"version":3,"file":"case-view.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-view/case-view.model.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,oCAAoC,CAAC;AAC3D,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAG5D,qBAAa,QAAQ;IACZ,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE;QAChB,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,YAAY,EAAE;YACZ,EAAE,EAAE,MAAM,CAAC;YACX,IAAI,EAAE,MAAM,CAAC;YACb,WAAW,CAAC,EAAE,MAAM,CAAA;SACrB,CAAC;QACF,YAAY,CAAC,EAAE,OAAO,CAAA;KACvB,CAAC;IACK,KAAK,EAAE;QACZ,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,CAAC,EAAE,MAAM,CAAA;QACpB,aAAa,CAAC,EAAE,MAAM,CAAA;KACvB,CAAC;IACK,QAAQ,EAAE,MAAM,EAAE,CAAC;IAEnB,IAAI,EAAE,OAAO,EAAE,CAAC;IAChB,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B,MAAM,EAAE,aAAa,EAAE,CAAC;IAExB,cAAc,CAAC,EAAE,SAAS,EAAE,CAAC;IAC7B,WAAW,CAAC,EAAE;QACnB,qBAAqB,CAAC,EAAE,MAAM,CAAC;QAC/B,sBAAsB,CAAC,EAAE;YACvB,YAAY,CAAC,EAAE,MAAM,CAAA;SACtB,CAAA;KACF,CAAC;IACF,SAAS,CAAC,EAAE,KAAK,CAAC;CACnB"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare type FieldTypeEnum = 'Text' | 'TextArea' | 'Postcode' | 'Number' | 'YesOrNo' | 'Date' | 'DateTime' | 'Email' | 'PhoneUK' | 'MoneyGBP' | 'FixedList' | 'DynamicList' | 'FixedRadioList' | 'DynamicRadioList' | 'Complex' | 'Collection' | 'MultiSelectList' | 'Document' | 'Label' | 'AddressGlobal' | 'AddressGlobalUK' | 'AddressUK' | 'CasePaymentHistoryViewer' | 'CaseHistoryViewer' | 'Organisation' | 'WaysToPay' | 'JudicialUserField';
|
|
1
|
+
export declare type FieldTypeEnum = 'Text' | 'TextArea' | 'Postcode' | 'Number' | 'YesOrNo' | 'Date' | 'DateTime' | 'Email' | 'PhoneUK' | 'MoneyGBP' | 'FixedList' | 'DynamicList' | 'FixedRadioList' | 'DynamicRadioList' | 'Complex' | 'Collection' | 'MultiSelectList' | 'Document' | 'Label' | 'AddressGlobal' | 'AddressGlobalUK' | 'AddressUK' | 'CasePaymentHistoryViewer' | 'CaseHistoryViewer' | 'Organisation' | 'WaysToPay' | 'Flags' | 'FlagDetail' | 'FlagLauncher' | 'CaseFlag' | 'JudicialUserField';
|
|
2
2
|
//# sourceMappingURL=field-type-enum.model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"field-type-enum.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/definition/field-type-enum.model.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa,GACvB,MAAM,GACJ,UAAU,GACV,UAAU,GACV,QAAQ,GACR,SAAS,GACT,MAAM,GACN,UAAU,GACV,OAAO,GACP,SAAS,GACT,UAAU,GACV,WAAW,GACX,aAAa,GACb,gBAAgB,GAChB,kBAAkB,GAClB,SAAS,GACT,YAAY,GACZ,iBAAiB,GACjB,UAAU,GACV,OAAO,GACP,eAAe,GACf,iBAAiB,GACjB,WAAW,GACX,0BAA0B,GAC1B,mBAAmB,GACnB,cAAc,GACd,WAAW,GACX,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"field-type-enum.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/definition/field-type-enum.model.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa,GACvB,MAAM,GACJ,UAAU,GACV,UAAU,GACV,QAAQ,GACR,SAAS,GACT,MAAM,GACN,UAAU,GACV,OAAO,GACP,SAAS,GACT,UAAU,GACV,WAAW,GACX,aAAa,GACb,gBAAgB,GAChB,kBAAkB,GAClB,SAAS,GACT,YAAY,GACZ,iBAAiB,GACjB,UAAU,GACV,OAAO,GACP,eAAe,GACf,iBAAiB,GACjB,WAAW,GACX,0BAA0B,GAC1B,mBAAmB,GACnB,cAAc,GACd,WAAW,GACX,OAAO,GACP,YAAY,GACZ,cAAc,GACd,UAAU,GACV,mBAAmB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ccd-read-fields-filter.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAI5D,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;AAGrE,qBAGa,oBAAqB,YAAW,aAAa;IAExD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAKlC;IAEF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,kBAAkB,
|
|
1
|
+
{"version":3,"file":"ccd-read-fields-filter.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAI5D,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;AAGrE,qBAGa,oBAAqB,YAAW,aAAa;IAExD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAKlC;IAEF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,kBAAkB,CAA6D;IAEvG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAGlC;IAEF;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,cAAc;IAa7B,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAoBhC,OAAO,CAAC,MAAM,CAAC,OAAO;IAKtB,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,eAAe;IAK9B,OAAO,CAAC,MAAM,CAAC,SAAS;IAoBxB,OAAO,CAAC,MAAM,CAAC,QAAQ;IAUvB,OAAO,CAAC,MAAM,CAAC,uBAAuB;IAqBtC;;OAEG;IACI,SAAS,CACd,YAAY,EAAE,SAAS,EAAE,SAAS,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC,EAAE,MAAM,EAC5D,WAAW,UAAQ,EAAE,SAAS,CAAC,EAAE,SAAS,GAAG,eAAe,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,EAAE;iCA1HhF,oBAAoB;uCAApB,oBAAoB;CA4JhC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"address-type.enum.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/addresses/address-type.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW;IACnB,GAAG,QAAQ;IACX,EAAE,mBAAmB;IACrB,IAAI,SAAS;CAChB"}
|
|
@@ -6,9 +6,6 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
export declare class AddressesService {
|
|
7
7
|
private readonly http;
|
|
8
8
|
private readonly appConfig;
|
|
9
|
-
static readonly DPA = "DPA";
|
|
10
|
-
static readonly UK = "United Kingdom";
|
|
11
|
-
static readonly RD06 = "RD06";
|
|
12
9
|
constructor(http: HttpService, appConfig: AbstractAppConfig);
|
|
13
10
|
getAddressesForPostcode(postcode: string): Observable<AddressModel[]>;
|
|
14
11
|
private format;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addresses.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/addresses/addresses.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;;
|
|
1
|
+
{"version":3,"file":"addresses.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/addresses/addresses.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;;AAItC,qBACa,gBAAgB;IAEf,OAAO,CAAC,QAAQ,CAAC,IAAI;IAAe,OAAO,CAAC,QAAQ,CAAC,SAAS;gBAA7C,IAAI,EAAE,WAAW,EAAmB,SAAS,EAAE,iBAAiB;IAGtF,uBAAuB,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,CAAC,YAAY,EAAE,CAAC;IAa5E,OAAO,CAAC,MAAM;IAId,OAAO,CAAC,kBAAkB;IAO1B,OAAO,CAAC,mBAAmB;IAY3B,OAAO,CAAC,aAAa;iCAzCV,gBAAgB;qCAAhB,gBAAgB;CAiD5B"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { AbstractAppConfig } from '../../../app.config';
|
|
3
|
+
import { FlagType, HmctsServiceDetail } from '../../domain/case-flag';
|
|
4
|
+
import { HttpService } from '../http';
|
|
5
|
+
import { RefdataCaseFlagType } from './refdata-case-flag-type.enum';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CaseFlagRefdataService {
|
|
8
|
+
private readonly http;
|
|
9
|
+
private readonly appConfig;
|
|
10
|
+
constructor(http: HttpService, appConfig: AbstractAppConfig);
|
|
11
|
+
/**
|
|
12
|
+
* Retrieves the Case Flag types for an HMCTS service.
|
|
13
|
+
*
|
|
14
|
+
* @param serviceId The HMCTS Service Code for a jurisdiction or service. **Note:** This is _not_ the service name
|
|
15
|
+
* @param flagType `PARTY` for party-level flags; `CASE` for case-level
|
|
16
|
+
* @param welshRequired `true` if Welsh language versions of flags are required; `false` otherwise (future feature)
|
|
17
|
+
* @returns An `Observable` of an array of flag types
|
|
18
|
+
*/
|
|
19
|
+
getCaseFlagsRefdata(serviceId: string, flagType?: RefdataCaseFlagType, welshRequired?: boolean): Observable<FlagType[]>;
|
|
20
|
+
/**
|
|
21
|
+
* Retrieves the HMCTS service details for a jurisdiction or service, including service code. (For example, the "SSCS"
|
|
22
|
+
* service has a corresponding service code of "BBA3".)
|
|
23
|
+
*
|
|
24
|
+
* @param serviceNames The service name(s) to look up, comma-separated if more than one
|
|
25
|
+
* @returns An `Observable` of an array of service details
|
|
26
|
+
*/
|
|
27
|
+
getHmctsServiceDetails(serviceNames?: string): Observable<HmctsServiceDetail[]>;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDef<CaseFlagRefdataService, never>;
|
|
29
|
+
static ɵprov: i0.ɵɵInjectableDef<CaseFlagRefdataService>;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=case-flag-refdata.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-flag-refdata.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/case-flag/case-flag-refdata.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAkB,MAAM,MAAM,CAAC;AAElD,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,QAAQ,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AACtE,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AACtC,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;;AAEpE,qBACa,sBAAsB;IAE/B,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,SAAS;gBADT,IAAI,EAAE,WAAW,EACjB,SAAS,EAAE,iBAAiB;IAG/C;;;;;;;OAOG;IACI,mBAAmB,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,mBAAmB,EAAE,aAAa,CAAC,EAAE,OAAO,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;IAkC9H;;;;;;OAMG;IACI,sBAAsB,CAAC,YAAY,CAAC,EAAE,MAAM,GAAG,UAAU,CAAC,kBAAkB,EAAE,CAAC;iCAvD3E,sBAAsB;qCAAtB,sBAAsB;CAqElC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/case-flag/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,+BAA+B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"refdata-case-flag-type.enum.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/case-flag/refdata-case-flag-type.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC7B,KAAK,UAAU;IACf,IAAI,SAAS;CACd"}
|
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
import { AbstractControl, FormArray, FormControl, FormGroup } from '@angular/forms';
|
|
2
|
-
import { WizardPage } from '../../components/case-editor/domain
|
|
2
|
+
import { WizardPage } from '../../components/case-editor/domain';
|
|
3
3
|
import { AbstractFormFieldComponent } from '../../components/palette/base-field/abstract-form-field.component';
|
|
4
|
-
import {
|
|
5
|
-
import { CaseView } from '../../domain
|
|
6
|
-
import { CaseField } from '../../domain/definition/case-field.model';
|
|
7
|
-
import { FieldTypeEnum } from '../../domain/definition/field-type-enum.model';
|
|
8
|
-
import { Predicate } from '../../domain/predicate.model';
|
|
4
|
+
import { FlagsWithFormGroupPath } from '../../components/palette/case-flag/domain/case-flag.model';
|
|
5
|
+
import { CaseEventTrigger, CaseField, CaseView, FieldType, FieldTypeEnum, Predicate } from '../../domain';
|
|
9
6
|
import * as i0 from "@angular/core";
|
|
10
7
|
export declare class FieldsUtils {
|
|
8
|
+
private static readonly caseLevelCaseFlagsFieldId;
|
|
9
|
+
private static readonly currencyPipe;
|
|
10
|
+
private static readonly datePipe;
|
|
11
11
|
static readonly LABEL_SUFFIX = "---LABEL";
|
|
12
12
|
static readonly SERVER_RESPONSE_FIELD_TYPE_COLLECTION = "Collection";
|
|
13
13
|
static readonly SERVER_RESPONSE_FIELD_TYPE_COMPLEX = "Complex";
|
|
14
14
|
static readonly SERVER_RESPONSE_FIELD_TYPE_DYNAMIC_LIST_TYPE: FieldTypeEnum[];
|
|
15
|
-
private static readonly currencyPipe;
|
|
16
|
-
private static readonly datePipe;
|
|
17
15
|
static convertToCaseField(obj: any): CaseField;
|
|
18
16
|
static toValuesMap(caseFields: CaseField[]): any;
|
|
19
17
|
static getType(elem: any): string;
|
|
@@ -66,6 +64,41 @@ export declare class FieldsUtils {
|
|
|
66
64
|
private static setDynamicListDefinition;
|
|
67
65
|
private static getDynamicListValue;
|
|
68
66
|
private static getNestedFieldValues;
|
|
67
|
+
static isFlagsCaseField(caseField: CaseField): boolean;
|
|
68
|
+
static isFlagLauncherCaseField(caseField: CaseField): boolean;
|
|
69
|
+
static isFlagsFieldType(fieldType: FieldType): boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Extract flags data from a `CaseField` instance, recursing and iterating through sub-fields of a Complex field or
|
|
72
|
+
* each field in a Collection field.
|
|
73
|
+
*
|
|
74
|
+
* @param flags An array for accumulating extracted flags data and derived `FormGroup` paths
|
|
75
|
+
* @param caseField A `CaseField` instance from which to extract the flags data
|
|
76
|
+
* @param pathToFlagsFormGroup A (dot-delimited) string for concatenating the name of each control that forms the path
|
|
77
|
+
* to the `FormGroup` for the `Flags` instance
|
|
78
|
+
* @param topLevelCaseField The top-level `CaseField` that contains the value property. This is required because _only
|
|
79
|
+
* top-level_ `CaseField`s contain actual values and a reference needs to be maintained to such a field
|
|
80
|
+
* @param currentValue The current value object of a `CaseField` that is a sub-field of a non root-level Complex field.
|
|
81
|
+
* Required for mapping the `CaseField` value to a `Flags` object if it is a "Flags" `CaseField`. (For Complex types,
|
|
82
|
+
* only the _root-level_ `CaseField` contains a value property - all sub-fields, including any nested Complex fields,
|
|
83
|
+
* do *not* contain any values themselves.)
|
|
84
|
+
* @returns An array of `FlagsWithFormGroupPath`, each instance comprising a `Flags` object derived from a `CaseField`
|
|
85
|
+
* of type "Flags", and the dot-delimited path string to the corresponding `FormGroup`
|
|
86
|
+
*/
|
|
87
|
+
static extractFlagsDataFromCaseField(flags: FlagsWithFormGroupPath[], caseField: CaseField, pathToFlagsFormGroup: string, topLevelCaseField: CaseField, currentValue?: object): FlagsWithFormGroupPath[];
|
|
88
|
+
private static mapCaseFieldToFlagsWithFormGroupPathObject;
|
|
89
|
+
private static mapValueToFlagsWithFormGroupPathObject;
|
|
90
|
+
/**
|
|
91
|
+
* Count active flags in a `CaseField` instance, recursing and iterating through sub-fields of a Complex field or each
|
|
92
|
+
* field in a Collection field.
|
|
93
|
+
*
|
|
94
|
+
* @param activeCount An accumulation of the total number of active flags
|
|
95
|
+
* @param caseField A `CaseField` instance for which to count the active flags
|
|
96
|
+
* @param currentValue The current value object of a `CaseField` that is a sub-field of a non root-level Complex field.
|
|
97
|
+
* (For Complex types, only the _root-level_ `CaseField` contains a value property - all sub-fields, including any
|
|
98
|
+
* nested Complex fields, do *not* contain any values themselves.)
|
|
99
|
+
* @returns The count of active flags
|
|
100
|
+
*/
|
|
101
|
+
static countActiveFlagsInCaseField(activeCount: number, caseField: CaseField, currentValue?: object): number;
|
|
69
102
|
buildCanShowPredicate(eventTrigger: CaseEventTrigger, form: any): Predicate<WizardPage>;
|
|
70
103
|
getCurrentEventState(eventTrigger: {
|
|
71
104
|
case_fields: CaseField[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fields.utils.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/fields/fields.utils.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"fields.utils.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/fields/fields.utils.ts"],"names":[],"mappings":"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"}
|