@hmcts/ccd-case-ui-toolkit 7.3.32-exui-3345 → 7.3.33-3851

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/index.d.ts CHANGED
@@ -1672,7 +1672,6 @@ declare class DocumentTreeNode {
1672
1672
  children?: DocumentTreeNode[];
1673
1673
  document_filename?: string;
1674
1674
  document_binary_url?: string;
1675
- content_type?: string;
1676
1675
  attribute_path?: string;
1677
1676
  upload_timestamp?: string;
1678
1677
  category_order?: number;
@@ -1803,8 +1802,6 @@ declare class DocumentManagementService {
1803
1802
  private static readonly POWERPOINT;
1804
1803
  private static readonly TXT;
1805
1804
  private static readonly RTF;
1806
- private static readonly HTML_MIME_ALLOWLIST;
1807
- private static readonly HTML_EXTENSION_ALLOWLIST;
1808
1805
  private static readonly RESPONSE_DELAY;
1809
1806
  private static readonly imagesList;
1810
1807
  private static readonly wordList;
@@ -1816,8 +1813,6 @@ declare class DocumentManagementService {
1816
1813
  uploadFile(formData: FormData): Observable<DocumentData>;
1817
1814
  setCaseInfo(): void;
1818
1815
  getMediaViewerInfo(documentFieldValue: any): string;
1819
- getDocumentBinaryUrl(documentFieldValue: any): string;
1820
- isHtmlDocument(documentFieldValue: any): boolean;
1821
1816
  getContentType(documentFieldValue: any): string;
1822
1817
  isImage(imageType: string): boolean;
1823
1818
  isWord(wordType: string): boolean;
@@ -1831,8 +1826,6 @@ declare class DocumentManagementService {
1831
1826
  private getCurrentPathname;
1832
1827
  private resolveCaseTypeId;
1833
1828
  private transformDocumentUrl;
1834
- private normaliseMimeType;
1835
- private getFileExtension;
1836
1829
  private getDocStoreUrl;
1837
1830
  isDocumentSecureModeEnabled(): boolean;
1838
1831
  static ɵfac: i0.ɵɵFactoryDeclaration<DocumentManagementService, never>;
@@ -4189,7 +4182,6 @@ declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit, OnDes
4189
4182
  private documentManagementService;
4190
4183
  private readonly loadingService;
4191
4184
  private readonly sessionStorageService;
4192
- private readonly windowService;
4193
4185
  private readonly caseNotifier;
4194
4186
  private readonly abstractConfig;
4195
4187
  static readonly PARAM_CASE_ID = "cid";
@@ -4204,7 +4196,7 @@ declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit, OnDes
4204
4196
  icp_jurisdictions: string[];
4205
4197
  icpEnabled: boolean;
4206
4198
  caseId: string;
4207
- constructor(elementRef: ElementRef, route: ActivatedRoute, caseFileViewService: CaseFileViewService, documentManagementService: DocumentManagementService, loadingService: LoadingService, sessionStorageService: SessionStorageService, windowService: WindowService, caseNotifier: CaseNotifier, abstractConfig: AbstractAppConfig);
4199
+ constructor(elementRef: ElementRef, route: ActivatedRoute, caseFileViewService: CaseFileViewService, documentManagementService: DocumentManagementService, loadingService: LoadingService, sessionStorageService: SessionStorageService, caseNotifier: CaseNotifier, abstractConfig: AbstractAppConfig);
4208
4200
  ngOnInit(): void;
4209
4201
  ngAfterViewInit(): void;
4210
4202
  setMediaViewerFile(document: DocumentTreeNode): void;
@@ -4226,6 +4218,7 @@ declare class CaseFileViewFolderComponent implements OnInit, OnDestroy {
4226
4218
  private readonly router;
4227
4219
  private readonly documentManagementService;
4228
4220
  private readonly dialog;
4221
+ private readonly appConfig;
4229
4222
  private static readonly UNCATEGORISED_DOCUMENTS_TITLE;
4230
4223
  private static readonly DOCUMENT_SEARCH_FORM_CONTROL_NAME;
4231
4224
  private static readonly MINIMUM_SEARCH_CHARACTERS;
@@ -4249,7 +4242,7 @@ declare class CaseFileViewFolderComponent implements OnInit, OnDestroy {
4249
4242
  private getChildren;
4250
4243
  nestedChildren: (_: number, nodeData: DocumentTreeNode) => DocumentTreeNode[];
4251
4244
  get documentCount(): number;
4252
- constructor(windowService: WindowService, router: Router, documentManagementService: DocumentManagementService, dialog: MatLegacyDialog);
4245
+ constructor(windowService: WindowService, router: Router, documentManagementService: DocumentManagementService, dialog: MatLegacyDialog, appConfig: AbstractAppConfig);
4253
4246
  collapseAll(expand: boolean): void;
4254
4247
  expandAll(expand: boolean): void;
4255
4248
  ngOnInit(): void;