@hmcts/ccd-case-ui-toolkit 7.3.49-cve-fix → 7.3.49

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
@@ -24,6 +24,7 @@ import * as i143 from '@nicky-lenaers/ngx-scroll-to';
24
24
  import { ScrollToService } from '@nicky-lenaers/ngx-scroll-to';
25
25
  import * as i140 from '@angular/cdk/tree';
26
26
  import { NestedTreeControl } from '@angular/cdk/tree';
27
+ import { DomSanitizer } from '@angular/platform-browser';
27
28
  import * as i6 from 'ngx-markdown';
28
29
  import * as i136 from '@angular/material/legacy-form-field';
29
30
  import * as i137 from '@angular/material/legacy-input';
@@ -4518,6 +4519,7 @@ declare class SelectFlagLocationComponent extends AbstractJourneyComponent imple
4518
4519
  }
4519
4520
 
4520
4521
  declare class ManageCaseFlagsComponent extends AbstractJourneyComponent implements OnInit, Journey {
4522
+ private readonly sanitizer;
4521
4523
  formGroup: FormGroup;
4522
4524
  flagsData: FlagsWithFormGroupPath[];
4523
4525
  caseTitle: string;
@@ -4534,6 +4536,7 @@ declare class ManageCaseFlagsComponent extends AbstractJourneyComponent implemen
4534
4536
  cachedControls: {
4535
4537
  [key: string]: AbstractControl;
4536
4538
  };
4539
+ constructor(multipageComponentStateService: MultipageComponentStateService, sanitizer: DomSanitizer);
4537
4540
  ngOnInit(): void;
4538
4541
  onFlagSelectionChange(selectedFlag: FormControl): void;
4539
4542
  private updateFlagDetails;
@@ -4548,6 +4551,7 @@ declare class ManageCaseFlagsComponent extends AbstractJourneyComponent implemen
4548
4551
  private onNoFlagsError;
4549
4552
  next(): void;
4550
4553
  reapplyCachedControls(): void;
4554
+ sanitizeHtml(content: string | null | undefined): string;
4551
4555
  static ɵfac: i0.ɵɵFactoryDeclaration<ManageCaseFlagsComponent, never>;
4552
4556
  static ɵcmp: i0.ɵɵComponentDeclaration<ManageCaseFlagsComponent, "ccd-manage-case-flags", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "flagsData": { "alias": "flagsData"; "required": false; }; "caseTitle": { "alias": "caseTitle"; "required": false; }; "displayContextParameter": { "alias": "displayContextParameter"; "required": false; }; }, { "caseFlagStateEmitter": "caseFlagStateEmitter"; }, never, never, false, never>;
4553
4557
  }