@hmcts/ccd-case-ui-toolkit 5.0.32-angular11-upgrade → 5.0.34-case-file-view-merge-into-angular-11
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 +5773 -1797
- 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/shared/components/case-editor/case-edit-page/case-edit-page.component.js +15 -11
- package/esm2015/lib/shared/components/case-editor/services/cases.service.js +28 -1
- package/esm2015/lib/shared/components/case-editor/services/page-validation.service.js +10 -2
- package/esm2015/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.js +9 -2
- package/esm2015/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.js +37 -26
- package/esm2015/lib/shared/components/loading-spinner/loading-spinner.component.js +1 -1
- package/esm2015/lib/shared/components/palette/base-field/abstract-form-field.component.js +4 -2
- package/esm2015/lib/shared/components/palette/base-field/field-write.component.js +8 -14
- package/esm2015/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.js +72 -0
- package/esm2015/lib/shared/components/palette/case-file-view/case-file-view-field.component.js +134 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.js +52 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.js +38 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.js +353 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component.js +159 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/index.js +6 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model.js +2 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.js +100 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/shared/index.js +2 -0
- package/esm2015/lib/shared/components/palette/case-file-view/index.js +4 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.js +71 -41
- package/esm2015/lib/shared/components/palette/case-flag/domain/case-flag.model.js +1 -1
- package/esm2015/lib/shared/components/palette/case-flag/read-case-flag-field.component.js +2 -3
- package/esm2015/lib/shared/components/palette/case-flag/write-case-flag-field.component.js +13 -9
- package/esm2015/lib/shared/components/palette/case-link/components/before-you-start/before-you-start.component.js +125 -0
- package/esm2015/lib/shared/components/palette/case-link/components/check-your-answers/check-your-answers.component.js +198 -0
- package/esm2015/lib/shared/components/palette/case-link/components/index.js +10 -0
- package/esm2015/lib/shared/components/palette/case-link/components/link-cases/link-cases.component.js +497 -0
- package/esm2015/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-from-table.component.js +221 -0
- package/esm2015/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-to-table.component.js +286 -0
- package/esm2015/lib/shared/components/palette/case-link/components/no-linked-cases/no-linked-cases.component.js +76 -0
- package/esm2015/lib/shared/components/palette/case-link/components/read-linked-cases.component.js +178 -0
- package/esm2015/lib/shared/components/palette/case-link/components/unlink-cases/unlink-cases.component.js +216 -0
- package/esm2015/lib/shared/components/palette/case-link/components/write-linked-cases.component.js +260 -0
- package/esm2015/lib/shared/components/palette/case-link/domain/index.js +3 -0
- package/esm2015/lib/shared/components/palette/case-link/domain/linked-cases-state.model.js +2 -0
- package/esm2015/lib/shared/components/palette/case-link/domain/linked-cases.model.js +19 -0
- package/esm2015/lib/shared/components/palette/case-link/enums/index.js +2 -0
- package/esm2015/lib/shared/components/palette/case-link/enums/write-linked-cases-field.enum.js +33 -0
- package/esm2015/lib/shared/components/palette/case-link/index.js +4 -1
- package/esm2015/lib/shared/components/palette/case-link/read-case-link-field.component.js +28 -8
- package/esm2015/lib/shared/components/palette/case-link/services/index.js +2 -0
- package/esm2015/lib/shared/components/palette/case-link/services/jurisdiction.service.js +22 -0
- package/esm2015/lib/shared/components/palette/case-link/services/linked-cases.service.js +136 -0
- package/esm2015/lib/shared/components/palette/case-link/utils/validators.utils.js +27 -0
- package/esm2015/lib/shared/components/palette/case-link/write-case-link-field.component.js +79 -65
- package/esm2015/lib/shared/components/palette/index.js +7 -2
- package/esm2015/lib/shared/components/palette/palette.module.js +135 -27
- package/esm2015/lib/shared/components/palette/palette.service.js +28 -4
- package/esm2015/lib/shared/components/palette/utils/is-compound.pipe.js +2 -2
- package/esm2015/lib/shared/components/search-result/search-result.component.js +53 -46
- package/esm2015/lib/shared/domain/case-file-view/case-file-view-category.model.js +3 -0
- package/esm2015/lib/shared/domain/case-file-view/case-file-view-document.model.js +3 -0
- package/esm2015/lib/shared/domain/case-file-view/categories-and-documents.model.js +7 -0
- package/esm2015/lib/shared/domain/case-file-view/document-tree-node/document-tree-node-type.model.js +6 -0
- package/esm2015/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.js +93 -0
- package/esm2015/lib/shared/domain/case-file-view/index.js +6 -0
- 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 +6 -2
- package/esm2015/lib/shared/pipes/index.js +2 -1
- package/esm2015/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.js +23 -0
- package/esm2015/lib/shared/pipes/link-cases-reason-code/index.js +2 -0
- package/esm2015/lib/shared/pipes/pipes.module.js +9 -5
- package/esm2015/lib/shared/services/case-file-view/case-file-view.service.js +46 -0
- package/esm2015/lib/shared/services/case-file-view/index.js +2 -0
- package/esm2015/lib/shared/services/common-data-service/common-data-service.js +22 -0
- package/esm2015/lib/shared/services/fields/fields.purger.js +128 -112
- package/esm2015/lib/shared/services/fields/fields.utils.js +11 -2
- package/esm2015/lib/shared/services/form/form-value.service.js +9 -7
- package/esm2015/lib/shared/services/index.js +2 -1
- package/esm2015/lib/shared/services/jurisdiction/jurisdiction.service.js +1 -1
- package/esm2015/lib/shared/services/search/search.service.js +8 -1
- package/esm2015/public-api.js +3 -1
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +5185 -1665
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/app.config.d.ts +9 -1
- package/lib/app.config.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts +2 -0
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts.map +1 -1
- package/lib/shared/components/case-editor/services/cases.service.d.ts +7 -0
- package/lib/shared/components/case-editor/services/cases.service.d.ts.map +1 -1
- package/lib/shared/components/case-editor/services/page-validation.service.d.ts +1 -0
- package/lib/shared/components/case-editor/services/page-validation.service.d.ts.map +1 -1
- 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 +4 -3
- package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts.map +1 -1
- package/lib/shared/components/palette/base-field/abstract-form-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/base-field/field-write.component.d.ts +2 -2
- package/lib/shared/components/palette/base-field/field-write.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.d.ts +8 -0
- package/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts +33 -0
- package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.d.ts +17 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.d.ts +13 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.d.ts +53 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component.d.ts +28 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/index.d.ts +6 -0
- package/lib/shared/components/palette/case-file-view/components/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model.d.ts +6 -0
- package/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.d.ts +13 -0
- package/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/shared/index.d.ts +2 -0
- package/lib/shared/components/palette/case-file-view/components/shared/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/index.d.ts +4 -0
- package/lib/shared/components/palette/case-file-view/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts +11 -5
- package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/domain/case-flag.model.d.ts +2 -0
- package/lib/shared/components/palette/case-flag/domain/case-flag.model.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/read-case-flag-field.component.d.ts +0 -1
- package/lib/shared/components/palette/case-flag/read-case-flag-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-link/components/before-you-start/before-you-start.component.d.ts +19 -0
- package/lib/shared/components/palette/case-link/components/before-you-start/before-you-start.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/check-your-answers/check-your-answers.component.d.ts +18 -0
- package/lib/shared/components/palette/case-link/components/check-your-answers/check-your-answers.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/index.d.ts +10 -0
- package/lib/shared/components/palette/case-link/components/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/link-cases/link-cases.component.d.ts +45 -0
- package/lib/shared/components/palette/case-link/components/link-cases/link-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-from-table.component.d.ts +42 -0
- package/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-from-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-to-table.component.d.ts +45 -0
- package/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-to-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/no-linked-cases/no-linked-cases.component.d.ts +12 -0
- package/lib/shared/components/palette/case-link/components/no-linked-cases/no-linked-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/read-linked-cases.component.d.ts +37 -0
- package/lib/shared/components/palette/case-link/components/read-linked-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/unlink-cases/unlink-cases.component.d.ts +38 -0
- package/lib/shared/components/palette/case-link/components/unlink-cases/unlink-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/write-linked-cases.component.d.ts +45 -0
- package/lib/shared/components/palette/case-link/components/write-linked-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/domain/index.d.ts +3 -0
- package/lib/shared/components/palette/case-link/domain/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/domain/linked-cases-state.model.d.ts +12 -0
- package/lib/shared/components/palette/case-link/domain/linked-cases-state.model.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/domain/linked-cases.model.d.ts +65 -0
- package/lib/shared/components/palette/case-link/domain/linked-cases.model.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/enums/index.d.ts +2 -0
- package/lib/shared/components/palette/case-link/enums/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/enums/write-linked-cases-field.enum.d.ts +29 -0
- package/lib/shared/components/palette/case-link/enums/write-linked-cases-field.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/index.d.ts +3 -0
- package/lib/shared/components/palette/case-link/index.d.ts.map +1 -1
- package/lib/shared/components/palette/case-link/read-case-link-field.component.d.ts +3 -0
- package/lib/shared/components/palette/case-link/read-case-link-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-link/services/index.d.ts +2 -0
- package/lib/shared/components/palette/case-link/services/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/services/jurisdiction.service.d.ts +12 -0
- package/lib/shared/components/palette/case-link/services/jurisdiction.service.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/services/linked-cases.service.d.ts +51 -0
- package/lib/shared/components/palette/case-link/services/linked-cases.service.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/utils/validators.utils.d.ts +10 -0
- package/lib/shared/components/palette/case-link/utils/validators.utils.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/write-case-link-field.component.d.ts +14 -3
- package/lib/shared/components/palette/case-link/write-case-link-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/index.d.ts +6 -1
- package/lib/shared/components/palette/index.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.module.d.ts +66 -45
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.service.d.ts +2 -0
- package/lib/shared/components/palette/palette.service.d.ts.map +1 -1
- package/lib/shared/domain/case-file-view/case-file-view-category.model.d.ts +9 -0
- package/lib/shared/domain/case-file-view/case-file-view-category.model.d.ts.map +1 -0
- package/lib/shared/domain/case-file-view/case-file-view-document.model.d.ts +8 -0
- package/lib/shared/domain/case-file-view/case-file-view-document.model.d.ts.map +1 -0
- package/lib/shared/domain/case-file-view/categories-and-documents.model.d.ts +12 -0
- package/lib/shared/domain/case-file-view/categories-and-documents.model.d.ts.map +1 -0
- package/lib/shared/domain/case-file-view/document-tree-node/document-tree-node-type.model.d.ts +5 -0
- package/lib/shared/domain/case-file-view/document-tree-node/document-tree-node-type.model.d.ts.map +1 -0
- package/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.d.ts +14 -0
- package/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.d.ts.map +1 -0
- package/lib/shared/domain/case-file-view/index.d.ts +6 -0
- package/lib/shared/domain/case-file-view/index.d.ts.map +1 -0
- 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/pipes/index.d.ts +1 -0
- package/lib/shared/pipes/index.d.ts.map +1 -1
- package/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.d.ts +11 -0
- package/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.d.ts.map +1 -0
- package/lib/shared/pipes/link-cases-reason-code/index.d.ts +2 -0
- package/lib/shared/pipes/link-cases-reason-code/index.d.ts.map +1 -0
- package/lib/shared/pipes/pipes.module.d.ts +3 -2
- package/lib/shared/pipes/pipes.module.d.ts.map +1 -1
- package/lib/shared/services/case-file-view/case-file-view.service.d.ts +21 -0
- package/lib/shared/services/case-file-view/case-file-view.service.d.ts.map +1 -0
- package/lib/shared/services/case-file-view/index.d.ts +2 -0
- package/lib/shared/services/case-file-view/index.d.ts.map +1 -0
- package/lib/shared/services/common-data-service/common-data-service.d.ts +29 -0
- package/lib/shared/services/common-data-service/common-data-service.d.ts.map +1 -0
- package/lib/shared/services/fields/fields.purger.d.ts +19 -12
- package/lib/shared/services/fields/fields.purger.d.ts.map +1 -1
- package/lib/shared/services/fields/fields.utils.d.ts +1 -0
- package/lib/shared/services/fields/fields.utils.d.ts.map +1 -1
- 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/lib/shared/services/jurisdiction/jurisdiction.service.d.ts.map +1 -1
- package/lib/shared/services/search/search.service.d.ts +4 -0
- package/lib/shared/services/search/search.service.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/public-api.d.ts.map +1 -1
|
@@ -7,18 +7,6 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class FieldsPurger {
|
|
8
8
|
private readonly fieldsUtils;
|
|
9
9
|
constructor(fieldsUtils: FieldsUtils);
|
|
10
|
-
/**
|
|
11
|
-
* Deletes a field value by setting the value of the corresponding {@link FormControl} to null (or an empty array
|
|
12
|
-
* if the field type is `Collection`), except when the field type is `Complex` or `Document`. For `Complex` field
|
|
13
|
-
* types, this recursive method is called until simple or "base" field types are reached. For `Document` field
|
|
14
|
-
* types, its _sub-field_ `FormControl` values are set to null.
|
|
15
|
-
*
|
|
16
|
-
* @param formGroup The `FormGroup` instance containing the `FormControl` for the specified field
|
|
17
|
-
* @param field The `CaseField` whose value is to be deleted in the backend
|
|
18
|
-
* @param parentField Reference to the parent `CaseField`. Used for checking specifically where a Complex field and
|
|
19
|
-
* its sub-fields have `retain_hidden_value` set to `true`, but the field's parent has it set to `false` or undefined
|
|
20
|
-
*/
|
|
21
|
-
deleteFieldValue(formGroup: FormGroup, field: CaseField, parentField?: CaseField): void;
|
|
22
10
|
clearHiddenFields(form: FormGroup, wizard: Wizard, eventTrigger: CaseEventTrigger, currentPageId: string): void;
|
|
23
11
|
private clearHiddenFieldForPageShowCondition;
|
|
24
12
|
private clearHiddenFieldForFieldShowCondition;
|
|
@@ -33,6 +21,25 @@ export declare class FieldsPurger {
|
|
|
33
21
|
private getType;
|
|
34
22
|
private isObject;
|
|
35
23
|
private isReadonly;
|
|
24
|
+
/**
|
|
25
|
+
* Deletes a field value by setting the value of the corresponding {@link FormControl} to null (or an empty array
|
|
26
|
+
* if the field type is `Collection`), except when the field type is `Complex` or `Document`. For `Complex` field
|
|
27
|
+
* types, this recursive method is called until simple or "base" field types are reached. For `Document` field
|
|
28
|
+
* types, its _sub-field_ `FormControl` values are set to null.
|
|
29
|
+
*
|
|
30
|
+
* @param formGroup The `FormGroup` instance containing the `FormControl` for the specified field
|
|
31
|
+
* @param field The `CaseField` whose value is to be deleted in the backend
|
|
32
|
+
* @param parentField Reference to the parent `CaseField`. Used for checking specifically where a Complex field and
|
|
33
|
+
* its sub-fields have `retain_hidden_value` set to `true`, but the field's parent has it set to `false` or undefined
|
|
34
|
+
*/
|
|
35
|
+
deleteFieldValue(formGroup: FormGroup, field: CaseField, parentField?: CaseField): void;
|
|
36
|
+
/**
|
|
37
|
+
* Maps all values of an array to `null`, retaining keys for any values that are objects. For example,
|
|
38
|
+
* `[{ id: '0', value: 'Test' }, 'Test']` would become `[{ id: null, value: null }, null]`.
|
|
39
|
+
* @param array The array of values to map
|
|
40
|
+
* @returns A new array with the mapped values
|
|
41
|
+
*/
|
|
42
|
+
mapArrayValuesToNull(array: any[]): any[];
|
|
36
43
|
static ɵfac: i0.ɵɵFactoryDef<FieldsPurger, never>;
|
|
37
44
|
static ɵprov: i0.ɵɵInjectableDef<FieldsPurger>;
|
|
38
45
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fields.purger.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/fields/fields.purger.ts"],"names":[],"mappings":"AACA,OAAO,EAA0B,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAInE,OAAO,EAAE,MAAM,EAAE,MAAM,kDAAkD,CAAC;AAE1E,OAAO,EAAE,gBAAgB,EAAE,MAAM,iDAAiD,CAAC;AACnF,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAErE,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAG7C,qBACa,YAAY;IAEX,OAAO,CAAC,QAAQ,CAAC,WAAW;gBAAX,WAAW,EAAE,WAAW;
|
|
1
|
+
{"version":3,"file":"fields.purger.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/fields/fields.purger.ts"],"names":[],"mappings":"AACA,OAAO,EAA0B,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAInE,OAAO,EAAE,MAAM,EAAE,MAAM,kDAAkD,CAAC;AAE1E,OAAO,EAAE,gBAAgB,EAAE,MAAM,iDAAiD,CAAC;AACnF,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAErE,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAG7C,qBACa,YAAY;IAEX,OAAO,CAAC,QAAQ,CAAC,WAAW;gBAAX,WAAW,EAAE,WAAW;IAE9C,iBAAiB,CAAC,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,GAAG,IAAI;IAKtH,OAAO,CAAC,oCAAoC;IAY5C,OAAO,CAAC,qCAAqC;IAgB7C,OAAO,CAAC,4BAA4B;IAoBpC,OAAO,CAAC,QAAQ;IAIhB,OAAO,CAAC,gCAAgC;IAIxC,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,qBAAqB;IAI7B,OAAO,CAAC,mBAAmB;IAM3B,OAAO,CAAC,UAAU;IAuElB,OAAO,CAAC,SAAS;IAOjB,OAAO,CAAC,OAAO;IAIf,OAAO,CAAC,QAAQ;IAKhB,OAAO,CAAC,UAAU;IAIlB;;;;;;;;;;OAUG;IACI,gBAAgB,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE,WAAW,CAAC,EAAE,SAAS,GAAG,IAAI;IA2G9F;;;;;OAKG;IACI,oBAAoB,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE;iCAtSrC,YAAY;qCAAZ,YAAY;CA6SxB"}
|
|
@@ -24,6 +24,7 @@ export declare class FieldsUtils {
|
|
|
24
24
|
static isNonEmptyArray(pageFormFields: any): boolean;
|
|
25
25
|
static isCollection(pageFormFields: any): boolean;
|
|
26
26
|
static isCollectionWithValue(pageFormFields: any[]): boolean;
|
|
27
|
+
static isLinkedCasesCaseField(caseField: CaseField): boolean;
|
|
27
28
|
static cloneObject(obj: any): any;
|
|
28
29
|
static getCaseFields(caseView: CaseView): CaseField[];
|
|
29
30
|
static addCaseFieldAndComponentReferences(c: AbstractControl, cf: CaseField, comp: AbstractFormFieldComponent): void;
|
|
@@ -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;AAEpF,OAAO,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,MAAM,mEAAmE,CAAC;AAC/G,OAAO,EAAc,sBAAsB,EAAE,MAAM,2DAA2D,CAAC;AAG/G,OAAO,EAAE,gBAAgB,EAAE,SAAS,EAAW,QAAQ,EAAE,SAAS,EAAE,aAAa,EAAiB,SAAS,EAAE,MAAM,cAAc,CAAC;;AAIlI,qBACa,WAAW;IAEtB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,yBAAyB,CAAe;IAChE,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAA2C;IAC/E,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAyD;IAEzF,gBAAuB,YAAY,cAAc;IAEjD,gBAAuB,qCAAqC,gBAAgB;IAC5E,gBAAuB,kCAAkC,aAAa;IACtE,gBAAuB,4CAA4C,EAAE,aAAa,EAAE,CAAuC;WAE7G,kBAAkB,CAAC,GAAG,EAAE,GAAG,GAAG,SAAS;WAOvC,WAAW,CAAC,UAAU,EAAE,SAAS,EAAE,GAAG,GAAG;WAQzC,OAAO,CAAC,IAAI,EAAE,GAAG,GAAG,MAAM;WAI1B,QAAQ,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;WAI5B,gBAAgB,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;WAIpC,OAAO,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;WAI3B,+BAA+B,CAAC,UAAU,EAAE,GAAG,EAAE,GAAG,OAAO;WAI3D,yBAAyB,CAAC,UAAU,EAAE,GAAG,GAAG,OAAO;WAInD,kBAAkB,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;WAItC,eAAe,CAAC,cAAc,EAAE,GAAG,GAAG,OAAO;WAI7C,YAAY,CAAC,cAAc,EAAE,GAAG,GAAG,OAAO;WAI1C,qBAAqB,CAAC,cAAc,EAAE,GAAG,EAAE,GAAG,OAAO;WAIrD,WAAW,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG;WAK1B,aAAa,CAAC,QAAQ,EAAE,QAAQ,GAAG,SAAS,EAAE;WAW9C,kCAAkC,CAAE,CAAC,EAAE,eAAe,EAAE,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,0BAA0B,GAAG,IAAI;IAK5H;;;;;OAKG;WACW,sBAAsB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO;IAiB7D;;;;;;;;;OASG;WACY,wBAAwB,CAAC,QAAQ,EAAE;QAAE,WAAW,EAAE,SAAS,EAAE,CAAA;KAAE,GAAG,GAAG;IAapF,OAAO,CAAC,MAAM,CAAC,YAAY;IAY3B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,sBAAsB,CAI5C;IAEF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,oBAAoB,
|
|
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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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-value.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/form/form-value.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;;AAE5D,qBACa,gBAAgB;IA8Lf,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IA7L/C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAmGG;WACW,aAAa,CAAC,IAAI,KAAA,EAAE,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAiBpD;;;OAGG;WACW,uBAAuB,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI;IAqBtD,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,OAAO;IAQtB,OAAO,CAAC,MAAM,CAAC,WAAW;IAkB1B;;;;;OAKG;IACH,OAAO,CAAC,MAAM,CAAC,kBAAkB;gBAOJ,kBAAkB,EAAE,kBAAkB;IAG5D,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAIlC,qBAAqB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM;IAShD,uBAAuB,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,QAAQ,EAAE,GAAG,GAAG,GAAG;IAUpE,oBAAoB,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,QAAQ,EAAE,GAAG,GAAG,GAAG;IAIxE,OAAO,CAAC,cAAc;IA6BtB,OAAO,CAAC,aAAa;IAmBrB,OAAO,CAAC,aAAa;IAiBd,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IASxD,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IAwCtD,oBAAoB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IAwCjE;;;;;;;;OAQG;IACI,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,EAAE,UAAU,UAAQ,EAAE,YAAY,UAAQ,EAC5G,gBAAgB,UAAQ,EAAE,qBAAqB,QAAK,GAAG,IAAI;IAmE7D;;OAEG;IACI,2BAA2B,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS;IAUjE;;;;;;OAMG;IACI,uCAAuC,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAW3F;;;;;OAKG;IACI,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAU3E;;;;;OAKG;IACI,iCAAiC,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;iCAxf1E,gBAAgB;qCAAhB,gBAAgB;
|
|
1
|
+
{"version":3,"file":"form-value.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/form/form-value.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;;AAE5D,qBACa,gBAAgB;IA8Lf,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IA7L/C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAmGG;WACW,aAAa,CAAC,IAAI,KAAA,EAAE,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAiBpD;;;OAGG;WACW,uBAAuB,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI;IAqBtD,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,OAAO;IAQtB,OAAO,CAAC,MAAM,CAAC,WAAW;IAkB1B;;;;;OAKG;IACH,OAAO,CAAC,MAAM,CAAC,kBAAkB;gBAOJ,kBAAkB,EAAE,kBAAkB;IAG5D,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAIlC,qBAAqB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM;IAShD,uBAAuB,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,QAAQ,EAAE,GAAG,GAAG,GAAG;IAUpE,oBAAoB,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,QAAQ,EAAE,GAAG,GAAG,GAAG;IAIxE,OAAO,CAAC,cAAc;IA6BtB,OAAO,CAAC,aAAa;IAmBrB,OAAO,CAAC,aAAa;IAiBd,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IASxD,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IAwCtD,oBAAoB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IAwCjE;;;;;;;;OAQG;IACI,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,EAAE,UAAU,UAAQ,EAAE,YAAY,UAAQ,EAC5G,gBAAgB,UAAQ,EAAE,qBAAqB,QAAK,GAAG,IAAI;IAmE7D;;OAEG;IACI,2BAA2B,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS;IAUjE;;;;;;OAMG;IACI,uCAAuC,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAW3F;;;;;OAKG;IACI,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAU3E;;;;;OAKG;IACI,iCAAiC,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;iCAxf1E,gBAAgB;qCAAhB,gBAAgB;CA6gB5B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,uBAAuB,CAAC;AACtC,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,sBAAsB,CAAC;AACrC,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,oEAAoE,CAAC;AACnF,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,uBAAuB,CAAC;AACtC,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,sBAAsB,CAAC;AACrC,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,oEAAoE,CAAC;AACnF,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jurisdiction.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/jurisdiction/jurisdiction.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"jurisdiction.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/jurisdiction/jurisdiction.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAW,MAAM,MAAM,CAAC;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;;AAEtC,qBACa,mBAAmB;IAKlB,OAAO,CAAC,QAAQ,CAAC,WAAW;IAHxC,OAAO,CAAC,QAAQ,CAAC,0BAA0B,CAA+B;IAC1E,SAAgB,oBAAoB,EAAE,UAAU,CAAC,YAAY,CAAC,CAAC;gBAElC,WAAW,EAAE,WAAW;IAI9C,4BAA4B,CAAC,YAAY,EAAE,YAAY,GAAG,IAAI;IAI9D,mBAAmB,CAAC,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,UAAU,CAAC,iBAAiB,EAAE,CAAC;IAI3F,kCAAkC,CAAC,aAAa,EAAE,MAAM,EAAE,GAAG,UAAU,CAAC,iBAAiB,EAAE,CAAC;iCAjBxF,mBAAmB;qCAAnB,mBAAmB;CAoB/B"}
|
|
@@ -19,6 +19,10 @@ export declare class SearchService {
|
|
|
19
19
|
private currentCaseType;
|
|
20
20
|
constructor(appConfig: AbstractAppConfig, httpService: HttpService, requestOptionsBuilder: RequestOptionsBuilder, loadingService: LoadingService);
|
|
21
21
|
search(jurisdictionId: string, caseTypeId: string, metaCriteria: object, caseCriteria: object, view?: SearchView): Observable<SearchResultView>;
|
|
22
|
+
searchCasesByIds(caseTypeId: string, filter: any, view?: SearchView, sort?: {
|
|
23
|
+
column: string;
|
|
24
|
+
order: number;
|
|
25
|
+
}): Observable<{}>;
|
|
22
26
|
searchCases(caseTypeId: string, metaCriteria: object, caseCriteria: object, view?: SearchView, sort?: {
|
|
23
27
|
column: string;
|
|
24
28
|
order: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/search/search.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAC9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,8CAA8C,CAAC;AAChF,OAAO,EAAE,WAAW,EAAe,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,EAAE,qBAAqB,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;;AAEvF,qBACa,aAAa;IASZ,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAX3C,gBAAuB,0BAA0B,mGACiD;IAClG,gBAAuB,WAAW,YAAY;IAC9C,gBAAuB,eAAe,gBAAgB;IACtD,gBAAuB,YAAY,WAAW;IAC9C,OAAO,CAAC,mBAAmB,CAAS;IACpC,OAAO,CAAC,eAAe,CAAS;gBAEH,SAAS,EAAE,iBAAiB,EAC5B,WAAW,EAAE,WAAW,EACxB,qBAAqB,EAAE,qBAAqB,EAC5C,cAAc,EAAE,cAAc;IAEpD,MAAM,CAAC,cAAc,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAC1C,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,UAAU,GAAG,UAAU,CAAC,gBAAgB,CAAC;IAgBnG,WAAW,CAAC,UAAU,EAAE,MAAM,EACvB,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,UAAU,EAAE,IAAI,CAAC,EAAE;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAC,GAAG,UAAU,CAAC,EAAE,CAAC;IAiB7H,iBAAiB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM;IAI7C,eAAe,CAAC,cAAc,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,WAAW,EAAE,CAAC;IA0BtF,WAAW,CAAC,cAAc,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,OAAO;
|
|
1
|
+
{"version":3,"file":"search.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/search/search.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAC9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,8CAA8C,CAAC;AAChF,OAAO,EAAE,WAAW,EAAe,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,EAAE,qBAAqB,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;;AAEvF,qBACa,aAAa;IASZ,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAX3C,gBAAuB,0BAA0B,mGACiD;IAClG,gBAAuB,WAAW,YAAY;IAC9C,gBAAuB,eAAe,gBAAgB;IACtD,gBAAuB,YAAY,WAAW;IAC9C,OAAO,CAAC,mBAAmB,CAAS;IACpC,OAAO,CAAC,eAAe,CAAS;gBAEH,SAAS,EAAE,iBAAiB,EAC5B,WAAW,EAAE,WAAW,EACxB,qBAAqB,EAAE,qBAAqB,EAC5C,cAAc,EAAE,cAAc;IAEpD,MAAM,CAAC,cAAc,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAC1C,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,UAAU,GAAG,UAAU,CAAC,gBAAgB,CAAC;IAgBnG,gBAAgB,CACrB,UAAU,EAAE,MAAM,EAClB,MAAM,EAAE,GAAG,EACX,IAAI,CAAC,EAAE,UAAU,EACjB,IAAI,CAAC,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,GACvC,UAAU,CAAC,EAAE,CAAC;IAiBV,WAAW,CAAC,UAAU,EAAE,MAAM,EACvB,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,UAAU,EAAE,IAAI,CAAC,EAAE;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAC,GAAG,UAAU,CAAC,EAAE,CAAC;IAiB7H,iBAAiB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM;IAI7C,eAAe,CAAC,cAAc,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,WAAW,EAAE,CAAC;IA0BtF,WAAW,CAAC,cAAc,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,OAAO;iCArG5D,aAAa;qCAAb,aAAa;CAwGzB"}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from './lib/components';
|
|
2
2
|
export * from './lib/shared';
|
|
3
3
|
export * from './lib/app.config';
|
|
4
|
+
export * from './lib/shared/components/palette/case-file-view/case-file-view-field.component';
|
|
5
|
+
export * from './lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component';
|
|
4
6
|
//# sourceMappingURL=public-api.d.ts.map
|
package/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../projects/ccd-case-ui-toolkit/src/public-api.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../projects/ccd-case-ui-toolkit/src/public-api.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,+EAA+E,CAAC;AAC9F,cAAc,iHAAiH,CAAC"}
|