@hmcts/ccd-case-ui-toolkit 6.13.10-b → 6.13.10-d
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 +13 -6
- 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/shared/components/palette/case-file-view/case-file-view-field-read.component.js +8 -4
- package/esm2015/lib/shared/components/palette/case-file-view/case-file-view-field.component.js +6 -5
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +11 -6
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.d.ts +5 -2
- package/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts +4 -3
- package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts.map +1 -1
- package/package.json +1 -1
package/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { CaseField } from '../../../domain';
|
|
1
3
|
import { CaseFileViewFieldComponent } from './case-file-view-field.component';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CaseFileViewFieldReadComponent extends CaseFileViewFieldComponent {
|
|
4
|
-
|
|
5
|
+
export declare class CaseFileViewFieldReadComponent extends CaseFileViewFieldComponent implements OnInit {
|
|
6
|
+
caseField: CaseField;
|
|
7
|
+
ngOnInit(): void;
|
|
5
8
|
static ɵfac: i0.ɵɵFactoryDef<CaseFileViewFieldReadComponent, never>;
|
|
6
9
|
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFileViewFieldReadComponent, "ccd-case-file-view-field", never, {}, {}, never, never>;
|
|
7
10
|
}
|
package/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-file-view-field-read.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"case-file-view-field-read.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,OAAO,EAAE,0BAA0B,EAAE,MAAM,kCAAkC,CAAC;;AAE9E,qBAKa,8BAA+B,SAAQ,0BAA2B,YAAW,MAAM;IACvF,SAAS,EAAE,SAAS,CAAC;IAErB,QAAQ,IAAI,IAAI;iCAHZ,8BAA8B;2CAA9B,8BAA8B;CAc1C"}
|
|
@@ -2,14 +2,15 @@ import { AfterViewInit, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { ActivatedRoute } from '@angular/router';
|
|
3
3
|
import { Observable, Subscription } from 'rxjs';
|
|
4
4
|
import { CategoriesAndDocuments, DocumentTreeNode } from '../../../domain/case-file-view';
|
|
5
|
-
import { CaseFileViewService, DocumentManagementService, LoadingService } from '../../../services';
|
|
5
|
+
import { CaseFileViewService, DocumentManagementService, LoadingService, SessionStorageService } from '../../../services';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
8
8
|
private readonly elementRef;
|
|
9
|
-
|
|
9
|
+
protected readonly route: ActivatedRoute;
|
|
10
10
|
private caseFileViewService;
|
|
11
11
|
private documentManagementService;
|
|
12
12
|
private readonly loadingService;
|
|
13
|
+
protected readonly sessionStorageService: SessionStorageService;
|
|
13
14
|
static readonly PARAM_CASE_ID = "cid";
|
|
14
15
|
allowMoving: boolean;
|
|
15
16
|
categoriesAndDocuments$: Observable<CategoriesAndDocuments>;
|
|
@@ -21,7 +22,7 @@ export declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit
|
|
|
21
22
|
content_type: string;
|
|
22
23
|
} | undefined;
|
|
23
24
|
private caseVersion;
|
|
24
|
-
constructor(elementRef: ElementRef, route: ActivatedRoute, caseFileViewService: CaseFileViewService, documentManagementService: DocumentManagementService, loadingService: LoadingService);
|
|
25
|
+
constructor(elementRef: ElementRef, route: ActivatedRoute, caseFileViewService: CaseFileViewService, documentManagementService: DocumentManagementService, loadingService: LoadingService, sessionStorageService: SessionStorageService);
|
|
25
26
|
ngOnInit(): void;
|
|
26
27
|
ngAfterViewInit(): void;
|
|
27
28
|
setMediaViewerFile(document: DocumentTreeNode): void;
|
package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts.map
CHANGED
|
@@ -1 +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,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAC1F,OAAO,EAAE,mBAAmB,EAAE,yBAAyB,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;;
|
|
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,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAC1F,OAAO,EAAE,mBAAmB,EAAE,yBAAyB,EAAE,cAAc,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;;AAE1H,qBAKa,0BAA2B,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS;IASrE,OAAO,CAAC,QAAQ,CAAC,UAAU;IACrC,SAAS,CAAC,QAAQ,CAAC,KAAK,EAAE,cAAc;IACxC,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,yBAAyB;IACjC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,SAAS,CAAC,QAAQ,CAAC,qBAAqB,EAAE,qBAAqB;IAbjE,gBAAuB,aAAa,SAAS;IACtC,WAAW,UAAQ;IACnB,uBAAuB,EAAE,UAAU,CAAC,sBAAsB,CAAC,CAAC;IAC5D,kCAAkC,EAAE,YAAY,CAAC;IACjD,8BAA8B,UAAS;IACvC,eAAe,EAAE;QAAE,mBAAmB,EAAE,MAAM,CAAC;QAAC,iBAAiB,EAAE,MAAM,CAAC;QAAC,YAAY,EAAE,MAAM,CAAA;KAAE,GAAG,SAAS,CAAC;IACrH,OAAO,CAAC,WAAW,CAAS;gBAEC,UAAU,EAAE,UAAU,EAC9B,KAAK,EAAE,cAAc,EAChC,mBAAmB,EAAE,mBAAmB,EACxC,yBAAyB,EAAE,yBAAyB,EAC3C,cAAc,EAAE,cAAc,EAC5B,qBAAqB,EAAE,qBAAqB;IAG1D,QAAQ,IAAI,IAAI;IAWhB,eAAe,IAAI,IAAI;IA8BvB,kBAAkB,CAAC,QAAQ,EAAE,gBAAgB,GAAG,IAAI;IAQpD,YAAY,CAAC,IAAI,EAAC,GAAG;IASrB,WAAW,IAAI,IAAI;iCA3Ef,0BAA0B;2CAA1B,0BAA0B;CAgFtC"}
|