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