@hmcts/ccd-case-ui-toolkit 4.18.23-case-exclusion → 4.18.23-case-exclusion-fix

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/dist/index.umd.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @hmcts/ccd-case-ui-toolkit - Case UI Toolkit
3
- * @version v4.18.23-case-exclusion
3
+ * @version v4.18.23-case-exclusion-fix
4
4
  * @link undefined
5
5
  * @license MIT
6
6
  */
@@ -21467,6 +21467,9 @@ var CaseNotifier = /** @class */ (function () {
21467
21467
  this.caseViewSource = new rxjs_1.BehaviorSubject(new domain_1.CaseView());
21468
21468
  this.caseView = this.caseViewSource.asObservable();
21469
21469
  }
21470
+ CaseNotifier.prototype.removeCahedCase = function () {
21471
+ this.cachedCaseView = null;
21472
+ };
21470
21473
  CaseNotifier.prototype.announceCase = function (c) {
21471
21474
  this.caseViewSource.next(c);
21472
21475
  };