@usecapsule/core-components 2.0.4-dev.1 → 2.0.4-dev.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -10300,7 +10300,7 @@ const CpslModal = class {
10300
10300
  }
10301
10301
  render() {
10302
10302
  if (this.noOverlay) {
10303
- return index.h(index.Host, null, this.Modal);
10303
+ return (index.h(index.Host, null, index.h("div", { id: "modal-wrapper" }, this.Modal)));
10304
10304
  }
10305
10305
  return (index.h(index.Host, { class: { 'include-mobile-styling': true } }, index.h("cpsl-overlay", { id: "overlay", open: this.open, enterTransitionDuration: this.enterTransitionDuration, exitTransitionDuration: this.exitTransitionDuration }), index.h("div", { id: "modal-wrapper", class: "modal-wrapper" }, this.Modal)));
10306
10306
  }