@hubsync/esign-web-sdk 6.9.14 → 6.9.16

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.
@@ -974,7 +974,9 @@ const VerdocsSign = class {
974
974
  return (h(Host, null, h("verdocs-loader", null)));
975
975
  }
976
976
  if (this.fatalErrorMessage) {
977
- return (h(Host, { class: { agreed: this.agreed } }, h("div", { class: "fatal-error" }, h("div", { class: "message" }, h("div", { class: "header" }, this.fatalErrorHeader), h("p", null, this.fatalErrorMessage)))));
977
+ return (h(Host, null, h("verdocs-ok-dialog", { heading: this.fatalErrorHeader, message: this.fatalErrorMessage, buttonLabel: "OK", onNext: () => {
978
+ window.location.reload();
979
+ } })));
978
980
  }
979
981
  if (this.delegated) {
980
982
  return (h(Host, { class: { agreed: false } }, h("div", { class: "fatal-error" }, h("div", { class: "message" }, h("div", { class: "header" }, "Delegated Signing Request"), h("p", null, "You have delegated signing to another recipient. You will not be able to sign this request again.")))));