@hmcts/ccd-case-ui-toolkit 5.0.25-angular11-upgrade → 5.0.25-case-file-view-error-message-display

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.
Files changed (67) hide show
  1. package/bundles/hmcts-ccd-case-ui-toolkit.umd.js +637 -143
  2. package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -1
  3. package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +1 -1
  4. package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
  5. package/esm2015/lib/app.config.js +1 -1
  6. package/esm2015/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.js +1 -1
  7. package/esm2015/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.js +1 -1
  8. package/esm2015/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.js +35 -18
  9. package/esm2015/lib/shared/components/palette/case-file-view/case-file-view-field.component.js +102 -0
  10. package/esm2015/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.js +292 -0
  11. package/esm2015/lib/shared/components/palette/case-file-view/components/index.js +2 -0
  12. package/esm2015/lib/shared/components/palette/case-file-view/index.js +3 -0
  13. package/esm2015/lib/shared/components/palette/index.js +2 -1
  14. package/esm2015/lib/shared/components/palette/palette.module.js +24 -9
  15. package/esm2015/lib/shared/components/palette/palette.service.js +18 -1
  16. package/esm2015/lib/shared/domain/case-file-view/case-file-view-category.model.js +3 -0
  17. package/esm2015/lib/shared/domain/case-file-view/case-file-view-document.model.js +3 -0
  18. package/esm2015/lib/shared/domain/case-file-view/categories-and-documents.model.js +7 -0
  19. package/esm2015/lib/shared/domain/case-file-view/document-tree-node.model.js +2 -0
  20. package/esm2015/lib/shared/domain/case-file-view/index.js +5 -0
  21. package/esm2015/lib/shared/domain/definition/field-type-enum.model.js +1 -1
  22. package/esm2015/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.js +2 -2
  23. package/esm2015/lib/shared/pipes/complex/cdd-page-fields.pipe.js +3 -3
  24. package/esm2015/lib/shared/services/case-file-view/case-file-view.service.js +46 -0
  25. package/esm2015/lib/shared/services/case-file-view/index.js +2 -0
  26. package/esm2015/lib/shared/services/index.js +2 -1
  27. package/fesm2015/hmcts-ccd-case-ui-toolkit.js +585 -120
  28. package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
  29. package/lib/app.config.d.ts +4 -0
  30. package/lib/app.config.d.ts.map +1 -1
  31. package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts +7 -0
  32. package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts.map +1 -1
  33. package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts +22 -0
  34. package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts.map +1 -0
  35. package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.d.ts +25 -0
  36. package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.d.ts.map +1 -0
  37. package/lib/shared/components/palette/case-file-view/components/index.d.ts +2 -0
  38. package/lib/shared/components/palette/case-file-view/components/index.d.ts.map +1 -0
  39. package/lib/shared/components/palette/case-file-view/index.d.ts +3 -0
  40. package/lib/shared/components/palette/case-file-view/index.d.ts.map +1 -0
  41. package/lib/shared/components/palette/index.d.ts +1 -0
  42. package/lib/shared/components/palette/index.d.ts.map +1 -1
  43. package/lib/shared/components/palette/palette.module.d.ts +24 -21
  44. package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
  45. package/lib/shared/components/palette/palette.service.d.ts +2 -0
  46. package/lib/shared/components/palette/palette.service.d.ts.map +1 -1
  47. package/lib/shared/domain/case-file-view/case-file-view-category.model.d.ts +9 -0
  48. package/lib/shared/domain/case-file-view/case-file-view-category.model.d.ts.map +1 -0
  49. package/lib/shared/domain/case-file-view/case-file-view-document.model.d.ts +8 -0
  50. package/lib/shared/domain/case-file-view/case-file-view-document.model.d.ts.map +1 -0
  51. package/lib/shared/domain/case-file-view/categories-and-documents.model.d.ts +12 -0
  52. package/lib/shared/domain/case-file-view/categories-and-documents.model.d.ts.map +1 -0
  53. package/lib/shared/domain/case-file-view/document-tree-node.model.d.ts +7 -0
  54. package/lib/shared/domain/case-file-view/document-tree-node.model.d.ts.map +1 -0
  55. package/lib/shared/domain/case-file-view/index.d.ts +5 -0
  56. package/lib/shared/domain/case-file-view/index.d.ts.map +1 -0
  57. package/lib/shared/domain/definition/field-type-enum.model.d.ts +1 -1
  58. package/lib/shared/domain/definition/field-type-enum.model.d.ts.map +1 -1
  59. package/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.d.ts.map +1 -1
  60. package/lib/shared/pipes/complex/cdd-page-fields.pipe.d.ts.map +1 -1
  61. package/lib/shared/services/case-file-view/case-file-view.service.d.ts +21 -0
  62. package/lib/shared/services/case-file-view/case-file-view.service.d.ts.map +1 -0
  63. package/lib/shared/services/case-file-view/index.d.ts +2 -0
  64. package/lib/shared/services/case-file-view/index.d.ts.map +1 -0
  65. package/lib/shared/services/index.d.ts +1 -0
  66. package/lib/shared/services/index.d.ts.map +1 -1
  67. package/package.json +1 -1
@@ -63,6 +63,8 @@ export declare abstract class AbstractAppConfig {
63
63
  getCamRoleAssignmentsApiUrl(): string;
64
64
  abstract getRefundsUrl(): string;
65
65
  abstract getPaymentReturnUrl(): string;
66
+ abstract getCategoriesAndDocumentsUrl(): string;
67
+ abstract getDocumentDataUrl(): string;
66
68
  }
67
69
  export declare class CaseEditorConfig {
68
70
  api_url: string;
@@ -121,5 +123,7 @@ export declare class CaseEditorConfig {
121
123
  cam_role_assignments_api_url?: string;
122
124
  refunds_url: string;
123
125
  payment_return_url: string;
126
+ categories_and_documents_url: string;
127
+ document_data_url: string;
124
128
  }
125
129
  //# sourceMappingURL=app.config.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.config.d.ts","sourceRoot":"","sources":["../../../projects/ccd-case-ui-toolkit/src/lib/app.config.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,kCAAkC;IAC/C,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE;QACV,qBAAqB,CAAC,EAAE,MAAM,CAAC;QAC/B,sBAAsB,CAAC,EAAE;YACrB,YAAY,CAAC,EAAE,MAAM,CAAA;SACxB,CAAA;KACJ,CAAC;IACF,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,sCAAsC;IACnD,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE;QACN,QAAQ,EAAE,MAAM,CAAC;QACjB,aAAa,EAAE,MAAM,CAAC;QACtB,aAAa,EAAE,MAAM,CAAC;QACtB,WAAW,EAAE,MAAM,CAAC;QACpB,mBAAmB,EAAE,MAAM,CAAC;KAC/B,CAAC;IACF,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,8BAAsB,iBAAiB;aACnB,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;aACrB,WAAW,IAAI,MAAM;aACrB,SAAS,IAAI,MAAM;aACnB,cAAc,IAAI,MAAM;aACxB,wBAAwB,IAAI,MAAM;IAC3C,0BAA0B,IAAI,MAAM;IAGpC,qBAAqB,IAAI,OAAO;aAGvB,8BAA8B,IAAI,MAAM;aACxC,SAAS,IAAI,MAAM;aACnB,eAAe,IAAI,MAAM;aACzB,mBAAmB,IAAI,MAAM;aAC7B,oBAAoB,IAAI,MAAM;aAC9B,iBAAiB,IAAI,MAAM;aAC3B,cAAc,IAAI,MAAM;aACxB,qBAAqB,IAAI,MAAM;aAC/B,0BAA0B,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM;aAChD,wBAAwB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM;aAC7C,cAAc,IAAI,MAAM;aACxB,2BAA2B,IAAI,MAAM;aACrC,gBAAgB,IAAI,MAAM;aAC1B,iCAAiC,IAAI,MAAM;aAC3C,6BAA6B,IAAI,MAAM;aACvC,iBAAiB,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM;aAC1D,kBAAkB,IAAI,MAAM;IAC5C;;;;OAIG;IACI,wBAAwB,IAAI,MAAM;aAGzB,qBAAqB,IAAI,MAAM;aAC/B,aAAa,IAAI,MAAM;aACvB,SAAS,IAAI,MAAM;aACnB,eAAe,IAAI,MAAM;aACzB,uBAAuB,IAAI,MAAM;IAC1C,iBAAiB,IAAI,MAAM;IAG3B,uBAAuB,IAAI,OAAO;IAGlC,gCAAgC,IAAI,kCAAkC;IAGtE,yCAAyC,IAAI,sCAAsC;IAGnF,oBAAoB,IAAI,MAAM;IAG9B,2BAA2B,IAAI,MAAM;aAG5B,aAAa,IAAI,MAAM;aACvB,mBAAmB,IAAI,MAAM;CAChD;AAED,qBAAa,gBAAgB;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,CAAC;IACtB,uBAAuB,EAAE,MAAM,CAAC;IAChC,0BAA0B,EAAE,MAAM,CAAC;IACnC,OAAO,EAAE,MAAM,CAAC;IAChB,kCAAkC,EAAE,OAAO,CAAC;IAC5C,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,MAAM,CAAC;IACzB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,8BAA8B,EAAE,MAAM,CAAC;IACvC,cAAc,EAAE,MAAM,CAAC;IACvB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,YAAY,EAAE,MAAM,CAAC;IACrB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,kCAAkC,EAAE,MAAM,CAAC;IAC3C,6BAA6B,EAAE,MAAM,CAAC;IACtC,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,8BAA8B,EAAE,MAAM,CAAC;IACvC,iBAAiB,EAAE,MAAM,CAAC;IACjC;;;OAGG;IACI,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,oBAAoB,EAAE,MAAM,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,uBAAuB,EAAE,MAAM,CAAC;IAChC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,iCAAiC,CAAC,EAAE;QACvC,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,WAAW,CAAC,EAAE;YACV,qBAAqB,CAAC,EAAE,MAAM,CAAC;YAC/B,sBAAsB,CAAC,EAAE;gBACrB,YAAY,CAAC,EAAE,MAAM,CAAA;aACxB,CAAA;SACJ,CAAC;QACF,aAAa,CAAC,EAAE,MAAM,CAAA;KACzB,CAAC;IACK,qCAAqC,CAAC,EAAE;QAC3C,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,OAAO,CAAC,EAAE;YACN,QAAQ,EAAE,MAAM,CAAC;YACjB,aAAa,EAAE,MAAM,CAAC;YACtB,aAAa,EAAE,MAAM,CAAC;YACtB,WAAW,EAAE,MAAM,CAAC;YACpB,mBAAmB,EAAE,MAAM,CAAC;SAC/B,CAAC;QACF,aAAa,CAAC,EAAE,MAAM,CAAC;KAC1B,CAAC;IACK,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,4BAA4B,CAAC,EAAE,MAAM,CAAC;IACtC,WAAW,EAAE,MAAM,CAAC;IACpB,kBAAkB,EAAE,MAAM,CAAC;CACrC"}
1
+ {"version":3,"file":"app.config.d.ts","sourceRoot":"","sources":["../../../projects/ccd-case-ui-toolkit/src/lib/app.config.ts"],"names":[],"mappings":"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"}
@@ -67,6 +67,13 @@ export declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, A
67
67
  isTriggerButtonDisabled(): boolean;
68
68
  ngAfterViewInit(): void;
69
69
  tabChanged(tabChangeEvent: MatTabChangeEvent): void;
70
+ /**
71
+ * Indicates that a CaseField is to be displayed without a label, as is expected for all ComponentLauncher-type
72
+ * fields.
73
+ * @param caseField The `CaseField` instance to check
74
+ * @returns `true` if it should not have a label; `false` otherwise
75
+ */
76
+ isFieldToHaveNoLabel(caseField: CaseField): boolean;
70
77
  private init;
71
78
  private sortTabFieldsAndFilterTabs;
72
79
  private getTabFields;
@@ -1 +1 @@
1
- {"version":3,"file":"case-full-access-view.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"case-full-access-view.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAoB,MAAM,EAAE,SAAS,EAAE,MAAM,EAA+B,MAAM,eAAe,CAAC;AACxH,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACxE,OAAO,EAAE,cAAc,EAAU,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEjE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAGjD,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,eAAe,EAAE,WAAW,EAA4B,MAAM,iBAAiB,CAAC;AACjI,OAAO,EACL,sBAAsB,EACtB,YAAY,EACZ,YAAY,EACZ,oBAAoB,EACpB,yBAAyB,EAEzB,YAAY,EACZ,qBAAqB,EACtB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,0BAA0B,EAAE,MAAM,2DAA2D,CAAC;AAEvG,OAAO,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;;AAGpD,qBAKa,2BAA4B,YAAW,MAAM,EAAE,SAAS,EAAE,aAAa;IAkChF,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,yBAAyB;IAC1C,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,sBAAsB;IACvC,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,oBAAoB;IACrC,OAAO,CAAC,QAAQ,CAAC,0BAA0B;IAC3C,OAAO,CAAC,QAAQ,CAAC,QAAQ;IACzB,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IA7CxC,gBAAuB,kBAAkB,YAAY;IACrD,gBAAuB,kBAAkB,QAAQ;IACjD,gBAAuB,qBAAqB,2BAA2B;IACvE,gBAAuB,aAAa,SAAS;IAC7C,gBAAuB,WAAW,OAAO;IAEzB,QAAQ,UAAQ;IAChB,gBAAgB,UAAQ;IACxB,WAAW,EAAE,QAAQ,CAAC;IACtB,aAAa,EAAE,OAAO,EAAE,CAAM;IAC9B,YAAY,EAAE,OAAO,EAAE,CAAM;IAEtC,MAAM,cAAsB;IAC5B,UAAU,EAAE,OAAO,EAAE,CAAC;IACtB,UAAU,EAAE,SAAS,EAAE,CAAC;IACxB,SAAS,EAAE,SAAS,CAAC;IACrB,KAAK,EAAE,GAAG,CAAC;IACX,gBAAgB,SAAkD;IAClE,yBAAyB,SAAqD;IAC9E,WAAW,EAAE,MAAM,CAAkD;IACrE,aAAa,UAAS;IACtB,oBAAoB,EAAE,YAAY,CAAC;IACnC,gBAAgB,EAAE,YAAY,CAAC;IAC/B,iBAAiB,EAAE,YAAY,CAAC;IAChC,YAAY,EAAE,eAAe,CAAC;IAC9B,2BAA2B,EAAE,OAAO,CAAC;IACrC,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,YAAY,CAAC;IAE3B,qBAAqB,EAAE,OAAO,CAAC,GAAG,CAAC,CAAiB;IACV,QAAQ,EAAE,WAAW,CAAC;gBAGpD,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,yBAAyB,EAAE,yBAAyB,EACpD,YAAY,EAAE,YAAY,EAC1B,sBAAsB,EAAE,sBAAsB,EAC9C,MAAM,EAAE,SAAS,EACjB,YAAY,EAAE,YAAY,EAC1B,YAAY,EAAE,YAAY,EAC1B,oBAAoB,EAAE,oBAAoB,EAC1C,0BAA0B,EAAE,0BAA0B,EACtD,QAAQ,EAAE,QAAQ,EAClB,qBAAqB,EAAE,qBAAqB;IAIxD,QAAQ;IA0BR,cAAc,IAAI,OAAO;IAIzB,WAAW;IAYX,WAAW,CAAC,YAAY,EAAE,GAAG;IAM7B,gBAAgB,IAAI,UAAU,CAAC,QAAQ,EAAE,CAAC;IAI1C,sBAAsB,IAAI,IAAI;IAM9B,YAAY,CAAC,OAAO,EAAE,eAAe,GAAG,IAAI;IA4C5C,cAAc,IAAI,OAAO;IAIzB,oBAAoB,CAAC,qBAAqB,EAAE,qBAAqB,GAAG,IAAI;IAKxE,OAAO,IAAI,OAAO;IAIlB,uBAAuB,IAAI,OAAO;IAUlC,eAAe,IAAI,IAAI;IA0CvB,UAAU,CAAC,cAAc,EAAE,iBAAiB,GAAG,IAAI;IAgB1D;;;;;OAKG;IACI,oBAAoB,CAAC,SAAS,EAAE,SAAS,GAAG,OAAO;IAK1D,OAAO,CAAC,IAAI;IAoBZ,OAAO,CAAC,0BAA0B;IAMlC,OAAO,CAAC,YAAY;IAQpB;;;;;OAKG;IACH,OAAO,CAAC,cAAc;IAatB,OAAO,CAAC,WAAW;iCAzSR,2BAA2B;2CAA3B,2BAA2B;CA+SvC"}
@@ -0,0 +1,22 @@
1
+ import { AfterViewInit, ElementRef, OnDestroy, OnInit } from '@angular/core';
2
+ import { ActivatedRoute } from '@angular/router';
3
+ import { Observable, Subscription } from 'rxjs';
4
+ import { CategoriesAndDocuments } from '../../../domain/case-file-view';
5
+ import { CaseFileViewService } from '../../../services/case-file-view/case-file-view.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit, OnDestroy {
8
+ private readonly elementRef;
9
+ private readonly route;
10
+ private caseFileViewService;
11
+ static readonly PARAM_CASE_ID = "cid";
12
+ categoriesAndDocuments$: Observable<CategoriesAndDocuments>;
13
+ categoriesAndDocumentsSubscription: Subscription;
14
+ getCategoriesAndDocumentsError: boolean;
15
+ constructor(elementRef: ElementRef, route: ActivatedRoute, caseFileViewService: CaseFileViewService);
16
+ ngOnInit(): void;
17
+ ngAfterViewInit(): void;
18
+ ngOnDestroy(): void;
19
+ static ɵfac: i0.ɵɵFactoryDef<CaseFileViewFieldComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFileViewFieldComponent, "ccd-case-file-view-field", never, {}, {}, never, never>;
21
+ }
22
+ //# sourceMappingURL=case-file-view-field.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-file-view-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/case-file-view-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACxF,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAa,UAAU,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAE3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yDAAyD,CAAC;;AAE9F,qBAKa,0BAA2B,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS;IAOrE,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,mBAAmB;IAPvC,gBAAuB,aAAa,SAAS;IACtC,uBAAuB,EAAE,UAAU,CAAC,sBAAsB,CAAC,CAAC;IAC5D,kCAAkC,EAAE,YAAY,CAAC;IACjD,8BAA8B,UAAS;gBAEjB,UAAU,EAAE,UAAU,EACtB,KAAK,EAAE,cAAc,EAC9B,mBAAmB,EAAE,mBAAmB;IAGrD,QAAQ,IAAI,IAAI;IAShB,eAAe,IAAI,IAAI;IA+BvB,WAAW,IAAI,IAAI;iCApDf,0BAA0B;2CAA1B,0BAA0B;CAyDtC"}
@@ -0,0 +1,25 @@
1
+ import { NestedTreeControl } from '@angular/cdk/tree';
2
+ import { OnDestroy, OnInit } from '@angular/core';
3
+ import { Observable, Subscription } from 'rxjs';
4
+ import { CaseFileViewCategory, CaseFileViewDocument, CategoriesAndDocuments, DocumentTreeNode } from '../../../../../domain/case-file-view';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CaseFileViewFolderComponent implements OnInit, OnDestroy {
7
+ private static readonly UNCATEGORISED_DOCUMENTS_TITLE;
8
+ categoriesAndDocuments: Observable<CategoriesAndDocuments>;
9
+ nestedTreeControl: NestedTreeControl<DocumentTreeNode>;
10
+ nestedDataSource: DocumentTreeNode[];
11
+ categories: CaseFileViewCategory[];
12
+ categoriesAndDocumentsSubscription: Subscription;
13
+ private getChildren;
14
+ nestedChildren: (_: number, nodeData: DocumentTreeNode) => DocumentTreeNode[];
15
+ constructor();
16
+ ngOnInit(): void;
17
+ generateTreeData(categories: CaseFileViewCategory[]): DocumentTreeNode[];
18
+ getDocuments(documents: CaseFileViewDocument[]): DocumentTreeNode[];
19
+ getUncategorisedDocuments(uncategorisedDocuments: CaseFileViewDocument[]): DocumentTreeNode;
20
+ ngOnDestroy(): void;
21
+ loadCategories(): CaseFileViewCategory[];
22
+ static ɵfac: i0.ɵɵFactoryDef<CaseFileViewFolderComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFileViewFolderComponent, "ccd-case-file-view-folder", never, { "categoriesAndDocuments": "categoriesAndDocuments"; }, {}, never, never>;
24
+ }
25
+ //# sourceMappingURL=case-file-view-folder.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-file-view-folder.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,UAAU,EAAM,YAAY,EAAE,MAAM,MAAM,CAAC;AACpD,OAAO,EACL,oBAAoB,EACpB,oBAAoB,EACpB,sBAAsB,EACtB,gBAAgB,EACjB,MAAM,sCAAsC,CAAC;;AAE9C,qBAKa,2BAA4B,YAAW,MAAM,EAAE,SAAS;IAEnE,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,6BAA6B,CAA6B;IAElE,sBAAsB,EAAE,UAAU,CAAC,sBAAsB,CAAC,CAAC;IAEpE,iBAAiB,EAAE,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;IACvD,gBAAgB,EAAE,gBAAgB,EAAE,CAAC;IACrC,UAAU,EAAE,oBAAoB,EAAE,CAAM;IACxC,kCAAkC,EAAE,YAAY,CAAC;IAExD,OAAO,CAAC,WAAW,CAAiD;IAC7D,cAAc,MAAO,MAAM,YAAY,gBAAgB,wBAAuB;;IAM9E,QAAQ,IAAI,IAAI;IAgBhB,gBAAgB,CAAC,UAAU,EAAE,oBAAoB,EAAE,GAAG,gBAAgB,EAAE;IAYxE,YAAY,CAAC,SAAS,EAAE,oBAAoB,EAAE,GAAG,gBAAgB,EAAE;IAQnE,yBAAyB,CAAC,sBAAsB,EAAE,oBAAoB,EAAE,GAAG,gBAAgB;IAQ3F,WAAW,IAAI,IAAI;IAMnB,cAAc,IAAI,oBAAoB,EAAE;iCApEpC,2BAA2B;2CAA3B,2BAA2B;CAoOvC"}
@@ -0,0 +1,2 @@
1
+ export * from './case-file-view-folder/case-file-view-folder.component';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,yDAAyD,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from './case-file-view-field.component';
2
+ export * from './components';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/index.ts"],"names":[],"mappings":"AAAA,cAAc,kCAAkC,CAAC;AACjD,cAAc,cAAc,CAAC"}
@@ -3,6 +3,7 @@ export * from './palette.service';
3
3
  export * from './unsupported-field.component';
4
4
  export * from './address';
5
5
  export * from './base-field';
6
+ export * from './case-file-view';
6
7
  export * from './case-link';
7
8
  export * from './collection';
8
9
  export * from './complex';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,+BAA+B,CAAC;AAE9C,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,+BAA+B,CAAC;AAE9C,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC"}
@@ -67,29 +67,32 @@ import * as i65 from "./fixed-list/write-fixed-list-field.component";
67
67
  import * as i66 from "./fixed-radio-list/write-fixed-radio-list-field.component";
68
68
  import * as i67 from "./case-link/write-case-link-field.component";
69
69
  import * as i68 from "./collection/write-collection-field.component";
70
- import * as i69 from "@angular/common";
71
- import * as i70 from "@angular/router";
72
- import * as i71 from "@angular/forms";
73
- import * as i72 from "./utils/utils.module";
74
- import * as i73 from "../../pipes/pipes.module";
75
- import * as i74 from "../../../components/banners/banners.module";
76
- import * as i75 from "../../../components/header/headers.module";
77
- import * as i76 from "../../../components/footer/footers.module";
78
- import * as i77 from "../../../components/body/body.module";
79
- import * as i78 from "../../../components/form/form.module";
80
- import * as i79 from "../../../components/tabs/tabs.module";
81
- import * as i80 from "../../directives/substitutor/label-substitutor.module";
82
- import * as i81 from "ngx-md";
83
- import * as i82 from "@angular-material-components/datetime-picker";
84
- import * as i83 from "@angular/material/form-field";
85
- import * as i84 from "@angular/material/input";
86
- import * as i85 from "@angular/material/datepicker";
87
- import * as i86 from "@angular/material/autocomplete";
88
- import * as i87 from "@hmcts/ccpay-web-component";
89
- import * as i88 from "@nicky-lenaers/ngx-scroll-to";
70
+ import * as i69 from "./case-file-view/case-file-view-field.component";
71
+ import * as i70 from "./case-file-view/components/case-file-view-folder/case-file-view-folder.component";
72
+ import * as i71 from "@angular/common";
73
+ import * as i72 from "@angular/router";
74
+ import * as i73 from "@angular/forms";
75
+ import * as i74 from "./utils/utils.module";
76
+ import * as i75 from "../../pipes/pipes.module";
77
+ import * as i76 from "../../../components/banners/banners.module";
78
+ import * as i77 from "../../../components/header/headers.module";
79
+ import * as i78 from "../../../components/footer/footers.module";
80
+ import * as i79 from "../../../components/body/body.module";
81
+ import * as i80 from "../../../components/form/form.module";
82
+ import * as i81 from "../../../components/tabs/tabs.module";
83
+ import * as i82 from "../../directives/substitutor/label-substitutor.module";
84
+ import * as i83 from "ngx-md";
85
+ import * as i84 from "@angular-material-components/datetime-picker";
86
+ import * as i85 from "@angular/material/form-field";
87
+ import * as i86 from "@angular/material/input";
88
+ import * as i87 from "@angular/material/datepicker";
89
+ import * as i88 from "@angular/material/autocomplete";
90
+ import * as i89 from "@angular/cdk/tree";
91
+ import * as i90 from "@hmcts/ccpay-web-component";
92
+ import * as i91 from "@nicky-lenaers/ngx-scroll-to";
90
93
  export declare class PaletteModule {
91
94
  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.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadJudicialUserFieldComponent, typeof i29.ReadYesNoFieldComponent, typeof i30.ReadOrganisationFieldComponent, typeof i31.ReadOrganisationFieldTableComponent, typeof i32.ReadOrganisationFieldRawComponent, typeof i33.ReadOrderSummaryFieldComponent, typeof i34.ReadOrderSummaryRowComponent, typeof i35.ReadMoneyGbpFieldComponent, typeof i36.ReadMultiSelectListFieldComponent, typeof i37.ReadDynamicListFieldComponent, typeof i38.ReadFixedListFieldComponent, typeof i39.ReadFixedRadioListFieldComponent, typeof i40.ReadDynamicRadioListFieldComponent, typeof i41.ReadCaseLinkFieldComponent, typeof i42.ReadComplexFieldComponent, typeof i43.ReadComplexFieldRawComponent, typeof i44.ReadComplexFieldTableComponent, typeof i45.ReadComplexFieldCollectionTableComponent, typeof i46.WriteJudicialUserFieldComponent, typeof i47.WriteAddressFieldComponent, typeof i48.WriteComplexFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i50.WriteDocumentFieldComponent, typeof i51.WriteDynamicListFieldComponent, typeof i52.WriteDynamicRadioListFieldComponent, typeof i53.WriteTextFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i55.WriteTextAreaFieldComponent, typeof i56.WritePhoneUKFieldComponent, typeof i57.WriteNumberFieldComponent, typeof i58.WriteEmailFieldComponent, typeof i59.WriteDateFieldComponent, typeof i60.WriteYesNoFieldComponent, typeof i61.WriteOrganisationFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i62.WriteOrderSummaryFieldComponent, typeof i63.WriteMoneyGbpFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i64.WriteMultiSelectListFieldComponent, typeof i65.WriteFixedListFieldComponent, typeof i66.WriteFixedRadioListFieldComponent, typeof i67.WriteCaseLinkFieldComponent, typeof i68.WriteCollectionFieldComponent], [typeof i69.CommonModule, typeof i70.RouterModule, typeof i71.FormsModule, typeof i71.ReactiveFormsModule, typeof i72.PaletteUtilsModule, typeof i73.PipesModule, typeof i74.BannersModule, typeof i75.HeadersModule, typeof i76.FootersModule, typeof i77.BodyModule, typeof i78.FormModule, typeof i79.TabsModule, typeof i80.LabelSubstitutorModule, typeof i81.NgxMdModule, typeof i82.NgxMatDatetimePickerModule, typeof i82.NgxMatTimepickerModule, typeof i82.NgxMatNativeDateModule, typeof i83.MatFormFieldModule, typeof i84.MatInputModule, typeof i85.MatDatepickerModule, typeof i86.MatAutocompleteModule, typeof i87.PaymentLibModule, typeof i88.ScrollToModule], [typeof i82.NgxMatDatetimePickerModule, typeof i82.NgxMatNativeDateModule, typeof i82.NgxMatTimepickerModule, typeof i79.TabsModule, typeof i72.PaletteUtilsModule, typeof i73.PipesModule, typeof i6.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadJudicialUserFieldComponent, typeof i29.ReadYesNoFieldComponent, typeof i30.ReadOrganisationFieldComponent, typeof i31.ReadOrganisationFieldTableComponent, typeof i32.ReadOrganisationFieldRawComponent, typeof i33.ReadOrderSummaryFieldComponent, typeof i34.ReadOrderSummaryRowComponent, typeof i35.ReadMoneyGbpFieldComponent, typeof i36.ReadMultiSelectListFieldComponent, typeof i37.ReadDynamicListFieldComponent, typeof i38.ReadFixedListFieldComponent, typeof i39.ReadFixedRadioListFieldComponent, typeof i40.ReadDynamicRadioListFieldComponent, typeof i41.ReadCaseLinkFieldComponent, typeof i42.ReadComplexFieldComponent, typeof i43.ReadComplexFieldRawComponent, typeof i44.ReadComplexFieldTableComponent, typeof i45.ReadComplexFieldCollectionTableComponent, typeof i46.WriteJudicialUserFieldComponent, typeof i47.WriteAddressFieldComponent, typeof i48.WriteComplexFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i50.WriteDocumentFieldComponent, typeof i51.WriteDynamicListFieldComponent, typeof i52.WriteDynamicRadioListFieldComponent, typeof i53.WriteTextFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i55.WriteTextAreaFieldComponent, typeof i56.WritePhoneUKFieldComponent, typeof i57.WriteNumberFieldComponent, typeof i58.WriteEmailFieldComponent, typeof i59.WriteDateFieldComponent, typeof i60.WriteYesNoFieldComponent, typeof i61.WriteOrganisationFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i62.WriteOrderSummaryFieldComponent, typeof i63.WriteMoneyGbpFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i64.WriteMultiSelectListFieldComponent, typeof i65.WriteFixedListFieldComponent, typeof i66.WriteFixedRadioListFieldComponent, typeof i67.WriteCaseLinkFieldComponent, typeof i68.WriteCollectionFieldComponent]>;
95
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadJudicialUserFieldComponent, typeof i29.ReadYesNoFieldComponent, typeof i30.ReadOrganisationFieldComponent, typeof i31.ReadOrganisationFieldTableComponent, typeof i32.ReadOrganisationFieldRawComponent, typeof i33.ReadOrderSummaryFieldComponent, typeof i34.ReadOrderSummaryRowComponent, typeof i35.ReadMoneyGbpFieldComponent, typeof i36.ReadMultiSelectListFieldComponent, typeof i37.ReadDynamicListFieldComponent, typeof i38.ReadFixedListFieldComponent, typeof i39.ReadFixedRadioListFieldComponent, typeof i40.ReadDynamicRadioListFieldComponent, typeof i41.ReadCaseLinkFieldComponent, typeof i42.ReadComplexFieldComponent, typeof i43.ReadComplexFieldRawComponent, typeof i44.ReadComplexFieldTableComponent, typeof i45.ReadComplexFieldCollectionTableComponent, typeof i46.WriteJudicialUserFieldComponent, typeof i47.WriteAddressFieldComponent, typeof i48.WriteComplexFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i50.WriteDocumentFieldComponent, typeof i51.WriteDynamicListFieldComponent, typeof i52.WriteDynamicRadioListFieldComponent, typeof i53.WriteTextFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i55.WriteTextAreaFieldComponent, typeof i56.WritePhoneUKFieldComponent, typeof i57.WriteNumberFieldComponent, typeof i58.WriteEmailFieldComponent, typeof i59.WriteDateFieldComponent, typeof i60.WriteYesNoFieldComponent, typeof i61.WriteOrganisationFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i62.WriteOrderSummaryFieldComponent, typeof i63.WriteMoneyGbpFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i64.WriteMultiSelectListFieldComponent, typeof i65.WriteFixedListFieldComponent, typeof i66.WriteFixedRadioListFieldComponent, typeof i67.WriteCaseLinkFieldComponent, typeof i68.WriteCollectionFieldComponent, typeof i69.CaseFileViewFieldComponent, typeof i70.CaseFileViewFolderComponent], [typeof i71.CommonModule, typeof i72.RouterModule, typeof i73.FormsModule, typeof i73.ReactiveFormsModule, typeof i74.PaletteUtilsModule, typeof i75.PipesModule, typeof i76.BannersModule, typeof i77.HeadersModule, typeof i78.FootersModule, typeof i79.BodyModule, typeof i80.FormModule, typeof i81.TabsModule, typeof i82.LabelSubstitutorModule, typeof i83.NgxMdModule, typeof i84.NgxMatDatetimePickerModule, typeof i84.NgxMatTimepickerModule, typeof i84.NgxMatNativeDateModule, typeof i85.MatFormFieldModule, typeof i86.MatInputModule, typeof i87.MatDatepickerModule, typeof i88.MatAutocompleteModule, typeof i89.CdkTreeModule, typeof i90.PaymentLibModule, typeof i91.ScrollToModule], [typeof i84.NgxMatDatetimePickerModule, typeof i84.NgxMatNativeDateModule, typeof i84.NgxMatTimepickerModule, typeof i81.TabsModule, typeof i74.PaletteUtilsModule, typeof i75.PipesModule, typeof i6.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadJudicialUserFieldComponent, typeof i29.ReadYesNoFieldComponent, typeof i30.ReadOrganisationFieldComponent, typeof i31.ReadOrganisationFieldTableComponent, typeof i32.ReadOrganisationFieldRawComponent, typeof i33.ReadOrderSummaryFieldComponent, typeof i34.ReadOrderSummaryRowComponent, typeof i35.ReadMoneyGbpFieldComponent, typeof i36.ReadMultiSelectListFieldComponent, typeof i37.ReadDynamicListFieldComponent, typeof i38.ReadFixedListFieldComponent, typeof i39.ReadFixedRadioListFieldComponent, typeof i40.ReadDynamicRadioListFieldComponent, typeof i41.ReadCaseLinkFieldComponent, typeof i42.ReadComplexFieldComponent, typeof i43.ReadComplexFieldRawComponent, typeof i44.ReadComplexFieldTableComponent, typeof i45.ReadComplexFieldCollectionTableComponent, typeof i46.WriteJudicialUserFieldComponent, typeof i47.WriteAddressFieldComponent, typeof i48.WriteComplexFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i50.WriteDocumentFieldComponent, typeof i51.WriteDynamicListFieldComponent, typeof i52.WriteDynamicRadioListFieldComponent, typeof i53.WriteTextFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i55.WriteTextAreaFieldComponent, typeof i56.WritePhoneUKFieldComponent, typeof i57.WriteNumberFieldComponent, typeof i58.WriteEmailFieldComponent, typeof i59.WriteDateFieldComponent, typeof i60.WriteYesNoFieldComponent, typeof i61.WriteOrganisationFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i62.WriteOrderSummaryFieldComponent, typeof i63.WriteMoneyGbpFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i64.WriteMultiSelectListFieldComponent, typeof i65.WriteFixedListFieldComponent, typeof i66.WriteFixedRadioListFieldComponent, typeof i67.WriteCaseLinkFieldComponent, typeof i68.WriteCollectionFieldComponent, typeof i69.CaseFileViewFieldComponent, typeof i70.CaseFileViewFolderComponent]>;
93
96
  static ɵinj: i0.ɵɵInjectorDef<PaletteModule>;
94
97
  }
95
98
  //# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8IA,qBAuDa,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiJA,qBAwDa,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
@@ -2,7 +2,9 @@ import { Type } from '@angular/core';
2
2
  import { CaseField } from '../../domain/definition/case-field.model';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class PaletteService {
5
+ private readonly componentLauncherRegistry;
5
6
  getFieldComponentClass(caseField: CaseField, write: boolean): Type<{}>;
7
+ private getComponentLauncherComponent;
6
8
  static ɵfac: i0.ɵɵFactoryDef<PaletteService, never>;
7
9
  static ɵprov: i0.ɵɵInjectableDef<PaletteService>;
8
10
  }
@@ -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;;AAgDrE,qBACa,cAAc;IAElB,sBAAsB,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC;iCAFlE,cAAc;qCAAd,cAAc;CAgE1B"}
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;;AAiDrE,qBACa,cAAc;IACzB,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAExC;IAEK,sBAAsB,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC;IAiE7E,OAAO,CAAC,6BAA6B;iCAtE1B,cAAc;qCAAd,cAAc;CA+E1B"}
@@ -0,0 +1,9 @@
1
+ import { CaseFileViewDocument } from './case-file-view-document.model';
2
+ export declare class CaseFileViewCategory {
3
+ category_id: string;
4
+ category_name: string;
5
+ category_order: number;
6
+ documents: CaseFileViewDocument[];
7
+ sub_categories: CaseFileViewCategory[];
8
+ }
9
+ //# sourceMappingURL=case-file-view-category.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-file-view-category.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/case-file-view-category.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAEvE,qBAAa,oBAAoB;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,oBAAoB,EAAE,CAAC;IAClC,cAAc,EAAE,oBAAoB,EAAE,CAAC;CAC/C"}
@@ -0,0 +1,8 @@
1
+ export declare class CaseFileViewDocument {
2
+ document_url: string;
3
+ document_filename: string;
4
+ document_binary_url: string;
5
+ attribute_path: string;
6
+ upload_timestamp: string;
7
+ }
8
+ //# sourceMappingURL=case-file-view-document.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-file-view-document.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/case-file-view-document.model.ts"],"names":[],"mappings":"AAAA,qBAAa,oBAAoB;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,MAAM,CAAC;CACjC"}
@@ -0,0 +1,12 @@
1
+ import { CaseFileViewCategory } from './case-file-view-category.model';
2
+ import { CaseFileViewDocument } from './case-file-view-document.model';
3
+ /**
4
+ * DTO to provide typing of the response from the CCD Data Store API for Categories and Documents data.
5
+ * @see {@link https://tools.hmcts.net/confluence/x/0KSDX#CaseFileViewDocumentDataendpointLLD-SuccessResponsePayload} for full details
6
+ */
7
+ export declare class CategoriesAndDocuments {
8
+ case_version: number;
9
+ categories: CaseFileViewCategory[];
10
+ uncategorised_documents: CaseFileViewDocument[];
11
+ }
12
+ //# sourceMappingURL=categories-and-documents.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"categories-and-documents.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/categories-and-documents.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AACvE,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAEvE;;;GAGG;AACH,qBAAa,sBAAsB;IAC1B,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,oBAAoB,EAAE,CAAC;IACnC,uBAAuB,EAAE,oBAAoB,EAAE,CAAC;CACxD"}
@@ -0,0 +1,7 @@
1
+ export interface DocumentTreeNode {
2
+ name?: string;
3
+ type?: string;
4
+ count?: number;
5
+ children?: DocumentTreeNode[];
6
+ }
7
+ //# sourceMappingURL=document-tree-node.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"document-tree-node.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/document-tree-node.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,gBAAgB,EAAE,CAAC;CAC/B"}
@@ -0,0 +1,5 @@
1
+ export * from './case-file-view-category.model';
2
+ export * from './case-file-view-document.model';
3
+ export * from './categories-and-documents.model';
4
+ export * from './document-tree-node.model';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC"}
@@ -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' | 'JudicialUserField' | 'ComponentLauncher';
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,mBAAmB,GACnB,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,CAA6C;IAEvF,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"}
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,CAAkE;IAE5G,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"}
@@ -1 +1 @@
1
- {"version":3,"file":"cdd-page-fields.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/complex/cdd-page-fields.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAmB,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE5D,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAEnF,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;;AAEpD,qBAGa,iBAAkB,YAAW,aAAa;IAE9C,SAAS,CAAC,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,GAAG,SAAS;iCAF5D,iBAAiB;uCAAjB,iBAAiB;CA2B7B"}
1
+ {"version":3,"file":"cdd-page-fields.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/complex/cdd-page-fields.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAmB,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE5D,OAAO,EAAE,UAAU,EAAE,MAAM,uDAAuD,CAAC;AAEnF,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;;AAEpD,qBAGa,iBAAkB,YAAW,aAAa;IAE9C,SAAS,CAAC,IAAI,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,GAAG,SAAS;iCAF5D,iBAAiB;uCAAjB,iBAAiB;CA6B7B"}
@@ -0,0 +1,21 @@
1
+ import { Observable } from 'rxjs';
2
+ import { AbstractAppConfig } from '../../../app.config';
3
+ import { CategoriesAndDocuments } from '../../domain/case-file-view';
4
+ import { HttpService } from '../http';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CaseFileViewService {
7
+ private readonly http;
8
+ private readonly appConfig;
9
+ constructor(http: HttpService, appConfig: AbstractAppConfig);
10
+ /**
11
+ * Retrieves the categories and documents for a case.
12
+ *
13
+ * @param caseRef 16-digit Case Reference number of the case
14
+ * @returns An `Observable` of the `CategoriesAndDocuments` for the case
15
+ */
16
+ getCategoriesAndDocuments(caseRef: string): Observable<CategoriesAndDocuments>;
17
+ updateDocumentCategory(caseRef: string, caseVersion: number, attributePath: string, categoryId: string): Observable<CategoriesAndDocuments>;
18
+ static ɵfac: i0.ɵɵFactoryDef<CaseFileViewService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDef<CaseFileViewService>;
20
+ }
21
+ //# sourceMappingURL=case-file-view.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-file-view.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/case-file-view/case-file-view.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAM,MAAM,MAAM,CAAC;AACtC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;;AAEtC,qBACa,mBAAmB;IAE5B,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,SAAS;gBADT,IAAI,EAAE,WAAW,EACjB,SAAS,EAAE,iBAAiB;IAG/C;;;;;OAKG;IACI,yBAAyB,CAAC,OAAO,EAAE,MAAM,GAAG,UAAU,CAAC,sBAAsB,CAAC;IAY9E,sBAAsB,CAAC,OAAO,EAAE,MAAM,EACf,WAAW,EAAE,MAAM,EACnB,aAAa,EAAE,MAAM,EACrB,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,sBAAsB,CAAC;iCA3B1E,mBAAmB;qCAAnB,mBAAmB;CA2C/B"}
@@ -0,0 +1,2 @@
1
+ export * from './case-file-view.service';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/case-file-view/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC"}
@@ -3,6 +3,7 @@ export * from './addresses';
3
3
  export * from './alert';
4
4
  export * from './auth';
5
5
  export * from './case-fields';
6
+ export * from './case-file-view';
6
7
  export * from './document-management';
7
8
  export * from './draft';
8
9
  export * from './error';
@@ -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,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,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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmcts/ccd-case-ui-toolkit",
3
- "version": "5.0.25-angular11-upgrade",
3
+ "version": "5.0.25-case-file-view-error-message-display",
4
4
  "engines": {
5
5
  "yarn": "^1.22.15",
6
6
  "npm": "^8.10.0"