react-grab 0.0.38 → 0.0.39
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/index.cjs +36 -23
- package/dist/index.d.cts +0 -2
- package/dist/index.d.ts +0 -2
- package/dist/index.global.js +9 -9
- package/dist/index.js +36 -23
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -680,10 +680,10 @@ var ReactGrabRenderer = (props) => {
|
|
|
680
680
|
return label.text;
|
|
681
681
|
},
|
|
682
682
|
get x() {
|
|
683
|
-
return
|
|
683
|
+
return props.mouseX ?? 0;
|
|
684
684
|
},
|
|
685
685
|
get y() {
|
|
686
|
-
return
|
|
686
|
+
return props.mouseY ?? 0;
|
|
687
687
|
}
|
|
688
688
|
})
|
|
689
689
|
}), web.createComponent(solidJs.Show, {
|
|
@@ -773,8 +773,16 @@ var formatComponentSourceLocation = async (el) => {
|
|
|
773
773
|
const source$1 = await source.getSourceFromHostInstance(el);
|
|
774
774
|
if (!source$1) return null;
|
|
775
775
|
const fileName = source.normalizeFileName(source$1.fileName);
|
|
776
|
-
if (
|
|
777
|
-
|
|
776
|
+
if (source.isSourceFile(fileName)) {
|
|
777
|
+
return `${fileName}:${source$1.lineNumber}:${source$1.columnNumber}`;
|
|
778
|
+
}
|
|
779
|
+
if (fileName && (fileName.includes(".tsx") || fileName.includes(".ts") || fileName.includes(".jsx") || fileName.includes(".js"))) {
|
|
780
|
+
const cleanedFileName = fileName.replace(/^webpack:\/\/_N_E\//, "").replace(/^webpack:\/\/\//, "").replace(/^webpack:\/\//, "").replace(/^\.\//, "");
|
|
781
|
+
if (cleanedFileName && !cleanedFileName.startsWith("node_modules") && !cleanedFileName.includes(".next") && !cleanedFileName.startsWith("webpack")) {
|
|
782
|
+
return `${cleanedFileName}:${source$1.lineNumber}:${source$1.columnNumber}`;
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
return null;
|
|
778
786
|
};
|
|
779
787
|
var getHTMLSnippet = async (element) => {
|
|
780
788
|
const semanticTags = /* @__PURE__ */ new Set([
|
|
@@ -887,14 +895,17 @@ var getHTMLSnippet = async (element) => {
|
|
|
887
895
|
const siblings = Array.from(parent.children);
|
|
888
896
|
targetIndex = siblings.indexOf(element);
|
|
889
897
|
if (targetIndex > 0) {
|
|
890
|
-
const
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
+
const indent2 = " ".repeat(ancestors.length);
|
|
899
|
+
if (targetIndex <= 2) {
|
|
900
|
+
for (let i = 0; i < targetIndex; i++) {
|
|
901
|
+
const sibling = siblings[i];
|
|
902
|
+
const siblingId = extractSiblingIdentifier(sibling);
|
|
903
|
+
if (siblingId) {
|
|
904
|
+
lines.push(`${indent2} ${formatElementOpeningTag(sibling, true)}`);
|
|
905
|
+
lines.push(`${indent2} </${sibling.tagName.toLowerCase()}>`);
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
} else {
|
|
898
909
|
lines.push(
|
|
899
910
|
`${indent2} ... (${targetIndex} element${targetIndex === 1 ? "" : "s"})`
|
|
900
911
|
);
|
|
@@ -936,11 +947,15 @@ var getHTMLSnippet = async (element) => {
|
|
|
936
947
|
const siblings = Array.from(parent.children);
|
|
937
948
|
const siblingsAfter = siblings.length - targetIndex - 1;
|
|
938
949
|
if (siblingsAfter > 0) {
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
950
|
+
if (siblingsAfter <= 2) {
|
|
951
|
+
for (let i = targetIndex + 1; i < siblings.length; i++) {
|
|
952
|
+
const sibling = siblings[i];
|
|
953
|
+
const siblingId = extractSiblingIdentifier(sibling);
|
|
954
|
+
if (siblingId) {
|
|
955
|
+
lines.push(`${indent} ${formatElementOpeningTag(sibling, true)}`);
|
|
956
|
+
lines.push(`${indent} </${sibling.tagName.toLowerCase()}>`);
|
|
957
|
+
}
|
|
958
|
+
}
|
|
944
959
|
} else {
|
|
945
960
|
lines.push(
|
|
946
961
|
`${indent} ... (${siblingsAfter} element${siblingsAfter === 1 ? "" : "s"})`
|
|
@@ -1280,13 +1295,11 @@ var init = (rawOptions) => {
|
|
|
1280
1295
|
setGrabbedBoxes((previousBoxes) => previousBoxes.filter((box) => box.id !== boxId));
|
|
1281
1296
|
}, SUCCESS_LABEL_DURATION_MS);
|
|
1282
1297
|
};
|
|
1283
|
-
const showTemporarySuccessLabel = (text
|
|
1298
|
+
const showTemporarySuccessLabel = (text) => {
|
|
1284
1299
|
const labelId = `success-${Date.now()}-${Math.random()}`;
|
|
1285
1300
|
setSuccessLabels((previousLabels) => [...previousLabels, {
|
|
1286
1301
|
id: labelId,
|
|
1287
|
-
text
|
|
1288
|
-
x: positionX,
|
|
1289
|
-
y: positionY
|
|
1302
|
+
text
|
|
1290
1303
|
}]);
|
|
1291
1304
|
setTimeout(() => {
|
|
1292
1305
|
setSuccessLabels((previousLabels) => previousLabels.filter((label) => label.id !== labelId));
|
|
@@ -1418,7 +1431,7 @@ ${context}
|
|
|
1418
1431
|
}
|
|
1419
1432
|
}
|
|
1420
1433
|
if (didCopy) {
|
|
1421
|
-
showTemporarySuccessLabel(extractElementLabelText(targetElement2)
|
|
1434
|
+
showTemporarySuccessLabel(extractElementLabelText(targetElement2));
|
|
1422
1435
|
}
|
|
1423
1436
|
notifyElementsSelected([targetElement2]);
|
|
1424
1437
|
};
|
|
@@ -1463,7 +1476,7 @@ ${context}
|
|
|
1463
1476
|
} catch {
|
|
1464
1477
|
}
|
|
1465
1478
|
if (didCopy) {
|
|
1466
|
-
showTemporarySuccessLabel(`${targetElements.length} elements
|
|
1479
|
+
showTemporarySuccessLabel(`${targetElements.length} elements`);
|
|
1467
1480
|
}
|
|
1468
1481
|
notifyElementsSelected(targetElements);
|
|
1469
1482
|
};
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.global.js
CHANGED
|
@@ -6,11 +6,11 @@ var ReactGrab=(function(exports){'use strict';/**
|
|
|
6
6
|
* This source code is licensed under the MIT license found in the
|
|
7
7
|
* LICENSE file in the root directory of this source tree.
|
|
8
8
|
*/
|
|
9
|
-
var no=(e,t)=>e===t;var ro=Symbol("solid-track"),ft={equals:no},$n=Dn,me=1,Ke=2,kn={owned:null,cleanups:null,context:null,owner:null};var D=null,p=null,Ge=null,z=null,te=null,ie=null,mt=0;function De(e,t){let n=z,r=D,o=e.length===0,i=t===void 0?r:t,s=o?kn:{owned:null,cleanups:null,context:i?i.context:null,owner:i},a=o?e:()=>e(()=>ue(()=>Ae(s)));D=s,z=null;try{return ve(a,!0)}finally{z=n,D=r;}}function $(e,t){t=t?Object.assign({},ft,t):ft;let n={value:e,observers:null,observerSlots:null,comparator:t.equals||void 0},r=o=>(typeof o=="function"&&(o=o(n.value)),Ln(n,o));return [Pn.bind(n),r]}function fe(e,t,n){let r=Ht(e,t,false,me);Qe(r);}function se(e,t,n){$n=lo;let r=Ht(e,t,false,me);(r.user=true),ie?ie.push(r):Qe(r);}function q(e,t,n){n=n?Object.assign({},ft,n):ft;let r=Ht(e,t,true,0);return r.observers=null,r.observerSlots=null,r.comparator=n.equals||void 0,Qe(r),Pn.bind(r)}function ue(e){if(z===null)return e();let t=z;z=null;try{return Ge?Ge.untrack(e):e()}finally{z=t;}}function Fe(e,t,n){let r=Array.isArray(e),o;return s=>{let a;if(r){a=Array(e.length);for(let f=0;f<e.length;f++)a[f]=e[f]();}else a=e();let l=ue(()=>t(a,o,s));return o=a,l}}function Mn(e){se(()=>ue(e));}function he(e){return D===null||(D.cleanups===null?D.cleanups=[e]:D.cleanups.push(e)),e}$(false);function Pn(){let e=p;if(this.sources&&(this.state))if((this.state)===me)Qe(this);else {let t=te;te=null,ve(()=>dt(this),false),te=t;}if(z){let t=this.observers?this.observers.length:0;z.sources?(z.sources.push(this),z.sourceSlots.push(t)):(z.sources=[this],z.sourceSlots=[t]),this.observers?(this.observers.push(z),this.observerSlots.push(z.sources.length-1)):(this.observers=[z],this.observerSlots=[z.sources.length-1]);}return e&&p.sources.has(this)?this.tValue:this.value}function Ln(e,t,n){let r=e.value;if(!e.comparator||!e.comparator(r,t)){e.value=t;e.observers&&e.observers.length&&ve(()=>{for(let o=0;o<e.observers.length;o+=1){let i=e.observers[o],s=p&&p.running;s&&p.disposed.has(i)||((s?!i.tState:!i.state)&&(i.pure?te.push(i):ie.push(i),i.observers&&Hn(i)),s?i.tState=me:i.state=me);}if(te.length>1e6)throw te=[],new Error},false);}return t}function Qe(e){if(!e.fn)return;Ae(e);let t=mt;An(e,e.value,t);}function An(e,t,n){let r,o=D,i=z;z=D=e;try{r=e.fn(t);}catch(s){return e.pure&&((e.state=me,e.owned&&e.owned.forEach(Ae),e.owned=null)),e.updatedAt=n+1,Bt(s)}finally{z=i,D=o;}(!e.updatedAt||e.updatedAt<=n)&&(e.updatedAt!=null&&"observers"in e?Ln(e,r):e.value=r,e.updatedAt=n);}function Ht(e,t,n,r=me,o){let i={fn:e,state:r,updatedAt:null,owned:null,sources:null,sourceSlots:null,cleanups:null,value:t,owner:D,context:D?D.context:null,pure:n};if(D===null||D!==kn&&(D.owned?D.owned.push(i):D.owned=[i]),Ge);return i}function Ze(e){let t=p;if((e.state)===0)return;if((e.state)===Ke)return dt(e);if(e.suspense&&ue(e.suspense.inFallback))return e.suspense.effects.push(e);let n=[e];for(;(e=e.owner)&&(!e.updatedAt||e.updatedAt<mt);){(e.state)&&n.push(e);}for(let r=n.length-1;r>=0;r--){if(e=n[r],t);if((e.state)===me)Qe(e);else if((e.state)===Ke){let o=te;te=null,ve(()=>dt(e,n[0]),false),te=o;}}}function ve(e,t){if(te)return e();let n=false;t||(te=[]),ie?n=true:ie=[],mt++;try{let r=e();return so(n),r}catch(r){n||(ie=null),te=null,Bt(r);}}function so(e){if(te&&(Dn(te),te=null),e)return;let n=ie;ie=null,n.length&&ve(()=>$n(n),false);}function Dn(e){for(let t=0;t<e.length;t++)Ze(e[t]);}function lo(e){let t,n=0;for(t=0;t<e.length;t++){let r=e[t];r.user?e[n++]=r:Ze(r);}for(t=0;t<n;t++)Ze(e[t]);}function dt(e,t){e.state=0;for(let r=0;r<e.sources.length;r+=1){let o=e.sources[r];if(o.sources){let i=o.state;i===me?o!==t&&(!o.updatedAt||o.updatedAt<mt)&&Ze(o):i===Ke&&dt(o,t);}}}function Hn(e){for(let n=0;n<e.observers.length;n+=1){let r=e.observers[n];(!r.state)&&(r.state=Ke,r.pure?te.push(r):ie.push(r),r.observers&&Hn(r));}}function Ae(e){let t;if(e.sources)for(;e.sources.length;){let n=e.sources.pop(),r=e.sourceSlots.pop(),o=n.observers;if(o&&o.length){let i=o.pop(),s=n.observerSlots.pop();r<o.length&&(i.sourceSlots[s]=r,o[r]=i,n.observerSlots[r]=s);}}if(e.tOwned){for(t=e.tOwned.length-1;t>=0;t--)Ae(e.tOwned[t]);delete e.tOwned;}if(e.owned){for(t=e.owned.length-1;t>=0;t--)Ae(e.owned[t]);e.owned=null;}if(e.cleanups){for(t=e.cleanups.length-1;t>=0;t--)e.cleanups[t]();e.cleanups=null;}e.state=0;}function co(e){return e instanceof Error?e:new Error(typeof e=="string"?e:"Unknown error",{cause:e})}function Bt(e,t=D){let r=co(e);throw r;}var uo=Symbol("fallback");function In(e){for(let t=0;t<e.length;t++)e[t]();}function fo(e,t,n={}){let r=[],o=[],i=[],s=0,a=t.length>1?[]:null;return he(()=>In(i)),()=>{let l=e()||[],f=l.length,d,m;return l[ro],ue(()=>{let C,T,R,_,O,S,I,N,L;if(f===0)s!==0&&(In(i),i=[],r=[],o=[],s=0,a&&(a=[])),n.fallback&&(r=[uo],o[0]=De(U=>(i[0]=U,n.fallback())),s=1);else if(s===0){for(o=new Array(f),m=0;m<f;m++)r[m]=l[m],o[m]=De(x);s=f;}else {for(R=new Array(f),_=new Array(f),a&&(O=new Array(f)),S=0,I=Math.min(s,f);S<I&&r[S]===l[S];S++);for(I=s-1,N=f-1;I>=S&&N>=S&&r[I]===l[N];I--,N--)R[N]=o[I],_[N]=i[I],a&&(O[N]=a[I]);for(C=new Map,T=new Array(N+1),m=N;m>=S;m--)L=l[m],d=C.get(L),T[m]=d===void 0?-1:d,C.set(L,m);for(d=S;d<=I;d++)L=r[d],m=C.get(L),m!==void 0&&m!==-1?(R[m]=o[d],_[m]=i[d],a&&(O[m]=a[d]),m=T[m],C.set(L,m)):i[d]();for(m=S;m<f;m++)m in R?(o[m]=R[m],i[m]=_[m],a&&(a[m]=O[m],a[m](m))):o[m]=De(x);o=o.slice(0,s=f),r=l.slice(0);}return o});function x(C){if(i[m]=C,a){let[T,R]=$(m);return a[m]=R,t(l[m],T)}return t(l[m])}}}function k(e,t){return ue(()=>e(t||{}))}var ho=e=>`Stale read from <${e}>.`;function ht(e){let t="fallback"in e&&{fallback:()=>e.fallback};return q(fo(()=>e.each,e.children,t||void 0))}function J(e){let t=e.keyed,n=q(()=>e.when,void 0,void 0),r=t?n:q(n,void 0,{equals:(o,i)=>!o==!i});return q(()=>{let o=r();if(o){let i=e.children;return typeof i=="function"&&i.length>0?ue(()=>i(t?o:()=>{if(!ue(r))throw ho("Show");return n()})):i}return e.fallback},void 0,void 0)}var Ie=e=>q(()=>e());function bo(e,t,n){let r=n.length,o=t.length,i=r,s=0,a=0,l=t[o-1].nextSibling,f=null;for(;s<o||a<i;){if(t[s]===n[a]){s++,a++;continue}for(;t[o-1]===n[i-1];)o--,i--;if(o===s){let d=i<r?a?n[a-1].nextSibling:n[i-a]:l;for(;a<i;)e.insertBefore(n[a++],d);}else if(i===a)for(;s<o;)(!f||!f.has(t[s]))&&t[s].remove(),s++;else if(t[s]===n[i-1]&&n[a]===t[o-1]){let d=t[--o].nextSibling;e.insertBefore(n[a++],t[s++].nextSibling),e.insertBefore(n[--i],d),t[o]=n[i];}else {if(!f){f=new Map;let m=a;for(;m<i;)f.set(n[m],m++);}let d=f.get(t[s]);if(d!=null)if(a<d&&d<i){let m=s,x=1,C;for(;++m<o&&m<i&&!((C=f.get(t[m]))==null||C!==d+x);)x++;if(x>d-a){let T=t[s];for(;a<d;)e.insertBefore(n[a++],T);}else e.replaceChild(n[a++],t[s++]);}else s++;else t[s++].remove();}}}function Vn(e,t,n,r={}){let o;return De(i=>{o=i,t===document?e():Te(t,e(),t.firstChild?null:void 0,n);},r.owner),()=>{o(),t.textContent="";}}function ae(e,t,n,r){let o,i=()=>{let a=document.createElement("template");return a.innerHTML=e,a.content.firstChild},s=()=>(o||(o=i())).cloneNode(true);return s.cloneNode=s,s}function yo(e,t,n){(e.removeAttribute(t));}function pt(e,t,n){if(!t)return n?yo(e,"style"):t;let r=e.style;if(typeof t=="string")return r.cssText=t;typeof n=="string"&&(r.cssText=n=void 0),n||(n={}),t||(t={});let o,i;for(i in n)t[i]==null&&r.removeProperty(i),delete n[i];for(i in t)o=t[i],o!==n[i]&&(r.setProperty(i,o),n[i]=o);return n}function we(e,t,n){n!=null?e.style.setProperty(t,n):e.style.removeProperty(t);}function $e(e,t,n){return ue(()=>e(t,n))}function Te(e,t,n,r){if(n!==void 0&&!r&&(r=[]),typeof t!="function")return gt(e,t,r,n);fe(o=>gt(e,t(),o,n),r);}function gt(e,t,n,r,o){for(;typeof n=="function";)n=n();if(t===n)return n;let s=typeof t,a=r!==void 0;if(e=a&&n[0]&&n[0].parentNode||e,s==="string"||s==="number"){if(s==="number"&&(t=t.toString(),t===n))return n;if(a){let l=n[0];l&&l.nodeType===3?l.data!==t&&(l.data=t):l=document.createTextNode(t),n=ze(e,n,r,l);}else n!==""&&typeof n=="string"?n=e.firstChild.data=t:n=e.textContent=t;}else if(t==null||s==="boolean"){n=ze(e,n,r);}else {if(s==="function")return fe(()=>{let l=t();for(;typeof l=="function";)l=l();n=gt(e,l,n,r);}),()=>n;if(Array.isArray(t)){let l=[],f=n&&Array.isArray(n);if(jt(l,t,n,o))return fe(()=>n=gt(e,l,n,r,true)),()=>n;if(l.length===0){if(n=ze(e,n,r),a)return n}else f?n.length===0?jn(e,l,r):bo(e,n,l):(n&&ze(e),jn(e,l));n=l;}else if(t.nodeType){if(Array.isArray(n)){if(a)return n=ze(e,n,r,t);ze(e,n,null,t);}else n==null||n===""||!e.firstChild?e.appendChild(t):e.replaceChild(t,e.firstChild);n=t;}}return n}function jt(e,t,n,r){let o=false;for(let i=0,s=t.length;i<s;i++){let a=t[i],l=n&&n[e.length],f;if(!(a==null||a===true||a===false))if((f=typeof a)=="object"&&a.nodeType)e.push(a);else if(Array.isArray(a))o=jt(e,a,l)||o;else if(f==="function")if(r){for(;typeof a=="function";)a=a();o=jt(e,Array.isArray(a)?a:[a],Array.isArray(l)?l:[l])||o;}else e.push(a),o=true;else {let d=String(a);l&&l.nodeType===3&&l.data===d?e.push(l):e.push(document.createTextNode(d));}}return o}function jn(e,t,n=null){for(let r=0,o=t.length;r<o;r++)e.insertBefore(t[r],n);}function ze(e,t,n,r){if(n===void 0)return e.textContent="";let o=r||document.createTextNode("");if(t.length){let i=false;for(let s=t.length-1;s>=0;s--){let a=t[s];if(o!==a){let l=a.parentNode===e;!i&&!s?l?e.replaceChild(o,a):e.insertBefore(o,n):l&&a.remove();}else i=true;}}else e.insertBefore(o,n);return [o]}var wo=["input","textarea","select","searchbox","slider","spinbutton","menuitem","menuitemcheckbox","menuitemradio","option","radio","textbox"],To=e=>!!e.tagName&&!e.tagName.startsWith("-")&&e.tagName.includes("-"),So=e=>Array.isArray(e),Co=(e,t=false)=>{let{composed:n,target:r}=e,o,i;if(r instanceof HTMLElement&&To(r)&&n){let a=e.composedPath()[0];a instanceof HTMLElement&&(o=a.tagName,i=a.role);}else r instanceof HTMLElement&&(o=r.tagName,i=r.role);return So(t)?!!(o&&t&&t.some(s=>typeof o=="string"&&s.toLowerCase()===o.toLowerCase()||s===i)):!!(o&&t&&t)},Gn=e=>Co(e,wo);var Ue="data-react-grab",zn=()=>{let e=document.querySelector(`[${Ue}]`);if(e){let i=e.shadowRoot?.querySelector(`[${Ue}]`);if(i instanceof HTMLDivElement&&e.shadowRoot)return i}let t=document.createElement("div");t.setAttribute(Ue,"true"),t.style.zIndex="2147483646",t.style.position="fixed",t.style.top="0",t.style.left="0";let n=t.attachShadow({mode:"open"}),r=document.createElement("div");return r.setAttribute(Ue,"true"),n.appendChild(r),(document.body??document.documentElement).appendChild(t),r};var pe=(e,t,n)=>e+(t-e)*n;var Eo=ae("<div>"),bt=e=>{let[t,n]=$(e.bounds.x),[r,o]=$(e.bounds.y),[i,s]=$(e.bounds.width),[a,l]=$(e.bounds.height),[f,d]=$(1),m=false,x=null,C=null,T=e.bounds,R=false,_=()=>e.lerpFactor!==void 0?e.lerpFactor:e.variant==="drag"?.7:.95,O=()=>{if(R)return;R=true;let N=()=>{let L=pe(t(),T.x,_()),U=pe(r(),T.y,_()),K=pe(i(),T.width,_()),y=pe(a(),T.height,_());n(L),o(U),s(K),l(y),Math.abs(L-T.x)<.5&&Math.abs(U-T.y)<.5&&Math.abs(K-T.width)<.5&&Math.abs(y-T.height)<.5?(x=null,R=false):x=requestAnimationFrame(N);};x=requestAnimationFrame(N);};se(Fe(()=>e.bounds,N=>{if(T=N,!m){n(T.x),o(T.y),s(T.width),l(T.height),m=true;return}O();})),se(()=>{e.variant==="grabbed"&&e.createdAt&&(C=window.setTimeout(()=>{d(0);},1500));}),he(()=>{x!==null&&(cancelAnimationFrame(x),x=null),C!==null&&(window.clearTimeout(C),C=null),R=false;});let S={position:"fixed","box-sizing":"border-box","pointer-events":e.variant==="drag"?"none":"auto","z-index":"2147483646"},I=()=>e.variant==="drag"?{border:"1px dashed rgba(210, 57, 192, 0.4)","background-color":"rgba(210, 57, 192, 0.05)","will-change":"transform, width, height",contain:"layout paint size",cursor:"crosshair"}:{border:"1px solid rgb(210, 57, 192)","background-color":"rgba(210, 57, 192, 0.2)",transition:e.variant==="grabbed"?"opacity 0.3s ease-out":void 0};return k(J,{get when(){return e.visible!==false},get children(){var N=Eo();return fe(L=>pt(N,{...S,...I(),top:`${r()}px`,left:`${t()}px`,width:`${i()}px`,height:`${a()}px`,"border-radius":e.bounds.borderRadius,transform:e.bounds.transform,opacity:f()},L)),N}})};var vo=ae('<span style="display:inline-block;width:8px;height:8px;border:1.5px solid rgb(210, 57, 192);border-top-color:transparent;border-radius:50%;margin-right:4px;vertical-align:middle">'),Un=e=>{let t;return Mn(()=>{t&&t.animate([{transform:"rotate(0deg)"},{transform:"rotate(360deg)"}],{duration:600,easing:"linear",iterations:1/0});}),(()=>{var n=vo(),r=t;return typeof r=="function"?$e(r,n):t=n,fe(o=>pt(n,{...e.style},o)),n})()};var yt=(e,t,n,r)=>{let o=window.innerWidth,i=window.innerHeight,s=8,a=8,l=o-n-8,f=i-r-8,d=Math.max(s,Math.min(e,l)),m=Math.max(a,Math.min(t,f));return {left:d,top:m}};var Ro=ae("<span style=display:inline-block;margin-right:4px;font-weight:600>\u2713"),No=ae("<div style=margin-right:4px>Copied"),Oo=ae(`<span style="font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;font-variant-numeric:tabular-nums;vertical-align:middle">`),_o=ae("<span style=font-variant-numeric:tabular-nums;font-size:10px;margin-left:4px;vertical-align:middle>"),Ao=ae("<div style=margin-left:4px>to clipboard"),Fo=ae(`<div style="position:fixed;padding:2px 6px;background-color:#fde7f7;color:#b21c8e;border:1px solid #f7c5ec;border-radius:4px;font-size:11px;font-weight:500;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;pointer-events:none;transition:opacity 0.2s ease-in-out;display:flex;align-items:center;max-width:calc(100vw - (16px + env(safe-area-inset-left) + env(safe-area-inset-right)));overflow:hidden;text-overflow:ellipsis;white-space:nowrap">`),Vt=e=>{let[t,n]=$(0),[r,o]=$(0),i,s=e.x,a=e.y,l=e.x,f=e.y,d=null,m=false,x=()=>{s=pe(s,l,.3),a=pe(a,f,.3),o(I=>I+1),Math.abs(s-l)<.5&&Math.abs(a-f)<.5?d=null:d=requestAnimationFrame(x);},C=()=>{d===null&&(d=requestAnimationFrame(x));},T=()=>{if(l=e.x,f=e.y,!m){s=l,a=f,m=true,o(S=>S+1);return}C();};se(Fe(()=>e.visible,S=>{if(S!==false)requestAnimationFrame(()=>{n(1);});else {n(0);return}if(e.variant==="success"){let I=setTimeout(()=>{n(0);},1700);he(()=>clearTimeout(I));}})),se(()=>{T();}),he(()=>{d!==null&&(cancelAnimationFrame(d),d=null);});let R=()=>i?.getBoundingClientRect(),_=()=>{r();let S=R();if(!S)return {left:s,top:a};let I=window.innerWidth,N=window.innerHeight,L=[{left:Math.round(s)+14,top:Math.round(a)+14},{left:Math.round(s)-S.width-14,top:Math.round(a)+14},{left:Math.round(s)+14,top:Math.round(a)-S.height-14},{left:Math.round(s)-S.width-14,top:Math.round(a)-S.height-14}];for(let K of L){let y=K.left>=8&&K.left+S.width<=I-8,A=K.top>=8&&K.top+S.height<=N-8;if(y&&A)return K}let U=yt(L[0].left,L[0].top,S.width,S.height);return U.left+=4,U.top+=4,U},O=()=>{let I=e.text.indexOf(" in ");return I===-1?{primary:e.text,secondary:""}:{primary:e.text.slice(0,I),secondary:e.text.slice(I)}};return k(J,{get when(){return e.visible!==false},get children(){var S=Fo(),I=i;return typeof I=="function"?$e(I,S):i=S,Te(S,k(J,{get when(){return e.variant==="processing"},get children(){return k(Un,{})}}),null),Te(S,k(J,{get when(){return e.variant==="success"},get children(){return Ro()}}),null),Te(S,k(J,{get when(){return e.variant==="success"},get children(){return No()}}),null),Te(S,k(J,{get when(){return e.variant==="processing"},children:"Grabbing\u2026"}),null),Te(S,k(J,{get when(){return e.variant!=="processing"},get children(){return [(()=>{var N=Oo();return Te(N,()=>O().primary),N})(),k(J,{get when(){return Ie(()=>e.variant==="hover")()&&O().secondary!==""},get children(){var N=_o();return Te(N,()=>O().secondary),N}})]}}),null),Te(S,k(J,{get when(){return e.variant==="success"},get children(){return Ao()}}),null),fe(N=>{var L=`${_().top}px`,U=`${_().left}px`,K=e.zIndex?.toString()??"2147483647",y=t();return L!==N.e&&we(S,"top",N.e=L),U!==N.t&&we(S,"left",N.t=U),K!==N.a&&we(S,"z-index",N.a=K),y!==N.o&&we(S,"opacity",N.o=y),N},{e:void 0,t:void 0,a:void 0,o:void 0}),S}})};var Io=ae('<div style="position:fixed;z-index:2147483647;pointer-events:none;transition:opacity 0.1s ease-in-out"><div style="width:32px;height:2px;background-color:rgba(178, 28, 142, 0.2);border-radius:1px;overflow:hidden;position:relative"><div style="height:100%;background-color:#b21c8e;border-radius:1px;transition:width 0.05s cubic-bezier(0.165, 0.84, 0.44, 1)">'),$o=e=>{let[t,n]=$(0);return se(Fe(()=>e,r=>{r!==false?requestAnimationFrame(()=>{n(1);}):n(0);})),t},Xn=e=>{let t=$o(e.visible),n,r=()=>{let o=n?.getBoundingClientRect();if(!o)return {left:e.mouseX,top:e.mouseY};let i=window.innerHeight,s=e.mouseX-o.width/2,a=e.mouseY+14+o.height+8>i?e.mouseY-o.height-14:e.mouseY+14;return yt(s,a,o.width,o.height)};return k(J,{get when(){return e.visible!==false},get children(){var o=Io(),i=o.firstChild,s=i.firstChild,a=n;return typeof a=="function"?$e(a,o):n=o,fe(l=>{var f=`${r().top}px`,d=`${r().left}px`,m=t(),x=`${Math.min(100,Math.max(0,e.progress*100))}%`;return f!==l.e&&we(o,"top",l.e=f),d!==l.t&&we(o,"left",l.t=d),m!==l.a&&we(o,"opacity",l.a=m),x!==l.o&&we(s,"width",l.o=x),l},{e:void 0,t:void 0,a:void 0,o:void 0}),o}})};var ko=ae("<canvas style=position:fixed;top:0;left:0;pointer-events:none;z-index:2147483645>"),Wn=e=>{let t,n=null,r=0,o=0,i=1,s=e.mouseX,a=e.mouseY,l=e.mouseX,f=e.mouseY,d=null,m=false,x=()=>{t&&(i=Math.max(window.devicePixelRatio||1,2),r=window.innerWidth,o=window.innerHeight,t.width=r*i,t.height=o*i,t.style.width=`${r}px`,t.style.height=`${o}px`,n=t.getContext("2d"),n&&n.scale(i,i));},C=()=>{n&&(n.clearRect(0,0,r,o),n.strokeStyle="rgba(210, 57, 192)",n.lineWidth=1,n.beginPath(),n.moveTo(s,0),n.lineTo(s,o),n.moveTo(0,a),n.lineTo(r,a),n.stroke());},T=()=>{s=pe(s,l,.3),a=pe(a,f,.3),C(),Math.abs(s-l)<.5&&Math.abs(a-f)<.5?d=null:d=requestAnimationFrame(T);},R=()=>{d===null&&(d=requestAnimationFrame(T));},_=()=>{if(l=e.mouseX,f=e.mouseY,!m){s=l,a=f,m=true,C();return}R();};return se(()=>{x(),C();let O=()=>{x(),C();};window.addEventListener("resize",O),he(()=>{window.removeEventListener("resize",O),d!==null&&(cancelAnimationFrame(d),d=null);});}),se(()=>{_();}),k(J,{get when(){return e.visible!==false},get children(){var O=ko(),S=t;return typeof S=="function"?$e(S,O):t=O,O}})};var Kn=e=>[k(J,{get when(){return Ie(()=>!!e.selectionVisible)()&&e.selectionBounds},get children(){return k(bt,{variant:"selection",get bounds(){return e.selectionBounds},get visible(){return e.selectionVisible}})}}),k(J,{get when(){return Ie(()=>e.crosshairVisible===true&&e.mouseX!==void 0)()&&e.mouseY!==void 0},get children(){return k(Wn,{get mouseX(){return e.mouseX},get mouseY(){return e.mouseY},visible:true})}}),k(J,{get when(){return Ie(()=>!!e.dragVisible)()&&e.dragBounds},get children(){return k(bt,{variant:"drag",get bounds(){return e.dragBounds},get visible(){return e.dragVisible}})}}),k(ht,{get each(){return e.grabbedBoxes??[]},children:t=>k(bt,{variant:"grabbed",get bounds(){return t.bounds},get createdAt(){return t.createdAt}})}),k(ht,{get each(){return e.successLabels??[]},children:t=>k(Vt,{variant:"success",get text(){return t.text},get x(){return t.x},get y(){return t.y}})}),k(J,{get when(){return Ie(()=>!!(e.labelVisible&&e.labelVariant&&e.labelText&&e.labelX!==void 0))()&&e.labelY!==void 0},get children(){return k(Vt,{get variant(){return e.labelVariant},get text(){return e.labelText},get x(){return e.labelX},get y(){return e.labelY},get visible(){return e.labelVisible},get zIndex(){return e.labelZIndex}})}}),k(J,{get when(){return Ie(()=>!!(e.progressVisible&&e.progress!==void 0&&e.mouseX!==void 0))()&&e.mouseY!==void 0},get children(){return k(Xn,{get progress(){return e.progress},get mouseX(){return e.mouseX},get mouseY(){return e.mouseY},get visible(){return e.progressVisible}})}})];var Qn="0.5.14",tt=`bippy-${Qn}`,Zn=Object.defineProperty,Mo=Object.prototype.hasOwnProperty,et=()=>{},er=e=>{try{Function.prototype.toString.call(e).indexOf("^_^")>-1&&setTimeout(()=>{throw Error("React is running in production mode, but dead code elimination has not been applied. Read how to correctly configure React for production: https://reactjs.org/link/perf-use-production-build")});}catch{}},Yt=(e=Re())=>"getFiberRoots"in e,tr=false,Jn,St=(e=Re())=>tr?true:(typeof e.inject=="function"&&(Jn=e.inject.toString()),!!Jn?.includes("(injected)")),Tt=new Set,He=new Set,nr=e=>{let t=new Map,n=0,r={_instrumentationIsActive:false,_instrumentationSource:tt,checkDCE:er,hasUnsupportedRendererAttached:false,inject(o){let i=++n;return t.set(i,o),He.add(o),r._instrumentationIsActive||(r._instrumentationIsActive=true,Tt.forEach(s=>s())),i},on:et,onCommitFiberRoot:et,onCommitFiberUnmount:et,onPostCommitFiberRoot:et,renderers:t,supportsFiber:true,supportsFlight:true};try{Zn(globalThis,"__REACT_DEVTOOLS_GLOBAL_HOOK__",{configurable:!0,enumerable:!0,get(){return r},set(s){if(s&&typeof s=="object"){let a=r.renderers;r=s,a.size>0&&(a.forEach((l,f)=>{He.add(l),s.renderers.set(f,l);}),Ct(e));}}});let o=window.hasOwnProperty,i=!1;Zn(window,"hasOwnProperty",{configurable:!0,value:function(...s){try{if(!i&&s[0]==="__REACT_DEVTOOLS_GLOBAL_HOOK__")return globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__=void 0,i=!0,-0}catch{}return o.apply(this,s)},writable:!0});}catch{Ct(e);}return r},Ct=e=>{e&&Tt.add(e);try{let t=globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!t)return;if(!t._instrumentationSource){t.checkDCE=er,t.supportsFiber=!0,t.supportsFlight=!0,t.hasUnsupportedRendererAttached=!1,t._instrumentationSource=tt,t._instrumentationIsActive=!1;let n=Yt(t);if(n||(t.on=et),t.renderers.size){t._instrumentationIsActive=!0,Tt.forEach(i=>i());return}let r=t.inject,o=St(t);o&&!n&&(tr=!0,t.inject({scheduleRefresh(){}})&&(t._instrumentationIsActive=!0)),t.inject=i=>{let s=r(i);return He.add(i),o&&t.renderers.set(s,i),t._instrumentationIsActive=!0,Tt.forEach(a=>a()),s};}(t.renderers.size||t._instrumentationIsActive||St())&&e?.();}catch{}},Gt=()=>Mo.call(globalThis,"__REACT_DEVTOOLS_GLOBAL_HOOK__"),Re=e=>Gt()?(Ct(e),globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__):nr(e),rr=()=>!!(typeof window<"u"&&(window.document?.createElement||window.navigator?.product==="ReactNative")),zt=()=>{try{rr()&&Re();}catch{}};zt();var xt=0,Et=1;var vt=5;var Rt=11,Ut=13,or=14,Nt=15,qt=16;var Xt=19;var Ot=26,_t=27,Wt=28,Kt=30;var Zt=e=>{switch(e.tag){case vt:case Ot:case _t:return true;default:return typeof e.type=="string"}},Be=e=>{switch(e.tag){case Et:case Rt:case xt:case or:case Nt:return true;default:return false}};function ke(e,t,n=false){return e&&t(e)instanceof Promise?Qt(e,t,n):Jt(e,t,n)}var Jt=(e,t,n=false)=>{if(!e)return null;if(t(e)===true)return e;let r=n?e.return:e.child;for(;r;){let o=Jt(r,t,n);if(o)return o;r=n?null:r.sibling;}return null},Qt=async(e,t,n=false)=>{if(!e)return null;if(await t(e)===true)return e;let r=n?e.return:e.child;for(;r;){let o=await Qt(r,t,n);if(o)return o;r=n?null:r.sibling;}return null};var en=e=>{let t=e;return typeof t=="function"?t:typeof t=="object"&&t?en(t.type||t.render):null},Me=e=>{let t=e;if(typeof t=="string")return t;if(typeof t!="function"&&!(typeof t=="object"&&t))return null;let n=t.displayName||t.name||null;if(n)return n;let r=en(t);return r&&(r.displayName||r.name)||null};var tn=e=>{let t=e.alternate;if(!t)return e;if(t.actualStartTime&&e.actualStartTime)return t.actualStartTime>e.actualStartTime?t:e;for(let n of At){let r=ke(n.current,o=>{if(o===e)return true});if(r)return r}return e};var nn=e=>{let t=Re(e.onActive);t._instrumentationSource=e.name??tt;let n=t.onCommitFiberRoot;if(e.onCommitFiberRoot){let i=(s,a,l)=>{n!==i&&(n?.(s,a,l),e.onCommitFiberRoot?.(s,a,l));};t.onCommitFiberRoot=i;}let r=t.onCommitFiberUnmount;if(e.onCommitFiberUnmount){let i=(s,a)=>{t.onCommitFiberUnmount===i&&(r?.(s,a),e.onCommitFiberUnmount?.(s,a));};t.onCommitFiberUnmount=i;}let o=t.onPostCommitFiberRoot;if(e.onPostCommitFiberRoot){let i=(s,a)=>{t.onPostCommitFiberRoot===i&&(o?.(s,a),e.onPostCommitFiberRoot?.(s,a));};t.onPostCommitFiberRoot=i;}return t},je=e=>{let t=Re();for(let n of t.renderers.values())try{let r=n.findFiberByHostInstance?.(e);if(r)return r}catch{}if(typeof e=="object"&&e){if("_reactRootContainer"in e)return e._reactRootContainer?._internalRoot?.current?.child;for(let n in e)if(n.startsWith("__reactContainer$")||n.startsWith("__reactInternalInstance$")||n.startsWith("__reactFiber"))return e[n]||null}return null},At=new Set;var Go=Object.create,dr=Object.defineProperty,zo=Object.getOwnPropertyDescriptor,Uo=Object.getOwnPropertyNames,qo=Object.getPrototypeOf,Xo=Object.prototype.hasOwnProperty,Wo=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),Ko=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(var o=Uo(t),i=0,s=o.length,a;i<s;i++)a=o[i],!Xo.call(e,a)&&a!==n&&dr(e,a,{get:(l=>t[l]).bind(null,a),enumerable:!(r=zo(t,a))||r.enumerable});return e},Zo=(e,t,n)=>(n=e==null?{}:Go(qo(e)),Ko(dr(n,"default",{value:e,enumerable:true}),e)),Jo=()=>{let e=Re();for(let t of [...Array.from(He),...Array.from(e.renderers.values())]){let n=t.currentDispatcherRef;if(n&&typeof n=="object")return "H"in n?n.H:n.current}return null},ir=e=>{for(let t of He){let n=t.currentDispatcherRef;n&&typeof n=="object"&&("H"in n?n.H=e:n.current=e);}},Ne=e=>`
|
|
9
|
+
var no=(e,t)=>e===t;var ro=Symbol("solid-track"),ft={equals:no},In=Dn,me=1,Ke=2,kn={owned:null,cleanups:null,context:null,owner:null};var D=null,p=null,Ge=null,G=null,te=null,ie=null,mt=0;function De(e,t){let n=G,r=D,o=e.length===0,i=t===void 0?r:t,s=o?kn:{owned:null,cleanups:null,context:i?i.context:null,owner:i},a=o?e:()=>e(()=>ue(()=>Ae(s)));D=s,G=null;try{return ve(a,!0)}finally{G=n,D=r;}}function I(e,t){t=t?Object.assign({},ft,t):ft;let n={value:e,observers:null,observerSlots:null,comparator:t.equals||void 0},r=o=>(typeof o=="function"&&(o=o(n.value)),Ln(n,o));return [Pn.bind(n),r]}function fe(e,t,n){let r=Ht(e,t,false,me);Qe(r);}function se(e,t,n){In=lo;let r=Ht(e,t,false,me);(r.user=true),ie?ie.push(r):Qe(r);}function q(e,t,n){n=n?Object.assign({},ft,n):ft;let r=Ht(e,t,true,0);return r.observers=null,r.observerSlots=null,r.comparator=n.equals||void 0,Qe(r),Pn.bind(r)}function ue(e){if(G===null)return e();let t=G;G=null;try{return Ge?Ge.untrack(e):e()}finally{G=t;}}function Fe(e,t,n){let r=Array.isArray(e),o;return s=>{let a;if(r){a=Array(e.length);for(let f=0;f<e.length;f++)a[f]=e[f]();}else a=e();let l=ue(()=>t(a,o,s));return o=a,l}}function Mn(e){se(()=>ue(e));}function he(e){return D===null||(D.cleanups===null?D.cleanups=[e]:D.cleanups.push(e)),e}I(false);function Pn(){let e=p;if(this.sources&&(this.state))if((this.state)===me)Qe(this);else {let t=te;te=null,ve(()=>dt(this),false),te=t;}if(G){let t=this.observers?this.observers.length:0;G.sources?(G.sources.push(this),G.sourceSlots.push(t)):(G.sources=[this],G.sourceSlots=[t]),this.observers?(this.observers.push(G),this.observerSlots.push(G.sources.length-1)):(this.observers=[G],this.observerSlots=[G.sources.length-1]);}return e&&p.sources.has(this)?this.tValue:this.value}function Ln(e,t,n){let r=e.value;if(!e.comparator||!e.comparator(r,t)){e.value=t;e.observers&&e.observers.length&&ve(()=>{for(let o=0;o<e.observers.length;o+=1){let i=e.observers[o],s=p&&p.running;s&&p.disposed.has(i)||((s?!i.tState:!i.state)&&(i.pure?te.push(i):ie.push(i),i.observers&&Hn(i)),s?i.tState=me:i.state=me);}if(te.length>1e6)throw te=[],new Error},false);}return t}function Qe(e){if(!e.fn)return;Ae(e);let t=mt;An(e,e.value,t);}function An(e,t,n){let r,o=D,i=G;G=D=e;try{r=e.fn(t);}catch(s){return e.pure&&((e.state=me,e.owned&&e.owned.forEach(Ae),e.owned=null)),e.updatedAt=n+1,jt(s)}finally{G=i,D=o;}(!e.updatedAt||e.updatedAt<=n)&&(e.updatedAt!=null&&"observers"in e?Ln(e,r):e.value=r,e.updatedAt=n);}function Ht(e,t,n,r=me,o){let i={fn:e,state:r,updatedAt:null,owned:null,sources:null,sourceSlots:null,cleanups:null,value:t,owner:D,context:D?D.context:null,pure:n};if(D===null||D!==kn&&(D.owned?D.owned.push(i):D.owned=[i]),Ge);return i}function Ze(e){let t=p;if((e.state)===0)return;if((e.state)===Ke)return dt(e);if(e.suspense&&ue(e.suspense.inFallback))return e.suspense.effects.push(e);let n=[e];for(;(e=e.owner)&&(!e.updatedAt||e.updatedAt<mt);){(e.state)&&n.push(e);}for(let r=n.length-1;r>=0;r--){if(e=n[r],t);if((e.state)===me)Qe(e);else if((e.state)===Ke){let o=te;te=null,ve(()=>dt(e,n[0]),false),te=o;}}}function ve(e,t){if(te)return e();let n=false;t||(te=[]),ie?n=true:ie=[],mt++;try{let r=e();return so(n),r}catch(r){n||(ie=null),te=null,jt(r);}}function so(e){if(te&&(Dn(te),te=null),e)return;let n=ie;ie=null,n.length&&ve(()=>In(n),false);}function Dn(e){for(let t=0;t<e.length;t++)Ze(e[t]);}function lo(e){let t,n=0;for(t=0;t<e.length;t++){let r=e[t];r.user?e[n++]=r:Ze(r);}for(t=0;t<n;t++)Ze(e[t]);}function dt(e,t){e.state=0;for(let r=0;r<e.sources.length;r+=1){let o=e.sources[r];if(o.sources){let i=o.state;i===me?o!==t&&(!o.updatedAt||o.updatedAt<mt)&&Ze(o):i===Ke&&dt(o,t);}}}function Hn(e){for(let n=0;n<e.observers.length;n+=1){let r=e.observers[n];(!r.state)&&(r.state=Ke,r.pure?te.push(r):ie.push(r),r.observers&&Hn(r));}}function Ae(e){let t;if(e.sources)for(;e.sources.length;){let n=e.sources.pop(),r=e.sourceSlots.pop(),o=n.observers;if(o&&o.length){let i=o.pop(),s=n.observerSlots.pop();r<o.length&&(i.sourceSlots[s]=r,o[r]=i,n.observerSlots[r]=s);}}if(e.tOwned){for(t=e.tOwned.length-1;t>=0;t--)Ae(e.tOwned[t]);delete e.tOwned;}if(e.owned){for(t=e.owned.length-1;t>=0;t--)Ae(e.owned[t]);e.owned=null;}if(e.cleanups){for(t=e.cleanups.length-1;t>=0;t--)e.cleanups[t]();e.cleanups=null;}e.state=0;}function co(e){return e instanceof Error?e:new Error(typeof e=="string"?e:"Unknown error",{cause:e})}function jt(e,t=D){let r=co(e);throw r;}var uo=Symbol("fallback");function $n(e){for(let t=0;t<e.length;t++)e[t]();}function fo(e,t,n={}){let r=[],o=[],i=[],s=0,a=t.length>1?[]:null;return he(()=>$n(i)),()=>{let l=e()||[],f=l.length,d,m;return l[ro],ue(()=>{let C,T,R,_,O,S,$,N,P;if(f===0)s!==0&&($n(i),i=[],r=[],o=[],s=0,a&&(a=[])),n.fallback&&(r=[uo],o[0]=De(z=>(i[0]=z,n.fallback())),s=1);else if(s===0){for(o=new Array(f),m=0;m<f;m++)r[m]=l[m],o[m]=De(x);s=f;}else {for(R=new Array(f),_=new Array(f),a&&(O=new Array(f)),S=0,$=Math.min(s,f);S<$&&r[S]===l[S];S++);for($=s-1,N=f-1;$>=S&&N>=S&&r[$]===l[N];$--,N--)R[N]=o[$],_[N]=i[$],a&&(O[N]=a[$]);for(C=new Map,T=new Array(N+1),m=N;m>=S;m--)P=l[m],d=C.get(P),T[m]=d===void 0?-1:d,C.set(P,m);for(d=S;d<=$;d++)P=r[d],m=C.get(P),m!==void 0&&m!==-1?(R[m]=o[d],_[m]=i[d],a&&(O[m]=a[d]),m=T[m],C.set(P,m)):i[d]();for(m=S;m<f;m++)m in R?(o[m]=R[m],i[m]=_[m],a&&(a[m]=O[m],a[m](m))):o[m]=De(x);o=o.slice(0,s=f),r=l.slice(0);}return o});function x(C){if(i[m]=C,a){let[T,R]=I(m);return a[m]=R,t(l[m],T)}return t(l[m])}}}function k(e,t){return ue(()=>e(t||{}))}var ho=e=>`Stale read from <${e}>.`;function ht(e){let t="fallback"in e&&{fallback:()=>e.fallback};return q(fo(()=>e.each,e.children,t||void 0))}function J(e){let t=e.keyed,n=q(()=>e.when,void 0,void 0),r=t?n:q(n,void 0,{equals:(o,i)=>!o==!i});return q(()=>{let o=r();if(o){let i=e.children;return typeof i=="function"&&i.length>0?ue(()=>i(t?o:()=>{if(!ue(r))throw ho("Show");return n()})):i}return e.fallback},void 0,void 0)}var $e=e=>q(()=>e());function bo(e,t,n){let r=n.length,o=t.length,i=r,s=0,a=0,l=t[o-1].nextSibling,f=null;for(;s<o||a<i;){if(t[s]===n[a]){s++,a++;continue}for(;t[o-1]===n[i-1];)o--,i--;if(o===s){let d=i<r?a?n[a-1].nextSibling:n[i-a]:l;for(;a<i;)e.insertBefore(n[a++],d);}else if(i===a)for(;s<o;)(!f||!f.has(t[s]))&&t[s].remove(),s++;else if(t[s]===n[i-1]&&n[a]===t[o-1]){let d=t[--o].nextSibling;e.insertBefore(n[a++],t[s++].nextSibling),e.insertBefore(n[--i],d),t[o]=n[i];}else {if(!f){f=new Map;let m=a;for(;m<i;)f.set(n[m],m++);}let d=f.get(t[s]);if(d!=null)if(a<d&&d<i){let m=s,x=1,C;for(;++m<o&&m<i&&!((C=f.get(t[m]))==null||C!==d+x);)x++;if(x>d-a){let T=t[s];for(;a<d;)e.insertBefore(n[a++],T);}else e.replaceChild(n[a++],t[s++]);}else s++;else t[s++].remove();}}}function Vn(e,t,n,r={}){let o;return De(i=>{o=i,t===document?e():Te(t,e(),t.firstChild?null:void 0,n);},r.owner),()=>{o(),t.textContent="";}}function ae(e,t,n,r){let o,i=()=>{let a=document.createElement("template");return a.innerHTML=e,a.content.firstChild},s=()=>(o||(o=i())).cloneNode(true);return s.cloneNode=s,s}function yo(e,t,n){(e.removeAttribute(t));}function pt(e,t,n){if(!t)return n?yo(e,"style"):t;let r=e.style;if(typeof t=="string")return r.cssText=t;typeof n=="string"&&(r.cssText=n=void 0),n||(n={}),t||(t={});let o,i;for(i in n)t[i]==null&&r.removeProperty(i),delete n[i];for(i in t)o=t[i],o!==n[i]&&(r.setProperty(i,o),n[i]=o);return n}function we(e,t,n){n!=null?e.style.setProperty(t,n):e.style.removeProperty(t);}function Ie(e,t,n){return ue(()=>e(t,n))}function Te(e,t,n,r){if(n!==void 0&&!r&&(r=[]),typeof t!="function")return gt(e,t,r,n);fe(o=>gt(e,t(),o,n),r);}function gt(e,t,n,r,o){for(;typeof n=="function";)n=n();if(t===n)return n;let s=typeof t,a=r!==void 0;if(e=a&&n[0]&&n[0].parentNode||e,s==="string"||s==="number"){if(s==="number"&&(t=t.toString(),t===n))return n;if(a){let l=n[0];l&&l.nodeType===3?l.data!==t&&(l.data=t):l=document.createTextNode(t),n=ze(e,n,r,l);}else n!==""&&typeof n=="string"?n=e.firstChild.data=t:n=e.textContent=t;}else if(t==null||s==="boolean"){n=ze(e,n,r);}else {if(s==="function")return fe(()=>{let l=t();for(;typeof l=="function";)l=l();n=gt(e,l,n,r);}),()=>n;if(Array.isArray(t)){let l=[],f=n&&Array.isArray(n);if(Bt(l,t,n,o))return fe(()=>n=gt(e,l,n,r,true)),()=>n;if(l.length===0){if(n=ze(e,n,r),a)return n}else f?n.length===0?Bn(e,l,r):bo(e,n,l):(n&&ze(e),Bn(e,l));n=l;}else if(t.nodeType){if(Array.isArray(n)){if(a)return n=ze(e,n,r,t);ze(e,n,null,t);}else n==null||n===""||!e.firstChild?e.appendChild(t):e.replaceChild(t,e.firstChild);n=t;}}return n}function Bt(e,t,n,r){let o=false;for(let i=0,s=t.length;i<s;i++){let a=t[i],l=n&&n[e.length],f;if(!(a==null||a===true||a===false))if((f=typeof a)=="object"&&a.nodeType)e.push(a);else if(Array.isArray(a))o=Bt(e,a,l)||o;else if(f==="function")if(r){for(;typeof a=="function";)a=a();o=Bt(e,Array.isArray(a)?a:[a],Array.isArray(l)?l:[l])||o;}else e.push(a),o=true;else {let d=String(a);l&&l.nodeType===3&&l.data===d?e.push(l):e.push(document.createTextNode(d));}}return o}function Bn(e,t,n=null){for(let r=0,o=t.length;r<o;r++)e.insertBefore(t[r],n);}function ze(e,t,n,r){if(n===void 0)return e.textContent="";let o=r||document.createTextNode("");if(t.length){let i=false;for(let s=t.length-1;s>=0;s--){let a=t[s];if(o!==a){let l=a.parentNode===e;!i&&!s?l?e.replaceChild(o,a):e.insertBefore(o,n):l&&a.remove();}else i=true;}}else e.insertBefore(o,n);return [o]}var wo=["input","textarea","select","searchbox","slider","spinbutton","menuitem","menuitemcheckbox","menuitemradio","option","radio","textbox"],To=e=>!!e.tagName&&!e.tagName.startsWith("-")&&e.tagName.includes("-"),So=e=>Array.isArray(e),Co=(e,t=false)=>{let{composed:n,target:r}=e,o,i;if(r instanceof HTMLElement&&To(r)&&n){let a=e.composedPath()[0];a instanceof HTMLElement&&(o=a.tagName,i=a.role);}else r instanceof HTMLElement&&(o=r.tagName,i=r.role);return So(t)?!!(o&&t&&t.some(s=>typeof o=="string"&&s.toLowerCase()===o.toLowerCase()||s===i)):!!(o&&t&&t)},Gn=e=>Co(e,wo);var Ue="data-react-grab",zn=()=>{let e=document.querySelector(`[${Ue}]`);if(e){let i=e.shadowRoot?.querySelector(`[${Ue}]`);if(i instanceof HTMLDivElement&&e.shadowRoot)return i}let t=document.createElement("div");t.setAttribute(Ue,"true"),t.style.zIndex="2147483646",t.style.position="fixed",t.style.top="0",t.style.left="0";let n=t.attachShadow({mode:"open"}),r=document.createElement("div");return r.setAttribute(Ue,"true"),n.appendChild(r),(document.body??document.documentElement).appendChild(t),r};var pe=(e,t,n)=>e+(t-e)*n;var Eo=ae("<div>"),bt=e=>{let[t,n]=I(e.bounds.x),[r,o]=I(e.bounds.y),[i,s]=I(e.bounds.width),[a,l]=I(e.bounds.height),[f,d]=I(1),m=false,x=null,C=null,T=e.bounds,R=false,_=()=>e.lerpFactor!==void 0?e.lerpFactor:e.variant==="drag"?.7:.95,O=()=>{if(R)return;R=true;let N=()=>{let P=pe(t(),T.x,_()),z=pe(r(),T.y,_()),K=pe(i(),T.width,_()),y=pe(a(),T.height,_());n(P),o(z),s(K),l(y),Math.abs(P-T.x)<.5&&Math.abs(z-T.y)<.5&&Math.abs(K-T.width)<.5&&Math.abs(y-T.height)<.5?(x=null,R=false):x=requestAnimationFrame(N);};x=requestAnimationFrame(N);};se(Fe(()=>e.bounds,N=>{if(T=N,!m){n(T.x),o(T.y),s(T.width),l(T.height),m=true;return}O();})),se(()=>{e.variant==="grabbed"&&e.createdAt&&(C=window.setTimeout(()=>{d(0);},1500));}),he(()=>{x!==null&&(cancelAnimationFrame(x),x=null),C!==null&&(window.clearTimeout(C),C=null),R=false;});let S={position:"fixed","box-sizing":"border-box","pointer-events":e.variant==="drag"?"none":"auto","z-index":"2147483646"},$=()=>e.variant==="drag"?{border:"1px dashed rgba(210, 57, 192, 0.4)","background-color":"rgba(210, 57, 192, 0.05)","will-change":"transform, width, height",contain:"layout paint size",cursor:"crosshair"}:{border:"1px solid rgb(210, 57, 192)","background-color":"rgba(210, 57, 192, 0.2)",transition:e.variant==="grabbed"?"opacity 0.3s ease-out":void 0};return k(J,{get when(){return e.visible!==false},get children(){var N=Eo();return fe(P=>pt(N,{...S,...$(),top:`${r()}px`,left:`${t()}px`,width:`${i()}px`,height:`${a()}px`,"border-radius":e.bounds.borderRadius,transform:e.bounds.transform,opacity:f()},P)),N}})};var vo=ae('<span style="display:inline-block;width:8px;height:8px;border:1.5px solid rgb(210, 57, 192);border-top-color:transparent;border-radius:50%;margin-right:4px;vertical-align:middle">'),Un=e=>{let t;return Mn(()=>{t&&t.animate([{transform:"rotate(0deg)"},{transform:"rotate(360deg)"}],{duration:600,easing:"linear",iterations:1/0});}),(()=>{var n=vo(),r=t;return typeof r=="function"?Ie(r,n):t=n,fe(o=>pt(n,{...e.style},o)),n})()};var yt=(e,t,n,r)=>{let o=window.innerWidth,i=window.innerHeight,s=8,a=8,l=o-n-8,f=i-r-8,d=Math.max(s,Math.min(e,l)),m=Math.max(a,Math.min(t,f));return {left:d,top:m}};var Ro=ae("<span style=display:inline-block;margin-right:4px;font-weight:600>\u2713"),No=ae("<div style=margin-right:4px>Copied"),_o=ae(`<span style="font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;font-variant-numeric:tabular-nums;vertical-align:middle">`),Oo=ae("<span style=font-variant-numeric:tabular-nums;font-size:10px;margin-left:4px;vertical-align:middle>"),Ao=ae("<div style=margin-left:4px>to clipboard"),Fo=ae(`<div style="position:fixed;padding:2px 6px;background-color:#fde7f7;color:#b21c8e;border:1px solid #f7c5ec;border-radius:4px;font-size:11px;font-weight:500;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;pointer-events:none;transition:opacity 0.2s ease-in-out;display:flex;align-items:center;max-width:calc(100vw - (16px + env(safe-area-inset-left) + env(safe-area-inset-right)));overflow:hidden;text-overflow:ellipsis;white-space:nowrap">`),Vt=e=>{let[t,n]=I(0),[r,o]=I(0),i,s=e.x,a=e.y,l=e.x,f=e.y,d=null,m=false,x=()=>{s=pe(s,l,.3),a=pe(a,f,.3),o($=>$+1),Math.abs(s-l)<.5&&Math.abs(a-f)<.5?d=null:d=requestAnimationFrame(x);},C=()=>{d===null&&(d=requestAnimationFrame(x));},T=()=>{if(l=e.x,f=e.y,!m){s=l,a=f,m=true,o(S=>S+1);return}C();};se(Fe(()=>e.visible,S=>{if(S!==false)requestAnimationFrame(()=>{n(1);});else {n(0);return}if(e.variant==="success"){let $=setTimeout(()=>{n(0);},1700);he(()=>clearTimeout($));}})),se(()=>{T();}),he(()=>{d!==null&&(cancelAnimationFrame(d),d=null);});let R=()=>i?.getBoundingClientRect(),_=()=>{r();let S=R();if(!S)return {left:s,top:a};let $=window.innerWidth,N=window.innerHeight,P=[{left:Math.round(s)+14,top:Math.round(a)+14},{left:Math.round(s)-S.width-14,top:Math.round(a)+14},{left:Math.round(s)+14,top:Math.round(a)-S.height-14},{left:Math.round(s)-S.width-14,top:Math.round(a)-S.height-14}];for(let K of P){let y=K.left>=8&&K.left+S.width<=$-8,A=K.top>=8&&K.top+S.height<=N-8;if(y&&A)return K}let z=yt(P[0].left,P[0].top,S.width,S.height);return z.left+=4,z.top+=4,z},O=()=>{let $=e.text.indexOf(" in ");return $===-1?{primary:e.text,secondary:""}:{primary:e.text.slice(0,$),secondary:e.text.slice($)}};return k(J,{get when(){return e.visible!==false},get children(){var S=Fo(),$=i;return typeof $=="function"?Ie($,S):i=S,Te(S,k(J,{get when(){return e.variant==="processing"},get children(){return k(Un,{})}}),null),Te(S,k(J,{get when(){return e.variant==="success"},get children(){return Ro()}}),null),Te(S,k(J,{get when(){return e.variant==="success"},get children(){return No()}}),null),Te(S,k(J,{get when(){return e.variant==="processing"},children:"Grabbing\u2026"}),null),Te(S,k(J,{get when(){return e.variant!=="processing"},get children(){return [(()=>{var N=_o();return Te(N,()=>O().primary),N})(),k(J,{get when(){return $e(()=>e.variant==="hover")()&&O().secondary!==""},get children(){var N=Oo();return Te(N,()=>O().secondary),N}})]}}),null),Te(S,k(J,{get when(){return e.variant==="success"},get children(){return Ao()}}),null),fe(N=>{var P=`${_().top}px`,z=`${_().left}px`,K=e.zIndex?.toString()??"2147483647",y=t();return P!==N.e&&we(S,"top",N.e=P),z!==N.t&&we(S,"left",N.t=z),K!==N.a&&we(S,"z-index",N.a=K),y!==N.o&&we(S,"opacity",N.o=y),N},{e:void 0,t:void 0,a:void 0,o:void 0}),S}})};var $o=ae('<div style="position:fixed;z-index:2147483647;pointer-events:none;transition:opacity 0.1s ease-in-out"><div style="width:32px;height:2px;background-color:rgba(178, 28, 142, 0.2);border-radius:1px;overflow:hidden;position:relative"><div style="height:100%;background-color:#b21c8e;border-radius:1px;transition:width 0.05s cubic-bezier(0.165, 0.84, 0.44, 1)">'),Io=e=>{let[t,n]=I(0);return se(Fe(()=>e,r=>{r!==false?requestAnimationFrame(()=>{n(1);}):n(0);})),t},Xn=e=>{let t=Io(e.visible),n,r=()=>{let o=n?.getBoundingClientRect();if(!o)return {left:e.mouseX,top:e.mouseY};let i=window.innerHeight,s=e.mouseX-o.width/2,a=e.mouseY+14+o.height+8>i?e.mouseY-o.height-14:e.mouseY+14;return yt(s,a,o.width,o.height)};return k(J,{get when(){return e.visible!==false},get children(){var o=$o(),i=o.firstChild,s=i.firstChild,a=n;return typeof a=="function"?Ie(a,o):n=o,fe(l=>{var f=`${r().top}px`,d=`${r().left}px`,m=t(),x=`${Math.min(100,Math.max(0,e.progress*100))}%`;return f!==l.e&&we(o,"top",l.e=f),d!==l.t&&we(o,"left",l.t=d),m!==l.a&&we(o,"opacity",l.a=m),x!==l.o&&we(s,"width",l.o=x),l},{e:void 0,t:void 0,a:void 0,o:void 0}),o}})};var ko=ae("<canvas style=position:fixed;top:0;left:0;pointer-events:none;z-index:2147483645>"),Wn=e=>{let t,n=null,r=0,o=0,i=1,s=e.mouseX,a=e.mouseY,l=e.mouseX,f=e.mouseY,d=null,m=false,x=()=>{t&&(i=Math.max(window.devicePixelRatio||1,2),r=window.innerWidth,o=window.innerHeight,t.width=r*i,t.height=o*i,t.style.width=`${r}px`,t.style.height=`${o}px`,n=t.getContext("2d"),n&&n.scale(i,i));},C=()=>{n&&(n.clearRect(0,0,r,o),n.strokeStyle="rgba(210, 57, 192)",n.lineWidth=1,n.beginPath(),n.moveTo(s,0),n.lineTo(s,o),n.moveTo(0,a),n.lineTo(r,a),n.stroke());},T=()=>{s=pe(s,l,.3),a=pe(a,f,.3),C(),Math.abs(s-l)<.5&&Math.abs(a-f)<.5?d=null:d=requestAnimationFrame(T);},R=()=>{d===null&&(d=requestAnimationFrame(T));},_=()=>{if(l=e.mouseX,f=e.mouseY,!m){s=l,a=f,m=true,C();return}R();};return se(()=>{x(),C();let O=()=>{x(),C();};window.addEventListener("resize",O),he(()=>{window.removeEventListener("resize",O),d!==null&&(cancelAnimationFrame(d),d=null);});}),se(()=>{_();}),k(J,{get when(){return e.visible!==false},get children(){var O=ko(),S=t;return typeof S=="function"?Ie(S,O):t=O,O}})};var Kn=e=>[k(J,{get when(){return $e(()=>!!e.selectionVisible)()&&e.selectionBounds},get children(){return k(bt,{variant:"selection",get bounds(){return e.selectionBounds},get visible(){return e.selectionVisible}})}}),k(J,{get when(){return $e(()=>e.crosshairVisible===true&&e.mouseX!==void 0)()&&e.mouseY!==void 0},get children(){return k(Wn,{get mouseX(){return e.mouseX},get mouseY(){return e.mouseY},visible:true})}}),k(J,{get when(){return $e(()=>!!e.dragVisible)()&&e.dragBounds},get children(){return k(bt,{variant:"drag",get bounds(){return e.dragBounds},get visible(){return e.dragVisible}})}}),k(ht,{get each(){return e.grabbedBoxes??[]},children:t=>k(bt,{variant:"grabbed",get bounds(){return t.bounds},get createdAt(){return t.createdAt}})}),k(ht,{get each(){return e.successLabels??[]},children:t=>k(Vt,{variant:"success",get text(){return t.text},get x(){return e.mouseX??0},get y(){return e.mouseY??0}})}),k(J,{get when(){return $e(()=>!!(e.labelVisible&&e.labelVariant&&e.labelText&&e.labelX!==void 0))()&&e.labelY!==void 0},get children(){return k(Vt,{get variant(){return e.labelVariant},get text(){return e.labelText},get x(){return e.labelX},get y(){return e.labelY},get visible(){return e.labelVisible},get zIndex(){return e.labelZIndex}})}}),k(J,{get when(){return $e(()=>!!(e.progressVisible&&e.progress!==void 0&&e.mouseX!==void 0))()&&e.mouseY!==void 0},get children(){return k(Xn,{get progress(){return e.progress},get mouseX(){return e.mouseX},get mouseY(){return e.mouseY},get visible(){return e.progressVisible}})}})];var Qn="0.5.14",tt=`bippy-${Qn}`,Zn=Object.defineProperty,Mo=Object.prototype.hasOwnProperty,et=()=>{},er=e=>{try{Function.prototype.toString.call(e).indexOf("^_^")>-1&&setTimeout(()=>{throw Error("React is running in production mode, but dead code elimination has not been applied. Read how to correctly configure React for production: https://reactjs.org/link/perf-use-production-build")});}catch{}},Yt=(e=Re())=>"getFiberRoots"in e,tr=false,Jn,St=(e=Re())=>tr?true:(typeof e.inject=="function"&&(Jn=e.inject.toString()),!!Jn?.includes("(injected)")),Tt=new Set,He=new Set,nr=e=>{let t=new Map,n=0,r={_instrumentationIsActive:false,_instrumentationSource:tt,checkDCE:er,hasUnsupportedRendererAttached:false,inject(o){let i=++n;return t.set(i,o),He.add(o),r._instrumentationIsActive||(r._instrumentationIsActive=true,Tt.forEach(s=>s())),i},on:et,onCommitFiberRoot:et,onCommitFiberUnmount:et,onPostCommitFiberRoot:et,renderers:t,supportsFiber:true,supportsFlight:true};try{Zn(globalThis,"__REACT_DEVTOOLS_GLOBAL_HOOK__",{configurable:!0,enumerable:!0,get(){return r},set(s){if(s&&typeof s=="object"){let a=r.renderers;r=s,a.size>0&&(a.forEach((l,f)=>{He.add(l),s.renderers.set(f,l);}),Ct(e));}}});let o=window.hasOwnProperty,i=!1;Zn(window,"hasOwnProperty",{configurable:!0,value:function(...s){try{if(!i&&s[0]==="__REACT_DEVTOOLS_GLOBAL_HOOK__")return globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__=void 0,i=!0,-0}catch{}return o.apply(this,s)},writable:!0});}catch{Ct(e);}return r},Ct=e=>{e&&Tt.add(e);try{let t=globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!t)return;if(!t._instrumentationSource){t.checkDCE=er,t.supportsFiber=!0,t.supportsFlight=!0,t.hasUnsupportedRendererAttached=!1,t._instrumentationSource=tt,t._instrumentationIsActive=!1;let n=Yt(t);if(n||(t.on=et),t.renderers.size){t._instrumentationIsActive=!0,Tt.forEach(i=>i());return}let r=t.inject,o=St(t);o&&!n&&(tr=!0,t.inject({scheduleRefresh(){}})&&(t._instrumentationIsActive=!0)),t.inject=i=>{let s=r(i);return He.add(i),o&&t.renderers.set(s,i),t._instrumentationIsActive=!0,Tt.forEach(a=>a()),s};}(t.renderers.size||t._instrumentationIsActive||St())&&e?.();}catch{}},Gt=()=>Mo.call(globalThis,"__REACT_DEVTOOLS_GLOBAL_HOOK__"),Re=e=>Gt()?(Ct(e),globalThis.__REACT_DEVTOOLS_GLOBAL_HOOK__):nr(e),rr=()=>!!(typeof window<"u"&&(window.document?.createElement||window.navigator?.product==="ReactNative")),zt=()=>{try{rr()&&Re();}catch{}};zt();var xt=0,Et=1;var vt=5;var Rt=11,Ut=13,or=14,Nt=15,qt=16;var Xt=19;var _t=26,Ot=27,Wt=28,Kt=30;var Zt=e=>{switch(e.tag){case vt:case _t:case Ot:return true;default:return typeof e.type=="string"}},je=e=>{switch(e.tag){case Et:case Rt:case xt:case or:case Nt:return true;default:return false}};function ke(e,t,n=false){return e&&t(e)instanceof Promise?Qt(e,t,n):Jt(e,t,n)}var Jt=(e,t,n=false)=>{if(!e)return null;if(t(e)===true)return e;let r=n?e.return:e.child;for(;r;){let o=Jt(r,t,n);if(o)return o;r=n?null:r.sibling;}return null},Qt=async(e,t,n=false)=>{if(!e)return null;if(await t(e)===true)return e;let r=n?e.return:e.child;for(;r;){let o=await Qt(r,t,n);if(o)return o;r=n?null:r.sibling;}return null};var en=e=>{let t=e;return typeof t=="function"?t:typeof t=="object"&&t?en(t.type||t.render):null},Me=e=>{let t=e;if(typeof t=="string")return t;if(typeof t!="function"&&!(typeof t=="object"&&t))return null;let n=t.displayName||t.name||null;if(n)return n;let r=en(t);return r&&(r.displayName||r.name)||null};var tn=e=>{let t=e.alternate;if(!t)return e;if(t.actualStartTime&&e.actualStartTime)return t.actualStartTime>e.actualStartTime?t:e;for(let n of At){let r=ke(n.current,o=>{if(o===e)return true});if(r)return r}return e};var nn=e=>{let t=Re(e.onActive);t._instrumentationSource=e.name??tt;let n=t.onCommitFiberRoot;if(e.onCommitFiberRoot){let i=(s,a,l)=>{n!==i&&(n?.(s,a,l),e.onCommitFiberRoot?.(s,a,l));};t.onCommitFiberRoot=i;}let r=t.onCommitFiberUnmount;if(e.onCommitFiberUnmount){let i=(s,a)=>{t.onCommitFiberUnmount===i&&(r?.(s,a),e.onCommitFiberUnmount?.(s,a));};t.onCommitFiberUnmount=i;}let o=t.onPostCommitFiberRoot;if(e.onPostCommitFiberRoot){let i=(s,a)=>{t.onPostCommitFiberRoot===i&&(o?.(s,a),e.onPostCommitFiberRoot?.(s,a));};t.onPostCommitFiberRoot=i;}return t},Be=e=>{let t=Re();for(let n of t.renderers.values())try{let r=n.findFiberByHostInstance?.(e);if(r)return r}catch{}if(typeof e=="object"&&e){if("_reactRootContainer"in e)return e._reactRootContainer?._internalRoot?.current?.child;for(let n in e)if(n.startsWith("__reactContainer$")||n.startsWith("__reactInternalInstance$")||n.startsWith("__reactFiber"))return e[n]||null}return null},At=new Set;var Go=Object.create,dr=Object.defineProperty,zo=Object.getOwnPropertyDescriptor,Uo=Object.getOwnPropertyNames,qo=Object.getPrototypeOf,Xo=Object.prototype.hasOwnProperty,Wo=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),Ko=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(var o=Uo(t),i=0,s=o.length,a;i<s;i++)a=o[i],!Xo.call(e,a)&&a!==n&&dr(e,a,{get:(l=>t[l]).bind(null,a),enumerable:!(r=zo(t,a))||r.enumerable});return e},Zo=(e,t,n)=>(n=e==null?{}:Go(qo(e)),Ko(dr(n,"default",{value:e,enumerable:true}),e)),Jo=()=>{let e=Re();for(let t of [...Array.from(He),...Array.from(e.renderers.values())]){let n=t.currentDispatcherRef;if(n&&typeof n=="object")return "H"in n?n.H:n.current}return null},ir=e=>{for(let t of He){let n=t.currentDispatcherRef;n&&typeof n=="object"&&("H"in n?n.H=e:n.current=e);}},Ne=e=>`
|
|
10
10
|
in ${e}`,Qo=(e,t)=>{let n=Ne(e);return t&&(n+=` (at ${t})`),n},rn=false,on=(e,t)=>{if(!e||rn)return "";let n=Error.prepareStackTrace;Error.prepareStackTrace=void 0,rn=true;let r=Jo();ir(null);let o=console.error,i=console.warn;console.error=()=>{},console.warn=()=>{};try{let l={DetermineComponentFrameRoot(){let x;try{if(t){let C=function(){throw Error()};if(Object.defineProperty(C.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(C,[]);}catch(T){x=T;}Reflect.construct(e,[],C);}else {try{C.call();}catch(T){x=T;}e.call(C.prototype);}}else {try{throw Error()}catch(T){x=T;}let C=e();C&&typeof C.catch=="function"&&C.catch(()=>{});}}catch(C){if(C instanceof Error&&x instanceof Error&&typeof C.stack=="string")return [C.stack,x.stack]}return [null,null]}};l.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot",Object.getOwnPropertyDescriptor(l.DetermineComponentFrameRoot,"name")?.configurable&&Object.defineProperty(l.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});let[d,m]=l.DetermineComponentFrameRoot();if(d&&m){let x=d.split(`
|
|
11
11
|
`),C=m.split(`
|
|
12
12
|
`),T=0,R=0;for(;T<x.length&&!x[T].includes("DetermineComponentFrameRoot");)T++;for(;R<C.length&&!C[R].includes("DetermineComponentFrameRoot");)R++;if(T===x.length||R===C.length)for(T=x.length-1,R=C.length-1;T>=1&&R>=0&&x[T]!==C[R];)R--;for(;T>=1&&R>=0;T--,R--)if(x[T]!==C[R]){if(T!==1||R!==1)do if(T--,R--,R<0||x[T]!==C[R]){let _=`
|
|
13
|
-
${x[T].replace(" at new "," at ")}`,O=Me(e);return O&&_.includes("<anonymous>")&&(_=_.replace("<anonymous>",O)),_}while(T>=1&&R>=0);break}}}finally{rn=false,Error.prepareStackTrace=n,ir(r),console.error=o,console.warn=i;}let s=e?Me(e):"";return s?Ne(s):""},ei=(e,t)=>{let n=e.tag,r="";switch(n){case Wt:r=Ne("Activity");break;case Et:r=on(e.type,true);break;case Rt:r=on(e.type.render,false);break;case xt:case Nt:r=on(e.type,false);break;case vt:case
|
|
13
|
+
${x[T].replace(" at new "," at ")}`,O=Me(e);return O&&_.includes("<anonymous>")&&(_=_.replace("<anonymous>",O)),_}while(T>=1&&R>=0);break}}}finally{rn=false,Error.prepareStackTrace=n,ir(r),console.error=o,console.warn=i;}let s=e?Me(e):"";return s?Ne(s):""},ei=(e,t)=>{let n=e.tag,r="";switch(n){case Wt:r=Ne("Activity");break;case Et:r=on(e.type,true);break;case Rt:r=on(e.type.render,false);break;case xt:case Nt:r=on(e.type,false);break;case vt:case _t:case Ot:r=Ne(e.type);break;case qt:r=Ne("Lazy");break;case Ut:r=e.child!==t&&t!==null?Ne("Suspense Fallback"):Ne("Suspense");break;case Xt:r=Ne("SuspenseList");break;case Kt:r=Ne("ViewTransition");break;default:return ""}return r},ti=e=>{try{let t="",n=e,r=null;do{t+=ei(n,r);let o=n._debugInfo;if(o&&Array.isArray(o))for(let i=o.length-1;i>=0;i--){let s=o[i];typeof s.name=="string"&&(t+=Qo(s.name,s.env));}r=n,n=n.return;}while(n);return t}catch(t){return t instanceof Error?`
|
|
14
14
|
Error generating stack: ${t.message}
|
|
15
15
|
${t.stack}`:""}},ni=e=>{let t=Error.prepareStackTrace;Error.prepareStackTrace=void 0;let n=e;if(!n)return "";Error.prepareStackTrace=t,n.startsWith(`Error: react-stack-top-frame
|
|
16
16
|
`)&&(n=n.slice(29));let r=n.indexOf(`
|
|
@@ -18,17 +18,17 @@ ${t.stack}`:""}},ni=e=>{let t=Error.prepareStackTrace;Error.prepareStackTrace=vo
|
|
|
18
18
|
`,r)),r!==-1)n=n.slice(0,r);else return "";return n},ri=/(^|@)\S+:\d+/,mr=/^\s*at .*(\S+:\d+|\(native\))/m,oi=/^(eval@)?(\[native code\])?$/;var hr=(e,t)=>{if(t?.includeInElement!==false){let n=e.split(`
|
|
19
19
|
`),r=[];for(let o of n)if(/^\s*at\s+/.test(o)){let i=sr(o,void 0)[0];i&&r.push(i);}else if(/^\s*in\s+/.test(o)){let i=o.replace(/^\s*in\s+/,"").replace(/\s*\(at .*\)$/,"");r.push({function:i,raw:o});}else if(o.match(ri)){let i=ar(o,void 0)[0];i&&r.push(i);}return sn(r,t)}return e.match(mr)?sr(e,t):ar(e,t)},gr=e=>{if(!e.includes(":"))return [e,void 0,void 0];let t=/(.+?)(?::(\d+))?(?::(\d+))?$/,n=t.exec(e.replace(/[()]/g,""));return [n[1],n[2]||void 0,n[3]||void 0]},sn=(e,t)=>t&&t.slice!=null?Array.isArray(t.slice)?e.slice(t.slice[0],t.slice[1]):e.slice(0,t.slice):e;var sr=(e,t)=>sn(e.split(`
|
|
20
20
|
`).filter(r=>!!r.match(mr)),t).map(r=>{let o=r;o.includes("(eval ")&&(o=o.replace(/eval code/g,"eval").replace(/(\(eval at [^()]*)|(,.*$)/g,""));let i=o.replace(/^\s+/,"").replace(/\(eval code/g,"(").replace(/^.*?\s+/,""),s=i.match(/ (\(.+\)$)/);i=s?i.replace(s[0],""):i;let a=gr(s?s[1]:i),l=s&&i||void 0,f=["eval","<anonymous>"].includes(a[0])?void 0:a[0];return {function:l,file:f,line:a[1]?+a[1]:void 0,col:a[2]?+a[2]:void 0,raw:o}});var ar=(e,t)=>sn(e.split(`
|
|
21
|
-
`).filter(r=>!r.match(oi)),t).map(r=>{let o=r;if(o.includes(" > eval")&&(o=o.replace(/ line (\d+)(?: > eval line \d+)* > eval:\d+:\d+/g,":$1")),!o.includes("@")&&!o.includes(":"))return {function:o};{let i=/(([^\n\r"\u2028\u2029]*".[^\n\r"\u2028\u2029]*"[^\n\r@\u2028\u2029]*(?:@[^\n\r"\u2028\u2029]*"[^\n\r@\u2028\u2029]*)*(?:[\n\r\u2028\u2029][^@]*)?)?[^@]*)@/,s=o.match(i),a=s&&s[1]?s[1]:void 0,l=gr(o.replace(i,""));return {function:a,file:l[0],line:l[1]?+l[1]:void 0,col:l[2]?+l[2]:void 0,raw:o}}});var ii=Wo((e,t)=>{(function(n,r){typeof e=="object"&&t!==void 0?r(e):typeof define=="function"&&define.amd?define(["exports"],r):(n=typeof globalThis<"u"?globalThis:n||self,r(n.sourcemapCodec={}));})(void 0,function(n){let r=44,o=59,i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=new Uint8Array(64),a=new Uint8Array(128);for(let h=0;h<i.length;h++){let g=i.charCodeAt(h);s[h]=g,a[g]=h;}function l(h,g){let u=0,b=0,
|
|
22
|
-
`),r;for(let i=n.length-1;i>=0&&!r;i--){let s=n[i].match(ai);s&&(r=s[1]||s[2]);}if(!r)return null;let o=br.test(r);if(!(si.test(r)||o||r.startsWith("/"))){let i=e.split("/");i[i.length-1]=r,r=i.join("/");}return r},fi=e=>({file:e.file,mappings:(0, pr.decode)(e.mappings),names:e.names,sourceRoot:e.sourceRoot,sources:e.sources,sourcesContent:e.sourcesContent,version:3}),di=e=>{let t=e.sections.map(({map:r,offset:o})=>({map:{...r,mappings:(0, pr.decode)(r.mappings)},offset:o})),n=new Set;for(let r of t)for(let o of r.map.sources)n.add(o);return {file:e.file,mappings:[],names:[],sections:t,sourceRoot:void 0,sources:Array.from(n),sourcesContent:void 0,version:3}},cr=e=>{if(!e)return false;let t=e.trim();if(!t)return false;let n=t.match(br);if(!n)return true;let r=n[0].toLowerCase();return r==="http:"||r==="https:"},mi=async(e,t=fetch)=>{if(!cr(e))return null;let n;try{n=await(await t(e)).text();}catch{return null}if(!n)return null;let r=ui(e,n);if(!r||!cr(r))return null;try{let o=await t(r),i=await o.json();return "sections"in i?di(i):fi(i)}catch{return null}},hi=async(e,t=true,n)=>{if(t&&nt.has(e)){let i=nt.get(e);if(i==null)return null;if(li(i)){let s=i.deref();if(s)return s;nt.delete(e);}else return i}if(t&&Ft.has(e))return Ft.get(e);let r=mi(e,n);t&&Ft.set(e,r);let o=await r;return t&&Ft.delete(e),t&&(o===null?nt.set(e,null):nt.set(e,yr?new WeakRef(o):o)),o},ur=/^[a-zA-Z][a-zA-Z\d+\-.]*:/,gi=["rsc://","file:///","webpack://","node:","turbopack://","metro://"],fr="about://React/",pi=["<anonymous>","eval",""],bi=/\.(jsx|tsx|ts|js)$/,yi=/(\.min|bundle|chunk|vendor|vendors|runtime|polyfill|polyfills)\.(js|mjs|cjs)$|(chunk|bundle|vendor|vendors|runtime|polyfill|polyfills|framework|app|main|index)[-_.][A-Za-z0-9_-]{4,}\.(js|mjs|cjs)$|[\da-f]{8,}\.(js|mjs|cjs)$|[-_.][\da-f]{20,}\.(js|mjs|cjs)$|\/dist\/|\/build\/|\/.next\/|\/out\/|\/node_modules\/|\.webpack\.|\.vite\.|\.turbopack\./i,wi=/^\?[\w~.\-]+(?:=[^&#]*)?(?:&[\w~.\-]+(?:=[^&#]*)?)*$/,Ti=e=>e._debugStack instanceof Error&&typeof e._debugStack?.stack=="string",Si=e=>{let t=e._debugSource;return t?typeof t=="object"&&!!t&&"fileName"in t&&typeof t.fileName=="string"&&"lineNumber"in t&&typeof t.lineNumber=="number":false},Ci=async(e,t=true,n)=>{if(Si(e))return e._debugSource||null;let r=wr(e);return Tr(r,void 0,t,n)},wr=e=>Ti(e)?ni(e._debugStack.stack):ti(e),xi=async(e,t=true,n)=>{let r=await Tr(e,1,t,n);return !r||r.length===0?null:r[0]},Tr=async(e,t=1,n=true,r)=>{let o=hr(e,{slice:t??1}),i=[];for(let s of o){if(!s?.file)continue;let a=await hi(s.file,n,r);if(a&&typeof s.line=="number"&&typeof s.col=="number"){let l=ci(a,s.line,s.col);if(l){i.push(l);continue}}i.push({fileName:s.file,lineNumber:s.line,columnNumber:s.col,functionName:s.function});}return i},qe=e=>{if(!e||pi.includes(e))return "";let t=e;if(t.startsWith(fr)){let r=t.slice(fr.length),o=r.indexOf("/"),i=r.indexOf(":");t=o!==-1&&(i===-1||o<i)?r.slice(o+1):r;}for(let r of gi)if(t.startsWith(r)){t=t.slice(r.length),r==="file:///"&&(t=`/${t.replace(/^\/+/,"")}`);break}if(ur.test(t)){let r=t.match(ur);r&&(t=t.slice(r[0].length));}let n=t.indexOf("?");if(n!==-1){let r=t.slice(n);wi.test(r)&&(t=t.slice(0,n));}return t},an=e=>{let t=qe(e);return !(!t||!bi.test(t)||yi.test(t))},Ei=async(e,t=true,n)=>{let r=ke(e,s=>{if(Be(s))return true},true);if(r){let s=await Ci(r,t,n);if(s?.fileName){let a=qe(s.fileName);if(an(a))return {fileName:a,lineNumber:s.lineNumber,columnNumber:s.columnNumber,functionName:s.functionName}}}let o=hr(wr(e),{includeInElement:false}),i=null;for(;o.length;){let s=o.pop();if(!s||!s.raw||!s.file)continue;let a=await xi(s.raw,t,n);if(a)return {fileName:qe(a.fileName),lineNumber:a.lineNumber,columnNumber:a.columnNumber,functionName:a.functionName};i={fileName:qe(s.file),lineNumber:s.line,columnNumber:s.col,functionName:s.function};}return i},Sr=async(e,t=true,n)=>{let r=je(e);if(!r||!Zt(r))return null;let o=tn(r);return o?Ei(o,t,n):null};var vi=new Set(["role","name","aria-label","rel","href"]);function Ri(e,t){let n=vi.has(e);n||=e.startsWith("data-")&&rt(e);let r=rt(t)&&t.length<100;return r||=t.startsWith("#")&&rt(t.slice(1)),n&&r}function Ni(e){return rt(e)}function Oi(e){return rt(e)}function _i(e){return true}function xr(e,t){if(e.nodeType!==Node.ELEMENT_NODE)throw new Error("Can't generate CSS selector for non-element node type.");if(e.tagName.toLowerCase()==="html")return "html";let n={root:document.body,idName:Ni,className:Oi,tagName:_i,attr:Ri,timeoutMs:1e3,seedMinLength:3,optimizedMinLength:2,maxNumberOfPathChecks:1/0},r=new Date,o={...n,...t},i=ki(o.root,n),s,a=0;for(let f of Ai(e,o,i)){if(new Date().getTime()-r.getTime()>o.timeoutMs||a>=o.maxNumberOfPathChecks){let m=Ii(e,i);if(!m)throw new Error(`Timeout: Can't find a unique selector after ${o.timeoutMs}ms`);return ot(m)}if(a++,un(f,i)){s=f;break}}if(!s)throw new Error("Selector was not found.");let l=[...Rr(s,e,o,i,r)];return l.sort(ln),l.length>0?ot(l[0]):ot(s)}function*Ai(e,t,n){let r=[],o=[],i=e,s=0;for(;i&&i!==n;){let a=Fi(i,t);for(let l of a)l.level=s;if(r.push(a),i=i.parentElement,s++,o.push(...vr(r)),s>=t.seedMinLength){o.sort(ln);for(let l of o)yield l;o=[];}}o.sort(ln);for(let a of o)yield a;}function rt(e){if(/^[a-z\-]{3,}$/i.test(e)){let t=e.split(/-|[A-Z]/);for(let n of t)if(n.length<=2||/[^aeiou]{4,}/i.test(n))return false;return true}return false}function Fi(e,t){let n=[],r=e.getAttribute("id");r&&t.idName(r)&&n.push({name:"#"+CSS.escape(r),penalty:0});for(let s=0;s<e.classList.length;s++){let a=e.classList[s];t.className(a)&&n.push({name:"."+CSS.escape(a),penalty:1});}for(let s=0;s<e.attributes.length;s++){let a=e.attributes[s];t.attr(a.name,a.value)&&n.push({name:`[${CSS.escape(a.name)}="${CSS.escape(a.value)}"]`,penalty:2});}let o=e.tagName.toLowerCase();if(t.tagName(o)){n.push({name:o,penalty:5});let s=cn(e,o);s!==void 0&&n.push({name:Er(o,s),penalty:10});}let i=cn(e);return i!==void 0&&n.push({name:$i(o,i),penalty:50}),n}function ot(e){let t=e[0],n=t.name;for(let r=1;r<e.length;r++){let o=e[r].level||0;t.level===o-1?n=`${e[r].name} > ${n}`:n=`${e[r].name} ${n}`,t=e[r];}return n}function Cr(e){return e.map(t=>t.penalty).reduce((t,n)=>t+n,0)}function ln(e,t){return Cr(e)-Cr(t)}function cn(e,t){let n=e.parentNode;if(!n)return;let r=n.firstChild;if(!r)return;let o=0;for(;r&&(r.nodeType===Node.ELEMENT_NODE&&(t===void 0||r.tagName.toLowerCase()===t)&&o++,r!==e);)r=r.nextSibling;return o}function Ii(e,t){let n=0,r=e,o=[];for(;r&&r!==t;){let i=r.tagName.toLowerCase(),s=cn(r,i);if(s===void 0)return;o.push({name:Er(i,s),penalty:NaN,level:n}),r=r.parentElement,n++;}if(un(o,t))return o}function $i(e,t){return e==="html"?"html":`${e}:nth-child(${t})`}function Er(e,t){return e==="html"?"html":`${e}:nth-of-type(${t})`}function*vr(e,t=[]){if(e.length>0)for(let n of e[0])yield*vr(e.slice(1,e.length),t.concat(n));else yield t;}function ki(e,t){return e.nodeType===Node.DOCUMENT_NODE?e:e===t.root?e.ownerDocument:e}function un(e,t){let n=ot(e);switch(t.querySelectorAll(n).length){case 0:throw new Error(`Can't select any node with this selector: ${n}`);case 1:return true;default:return false}}function*Rr(e,t,n,r,o){if(e.length>2&&e.length>n.optimizedMinLength)for(let i=1;i<e.length-1;i++){if(new Date().getTime()-o.getTime()>n.timeoutMs)return;let a=[...e];a.splice(i,1),un(a,r)&&r.querySelector(ot(a))===t&&(yield a,yield*Rr(a,t,n,r,o));}}var It=e=>e.length>0&&/^[A-Z]/.test(e);nn({onCommitFiberRoot(e,t){At.add(t);}});var Mi=e=>xr(e),$t=(e,t)=>e.length>t?`${e.substring(0,t)}...`:e,Pi=e=>!It(e)||e.startsWith("_")||e.includes("Provider")&&e.includes("Context"),Nr=e=>{let t=je(e);if(!t)return null;let n=null;return ke(t,r=>{if(Be(r)){let o=Me(r);if(o&&!Pi(o))return n=o,true}return false},true),n},Or=async e=>{let t=await Sr(e);if(!t)return null;let n=qe(t.fileName);return an(n)?`${n}:${t.lineNumber}:${t.columnNumber}`:null},fn=async e=>{let t=new Set(["article","aside","footer","form","header","main","nav","section"]),n=y=>{let A=y.tagName.toLowerCase();if(t.has(A)||y.id)return true;if(y.className&&typeof y.className=="string"){let B=y.className.trim();if(B&&B.length>0)return true}return Array.from(y.attributes).some(B=>B.name.startsWith("data-"))},r=(y,A=10)=>{let B=[],h=y.parentElement,g=0;for(;h&&g<A&&h.tagName!=="BODY"&&!(n(h)&&(B.push(h),B.length>=3));)h=h.parentElement,g++;return B.reverse()},o=(y,A=false)=>{let B=y.tagName.toLowerCase(),h=[];if(y.id&&h.push(`id="${y.id}"`),y.className&&typeof y.className=="string"){let E=y.className.trim().split(/\s+/);if(E.length>0&&E[0]){let M=A?E.slice(0,3):E,j=$t(M.join(" "),30);h.push(`class="${j}"`);}}let g=Array.from(y.attributes).filter(E=>E.name.startsWith("data-")),u=A?g.slice(0,1):g;for(let E of u)h.push(`${E.name}="${$t(E.value,20)}"`);let b=y.getAttribute("aria-label");return b&&!A&&h.push(`aria-label="${$t(b,20)}"`),h.length>0?`<${B} ${h.join(" ")}>`:`<${B}>`},i=y=>`</${y.tagName.toLowerCase()}>`,s=y=>{let A=(y.textContent||"").trim().replace(/\s+/g," ");return $t(A,60)},a=y=>{if(y.id)return `#${y.id}`;if(y.className&&typeof y.className=="string"){let A=y.className.trim().split(/\s+/);if(A.length>0&&A[0])return `.${A[0]}`}return null},l=[],f=Mi(e);l.push(`- selector: ${f}`);let d=e.getBoundingClientRect();l.push(`- width: ${Math.round(d.width)}`),l.push(`- height: ${Math.round(d.height)}`),l.push("HTML snippet:"),l.push("```html");let m=r(e),x=m.map(y=>Nr(y)),C=Nr(e),T=await Promise.all(m.map(y=>Or(y))),R=await Or(e);for(let y=0;y<m.length;y++){let A=" ".repeat(y),B=x[y],h=T[y];B&&h&&(y===0||x[y-1]!==B)&&l.push(`${A}<${B} source="${h}">`),l.push(`${A}${o(m[y],true)}`);}let _=e.parentElement,O=-1;if(_){let y=Array.from(_.children);if(O=y.indexOf(e),O>0){let A=y[O-1];if(a(A)&&O<=2){let h=" ".repeat(m.length);l.push(`${h} ${o(A,true)}`),l.push(`${h} </${A.tagName.toLowerCase()}>`);}else if(O>0){let h=" ".repeat(m.length);l.push(`${h} ... (${O} element${O===1?"":"s"})`);}}}let S=" ".repeat(m.length),I=m.length>0?x[x.length-1]:null,N=C&&R&&C!==I;N&&l.push(`${S} <${C} used-at="${R}">`),l.push(`${S} <!-- IMPORTANT: selected element -->`);let L=s(e),U=e.children.length,K=`${S}${N?" ":" "}`;if(L&&U===0&&L.length<40?l.push(`${K}${o(e)}${L}${i(e)}`):(l.push(`${K}${o(e)}`),L&&l.push(`${K} ${L}`),U>0&&l.push(`${K} ... (${U} element${U===1?"":"s"})`),l.push(`${K}${i(e)}`)),N&&l.push(`${S} </${C}>`),_&&O>=0){let y=Array.from(_.children),A=y.length-O-1;if(A>0){let B=y[O+1];a(B)&&A<=2?(l.push(`${S} ${o(B,true)}`),l.push(`${S} </${B.tagName.toLowerCase()}>`)):l.push(`${S} ... (${A} element${A===1?"":"s"})`);}}for(let y=m.length-1;y>=0;y--){let A=" ".repeat(y);l.push(`${A}${i(m[y])}`);let B=x[y],h=T[y];B&&h&&(y===m.length-1||x[y+1]!==B)&&l.push(`${A}</${B}>`);}return l.push("```"),l.join(`
|
|
23
|
-
`)};var Li=()=>document.hasFocus()?new Promise(e=>setTimeout(e,50)):new Promise(e=>{let t=()=>{window.removeEventListener("focus",t),setTimeout(e,50);};window.addEventListener("focus",t),window.focus();}),
|
|
21
|
+
`).filter(r=>!r.match(oi)),t).map(r=>{let o=r;if(o.includes(" > eval")&&(o=o.replace(/ line (\d+)(?: > eval line \d+)* > eval:\d+:\d+/g,":$1")),!o.includes("@")&&!o.includes(":"))return {function:o};{let i=/(([^\n\r"\u2028\u2029]*".[^\n\r"\u2028\u2029]*"[^\n\r@\u2028\u2029]*(?:@[^\n\r"\u2028\u2029]*"[^\n\r@\u2028\u2029]*)*(?:[\n\r\u2028\u2029][^@]*)?)?[^@]*)@/,s=o.match(i),a=s&&s[1]?s[1]:void 0,l=gr(o.replace(i,""));return {function:a,file:l[0],line:l[1]?+l[1]:void 0,col:l[2]?+l[2]:void 0,raw:o}}});var ii=Wo((e,t)=>{(function(n,r){typeof e=="object"&&t!==void 0?r(e):typeof define=="function"&&define.amd?define(["exports"],r):(n=typeof globalThis<"u"?globalThis:n||self,r(n.sourcemapCodec={}));})(void 0,function(n){let r=44,o=59,i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=new Uint8Array(64),a=new Uint8Array(128);for(let h=0;h<i.length;h++){let g=i.charCodeAt(h);s[h]=g,a[g]=h;}function l(h,g){let u=0,b=0,v=0;do{let j=h.next();v=a[j],u|=(v&31)<<b,b+=5;}while(v&32);let M=u&1;return u>>>=1,M&&(u=-2147483648|-u),g+u}function f(h,g,u){let b=g-u;b=b<0?-b<<1|1:b<<1;do{let v=b&31;b>>>=5,b>0&&(v|=32),h.write(s[v]);}while(b>0);return g}function d(h,g){return h.pos>=g?false:h.peek()!==r}let m=1024*16,x=typeof TextDecoder<"u"?new TextDecoder:typeof Buffer<"u"?{decode(h){return Buffer.from(h.buffer,h.byteOffset,h.byteLength).toString()}}:{decode(h){let g="";for(let u=0;u<h.length;u++)g+=String.fromCharCode(h[u]);return g}};class C{constructor(){this.pos=0,this.out="",this.buffer=new Uint8Array(m);}write(g){let{buffer:u}=this;u[this.pos++]=g,this.pos===m&&(this.out+=x.decode(u),this.pos=0);}flush(){let{buffer:g,out:u,pos:b}=this;return b>0?u+x.decode(g.subarray(0,b)):u}}class T{constructor(g){this.pos=0,this.buffer=g;}next(){return this.buffer.charCodeAt(this.pos++)}peek(){return this.buffer.charCodeAt(this.pos)}indexOf(g){let{buffer:u,pos:b}=this,v=u.indexOf(g,b);return v===-1?u.length:v}}let R=[];function _(h){let{length:g}=h,u=new T(h),b=[],v=[],M=0;for(;u.pos<g;u.pos++){M=l(u,M);let j=l(u,0);if(!d(u,g)){let X=v.pop();X[2]=M,X[3]=j;continue}let B=l(u,0),Z=l(u,0),U=Z&1,V=U?[M,j,0,0,B,l(u,0)]:[M,j,0,0,B],Q=R;if(d(u,g)){Q=[];do{let X=l(u,0);Q.push(X);}while(d(u,g))}V.vars=Q,b.push(V),v.push(V);}return b}function O(h){let g=new C;for(let u=0;u<h.length;)u=S(h,u,g,[0]);return g.flush()}function S(h,g,u,b){let v=h[g],{0:M,1:j,2:B,3:Z,4:U,vars:V}=v;g>0&&u.write(r),b[0]=f(u,M,b[0]),f(u,j,0),f(u,U,0);let Q=v.length===6?1:0;f(u,Q,0),v.length===6&&f(u,v[5],0);for(let X of V)f(u,X,0);for(g++;g<h.length;){let X=h[g],{0:F,1:W}=X;if(F>B||F===B&&W>=Z)break;g=S(h,g,u,b);}return u.write(r),b[0]=f(u,B,b[0]),f(u,Z,0),g}function $(h){let{length:g}=h,u=new T(h),b=[],v=[],M=0,j=0,B=0,Z=0,U=0,V=0,Q=0,X=0;do{let F=u.indexOf(";"),W=0;for(;u.pos<F;u.pos++){if(W=l(u,W),!d(u,F)){let le=v.pop();le[2]=M,le[3]=W;continue}let re=l(u,0),de=re&1,ne=re&2,ce=re&4,Ce=null,ye=R,xe;if(de){let le=l(u,j);B=l(u,j===le?B:0),j=le,xe=[M,W,0,0,le,B];}else xe=[M,W,0,0];if(xe.isScope=!!ce,ne){let le=Z,Ee=U;Z=l(u,Z);let Oe=le===Z;U=l(u,Oe?U:0),V=l(u,Oe&&Ee===U?V:0),Ce=[Z,U,V];}if(xe.callsite=Ce,d(u,F)){ye=[];do{Q=M,X=W;let le=l(u,0),Ee;if(le<-1){Ee=[[l(u,0)]];for(let Oe=-1;Oe>le;Oe--){let st=Q;Q=l(u,Q),X=l(u,Q===st?X:0);let at=l(u,0);Ee.push([at,Q,X]);}}else Ee=[[le]];ye.push(Ee);}while(d(u,F))}xe.bindings=ye,b.push(xe),v.push(xe);}M++,u.pos=F+1;}while(u.pos<g);return b}function N(h){if(h.length===0)return "";let g=new C;for(let u=0;u<h.length;)u=P(h,u,g,[0,0,0,0,0,0,0]);return g.flush()}function P(h,g,u,b){let v=h[g],{0:M,1:j,2:B,3:Z,isScope:U,callsite:V,bindings:Q}=v;b[0]<M?(z(u,b[0],M),b[0]=M,b[1]=0):g>0&&u.write(r),b[1]=f(u,v[1],b[1]);let X=(v.length===6?1:0)|(V?2:0)|(U?4:0);if(f(u,X,0),v.length===6){let{4:F,5:W}=v;F!==b[2]&&(b[3]=0),b[2]=f(u,F,b[2]),b[3]=f(u,W,b[3]);}if(V){let{0:F,1:W,2:re}=v.callsite;F===b[4]?W!==b[5]&&(b[6]=0):(b[5]=0,b[6]=0),b[4]=f(u,F,b[4]),b[5]=f(u,W,b[5]),b[6]=f(u,re,b[6]);}if(Q)for(let F of Q){F.length>1&&f(u,-F.length,0);let W=F[0][0];f(u,W,0);let re=M,de=j;for(let ne=1;ne<F.length;ne++){let ce=F[ne];re=f(u,ce[1],re),de=f(u,ce[2],de),f(u,ce[0],0);}}for(g++;g<h.length;){let F=h[g],{0:W,1:re}=F;if(W>B||W===B&&re>=Z)break;g=P(h,g,u,b);}return b[0]<B?(z(u,b[0],B),b[0]=B,b[1]=0):u.write(r),b[1]=f(u,Z,b[1]),g}function z(h,g,u){do h.write(o);while(++g<u)}function K(h){let{length:g}=h,u=new T(h),b=[],v=0,M=0,j=0,B=0,Z=0;do{let U=u.indexOf(";"),V=[],Q=true,X=0;for(v=0;u.pos<U;){let F;v=l(u,v),v<X&&(Q=false),X=v,d(u,U)?(M=l(u,M),j=l(u,j),B=l(u,B),d(u,U)?(Z=l(u,Z),F=[v,M,j,B,Z]):F=[v,M,j,B]):F=[v],V.push(F),u.pos++;}Q||y(V),b.push(V),u.pos=U+1;}while(u.pos<=g);return b}function y(h){h.sort(A);}function A(h,g){return h[0]-g[0]}function L(h){let g=new C,u=0,b=0,v=0,M=0;for(let j=0;j<h.length;j++){let B=h[j];if(j>0&&g.write(o),B.length===0)continue;let Z=0;for(let U=0;U<B.length;U++){let V=B[U];U>0&&g.write(r),Z=f(g,V[0],Z),V.length!==1&&(u=f(g,V[1],u),b=f(g,V[2],b),v=f(g,V[3],v),V.length!==4&&(M=f(g,V[4],M)));}}return g.flush()}n.decode=K,n.decodeGeneratedRanges=$,n.decodeOriginalScopes=_,n.encode=L,n.encodeGeneratedRanges=N,n.encodeOriginalScopes=O,Object.defineProperty(n,"__esModule",{value:true});});}),pr=Zo(ii()),br=/^[a-zA-Z][a-zA-Z\d+\-.]*:/,si=/^data:application\/json[^,]+base64,/,ai=/(?:\/\/[@#][ \t]+sourceMappingURL=([^\s'"]+?)[ \t]*$)|(?:\/\*[@#][ \t]+sourceMappingURL=([^*]+?)[ \t]*(?:\*\/)[ \t]*$)/,yr=typeof WeakRef<"u",nt=new Map,Ft=new Map,li=e=>yr&&e instanceof WeakRef,lr=(e,t,n,r)=>{if(n<0||n>=e.length)return null;let o=e[n];if(!o||o.length===0)return null;let i=null;for(let d of o)if(d[0]<=r)i=d;else break;if(!i||i.length<4)return null;let[,s,a,l]=i;if(s===void 0||a===void 0||l===void 0)return null;let f=t[s];return f?{columnNumber:l,fileName:f,lineNumber:a+1}:null},ci=(e,t,n)=>{if(e.sections){let r=null;for(let s of e.sections)if(t>s.offset.line||t===s.offset.line&&n>=s.offset.column)r=s;else break;if(!r)return null;let o=t-r.offset.line,i=t===r.offset.line?n-r.offset.column:n;return lr(r.map.mappings,r.map.sources,o,i)}return lr(e.mappings,e.sources,t-1,n)},ui=(e,t)=>{let n=t.split(`
|
|
22
|
+
`),r;for(let i=n.length-1;i>=0&&!r;i--){let s=n[i].match(ai);s&&(r=s[1]||s[2]);}if(!r)return null;let o=br.test(r);if(!(si.test(r)||o||r.startsWith("/"))){let i=e.split("/");i[i.length-1]=r,r=i.join("/");}return r},fi=e=>({file:e.file,mappings:(0, pr.decode)(e.mappings),names:e.names,sourceRoot:e.sourceRoot,sources:e.sources,sourcesContent:e.sourcesContent,version:3}),di=e=>{let t=e.sections.map(({map:r,offset:o})=>({map:{...r,mappings:(0, pr.decode)(r.mappings)},offset:o})),n=new Set;for(let r of t)for(let o of r.map.sources)n.add(o);return {file:e.file,mappings:[],names:[],sections:t,sourceRoot:void 0,sources:Array.from(n),sourcesContent:void 0,version:3}},cr=e=>{if(!e)return false;let t=e.trim();if(!t)return false;let n=t.match(br);if(!n)return true;let r=n[0].toLowerCase();return r==="http:"||r==="https:"},mi=async(e,t=fetch)=>{if(!cr(e))return null;let n;try{n=await(await t(e)).text();}catch{return null}if(!n)return null;let r=ui(e,n);if(!r||!cr(r))return null;try{let o=await t(r),i=await o.json();return "sections"in i?di(i):fi(i)}catch{return null}},hi=async(e,t=true,n)=>{if(t&&nt.has(e)){let i=nt.get(e);if(i==null)return null;if(li(i)){let s=i.deref();if(s)return s;nt.delete(e);}else return i}if(t&&Ft.has(e))return Ft.get(e);let r=mi(e,n);t&&Ft.set(e,r);let o=await r;return t&&Ft.delete(e),t&&(o===null?nt.set(e,null):nt.set(e,yr?new WeakRef(o):o)),o},ur=/^[a-zA-Z][a-zA-Z\d+\-.]*:/,gi=["rsc://","file:///","webpack://","node:","turbopack://","metro://"],fr="about://React/",pi=["<anonymous>","eval",""],bi=/\.(jsx|tsx|ts|js)$/,yi=/(\.min|bundle|chunk|vendor|vendors|runtime|polyfill|polyfills)\.(js|mjs|cjs)$|(chunk|bundle|vendor|vendors|runtime|polyfill|polyfills|framework|app|main|index)[-_.][A-Za-z0-9_-]{4,}\.(js|mjs|cjs)$|[\da-f]{8,}\.(js|mjs|cjs)$|[-_.][\da-f]{20,}\.(js|mjs|cjs)$|\/dist\/|\/build\/|\/.next\/|\/out\/|\/node_modules\/|\.webpack\.|\.vite\.|\.turbopack\./i,wi=/^\?[\w~.\-]+(?:=[^&#]*)?(?:&[\w~.\-]+(?:=[^&#]*)?)*$/,Ti=e=>e._debugStack instanceof Error&&typeof e._debugStack?.stack=="string",Si=e=>{let t=e._debugSource;return t?typeof t=="object"&&!!t&&"fileName"in t&&typeof t.fileName=="string"&&"lineNumber"in t&&typeof t.lineNumber=="number":false},Ci=async(e,t=true,n)=>{if(Si(e))return e._debugSource||null;let r=wr(e);return Tr(r,void 0,t,n)},wr=e=>Ti(e)?ni(e._debugStack.stack):ti(e),xi=async(e,t=true,n)=>{let r=await Tr(e,1,t,n);return !r||r.length===0?null:r[0]},Tr=async(e,t=1,n=true,r)=>{let o=hr(e,{slice:t??1}),i=[];for(let s of o){if(!s?.file)continue;let a=await hi(s.file,n,r);if(a&&typeof s.line=="number"&&typeof s.col=="number"){let l=ci(a,s.line,s.col);if(l){i.push(l);continue}}i.push({fileName:s.file,lineNumber:s.line,columnNumber:s.col,functionName:s.function});}return i},qe=e=>{if(!e||pi.includes(e))return "";let t=e;if(t.startsWith(fr)){let r=t.slice(fr.length),o=r.indexOf("/"),i=r.indexOf(":");t=o!==-1&&(i===-1||o<i)?r.slice(o+1):r;}for(let r of gi)if(t.startsWith(r)){t=t.slice(r.length),r==="file:///"&&(t=`/${t.replace(/^\/+/,"")}`);break}if(ur.test(t)){let r=t.match(ur);r&&(t=t.slice(r[0].length));}let n=t.indexOf("?");if(n!==-1){let r=t.slice(n);wi.test(r)&&(t=t.slice(0,n));}return t},an=e=>{let t=qe(e);return !(!t||!bi.test(t)||yi.test(t))},Ei=async(e,t=true,n)=>{let r=ke(e,s=>{if(je(s))return true},true);if(r){let s=await Ci(r,t,n);if(s?.fileName){let a=qe(s.fileName);if(an(a))return {fileName:a,lineNumber:s.lineNumber,columnNumber:s.columnNumber,functionName:s.functionName}}}let o=hr(wr(e),{includeInElement:false}),i=null;for(;o.length;){let s=o.pop();if(!s||!s.raw||!s.file)continue;let a=await xi(s.raw,t,n);if(a)return {fileName:qe(a.fileName),lineNumber:a.lineNumber,columnNumber:a.columnNumber,functionName:a.functionName};i={fileName:qe(s.file),lineNumber:s.line,columnNumber:s.col,functionName:s.function};}return i},Sr=async(e,t=true,n)=>{let r=Be(e);if(!r||!Zt(r))return null;let o=tn(r);return o?Ei(o,t,n):null};var vi=new Set(["role","name","aria-label","rel","href"]);function Ri(e,t){let n=vi.has(e);n||=e.startsWith("data-")&&rt(e);let r=rt(t)&&t.length<100;return r||=t.startsWith("#")&&rt(t.slice(1)),n&&r}function Ni(e){return rt(e)}function _i(e){return rt(e)}function Oi(e){return true}function xr(e,t){if(e.nodeType!==Node.ELEMENT_NODE)throw new Error("Can't generate CSS selector for non-element node type.");if(e.tagName.toLowerCase()==="html")return "html";let n={root:document.body,idName:Ni,className:_i,tagName:Oi,attr:Ri,timeoutMs:1e3,seedMinLength:3,optimizedMinLength:2,maxNumberOfPathChecks:1/0},r=new Date,o={...n,...t},i=ki(o.root,n),s,a=0;for(let f of Ai(e,o,i)){if(new Date().getTime()-r.getTime()>o.timeoutMs||a>=o.maxNumberOfPathChecks){let m=$i(e,i);if(!m)throw new Error(`Timeout: Can't find a unique selector after ${o.timeoutMs}ms`);return ot(m)}if(a++,un(f,i)){s=f;break}}if(!s)throw new Error("Selector was not found.");let l=[...Rr(s,e,o,i,r)];return l.sort(ln),l.length>0?ot(l[0]):ot(s)}function*Ai(e,t,n){let r=[],o=[],i=e,s=0;for(;i&&i!==n;){let a=Fi(i,t);for(let l of a)l.level=s;if(r.push(a),i=i.parentElement,s++,o.push(...vr(r)),s>=t.seedMinLength){o.sort(ln);for(let l of o)yield l;o=[];}}o.sort(ln);for(let a of o)yield a;}function rt(e){if(/^[a-z\-]{3,}$/i.test(e)){let t=e.split(/-|[A-Z]/);for(let n of t)if(n.length<=2||/[^aeiou]{4,}/i.test(n))return false;return true}return false}function Fi(e,t){let n=[],r=e.getAttribute("id");r&&t.idName(r)&&n.push({name:"#"+CSS.escape(r),penalty:0});for(let s=0;s<e.classList.length;s++){let a=e.classList[s];t.className(a)&&n.push({name:"."+CSS.escape(a),penalty:1});}for(let s=0;s<e.attributes.length;s++){let a=e.attributes[s];t.attr(a.name,a.value)&&n.push({name:`[${CSS.escape(a.name)}="${CSS.escape(a.value)}"]`,penalty:2});}let o=e.tagName.toLowerCase();if(t.tagName(o)){n.push({name:o,penalty:5});let s=cn(e,o);s!==void 0&&n.push({name:Er(o,s),penalty:10});}let i=cn(e);return i!==void 0&&n.push({name:Ii(o,i),penalty:50}),n}function ot(e){let t=e[0],n=t.name;for(let r=1;r<e.length;r++){let o=e[r].level||0;t.level===o-1?n=`${e[r].name} > ${n}`:n=`${e[r].name} ${n}`,t=e[r];}return n}function Cr(e){return e.map(t=>t.penalty).reduce((t,n)=>t+n,0)}function ln(e,t){return Cr(e)-Cr(t)}function cn(e,t){let n=e.parentNode;if(!n)return;let r=n.firstChild;if(!r)return;let o=0;for(;r&&(r.nodeType===Node.ELEMENT_NODE&&(t===void 0||r.tagName.toLowerCase()===t)&&o++,r!==e);)r=r.nextSibling;return o}function $i(e,t){let n=0,r=e,o=[];for(;r&&r!==t;){let i=r.tagName.toLowerCase(),s=cn(r,i);if(s===void 0)return;o.push({name:Er(i,s),penalty:NaN,level:n}),r=r.parentElement,n++;}if(un(o,t))return o}function Ii(e,t){return e==="html"?"html":`${e}:nth-child(${t})`}function Er(e,t){return e==="html"?"html":`${e}:nth-of-type(${t})`}function*vr(e,t=[]){if(e.length>0)for(let n of e[0])yield*vr(e.slice(1,e.length),t.concat(n));else yield t;}function ki(e,t){return e.nodeType===Node.DOCUMENT_NODE?e:e===t.root?e.ownerDocument:e}function un(e,t){let n=ot(e);switch(t.querySelectorAll(n).length){case 0:throw new Error(`Can't select any node with this selector: ${n}`);case 1:return true;default:return false}}function*Rr(e,t,n,r,o){if(e.length>2&&e.length>n.optimizedMinLength)for(let i=1;i<e.length-1;i++){if(new Date().getTime()-o.getTime()>n.timeoutMs)return;let a=[...e];a.splice(i,1),un(a,r)&&r.querySelector(ot(a))===t&&(yield a,yield*Rr(a,t,n,r,o));}}var $t=e=>e.length>0&&/^[A-Z]/.test(e);nn({onCommitFiberRoot(e,t){At.add(t);}});var Mi=e=>xr(e),It=(e,t)=>e.length>t?`${e.substring(0,t)}...`:e,Pi=e=>!$t(e)||e.startsWith("_")||e.includes("Provider")&&e.includes("Context"),Nr=e=>{let t=Be(e);if(!t)return null;let n=null;return ke(t,r=>{if(je(r)){let o=Me(r);if(o&&!Pi(o))return n=o,true}return false},true),n},_r=async e=>{let t=await Sr(e);if(!t)return null;let n=qe(t.fileName);if(an(n))return `${n}:${t.lineNumber}:${t.columnNumber}`;if(n&&(n.includes(".tsx")||n.includes(".ts")||n.includes(".jsx")||n.includes(".js"))){let r=n.replace(/^webpack:\/\/_N_E\//,"").replace(/^webpack:\/\/\//,"").replace(/^webpack:\/\//,"").replace(/^\.\//,"");if(r&&!r.startsWith("node_modules")&&!r.includes(".next")&&!r.startsWith("webpack"))return `${r}:${t.lineNumber}:${t.columnNumber}`}return null},fn=async e=>{let t=new Set(["article","aside","footer","form","header","main","nav","section"]),n=y=>{let A=y.tagName.toLowerCase();if(t.has(A)||y.id)return true;if(y.className&&typeof y.className=="string"){let L=y.className.trim();if(L&&L.length>0)return true}return Array.from(y.attributes).some(L=>L.name.startsWith("data-"))},r=(y,A=10)=>{let L=[],h=y.parentElement,g=0;for(;h&&g<A&&h.tagName!=="BODY"&&!(n(h)&&(L.push(h),L.length>=3));)h=h.parentElement,g++;return L.reverse()},o=(y,A=false)=>{let L=y.tagName.toLowerCase(),h=[];if(y.id&&h.push(`id="${y.id}"`),y.className&&typeof y.className=="string"){let v=y.className.trim().split(/\s+/);if(v.length>0&&v[0]){let M=A?v.slice(0,3):v,j=It(M.join(" "),30);h.push(`class="${j}"`);}}let g=Array.from(y.attributes).filter(v=>v.name.startsWith("data-")),u=A?g.slice(0,1):g;for(let v of u)h.push(`${v.name}="${It(v.value,20)}"`);let b=y.getAttribute("aria-label");return b&&!A&&h.push(`aria-label="${It(b,20)}"`),h.length>0?`<${L} ${h.join(" ")}>`:`<${L}>`},i=y=>`</${y.tagName.toLowerCase()}>`,s=y=>{let A=(y.textContent||"").trim().replace(/\s+/g," ");return It(A,60)},a=y=>{if(y.id)return `#${y.id}`;if(y.className&&typeof y.className=="string"){let A=y.className.trim().split(/\s+/);if(A.length>0&&A[0])return `.${A[0]}`}return null},l=[],f=Mi(e);l.push(`- selector: ${f}`);let d=e.getBoundingClientRect();l.push(`- width: ${Math.round(d.width)}`),l.push(`- height: ${Math.round(d.height)}`),l.push("HTML snippet:"),l.push("```html");let m=r(e),x=m.map(y=>Nr(y)),C=Nr(e),T=await Promise.all(m.map(y=>_r(y))),R=await _r(e);for(let y=0;y<m.length;y++){let A=" ".repeat(y),L=x[y],h=T[y];L&&h&&(y===0||x[y-1]!==L)&&l.push(`${A}<${L} source="${h}">`),l.push(`${A}${o(m[y],true)}`);}let _=e.parentElement,O=-1;if(_){let y=Array.from(_.children);if(O=y.indexOf(e),O>0){let A=" ".repeat(m.length);if(O<=2)for(let L=0;L<O;L++){let h=y[L];a(h)&&(l.push(`${A} ${o(h,true)}`),l.push(`${A} </${h.tagName.toLowerCase()}>`));}else l.push(`${A} ... (${O} element${O===1?"":"s"})`);}}let S=" ".repeat(m.length),$=m.length>0?x[x.length-1]:null,N=C&&R&&C!==$;N&&l.push(`${S} <${C} used-at="${R}">`),l.push(`${S} <!-- IMPORTANT: selected element -->`);let P=s(e),z=e.children.length,K=`${S}${N?" ":" "}`;if(P&&z===0&&P.length<40?l.push(`${K}${o(e)}${P}${i(e)}`):(l.push(`${K}${o(e)}`),P&&l.push(`${K} ${P}`),z>0&&l.push(`${K} ... (${z} element${z===1?"":"s"})`),l.push(`${K}${i(e)}`)),N&&l.push(`${S} </${C}>`),_&&O>=0){let y=Array.from(_.children),A=y.length-O-1;if(A>0)if(A<=2)for(let L=O+1;L<y.length;L++){let h=y[L];a(h)&&(l.push(`${S} ${o(h,true)}`),l.push(`${S} </${h.tagName.toLowerCase()}>`));}else l.push(`${S} ... (${A} element${A===1?"":"s"})`);}for(let y=m.length-1;y>=0;y--){let A=" ".repeat(y);l.push(`${A}${i(m[y])}`);let L=x[y],h=T[y];L&&h&&(y===m.length-1||x[y+1]!==L)&&l.push(`${A}</${L}>`);}return l.push("```"),l.join(`
|
|
23
|
+
`)};var Li=()=>document.hasFocus()?new Promise(e=>setTimeout(e,50)):new Promise(e=>{let t=()=>{window.removeEventListener("focus",t),setTimeout(e,50);};window.addEventListener("focus",t),window.focus();}),_e=async(e,t)=>{await Li();try{if(Array.isArray(e)){if(!navigator?.clipboard?.write){for(let r of e)if(typeof r=="string"){let o=kt(r,t);if(!o)return o}return t?.(),!0}let n=new Map;for(let r of e)if(r instanceof Blob){let o=r.type||"text/plain";n.has(o)||n.set(o,r);}else n.has("text/plain")||n.set("text/plain",new Blob([r],{type:"text/plain"}));if(n.size===0){let r=e.find(o=>typeof o=="string");return typeof r=="string"?kt(r,t):!1}try{return await navigator.clipboard.write([new ClipboardItem(Object.fromEntries(n))]),t?.(),!0}catch{let r=e.filter(o=>typeof o=="string");if(r.length>0){let o=r.join(`
|
|
24
24
|
|
|
25
|
-
`);return kt(o,t)}return !1}}else {if(e instanceof Blob)return await navigator.clipboard.write([new ClipboardItem({[e.type]:e})]),t?.(),!0;try{return await navigator.clipboard.writeText(String(e)),t?.(),!0}catch{return kt(e,t)}}}catch{return false}},kt=(e,t)=>{if(!document.execCommand)return false;let n=document.createElement("textarea");n.value=String(e),n.style.clipPath="inset(50%)",n.ariaHidden="true",(document.body||document.documentElement).append(n);try{n.select();let o=document.execCommand("copy");return o&&t?.(),o}finally{n.remove();}};var Se=()=>{try{let e=new(window.AudioContext||window.webkitAudioContext),t=e.createGain();t.connect(e.destination),[{freq:523.25,start:0,duration:.1},{freq:659.25,start:.05,duration:.1},{freq:783.99,start:.1,duration:.15}].forEach(r=>{let o=e.createOscillator(),i=e.createGain();o.connect(i),i.connect(t),o.frequency.value=r.freq,o.type="triangle";let s=e.currentTime+r.start,a=s+.01,l=s+r.duration;i.gain.setValueAtTime(0,s),i.gain.linearRampToValueAtTime(.15,a),i.gain.exponentialRampToValueAtTime(.01,l),o.start(s),o.stop(l);});}catch{}};var
|
|
25
|
+
`);return kt(o,t)}return !1}}else {if(e instanceof Blob)return await navigator.clipboard.write([new ClipboardItem({[e.type]:e})]),t?.(),!0;try{return await navigator.clipboard.writeText(String(e)),t?.(),!0}catch{return kt(e,t)}}}catch{return false}},kt=(e,t)=>{if(!document.execCommand)return false;let n=document.createElement("textarea");n.value=String(e),n.style.clipPath="inset(50%)",n.ariaHidden="true",(document.body||document.documentElement).append(n);try{n.select();let o=document.execCommand("copy");return o&&t?.(),o}finally{n.remove();}};var Se=()=>{try{let e=new(window.AudioContext||window.webkitAudioContext),t=e.createGain();t.connect(e.destination),[{freq:523.25,start:0,duration:.1},{freq:659.25,start:.05,duration:.1},{freq:783.99,start:.1,duration:.15}].forEach(r=>{let o=e.createOscillator(),i=e.createGain();o.connect(i),i.connect(t),o.frequency.value=r.freq,o.type="triangle";let s=e.currentTime+r.start,a=s+.01,l=s+r.duration;i.gain.setValueAtTime(0,s),i.gain.linearRampToValueAtTime(.15,a),i.gain.exponentialRampToValueAtTime(.01,l),o.start(s),o.stop(l);});}catch{}};var Or=(e,t=window.getComputedStyle(e))=>t.display!=="none"&&t.visibility!=="hidden"&&t.opacity!=="0";var it=e=>{if(e.closest(`[${Ue}]`))return false;let t=window.getComputedStyle(e);return !(!Or(e,t)||t.pointerEvents==="none")};var dn=(e,t)=>{let n=document.elementsFromPoint(e,t);for(let r of n)if(it(r))return r;return null};var Ar=(e,t,n)=>{let r=[],o=Array.from(document.querySelectorAll("*")),i=e.x,s=e.y,a=e.x+e.width,l=e.y+e.height;for(let f of o){if(!n){let R=(f.tagName||"").toUpperCase();if(R==="HTML"||R==="BODY")continue}if(!t(f))continue;let d=f.getBoundingClientRect(),m=d.left,x=d.top,C=d.left+d.width,T=d.top+d.height;if(n){let R=Math.max(i,m),_=Math.max(s,x),O=Math.min(a,C),S=Math.min(l,T),$=Math.max(0,O-R),N=Math.max(0,S-_),P=$*N,z=Math.max(0,d.width*d.height);z>0&&P/z>=.75&&r.push(f);}else m<a&&C>i&&x<l&&T>s&&r.push(f);}return r},Fr=e=>e.filter(t=>!e.some(n=>n!==t&&n.contains(t)));var $r=(e,t)=>{let n=Ar(e,t,true);return Fr(n)},Ir=(e,t)=>{let n=Ar(e,t,false);return Fr(n)};var mn=e=>{let t=e.getBoundingClientRect(),n=window.getComputedStyle(e);return {borderRadius:n.borderRadius||"0px",height:t.height,transform:n.transform||"none",width:t.width,x:t.left,y:t.top}};var kr=()=>{let e=window.location.hostname;return e==="localhost"||e==="127.0.0.1"||e==="[::1]"};var Di=150,Mr=e=>{let t={enabled:true,keyHoldDuration:300,allowActivationInsideInput:true,playCopySound:false,...e};return t.enabled===false?{activate:()=>{},deactivate:()=>{},toggle:()=>{},isActive:()=>false,dispose:()=>{}}:De(n=>{let[o,i]=I(false),[s,a]=I(-1e3),[l,f]=I(-1e3),[d,m]=I(false),[x,C]=I(-1e3),[T,R]=I(-1e3),[_,O]=I(false),[S,$]=I(null),[N,P]=I(null),[z,K]=I(0),[y,A]=I([]),[L,h]=I([]),[g,u]=I(false),[b,v]=I(false),[M,j]=I(false),[B,Z]=I(-1e3),[U,V]=I(-1e3),[Q,X]=I(false),F=null,W=null,re=null,de=null,ne=null,ce=-1e3,Ce=-1e3,ye=q(()=>g()&&!_()),xe=q(()=>s()>-1e3&&l()>-1e3),le=c=>(c.metaKey||c.ctrlKey)&&c.key.toLowerCase()==="c",Ee=c=>{let w=`grabbed-${Date.now()}-${Math.random()}`,E=Date.now(),Y={id:w,bounds:c,createdAt:E},H=y();A([...H,Y]),setTimeout(()=>{A(oe=>oe.filter(We=>We.id!==w));},1700);},Oe=c=>{let w=`success-${Date.now()}-${Math.random()}`;h(E=>[...E,{id:w,text:c}]),setTimeout(()=>{h(E=>E.filter(Y=>Y.id!==w));},1700);},st=c=>`<selected_element>
|
|
26
26
|
${c}
|
|
27
|
-
</selected_element>`,at=c=>{let w=window.getComputedStyle(c),
|
|
27
|
+
</selected_element>`,at=c=>{let w=window.getComputedStyle(c),E=c.getBoundingClientRect();return {width:`${Math.round(E.width)}px`,height:`${Math.round(E.height)}px`,paddingTop:w.paddingTop,paddingRight:w.paddingRight,paddingBottom:w.paddingBottom,paddingLeft:w.paddingLeft,background:w.background,opacity:w.opacity}},hn=c=>{let w={elements:c.map(oe=>({tagName:oe.tagName,content:oe.content,computedStyles:oe.computedStyles}))},E=JSON.stringify(w),H=`<div data-react-grab="${btoa(encodeURIComponent(E).replace(/%([0-9A-F]{2})/g,(oe,We)=>String.fromCharCode(parseInt(We,16))))}"></div>`;return new Blob([H],{type:"text/html"})},lt=c=>(c.tagName||"").toLowerCase(),Lr=c=>{let w=Be(c);if(!w)return null;let E=null;return ke(w,Y=>{if(je(Y)){let H=Me(Y);if(H&&$t(H)&&!H.startsWith("_"))return E=H,true}return false},true),E},gn=c=>{let w=lt(c),E=Lr(c);return w&&E?`<${w}> in ${E}`:w?`<${w}>`:"<element>"},pn=c=>{try{let w=c.map(E=>({tagName:lt(E)}));window.dispatchEvent(new CustomEvent("react-grab:element-selected",{detail:{elements:w}}));}catch{}},Dr=()=>window.__REACT_GRAB_EXTENSION_ACTIVE__===true||t.isExtension===true,bn=()=>Dr()&&!kr(),Mt=async(c,w,E)=>{Z(c),V(w),O(true),Ur(),await E().finally(()=>{O(false),ut();});},Hr=c=>"innerText"in c,jr=c=>Hr(c)?c.innerText:c.textContent??"",Ve=c=>c.map(w=>jr(w).trim()).filter(w=>w.length>0).join(`
|
|
28
28
|
|
|
29
|
-
`),
|
|
29
|
+
`),Br=async c=>{Ee(mn(c)),await new Promise(E=>requestAnimationFrame(E));let w=false;try{if(bn()){let E=Ve([c]);E.length>0&&(w=await _e(E,t.playCopySound?Se:void 0));}else {let E=await fn(c),Y=st(E),H=hn([{tagName:lt(c),content:E,computedStyles:at(c)}]);if(w=await _e([Y,H],t.playCopySound?Se:void 0),!w){let oe=Ve([c]);oe.length>0&&(w=await _e(oe,t.playCopySound?Se:void 0));}}}catch{let E=Ve([c]);E.length>0&&(w=await _e(E,t.playCopySound?Se:void 0));}w&&Oe(gn(c)),pn([c]);},yn=async c=>{if(c.length===0)return;for(let E of c)Ee(mn(E));await new Promise(E=>requestAnimationFrame(E));let w=false;try{if(bn()){let E=Ve(c);E.length>0&&(w=await _e(E,t.playCopySound?Se:void 0));}else {let Y=(await Promise.allSettled(c.map(H=>fn(H)))).map(H=>H.status==="fulfilled"?H.value:"").filter(H=>H.trim());if(Y.length>0){let H=Y.map(Ye=>st(Ye)).join(`
|
|
30
30
|
|
|
31
|
-
`),
|
|
31
|
+
`),oe=Y.map((Ye,Rn)=>({tagName:lt(c[Rn]),content:Ye,computedStyles:at(c[Rn])})),We=hn(oe);if(w=await _e([H,We],t.playCopySound?Se:void 0),!w){let Ye=Ve(c);Ye.length>0&&(w=await _e(Ye,t.playCopySound?Se:void 0));}}else {let H=Ve(c);H.length>0&&(w=await _e(H,t.playCopySound?Se:void 0));}}}catch{}w&&Oe(`${c.length} elements`),pn(c);},Pe=q(()=>!ye()||d()?null:dn(s(),l())),Vr=q(()=>{let c=Pe();if(!c)return;let w=c.getBoundingClientRect(),E=window.getComputedStyle(c);return {borderRadius:E.borderRadius||"0px",height:w.height,transform:E.transform||"none",width:w.width,x:w.left,y:w.top}}),ct=2,wn=(c,w)=>({x:Math.abs(c-x()),y:Math.abs(w-T())}),Tn=q(()=>{if(!d())return false;let c=wn(s(),l());return c.x>ct||c.y>ct}),Sn=(c,w)=>{let E=Math.min(x(),c),Y=Math.min(T(),w),H=Math.abs(c-x()),oe=Math.abs(w-T());return {x:E,y:Y,width:H,height:oe}},Yr=q(()=>{if(!Tn())return;let c=Sn(s(),l());return {borderRadius:"0px",height:c.height,transform:"none",width:c.width,x:c.x,y:c.y}}),Gr=q(()=>{let c=Pe();return c?gn(c):"<element>"}),Cn=q(()=>_()?{x:B(),y:U()}:{x:s(),y:l()}),xn=q(()=>_()?{x:B(),y:U()}:{x:s(),y:l()}),zr=q(()=>!!(Pe()&&Pe()===S()));se(Fe(()=>[Pe(),S()],([c,w])=>{w&&c&&w!==c&&$(null);}));let En=q(()=>{let c=N();if(z(),c===null)return 0;let E=(Date.now()-c)/t.keyHoldDuration,Y=1-Math.exp(-E),H=.95;return _()?Math.min(Y,H):1}),Ur=()=>{P(Date.now()),v(false),re=window.setTimeout(()=>{v(true),re=null;},Di);let c=()=>{if(N()===null)return;K(E=>E+1),En()<1&&(W=requestAnimationFrame(c));};c();},ut=()=>{W!==null&&(cancelAnimationFrame(W),W=null),re!==null&&(window.clearTimeout(re),re=null),P(null),v(false);},Pt=()=>{ut(),u(true),document.body.style.cursor="crosshair";},Xe=()=>{i(false),u(false),document.body.style.cursor="",d()&&(m(false),document.body.style.userSelect=""),F&&window.clearTimeout(F),de&&window.clearTimeout(de),ne&&(window.clearTimeout(ne),ne=null),X(false),ce=-1e3,Ce=-1e3,ut();},vn=new AbortController,Le=vn.signal;window.addEventListener("keydown",c=>{if(c.key==="Escape"&&o()){Xe();return}if(!(!t.allowActivationInsideInput&&Gn(c))&&le(c)){if(g()){de!==null&&window.clearTimeout(de),de=window.setTimeout(()=>{Xe();},200);return}c.repeat||(F!==null&&window.clearTimeout(F),o()||i(true),F=window.setTimeout(()=>{Pt(),t.onActivate?.();},t.keyHoldDuration));}},{signal:Le}),window.addEventListener("keyup",c=>{if(!o()&&!g())return;let w=!c.metaKey&&!c.ctrlKey;(c.key.toLowerCase()==="c"||w)&&Xe();},{signal:Le,capture:true}),window.addEventListener("mousemove",c=>{a(c.clientX),f(c.clientY),ce===-1e3&&(ce=c.clientX,Ce=c.clientY);let w=c.clientX-ce,E=c.clientY-Ce;Math.sqrt(w*w+E*E)>=200?(ne!==null&&window.clearTimeout(ne),X(false),ce=c.clientX,Ce=c.clientY,ne=window.setTimeout(()=>{X(true),ce=s(),Ce=l(),ne=null;},100)):ne===null&&!Q()&&(ne=window.setTimeout(()=>{X(true),ce=s(),Ce=l(),ne=null;},100));},{signal:Le}),window.addEventListener("mousedown",c=>{!ye()||_()||(c.preventDefault(),m(true),C(c.clientX),R(c.clientY),document.body.style.userSelect="none");},{signal:Le}),window.addEventListener("mouseup",c=>{if(!d())return;let w=wn(c.clientX,c.clientY),E=w.x>ct||w.y>ct;if(m(false),document.body.style.userSelect="",E){j(true);let Y=Sn(c.clientX,c.clientY),H=$r(Y,it);if(H.length>0)Mt(c.clientX,c.clientY,()=>yn(H));else {let oe=Ir(Y,it);oe.length>0&&Mt(c.clientX,c.clientY,()=>yn(oe));}}else {let Y=dn(c.clientX,c.clientY);if(!Y)return;$(Y),Mt(c.clientX,c.clientY,()=>Br(Y));}},{signal:Le}),window.addEventListener("click",c=>{(ye()||_()||M())&&(c.preventDefault(),c.stopPropagation(),M()&&j(false));},{signal:Le,capture:true}),document.addEventListener("visibilitychange",()=>{document.hidden&&A([]);},{signal:Le}),he(()=>{vn.abort(),F&&window.clearTimeout(F),de&&window.clearTimeout(de),ne&&window.clearTimeout(ne),ut(),document.body.style.userSelect="",document.body.style.cursor="";});let qr=zn(),Xr=q(()=>false),Wr=q(()=>ye()&&Tn()),Kr=q(()=>_()?"processing":"hover"),Zr=q(()=>ye()&&!d()&&Q()&&(!!Pe()&&!zr()||!Pe())||_()),Jr=q(()=>_()&&b()&&xe()),Qr=q(()=>ye()&&!d());return Vn(()=>k(Kn,{get selectionVisible(){return Xr()},get selectionBounds(){return Vr()},get dragVisible(){return Wr()},get dragBounds(){return Yr()},get grabbedBoxes(){return y()},get successLabels(){return L()},get labelVariant(){return Kr()},get labelText(){return Gr()},get labelX(){return Cn().x},get labelY(){return Cn().y},get labelVisible(){return Zr()},get progressVisible(){return Jr()},get progress(){return En()},get mouseX(){return xn().x},get mouseY(){return xn().y},get crosshairVisible(){return Qr()}}),qr),{activate:()=>{g()||(Pt(),t.onActivate?.());},deactivate:()=>{g()&&Xe();},toggle:()=>{g()?Xe():(Pt(),t.onActivate?.());},isActive:()=>g(),dispose:n}})};var Pr=null,Xl=()=>Pr,Hi="__REACT_GRAB_EXTENSION_ACTIVE__";window[Hi]||(Pr=Mr());/*! Bundled license information:
|
|
32
32
|
|
|
33
33
|
bippy/dist/rdt-hook-DAGphl8S.js:
|
|
34
34
|
(**
|
package/dist/index.js
CHANGED
|
@@ -678,10 +678,10 @@ var ReactGrabRenderer = (props) => {
|
|
|
678
678
|
return label.text;
|
|
679
679
|
},
|
|
680
680
|
get x() {
|
|
681
|
-
return
|
|
681
|
+
return props.mouseX ?? 0;
|
|
682
682
|
},
|
|
683
683
|
get y() {
|
|
684
|
-
return
|
|
684
|
+
return props.mouseY ?? 0;
|
|
685
685
|
}
|
|
686
686
|
})
|
|
687
687
|
}), createComponent(Show, {
|
|
@@ -771,8 +771,16 @@ var formatComponentSourceLocation = async (el) => {
|
|
|
771
771
|
const source = await getSourceFromHostInstance(el);
|
|
772
772
|
if (!source) return null;
|
|
773
773
|
const fileName = normalizeFileName(source.fileName);
|
|
774
|
-
if (
|
|
775
|
-
|
|
774
|
+
if (isSourceFile(fileName)) {
|
|
775
|
+
return `${fileName}:${source.lineNumber}:${source.columnNumber}`;
|
|
776
|
+
}
|
|
777
|
+
if (fileName && (fileName.includes(".tsx") || fileName.includes(".ts") || fileName.includes(".jsx") || fileName.includes(".js"))) {
|
|
778
|
+
const cleanedFileName = fileName.replace(/^webpack:\/\/_N_E\//, "").replace(/^webpack:\/\/\//, "").replace(/^webpack:\/\//, "").replace(/^\.\//, "");
|
|
779
|
+
if (cleanedFileName && !cleanedFileName.startsWith("node_modules") && !cleanedFileName.includes(".next") && !cleanedFileName.startsWith("webpack")) {
|
|
780
|
+
return `${cleanedFileName}:${source.lineNumber}:${source.columnNumber}`;
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
return null;
|
|
776
784
|
};
|
|
777
785
|
var getHTMLSnippet = async (element) => {
|
|
778
786
|
const semanticTags = /* @__PURE__ */ new Set([
|
|
@@ -885,14 +893,17 @@ var getHTMLSnippet = async (element) => {
|
|
|
885
893
|
const siblings = Array.from(parent.children);
|
|
886
894
|
targetIndex = siblings.indexOf(element);
|
|
887
895
|
if (targetIndex > 0) {
|
|
888
|
-
const
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
+
const indent2 = " ".repeat(ancestors.length);
|
|
897
|
+
if (targetIndex <= 2) {
|
|
898
|
+
for (let i = 0; i < targetIndex; i++) {
|
|
899
|
+
const sibling = siblings[i];
|
|
900
|
+
const siblingId = extractSiblingIdentifier(sibling);
|
|
901
|
+
if (siblingId) {
|
|
902
|
+
lines.push(`${indent2} ${formatElementOpeningTag(sibling, true)}`);
|
|
903
|
+
lines.push(`${indent2} </${sibling.tagName.toLowerCase()}>`);
|
|
904
|
+
}
|
|
905
|
+
}
|
|
906
|
+
} else {
|
|
896
907
|
lines.push(
|
|
897
908
|
`${indent2} ... (${targetIndex} element${targetIndex === 1 ? "" : "s"})`
|
|
898
909
|
);
|
|
@@ -934,11 +945,15 @@ var getHTMLSnippet = async (element) => {
|
|
|
934
945
|
const siblings = Array.from(parent.children);
|
|
935
946
|
const siblingsAfter = siblings.length - targetIndex - 1;
|
|
936
947
|
if (siblingsAfter > 0) {
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
948
|
+
if (siblingsAfter <= 2) {
|
|
949
|
+
for (let i = targetIndex + 1; i < siblings.length; i++) {
|
|
950
|
+
const sibling = siblings[i];
|
|
951
|
+
const siblingId = extractSiblingIdentifier(sibling);
|
|
952
|
+
if (siblingId) {
|
|
953
|
+
lines.push(`${indent} ${formatElementOpeningTag(sibling, true)}`);
|
|
954
|
+
lines.push(`${indent} </${sibling.tagName.toLowerCase()}>`);
|
|
955
|
+
}
|
|
956
|
+
}
|
|
942
957
|
} else {
|
|
943
958
|
lines.push(
|
|
944
959
|
`${indent} ... (${siblingsAfter} element${siblingsAfter === 1 ? "" : "s"})`
|
|
@@ -1278,13 +1293,11 @@ var init = (rawOptions) => {
|
|
|
1278
1293
|
setGrabbedBoxes((previousBoxes) => previousBoxes.filter((box) => box.id !== boxId));
|
|
1279
1294
|
}, SUCCESS_LABEL_DURATION_MS);
|
|
1280
1295
|
};
|
|
1281
|
-
const showTemporarySuccessLabel = (text
|
|
1296
|
+
const showTemporarySuccessLabel = (text) => {
|
|
1282
1297
|
const labelId = `success-${Date.now()}-${Math.random()}`;
|
|
1283
1298
|
setSuccessLabels((previousLabels) => [...previousLabels, {
|
|
1284
1299
|
id: labelId,
|
|
1285
|
-
text
|
|
1286
|
-
x: positionX,
|
|
1287
|
-
y: positionY
|
|
1300
|
+
text
|
|
1288
1301
|
}]);
|
|
1289
1302
|
setTimeout(() => {
|
|
1290
1303
|
setSuccessLabels((previousLabels) => previousLabels.filter((label) => label.id !== labelId));
|
|
@@ -1416,7 +1429,7 @@ ${context}
|
|
|
1416
1429
|
}
|
|
1417
1430
|
}
|
|
1418
1431
|
if (didCopy) {
|
|
1419
|
-
showTemporarySuccessLabel(extractElementLabelText(targetElement2)
|
|
1432
|
+
showTemporarySuccessLabel(extractElementLabelText(targetElement2));
|
|
1420
1433
|
}
|
|
1421
1434
|
notifyElementsSelected([targetElement2]);
|
|
1422
1435
|
};
|
|
@@ -1461,7 +1474,7 @@ ${context}
|
|
|
1461
1474
|
} catch {
|
|
1462
1475
|
}
|
|
1463
1476
|
if (didCopy) {
|
|
1464
|
-
showTemporarySuccessLabel(`${targetElements.length} elements
|
|
1477
|
+
showTemporarySuccessLabel(`${targetElements.length} elements`);
|
|
1465
1478
|
}
|
|
1466
1479
|
notifyElementsSelected(targetElements);
|
|
1467
1480
|
};
|