@hmcts/ccd-case-ui-toolkit 5.0.8-angular11-upgrade → 5.0.9-angular11-upgrade

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.
@@ -461,7 +461,7 @@
461
461
  }], null, null);
462
462
  })();
463
463
 
464
- /*! *****************************************************************************
464
+ /******************************************************************************
465
465
  Copyright (c) Microsoft Corporation.
466
466
 
467
467
  Permission to use, copy, modify, and/or distribute this software for any
@@ -480,11 +480,13 @@
480
480
  extendStatics = Object.setPrototypeOf ||
481
481
  ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
482
482
  function (d, b) { for (var p in b)
483
- if (b.hasOwnProperty(p))
483
+ if (Object.prototype.hasOwnProperty.call(b, p))
484
484
  d[p] = b[p]; };
485
485
  return extendStatics(d, b);
486
486
  };
487
487
  function __extends(d, b) {
488
+ if (typeof b !== "function" && b !== null)
489
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
488
490
  extendStatics(d, b);
489
491
  function __() { this.constructor = d; }
490
492
  d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
@@ -618,15 +620,23 @@
618
620
  return { value: op[0] ? op[1] : void 0, done: true };
619
621
  }
620
622
  }
621
- function __createBinding(o, m, k, k2) {
623
+ var __createBinding = Object.create ? (function (o, m, k, k2) {
624
+ if (k2 === undefined)
625
+ k2 = k;
626
+ var desc = Object.getOwnPropertyDescriptor(m, k);
627
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
628
+ desc = { enumerable: true, get: function () { return m[k]; } };
629
+ }
630
+ Object.defineProperty(o, k2, desc);
631
+ }) : (function (o, m, k, k2) {
622
632
  if (k2 === undefined)
623
633
  k2 = k;
624
634
  o[k2] = m[k];
625
- }
626
- function __exportStar(m, exports) {
635
+ });
636
+ function __exportStar(m, o) {
627
637
  for (var p in m)
628
- if (p !== "default" && !exports.hasOwnProperty(p))
629
- exports[p] = m[p];
638
+ if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
639
+ __createBinding(o, m, p);
630
640
  }
631
641
  function __values(o) {
632
642
  var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
@@ -666,11 +676,13 @@
666
676
  }
667
677
  return ar;
668
678
  }
679
+ /** @deprecated */
669
680
  function __spread() {
670
681
  for (var ar = [], i = 0; i < arguments.length; i++)
671
682
  ar = ar.concat(__read(arguments[i]));
672
683
  return ar;
673
684
  }
685
+ /** @deprecated */
674
686
  function __spreadArrays() {
675
687
  for (var s = 0, i = 0, il = arguments.length; i < il; i++)
676
688
  s += arguments[i].length;
@@ -679,7 +691,17 @@
679
691
  r[k] = a[j];
680
692
  return r;
681
693
  }
682
- ;
694
+ function __spreadArray(to, from, pack) {
695
+ if (pack || arguments.length === 2)
696
+ for (var i = 0, l = from.length, ar; i < l; i++) {
697
+ if (ar || !(i in from)) {
698
+ if (!ar)
699
+ ar = Array.prototype.slice.call(from, 0, i);
700
+ ar[i] = from[i];
701
+ }
702
+ }
703
+ return to.concat(ar || Array.prototype.slice.call(from));
704
+ }
683
705
  function __await(v) {
684
706
  return this instanceof __await ? (this.v = v, this) : new __await(v);
685
707
  }
@@ -725,32 +747,45 @@
725
747
  return cooked;
726
748
  }
727
749
  ;
750
+ var __setModuleDefault = Object.create ? (function (o, v) {
751
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
752
+ }) : function (o, v) {
753
+ o["default"] = v;
754
+ };
728
755
  function __importStar(mod) {
729
756
  if (mod && mod.__esModule)
730
757
  return mod;
731
758
  var result = {};
732
759
  if (mod != null)
733
760
  for (var k in mod)
734
- if (Object.hasOwnProperty.call(mod, k))
735
- result[k] = mod[k];
736
- result.default = mod;
761
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
762
+ __createBinding(result, mod, k);
763
+ __setModuleDefault(result, mod);
737
764
  return result;
738
765
  }
739
766
  function __importDefault(mod) {
740
767
  return (mod && mod.__esModule) ? mod : { default: mod };
741
768
  }
742
- function __classPrivateFieldGet(receiver, privateMap) {
743
- if (!privateMap.has(receiver)) {
744
- throw new TypeError("attempted to get private field on non-instance");
745
- }
746
- return privateMap.get(receiver);
747
- }
748
- function __classPrivateFieldSet(receiver, privateMap, value) {
749
- if (!privateMap.has(receiver)) {
750
- throw new TypeError("attempted to set private field on non-instance");
751
- }
752
- privateMap.set(receiver, value);
753
- return value;
769
+ function __classPrivateFieldGet(receiver, state, kind, f) {
770
+ if (kind === "a" && !f)
771
+ throw new TypeError("Private accessor was defined without a getter");
772
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
773
+ throw new TypeError("Cannot read private member from an object whose class did not declare it");
774
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
775
+ }
776
+ function __classPrivateFieldSet(receiver, state, value, kind, f) {
777
+ if (kind === "m")
778
+ throw new TypeError("Private method is not writable");
779
+ if (kind === "a" && !f)
780
+ throw new TypeError("Private accessor was defined without a setter");
781
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
782
+ throw new TypeError("Cannot write private member to an object whose class did not declare it");
783
+ return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
784
+ }
785
+ function __classPrivateFieldIn(state, receiver) {
786
+ if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function"))
787
+ throw new TypeError("Cannot use 'in' operator on non-object");
788
+ return typeof state === "function" ? receiver === state : state.has(receiver);
754
789
  }
755
790
 
756
791
  var _c0$K = function (a0) { return { "govuk-input--error": a0 }; };