@membranehq/sdk 0.22.1 → 0.22.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.
package/dist/bundle.js CHANGED
@@ -21891,6 +21891,7 @@
21891
21891
  const iframe = document.createElement('iframe');
21892
21892
  iframe.id = POPUP_ELEMENT_ID;
21893
21893
  iframe.src = uri;
21894
+ iframe.setAttribute('allow', 'clipboard-write');
21894
21895
  document.body.classList.add(BODY_CLASS);
21895
21896
  showIframeLoader();
21896
21897
  appendToContainer(iframe);
@@ -21917,6 +21918,7 @@
21917
21918
  const iframe = document.createElement('iframe');
21918
21919
  iframe.id = POPUP_ELEMENT_ID;
21919
21920
  iframe.name = iframeName;
21921
+ iframe.setAttribute('allow', 'clipboard-write');
21920
21922
  const form = document.createElement('form');
21921
21923
  form.method = 'POST';
21922
21924
  form.action = url;