@myop/sdk 0.3.24 → 0.3.25
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/bundled-declarations.d.ts +23 -0
- package/dist/cjs/_IframeSDK.1f1af47b.min.js +1 -0
- package/dist/cjs/{_IframeSDK.398c9caf.js → _IframeSDK.4fb657bf.js} +57 -4
- package/dist/cjs/_IframeSDK.4fb657bf.js.map +7 -0
- package/dist/cjs/_MyopHelpers.6fb8c382.min.js +1 -0
- package/dist/cjs/{_MyopHelpers.71a8a09b.js → _MyopHelpers.859b9bc8.js} +37 -0
- package/dist/cjs/{_MyopHelpers.71a8a09b.js.map → _MyopHelpers.859b9bc8.js.map} +2 -2
- package/dist/cjs/_WebComponentSDK.05217c76.min.js +1 -0
- package/dist/cjs/{_WebComponentSDK.c8c6ebc0.js → _WebComponentSDK.949eae52.js} +57 -4
- package/dist/cjs/{_WebComponentSDK.c8c6ebc0.js.map → _WebComponentSDK.949eae52.js.map} +2 -2
- package/dist/cjs/{_hostSDK.6d5f8f31.js → _hostSDK.664e938c.js} +57 -4
- package/dist/cjs/{_hostSDK.6d5f8f31.js.map → _hostSDK.664e938c.js.map} +2 -2
- package/dist/cjs/_hostSDK.d90560a4.min.js +1 -0
- package/dist/cjs/myop_sdk.js +14 -14
- package/dist/cjs/myop_sdk.js.map +1 -1
- package/dist/cjs/myop_sdk.min.js +1 -1
- package/dist/cjs-bundled/myop_sdk.bundled.js +64 -6
- package/dist/cjs-bundled/myop_sdk.bundled.js.map +3 -3
- package/dist/cjs-bundled/myop_sdk.bundled.min.js +1 -1
- package/dist/module/Iframe/index.js +58 -5
- package/dist/module/Iframe/index.js.map +2 -2
- package/dist/module/SDK.js +64 -6
- package/dist/module/SDK.js.map +3 -3
- package/dist/module/embeddedSDK.js +1 -1
- package/dist/module/helpers/CloudRepository.d.ts +14 -0
- package/dist/module/helpers/cloudRepositoryHelpers.d.ts +1 -0
- package/dist/module/helpers/index.js +37 -1
- package/dist/module/helpers/index.js.map +2 -2
- package/dist/module/host/embeddedSDK.js +1 -1
- package/dist/module/host/hostSDK.d.ts +8 -0
- package/dist/module/host/index.js +58 -5
- package/dist/module/host/index.js.map +2 -2
- package/dist/module/webcomponent/index.js +58 -5
- package/dist/module/webcomponent/index.js.map +2 -2
- package/package.json +1 -1
- package/dist/cjs/_IframeSDK.398c9caf.js.map +0 -7
- package/dist/cjs/_IframeSDK.b1090eff.min.js +0 -1
- package/dist/cjs/_MyopHelpers.19dc0df3.min.js +0 -1
- package/dist/cjs/_WebComponentSDK.fc58ea5a.min.js +0 -1
- package/dist/cjs/_hostSDK.2c80162b.min.js +0 -1
|
@@ -1739,6 +1739,20 @@ declare module "@myop/sdk/helpers/CloudRepository" {
|
|
|
1739
1739
|
* If env/preview not specified and component was preloaded, uses preloaded params
|
|
1740
1740
|
*/
|
|
1741
1741
|
fetchComponentV2(componentId: string, environmentIdentifier?: string, preview?: boolean): Promise<IComponentConfig>;
|
|
1742
|
+
/**
|
|
1743
|
+
* Synchronous version of fetchComponentV2 — returns the config only if
|
|
1744
|
+
* the fetch already completed, null otherwise.
|
|
1745
|
+
*
|
|
1746
|
+
* Uses the same `this.variants` cache that fetchComponentV2/preloadComponents
|
|
1747
|
+
* populate. Each cached Promise is tagged with a `.resolved` property when
|
|
1748
|
+
* it settles — this method just reads that property. No separate cache.
|
|
1749
|
+
*
|
|
1750
|
+
* Why this exists: React Native needs the config at render time to embed it
|
|
1751
|
+
* in the WebView HTML (can't await in useState). If preloadComponents ran
|
|
1752
|
+
* earlier and the fetch completed, this returns the result synchronously,
|
|
1753
|
+
* skipping the WEBVIEW_READY → fetch → inject round trip entirely.
|
|
1754
|
+
*/
|
|
1755
|
+
getResolvedConfig(componentId: string, env?: string, preview?: boolean): IComponentConfig | null;
|
|
1742
1756
|
/**
|
|
1743
1757
|
* Fetch a v1 component from a flow
|
|
1744
1758
|
*/
|
|
@@ -1771,6 +1785,7 @@ declare module "@myop/sdk/helpers/cloudRepositoryHelpers" {
|
|
|
1771
1785
|
export const setCloudRepositoryUrl: (url: string) => void;
|
|
1772
1786
|
export const setCloudRepository: (repository: CloudRepository) => void;
|
|
1773
1787
|
export const setEnvironment: (env: string) => void;
|
|
1788
|
+
export const getResolvedConfig: (componentId: string, env?: string, preview?: boolean) => import("common").IComponentConfig;
|
|
1774
1789
|
export const preloadComponents: (ids: string[], env?: string, preview?: boolean) => Promise<PromiseSettledResult<import("common").IComponentConfig>[]>;
|
|
1775
1790
|
}
|
|
1776
1791
|
declare module "@myop/sdk/helpers" {
|
|
@@ -1854,6 +1869,14 @@ declare module "@myop/sdk/host/hostSDK" {
|
|
|
1854
1869
|
_hasParent?: boolean;
|
|
1855
1870
|
_inspection?: boolean;
|
|
1856
1871
|
data?: any;
|
|
1872
|
+
/**
|
|
1873
|
+
* Control iframe auto-sizing behavior.
|
|
1874
|
+
* - true (default): iframe auto-sizes to content height, width fills parent.
|
|
1875
|
+
* - false: no sizing logic runs. No observers, no measurements, no style changes.
|
|
1876
|
+
* The iframe stays at position:absolute filling the container.
|
|
1877
|
+
* The host is fully responsible for container dimensions.
|
|
1878
|
+
*/
|
|
1879
|
+
autoSize?: boolean;
|
|
1857
1880
|
}
|
|
1858
1881
|
export const hostSDK: HostSDK;
|
|
1859
1882
|
global {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var en=Object.defineProperty,An=Object.defineProperties;var zn=Object.getOwnPropertyDescriptors;var Zt=Object.getOwnPropertySymbols;var Kn=Object.prototype.hasOwnProperty,$n=Object.prototype.propertyIsEnumerable;var ht=(o,n,e)=>n in o?en(o,n,{enumerable:!0,configurable:!0,writable:!0,value:e}):o[n]=e,h=(o,n)=>{for(var e in n||(n={}))Kn.call(n,e)&&ht(o,e,n[e]);if(Zt)for(var e of Zt(n))$n.call(n,e)&&ht(o,e,n[e]);return o},z=(o,n)=>An(o,zn(n));var Fn=(o,n)=>{for(var e in n)en(o,e,{get:n[e],enumerable:!0})};var i=(o,n,e)=>ht(o,typeof n!="symbol"?n+"":n,e);var ie=class{constructor(n,e,t,s,r){this.myopId=n;this.htmlTagName=e;this.BoundingRect=t;this.offsetTop=s;this.offsetLeft=r;i(this,"type","MyopElementRef")}};var tn=async o=>{if(typeof o=="function")o();else if(o instanceof Promise){let n=await o;typeof n=="function"&&n()}},M=class{constructor(n){this.messageToHost=n}},Be=class extends M{constructor(e,t){super(e);this.messageToHost=e;this.context=t}};var u={InitRequest:"InitRequest",InitResponse:"InitResponse",InitMessage:"InitMessage",DisposeMessage:"DisposeMessage",ChangeTextMessage:"ChangeTextMessage",BindClickMessage:"BindClickMessage",DetectMyopRefsMessage:"DetectMyopRefsMessage",ExecuteScriptMessage:"ExecuteScriptMessage",AddEventListenerMessage:"AddEventListenerMessage",SetAttributeMessage:"SetAttributeMessage",CreateRefComponentMessage:"CreateRefComponentMessage",EnvelopedMessage:"EnvelopedMessage",GetElementValueMessage:"GetElementValueMessage",GetAttributeMessage:"GetAttributeMessage",SetInnerHtml:"SetInnerHtml",ExecuteComponentMethod:"ExecuteComponentMethod",SetMutationObserverMessage:"SetMutationObserverMessage",SetResizeObserverMessage:"SetResizeObserverMessage",CleanupMessage:"CleanupMessage",In:{DetectedMyopRefsMessage:"DetectedMyopRefsMessage",ClickReplayMessage:"ClickReplayMessage",ExecuteScriptReplyMessage:"ExecuteScriptReplyMessage",EventListenerCallbackMessage:"EventListenerCallbackMessage",ElementValueReplayMessage:"ElementValueReplayMessage",GetAttributeReplayMessage:"GetAttributeReplayMessage",RefComponentCreatedMessage:"RefComponentCreatedMessage",EnvelopedMessage:"EnvelopedMessage",MutationObserverMessage:"MutationObserverMessage",CleanupReplayMessage:"CleanupReplayMessage",ResizeObserverMessage:"ResizeObserverMessage"}};var Le={};Fn(Le,{AddEventListenerMessage:()=>bt,BaseMyopMessage:()=>C,BindClickMessage:()=>It,ChangeTextMessage:()=>xt,CleanupMessage:()=>be,CleanupReplayMessage:()=>we,ClickReplayMessage:()=>V,CreateRefComponentMessage:()=>Me,CustomRefMessage:()=>j,DetectMyopRefsMessage:()=>Tt,DetectedMyopRefsMessage:()=>X,DisposeMessage:()=>Se,ElementValueReplayMessage:()=>Q,EnvelopedMessage:()=>Ce,EventListenerCallbackMessage:()=>Y,ExecuteComponentMethod:()=>k,ExecuteScriptMessage:()=>_,ExecuteScriptReplyMessage:()=>G,GetAttributeMessage:()=>vt,GetAttributeReplayMessage:()=>Ie,GetElementValueMessage:()=>St,InitMessage:()=>re,InitRequest:()=>J,InitResponse:()=>he,MessageDirection:()=>b,MutationObserverMessage:()=>xe,MyopBindMessage:()=>S,MyopBindReplayMessage:()=>w,MyopElementMessage:()=>Ct,Ref:()=>F,RefComponentCreatedMessage:()=>K,ResizeObserverMessage:()=>Ee,SetAttributeMessage:()=>wt,SetInnerHtml:()=>Et,SetMutationObserverMessage:()=>Rt,SetResizeObserverMessage:()=>_t,stripFunction:()=>rn});var R=()=>"10000000-1000-4000-8000-100000000000".replace(/[018]/g,o=>(+o^crypto.getRandomValues(new Uint8Array(1))[0]&15>>+o/4).toString(16));var Wn=o=>{let n=[...o].map(e=>e.toString(16).padStart(2,"0")).join("");return[n.slice(0,8),n.slice(8,12),n.slice(12,16),n.slice(16,20),n.slice(20)].join("-")};var Nn=o=>{let n=o.replace(/-/g,"+").replace(/_/g,"/");for(;n.length%4;)n+="=";let e=atob(n);return Uint8Array.from(e,t=>t.charCodeAt(0))};var Mt=o=>{let n=Nn(o);if(n.length%16!==0)throw new Error("Invalid input length");let e=[];for(let t=0;t<n.length;t+=16)e.push(Wn(n.slice(t,t+16)));return e};var nn=o=>new Promise(n=>setTimeout(n,o));var b=class{};i(b,"down","down"),i(b,"up","up");var C=class{constructor(){i(this,"id",R());i(this,"myop",!0);i(this,"content");i(this,"source");i(this,"destination");i(this,"route");i(this,"ref");i(this,"direction");i(this,"cleanable",!1)}static create(...n){return new this(...n)}isTypeof(n){return n.messageType===this.messageType}},Ct=class extends C{constructor(e){super();this.ref=e}},w=class extends C{constructor(e){super();this.replayToHandler=e}},S=class extends C{constructor(e){super();this.handler=e;i(this,"handlerUniqueId",R())}},F=class o{constructor(n,e){this.refConfig=n;this.component=e;i(this,"myop",!0);i(this,"__nonProxied");this.__nonProxied=z(h({},this),{component:null})}static create(n,e,t){let s=e;return s||(s={id:"",name:"",description:"",selectorType:"id-attribute",selector:n,behavior:{type:"code"}}),new o(s,t)}};var on="ClickReplayMessage",It=class extends S{constructor(e,t){super(t);this.ref=e;i(this,"replyMessageKey",on);i(this,"messageType","BindClickMessage");i(this,"cleanable",!0)}},V=class extends w{constructor(){super(...arguments);i(this,"messageType",on)}};var xt=class extends C{constructor(e,t){super();this.ref=e;i(this,"messageType","ChangeTextMessage");this.content=t}};var sn="ExecuteScriptReplyMessage",Un=/(?:function\s*\w*\s*\([^)]*\)\s*\{([\s\S]*?)\}|(\([^)]*\)\s*=>\s*\{([\s\S]*?)\}))\s*$/,qn=/\(\s*[^)]+\s*\)\s*=>\s*(.+)/,rn=o=>{let n=o.match(Un);if(n)return n[1]||n[3];{let e=o.match(qn);if(e)return e[1].trim()}},_=class extends S{constructor(e,t=()=>{},s){super(t);this.scriptInputs=s;i(this,"replyMessageKey",sn);i(this,"messageType","ExecuteScriptMessage");i(this,"script","");this.script=e.toString(),this.content=e.toString(),this.content=rn(this.content)}};i(_,"replierKey","send"),i(_,"completeStreamKey","completeStream");var G=class extends w{constructor(e,t){super(e);this.replayToHandler=e;this.content=t;i(this,"messageType",sn)}};var j=class extends _{constructor(e,t,s=()=>{}){super(({rootRef:r,elementId:a,_script:p,__scriptInputs:d})=>{let c=(r.shadowRoot||r.container).querySelectorAll("[myop-id='".concat(a,"']"));return c.length?(d.ref=c[0],new Function("return (".concat(p,")(...arguments)"))(d)):null},s);this.scriptInputs=t;this.scriptInputs=z(h({},t),{_script:e.toString()})}};var an="EventListenerCallbackMessage",bt=class extends S{constructor(e,t,s){super(s);this.ref=e;this.type=t;this.handler=s;i(this,"replyMessageKey",an);i(this,"messageType","AddEventListenerMessage");i(this,"cleanable",!0);i(this,"serializableSkeleton",!1)}withSerializableSkeleton(e){return this.serializableSkeleton=e,this}},Y=class extends w{constructor(e,t){super(e);this.replayToHandler=e;this.e=t;i(this,"messageType",an);this.content={e:t}}};var wt=class extends C{constructor(e,t,s){super();this.ref=e;this.name=t;this.value=s;i(this,"messageType","SetAttributeMessage")}};var pn="ElementValueReplayMessage",St=class extends S{constructor(e,t){super(t);this.ref=e;i(this,"replyMessageKey",pn);i(this,"messageType","GetElementValueMessage")}},Q=class extends w{constructor(e){super();this.content=e;i(this,"messageType",pn)}};var Et=class extends C{constructor(e,t){super();this.ref=e;i(this,"messageType","SetInnerHtml");this.content=t}};var re=class extends C{constructor(e){super();i(this,"messageType","InitMessage");this.content={id:e}}isTypeof(e){return e.messageType===this.messageType}},he=class extends re{constructor(){super(...arguments);i(this,"messageType","InitResponse")}},J=class extends C{constructor(){super(...arguments);i(this,"messageType","InitRequest")}};var dn="RefComponentCreatedMessage",Me=class extends S{constructor(e,t,s,r){super(r);this.refConfig=e;this.nestedComponentConfig=t;this.options=s;i(this,"replyMessageKey",dn);i(this,"messageType","CreateRefComponentMessage")}},K=class extends w{constructor(e,t,s){super(e);this.replayToHandler=e;this.nestedRefs=t;this.failed=s;i(this,"messageType",dn)}};var Ce=class extends C{constructor(e,t){super();this.destination=e;this.message=t;i(this,"messageType","EnvelopedMessage");let s=t;this.route=[e,...s.route?s.route:[]]}};var cn="DetectedMyopRefsMessage",Tt=class extends S{constructor(){super(...arguments);i(this,"messageType","DetectMyopRefsMessage");i(this,"replyMessageKey",cn)}},X=class extends w{constructor(e,t){super(e);this.replayToHandler=e;i(this,"messageType",cn);this.content=t}isTypeof(e){return e.messageType===this.messageType}};var mn="GetAttributeReplayMessage",vt=class extends S{constructor(e,t,s){super(s);this.ref=e;this.name=t;i(this,"replyMessageKey",mn);i(this,"messageType","GetAttributeMessage")}},Ie=class extends w{constructor(e){super();this.content=e;i(this,"messageType",mn)}};var k=class extends C{constructor(e){super();this.method=e;i(this,"messageType","ExecuteComponentMethod")}};var Rt=class extends C{constructor(){super(...arguments);i(this,"messageType","SetMutationObserverMessage")}},xe=class extends C{constructor(){super(...arguments);i(this,"messageType","MutationObserverMessage")}};var ln="CleanupReplayMessage",be=class extends S{constructor(e,t){super(t);this.cleanupForMessageId=e;i(this,"replyMessageKey",ln);i(this,"messageType","CleanupMessage")}},we=class extends w{constructor(e){super();this.customCleanup=e;i(this,"messageType",ln)}};var Se=class extends C{constructor(){super(...arguments);i(this,"messageType","DisposeMessage")}};var _t=class extends C{constructor(){super(...arguments);i(this,"cleanable",!0);i(this,"messageType","SetResizeObserverMessage")}},Ee=class extends C{constructor(){super(...arguments);i(this,"messageType","ResizeObserverMessage")}};var Ht=class{constructor(n,e){this.id=n;this.context=e;i(this,"send",n=>{})}},ae=class{constructor(){i(this,"messageToHandleAfterInit",[]);i(this,"components",{});i(this,"alwaysPassEnvelopesToHost",!1);i(this,"messageCleanupCache",{})}handleIncomeMessages(n){let e=n.data?n.data:n.detail;if(!(!e||!e.myop)){let t=e;if(t.direction!==b.down)return;if(t.messageType===u.DisposeMessage){t.destination&&delete this.components[t.destination];return}if(t.messageType===u.InitMessage){let s=t.content.id;if(this.components[s])return;this.components[s]=new Ht(s),this.messageToHost(new he(s));return}if(t.messageType===u.EnvelopedMessage){let s=t,r=s.message;if(t=r,this.alwaysPassEnvelopesToHost||this.components[t.destination]){let a=myop.hostSDK.components.find(d=>d.id===r.destination);if(a){a.send(r);return}let p=myop.hostSDK.components.find(d=>d.id===s.destination);if(p){p.send(r);return}}else return}if(t.messageType){if(t.messageType===u.CleanupMessage){let r=t,a=this.messageCleanupCache[r.cleanupForMessageId],p=new we(!!a);p.destination=t.destination,a?(delete this.messageCleanupCache[r.cleanupForMessageId],tn(a).then(()=>{this.messageToHost(p,r)}).catch(()=>{})):this.messageToHost(p,r);return}let s=!1;this.supportedHandlers.forEach(r=>{if(r.messageType===t.messageType){s=!0;let a=r.executor(t);if(t.cleanable&&a&&(this.messageCleanupCache[t.id]=a),a&&!t.cleanable)throw new Error("Cleanup handler generated for non-cleanable message. \nmessageType - ".concat(t.messageType,", handler executor was - ").concat(r.executor,"\n\nPlease review the message definition object & message handler.\nTo ensure cleanup properly set 'cleanable' true at message definition and return IMessageExecutorCleanup from your handlers."));if(!a&&t.cleanable)throw new Error("No cleanup handler generated for a cleanable message. \nmessageType - ".concat(t.messageType,", handler executor was - ").concat(r.executor,"\n\nPlease review the message definition object & message handler.\nTo ensure cleanup properly set 'cleanable' true at message definition and return IMessageExecutorCleanup from your handlers."))}})}else console.log("unsupported message type")}}};var $={IframeLoader:"IframeLoader",WebComponentLoader:"WebComponentLoader",HTMLLoader:"HTMLLoader",MinimizedLoader:"MinimizedLoader"};var Z={open:"open",closed:"closed",none:"none",localFrame:"localFrame"};var ce={message:"message",code:"code"},pe=class{};i(pe,"code","code"),i(pe,"component","component");var ee={Segmented:"Segmented",Dedicated:"Dedicated",Default:"Default"},Pe={Segment:"Segment",Promo:"Promo",AB:"AB"},de=class{constructor(n,e){this.container=n;this.shadowRoot=e;i(this,"getRootDiv",()=>(this.shadowRoot||this.container).querySelector("div"));i(this,"getRoot",()=>this.shadowRoot||this.container)}};var E={id:"myop-id"};var Oe=class extends M{constructor(){super(...arguments);i(this,"messageType",u.DetectMyopRefsMessage);i(this,"executor",e=>{let t=document.querySelectorAll("[".concat(E.id,"]")),s=[];t.forEach(r=>{let a=r.getAttribute(E.id);a&&s.push(new ie(a,r.tagName,r.getBoundingClientRect()))}),this.messageToHost(new X(e.handlerUniqueId,s))})}};var I=(o,n)=>n.querySelectorAll("[".concat(E.id,"='").concat(o.refConfig.selector,"']")),fn=(o,n)=>{let e=I(o,n);return e.length?e.item(0):null};var Ae=class extends M{constructor(){super(...arguments);i(this,"messageType",u.BindClickMessage);i(this,"executor",e=>{let t=[];return I(e.ref,document).forEach(r=>{let a=()=>{this.messageToHost(new V,e)};r.addEventListener("click",a);let p=()=>{r.removeEventListener("click",a)};t.push(p)}),()=>{t.forEach(r=>r())}})}};var ze=class extends M{constructor(){super(...arguments);i(this,"messageType",u.ChangeTextMessage);i(this,"executor",e=>{I(e.ref,document).forEach(s=>{s.textContent=e.content})})}};var kt=o=>o!==Object(o),Vn=o=>typeof o=="function",Dt=o=>{if(kt(o))return!0;if(Vn(o)||Object.getPrototypeOf(o))return!1;for(let n in o){let e=o[n];if(typeof e=="object"){if(!Dt(e))return!1}else{if(kt(e))continue;return!1}}return!0},H=(o,n={},e=!0,t=new WeakMap)=>{if(kt(o))return o;if(Array.isArray(o)){if(t.has(o))return t.get(o);let s=[];t.set(o,s);for(let r=0;r<o.length;r++){let a=o[r];s[r]=H(a,n,e,t)}return s}if(o!==null&&typeof o=="object"){if(t.has(o))return t.get(o);let s={};t.set(o,s);for(let r in o){let a=typeof n=="boolean"?n:n[r];a&&(a===!0?(e?o[r]!==void 0:o[r])&&(s[r]=H(o[r],!0,e,t)):typeof a=="object"&&(s[r]=H(o[r],a,e,t)))}return s}return{}};var Ke=(o,n,e)=>{let t=o.scriptInputs?o.scriptInputs:{};t.makeSerializable=H,t.send=n,t.rootRef=e,t.__scriptInputs=t;let r=new Function("return (".concat(o.script,")(...arguments)"))(t);n(r)};var $e=class extends M{constructor(){super(...arguments);i(this,"messageType",u.ExecuteScriptMessage);i(this,"executor",e=>{Ke(e,s=>{this.messageToHost(new G(e.handlerUniqueId,s))},new de(document.documentElement))})}};var Fe="__federation__",un="onLoad";var me=(o,n)=>{window[Fe]&&window[Fe][o]&&window[Fe][o][un]&&window[Fe][o][un]({[o]:n})};var We=class extends M{constructor(){super(...arguments);i(this,"messageType",u.AddEventListenerMessage);i(this,"executor",e=>{let t=I(e.ref,document),s=[];return t.forEach(r=>{let a=p=>{requestAnimationFrame(()=>{this.messageToHost(new Y(e.handlerUniqueId,H(p,e.serializableSkeleton)))})};r.addEventListener(e.type,a),s.push(()=>{r.removeEventListener(e.type,a)})}),()=>{s.forEach(r=>{r()})}})}};var Ne=class extends M{constructor(){super(...arguments);i(this,"messageType",u.SetAttributeMessage);i(this,"executor",e=>{I(e.ref,document).forEach(s=>{s.setAttribute(e.name,e.value)})})}};var P=class{constructor(n,e,t){this.componentDefinition=n;this.container=e;i(this,"id","");i(this,"messageHandlers",{});i(this,"element");i(this,"_markedForDisposed",!1);i(this,"bind",(n,e)=>{this.messageHandlers[n]||(this.messageHandlers[n]=[]),this.messageHandlers[n].includes(e)||this.messageHandlers[n].push(e)});i(this,"bindWhen",(n,e,t)=>{if(!t)throw new Error("can't use component.bindWhen without an handler");this.messageHandlers[n]||(this.messageHandlers[n]=[]);let s=this.messageHandlers[n],r=a=>e(a)?(t(a),!0):!1;return s.push(r),()=>{let a=s.indexOf(r);a>-1&&s.splice(a,1)}});i(this,"setInitiated",()=>{this.isInitiated=!0,this._whenInitiatedResolve&&this._whenInitiatedResolve()});i(this,"isInitiated",!1);i(this,"_whenInitiatedResolve");i(this,"_whenInitiatedReject");i(this,"_whenInitiated",new Promise((n,e)=>{this._whenInitiatedResolve=n,this._whenInitiatedReject=e}));i(this,"initiated",()=>this._whenInitiated);i(this,"props",{});i(this,"refs",{});this.id=(t==null?void 0:t.id)||O.Instance().assignId(n);let s=t!=null&&t.timeout?t==null?void 0:t.timeout:5*1e3;setTimeout(()=>{!this.isInitiated&&this._whenInitiatedReject&&!this._markedForDisposed&&this._whenInitiatedReject("timeout_".concat(s," ").concat(this.id))},s),this.initiated().then(()=>{window.myop.hostSDK.inspected&&this.inspect()})}get markedForDisposed(){return this._markedForDisposed}set markedForDisposed(n){if(this._markedForDisposed)throw new Error("InvalidOperationException: The component is already in the process of being disposed. Dispose operation cannot be performed again until the current disposal process is complete.");this._markedForDisposed=n}onMessageReceived(n){if(n.messageType===u.ExecuteComponentMethod){let t=n;return this[t.method]?this[t.method](t.content):console.log("method not found ".concat(t.method," on component"),this),!0}let e=this.messageHandlers[n.messageType];if(e&&e.length){let t=!1;return e.forEach(s=>{t=t||s(n)}),t}return!1}sendCleanupMessage(n){n.source=this.id,n.destination=this.id,n.direction=b.down;let e=this.bindWhen(n.replyMessageKey,s=>s.replayToHandler===n.handlerUniqueId,s=>{n.handler(s),e()}),t=n.handler;delete n.handler,this.send(n),n.handler=t}send(n){n.source||(n.source=this.id),n.destination||(n.destination=this.id),n.direction=b.down;let e;if(n.handler){let t=n;e=this.bindWhen(t.replyMessageKey,s=>s.replayToHandler===t.handlerUniqueId,t.handler),delete n.handler}return n.ref&&(n.ref=n.ref.__nonProxied||n.ref),n.cleanable?()=>{this.sendCleanupMessage(new be(n.id,t=>{})),e&&e()}:()=>{}}dispose(){if(this.markedForDisposed=!0,!this.isInitiated)return;console.log("disposing component",this.id),this.send(new Se);let n=this.messageHandlers.onDispose;n&&n.forEach(e=>{e(null)}),this.messageHandlers={},this.id+="_disposed",this.isInitiated=!1}};var gn={notSerializableRefCall:(o,n)=>{throw new Error("\nThe input provided to '".concat(o.toString(),"' is not serializable. Serialization is required to ensure that the data can be safely transferred to the skin implementation. \nThe following types of data are considered non-serializable and cannot be processed:\n\n- Functions\n- DOM elements\n- Class instances\n- Circular references\n- Symbols\n- BigInt values\n\nIn the following execution we detected :\n~~~~~~~~\n").concat(n," \n~~~~~~~~\nas not serializable.\n\nTo resolve this issue, please ensure that all inputs passed to '").concat(o.toString(),"' are in a serializable format.\nThis typically includes primitive types (strings, numbers, booleans), arrays, and plain objects. \nIf you need to include complex data types, consider converting them to a serializable structure before passing them to the function.\nOr use Myop message that support it: CustomRefMessage, AddEventListenerMessage or ExecuteScriptMessage.\n\nSuggested Fix:\n1. Remove or replace non-serializable values from your input.\n2. If using objects, ensure they do not contain any functions or circular references.\n3. Convert any class instances to plain objects or JSON-compatible formats.\n4. Use dedicated Myop message.\n\nFor more details on serialization and Myop message examples, refer to https://docs.myop.dev.\n\n"))}};var Te=class extends P{constructor(e,t,s){super(e,t.container,s);this.componentDefinition=e;this.parent=t;i(this,"send",e=>{let t=e.handler,s=super.send(e);return this.parent.send(new Ce(this.id,e)),e.handler=t,s});i(this,"dispose",()=>{this.isInitiated&&this.send(new k("dispose")),super.dispose()})}hide(){this.send(new k("hide"))}show(){this.send(new k("show"))}inspect(){return this.send(new k("inspect"))}setHeightBasedOnDocumentElement(){this.send(new k("setHeightBasedOnDocumentElement"))}setHeightBasedOnScrollHeight(){this.send(new k("setHeightBasedOnScrollHeight"))}onMessageReceived(e){return super.onMessageReceived(e)}};var te=class extends P{constructor(e,t,s,r,a,p){super(e,s,p);this.container=s;this.customElement=r;this.tagName=a;i(this,"ctaCleanup");i(this,"_ctaHandler");i(this,"_ctaQueue",[]);i(this,"cleanupInspect",()=>{});i(this,"send",e=>{let t=super.send(e);return console.debug("[MyopExtractedWebComponent] send() called - web components use direct API instead",e),t});i(this,"dispose",()=>{var e;this.ctaCleanup&&this.ctaCleanup(),super.dispose(),(e=this.customElement.parentNode)==null||e.removeChild(this.customElement)});this.element=r,this.setInitiated()}inspect(){return this.cleanupInspect=le(this.id,"MyopExtractedWebComponent",0,this.container,this.customElement,this.componentDefinition),this.cleanupInspect}hide(){this.customElement.style.opacity="0",this.customElement.style.position="absolute",this.customElement.style.pointerEvents="none",this.customElement.style.visibility="hidden",this.customElement.style.height="0",this.customElement.style.width="0"}show(){this.customElement.style.opacity="1",this.customElement.style.position="unset",this.customElement.style.pointerEvents="all",this.customElement.style.visibility="visible",this.customElement.style.height="",this.customElement.style.width=""}initWithData(e){typeof this.customElement.myop_init_interface=="function"&&this.customElement.myop_init_interface(e)}getData(){if(typeof this.customElement.myop_init_interface=="function")return this.customElement.myop_init_interface()}setCtaHandler(e){if(this.ctaCleanup&&this.ctaCleanup(),this._ctaHandler=e,this._ctaQueue.length>0){let s=[...this._ctaQueue];this._ctaQueue=[],s.forEach(r=>{this.markedForDisposed||e(r.action,r.payload)})}let t=s=>{var a;let r=s;(a=r.detail)!=null&&a.action&&(this._ctaHandler&&!this.markedForDisposed?this._ctaHandler(r.detail.action,r.detail.payload):this._ctaHandler||this._ctaQueue.push({action:r.detail.action,payload:r.detail.payload}))};this.customElement.addEventListener("myop-cta",t),this.ctaCleanup=()=>{this.customElement.removeEventListener("myop-cta",t)}}};var Gn=(o,n,e)=>{let t=document.createElement("a");return t.textContent=o,t.style.position="relative",t.style.padding="0 5px",t.style.fontSize="14px",t.style.top="0",t.style.top="".concat(n,"px"),t.style.transform="translateX(-50%)",t.target="_blank",t.href="https://dashboard.myop.dev/dashboard/component/".concat(e.id),t},le=(o,n,e,t,s,r)=>{let a=Gn("".concat(r.name," : ").concat(n),e,r);return t.insertBefore(a,s),s.style.border="1px solid #007BFF",s.style.display="block",()=>{s.style.border="unset",t.removeChild(a)}},yn=(o,n,e)=>o?!1:(console.error("Error: Undefined Prop\n\nIt looks like you've tried to use a prop that hasn't been defined.\nPlease check the prop name for any typos or ensure that it is properly defined in the component's prop list.\n\n"+"Prop Name: ".concat(n,"\n")+"Component: ".concat(e.componentDefinition.name,", ID: ").concat(e.componentDefinition.id,"\n\n")+"For more information, refer to the component page https://dashboard.myop.dev/dashboard/component/".concat(e.componentDefinition.id," or consult the developer guide.")),!0),hn=(o,n,e)=>{console.error("Error: Code Prop Not Supported\n\nCurrently, code props are only supported in local frame components.\n\u26A0\uFE0F This is a work in progress feature \u2014 code props will be supported in upcoming versions.\n\nIn the meantime, you can use message props.\n\n"+"Prop Name: ".concat(n,"\n")+"Component: ".concat(e.componentDefinition.name,", ID: ").concat(e.componentDefinition.id,"\n\n")+"For more information, refer to the component page https://dashboard.myop.dev/dashboard/component/".concat(e.componentDefinition.id," or consult the developer guide."))},Mn=(o,n,e)=>{let t=n.reduce((r,a)=>z(h({},r),{[a.name]:h({},a)}),{}),s={get:(r,a)=>{let p=t[a];if(yn(p,a,o))return!1;if(p.behavior.type===ce.code){if(o instanceof te)return(p.behavior.remap||a)==="myop_init_interface"?l=>{if(l===void 0)return o.getData();o.initWithData(l)}:void 0;if(e.loader.type===$.HTMLLoader&&e.loader.shadowRootMode===Z.localFrame){let c=p.behavior;return o.element.contentWindow[c.remap||a]}return hn(p,a,o),!1}return p.mode==="output"?new Promise(d=>{let c=[];p.behavior.ref&&c.push(F.create(p.behavior.ref)),c.push(g=>{d(g)}),p.behavior.params&&c.push(...p.behavior.params);let l=Le[p.behavior.message];o.send(new l(...c))}):null},set:(r,a,p)=>{let d=t[a];if(yn(d,a,o))return!1;if(d.behavior.type===ce.code){if(o instanceof te){let l=d.behavior.remap||a;if(l==="myop_cta_handler")return o.setCtaHandler(p),!0;if(l==="myop_init_interface")return o.initWithData(p),!0}if(e.loader.type===$.HTMLLoader&&e.loader.shadowRootMode===Z.localFrame){let l=d.behavior,g=o.element.contentWindow,y=l.remap||a;if(g[y]=p,y==="myop_cta_handler"&&g.__myop_cta_queue){let f=g.__myop_cta_queue;g.__myop_cta_queue=null,f.forEach(m=>{o.markedForDisposed||p(m.action,m.payload)})}return!0}return hn(d,a,o),!1}else if(d.mode==="input")if(d.behavior.type==="message"){let c=[];d.behavior.ref&&c.push(F.create(d.behavior.ref)),c.push(p),d.behavior.params&&c.push(...d.behavior.params);let l=Le[d.behavior.message];return o.send(new l(...c)),!0}else throw new Error("Error: Unsupported Behavior\n\nThe 'behavior' field provided is not supported.\n"+"Component: ".concat(o.componentDefinition.name,", ID: ").concat(o.componentDefinition.id,"\n\n")+"Prop Name: ".concat(a,"\n")+"Behavior Field: ".concat(d.behavior.type,"\n\n")+"Check the documentation for valid behavior options.");return!1}};return o.props={},o.props=new Proxy(o.props,s),o},jn=(o,n)=>new Proxy(o,{get(e,t){return e[t]?e[t]:(...r)=>new Promise(a=>{r.forEach(p=>{Dt(p)||gn.notSerializableRefCall(t,p)}),n.send(new j(({ref:p,propName:d,functionArgs:c,makeSerializable:l})=>{if(p){let g=p[d];return l(typeof g=="function"?p[d](...c):g,!0)}return null},{elementId:e.refConfig.selector,propName:t,functionArgs:r},p=>{a(p.content)}))})},set(e,t,s){return n.send(new j(({ref:r,propName:a,propValue:p})=>{r&&(r[a]=p)},{elementId:e.refConfig.selector,propValue:s,propName:t},r=>{})),!0}}),Bt=async(o,n,e,t)=>{let s=o.component;if(!s)throw new Error("cant createRefComponent with detached ref");return new Promise(async(r,a)=>{let p=new Te(n.type,s,t);e.push(p),await s.initiated();let d=setTimeout(()=>{a("timeout")},5e3);s.send(new Me(o.refConfig,n,z(h({},t||{}),{id:p.id,_hasParent:!0}),async c=>{if(clearTimeout(d),c.failed){a("CreateRefComponentMessage failed");return}let l=e.find(g=>g.id==p.id);if(l!==p){s.refs[o.refConfig.name]=l,r(l);return}else p.setInitiated(),s.refs[o.refConfig.name]=p;c.nestedRefs.forEach(g=>{let y=n.instance.resolvedNestedComponents.find(m=>m.type.id===g.componentDefinitionId).type,f=new Te(y,p);f.setInitiated(),p.refs[g.refName]=f,e.push(f)});try{await Lt(p,n,e,!0),s.setHeightBasedOnScrollHeight&&s.setHeightBasedOnScrollHeight(),r(p)}catch(g){a(g)}}))})},Lt=async(o,n,e,t=!1)=>{o.refs||(o.refs={});let s=Object.values(o.componentDefinition.refs).map(r=>new Promise(async(a,p)=>{var d;if(r.behavior.type==pe.component){if(t){a();return}let c=r.behavior.componentId;c||(c=r.behavior.instance.componentId);let l=(d=n.instance.resolvedNestedComponents)==null?void 0:d.find(y=>y.type.id===c);if(!l)throw new Error("componentConfig provided without nestedComponentConfig check the config object");let g=F.create("",r,o);try{let y=await Bt(g,l,e);o.refs[r.name]=y,a()}catch(y){p(y)}}else try{let c=F.create("",r,o);o.refs[r.name]=jn(c,o),a()}catch(c){}}));try{await Promise.all(s)}catch(r){throw r}};var fe=class extends P{constructor(e,t,s,r,a){super(e,s,a);this.componentConfig=e;this.container=s;this.IframeElement=r;i(this,"_autoSizeCleanup");i(this,"_autoSizeOptions");i(this,"_autoSizeUpdate");i(this,"sizeMeta");i(this,"cleanupInspect");i(this,"setHeightBasedOnDocumentElement",()=>{let e=this.send(new _(()=>window.document.documentElement.scrollHeight,t=>{this.IframeElement.style.height="".concat(t.content,"px"),e()}))});i(this,"observeSizeBasedOnDocumentElement",()=>this.send(new _(({send:t})=>{let{height:s,width:r}=document.documentElement.getBoundingClientRect(),a=new ResizeObserver(()=>{let{height:p,width:d}=document.documentElement.getBoundingClientRect();t({height:p,width:d})});return a.observe(document.documentElement),a.observe(document.body),{height:s,width:r}},t=>{this.IframeElement.style.width="".concat(t.content.width,"px"),this.IframeElement.style.height="".concat(t.content.height,"px")})));i(this,"observeAutoSize",e=>{if(this._autoSizeOptions=e,this._autoSizeCleanup&&this._autoSizeUpdate)return this._autoSizeUpdate(),this._autoSizeCleanup;let t=this.IframeElement,s=t.contentDocument;if(!s)return console.warn("[MyopIframeComponent] Cannot observe auto size: contentDocument not accessible"),()=>{};let r=(f,m,D)=>m!==void 0&&f<m?m:D!==void 0&&f>D?D:f,a=f=>{if(f===void 0)return;if(typeof f=="number")return f;let m=parseFloat(f);return isNaN(m)?void 0:m},p=()=>{var qt,Vt,Gt,jt,Yt,Qt,Jt,Xt;let f=t.contentDocument;if(!f)return;let m=this._autoSizeOptions,D=a(m==null?void 0:m.minWidth),ge=a(m==null?void 0:m.maxWidth),U=a(m==null?void 0:m.minHeight),B=a(m==null?void 0:m.maxHeight),T=(qt=m==null?void 0:m.loaderMinHeight)!=null?qt:50,v=((Vt=this.sizeMeta)==null?void 0:Vt.width)==="100%"?"100%":void 0,ye=((Gt=this.sizeMeta)==null?void 0:Gt.height)==="100%"?"100%":void 0,L=(Yt=(jt=m==null?void 0:m.explicitWidth)!=null?jt:v)!=null?Yt:"100%",q=(Qt=m==null?void 0:m.explicitHeight)!=null?Qt:ye,At=L!==void 0,zt=q!==void 0,ft=this.container.getBoundingClientRect(),_n=ft.width===0,Hn=ft.height===0||ft.height===T,oe=(m!=null&&m.forceAutoSize||_n)&&!At,se=(m!=null&&m.forceAutoSize||Hn)&&!zt;if(!oe&&!se){t.style.width=typeof L=="number"?"".concat(L,"px"):"100%",t.style.height=typeof q=="number"?"".concat(q,"px"):"100%";let He=typeof L=="number"?L:void 0,ke=typeof q=="number"?q:void 0;(He!==void 0||ke!==void 0)&&((Jt=m==null?void 0:m.onSizeChange)==null||Jt.call(m,{width:He,height:ke,autoSizingWidth:!1,autoSizingHeight:!1}));return}let kn=t.style.transition,A=this.container,Dn=A.style.transition;t.style.transition="none",A.style.transition="none";let Kt=t.getBoundingClientRect().height,$t=t.getBoundingClientRect().width,Ft=Math.ceil(Math.max(f.documentElement.scrollHeight,f.body.scrollHeight,f.body.getBoundingClientRect().height)),Wt=Math.ceil(Math.max(f.documentElement.scrollWidth,f.body.scrollWidth,f.body.getBoundingClientRect().width)),ut=Wt,gt=Ft,Bn=se&&Ft>Kt+1,Ln=oe&&Wt>$t+1,Re=se&&!Bn,_e=oe&&!Ln;if(Re||_e){let He=A.style.minHeight,ke=A.style.minWidth;Re&&(A.style.minHeight="".concat(Kt,"px")),_e&&(A.style.minWidth="".concat($t,"px"));let De=f.createElement("style");De.id="__myop_measure";let yt=[];Re&&yt.push("height: auto !important","min-height: 0 !important","max-height: none !important"),_e&&yt.push("width: auto !important","min-width: 0 !important","max-width: none !important"),De.textContent="*, *::before, *::after { ".concat(yt.join("; "),"; flex-basis: auto !important; flex-grow: 0 !important; }"),f.head.appendChild(De),Re&&(t.style.height="0px"),_e&&(t.style.width="0px"),ut=Math.ceil(Math.max(f.documentElement.scrollWidth,f.body.scrollWidth,f.body.getBoundingClientRect().width)),gt=Math.ceil(Math.max(f.documentElement.scrollHeight,f.body.scrollHeight,f.body.getBoundingClientRect().height)),De.remove(),A.style.minHeight=He,A.style.minWidth=ke}let Nt=r(ut,D,ge),Ut=r(gt,U,B);oe?t.style.width="".concat(Nt,"px"):t.style.width=typeof L=="number"?"".concat(L,"px"):"100%",se?t.style.height="".concat(Ut,"px"):t.style.height=typeof q=="number"?"".concat(q,"px"):"100%",t.offsetHeight,t.style.transition=kn,A.style.transition=Dn;let Pn=oe&&ge!==void 0&&ut>ge,On=se&&B!==void 0&>>B;f.documentElement.style.overflowX=Pn?"auto":"",f.documentElement.style.overflowY=On?"auto":"",(Xt=m==null?void 0:m.onSizeChange)==null||Xt.call(m,{width:Nt,height:Ut,autoSizingWidth:oe,autoSizingHeight:se})};p(),this._autoSizeUpdate=p;let d,c=()=>{d===void 0&&(d=requestAnimationFrame(()=>{d=void 0,p()}))},l=new ResizeObserver(()=>c());l.observe(s.body),l.observe(s.documentElement);let g=new MutationObserver(()=>c());g.observe(s.body,{childList:!0,subtree:!0,characterData:!0,attributes:!0});let y=()=>{l.disconnect(),g.disconnect(),d!==void 0&&(cancelAnimationFrame(d),d=void 0),this._autoSizeUpdate=void 0,this._autoSizeCleanup=void 0};return this._autoSizeCleanup=y,y});i(this,"setSizeBasedOnDocumentElement",()=>{let e=this.send(new _(()=>{let{height:t,width:s}=document.documentElement.getBoundingClientRect();return{height:t,width:s}},t=>{this.IframeElement.style.width="".concat(t.content.width,"px"),this.IframeElement.style.height="".concat(t.content.height,"px"),e()}))});i(this,"setHeightBasedOnScrollHeight",()=>{let e=this.send(new _(()=>{let s=0;return s++,s--,Math.max(Math.max(window.document.body.clientHeight,window.document.body.scrollHeight),window.document.body.offsetHeight)+s+"px"},t=>{this.IframeElement.style.height=t.content,e()}))});i(this,"send",e=>{var r,a;let t=h({},e);if(t.messageType===u.ExecuteComponentMethod)return this[t.method](),()=>{};t.direction=b.down;let s=super.send(t);return(a=(r=this.IframeElement)==null?void 0:r.contentWindow)==null||a.postMessage(t,"*"),s});i(this,"dispose",()=>{this._autoSizeCleanup&&(this._autoSizeCleanup(),this._autoSizeCleanup=void 0),this.cleanupInspect&&this.cleanupInspect(),super.dispose(),this.IframeElement.parentNode.removeChild(this.IframeElement)});this.element=this.IframeElement}inspect(){return this.cleanupInspect?this.cleanupInspect:(this.cleanupInspect=le(this.id,"MyopIframeComponent",10,this.container,this.IframeElement,this.componentDefinition),()=>{this.cleanupInspect(),this.cleanupInspect=void 0})}hide(){this.IframeElement.style.opacity="0",this.IframeElement.style.position="absolute",this.IframeElement.style.pointerEvents="none",this.IframeElement.style.visibility="hidden"}show(){this.IframeElement.style.opacity="1",this.IframeElement.style.position="unset",this.IframeElement.style.pointerEvents="all",this.IframeElement.style.visibility="visible"}onMessageReceived(e){return e.messageType===u.In.MutationObserverMessage||e.messageType===u.In.ResizeObserverMessage?(this.setHeightBasedOnScrollHeight(),!0):super.onMessageReceived(e)}};var W=class{constructor(){i(this,"appendChild",(n,e,t)=>{var s;if(t!=null&&t.relative){if(t.relative.direction==="before")return n.insertBefore(e,t.relative.child);if(t.relative.direction==="after"){let r=(s=t.relative.child)==null?void 0:s.nextSibling;return n.insertBefore(e,r||null)}}else return n.appendChild(e)})}};var Yn=(o,n,e)=>{let t=new URL(o);return t.searchParams.append(n,e),t.toString()},Ue=class extends W{constructor(){super(...arguments);i(this,"type",$.IframeLoader);i(this,"load",async(e,t,s,r)=>{let a,p=t.loader;if((s==null?void 0:s.nodeName)==="IFRAME")console.log("needs to load into an exsisting Iframe...",p.url,s),a=s,a.src=p.url;else{let d=R(),c="myop-comp-".concat(d);a=document.createElement("iframe"),a.id=c;let l="\n padding: 0;\n margin: 0;\n position: absolute;\n inset: 0;\n height: ".concat(p.autoHeight||!p.height?"100%":p.height,";\n width: 100%;\n overflow: hidden;\n border: none;\n opacity: ").concat(r!=null&&r.hidden?"0":"1",";\n pointer-events: ").concat(r!=null&&r.hidden?"none":"all",";\n ");a.style.cssText=l,r!=null&&r.elementAttributes&&Object.entries(r.elementAttributes).forEach(([y,f])=>{f===""||f===null||f===void 0?a.setAttribute(y,""):a.setAttribute(y,String(f))});let g=t.loader.url;r!=null&&r._hasParent&&(g=Yn(g,"_myop-comp",d)),a.src=g,s.querySelector('[id^="myop-comp-"]')||(s.innerHTML=""),a=this.appendChild(s,a,r)}return new fe(e,t,s,a,r)})}};var qe={webcomponent_message_key:"myop_webcomponent_message"};var ue=class extends P{constructor(e,t,s,r,a){super(e,s,a);this.container=s;this.customElement=r;i(this,"cleanupInspect",()=>{});i(this,"send",e=>{let t=h({},e),s=super.send(t),r=new CustomEvent(qe.webcomponent_message_key,{detail:t});try{this.customElement.dispatchEvent(r)}catch(a){console.log("error while trying to dispatchEvent",a)}return s});i(this,"dispose",()=>{var e;super.dispose(),(e=this.customElement.parentNode)==null||e.removeChild(this.customElement)});this.element=r}inspect(){return this.cleanupInspect=le(this.id,"MyopWebComponent",0,this.container,this.customElement,this.componentDefinition),this.cleanupInspect}hide(){this.customElement.style.opacity="0",this.customElement.style.position="absolute",this.customElement.style.pointerEvents="none",this.customElement.style.visibility="hidden",this.customElement.style.height="0",this.customElement.style.width="0"}show(){this.customElement.style.opacity="1",this.customElement.style.position="unset",this.customElement.style.pointerEvents="all",this.customElement.style.visibility="visible",this.customElement.style.height="",this.customElement.style.width=""}};var Pt={},Ve=class extends W{constructor(){super(...arguments);i(this,"type",$.WebComponentLoader);i(this,"load",async(e,t,s,r)=>{let a=t.loader;Pt[a.url]?console.log("Module alreday loaded or in loading process"):Pt[a.url]=new Promise((c,l)=>{let g=a.url,y=document.createElement("script");y.type="module",y.src=g,y.onload=()=>{c()},y.onerror=()=>{l()},document.head.appendChild(y)}),await Pt[a.url],await nn(1);let p="myop-comp-".concat(R()),d=document.createElement(a.tag);return s.querySelector('[id^="myop-comp-"]')||(s.innerHTML=""),d.id=p,r!=null&&r.hidden&&(d.style.opacity="0",d.style.position="absolute",d.style.height="0",d.style.width="0",d.style.pointerEvents="none",d.style.visibility="hidden"),r!=null&&r._environment&&(d._myopEnvironment=r==null?void 0:r._environment),this.appendChild(s,d,r),new ue(e,t,s,d,r)})}};var Ge="0.3.25";var x=class extends Be{constructor(e,t){super(e);this.context=t;i(this,"executor",e=>{if(e.destination){let t=e.destination;if(this.context[t].context){let s=(r,a)=>{this.messageToHost(z(h({},r),{source:e.destination?e.destination:e.source,destination:e.source?e.source:e.destination}),a)};return this.innerExecutor(e,this.context[t].context,s)}else debugger}else debugger})}};var je=class extends x{constructor(){super(...arguments);i(this,"messageType",u.BindClickMessage);i(this,"innerExecutor",(e,t,s)=>{let r=I(e.ref,t.shadowRoot),a=[];return r.forEach(p=>{let d=()=>{s(new V(e.handlerUniqueId))};p.addEventListener("click",d),a.push(()=>{p.removeEventListener("click",d)})}),()=>{a.forEach(p=>p())}})}};var Ye=class extends x{constructor(){super(...arguments);i(this,"messageType",u.ChangeTextMessage);i(this,"innerExecutor",(e,t)=>{I(e.ref,t.shadowRoot).forEach(r=>{r.textContent=e.content})})}};var Qe=class extends de{constructor(e,t){super(e,t);this.container=e;this.shadowRoot=t}};var Je=class extends x{constructor(){super(...arguments);i(this,"innerExecutor",(e,t)=>{let s=t.shadowRoot.querySelectorAll("[".concat(E.id,"]")),r=[];s.forEach(a=>{let p=a.getAttribute(E.id);p&&r.push(new ie(p,a.tagName,a.getBoundingClientRect(),a.offsetTop,a.offsetLeft))}),this.messageToHost(new X(e.handlerUniqueId,r))});i(this,"messageType",u.DetectMyopRefsMessage)}};var Xe=class extends x{constructor(){super(...arguments);i(this,"messageType",u.SetAttributeMessage);i(this,"innerExecutor",(e,t)=>{I(e.ref,t.shadowRoot).forEach(r=>{r.setAttribute(e.name,e.value)})})}};var Ze=class extends x{constructor(){super(...arguments);i(this,"messageType",u.AddEventListenerMessage);i(this,"innerExecutor",(e,t,s)=>{let r=I(e.ref,t.shadowRoot),a=[];return r.forEach(p=>{let d=c=>{s(new Y(e.handlerUniqueId,H(c,e.serializableSkeleton)))};p.addEventListener(e.type,d),a.push(()=>{p.removeEventListener(e.type,d)})}),()=>{a.forEach(p=>p())}})}};var et=class extends x{constructor(){super(...arguments);i(this,"messageType",u.CreateRefComponentMessage);i(this,"innerExecutor",(e,t,s)=>{(async()=>{let a=t.shadowRoot.querySelectorAll("[".concat(E.id,"='").concat(e.refConfig.selector,"']"));if(a.length===1){let p=O.Instance(),d=p.components.find(y=>y.id===e.options.id);d&&d.dispose();let c=p.components.indexOf(d);c!==-1&&p.components.splice(c,1);let l=await p.loadComponent(e.nestedComponentConfig,a.item(0),e.options),g=[];Object.keys(l.refs).forEach(y=>{let f=l.refs[y];f=f.__nonProxied||f,f.componentDefinition&&g.push({refName:y,componentDefinitionId:f.componentDefinition.id})}),s(new K(e.handlerUniqueId,g))}else{console.error("CreateRefComponentMessageHandler - DOM element not found"),this.messageToHost(new K(e.handlerUniqueId,[],!0));debugger}})().then()})}};var tt=class extends x{constructor(){super(...arguments);i(this,"messageType",u.ExecuteScriptMessage);i(this,"innerExecutor",(e,t,s)=>{Ke(e,a=>{s(new G(e.handlerUniqueId,a))},t)})}};var Cn=o=>{if(!o)return null;if(o.tagName==="FORM"){let n=new FormData(o),e={formData:{},unmappedData:[]},t=o.querySelectorAll("input, select, textarea"),s=-1;return t.forEach(r=>{if(typeof r.value=="string"){let a=r.getAttribute(E.id),p=r.getAttribute("name"),d={id:r.id,name:p,value:Cn(r),required:r.required,validity:H(r.validity,!0),myopId:a};p?e.formData[p]?e.formData[p].value?e.unmappedData.push(d):(e.unmappedData.push(e.formData[p]),e.formData[p]=d):e.formData[p]=d:e.unmappedData.push(d)}}),e}return o.type==="checkbox"||o.type==="radio"?o.checked?o.value:null:o.tagName==="INPUT"||o.tagName==="TEXTAREA"||o.tagName==="SELECT"?o.value:o.isContentEditable?o.innerText||o.textContent:null},nt=class extends x{constructor(){super(...arguments);i(this,"messageType",u.GetElementValueMessage);i(this,"innerExecutor",(e,t,s)=>{I(e.ref,t.shadowRoot).forEach(a=>{s(new Q(Cn(a)),e)})})}};var ot=class extends x{constructor(){super(...arguments);i(this,"messageType",u.SetInnerHtml);i(this,"innerExecutor",(e,t)=>{I(e.ref,t.shadowRoot).forEach(r=>{r.innerHTML=e.content})})}};var ve=class extends ae{constructor(){super(...arguments);i(this,"alwaysPassEnvelopesToHost",!0);i(this,"connectedCallback",(e,t)=>{e.addEventListener(qe.webcomponent_message_key,s=>{let r=s.data?s.data:s.detail;if(!r||!r.myop){debugger;throw new Error("recvied webcomponent_message with wrong type")}else{let a=r;if(this.handleIncomeMessages(s),a.messageType===u.InitMessage){let p=a.content.id;this.components[p].context=new Qe(e,t)}}}),setTimeout(()=>{this.messageToHost(new J)},1)});i(this,"messageToHost",(e,t)=>{e.direction=b.up,!e.replayToHandler&&(t!=null&&t.handlerUniqueId)&&(e.replayToHandler=t.handlerUniqueId),window.myop.hostSDK.send(e)});i(this,"supportedHandlers",[new Ye(this.messageToHost,this.components),new ot(this.messageToHost,this.components),new je(this.messageToHost,this.components),new Je(this.messageToHost,this.components),new Xe(this.messageToHost,this.components),new Ze(this.messageToHost,this.components),new tt(this.messageToHost,this.components),new nt(this.messageToHost,this.components),new et(this.messageToHost,this.components)]);i(this,"init",()=>{})}};me("WebComponentSDK",ve);var In="";var Qn="<!-- myop-web-component -->",Jn="myop-web-component",bn=new Set,wn=[],st,Sn=async()=>(st||(st=new ve,st.init()),st);function Xn(o,n){return class extends HTMLElement{connectedCallback(){let e=n===Z.open?"open":"closed",t=this.attachShadow({mode:e});Sn().then(s=>{s.connectedCallback(this,t),t.innerHTML=o})}}}var Zn=(o,n,e)=>{customElements.define(o,Xn(n,e)),console.log("define('".concat(o,"') was called, web component ready to use"))},eo=o=>o.replace(/([a-z])([A-Z])/g,"$1-$2").replace(/(\d+)/g,"-$1").toLowerCase(),to=o=>(o=eo(o),o.replace(/_/g,"-"));var it=class extends W{constructor(){super(...arguments);i(this,"type",$.HTMLLoader);i(this,"load",async(e,t,s,r)=>{let a=t.loader;if(this.isMyopWebComponent(a.HTML))return this.loadExtractedWebComponent(e,t,s,a.HTML,r);let p="myop-comp-".concat(R()),d;if(a.shadowRootMode===Z.localFrame){let c=R(),l="myop-comp-".concat(c),g=document.createElement("iframe");g.id=l,g.style.cssText="\n display: block;\n padding: 0;\n margin: 0;\n position: absolute;\n inset: 0;\n overflow: hidden;\n border: none;\n opacity: ".concat(r!=null&&r.hidden?"0":"1",";\n width: 100%;\n height: 100%;\n pointer-events: ").concat(r!=null&&r.hidden?"none":"all",";\n "),s.querySelector('[id^="myop-comp-"]')||(s.innerHTML=""),g=this.appendChild(s,g,r);let y=g.contentDocument||g.contentWindow.document;y.open();let f=null;{let v=new DOMParser().parseFromString(a.HTML,"text/html").querySelector('meta[name="myop:size"]');if(v)try{f=JSON.parse(v.getAttribute("content")||"{}")}catch(ye){}}let m=a.HTML;if(r!=null&&r._inspection){let T=new DOMParser().parseFromString(a.HTML,"text/html"),v=T.getElementById("myop_preview");v==null||v.removeAttribute("type");let ye=T.implementation.createHTMLDocument();ye.body.innerHTML="<script>\n const beforeKeysWindow = new Set(Object.keys(window));\n window.myopState = {\n beforeKeysWindow,\n };\n <\/script>";let L=ye.body.firstChild;L&&T.head&&T.head.insertBefore(T.importNode(L,!0),T.head.firstChild),m=T.documentElement.outerHTML}else if((r==null?void 0:r.data)!==void 0){let T=new DOMParser().parseFromString(a.HTML,"text/html"),v=T.getElementById("myop_preview");v&&(v.remove(),m=T.documentElement.outerHTML)}y.writeln(m);let D='<script src="'.concat(window.myop.__ROOT_SDK_PUBLIC_URL__,'"><\/script>'),ge="<script>\n window.__federation__.__public_path__ = window.__federation__.__public_path__;\n const __myop_init = async () => {\n const {IframeSDK} = (await window.myop.rootSDK.getIframeModule());\n const sdk = new IframeSDK();\n sdk.init();\n }\n __myop_init().then();\n <\/script>";if(y.writeln("".concat(D).concat(ge)),(r==null?void 0:r.data)!==void 0){let B="<script>\n window.__myop_cta_queue = [];\n window.myop_cta_handler = function(action, payload) {\n window.__myop_cta_queue.push({action: action, payload: payload});\n };\n <\/script>",T=JSON.stringify(r.data).replace(/<\/script/gi,"\\u003c/script"),v='<script id="__myop_init_data_script">\n (function() {\n var data = '.concat(T,";\n var scriptEl = document.getElementById('__myop_init_data_script');\n\n var callInitInterface = function(fn) {\n var startTime = performance.now();\n // Mark as pre-injected data call for extension tracking\n window.__myop_init_preinjected = true;\n try {\n fn(data);\n } finally {\n window.__myop_init_preinjected = false;\n }\n var duration = performance.now() - startTime;\n\n // Notify extension via postMessage (init* = pre-injected)\n try {\n window.parent.postMessage({\n type: 'MYOP_PREINJECTED_INIT',\n payload: {\n data: data,\n duration: duration,\n timestamp: Date.now()\n }\n }, '*');\n } catch (e) {}\n\n // Cleanup: remove script tag and stored data\n if (scriptEl && scriptEl.parentNode) {\n scriptEl.parentNode.removeChild(scriptEl);\n }\n delete window.__myop_init_data;\n };\n\n if (typeof window.myop_init_interface === 'function') {\n // Function already exists - call immediately\n callInitInterface(window.myop_init_interface);\n } else {\n // Function not yet defined - store data and watch for definition\n window.__myop_init_data = data;\n\n var _original;\n Object.defineProperty(window, 'myop_init_interface', {\n configurable: true,\n enumerable: true,\n set: function(fn) {\n _original = fn;\n if (window.__myop_init_data !== undefined) {\n var storedData = window.__myop_init_data;\n delete window.__myop_init_data;\n callInitInterface(fn);\n }\n },\n get: function() {\n return _original;\n }\n });\n }\n })();\n <\/script>");y.writeln(B+v)}y.close();let U=new fe(e,t,s,g,r);return U.sizeMeta=f,U.initiated().then(()=>{if((r==null?void 0:r.autoSize)===!1)return;let B=!1;U.observeAutoSize({forceAutoSize:!0,onSizeChange:()=>{!B&&!(r!=null&&r.hidden)&&(B=!0,U.show())}})}),U}if(a.shadowRootMode===Z.none){let c=document.createElement("template");c.innerHTML=a.HTML,d=c.content.firstElementChild,Sn().then(l=>{l.connectedCallback(d,d)})}else{let c=to(e.name+t.id);wn.includes(c)||(Zn(c,a.HTML,a.shadowRootMode),wn.push(c)),d=document.createElement(c)}return s.querySelector('[id^="myop-comp-"]')||(s.innerHTML=""),d.id=p,r!=null&&r.hidden&&(d.style.opacity="0",d.style.position="absolute",d.style.height="0",d.style.width="0",d.style.pointerEvents="none",d.style.visibility="hidden"),this.appendChild(s,d,r),new ue(e,t,s,d,r)})}isMyopWebComponent(e){return e.trimStart().startsWith(Qn)}extractWebComponentScript(e){let r=new DOMParser().parseFromString(e,"text/html").getElementById(Jn);return(r==null?void 0:r.textContent)||null}executeWebComponentScript(e,t){if(bn.has(t)){console.log("[MyopWebComponent] Script already executed for ".concat(t,", skipping"));return}let s=document.createElement("script");s.textContent=e,s.id="myop-extracted-".concat(t),document.head.appendChild(s),bn.add(t),console.log("[MyopWebComponent] Executed web component script: ".concat(t))}async loadExtractedWebComponent(e,t,s,r,a){let p=this.extractWebComponentScript(r);if(!p)throw new Error('[MyopWebComponent] No <script id="myop-web-component"> found in HTML');let d="".concat(e.id,"-").concat(t.id),c=window.__MYOP_TAG_NAME__;this.executeWebComponentScript(p,d);let l=window.__MYOP_TAG_NAME__;if(!l)throw new Error("[MyopWebComponent] Script did not set window.__MYOP_TAG_NAME__");c&&c!==l&&console.warn("[MyopWebComponent] __MYOP_TAG_NAME__ changed from ".concat(c," to ").concat(l));let g="myop-comp-".concat(R()),y=document.createElement(l);y.id=g,a!=null&&a.hidden&&(y.style.opacity="0",y.style.position="absolute",y.style.height="0",y.style.width="0",y.style.pointerEvents="none",y.style.visibility="hidden"),s.querySelector('[id^="myop-comp-"]')||(s.innerHTML=""),this.appendChild(s,y,a);let f=new te(e,t,s,y,l,a);return(a==null?void 0:a.data)!==void 0&&f.initWithData(a.data),console.log("[MyopWebComponent] Loaded <".concat(l,"> into container")),f}};var no=o=>({instance:{id:"auto",componentId:o.componentId,componentName:o.name,skinSelector:{type:"Dedicated",skin:{id:"skin_auto_v2_converted"}}},type:{id:o.id,name:o.name,description:o.description,props:[{id:"in_auto_v2_converted",name:"myop_init_interface",type:"any",behavior:{type:ce.code}},{id:"out_auto_v2_converted",name:"myop_cta_handler",type:"any",behavior:{type:ce.code}}],refs:[],skins:[{id:"skin_auto_v2_converted",name:"auto_v2_converted",description:"",loader:o.consume_variant[0].loader}],defaultSkin:0},name:o.name}),rt="__MYOP_CLOUD_REPOSITORY_MAIN__",oo=()=>{if(typeof window<"u")return window[rt];if(typeof globalThis<"u")return globalThis[rt]},so=o=>{typeof window<"u"&&(window[rt]=o),typeof globalThis<"u"&&(globalThis[rt]=o)},N=class N{constructor(n="https://cloud.myop.dev"){this._baseUrl=n;i(this,"variants",{});i(this,"preloadedComponents",{});i(this,"userFlows",{});i(this,"_defaultEnv","production");i(this,"_envExplicitlySet",!1)}static get Main(){let n=oo();return n||(N._main||(N._main=new N,so(N._main)),N._main)}setEnvironment(n){this._defaultEnv=n,this._envExplicitlySet=!0}getDefaultEnvironment(){return this._defaultEnv}isPreloaded(n,e,t){return e!==void 0||t!==void 0?"".concat(n,":").concat(e||this._defaultEnv,":").concat(t?"preview":"live")in this.variants:n in this.preloadedComponents}getPreloadedParams(n){return this.preloadedComponents[n]}async fetchComponentV2(n,e,t){let s=this.preloadedComponents[n],r=e!==void 0||t!==void 0,a,p;if(!r&&s)a=s.env,p=s.preview;else{a=e||this._defaultEnv;let c=e||this._envExplicitlySet;p=t===!0?!0:t===!1?!1:!c}let d="".concat(n,":").concat(a,":").concat(p?"preview":"live");return console.log("[CloudRepository] fetchComponentV2",{componentId:n.slice(0,8)+"...",env:a,usePreview:p,cacheKey:d,cached:d in this.variants}),this.variants[d]||(this.preloadedComponents[n]||(this.preloadedComponents[n]={env:a,preview:p}),this.variants[d]=new Promise(async(c,l)=>{try{let g="".concat(this._baseUrl,"/consume?id=").concat(n,"&env=").concat(a);p&&(g+="&preview=true");let m=(await(await fetch(g)).json()).item;if(!m){l(new Error('Component "'.concat(n,'" not found')));return}if(!m.consume_variant||!m.consume_variant.length){l(new Error('Component "'.concat(n,'" has no implementation for environment "').concat(a,'"')));return}let D=no(m);this.variants[d].resolved=D,c(D)}catch(g){l(g)}})),await this.variants[d]}getResolvedConfig(n,e,t){var c;let s=this.preloadedComponents[n],r=e!==void 0||t!==void 0,a,p;if(!r&&s)a=s.env,p=s.preview;else{a=e||this._defaultEnv;let l=e||this._envExplicitlySet;p=t===!0?!0:t===!1?!1:!l}let d="".concat(n,":").concat(a,":").concat(p?"preview":"live");return((c=this.variants[d])==null?void 0:c.resolved)||null}async fetchComponentV1(n,e){return e?(await this.fetchFlow(e)).components.find(s=>s.type.id===n):(await this.fetchAutoFlow(n)).components[0]}async fetchAutoFlow(n){return this.userFlows[n]||(this.userFlows[n]=new Promise(async(e,t)=>{try{let r=await(await fetch("".concat(this._baseUrl,"/flow?id=").concat(n,"&auto=true"))).json();e(r.item)}catch(s){t(s)}})),await this.userFlows[n]}async fetchFlow(n){return this.userFlows[n]||(this.userFlows[n]=new Promise(async(e,t)=>{try{let r=await(await fetch("".concat(this._baseUrl,"/flow?id=").concat(n,"&resolve=components"))).json();e(r.item)}catch(s){t(s)}})),await this.userFlows[n]}async fetchComponent(n,e){return this.fetchComponentV1(n,e)}};i(N,"_main",null);var ne=N;var ic=ne.Main;var En=async o=>{try{let n=new URL(window.location.href),t=new URLSearchParams(n.search).get("myopOverride");if(t){let[s,...r]=Mt(t);switch(s){case"component":{let[a,p]=r,d=await ne.Main.fetchComponent(a);if(d&&d.type.skins.find(l=>l.id===p))return d.instance.skinSelector={type:ee.Dedicated,skin:{id:p}},d}break;default:{let[a,p]=Mt(t),c=(await ne.Main.fetchFlow(a)).components.find(l=>l.type.id===o.type.id);if(c&&c.instance.skinSelector.type===ee.Segmented&&c.instance.resolvedExperiences){let l=c.instance.resolvedExperiences.find(g=>g.id===p);if((l==null?void 0:l.type)===Pe.Segment){let g=l,f=c.instance.skinSelector.segments.find(m=>m.segmentId===g.segment.id);if(f)return c.instance.skinSelector=f==null?void 0:f.skinSelector,c}}}break}}}finally{return null}};var Tn="https://cdn.myop.dev/sdk/next/myop_sdk.min.js",O=class{constructor(){i(this,"components2init",[]);i(this,"components",[]);i(this,"componentsLoaders",[]);i(this,"initiated",!1);i(this,"version",Ge);i(this,"type2InstanceCount",{});i(this,"assignId",n=>(this.type2InstanceCount[n.id]||(this.type2InstanceCount[n.id]=0),"".concat(n.id,"_").concat(++this.type2InstanceCount[n.id])));i(this,"inspected",!1);i(this,"inspect",()=>{this.inspected||(this.inspected=!0,this.components.forEach(n=>{n.inspect&&n.inspect()}))});i(this,"incomingMessageHandler",n=>{if(n.origin,document.location.origin,n.data.myop){if(n.data.direction!==b.up&&n.data.messageType!==u.EnvelopedMessage)return;let e=n.data;if(e.messageType===u.InitRequest){this.components2init.forEach(s=>{s.send(new re(s.id))});return}if(e.messageType===u.InitResponse){this.components2init=this.components2init.filter(r=>r.id!==e.content.id);let s=this.components.find(r=>{var a;return r.id===((a=e.content)==null?void 0:a.id)});s==null||s.setInitiated();return}if(e.messageType===u.EnvelopedMessage){let s=e,r=this.components.find(a=>a.id===s.destination);if(r){if(s.direction===b.down){s.message.messageType===k.name?r.onMessageReceived(s.message):(s.message.route=s.route,r.send(s.message));return}}else{let a=this.components.find(p=>p.id===s.message.destination);a&&a.send(s.message)}return}let t=this.components.find(s=>s.id===e.destination);if(!t){window.myop.IframeSDK&&window.myop.IframeSDK.messageToHost(e);return}if(t){if(t.onMessageReceived(e))return;window.myop.IframeSDK&&window.myop.IframeSDK.messageToHost(e)}}});i(this,"send",n=>{let e=new MessageEvent("",{data:n});this.incomingMessageHandler(e)});i(this,"init",n=>{if(this.initiated)throw new Error("hostSDK already initiated");let e=[new Ue,new Ve,new it];if(this.componentsLoaders=[...e],n){let t={};n.forEach(s=>{let r=new s(this.componentsLoaders);t[r.type]=r}),this.componentsLoaders.forEach(s=>{t[s.type]||(t[s.type]=s)}),this.componentsLoaders=Object.values(t)}window.addEventListener("message",this.incomingMessageHandler,!1),console.log("myop hostSDK initiated",document.location.href),this.initiated=!0});i(this,"_getSkinIdBySkinSelector",async(n,e=[],t)=>{var r;async function s(a,p){for(let d of a)if(await p(d))return d}switch(n.type){case"DedicatedSkin":case ee.Dedicated:return((r=n.skin)==null?void 0:r.id)||n.skins[0].id;case ee.Segmented:{let p=await s(n.segments,async d=>{if(d.segmentId==="Default")return!0;let c=e.find(f=>f.type===Pe.Segment?f.segment.id===d.segmentId:!1);if(!c)throw new Error("experience not found");let g=c.segment,y=(t||{})[g.function];return y?await y():(console.warn("segmentId:".concat(d.segmentId,", ").concat(g.function," function not provided !")),!1)});if(p)return this._getSkinIdBySkinSelector(p.skinSelector,e);debugger}break;default:debugger}return""});i(this,"runSkinSelector",async(n,e)=>{let t=await this._getSkinIdBySkinSelector(n.instance.skinSelector,n.instance.resolvedExperiences,e);return n.type.skins.find(s=>s.id===t)});i(this,"loaderHooks");i(this,"loadComponent",async(n,e,t)=>{var l,g,y,f;if(!e){debugger;throw new Error("no container was found for this component")}let s=await En(n);s&&(n=s);let r=h(h({},(l=this.loaderHooks)!=null?l:{}),(g=t==null?void 0:t.hooks)!=null?g:{}),a=e;if(a.myop)if(a.component){n=h({},n),n.instance=h({},n.instance);let m=await this.runSkinSelector(n,r);if(!m)throw new Error("runSkinSelector failed to choose skin, check the provided config");return(y=t==null?void 0:t.hooks)!=null&&y.afterSkinSelected&&(m=await t.hooks.afterSkinSelected(h({},m))),n.instance.skinSelector={type:ee.Dedicated,skin:m},t&&(t=h({},t),delete t.hooks),await Bt(a,n,this.components,t)}else throw new Error("load component got a detached ref.");e=e;let p=await this.runSkinSelector(n,r);if(!p)throw new Error("runSkinSelector failed to choose skin, check the provided config");(f=t==null?void 0:t.hooks)!=null&&f.afterSkinSelected&&(p=await t.hooks.afterSkinSelected(h({},p)));let d=this.componentsLoaders.find(m=>m.type===p.loader.type);if(!d){debugger;throw new Error('no loader "'.concat(p.loader.type,'" was found for component'))}let c=await d.load(n.type,p,e,t);c.isInitiated||this.components2init.push(c),c.bind("onDispose",()=>(this.components=this.components.filter(m=>m!==c),this.components2init=this.components2init.filter(m=>m!==c),!0)),this.components.push(c),(!t||t.connectProps!==!1)&&(c=Mn(c,n.type.props,p));try{await Lt(c,n,this.components)}catch(m){throw m}return t!=null&&t.skipInit||await c.initiated(),c});i(this,"navigate",async(n,e,t)=>{if(n.parent)throw new Error("Navigating on remote ref components is not implemented yet");if(t!=null&&t.staged){let s=await this.loadComponent(e,n.container,h({hidden:!0,relative:{direction:"after",child:n.element}},t));return t.init&&await t.init(s),s.show(),n.dispose(),s}else{let s=n.element.nextSibling;return n.dispose(),this.loadComponent(e,n.container,h({relative:{direction:"before",child:s}},t))}})}};i(O,"Instance",()=>window.myop.hostSDK);window.myop||(window.myop={__ROOT_SDK_PUBLIC_URL__:Tn});if(!window.myop.hostSDK){let o=new O;o.init(),window.myop||(window.myop={__ROOT_SDK_PUBLIC_URL__:Tn}),window.myop.hostSDK=o}var io=window.myop.hostSDK;me("hostSDK",io);var at=class extends M{constructor(){super(...arguments);i(this,"messageType",u.CreateRefComponentMessage);i(this,"executor",e=>{(async()=>{let s=document.querySelectorAll("[".concat(E.id,"='").concat(e.refConfig.selector,"']"));if(s.length===1){let a=await O.Instance().loadComponent(e.nestedComponentConfig,s.item(0),e.options),p=[];Object.keys(a.refs).forEach(d=>{let c=a.refs[d];c=c.__nonProxied||c,c.componentDefinition&&p.push({refName:d,componentDefinitionId:c.componentDefinition.id})}),this.messageToHost(new K(e.handlerUniqueId,p))}else{console.error("CreateRefComponentMessageHandler - DOM element not found"),this.messageToHost(new K(e.handlerUniqueId,[],!0));debugger}})().then()})}};var vn=(o,n)=>{if(!o){console.log("n");return}let e=window.MutationObserver||window.WebKitMutationObserver;if(!(!o||o.nodeType!==1))if(e){let t=new e(n),s={attributes:!0,childList:!0,subtree:!0};return t.observe(o,s),t}else window.addEventListener&&(o.addEventListener("DOMNodeInserted",n,!1),o.addEventListener("DOMNodeRemoved",n,!1))};var pt=class extends M{constructor(){super(...arguments);i(this,"messageType",u.SetMutationObserverMessage);i(this,"executor",e=>{e.source&&vn(document.body,()=>{this.messageToHost(new xe)})})}};var Rn=o=>{if(!o)return null;if(o.tagName==="FORM"){let n=new FormData(o),e={formData:{},unmappedData:[]},t=o.querySelectorAll("input, select, textarea"),s=-1;return t.forEach(r=>{if(typeof r.value=="string"){let a=r.getAttribute(E.id),p=r.getAttribute("name"),d={id:r.id,name:p,value:Rn(r),required:r.required,validity:H(r.validity,!0),myopId:a};e.unmappedData.push(d),p&&(!e.formData[p]||!e.formData[p].value||d.value)&&(e.formData[p]=d)}}),e}return o.type==="checkbox"||o.type==="radio"?o.checked?o.value:null:o.tagName==="INPUT"||o.tagName==="TEXTAREA"||o.tagName==="SELECT"?o.value:o.isContentEditable?o.innerText||o.textContent:null},dt=class extends M{constructor(){super(...arguments);i(this,"messageType",u.GetElementValueMessage);i(this,"executor",e=>{I(e.ref,document).forEach(s=>{this.messageToHost(new Q(Rn(s)),e)})})}};var ct=class extends M{constructor(){super(...arguments);i(this,"messageType",u.GetAttributeMessage);i(this,"executor",e=>{let t=fn(e.ref,document);t&&this.messageToHost(new Ie(t.getAttribute(e.name)),e)})}};var mt=class extends M{constructor(){super(...arguments);i(this,"messageType",u.SetResizeObserverMessage);i(this,"executor",e=>{let t=new ResizeObserver(s=>{this.messageToHost(new Ee)});return t.observe(document.body),()=>{t.disconnect()}})}};var lt=class extends M{constructor(){super(...arguments);i(this,"messageType",u.SetInnerHtml);i(this,"executor",e=>{I(e.ref,document).forEach(s=>{s.innerHTML=e.content})})}};var Ot=class extends ae{constructor(){super();i(this,"version",Ge);i(this,"messageToHost",(e,t)=>{var r;!e.replayToHandler&&(t!=null&&t.handlerUniqueId)&&(e.replayToHandler=t.handlerUniqueId);let s=Object.keys(this.components);e.destination||(t!=null&&t.route?e.destination=t.route[t.route.length-1]:e.destination=s[0]),e.source||(e.source=s[0]),e.direction=b.up,(r=window.parent)==null||r.postMessage(h({},e),"*")});i(this,"supportedHandlers",[new ze(this.messageToHost),new lt(this.messageToHost),new Ae(this.messageToHost),new Oe(this.messageToHost),new $e(this.messageToHost),new We(this.messageToHost),new Ne(this.messageToHost),new dt(this.messageToHost),new pt(this.messageToHost),new mt(this.messageToHost),new ct(this.messageToHost),new at(this.messageToHost)]);i(this,"init",()=>{window.onmessage=this.handleIncomeMessages.bind(this),this.messageToHost(new J)});window.myop||(window.myop={}),window.myop.IframeSDK=this}};me("IframeSDK",Ot);export{Ot as IframeSDK};
|
|
@@ -1705,10 +1705,22 @@ var MyopIframeComponent = class extends BaseMyopComponent {
|
|
|
1705
1705
|
const prevMinWidth = container.style.minWidth;
|
|
1706
1706
|
if (needsHeightCollapse) container.style.minHeight = "".concat(currentIframeHeight, "px");
|
|
1707
1707
|
if (needsWidthCollapse) container.style.minWidth = "".concat(currentIframeWidth, "px");
|
|
1708
|
+
const measureStyle = contentDoc.createElement("style");
|
|
1709
|
+
measureStyle.id = "__myop_measure";
|
|
1710
|
+
const rules = [];
|
|
1711
|
+
if (needsHeightCollapse) {
|
|
1712
|
+
rules.push("height: auto !important", "min-height: 0 !important", "max-height: none !important");
|
|
1713
|
+
}
|
|
1714
|
+
if (needsWidthCollapse) {
|
|
1715
|
+
rules.push("width: auto !important", "min-width: 0 !important", "max-width: none !important");
|
|
1716
|
+
}
|
|
1717
|
+
measureStyle.textContent = "*, *::before, *::after { ".concat(rules.join("; "), "; flex-basis: auto !important; flex-grow: 0 !important; }");
|
|
1718
|
+
contentDoc.head.appendChild(measureStyle);
|
|
1708
1719
|
if (needsHeightCollapse) iframe.style.height = "0px";
|
|
1709
1720
|
if (needsWidthCollapse) iframe.style.width = "0px";
|
|
1710
1721
|
contentWidth = Math.ceil(Math.max(contentDoc.documentElement.scrollWidth, contentDoc.body.scrollWidth, contentDoc.body.getBoundingClientRect().width));
|
|
1711
1722
|
contentHeight = Math.ceil(Math.max(contentDoc.documentElement.scrollHeight, contentDoc.body.scrollHeight, contentDoc.body.getBoundingClientRect().height));
|
|
1723
|
+
measureStyle.remove();
|
|
1712
1724
|
container.style.minHeight = prevMinHeight;
|
|
1713
1725
|
container.style.minWidth = prevMinWidth;
|
|
1714
1726
|
}
|
|
@@ -2029,7 +2041,7 @@ var WebcomponentLoader = class extends BaseMyopLoader {
|
|
|
2029
2041
|
};
|
|
2030
2042
|
|
|
2031
2043
|
// version:myop-sdk-version
|
|
2032
|
-
var myop_sdk_version_default = "0.3.
|
|
2044
|
+
var myop_sdk_version_default = "0.3.25";
|
|
2033
2045
|
|
|
2034
2046
|
// src/webcomponent/messageHandlers/BaseWebComponentMessageHandler.ts
|
|
2035
2047
|
var BaseWebComponentMessageHandler = class extends BaseContextMessageHandler {
|
|
@@ -2464,10 +2476,19 @@ var HTMLComponentLoader = class extends BaseMyopLoader {
|
|
|
2464
2476
|
const comp = new MyopIframeComponent(componentDefinition, skin, container, IframeElement, options);
|
|
2465
2477
|
comp.sizeMeta = parsedSizeMeta;
|
|
2466
2478
|
comp.initiated().then(() => {
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
comp.show();
|
|
2479
|
+
if ((options == null ? void 0 : options.autoSize) === false) {
|
|
2480
|
+
return;
|
|
2470
2481
|
}
|
|
2482
|
+
let shown = false;
|
|
2483
|
+
comp.observeAutoSize({
|
|
2484
|
+
forceAutoSize: true,
|
|
2485
|
+
onSizeChange: () => {
|
|
2486
|
+
if (!shown && !(options == null ? void 0 : options.hidden)) {
|
|
2487
|
+
shown = true;
|
|
2488
|
+
comp.show();
|
|
2489
|
+
}
|
|
2490
|
+
}
|
|
2491
|
+
});
|
|
2471
2492
|
});
|
|
2472
2493
|
return comp;
|
|
2473
2494
|
}
|
|
@@ -2654,6 +2675,7 @@ var _CloudRepository = class _CloudRepository {
|
|
|
2654
2675
|
constructor(_baseUrl = "https://cloud.myop.dev") {
|
|
2655
2676
|
this._baseUrl = _baseUrl;
|
|
2656
2677
|
// v2 cache - keyed by componentId:env:preview|live
|
|
2678
|
+
// Each Promise is tagged with a `resolved` property after settling (see fetchComponentV2).
|
|
2657
2679
|
__publicField(this, "variants", {});
|
|
2658
2680
|
// Track which components were preloaded and with what params
|
|
2659
2681
|
// Key: componentId, Value: { env, preview }
|
|
@@ -2754,6 +2776,7 @@ var _CloudRepository = class _CloudRepository {
|
|
|
2754
2776
|
return;
|
|
2755
2777
|
}
|
|
2756
2778
|
const componentConfig = convertV2VariantToComponentConfig(variant);
|
|
2779
|
+
this.variants[cacheKey].resolved = componentConfig;
|
|
2757
2780
|
resolve(componentConfig);
|
|
2758
2781
|
} catch (e) {
|
|
2759
2782
|
reject(e);
|
|
@@ -2763,6 +2786,36 @@ var _CloudRepository = class _CloudRepository {
|
|
|
2763
2786
|
}
|
|
2764
2787
|
return await this.variants[cacheKey];
|
|
2765
2788
|
}
|
|
2789
|
+
/**
|
|
2790
|
+
* Synchronous version of fetchComponentV2 — returns the config only if
|
|
2791
|
+
* the fetch already completed, null otherwise.
|
|
2792
|
+
*
|
|
2793
|
+
* Uses the same `this.variants` cache that fetchComponentV2/preloadComponents
|
|
2794
|
+
* populate. Each cached Promise is tagged with a `.resolved` property when
|
|
2795
|
+
* it settles — this method just reads that property. No separate cache.
|
|
2796
|
+
*
|
|
2797
|
+
* Why this exists: React Native needs the config at render time to embed it
|
|
2798
|
+
* in the WebView HTML (can't await in useState). If preloadComponents ran
|
|
2799
|
+
* earlier and the fetch completed, this returns the result synchronously,
|
|
2800
|
+
* skipping the WEBVIEW_READY → fetch → inject round trip entirely.
|
|
2801
|
+
*/
|
|
2802
|
+
getResolvedConfig(componentId, env, preview) {
|
|
2803
|
+
var _a;
|
|
2804
|
+
const preloaded = this.preloadedComponents[componentId];
|
|
2805
|
+
const hasExplicitParams = env !== void 0 || preview !== void 0;
|
|
2806
|
+
let resolvedEnv;
|
|
2807
|
+
let usePreview;
|
|
2808
|
+
if (!hasExplicitParams && preloaded) {
|
|
2809
|
+
resolvedEnv = preloaded.env;
|
|
2810
|
+
usePreview = preloaded.preview;
|
|
2811
|
+
} else {
|
|
2812
|
+
resolvedEnv = env || this._defaultEnv;
|
|
2813
|
+
const hasEffectiveEnv = env || this._envExplicitlySet;
|
|
2814
|
+
usePreview = preview === true ? true : preview === false ? false : !hasEffectiveEnv;
|
|
2815
|
+
}
|
|
2816
|
+
const cacheKey = "".concat(componentId, ":").concat(resolvedEnv, ":").concat(usePreview ? "preview" : "live");
|
|
2817
|
+
return ((_a = this.variants[cacheKey]) == null ? void 0 : _a.resolved) || null;
|
|
2818
|
+
}
|
|
2766
2819
|
// ============ V1 Methods (Legacy) ============
|
|
2767
2820
|
/**
|
|
2768
2821
|
* Fetch a v1 component from a flow
|