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

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.
@@ -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
  }