@sentientui/snippet 0.23.0 → 0.24.1
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/README.md +22 -2
- package/dist/install.cjs +32 -0
- package/dist/install.d.cts +68 -0
- package/dist/install.d.ts +68 -0
- package/dist/install.js +9 -0
- package/dist/snippet.global.js +2 -2
- package/package.json +16 -2
package/README.md
CHANGED
|
@@ -29,6 +29,10 @@ page is left exactly as it was.
|
|
|
29
29
|
},
|
|
30
30
|
};
|
|
31
31
|
</script>
|
|
32
|
+
<!-- Optional but recommended: the pre-paint tag. Copy the real thing from your
|
|
33
|
+
dashboard's Install page — it is one ~2.6 KB inline script, byte-identical
|
|
34
|
+
for every site, so it is not reproduced here. -->
|
|
35
|
+
<script>/* SentientUI pre-paint */</script>
|
|
32
36
|
<script
|
|
33
37
|
src="https://unpkg.com/@sentientui/snippet/dist/snippet.global.js"
|
|
34
38
|
defer
|
|
@@ -36,6 +40,21 @@ page is left exactly as it was.
|
|
|
36
40
|
></script>
|
|
37
41
|
```
|
|
38
42
|
|
|
43
|
+
**The pre-paint tag.** The loader above is `defer`, so it runs after your page has parsed —
|
|
44
|
+
and on a return visit the browser may already have painted your original section order and
|
|
45
|
+
baseline styles before it does. The middle tag closes that gap: a tiny synchronous inline
|
|
46
|
+
script that applies the last served decision *before* the page paints. It reads only the
|
|
47
|
+
snapshot already stored on that visitor's own device, makes no network request, hides nothing
|
|
48
|
+
(there is no cloak here, by design), and does nothing at all on a first visit or for a
|
|
49
|
+
Do-Not-Track / Global Privacy Control / consent-gated visitor. Anything it gets wrong — a
|
|
50
|
+
selector that resolved differently mid-parse, say — the loader reverts within the same page
|
|
51
|
+
load. Skip it and everything still works; your returning visitors just see the change land a
|
|
52
|
+
beat later. Generating it yourself:
|
|
53
|
+
|
|
54
|
+
```js
|
|
55
|
+
import { renderSnippetPrePaintScript } from '@sentientui/snippet/install';
|
|
56
|
+
```
|
|
57
|
+
|
|
39
58
|
The URL above carries no version: unpkg resolves it to the latest release, so your site picks
|
|
40
59
|
up new snippet versions on its own and this tag is pasted once. That is the recommended setup,
|
|
41
60
|
and what the Shopify app embed and the dashboard's install page both hand out.
|
|
@@ -68,11 +87,12 @@ role label — never a user id or email.
|
|
|
68
87
|
your theme renders them (the first learned baseline). Each selector must match exactly one
|
|
69
88
|
element and all of them must share one parent; anything else — a missing section, an ambiguous
|
|
70
89
|
selector, a served order that isn't a permutation of your list — applies nothing. Return visits
|
|
71
|
-
|
|
90
|
+
apply the last served order from a local snapshot; with the pre-paint tag installed that
|
|
91
|
+
happens before the browser paints, so there is no natural-order flash at all.
|
|
72
92
|
|
|
73
93
|
The snippet also captures per-section attention (visible time + scroll depth) and behavioral
|
|
74
94
|
signals by default — that's what builds audience profiles with zero tagging. Add
|
|
75
95
|
`sectionCapture: false` to `window.sentient` to turn it off; it never runs for a Do-Not-Track,
|
|
76
96
|
Global Privacy Control, or consent-gated visitor.
|
|
77
97
|
|
|
78
|
-
Bundle ≤
|
|
98
|
+
Bundle ≤ 23 KiB gzip, pre-paint tag ≤ 3 KiB raw (both CI-enforced). MIT.
|
package/dist/install.cjs
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/install.ts
|
|
21
|
+
var install_exports = {};
|
|
22
|
+
__export(install_exports, {
|
|
23
|
+
SNIPPET_PREPAINT_VERSION: () => SNIPPET_PREPAINT_VERSION,
|
|
24
|
+
renderSnippetPrePaintScript: () => renderSnippetPrePaintScript
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(install_exports);
|
|
27
|
+
|
|
28
|
+
// src/prepaint-script.ts
|
|
29
|
+
var SNIPPET_PREPAINT_VERSION = 1;
|
|
30
|
+
function renderSnippetPrePaintScript() {
|
|
31
|
+
return `(function(){try{var W=window,D=document,N=navigator,L=W.location,c=W.sentient,n=Date.now();if(!c||typeof c.apiKey!="string"||c.consent===!1||W.__sntPP)return;if(N.doNotTrack=="1"||N.globalPrivacyControl||N.webdriver)return;if(/[?&]sentient_(editor|preview|persona)=/.test(L.search))return;var s=JSON.parse(localStorage.getItem("_snt_snap:"+c.apiKey)),S=s.slots;if(s.v!==1||typeof s.persona!="string"||typeof s.band!="string"||!S||typeof S!="object"||!(2592e6>n-s.savedAt))return;var H=["data-sentient-persona","data-sentient-confidence"],d=D.documentElement,P=W.__sntPP={v:1,at:n,stamped:[],html:[],reordered:!1,done:!1,stop:function(){X()}},b=P.stamped,p=[],i,k,t,e,l,m,x,V=c.sections,O=s.layoutOrder,q=!(V&&V.length>1&&O&&O.length==V.length);if(c.personaAttributes&&!d.hasAttribute(H[0])){d.setAttribute(H[0],s.persona);d.setAttribute(H[1],s.band);P.html=H}var Q=function(v){return(""+v).replace(/["\\\\]/g,"\\\\$&")},A=function(t,v,g){if(typeof v=="string"){if(!g||(g.arms||[]).indexOf(v)>-1)p.push([t,"data-sentient-arm",v])}else if(v)for(k in v)if(!g||((g.dims||{})[k]||[]).indexOf(v[k])>-1)p.push([t,"data-"+k,v[k]])},U=function(t){var a=t[3];if(!a)return;a[2]==null?a[0].removeAttribute(a[1]):a[0].setAttribute(a[1],a[2]);x=b.indexOf(a);if(x>-1)b.splice(x,1);t[3]=0},R=function(){var g={},f=[],y,z,a,n=0;for(i in V){try{y=D.querySelectorAll(V[i])}catch(_){return 1}if(y.length==1){g[V[i]]=y[0];n++}}if(n!=V.length)return 0;for(i in O){z=g[O[i]];if(!z||~f.indexOf(z))return 1;f.push(z)}a=f[0].parentNode;if(!a)return 1;for(i in f)if(f[i].parentNode!=a)return 1;y=f.slice().sort(function(u,v){return u.compareDocumentPosition(v)&4?-1:1});for(i=0;i in f;i++){z=f[i];if(y[i]!=z){a.insertBefore(z,y[i]);y.splice(y.indexOf(z),1);y.splice(i,0,z)}}P.reordered=!0;return 1},F=function(){if(P.done)return;for(i=0;i in p;i++){t=p[i];if(!t)continue;try{m=D.querySelectorAll(t[0])}catch(_){p[i]=0;continue}if(m.length>1){U(t);p[i]=0}else if(m.length==1&&(!t[3]||t[3][0]!=m[0])){U(t);e=m[0];t[3]=[e,t[1],e.getAttribute(t[1])];e.setAttribute(t[1],t[2]);b.push(t[3])}}if(!q)q=R()},X=function(){if(P.done)return;P.done=!0;try{o.disconnect()}catch(_){}clearTimeout(T)},G=c.slots,C=s.slotConfig;for(i in G)if(G[i]&&G[i].target)A(G[i].target,S[i],G[i]);for(i in C){e=C[i]||{};l=e.locator;t=e.target;if(l){if(l.urlMatch&&!~L.pathname.indexOf(l.urlMatch))continue;t=l.id?'[id="'+Q(l.id)+'"]':l.dataAttr&&/^[\\w-]+$/.test(l.dataAttr.name)?"["+l.dataAttr.name+'="'+Q(l.dataAttr.value)+'"]':l.selector}if(t)A(t,S[i])}var o=new MutationObserver(F),T=setTimeout(X,3e3);o.observe(d,{childList:!0,subtree:!0});D.addEventListener("DOMContentLoaded",function(){F();X()});F();}catch(_){}})();`;
|
|
32
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The snippet install's inline pre-paint script — the middle tag of the
|
|
3
|
+
* three-tag install, and the only SentientUI code that runs before the page
|
|
4
|
+
* paints on a return visit.
|
|
5
|
+
*
|
|
6
|
+
* It lives here rather than in @sentientui/core because it is an artefact of the
|
|
7
|
+
* SNIPPET install specifically: it reads `window.sentient`, it hands off to this
|
|
8
|
+
* bundle through `window.__sntPP`, and its contract version is this package's to
|
|
9
|
+
* keep. Core owns the snapshot format it reads; nothing else is shared.
|
|
10
|
+
*
|
|
11
|
+
* Design: docs/superpowers/specs/2026-09-07-snippet-prepaint-script-design.md
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* What the inline pre-paint script leaves behind for the bundle. The bundle must
|
|
15
|
+
* tolerate this being absent (a two-tag install), a HIGHER `v` (a newer inline
|
|
16
|
+
* pasted before the bundle updated — read only the fields you know), and
|
|
17
|
+
* malformed (treat as absent).
|
|
18
|
+
*/
|
|
19
|
+
type PrePaintRecord = {
|
|
20
|
+
v: number;
|
|
21
|
+
/** Date.now() when the inline script ran. */
|
|
22
|
+
at: number;
|
|
23
|
+
/** [element, attribute, value before we stamped it] — null means "absent". */
|
|
24
|
+
stamped: Array<[Element, string, string | null]>;
|
|
25
|
+
/** <html> attribute names the inline script set (empty when it set none). */
|
|
26
|
+
html: string[];
|
|
27
|
+
reordered: boolean;
|
|
28
|
+
/** True once the observer is disconnected. */
|
|
29
|
+
done: boolean;
|
|
30
|
+
/** Disconnect now — the bundle has taken over. */
|
|
31
|
+
stop(): void;
|
|
32
|
+
};
|
|
33
|
+
/** Contract version of the snippet inline pre-paint script — mirrored at runtime
|
|
34
|
+
* as `window.__sntPP.v`, and reported to /v1/decide as `pp` so the dashboard can
|
|
35
|
+
* tell a two-tag install from a three-tag one. The script is pasted into a site
|
|
36
|
+
* once and never floats, so v1 must stay supported by the bundle indefinitely. */
|
|
37
|
+
declare const SNIPPET_PREPAINT_VERSION = 1;
|
|
38
|
+
/**
|
|
39
|
+
* Snippet-install inline pre-paint script (v1).
|
|
40
|
+
*
|
|
41
|
+
* The snippet loader is `defer`, so the bundle's snapshot pass is pre-*decide*
|
|
42
|
+
* but not necessarily pre-*paint*: on a return visit a page can show its natural
|
|
43
|
+
* section order and baseline dims and then restamp. This script closes that gap
|
|
44
|
+
* with zero network — it reads the snapshot the visitor's own prior visit wrote
|
|
45
|
+
* and applies the reversible subset (persona attributes, slot attributes, the
|
|
46
|
+
* cached section order) as the parser inserts the elements, before they paint.
|
|
47
|
+
* It is a CONSTANT — it reads `window.sentient` at runtime instead of baking the
|
|
48
|
+
* key in, so the dashboard install page, the README and the Shopify Liquid embed
|
|
49
|
+
* all inline the same bytes and a test can pin them.
|
|
50
|
+
*
|
|
51
|
+
* Safety properties (pinned by tests):
|
|
52
|
+
* - No interpolation at all, so nothing a hostile config value could reach.
|
|
53
|
+
* - Built by string concatenation and contains no backticks, so the output
|
|
54
|
+
* survives being embedded in template-literal-based renderers.
|
|
55
|
+
* - Contains no `<` whatsoever (comparisons are written with `>` / `~indexOf`),
|
|
56
|
+
* so it cannot terminate the inline `<script>` in any parser state.
|
|
57
|
+
* - Every path is inside one try/catch: any error leaves the DOM alone, and the
|
|
58
|
+
* bundle's authoritative pass corrects anything this got wrong (see the
|
|
59
|
+
* `__sntPP` reconcile in index.ts).
|
|
60
|
+
*
|
|
61
|
+
* What it deliberately does NOT do: no `textContent`, no ops stylesheet, no
|
|
62
|
+
* `moveBefore`/`moveAfter`, no Composition-Block rendering, and no cloak of any
|
|
63
|
+
* kind. Those either need the decide response to be trustworthy or need the
|
|
64
|
+
* renderer that lives in the bundle.
|
|
65
|
+
*/
|
|
66
|
+
declare function renderSnippetPrePaintScript(): string;
|
|
67
|
+
|
|
68
|
+
export { type PrePaintRecord, SNIPPET_PREPAINT_VERSION, renderSnippetPrePaintScript };
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The snippet install's inline pre-paint script — the middle tag of the
|
|
3
|
+
* three-tag install, and the only SentientUI code that runs before the page
|
|
4
|
+
* paints on a return visit.
|
|
5
|
+
*
|
|
6
|
+
* It lives here rather than in @sentientui/core because it is an artefact of the
|
|
7
|
+
* SNIPPET install specifically: it reads `window.sentient`, it hands off to this
|
|
8
|
+
* bundle through `window.__sntPP`, and its contract version is this package's to
|
|
9
|
+
* keep. Core owns the snapshot format it reads; nothing else is shared.
|
|
10
|
+
*
|
|
11
|
+
* Design: docs/superpowers/specs/2026-09-07-snippet-prepaint-script-design.md
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* What the inline pre-paint script leaves behind for the bundle. The bundle must
|
|
15
|
+
* tolerate this being absent (a two-tag install), a HIGHER `v` (a newer inline
|
|
16
|
+
* pasted before the bundle updated — read only the fields you know), and
|
|
17
|
+
* malformed (treat as absent).
|
|
18
|
+
*/
|
|
19
|
+
type PrePaintRecord = {
|
|
20
|
+
v: number;
|
|
21
|
+
/** Date.now() when the inline script ran. */
|
|
22
|
+
at: number;
|
|
23
|
+
/** [element, attribute, value before we stamped it] — null means "absent". */
|
|
24
|
+
stamped: Array<[Element, string, string | null]>;
|
|
25
|
+
/** <html> attribute names the inline script set (empty when it set none). */
|
|
26
|
+
html: string[];
|
|
27
|
+
reordered: boolean;
|
|
28
|
+
/** True once the observer is disconnected. */
|
|
29
|
+
done: boolean;
|
|
30
|
+
/** Disconnect now — the bundle has taken over. */
|
|
31
|
+
stop(): void;
|
|
32
|
+
};
|
|
33
|
+
/** Contract version of the snippet inline pre-paint script — mirrored at runtime
|
|
34
|
+
* as `window.__sntPP.v`, and reported to /v1/decide as `pp` so the dashboard can
|
|
35
|
+
* tell a two-tag install from a three-tag one. The script is pasted into a site
|
|
36
|
+
* once and never floats, so v1 must stay supported by the bundle indefinitely. */
|
|
37
|
+
declare const SNIPPET_PREPAINT_VERSION = 1;
|
|
38
|
+
/**
|
|
39
|
+
* Snippet-install inline pre-paint script (v1).
|
|
40
|
+
*
|
|
41
|
+
* The snippet loader is `defer`, so the bundle's snapshot pass is pre-*decide*
|
|
42
|
+
* but not necessarily pre-*paint*: on a return visit a page can show its natural
|
|
43
|
+
* section order and baseline dims and then restamp. This script closes that gap
|
|
44
|
+
* with zero network — it reads the snapshot the visitor's own prior visit wrote
|
|
45
|
+
* and applies the reversible subset (persona attributes, slot attributes, the
|
|
46
|
+
* cached section order) as the parser inserts the elements, before they paint.
|
|
47
|
+
* It is a CONSTANT — it reads `window.sentient` at runtime instead of baking the
|
|
48
|
+
* key in, so the dashboard install page, the README and the Shopify Liquid embed
|
|
49
|
+
* all inline the same bytes and a test can pin them.
|
|
50
|
+
*
|
|
51
|
+
* Safety properties (pinned by tests):
|
|
52
|
+
* - No interpolation at all, so nothing a hostile config value could reach.
|
|
53
|
+
* - Built by string concatenation and contains no backticks, so the output
|
|
54
|
+
* survives being embedded in template-literal-based renderers.
|
|
55
|
+
* - Contains no `<` whatsoever (comparisons are written with `>` / `~indexOf`),
|
|
56
|
+
* so it cannot terminate the inline `<script>` in any parser state.
|
|
57
|
+
* - Every path is inside one try/catch: any error leaves the DOM alone, and the
|
|
58
|
+
* bundle's authoritative pass corrects anything this got wrong (see the
|
|
59
|
+
* `__sntPP` reconcile in index.ts).
|
|
60
|
+
*
|
|
61
|
+
* What it deliberately does NOT do: no `textContent`, no ops stylesheet, no
|
|
62
|
+
* `moveBefore`/`moveAfter`, no Composition-Block rendering, and no cloak of any
|
|
63
|
+
* kind. Those either need the decide response to be trustworthy or need the
|
|
64
|
+
* renderer that lives in the bundle.
|
|
65
|
+
*/
|
|
66
|
+
declare function renderSnippetPrePaintScript(): string;
|
|
67
|
+
|
|
68
|
+
export { type PrePaintRecord, SNIPPET_PREPAINT_VERSION, renderSnippetPrePaintScript };
|
package/dist/install.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// src/prepaint-script.ts
|
|
2
|
+
var SNIPPET_PREPAINT_VERSION = 1;
|
|
3
|
+
function renderSnippetPrePaintScript() {
|
|
4
|
+
return `(function(){try{var W=window,D=document,N=navigator,L=W.location,c=W.sentient,n=Date.now();if(!c||typeof c.apiKey!="string"||c.consent===!1||W.__sntPP)return;if(N.doNotTrack=="1"||N.globalPrivacyControl||N.webdriver)return;if(/[?&]sentient_(editor|preview|persona)=/.test(L.search))return;var s=JSON.parse(localStorage.getItem("_snt_snap:"+c.apiKey)),S=s.slots;if(s.v!==1||typeof s.persona!="string"||typeof s.band!="string"||!S||typeof S!="object"||!(2592e6>n-s.savedAt))return;var H=["data-sentient-persona","data-sentient-confidence"],d=D.documentElement,P=W.__sntPP={v:1,at:n,stamped:[],html:[],reordered:!1,done:!1,stop:function(){X()}},b=P.stamped,p=[],i,k,t,e,l,m,x,V=c.sections,O=s.layoutOrder,q=!(V&&V.length>1&&O&&O.length==V.length);if(c.personaAttributes&&!d.hasAttribute(H[0])){d.setAttribute(H[0],s.persona);d.setAttribute(H[1],s.band);P.html=H}var Q=function(v){return(""+v).replace(/["\\\\]/g,"\\\\$&")},A=function(t,v,g){if(typeof v=="string"){if(!g||(g.arms||[]).indexOf(v)>-1)p.push([t,"data-sentient-arm",v])}else if(v)for(k in v)if(!g||((g.dims||{})[k]||[]).indexOf(v[k])>-1)p.push([t,"data-"+k,v[k]])},U=function(t){var a=t[3];if(!a)return;a[2]==null?a[0].removeAttribute(a[1]):a[0].setAttribute(a[1],a[2]);x=b.indexOf(a);if(x>-1)b.splice(x,1);t[3]=0},R=function(){var g={},f=[],y,z,a,n=0;for(i in V){try{y=D.querySelectorAll(V[i])}catch(_){return 1}if(y.length==1){g[V[i]]=y[0];n++}}if(n!=V.length)return 0;for(i in O){z=g[O[i]];if(!z||~f.indexOf(z))return 1;f.push(z)}a=f[0].parentNode;if(!a)return 1;for(i in f)if(f[i].parentNode!=a)return 1;y=f.slice().sort(function(u,v){return u.compareDocumentPosition(v)&4?-1:1});for(i=0;i in f;i++){z=f[i];if(y[i]!=z){a.insertBefore(z,y[i]);y.splice(y.indexOf(z),1);y.splice(i,0,z)}}P.reordered=!0;return 1},F=function(){if(P.done)return;for(i=0;i in p;i++){t=p[i];if(!t)continue;try{m=D.querySelectorAll(t[0])}catch(_){p[i]=0;continue}if(m.length>1){U(t);p[i]=0}else if(m.length==1&&(!t[3]||t[3][0]!=m[0])){U(t);e=m[0];t[3]=[e,t[1],e.getAttribute(t[1])];e.setAttribute(t[1],t[2]);b.push(t[3])}}if(!q)q=R()},X=function(){if(P.done)return;P.done=!0;try{o.disconnect()}catch(_){}clearTimeout(T)},G=c.slots,C=s.slotConfig;for(i in G)if(G[i]&&G[i].target)A(G[i].target,S[i],G[i]);for(i in C){e=C[i]||{};l=e.locator;t=e.target;if(l){if(l.urlMatch&&!~L.pathname.indexOf(l.urlMatch))continue;t=l.id?'[id="'+Q(l.id)+'"]':l.dataAttr&&/^[\\w-]+$/.test(l.dataAttr.name)?"["+l.dataAttr.name+'="'+Q(l.dataAttr.value)+'"]':l.selector}if(t)A(t,S[i])}var o=new MutationObserver(F),T=setTimeout(X,3e3);o.observe(d,{childList:!0,subtree:!0});D.addEventListener("DOMContentLoaded",function(){F();X()});F();}catch(_){}})();`;
|
|
5
|
+
}
|
|
6
|
+
export {
|
|
7
|
+
SNIPPET_PREPAINT_VERSION,
|
|
8
|
+
renderSnippetPrePaintScript
|
|
9
|
+
};
|
package/dist/snippet.global.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var SentientSnippet=(()=>{var Fe=Object.defineProperty;var or=Object.getOwnPropertyDescriptor;var ir=Object.getOwnPropertyNames,Pt=Object.getOwnPropertySymbols;var Mt=Object.prototype.hasOwnProperty,sr=Object.prototype.propertyIsEnumerable;var Dt=(e,t,n)=>t in e?Fe(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Q=(e,t)=>{for(var n in t||(t={}))Mt.call(t,n)&&Dt(e,n,t[n]);if(Pt)for(var n of Pt(t))sr.call(t,n)&&Dt(e,n,t[n]);return e};var Bt=(e,t)=>()=>(e&&(t=e(e=0)),t);var Nt=(e,t)=>{for(var n in t)Fe(e,n,{get:t[n],enumerable:!0})},ar=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of ir(t))!Mt.call(e,o)&&o!==n&&Fe(e,o,{get:()=>t[o],enumerable:!(r=or(t,o))||r.enumerable});return e};var lr=e=>ar(Fe({},"__esModule",{value:!0}),e);var cr,ur,dr,$t,fr,pr,Kt,_,be,Te=Bt(()=>{"use strict";cr=Object.defineProperty,ur=Object.defineProperties,dr=Object.getOwnPropertyDescriptors,$t=Object.getOwnPropertySymbols,fr=Object.prototype.hasOwnProperty,pr=Object.prototype.propertyIsEnumerable,Kt=(e,t,n)=>t in e?cr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,_=(e,t)=>{for(var n in t||(t={}))fr.call(t,n)&&Kt(e,n,t[n]);if($t)for(var n of $t(t))pr.call(t,n)&&Kt(e,n,t[n]);return e},be=(e,t)=>ur(e,dr(t))});var Xt={};Nt(Xt,{LOCAL_ENGINE_AVAILABLE:()=>wr,createLocalEngine:()=>Sr});function Sr(e){throw new Error("[sentient] createLocalEngine is not available in production builds. The local engine only exists under the `development` export condition.")}var wr,Zt=Bt(()=>{"use strict";wr=!1});var Mo={};Nt(Mo,{applyPersonaAttributes:()=>rt,applyRegistrySlots:()=>st,applySlotArms:()=>it,applySlotAttributes:()=>ot,parseEditorToken:()=>Qn,parsePersonaPreview:()=>nr,parsePreview:()=>tr,parseSnippetConfig:()=>Qe,reapply:()=>Lt,run:()=>rr,version:()=>ze});Te();var gr=["buyer","researcher","deal_seeker","browser"];var mr={buyer:"Buyer",researcher:"Researcher",deal_seeker:"Deal seeker",browser:"Browser",unknown:"Unknown"};function We(e){return Object.keys(e).sort().map(t=>`${t}=${e[t]}`).join("|")}function jt(e){if(e.length===0)return null;let t={};for(let n of e.split("|")){let r=n.indexOf("=");if(r<=0||r!==n.lastIndexOf("=")||r===n.length-1)return null;let o=n.slice(0,r);if(o in t)return null;t[o]=n.slice(r+1)}return t}function pt(e){var t,n,r;if(e.arms)return typeof e.baseline=="string"?e.baseline:(t=e.arms[0])!=null?t:"";if(e.baseline!==void 0&&typeof e.baseline=="object")return We(e.baseline);if(typeof e.baseline=="string")return e.baseline;let o={};for(let[l,i]of Object.entries((n=e.dims)!=null?n:{}))o[l]=(r=i[0])!=null?r:"";return We(o)}function Gt(e,t){var n,r;return e.dims!=null?(r=(n=jt(t))!=null?n:jt(pt(e)))!=null?r:{}:t}function Ut(e){let t=2166136261;for(let n=0;n<e.length;n++)t^=e.charCodeAt(n),t=t+((t<<1)+(t<<4)+(t<<7)+(t<<8)+(t<<24))>>>0;return t}function we(e){return e>=.3?e<.7?"medium":"high":"low"}var $o=gr.map(e=>({key:e,displayName:mr[e]}));function He(e){return e?`_${e.slice(0,12)}`:""}var hr="_snt_uid";function zt(e){return`${hr}${He(e)}`}var yr=["GPTBot","ChatGPT-User","OAI-SearchBot","ClaudeBot","Claude-User","Claude-SearchBot","PerplexityBot","Perplexity-User","Google-Extended","Applebot-Extended","Meta-ExternalAgent","Bytespider","CCBot","Amazonbot","cohere-ai","Diffbot"];function qt(e){return vr(e)!==null}function vr(e){var t;if(!e)return null;let n=e.toLowerCase();return(t=yr.find(r=>n.includes(r.toLowerCase())))!=null?t:null}function Ft(e){let t=e.toLowerCase();return/ipad|tablet|playbook|kindle|silk/.test(t)?"tablet":/mobi|iphone|ipod|android.*mobile|phone/.test(t)?"mobile":"desktop"}function Wt(e,t){if(!e)return"direct";try{let n=new URL(e);if(t)try{if(new URL(t).host===n.host)return"direct"}catch(o){}let r=n.hostname.toLowerCase();return/(^|\.)(google|bing|duckduckgo|yahoo)\./.test(r)?"search":/(^|\.)(twitter\.com|x\.com|facebook\.com|linkedin\.com|reddit\.com|t\.co)$/.test(r)?"social":"referral"}catch(n){return"direct"}}function Ht(e){if(!e)return null;try{return new URL(e).hostname}catch(t){return null}}var br=["gclid","gbraid","wbraid","fbclid","ttclid","msclkid","twclid","li_fat_id"];function Vt(e){let t={},n={};try{let r=typeof e=="string"||e instanceof URLSearchParams?new URLSearchParams(e):Object.entries(e).flatMap(([o,l])=>{let i=Array.isArray(l)?l[0]:l;return i===void 0?[]:[[o,i]]});for(let[o,l]of r)o.startsWith("utm_")?o in t||(t[o]=l):br.includes(o)&&(o in n||(n[o]=l))}catch(r){}return{utmParams:t,clickIds:n}}function Jt(e){let t=e.getHours();return t<6?"night":t<12?"morning":t<18?"afternoon":"evening"}function gt(e){return _(_(_({id:e.id},e.arms?{arms:[...e.arms]}:{}),e.dims?{dims:Object.fromEntries(Object.entries(e.dims).map(([t,n])=>[t,[...n]]))}:{}),e.baseline!==void 0?{baseline:e.baseline}:{})}function mt(e){let t=gt(e);return Gt(t,pt(t))}function Yt(e){return typeof e=="string"?e:We(e)}Te();function rn(){try{if(typeof crypto!="undefined"&&typeof crypto.randomUUID=="function")return crypto.randomUUID()}catch(e){}try{if(typeof crypto!="undefined"&&typeof crypto.getRandomValues=="function"){let e=new Uint8Array(16);crypto.getRandomValues(e),e[6]=e[6]&15|64,e[8]=e[8]&63|128;let t="";for(let n=0;n<16;n++)t+=e[n].toString(16).padStart(2,"0"),(n===3||n===5||n===7||n===9)&&(t+="-");return t}}catch(e){}return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{let t=Math.random()*16|0;return(e==="x"?t:t&3|8).toString(16)})}var Ar="_snt_uid",xr=365,Ve="_snt_uid";function kr(){return rn()}function Qt(e){try{let t=document.cookie.match(new RegExp(`(?:^|; )${e}=([^;]*)`));return t?decodeURIComponent(t[1]):null}catch(t){return null}}function Er(e,t,n){try{document.cookie=`${e}=${encodeURIComponent(t)}; max-age=${n}; SameSite=strict; path=/`}catch(r){}}function ht(e){try{return localStorage.getItem(e)}catch(t){return null}}function en(e,t){try{return localStorage.setItem(e,t),!0}catch(n){return!1}}function tn(e){try{return sessionStorage.getItem(e)}catch(t){return null}}function Cr(e,t){try{return sessionStorage.setItem(e,t),!0}catch(n){return!1}}function _r(e){try{sessionStorage.removeItem(e)}catch(t){}}function Ir(e){try{return document.cookie=`${e}_probe=1; max-age=1; SameSite=strict; path=/`,document.cookie.indexOf(`${e}_probe=1`)!==-1}catch(t){return!1}}function Or(e){try{localStorage.removeItem(e)}catch(t){}}function Lr(e){try{document.cookie=`${e}=; max-age=0; SameSite=strict; path=/`}catch(t){}}var Tr={getSessionId:()=>null,isEphemeral:()=>!1,destroy:()=>{}};function on(e){var t,n,r,o,l,i,s;if(typeof window=="undefined")return Tr;let c=He(e==null?void 0:e.apiKey),u=(t=e==null?void 0:e.cookieName)!=null?t:zt(e==null?void 0:e.apiKey),a=`${Ve}${c}`,d=`${Ve}_tomb${c}`,g=((n=e==null?void 0:e.cookieTTLDays)!=null?n:xr)*24*60*60,m=w=>w&&w.length>0?w:null,p=()=>{var w,I;return c&&!(e!=null&&e.cookieName)&&ht(d)===null?(I=(w=m(Qt(Ar)))!=null?w:m(ht(Ve)))!=null?I:m(tn(Ve)):null},f=(s=(i=(l=(o=(r=m(Qt(u)))!=null?r:m(ht(a)))!=null?o:m(tn(a)))!=null?l:p())!=null?i:m(e==null?void 0:e.ssrSessionId))!=null?s:kr();Er(u,f,g);let A=en(a,f),C=Ir(u),L=A?!1:Cr(a,f),y=!A&&!C&&!L;return{getSessionId:()=>f,isEphemeral:()=>y,destroy:()=>{f=null,Lr(u),Or(a),_r(a),c&&!(e!=null&&e.cookieName)&&en(d,"1")}}}function Pe(e){return Math.min(6e4,1e3*2**Math.min(e,6))}function wt(e){if(e.ok===!0)return"delivered";let{status:t}=e;return typeof t!="number"?"retry":t>=200&&t<300?"delivered":t>=400&&t<500&&t!==429?"dropped":"retry"}function sn(e,t){try{let n=localStorage.getItem(e);if(!n)return[];let r=JSON.parse(n);return Array.isArray(r)?(localStorage.removeItem(e),r.slice(-t)):[]}catch(n){return[]}}function Ee(e,t,n){try{let r=(()=>{try{let l=localStorage.getItem(n);if(!l)return[];let i=JSON.parse(l);return Array.isArray(i)?i:[]}catch(l){return[]}})(),o=new Map;for(let l of r)o.set(l.id,l);for(let l of e)o.set(l.id,l);localStorage.setItem(n,JSON.stringify([...o.values()].slice(-t)))}catch(r){}}function an(e,t){try{let n=localStorage.getItem(t);if(!n)return;let r=JSON.parse(n);if(!Array.isArray(r))return;let o=new Set(e),l=r.filter(i=>!o.has(i.id));if(l.length===r.length)return;l.length===0?localStorage.removeItem(t):localStorage.setItem(t,JSON.stringify(l))}catch(n){}}var Rr=500,Pr=56*1024;function ln(e){return`_snt_retry_${e.slice(0,12)}`}var Dr={push:()=>{},flush:()=>{},destroy:()=>{}};function Mr(e){var t,n,r;if(typeof window=="undefined")return Dr;let o=(t=e.flushIntervalMs)!=null?t:5e3,l=(n=e.maxBatchSize)!=null?n:20,i=(r=e.maxRetrySize)!=null?r:100,s=e.ingestUrl,c=e.apiKey,u=ln(c),a=[],d=new Set,g=[],m=v=>{for(let b of v)p.delete(b),!d.has(b)&&(d.add(b),g.push(b));for(;g.length>Rr;){let b=g.shift();b&&d.delete(b)}an(v,u)},p=new Set,f=()=>{for(;a.length>i;){let v=a.shift();v&&p.delete(v.id)}},A=v=>{d.has(v.id)||p.has(v.id)||(p.add(v.id),a.push(v),f())},C=v=>{for(let b of v)d.has(b.id)||(p.add(b.id),a.push(b));f()},L=sn(u,i);for(let v of L)A(v);let y=0,w=0,I=(v,b=!0)=>{if(v.length===0)return;let k=JSON.stringify(v),O=v.map(V=>V.id),E;try{E=fetch(s,{method:"POST",keepalive:!0,body:k,headers:{"Content-Type":"application/json",Authorization:`Bearer ${c}`}})}catch(V){Ee(v,i,u),C(v),w++,y=Date.now()+Pe(w);return}let oe=V=>{if(wt(V)!=="retry"){if(!V.ok&&b){let te=v.filter(ne=>ne.eventType!=="pageview");if(te.length>0&&te.length<v.length){m(v.filter(ne=>ne.eventType==="pageview").map(ne=>ne.id)),I(te,!1);return}}m(O),w=0,y=0;return}Ee(v,i,u),C(v),w++,y=Date.now()+Pe(w)};E instanceof Promise?E.then(oe).catch(()=>{Ee(v,i,u),C(v),w++,y=Date.now()+Pe(w)}):oe(E)},N=typeof TextEncoder!="undefined"?new TextEncoder:null,x=v=>N?N.encode(v).length:v.length,D=v=>{let b=[],k=2;for(let O of v){let E=x(JSON.stringify(O))+1;if(b.length>0&&k+E>Pr||b.length>=l)break;b.push(O),k+=E}return b},K=()=>{try{if(Date.now()<y)return;for(;a.length>0&&!(Date.now()<y);){let v=a.filter(k=>!d.has(k.id));if(a.length=0,v.length===0)break;let b=D(v);if(b.length===0)break;b.length<v.length&&a.push(...v.slice(b.length)),I(b)}}catch(v){}},j=!0,Z=null;Z=setInterval(()=>{j&&K()},o);let q=()=>{document.visibilityState==="hidden"&&K()},U=()=>{K()};return document.addEventListener("visibilitychange",q),window.addEventListener("pagehide",U),{push(v){A(v),a.length>=l&&K()},flush:K,destroy(){j=!1,Z!==null&&(clearInterval(Z),Z=null),document.removeEventListener("visibilitychange",q),window.removeEventListener("pagehide",U),K()}}}var Br=200;function cn(e){return`_snt_goal_retry_${e.slice(0,12)}`}var Nr={send:()=>{},flush:()=>{},destroy:()=>{}};function $r(e){var t,n,r;if(typeof window=="undefined")return Nr;let o=(t=e.flushIntervalMs)!=null?t:5e3,l=(n=e.maxRetrySize)!=null?n:100,i=(r=e.maxPerFlush)!=null?r:5,s=cn(e.apiKey),c=[],u=new Set,a=new Set,d=[],g=0,m=0,p=!1,f=x=>{for(u.delete(x.id),a.has(x.id)||(a.add(x.id),d.push(x.id));d.length>Br;){let D=d.shift();D&&a.delete(D)}an([x.id],s)},A=x=>{Ee([x],l,s),!a.has(x.id)&&!u.has(x.id)&&(u.add(x.id),c.push(x)),Date.now()>=g&&(m++,g=Date.now()+Pe(m))},C=x=>{let D;try{D=fetch(e.url,{method:"POST",keepalive:!0,body:x.body,headers:e.headers})}catch(j){A(x);return}let K=j=>{var Z;let q=wt(j);if(q==="retry"){A(x);return}q==="dropped"&&((Z=e.onDrop)==null||Z.call(e,x,j.status)),f(x),m=0,g=0};D instanceof Promise?D.then(K).catch(()=>A(x)):K(D)},L=()=>{try{if(p||Date.now()<g)return;let x=0;for(;c.length>0&&x<i&&!(Date.now()<g);){let D=c.shift();u.delete(D.id),!a.has(D.id)&&(x++,C(D))}}catch(x){}},y=sn(s,l);for(let x of y)u.has(x.id)||(u.add(x.id),c.push(x));y.length>0&&Ee(y,l,s);let w=setInterval(L,o),I=()=>{document.visibilityState==="hidden"&&L()},N=()=>L();return document.addEventListener("visibilitychange",I),window.addEventListener("pagehide",N),{send(x){if(!p&&!(a.has(x.id)||u.has(x.id))){if(Date.now()<g){Ee([x],l,s),u.add(x.id),c.push(x);return}C(x)}},flush:L,destroy(){clearInterval(w),document.removeEventListener("visibilitychange",I),window.removeEventListener("pagehide",N),L(),p=!0}}}var Kr=1800*1e3;function Je(e,t){return`${encodeURIComponent(e)}:${encodeURIComponent(t)}`}function jr(e=Kr,t){let n=new Map,r=`_snt_asgn${He(t)}_`,o=(c,u)=>`${r}${encodeURIComponent(c)}:${encodeURIComponent(u)}`,l=c=>{let u=c.slice(r.length),a=u.indexOf(":");if(a<0)return null;try{return{componentId:decodeURIComponent(u.slice(0,a)),segment:decodeURIComponent(u.slice(a+1))}}catch(d){return null}},i=()=>{try{let c=[];for(let u=0;u<localStorage.length;u++){let a=localStorage.key(u);a!=null&&a.startsWith(r)&&c.push(a)}return c}catch(c){return[]}},s=c=>c.assignedAt+(c.ttlMs&&c.ttlMs>0?c.ttlMs:e)<Date.now();return typeof window!="undefined"&&(()=>{for(let c of i())try{let u=localStorage.getItem(c);if(!u)continue;let a=JSON.parse(u);if(s(a)){localStorage.removeItem(c);continue}let d=l(c);if(!d)continue;n.set(Je(d.componentId,d.segment),a)}catch(u){}})(),{get(c,u){let a=n.get(Je(c,u));return a?s(a)?(n.delete(Je(c,u)),null):a:null},set(c,u,a){let d=Je(c,u);n.set(d,a);try{localStorage.setItem(o(c,u),JSON.stringify(a))}catch(g){}},clear(){n.clear();for(let c of i())try{localStorage.removeItem(c)}catch(u){}}}}var Ze="_snt_snap:",Gr=["low","medium","high"];function De(e){try{let t=localStorage.getItem(Ze+e);if(!t)return null;let n=JSON.parse(t);return!n||typeof n!="object"||n.v!==1||typeof n.persona!="string"||typeof n.band!="string"||!Gr.includes(n.band)||typeof n.slots!="object"||n.slots===null||Array.isArray(n.slots)||!(n.layoutOrder===null||Array.isArray(n.layoutOrder))||typeof n.savedAt!="number"||!(n.slotConfig===void 0||typeof n.slotConfig=="object"&&n.slotConfig!==null&&!Array.isArray(n.slotConfig))?null:n}catch(t){return null}}function Me(e,t){try{localStorage.setItem(Ze+e,JSON.stringify(t))}catch(n){}}var vt="[sentient] No API key configured \u2014 nothing is being learned. Set NEXT_PUBLIC_SENTIENT_API_KEY or pass localMode: true for local development.",un="[sentient] Local mode \u2014 decisions are simulated on-device and nothing is sent over the network. Add an API key to learn from real traffic.",nn=!1,Ye=!1;function Ur(){var e;try{return(e=new URLSearchParams(window.location.search).get("sentient_persona"))!=null?e:void 0}catch(t){return}}function zr(e){var t;let n=on({ssrSessionId:e.ssrSessionId,apiKey:e.apiKey}),r=(t=n.getSessionId())!=null?t:"local",o=Ur(),l=Promise.resolve().then(()=>(Zt(),Xt)).then(a=>{let d=a;return d.LOCAL_ENGINE_AVAILABLE?(nn||(nn=!0,console.info(un)),d):(Ye||(Ye=!0,console.error(vt)),null)}).catch(()=>(Ye||(Ye=!0,console.error(vt)),null)),i=null,s={low:.15,medium:.5,high:.85},c=(()=>{var a;if(e.initialPersona)return _({},e.initialPersona);let d=De(e.apiKey||"local");return d?{persona:d.persona,confidence:(a=s[d.band])!=null?a:.15}:null})();function u(a){let d=document.documentElement;d.dataset.sentientPersona===void 0&&(d.dataset.sentientPersona=a.persona,d.dataset.sentientConfidence=we(a.confidence))}return{isLocal:!0,async decide(a){var d,g,m;let p=await l;if(!p)return null;let f=p.createLocalEngine({sessionId:r,forcedPersona:o}).decide(a);return i=be(_({},f),{layoutOrder:(g=(d=f.layoutOrder)!=null?d:i==null?void 0:i.layoutOrder)!=null?g:null,slots:_(_({},(m=i==null?void 0:i.slots)!=null?m:{}),f.slots)}),Me(e.apiKey||"local",{v:1,persona:i.persona,band:we(i.confidence),slots:i.slots,layoutOrder:i.layoutOrder,savedAt:Date.now()}),u(f),f},getSlotResult(a){var d,g,m;return(m=(g=i==null?void 0:i.slots[a])!=null?g:(d=e.initialSlots)==null?void 0:d[a])!=null?m:null},getPersona(){let a=i!=null?i:c;return a?{persona:a.persona,confidence:a.confidence,band:we(a.confidence)}:null},async assign(a,d){var g;let m=await l;return!m||!d||d.length===0?d!=null&&d[0]?{variantId:d[0],assignmentTtlMs:0}:null:{variantId:(g=m.createLocalEngine({sessionId:r,forcedPersona:o}).decide({components:[{id:a,variantIds:d}]}).assignments[a])!=null?g:d[0],assignmentTtlMs:0}},track:()=>{},goal:()=>{},componentGoal:()=>{},identify:()=>{},getAssignment:()=>null,fetchWeights:()=>Promise.resolve([]),getGraph:()=>({pageNodes:[],capturedAt:0}),dispose:()=>{},destroy:()=>n.destroy()}}function Be(e,t,n,r){let o=[];{let l=!1,i=[],s=()=>{if(l)return;let c=Date.now();for(i.push(c);i.length>0&&c-i[0]>500;)i.shift();i.length>=3&&(l=!0,e("rage_click"))};t.addEventListener("click",s),o.push(()=>t.removeEventListener("click",s))}{let l=!1,i=s=>{if(l||!(s.target instanceof Node)||!t.contains(s.target)&&t!==s.target)return;l=!0;let c=typeof window!="undefined"?window.getSelection():null,u=c?c.toString().length:0;e("text_copy",{selectionLength:u})};document.addEventListener("copy",i),o.push(()=>document.removeEventListener("copy",i))}{let l=!1,i=!1,s=null,c=()=>{s!==null&&(clearTimeout(s),s=null)},u=()=>{l||!i||(c(),s=setTimeout(()=>{!l&&i&&(l=!0,e("scroll_hesitation"))},3e3))},a=()=>{c(),u()},d=m=>{for(let p of m)i=p.intersectionRatio>.3,i?u():c()},g=new IntersectionObserver(d,{threshold:[.3]});g.observe(t),window.addEventListener("scroll",a,{passive:!0}),o.push(()=>{g.disconnect(),window.removeEventListener("scroll",a),c()})}if((r==null?void 0:r.tabLoss)!==!1){let l=!1,i=n!=null?n:Date.now(),s=()=>{if(l||document.visibilityState!=="hidden")return;let c=Date.now()-i;c<15e3&&(l=!0,e("tab_loss",{timeOnPage:c}))};document.addEventListener("visibilitychange",s),o.push(()=>document.removeEventListener("visibilitychange",s))}return()=>{for(let l of o)l()}}var dn="https://api.sentient-ui.com/v1/events",re=new Map,fn=null;function qr(e){return"value"in e||"currency"in e||"externalId"in e||"metadata"in e||"weight"in e||"stepIndex"in e}var Fr=3;function yt(){return rn()}function Xe(){var e;if(typeof window!="undefined")return((e=window.location)==null?void 0:e.pathname)||void 0}function Wr(){let e=new WeakMap,t=new Map,n=!1,r=(s,c,u)=>{let a=s.get(c);return u===null?a?!0:(s.set(c,new Set),!1):a?a.has(u)?!0:(a.add(u),!1):(s.set(c,new Set([u])),!1)},o=typeof window!="undefined"&&"event"in window,l=()=>{if(!o)return;let s=window.event;return typeof Event=="function"&&s instanceof Event?s:void 0},i=()=>{if(o){Promise.resolve().then(()=>{n=!1,t.clear()});return}let s=!1,c=()=>{s||(s=!0,n=!1,t.clear())};if(setTimeout(c,0),typeof MessageChannel=="function"){let u=new MessageChannel;u.port1.onmessage=()=>{u.port1.close(),u.port2.close(),c()},u.port2.postMessage(0)}};return{firedBefore(s,c){let u=l();if(u){let d=e.get(u);return d||(d=new Map,e.set(u,d)),r(d,s,c)}let a=r(t,s,c);return!a&&!n&&(n=!0,i()),a}}}var pn=new Set;function Hr(e,t,n){let r=typeof window=="undefined"?null:window.history;if(!r)return()=>{};let o=!1,l,i=()=>{if(o)return;let u=Xe();!u||u===l||(l=u,e.track({projectId:t,componentId:"__page__",eventType:"pageview",payload:{}}),n(`${t}:${u}`))},s=[];for(let u of["pushState","replaceState"]){let a=r[u],d=function(...g){let m=a.apply(this,g);return i(),m};r[u]=d,s.push([u,a,d])}window.addEventListener("popstate",i);let c=Xe();return c&&pn.has(`${t}:${c}`)?l=c:i(),()=>{if(!o){o=!0,window.removeEventListener("popstate",i);for(let[u,a,d]of s)r[u]===d&&(r[u]=a)}}}var Re={track:()=>{},goal:()=>{},componentGoal:()=>{},identify:()=>{},getAssignment:()=>null,assign:()=>Promise.resolve(null),decide:()=>Promise.resolve(null),getSlotResult:()=>null,getPersona:()=>null,fetchWeights:()=>Promise.resolve([]),getGraph:()=>({pageNodes:[],capturedAt:0}),dispose:()=>{},destroy:()=>{}};function Vr(){try{return Vt(window.location.search)}catch(e){return{utmParams:{},clickIds:{}}}}function gn(e){return e.replace(/\/events\/?$/,"")}function Se(){return typeof navigator!="undefined"&&navigator.globalPrivacyControl===!0?!0:[typeof navigator!="undefined"?navigator.doNotTrack:void 0,typeof window!="undefined"?window.doNotTrack:void 0,typeof navigator!="undefined"?navigator.msDoNotTrack:void 0].some(e=>e==="1"||e==="yes")}function St(e){var t;if(typeof window=="undefined")return;let n=e!=null?e:fn;if(!n){console.warn("[sentient] grantConsent() called before init()");return}let r=re.get(n);if(!r){console.warn("[sentient] grantConsent() called before init()");return}let{config:o,upgrade:l,reinit:i}=r;if(!l){r.upgradeBlockedReason&&console.warn(r.upgradeBlockedReason);return}if(o.respectDoNotTrack!==!1&&Se())return;let s=(i!=null?i:Ne)(be(_({},o),{consent:!0}));l(s);let c=(t=re.get(n))==null?void 0:t.dispose;re.set(n,{config:be(_({},o),{consent:!0}),upgrade:null,dispose:c})}function Jr(e){var t;let n=e.preConsentBehavior==="statistical_winner",r=gn((t=e.ingestUrl)!=null?t:dn),o={"Content-Type":"application/json",Authorization:`Bearer ${e.apiKey}`},l=new Map,i=new Map,s={track:()=>{},goal:()=>{},componentGoal:()=>{},identify:()=>{},getAssignment:()=>null,fetchWeights:()=>Promise.resolve([]),assign(a,d,g){if(!n)return Promise.resolve(null);let m=l.get(a);return m?Promise.resolve(m):bt(i,a,async()=>{try{let p=new URLSearchParams({componentId:a});for(let C of d!=null?d:[])p.append("variantIds[]",C);let f=await fetch(`${r}/winner?${p.toString()}`,{headers:o});if(!f.ok)return d!=null&&d[0]?{variantId:d[0],assignmentTtlMs:0}:null;let A={variantId:(await f.json()).variantId,assignmentTtlMs:0};return l.set(a,A),A}catch(p){return d!=null&&d[0]?{variantId:d[0],assignmentTtlMs:0}:null}})},decide:()=>Promise.resolve(null),getSlotResult:()=>null,getPersona:()=>null,getGraph:()=>({pageNodes:[],capturedAt:0}),dispose:()=>{},destroy:()=>{}},c={track:a=>s.track(a),goal:((a,d,g,m)=>s.goal(a,d,g,m)),componentGoal:(a,d,g)=>s.componentGoal(a,d,g),identify:a=>s.identify(a),getAssignment:(a,d)=>s.getAssignment(a,d),assign:(a,d,g,m)=>s.assign(a,d,g,m),decide:a=>s.decide(a),getSlotResult:a=>s.getSlotResult(a),getPersona:()=>s.getPersona(),fetchWeights:()=>s.fetchWeights(),getGraph:()=>s.getGraph(),dispose:()=>s.dispose(),destroy:()=>s.destroy()};function u(a){s=a}return{proxy:c,setInner:u}}function bt(e,t,n){let r=e.get(t);if(r)return r;let o=(async()=>{try{return await n()}finally{e.delete(t)}})();return e.set(t,o),o}function Ne(e){var t,n,r,o,l,i,s,c,u;if(typeof window=="undefined")return Re;fn=e.apiKey||"local";let a=re.get(e.apiKey||"local");if(a!=null&&a.dispose)try{a.dispose()}catch(h){}let d=e.respectDoNotTrack!==!1&&Se(),g=e.consent===!1||d,m=typeof e.apiKey=="string"&&e.apiKey.startsWith("pk_");if(e.localMode===!0||!m&&e.localMode!==!1)return re.set(e.apiKey||"local",{config:e,upgrade:null,upgradeBlockedReason:"[sentient] grantConsent(): this client is keyless/local \u2014 there is no hosted client to upgrade to. Configure a pk_ API key to enable tracking."}),g?Re:zr(e);if(g){if(!e.apiKey||!e.apiKey.startsWith("pk_"))return e.preConsentBehavior==="statistical_winner"&&console.warn("[sentient] init() called with an invalid apiKey \u2014 expected a pk_ public key. SDK disabled."),re.set(e.apiKey||"local",{config:e,upgrade:null,upgradeBlockedReason:"[sentient] grantConsent(): the client was initialized with an invalid apiKey (expected a pk_ public key) \u2014 consent cannot enable tracking."}),Re;let{proxy:h,setInner:S}=Jr(e);return re.set(e.apiKey,{config:e,upgrade:d?null:S}),h}if(!e.apiKey||!e.apiKey.startsWith("pk_"))return console.warn("[sentient] init() called with an invalid apiKey \u2014 expected a pk_ public key. SDK disabled."),Re;if(e.ingestUrl==="")return console.warn("[sentient] init() called with an empty ingestUrl. SDK disabled."),Re;let p=(t=e.ingestUrl)!=null?t:dn,f=Date.now(),A=on({ssrSessionId:e.ssrSessionId,apiKey:e.apiKey}),C=jr(void 0,e.apiKey),L=Mr({ingestUrl:p,apiKey:e.apiKey}),y=gn(p),w={"Content-Type":"application/json",Authorization:`Bearer ${e.apiKey}`},I=new Set,N=$r({url:`${y}/goals`,apiKey:e.apiKey,headers:w,onDrop:(h,S)=>{if(!e.debug){if(I.has(S))return;I.add(S)}console.warn(`[sentient] goal dropped (HTTP ${S}) \u2014 this will not be retried. `+(S===400?"The session was not found: call init() and let the session upsert complete before firing goals.":S===401||S===403?"Check the API key and that this origin is on the project allowlist.":"See the response status for the cause."),h)}}),x=Ft((n=navigator.userAgent)!=null?n:""),D=window.location.origin,K=Wt((r=document.referrer)!=null?r:"",D),j=(o=e.sessionSegment)!=null?o:`${x}:${K}`,Z=new Map,q=new Map,U=new Map,v=null,b=h=>{for(let S of h)U.has(S.id)||U.set(S.id,mt(S))};if(e.initialSlots)for(let[h,S]of Object.entries(e.initialSlots))U.set(h,S);let k=De(e.apiKey);if(k)for(let[h,S]of Object.entries(k.slots))U.has(h)||U.set(h,S);let O={low:.15,medium:.5,high:.85};if(e.initialPersona)v=_({},e.initialPersona);else{let h=document.documentElement.dataset;h.sentientPersona?v={persona:h.sentientPersona,confidence:(i=O[(l=h.sentientConfidence)!=null?l:"low"])!=null?i:.15}:k&&(v={persona:k.persona,confidence:(s=O[k.band])!=null?s:.15})}if(e.initialAssignments)for(let[h,S]of Object.entries(e.initialAssignments))C.set(h,j,{variantId:S,assignedAt:Date.now(),segment:j,confidence:1});let E=Promise.resolve(),oe=A.getSessionId();if(oe){let h=Ht((c=document.referrer)!=null?c:""),{utmParams:S,clickIds:M}=Vr(),ee=_(_(_(_({sessionId:oe,deviceClass:x,trafficSource:K,referrerDomain:h,utmParams:S,clickIds:M,timeOfDay:Jt(new Date),dayOfWeek:["sun","mon","tue","wed","thu","fri","sat"][new Date().getDay()],ephemeral:A.isEphemeral(),automation:typeof navigator!="undefined"&&navigator.webdriver===!0||qt((u=navigator.userAgent)!=null?u:"")},e.userId?{userId:e.userId}:{}),e.persona?{persona:e.persona}:{}),e.country?{country:e.country}:{}),e.sdk?{sdk:e.sdk.name,sdkVersion:e.sdk.version}:{}),F=async()=>{for(let T=0;;T++){try{let B=await fetch(`${y}/sessions`,{method:"POST",keepalive:!0,body:JSON.stringify(ee),headers:w});if(B.status===402){console.warn("[SentientUI] Session limit exceeded for this project. The bandit will stop learning until the limit resets. Upgrade at sentient-ui.com/pricing");return}if(B.ok||wt(B)==="dropped")return}catch(B){}if(T>=Fr){console.warn("[SentientUI] Could not register the session after retries. Conversions in this visit may not be recorded.");return}await new Promise(B=>setTimeout(B,Pe(T+1)))}};try{E=F()}catch(T){}}e.debug&&(console.log("[sentient] initialized",{context:e.context}),window.__sentient={client:null,queue:L});let V=Wr(),te=null,ne=!1,ie={goal(h,S={},M=1,ee=0){var F,T,B,J,Y,ve,fe;let Oe=A.getSessionId();if(!Oe)return;let X=qr(S)?S:{metadata:S},Le=[h,(F=X.externalId)!=null?F:"",(T=X.stepIndex)!=null?T:ee,(B=X.weight)!=null?B:M].join("\0"),R=X.value!==void 0?`${X.value}\0${(J=X.currency)!=null?J:""}`:null;if(V.firedBefore(Le,R)){e.debug&&console.log(`[sentient] goal("${h}") already recorded for this action \u2014 not sent twice`);return}let le=yt(),qe={sessionId:Oe,name:h,metadata:(Y=X.metadata)!=null?Y:{},weight:(ve=X.weight)!=null?ve:M,stepIndex:(fe=X.stepIndex)!=null?fe:ee,goalId:le,value:X.value,currency:X.currency,externalId:X.externalId};e.debug&&console.log("[sentient] goal",qe);let W={id:le,body:JSON.stringify(qe)};E.then(()=>N.send(W))},componentGoal(h,S,M){var ee,F,T;let B=A.getSessionId();if(!B)return;let J=C.get(h,j),Y=J?null:(ee=U.get(h))!=null?ee:null;if(!J&&Y===null){e.debug&&console.warn(`[sentient] componentGoal("${h}"): no assignment or slot decision yet \u2014 render its <Adaptive>/adaptive hook or call assign()/decide() before recording a goal.`);return}let ve=J?J.variantId:Yt(Y),fe={id:yt(),sessionId:B,projectId:e.apiKey,componentId:h,variantId:ve,eventType:"goal_achieved",goalType:S,payload:_({reward:(F=M==null?void 0:M.reward)!=null?F:1,goalValue:M==null?void 0:M.value,currency:M==null?void 0:M.currency},(T=M==null?void 0:M.metadata)!=null?T:{}),timestamp:Date.now(),timeInSession:Date.now()-f,path:Xe()};e.debug&&console.log("[sentient] componentGoal",fe),E.then(()=>L.push(fe))},identify(h){let S=A.getSessionId();S&&E.then(()=>{fetch(`${y}/sessions`,{method:"POST",keepalive:!0,body:JSON.stringify({sessionId:S,userId:h,ephemeral:A.isEphemeral()}),headers:w}).catch(()=>{})})},track(h){let S=A.getSessionId();if(!S)return;let M=be(_({path:Xe()},h),{id:yt(),sessionId:S,timestamp:Date.now(),timeInSession:Date.now()-f});e.debug&&console.log("[sentient] track",M),E.then(()=>L.push(M))},getAssignment(h,S){return C.get(h,S)},async assign(h,S,M,ee){let F=A.getSessionId();if(!F)return null;let T=C.get(h,j);if(T&&(S!=null&&S.length||T.content!==void 0)){let B=T.ttlMs&&T.ttlMs>0?Math.max(0,T.assignedAt+T.ttlMs-Date.now()):0;return{variantId:T.variantId,assignmentTtlMs:B,content:T.content}}return bt(Z,h,async()=>{await E;try{let B={sessionId:F,componentId:h,variantIds:S};ee!==void 0?B.agentDataByVariant=ee:M!==void 0&&(B.agentData=M);let J=await fetch(`${y}/assign`,{method:"POST",body:JSON.stringify(B),headers:w});if(!J.ok)return null;let Y=await J.json();return C.set(h,j,_({variantId:Y.variantId,assignedAt:Date.now(),segment:j,confidence:1,content:Y.content},Y.assignmentTtlMs&&Y.assignmentTtlMs>0?{ttlMs:Y.assignmentTtlMs}:{})),Y}catch(B){return null}})},async decide(h){var S,M;let ee=A.getSessionId();if(!ee)return null;let F=(S=h.slots)!=null?S:[],T={sessionId:ee};h.sections&&h.sections.length>0&&(T.sections=h.sections.map(J=>({id:J}))),T.components=(M=h.components)!=null?M:[],F.length>0&&(T.slots=F.map(gt)),h.slotsFrom==="registry"&&(T.slotsFrom="registry"),h.v&&(T.v=h.v),e.persona&&(T.persona=e.persona);let B=JSON.stringify(T);return bt(q,B,async()=>{var J,Y,ve,fe,Oe,X;await E;try{let Le=await fetch(`${y}/decide`,{method:"POST",body:B,headers:w});if(!Le.ok)return b(F),null;let R=await Le.json(),le={};for(let W of F){let pe=(J=R.slots)==null?void 0:J[W.id];if(pe!==void 0){le[W.id]=pe,U.set(W.id,pe);continue}let Tt=U.get(W.id);if(Tt!==void 0)le[W.id]=Tt;else{let Rt=mt(W);le[W.id]=Rt,U.set(W.id,Rt)}}if(R.slots)for(let[W,pe]of Object.entries(R.slots))W in le||(le[W]=pe,U.set(W,pe));let qe=v!=null&&v.persona!=="unknown";R.persona&&!(R.persona==="unknown"&&qe)?v={persona:R.persona,confidence:(Y=R.confidence)!=null?Y:0}:v||(v={persona:"unknown",confidence:0});for(let[W,pe]of Object.entries((ve=R.assignments)!=null?ve:{}))C.set(W,j,{variantId:pe,assignedAt:Date.now(),segment:j,confidence:1});return Me(e.apiKey,_(_({v:1,persona:v.persona,band:we(v.confidence),slots:Object.fromEntries(U),layoutOrder:(fe=R.layoutOrder)!=null?fe:null,savedAt:Date.now()},R.slotConfig?{slotConfig:R.slotConfig}:{}),R.palette?{palette:R.palette}:{})),_(_(_(_({layoutOrder:(Oe=R.layoutOrder)!=null?Oe:null,assignments:(X=R.assignments)!=null?X:{},slots:le,persona:v.persona,confidence:v.confidence},R.slotConfig?{slotConfig:R.slotConfig}:{}),R.goals?{goals:R.goals}:{}),R.sectionMap?{sectionMap:R.sectionMap}:{}),R.palette?{palette:R.palette}:{})}catch(Le){return b(F),null}})},getSlotResult(h){var S;return(S=U.get(h))!=null?S:null},getPersona(){return v?{persona:v.persona,confidence:v.confidence,band:we(v.confidence)}:null},async fetchWeights(){var h;try{let S=await fetch(`${y}/weights`,{headers:w});return S.ok?(h=(await S.json()).components)!=null?h:[]:[]}catch(S){return[]}},getGraph(){return{pageNodes:[],capturedAt:0}},dispose(){var h;te==null||te(),ne=!0,L.destroy(),N.destroy(),((h=re.get(e.apiKey))==null?void 0:h.dispose)===ie.dispose&&re.delete(e.apiKey),e.debug&&console.log("[sentient] disposed")},destroy(){var h;te==null||te(),ne=!0,L.destroy(),N.destroy(),A.destroy(),C.clear(),((h=re.get(e.apiKey))==null?void 0:h.dispose)===ie.dispose&&re.delete(e.apiKey);try{localStorage.removeItem(Ze+e.apiKey),localStorage.removeItem(ln(e.apiKey)),localStorage.removeItem(cn(e.apiKey))}catch(S){}e.debug&&console.log("[sentient] destroyed")}};if(re.set(e.apiKey,{config:e,upgrade:null,dispose:ie.dispose}),te=Hr(ie,e.apiKey,h=>{E.then(()=>{ne||pn.add(h)})}),e.debug){let h=window;h.__sentient&&(h.__sentient.client=ie)}return ie}var Yr=["data-sentient-id","data-testid","data-test","data-id","data-name","data-cy"];function At(e){var t;return((t=e.textContent)!=null?t:"").replace(/\s+/g," ").trim()}function Xr(e){return{tag:e.tagName.toLowerCase(),text:At(e).slice(0,40)}}function mn(e){return e.replace(/["\\\]]/g,"\\$&")}function $e(e,t){try{return e.querySelectorAll(t).length===1}catch(n){return!1}}function hn(e,t){var n;let r=e.tagName.toLowerCase();if(!r)return null;let o=((n=e.getAttribute("class"))!=null?n:"").split(/\s+/).filter(s=>/^[a-zA-Z][\w-]*$/.test(s)),l=[r,...o.map(s=>`${r}.${s}`)];for(let s of l)if($e(t,s))return s;let i=e.parentElement;if(i&&i!==t){let s=hn(i,t);if(s){for(let d of l){let g=`${s} > ${d}`;if($e(t,g))return g}let c=Array.from(i.children).filter(d=>d.tagName.toLowerCase()===r),u=c.indexOf(e),a=c.some(d=>d!==e&&At(d)!==At(e));if(u>=0&&a){let d=`${s} > ${r}:nth-of-type(${u+1})`;if($e(t,d))return d}}}return null}function yn(e,t){let n=Xr(e),r=e.getAttribute("id");if(r&&$e(t,`#${mn(r)}`))return{v:1,id:r,fingerprint:n};for(let l of Yr){let i=e.getAttribute(l);if(i&&$e(t,`[${l}="${mn(i)}"]`))return{v:1,dataAttr:{name:l,value:i},fingerprint:n}}let o=hn(e,t);return o?{v:1,selector:o,fingerprint:n}:null}Te();var bn=["pricing","hero","social_proof","cta","features","faq","comparison","trust","navigation","generic"],Zr={banner:"hero",navigation:"navigation",contentinfo:"footer"};function Qr(e){let t=e.ariaRole?Zr[e.ariaRole.toLowerCase()]:void 0;if(t)return t;if(e.tag==="nav")return"navigation";if(e.tag==="footer")return"footer";if(e.tag==="header")return e.actionCount>=5?"navigation":"hero";let n=`${e.idClass} ${e.headingText}`.toLowerCase();return/\b(navbar|nav-bar|navigation|site-nav|main-nav|topbar|footer)\b/.test(n)?/footer/.test(n)?"footer":"navigation":/\b(hero|masthead|jumbotron)\b/i.test(e.idClass)?"hero":null}function eo(e){return e.actionCount>=1&&e.textLength>0&&e.textLength<200?"cta":"generic"}var to=[["pricing",/\b(pricing|price list|per month|\/mo|subscriptions?)\b|\bplans?\b(?=[^.]{0,40}(from|start|month|year|[$€£]))/i],["faq",/\bfaq\b|frequently asked|common questions?/i],["comparison",/\b(compare|comparison|versus)\b|\bvs\./i],["social_proof",/\b(reviews?|ratings?|testimonial|brands?|galler(y|ies)|logos)\b|trusted by|loved by|case stud|what our customers say/i],["trust",/\b(insurance|warrant(y|ies)|guarantees?|certifi|accredit|security|privacy|compliance|gdpr|encrypt)\b|why choose|about us|our team/i],["cta",/\b(book|booking|reserve|appointments?|newsletter|subscribe)\b|contact us|get in touch|opening hours/i],["features",/\b(features?|benefits?|capabilit|services?|repairs?|menus?|products?)\b|how it works|our process|what we (do|offer)|what you get/i]],xt=[["pricing",/(?:[$€£]\s?\d[\d,.]*\s*(?:\/|per\s)\s*(?:mo|month|yr|year|seat|user))|(?:\b(?:starter|basic|pro|growth|premium|enterprise)\b[^.]{0,60}[$€£]\s?\d)/i],["social_proof",/(?:★{2,})|(?:\b\d(?:\.\d)?\s*(?:out of|\/)\s*5\b)|(?:\brated\b)|(?:["“][^"”]{20,160}["”]\s*[—–-]\s*[A-Z][a-z]+)/],["trust",/\b(?:money[- ]back guarantee|free returns?|returns? within|refund(?:s)? within|encrypted|soc ?2|iso ?27001|gdpr[- ]compliant|cancel anytime)\b/i],["comparison",/\b(?:vs|versus)\b\.?[^.!?]{0,80}\b(?:compare|comparison|plans?|features?|alternative)\b|\bhow (?:we|it) compares?\b/i]],vn={navigation:"navigation",footer:"navigation",hero:"hero",cta:"cta",generic:"generic"};function no(e){var t;let n=e.querySelector("h1, h2, h3");return((t=n==null?void 0:n.textContent)!=null?t:"").slice(0,160)}function wn(e){var t,n;let r=Qr(e);if(r)return{type:(t=vn[r])!=null?t:"generic",strength:"strong"};let o=`${e.idClass} ${e.headingText}`.toLowerCase();for(let[i,s]of to)if(s.test(o))return{type:i,strength:"strong"};for(let[i,s]of xt)if(s.test(e.bodyText))return{type:i,strength:"strong"};let l=eo(e);return{type:(n=vn[l])!=null?n:"generic",strength:"weak"}}function Sn(e){var t,n;let r=((t=e.textContent)!=null?t:"").replace(/\s+/g," ").trim(),o=e.getAttribute("role");return _({tag:e.tagName.toLowerCase(),idClass:`${e.id} ${String((n=e.className)!=null?n:"")}`,headingText:no(e),bodyText:r.slice(0,2e3),actionCount:e.querySelectorAll('a, button, [role="button"]').length,textLength:r.length},o?{ariaRole:o}:{})}Te();var ro="section, header, footer, nav, main > div, [data-sentient-section]",oo=2e4;function io(e){let t=Array.from(e.querySelectorAll(ro)),n=t.filter(r=>t.filter(o=>o!==r&&r.contains(o)).length<2);return n.filter(r=>!n.some(o=>o!==r&&o.contains(r)))}function so(e,t,n,r){try{fetch(`${t}/v1/section-map`,{method:"POST",keepalive:!0,headers:{"content-type":"application/json",authorization:`Bearer ${e}`},body:JSON.stringify({pageUrl:n,sections:r})}).catch(()=>{})}catch(o){}}var An=()=>{};function xn(e,t){var n,r,o,l,i,s,c,u,a,d,g,m;let p=(n=t.doc)!=null?n:typeof document!="undefined"?document:void 0;if(!p||typeof IntersectionObserver=="undefined"||Se()||!t.apiKey||!t.apiKey.startsWith("pk_"))return An;let f=((r=t.apiBase)!=null?r:"https://api.sentient-ui.com").replace(/\/+$/,"").replace(/\/v1$/,""),A=io(p);if(A.length===0)return An;let C=new Map,L=[];for(let b of A){let k=b.getAttribute("data-sentient-type"),O=k&&bn.includes(k)?k:null,E=Sn(b),oe=(l=O!=null?O:(o=t.typeOf)==null?void 0:o.call(t,b))!=null?l:wn(E).type,V=yn(b,p),te=V?`nc-${oe}-${Ut(JSON.stringify({id:(i=V.id)!=null?i:null,dataAttr:(s=V.dataAttr)!=null?s:null,selector:(c=V.selector)!=null?c:null})).toString(36)}`:`nc-${oe}`;C.set(b,te);let ne=xt.filter(([,ie])=>ie.test(E.bodyText)).map(([ie])=>ie);L.push(be(_({componentId:te,semanticType:oe,source:O?"markup":"auto"},V?{locator:V}:{}),{observation:_(_({tag:E.tag,idClass:E.idClass.slice(0,200),headingText:E.headingText,textLength:E.textLength,actionCount:E.actionCount},E.ariaRole?{ariaRole:E.ariaRole}:{}),ne.length>0?{patternFlags:ne}:{})}))}let y=(g=(d=(a=(u=p.defaultView)!=null?u:typeof window!="undefined"?window:void 0)==null?void 0:a.location)==null?void 0:d.pathname)!=null?g:"/";so(t.apiKey,f,y,L);let w=new Map,I=b=>{let k=w.get(b);return k||(k={ms:0,scroll:0,enterAt:null,intersecting:!1},w.set(b,k)),k},N=new IntersectionObserver(b=>{for(let k of b){let O=C.get(k.target);if(!O)continue;let E=I(O);k.isIntersecting?(E.intersecting=!0,E.enterAt=Date.now(),k.intersectionRatio>E.scroll&&(E.scroll=k.intersectionRatio)):(E.intersecting=!1,E.enterAt!=null&&(E.ms+=Date.now()-E.enterAt,E.enterAt=null))}},{threshold:[0,.25,.5,.75,1]});for(let b of C.keys())N.observe(b);let x=()=>{let b=Date.now();for(let[k,O]of w)if(O.enterAt!=null&&(O.ms+=b-O.enterAt,O.enterAt=null),!(O.ms<=0)){try{e.track({projectId:t.apiKey,componentId:k,eventType:"dwell",payload:{dwell_time:Math.round(O.ms),scroll_depth:Number(O.scroll.toFixed(2))}})}catch(E){}O.ms=0}},D=()=>{if(p.hidden)x();else{let b=Date.now();for(let k of w.values())k.intersecting&&(k.enterAt=b)}},K=!1,j=b=>{if(x(),b!=null&&b.persisted){K=!0;return}try{N.disconnect()}catch(k){}},Z=b=>{if(!(b!=null&&b.persisted)||!K)return;K=!1;let k=Date.now();for(let O of w.values())O.enterAt=O.intersecting&&!p.hidden?k:null};p.addEventListener("visibilitychange",D);let q=(m=p.defaultView)!=null?m:typeof window!="undefined"?window:void 0;q==null||q.addEventListener("pagehide",j),q==null||q.addEventListener("pageshow",Z);let U=setInterval(()=>{if(p.hidden||K)return;x();let b=Date.now();for(let k of w.values())k.intersecting&&(k.enterAt=b)},oo),v=[];return t.microSignals&&[...C.entries()].forEach(([b,k],O)=>{v.push(Be((E,oe={})=>{try{e.track({projectId:t.apiKey,componentId:k,eventType:"micro_signal",payload:_({signalType:E},oe)})}catch(V){}},b,void 0,{tabLoss:O===0}))}),()=>{x(),clearInterval(U),p.removeEventListener("visibilitychange",D),q==null||q.removeEventListener("pagehide",j),q==null||q.removeEventListener("pageshow",Z);for(let b of v)b();try{N.disconnect()}catch(b){}}}var ao=["landing","ecommerce","saas","marketplace"];function lo(e){if(typeof e!="object"||e===null||Array.isArray(e))return null;let t=Object.entries(e);if(t.length<1||t.length>4)return null;let n={};for(let[r,o]of t){if(!Array.isArray(o)||o.length<2||o.length>6||!o.every(l=>typeof l=="string"))return null;n[r]=o}return n}function co(e){return!Array.isArray(e)||e.length<2||e.length>12||!e.every(t=>typeof t=="string")?null:e}function uo(e){try{return e()}catch(t){return}}function Qe(e){if(typeof e!="object"||e===null)return null;let t=e;if(typeof t.apiKey!="string"||!t.apiKey.startsWith("pk_"))return null;let n=ao.includes(t.context)?t.context:"landing",r={};if(typeof t.slots=="object"&&t.slots!==null&&!Array.isArray(t.slots))for(let[i,s]of Object.entries(t.slots)){if(typeof s!="object"||s===null)continue;let c=s,u=lo(c.dims);if(!u||c.target!==void 0&&typeof c.target!="string")continue;let a=c.arms!==void 0?co(c.arms):null,d={dims:u};typeof c.target=="string"&&(d.target=c.target),a&&(d.arms=a),r[i]=d}let o={apiKey:t.apiKey,context:n,personaAttributes:t.personaAttributes===!0,slots:r};typeof t.consent=="boolean"&&(o.consent=t.consent),(t.preConsentBehavior==="statistical_winner"||t.preConsentBehavior==="control")&&(o.preConsentBehavior=t.preConsentBehavior),t.debug===!0&&(o.debug=!0),typeof t.registry=="boolean"&&(o.registry=t.registry),typeof t.editorSrc=="string"&&(o.editorSrc=t.editorSrc),typeof t.apiBase=="string"&&(o.apiBase=t.apiBase),typeof t.sectionCapture=="boolean"&&(o.sectionCapture=t.sectionCapture);let l=typeof t.persona=="function"?uo(t.persona):t.persona;if(typeof l=="string"&&l.trim()!==""&&(o.persona=l),Array.isArray(t.sections)){let i=t.sections.filter(s=>typeof s=="string"&&s.trim()!=="").slice(0,50);i.length>=2&&(o.sections=i)}return o}function et(e){var n,r,o;let t=(r=(n=e.defaultView)!=null?n:typeof window!="undefined"?window:void 0)==null?void 0:r.location;return(o=t==null?void 0:t.pathname)!=null?o:""}function fo(e,t){var n;if(t.tag&&e.tagName.toLowerCase()!==t.tag.toLowerCase())return!1;if(t.text){let r=((n=e.textContent)!=null?n:"").replace(/\s+/g," ").trim().toLowerCase(),o=t.text.replace(/\s+/g," ").trim().toLowerCase();if(!(r===o||r.startsWith(o)||o.startsWith(r)))return!1}return!0}function kn(e,t){return!!(e!=null&&e.urlMatch)&&!et(t).includes(e.urlMatch)}var po=/^[a-zA-Z_][-a-zA-Z0-9_]*$/;function ge(e,t){var o;if(e.urlMatch&&!et(t).includes(e.urlMatch))return null;let n=[];if(e.id){let l=t.getElementById(e.id);n=l?[l]:[]}if(n.length===0&&((o=e.dataAttr)!=null&&o.name)&&po.test(e.dataAttr.name))try{let l=e.dataAttr.value.replace(/["\\]/g,"\\$&");n=Array.from(t.querySelectorAll(`[${e.dataAttr.name}="${l}"]`))}catch(l){n=[]}if(n.length===0&&e.selector)try{n=Array.from(t.querySelectorAll(e.selector))}catch(l){n=[]}if(n.length!==1)return null;let r=n[0];return e.fingerprint&&!fo(r,e.fingerprint)?null:r}var En={color:"color",background:"background",fontSize:"font-size",fontWeight:"font-weight",textAlign:"text-align",padding:"padding",margin:"margin",borderRadius:"border-radius",width:"width",height:"height",maxWidth:"max-width",border:"border",boxShadow:"box-shadow",opacity:"opacity",lineHeight:"line-height",letterSpacing:"letter-spacing",textTransform:"text-transform",gap:"gap",fontFamily:"font-family"},go=/^(rgb|rgba|hsl|hsla|calc|var|min|max|clamp)$/i;function Cn(e){var r;if(e.trim().length===0||/[;{}<>]/.test(e))return!1;let t=/([A-Za-z-]*)\(/g,n;for(;(n=t.exec(e))!==null;)if(!go.test((r=n[1])!=null?r:""))return!1;return!0}var _n=/^https:\/\//i,In=new Map,me=null;function mo(e){return e.replace(/["\\]/g,"\\$&")}function ho(e){var t;(!me||!me.isConnected)&&(me=e.querySelector("style[data-sentient-ops]"),me||(me=e.createElement("style"),me.setAttribute("data-sentient-ops",""),((t=e.head)!=null?t:e.documentElement).appendChild(me))),me.textContent=[...In.entries()].map(([n,r])=>`[data-snt-e="${mo(n)}"]{${r}}`).join(`
|
|
2
|
-
`)}function On(e,t,n,r){var s;let o=!1,l=(s=t.moveBefore)!=null?s:t.moveAfter;if(l){let c=ge(l,r);!c||c===e||c.parentElement!==e.parentElement||!e.parentElement?o=!0:t.moveBefore?e.parentElement.insertBefore(e,c):e.parentElement.insertBefore(e,c.nextSibling)}typeof t.text=="string"&&(e.textContent=t.text),typeof t.href=="string"&&_n.test(t.href)&&e.setAttribute("href",t.href),typeof t.imageSrc=="string"&&_n.test(t.imageSrc)&&e.setAttribute("src",t.imageSrc),typeof t.imageAlt=="string"&&e.setAttribute("alt",t.imageAlt);let i=[];if(t.hidden&&i.push("display:none !important"),t.style)for(let[c,u]of Object.entries(t.style)){let a=En[c];a&&typeof u=="string"&&Cn(u)&&i.push(`${a}:${u.trim()} !important`)}return i.length>0&&(e.setAttribute("data-snt-e",n),In.set(n,i.join(";")),ho(r)),{anchorMiss:o}}var Ke="data-sentient-block-arm",se=null;function je(e){se=e!=null?e:null}var ue="data-sentient-blocks-hid",tt={none:"0",sm:"8px",md:"16px",lg:"24px"},kt={start:"flex-start",center:"center",end:"flex-end",stretch:"stretch",between:"space-between"},Ln={sm:"0.875em",md:"1em",lg:"1.25em"},yo={sm:"1.25em",md:"1.5em",lg:"2em"},vo={sm:"6px 14px",md:"10px 20px",lg:"14px 28px"},Tn={sm:"8px",md:"16px",lg:"32px"},bo={square:"1 / 1",landscape:"4 / 3",wide:"16 / 9"},wo={normal:"400",medium:"500",bold:"700"};function ce(e,t){for(let[n,r]of Object.entries(t))r!==void 0&&e.style.setProperty(n,r);return e}function Rn(e){return{opacity:e==="muted"?"0.7":void 0,"font-weight":e==="accent"?"600":void 0}}function Pn(e,t){var n,r,o,l,i,s,c,u,a,d,g,m;try{switch(e.type){case"stack":case"grid":{let p=t.createElement("div");if(e.type==="stack"){let f=e;ce(p,{display:"flex","flex-direction":f.direction,gap:(r=tt[(n=f.gap)!=null?n:"md"])!=null?r:tt.md,"align-items":f.align?kt[f.align]:void 0,"justify-content":f.justify?kt[f.justify]:void 0,"flex-wrap":f.wrap?"wrap":void 0})}else{let f=e,A=(l=tt[(o=f.gap)!=null?o:"md"])!=null?l:tt.md;ce(p,{display:"grid","grid-template-columns":`repeat(auto-fit, minmax(max(200px, calc((100% - ${f.columns-1} * ${A}) / ${f.columns})), 1fr))`,gap:A,"align-items":f.align?kt[f.align]:void 0})}for(let f of(i=e.children)!=null?i:[]){let A=Pn(f,t);A&&p.appendChild(A)}return p}case"text":{let p=t.createElement("p");return p.textContent=e.value,ce(p,Q({margin:"0","font-size":e.size?Ln[e.size]:void 0,"font-weight":e.weight?wo[e.weight]:void 0,"text-align":e.align},Rn(e.tone)))}case"heading":{let p=t.createElement(`h${e.level}`);return p.textContent=e.value,ce(p,{margin:"0","font-size":yo[(s=e.size)!=null?s:"md"],"text-align":e.align})}case"button":{let p=t.createElement("a");p.textContent=e.label,p.href=e.href,e.tag&&p.setAttribute("data-sentient-tag",e.tag);let f=(c=e.emphasis)!=null?c:"primary";return ce(p,{display:"inline-block",padding:vo[(u=e.size)!=null?u:"md"],"border-radius":(a=se==null?void 0:se.radius)!=null?a:"8px",font:"inherit","font-size":e.size?Ln[e.size]:void 0,"text-decoration":f==="ghost"?"underline":"none",cursor:"pointer",background:f==="primary"?(d=se==null?void 0:se.primaryBg)!=null?d:"#111827":"transparent",color:f==="primary"?(g=se==null?void 0:se.primaryText)!=null?g:"#ffffff":"inherit",border:f==="secondary"?"1px solid currentColor":"none"})}case"link":{let p=t.createElement("a");return p.textContent=e.label,p.href=e.href,e.tag&&p.setAttribute("data-sentient-tag",e.tag),ce(p,{color:"inherit","text-decoration":"underline"})}case"image":{let p=t.createElement("img");return p.src=e.src,p.alt=e.alt,ce(p,{display:"block","max-width":"100%","aspect-ratio":e.ratio&&e.ratio!=="auto"?bo[e.ratio]:void 0,"object-fit":e.fit,width:e.ratio&&e.ratio!=="auto"?"100%":void 0})}case"badge":{let p=t.createElement("span");return p.textContent=e.value,ce(p,Q({display:"inline-block",padding:"2px 10px","border-radius":"999px","font-size":"0.75em",border:"1px solid currentColor"},Rn(e.tone)))}case"spacer":return ce(t.createElement("div"),{height:(m=Tn[e.size])!=null?m:Tn.md});default:return null}}catch(p){return null}}function Dn(e,t,n,r){try{let o=new Set;for(let i of Array.from(e.children)){let s=i.getAttribute(Ke);s!==null&&(t[s]===void 0?i.remove():o.add(s))}for(let[i,s]of Object.entries(t)){if(o.has(i))continue;let c=Pn(s,r);if(!c)continue;let u=r.createElement("div");u.setAttribute(Ke,i),u.style.display="none",u.appendChild(c),e.appendChild(u)}let l=n!==void 0&&t[n]!==void 0;for(let i of Array.from(e.children)){let s=i.getAttribute(Ke),c=i;s!==null?c.style.display=l&&s===n?"":"none":l?c.hasAttribute(ue)||(c.setAttribute(ue,c.style.display),c.style.display="none"):c.hasAttribute(ue)&&(c.style.display=c.getAttribute(ue),c.removeAttribute(ue))}}catch(o){}}function So(e){try{for(let t of Array.from(e.children)){let n=t;if(n.getAttribute(Ke)!==null){n.remove();continue}n.hasAttribute(ue)&&(n.style.display=n.getAttribute(ue),n.removeAttribute(ue))}}catch(t){}}function nt(e,t){try{let n=new Set;for(let r of Array.from(e.querySelectorAll(`[${Ke}]`)))r.parentElement&&n.add(r.parentElement);for(let r of Array.from(e.querySelectorAll(`[${ue}]`)))r.parentElement&&n.add(r.parentElement);for(let r of n)t.has(r)||So(r)}catch(n){}}function Et(e,t){if(!e)return[t.documentElement];try{return Array.from(t.querySelectorAll(e))}catch(n){return[]}}function rt(e,t,n){n.documentElement.setAttribute("data-sentient-persona",e),n.documentElement.setAttribute("data-sentient-confidence",t)}function ot(e,t,n){var r;for(let[o,l]of Object.entries(t)){let i=e[o];if(!i||typeof i=="string")continue;let s=Et(l.target,n);for(let c of s)for(let[u,a]of Object.entries(i))(r=l.dims[u])!=null&&r.includes(a)&&c.setAttribute(`data-${u}`,a)}}function it(e,t,n){for(let[r,o]of Object.entries(t)){let l=e[r];if(typeof l!="string"||!o.arms||!o.arms.includes(l))continue;let i=Et(o.target,n);for(let s of i)s.setAttribute("data-sentient-arm",l)}}function st(e,t,n,r){var s,c;let o=new Set,l=(s=r==null?void 0:r.contentAndOps)!=null?s:!0,i=[];for(let[u,a]of Object.entries(t)){if(kn(a.locator,n))continue;let d;if(a.locator){let m=ge(a.locator,n);d=m?[m]:[]}else d=Et(a.target,n);(a.locator||a.target)&&d.length===0&&i.push(u);let g=e[u];for(let m of d){if(g!==void 0)if(typeof g=="string")m.setAttribute("data-sentient-arm",g),l&&((c=r==null?void 0:r.onApplied)==null||c.call(r,u,g,m));else for(let[p,f]of Object.entries(g))m.setAttribute(`data-${p}`,f);a.blocks&&!xo(n)&&(Dn(m,a.blocks,typeof g=="string"?g:void 0,n),o.add(m)),l&&(typeof a.content=="string"&&(m.textContent=a.content),a.ops&&On(m,a.ops,u,n).anchorMiss&&!i.includes(u)&&i.push(u))}}return nt(n,o),i}var Ao=/bot|crawler|spider|crawling|googlebot|bingbot|duckduckbot|baiduspider|yandexbot|slurp|gptbot|claudebot|anthropic|perplexity|ccbot|applebot|headlesschrome/i;function xo(e){var t,n,r;try{let o=(n=(t=e.defaultView)!=null?t:typeof window!="undefined"?window:void 0)==null?void 0:n.navigator;return o?o.webdriver===!0?!0:Ao.test((r=o.userAgent)!=null?r:""):!1}catch(o){return!1}}var ko=800;function at(e,t,n){let r=[];return n.forEach(({slotId:o,arm:l,el:i},s)=>{r.push(Be((g,m={})=>{try{e.track({projectId:t,componentId:o,variantId:l,eventType:"micro_signal",payload:Q({signalType:g},m)})}catch(p){}},i,void 0,{tabLoss:s===0}));let c=null,u=0,a=()=>{u=Date.now(),c=setTimeout(()=>{try{e.track({projectId:t,componentId:o,variantId:l,eventType:"cursor_signal",payload:{hoverDuration:Date.now()-u}})}catch(g){}c=null},ko)},d=()=>{c!==null&&(clearTimeout(c),c=null)};i.addEventListener("mouseenter",a),i.addEventListener("mouseleave",d),r.push(()=>{i.removeEventListener("mouseenter",a),i.removeEventListener("mouseleave",d),c!==null&&clearTimeout(c)})}),()=>{for(let o of r)o()}}function Eo(e,t){if(!e)return!1;if(e==="/")return t==="/";let n=e.endsWith("/")?e.slice(0,-1):e;return t===n||t.startsWith(`${n}/`)}function Bn(e){return e?`_snt_fired_goals_${e.slice(0,12)}`:"_snt_fired_goals"}var Co="_snt_fired_goals";function Nn(e,t){try{e==null||e.sessionStorage.removeItem(Bn(t)),e==null||e.sessionStorage.removeItem(Co)}catch(n){}}function Mn(e){var t;return[(t=e.slotId)!=null?t:"",e.goalId,e.event,e.locator?JSON.stringify(e.locator):""].join("|")}function _o(e,t){try{let n=e==null?void 0:e.sessionStorage.getItem(t);if(!n)return new Set;let r=JSON.parse(n);return Array.isArray(r)?new Set(r.filter(o=>typeof o=="string")):new Set}catch(n){return new Set}}function Io(e,t,n){try{e==null||e.sessionStorage.setItem(t,JSON.stringify([...n]))}catch(r){}}function lt(e,t,n,r){var C,L;let o=(C=n.defaultView)!=null?C:typeof window!="undefined"?window:null,l=Bn(r),i=_o(o,l),s=y=>{let w=Mn(y);if(!i.has(w))try{y.slotId?t.componentGoal(y.slotId,y.goalId):t.goal(y.goalId),i.add(w),Io(o,l,i)}catch(I){}},c=e.filter(y=>y.event==="click"),u=e.filter(y=>y.event==="form_submit"),a=e.filter(y=>y.event==="url_reached"),d=e.filter(y=>y.event==="scroll_depth"),g=(y,w)=>{if(!y.locator)return!1;let I=ge(y.locator,n);return!!I&&(I===w||I.contains(w))},m=y=>{let w=y.target;if(!(!w||typeof w.closest!="function"))for(let I of c)g(I,w)&&s(I)},p=y=>{let w=y.target;if(w)for(let I of u)g(I,w)&&s(I)},f=()=>{if(a.length===0)return;let y=et(n);for(let w of a)w.urlPattern&&Eo(w.urlPattern,y)&&s(w)},A=()=>{var I;let y=n.documentElement,w=y.scrollHeight>0?(y.scrollTop+y.clientHeight)/y.scrollHeight:0;for(let N of d)w>=((I=N.threshold)!=null?I:.75)&&s(N);d.every(N=>i.has(Mn(N)))&&n.removeEventListener("scroll",A)};return n.addEventListener("click",m,!0),n.addEventListener("submit",p,!0),(L=n.defaultView)==null||L.addEventListener("popstate",f),f(),d.length>0&&(n.addEventListener("scroll",A,{passive:!0}),A()),{checkUrl:f,teardown:()=>{var y;n.removeEventListener("click",m,!0),n.removeEventListener("submit",p,!0),(y=n.defaultView)==null||y.removeEventListener("popstate",f),d.length>0&&n.removeEventListener("scroll",A)}}}var $n="__snt_editor_token";function Kn(){try{return typeof sessionStorage!="undefined"?sessionStorage.getItem($n):null}catch(e){return null}}function jn(e){try{sessionStorage.setItem($n,e)}catch(t){}}var ze="0.23.0",dt=ze!=="0.0.0-dev"?{name:"snippet",version:ze}:void 0,Vn=5e3,Oo=50,Jn=(()=>{try{if(typeof window=="undefined")return[];let e=window.SentientSnippet;return Array.isArray(e==null?void 0:e.q)?e.q:[]}catch(e){return[]}})(),H=null,P=null,de={},ye=null,G=null,he=null,z=null,ae=null,$=null,Ae=null,Gn=!1,Ct=null,ct=null,ft=null,Ce=!1,Ge=!1,ke=!1;function Yn(e,t){let n,r=new Promise(o=>{n=setTimeout(()=>o(null),t)});return Promise.race([e,r]).then(o=>(clearTimeout(n),o),o=>{throw clearTimeout(n),o})}function xe(e,...t){e!=null&&e.debug&&console.log("[sentient-snippet]",...t)}function _e(e,t){return H?(H.personaAttributes&&$&&rt($.persona,$.band,e),ot(de,H.slots,e),it(de,H.slots,e),ye?st(de,ye,e,t):(nt(e,new Set),[])):[]}function Xn(e){var n;let t=new Map;for(let r of(n=H==null?void 0:H.sections)!=null?n:[])try{let o=e.querySelectorAll(r);o.length===1&&t.set(r,o[0])}catch(o){}return t}function _t(e,t){try{if(!e||e.length<2||new Set(e).size!==e.length)return;let n=Xn(t);if(n.size!==e.length)return;let r=[];for(let i of e){let s=n.get(i);if(!s)return;r.push(s)}let o=r[0].parentNode;if(!o||!r.every(i=>i.parentNode===o))return;let l=r.slice().sort((i,s)=>i.compareDocumentPosition(s)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1);for(let i=0;i<r.length;i++){let s=r[i];l[i]!==s&&(o.insertBefore(s,l[i]),l.splice(l.indexOf(s),1),l.splice(i,0,s))}}catch(n){}}function Zn(e){return e.apiBase?`${e.apiBase.replace(/\/+$/,"")}/v1/events`:void 0}function Lo(e,t){var n;if(t.length!==0)try{let r=(n=e.apiBase)!=null?n:"https://api.sentient-ui.com";fetch(`${r}/v1/locator-miss`,{method:"POST",keepalive:!0,headers:{"content-type":"application/json",authorization:`Bearer ${e.apiKey}`},body:JSON.stringify({slots:t})}).catch(()=>{})}catch(r){}}function Ie(){return!!(H&&P&&H.sectionCapture!==!1&&(H.consent!==!1||Ge)&&!Se())}function To(){if(!P||!H||!Ie()||ae)return;let e=[];_e(document,{contentAndOps:Ce,onApplied:(t,n,r)=>e.push({slotId:t,arm:n,el:r})}),Ot();try{z==null||z(),z=at(P,H.apiKey,e)}catch(t){}}function Ot(){if(typeof document=="undefined"||!Ie())return;let e;try{if(ct&&ct.length>0){let t=new Map;for(let n of ct){if(n.urlMatch!==window.location.pathname)continue;let r=ge(n.locator,document);r&&t.set(r,n.type)}t.size>0&&(e=n=>{var r;return(r=t.get(n))!=null?r:null})}}catch(t){}try{ae=xn(P,Q({apiKey:H.apiKey,apiBase:H.apiBase,doc:document,microSignals:!0},e?{typeOf:e}:{})),ft=window.location.pathname}catch(t){}}function Lt(){try{let e=[];if(z==null||z(),z=null,_e(document,{contentAndOps:Ce,onApplied:(t,n,r)=>e.push({slotId:t,arm:n,el:r})}),_t(Ae,document),e.length>0&&Ie())try{z=at(P,H.apiKey,e)}catch(t){}try{typeof window!="undefined"&&ft!==null&&window.location.pathname!==ft&&Ie()&&(ae==null||ae(),ae=null,Ot())}catch(t){}}catch(e){}}function Un(){Ct===null&&(Ct=setTimeout(()=>{Ct=null,Lt();try{G==null||G.checkUrl()}catch(e){}},Oo))}function It(){if(!(Gn||typeof window=="undefined"||typeof history=="undefined")){Gn=!0;try{let e=t=>{let n=history[t];history[t]=function(r,o,l){let i=n.call(this,r,o,l!=null?l:null);return Un(),i}};e("pushState"),e("replaceState"),window.addEventListener("popstate",Un)}catch(e){}}}function ut(e){let t={};for(let[n,r]of Object.entries(e.slots))try{t[n]=r.target?document.querySelectorAll(r.target).length:1}catch(o){t[n]=0}return t}function Qn(e){return new URLSearchParams(e).get("sentient_editor")}function Ro(){try{let e=Array.from(document.getElementsByTagName("script")),t=/(^|\/)snippet(\.global)?\.js(\?|$)/,n=e.find(r=>t.test(r.src));if(n!=null&&n.src)return n.src.replace(t,"$1editor.global.js$3")}catch(e){}return null}function Po(e,t){var n,r,o,l;try{window.__sentientEditor={token:t,apiBase:(n=e.apiBase)!=null?n:"https://api.sentient-ui.com"};try{let c=document.createElement("meta");c.name="referrer",c.content="no-referrer",c.setAttribute("data-sentient-editor",""),((r=document.head)!=null?r:document.documentElement).appendChild(c)}catch(c){}let i=(o=e.editorSrc)!=null?o:Ro();if(!i){qn();return}let s=document.createElement("script");s.src=i,s.async=!0,s.onerror=()=>qn(),((l=document.head)!=null?l:document.documentElement).appendChild(s)}catch(i){}}var zn="sentient-editor-load-notice",er={position:"fixed",bottom:"16px",zIndex:"2147483647",background:"#111827",color:"#fff",boxShadow:"0 10px 34px rgba(0,0,0,0.45)"};function qn(){var e,t;try{if(typeof document=="undefined"||document.getElementById(zn))return;(e=document.querySelector('meta[name="referrer"][data-sentient-editor]'))==null||e.remove();let n=document.createElement("div");n.id=zn,n.textContent="Couldn\u2019t load the editor \u2014 check your connection and reopen it from your dashboard.",Object.assign(n.style,er,{right:"16px",maxWidth:"320px",padding:"14px 16px",borderRadius:"14px",font:"13px/1.45 system-ui, sans-serif",border:"1px solid rgba(245,158,11,0.6)",cursor:"pointer"}),n.addEventListener("click",()=>n.remove()),((t=document.body)!=null?t:document.documentElement).appendChild(n),setTimeout(()=>n.remove(),1e4)}catch(n){}}function tr(e){let t=new URLSearchParams(e).get("sentient_preview");if(!t)return null;let n={};for(let r of t.split("|")){let o=r.indexOf(":"),l=o===-1?"":r.slice(0,o),i=o===-1?"":r.slice(o+1);if(!(!l||!i))if(i.includes("=")){let s={};for(let c of i.split(",")){let[u,a]=c.split("=");u&&a&&(s[u]=a)}Object.keys(s).length&&(n[l]=s)}else n[l]=i}return Object.keys(n).length?n:null}function nr(e){try{return new URLSearchParams(e).get("sentient_persona")||null}catch(t){return null}}var Fn="sentient-persona-preview-banner";function Wn(e,t){var n;try{if(typeof document=="undefined"||document.getElementById(Fn))return;let r=e.charAt(0).toUpperCase()+e.slice(1).replace(/[_-]+/g," "),o=document.createElement("div");o.id=Fn,o.setAttribute("role","status"),Object.assign(o.style,er,{left:"50%",transform:"translateX(-50%)",display:"flex",alignItems:"center",gap:"12px",padding:"10px 14px",borderRadius:"999px",font:"13px/1 system-ui, sans-serif",border:"1px solid rgba(255,255,255,0.14)"});let l=document.createElement("span");l.textContent=t?`\u201C${e}\u201D isn\u2019t in your personas \u2014 showing the default experience`:`Previewing as ${r}`;let i=document.createElement("button");i.type="button",i.textContent="Exit preview",Object.assign(i.style,{cursor:"pointer",border:"1px solid rgba(255,255,255,0.3)",background:"transparent",color:"#fff",font:"inherit",padding:"4px 10px",borderRadius:"999px"}),i.addEventListener("click",()=>{try{let s=new URL(window.location.href);s.searchParams.delete("sentient_persona"),window.location.href=s.pathname+s.search+s.hash}catch(s){}}),o.appendChild(l),o.appendChild(i),((n=document.body)!=null?n:document.documentElement).appendChild(o)}catch(r){}}async function Do(e,t){var u,a,d,g,m,p,f,A,C,L;let n=(u=e.apiBase)!=null?u:"https://api.sentient-ui.com",o=((a=e.registry)!=null?a:Object.keys(e.slots).length===0)?{persona:t,slotsFrom:"registry"}:{persona:t,slots:Object.entries(e.slots).map(([y,w])=>({id:y,dims:w.dims}))},l=await Yn(fetch(`${n}/v1/explain`,{method:"POST",headers:{"content-type":"application/json",authorization:`Bearer ${e.apiKey}`},body:JSON.stringify(o)}).then(y=>y.ok?y.json():null).catch(()=>null),Vn);if(!l){Ue(e),xe(e,"persona preview: explain unavailable \u2014 page left as-is");return}let i=l;de=(d=i.slots)!=null?d:{},ye=(g=i.slotConfig)!=null?g:null,je(i.palette);let s=(f=(p=(m=i.personaAttributes)==null?void 0:m.persona)!=null?p:i.persona)!=null?f:t,c=(C=(A=i.personaAttributes)==null?void 0:A.confidence)!=null?C:"high";$={persona:s,band:c},_e(document),Ce=!0,It(),Ue(e),i.recognized===!1?Wn(t,!0):Wn((L=i.personaDisplay)!=null?L:s)}function Ue(e){let t={goal(n,r){try{P==null||P.goal(n,r)}catch(o){}},componentGoal(n,r){try{P==null||P.componentGoal(n,r)}catch(o){}},grantConsent(){try{!P&&ke?(P=Ne(Q({apiKey:e.apiKey,context:e.context,consent:!0,preConsentBehavior:e.preConsentBehavior,debug:e.debug,persona:e.persona,ingestUrl:Zn(e)},dt?{sdk:dt}:{})),he&&he.length>0&&(G==null||G.teardown(),G=lt(he,P,document,e.apiKey))):(St(e.apiKey),P&&he&&he.length>0&&(G==null||G.teardown(),G=lt(he,P,document,e.apiKey))),ke=!1}catch(n){}Ge=!0;try{To()}catch(n){}},revokeConsent(){try{ae==null||ae(),ae=null,ft=null,z==null||z(),z=null,G==null||G.teardown(),G=null,Nn(typeof window!="undefined"?window:null,e.apiKey),Ge=!1,ke=!0,P==null||P.destroy(),P=null}catch(n){}},reapply:Lt,getState(){var n,r;try{return{apiKey:e.apiKey,persona:(n=$==null?void 0:$.persona)!=null?n:null,band:(r=$==null?void 0:$.band)!=null?r:null,slots:de,matchCounts:ut(e),consent:!ke&&(e.consent!==!1||Ge)}}catch(o){return{apiKey:e.apiKey,persona:null,band:null,slots:{},matchCounts:{},consent:!1}}}};window.SentientSnippet=t;for(let n of Jn.splice(0))try{n[0]==="goal"&&t.goal(n[1],n[2])}catch(r){}}function Hn(){var e;try{if(typeof window=="undefined")return;let t=window;if(typeof((e=t.SentientSnippet)==null?void 0:e.goal)=="function")return;let n=()=>{};t.SentientSnippet={goal:n,componentGoal:n,grantConsent:n,revokeConsent:n,reapply:n,getState:()=>({apiKey:"",persona:null,band:null,slots:{},matchCounts:{},consent:!1})},Jn.length=0}catch(t){}}async function rr(){var e;try{let t=Qe(window.sentient);if(!t){Hn();return}H=t,Ce=!1,Ae=null,je(null),Ge=!1,ke=!1,he=null;let n=typeof window!="undefined"?Qn(window.location.search):null;if(n){jn(n);try{let f=new URL(window.location.href);f.searchParams.delete("sentient_editor"),window.history.replaceState(null,"",f.pathname+f.search+f.hash)}catch(f){}}let r=n!=null?n:Kn();if(r){Po(t,r),Ue(t),xe(t,"editor mode");return}let o=typeof window!="undefined"?tr(window.location.search):null;if(o){de=o,$=null,_e(document),It(),Ue(t),xe(t,"preview mode",o);return}let l=typeof window!="undefined"?nr(window.location.search):null;if(l){await Do(t,l),xe(t,"persona preview",l);return}let i=(e=t.registry)!=null?e:Object.keys(t.slots).length===0,s=De(t.apiKey);s&&($={persona:s.persona,band:s.band},de=s.slots,s.slotConfig&&(ye=s.slotConfig),s.palette&&je(s.palette),_e(document,{contentAndOps:!1}),s.layoutOrder&&(Ae=s.layoutOrder,_t(Ae,document)));let c=Ne(Q({apiKey:t.apiKey,context:t.context,consent:t.consent,preConsentBehavior:t.preConsentBehavior,debug:t.debug,persona:t.persona,ingestUrl:Zn(t)},dt?{sdk:dt}:{}));P=c,Ue(t),It();let u=Object.entries(t.slots).map(([f,A])=>({id:f,dims:A.dims})),a=ze!=="0.0.0-dev"?{v:ze}:{},d=Array.from(Xn(document).keys()),g=c.decide(Q(Q(Q({slots:u},a),d.length>=2?{sections:d}:{}),i?{slotsFrom:"registry"}:{})),m=await Yn(g,Vn),p=f=>{var L,y,w,I,N,x;let A=c.getPersona();A?$={persona:A.persona,band:A.band}:f.persona&&($={persona:f.persona,band:"low"}),de=f.slots,i?ye=(L=f.slotConfig)!=null?L:null:f.slotConfig&&(ye=f.slotConfig),f.palette&&je(f.palette),Ae=(y=f.layoutOrder)!=null?y:Ae;let C=()=>{let D=[];if(Lo(t,_e(document,{onApplied:(K,j,Z)=>D.push({slotId:K,arm:j,el:Z})})),_t(Ae,document),Ce=!0,Ie())try{z==null||z(),z=at(P,t.apiKey,D)}catch(K){}};if(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",C,{once:!0}):C(),he=(w=f.goals)!=null?w:null,f.goals&&f.goals.length>0&&t.consent!==!1&&P)try{G==null||G.teardown(),G=lt(f.goals,P,document,t.apiKey)}catch(D){}ct=(I=f.sectionMap)!=null?I:null,Ie()&&Ot(),xe(t,"applied",{persona:$,slots:de,matches:ut(t)}),!ke&&Me(t.apiKey,Q(Q({v:1,persona:(N=$==null?void 0:$.persona)!=null?N:f.persona,band:(x=$==null?void 0:$.band)!=null?x:"low",slots:f.slots,layoutOrder:f.layoutOrder,savedAt:Date.now()},ye?{slotConfig:ye}:{}),f.palette?{palette:f.palette}:{}))};if(!m){xe(t,"decide timeout/null \u2014 snapshot state stands",ut(t)),g.then(f=>{!f||Ce||ke||P!==c||(p(f),xe(t,"late decide applied",ut(t)))}).catch(()=>{});return}p(m)}catch(t){Hn()}}if(typeof window!="undefined"&&window.sentient){let e=window;e.__sentientInitialized||(e.__sentientInitialized=!0,Promise.resolve().then(()=>{rr()}))}return lr(Mo);})();
|
|
1
|
+
"use strict";var SentientSnippet=(()=>{var Je=Object.defineProperty;var fr=Object.getOwnPropertyDescriptor;var pr=Object.getOwnPropertyNames,jt=Object.getOwnPropertySymbols;var Ut=Object.prototype.hasOwnProperty,gr=Object.prototype.propertyIsEnumerable;var Gt=(e,t,n)=>t in e?Je(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,J=(e,t)=>{for(var n in t||(t={}))Ut.call(t,n)&&Gt(e,n,t[n]);if(jt)for(var n of jt(t))gr.call(t,n)&&Gt(e,n,t[n]);return e};var zt=(e,t)=>()=>(e&&(t=e(e=0)),t);var Ft=(e,t)=>{for(var n in t)Je(e,n,{get:t[n],enumerable:!0})},mr=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of pr(t))!Ut.call(e,o)&&o!==n&&Je(e,o,{get:()=>t[o],enumerable:!(r=fr(t,o))||r.enumerable});return e};var hr=e=>mr(Je({},"__esModule",{value:!0}),e);var yr,vr,br,qt,wr,Sr,Wt,O,be,De=zt(()=>{"use strict";yr=Object.defineProperty,vr=Object.defineProperties,br=Object.getOwnPropertyDescriptors,qt=Object.getOwnPropertySymbols,wr=Object.prototype.hasOwnProperty,Sr=Object.prototype.propertyIsEnumerable,Wt=(e,t,n)=>t in e?yr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,O=(e,t)=>{for(var n in t||(t={}))wr.call(t,n)&&Wt(e,n,t[n]);if(qt)for(var n of qt(t))Sr.call(t,n)&&Wt(e,n,t[n]);return e},be=(e,t)=>vr(e,br(t))});var on={};Ft(on,{LOCAL_ENGINE_AVAILABLE:()=>Ir,createLocalEngine:()=>Or});function Or(e){throw new Error("[sentient] createLocalEngine is not available in production builds. The local engine only exists under the `development` export condition.")}var Ir,sn=zt(()=>{"use strict";Ir=!1});var qo={};Ft(qo,{applyPersonaAttributes:()=>at,applyRegistrySlots:()=>ut,applySlotArms:()=>ct,applySlotAttributes:()=>lt,parseEditorToken:()=>sr,parsePersonaPreview:()=>cr,parsePreview:()=>lr,parseSnippetConfig:()=>rt,planReorder:()=>pt,reapply:()=>Nt,run:()=>ur,version:()=>We});De();var Ar=["buyer","researcher","deal_seeker","browser"];var Er={buyer:"Buyer",researcher:"Researcher",deal_seeker:"Deal seeker",browser:"Browser",unknown:"Unknown"};function Ve(e){return Object.keys(e).sort().map(t=>`${t}=${e[t]}`).join("|")}function Ht(e){if(e.length===0)return null;let t={};for(let n of e.split("|")){let r=n.indexOf("=");if(r<=0||r!==n.lastIndexOf("=")||r===n.length-1)return null;let o=n.slice(0,r);if(o in t)return null;t[o]=n.slice(r+1)}return t}function bt(e){var t,n,r;if(e.arms)return typeof e.baseline=="string"?e.baseline:(t=e.arms[0])!=null?t:"";if(e.baseline!==void 0&&typeof e.baseline=="object")return Ve(e.baseline);if(typeof e.baseline=="string")return e.baseline;let o={};for(let[c,i]of Object.entries((n=e.dims)!=null?n:{}))o[c]=(r=i[0])!=null?r:"";return Ve(o)}function Jt(e,t){var n,r;return e.dims!=null?(r=(n=Ht(t))!=null?n:Ht(bt(e)))!=null?r:{}:t}function Vt(e){let t=2166136261;for(let n=0;n<e.length;n++)t^=e.charCodeAt(n),t=t+((t<<1)+(t<<4)+(t<<7)+(t<<8)+(t<<24))>>>0;return t}function we(e){return e>=.3?e<.7?"medium":"high":"low"}var Jo=Ar.map(e=>({key:e,displayName:Er[e]}));function Xe(e){return e?`_${e.slice(0,12)}`:""}var xr="_snt_uid";function Xt(e){return`${xr}${Xe(e)}`}var kr=["GPTBot","ChatGPT-User","OAI-SearchBot","ClaudeBot","Claude-User","Claude-SearchBot","PerplexityBot","Perplexity-User","Google-Extended","Applebot-Extended","Meta-ExternalAgent","Bytespider","CCBot","Amazonbot","cohere-ai","Diffbot"];function Yt(e){return Cr(e)!==null}function Cr(e){var t;if(!e)return null;let n=e.toLowerCase();return(t=kr.find(r=>n.includes(r.toLowerCase())))!=null?t:null}function Zt(e){let t=e.toLowerCase();return/ipad|tablet|playbook|kindle|silk/.test(t)?"tablet":/mobi|iphone|ipod|android.*mobile|phone/.test(t)?"mobile":"desktop"}function Qt(e,t){if(!e)return"direct";try{let n=new URL(e);if(t)try{if(new URL(t).host===n.host)return"direct"}catch(o){}let r=n.hostname.toLowerCase();return/(^|\.)(google|bing|duckduckgo|yahoo)\./.test(r)?"search":/(^|\.)(twitter\.com|x\.com|facebook\.com|linkedin\.com|reddit\.com|t\.co)$/.test(r)?"social":"referral"}catch(n){return"direct"}}function en(e){if(!e)return null;try{return new URL(e).hostname}catch(t){return null}}var _r=["gclid","gbraid","wbraid","fbclid","ttclid","msclkid","twclid","li_fat_id"];function tn(e){let t={},n={};try{let r=typeof e=="string"||e instanceof URLSearchParams?new URLSearchParams(e):Object.entries(e).flatMap(([o,c])=>{let i=Array.isArray(c)?c[0]:c;return i===void 0?[]:[[o,i]]});for(let[o,c]of r)o.startsWith("utm_")?o in t||(t[o]=c):_r.includes(o)&&(o in n||(n[o]=c))}catch(r){}return{utmParams:t,clickIds:n}}function nn(e){let t=e.getHours();return t<6?"night":t<12?"morning":t<18?"afternoon":"evening"}function wt(e){return O(O(O({id:e.id},e.arms?{arms:[...e.arms]}:{}),e.dims?{dims:Object.fromEntries(Object.entries(e.dims).map(([t,n])=>[t,[...n]]))}:{}),e.baseline!==void 0?{baseline:e.baseline}:{})}function St(e){let t=wt(e);return Jt(t,bt(t))}function rn(e){return typeof e=="string"?e:Ve(e)}De();function dn(){try{if(typeof crypto!="undefined"&&typeof crypto.randomUUID=="function")return crypto.randomUUID()}catch(e){}try{if(typeof crypto!="undefined"&&typeof crypto.getRandomValues=="function"){let e=new Uint8Array(16);crypto.getRandomValues(e),e[6]=e[6]&15|64,e[8]=e[8]&63|128;let t="";for(let n=0;n<16;n++)t+=e[n].toString(16).padStart(2,"0"),(n===3||n===5||n===7||n===9)&&(t+="-");return t}}catch(e){}return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{let t=Math.random()*16|0;return(e==="x"?t:t&3|8).toString(16)})}var Pr="_snt_uid",Lr=365,Ye="_snt_uid";function Rr(){return dn()}function an(e){try{let t=document.cookie.match(new RegExp(`(?:^|; )${e}=([^;]*)`));return t?decodeURIComponent(t[1]):null}catch(t){return null}}function Tr(e,t,n){try{document.cookie=`${e}=${encodeURIComponent(t)}; max-age=${n}; SameSite=strict; path=/`}catch(r){}}function At(e){try{return localStorage.getItem(e)}catch(t){return null}}function ln(e,t){try{return localStorage.setItem(e,t),!0}catch(n){return!1}}function cn(e){try{return sessionStorage.getItem(e)}catch(t){return null}}function Dr(e,t){try{return sessionStorage.setItem(e,t),!0}catch(n){return!1}}function Mr(e){try{sessionStorage.removeItem(e)}catch(t){}}function Nr(e){try{return document.cookie=`${e}_probe=1; max-age=1; SameSite=strict; path=/`,document.cookie.indexOf(`${e}_probe=1`)!==-1}catch(t){return!1}}function Br(e){try{localStorage.removeItem(e)}catch(t){}}function $r(e){try{document.cookie=`${e}=; max-age=0; SameSite=strict; path=/`}catch(t){}}var Kr={getSessionId:()=>null,isEphemeral:()=>!1,destroy:()=>{}};function fn(e){var t,n,r,o,c,i,s;if(typeof window=="undefined")return Kr;let a=Xe(e==null?void 0:e.apiKey),u=(t=e==null?void 0:e.cookieName)!=null?t:Xt(e==null?void 0:e.apiKey),l=`${Ye}${a}`,d=`${Ye}_tomb${a}`,m=((n=e==null?void 0:e.cookieTTLDays)!=null?n:Lr)*24*60*60,w=b=>b&&b.length>0?b:null,p=()=>{var b,_;return a&&!(e!=null&&e.cookieName)&&At(d)===null?(_=(b=w(an(Pr)))!=null?b:w(At(Ye)))!=null?_:w(cn(Ye)):null},h=(s=(i=(c=(o=(r=w(an(u)))!=null?r:w(At(l)))!=null?o:w(cn(l)))!=null?c:p())!=null?i:w(e==null?void 0:e.ssrSessionId))!=null?s:Rr();Tr(u,h,m);let E=ln(l,h),C=Nr(u),P=E?!1:Dr(l,h),f=!E&&!C&&!P;return{getSessionId:()=>h,isEphemeral:()=>f,destroy:()=>{h=null,$r(u),Br(l),Mr(l),a&&!(e!=null&&e.cookieName)&&ln(d,"1")}}}function Ne(e){return Math.min(6e4,1e3*2**Math.min(e,6))}function Ct(e){if(e.ok===!0)return"delivered";let{status:t}=e;return typeof t!="number"?"retry":t>=200&&t<300?"delivered":t>=400&&t<500&&t!==429?"dropped":"retry"}function pn(e,t){try{let n=localStorage.getItem(e);if(!n)return[];let r=JSON.parse(n);return Array.isArray(r)?(localStorage.removeItem(e),r.slice(-t)):[]}catch(n){return[]}}function _e(e,t,n){try{let r=(()=>{try{let c=localStorage.getItem(n);if(!c)return[];let i=JSON.parse(c);return Array.isArray(i)?i:[]}catch(c){return[]}})(),o=new Map;for(let c of r)o.set(c.id,c);for(let c of e)o.set(c.id,c);localStorage.setItem(n,JSON.stringify([...o.values()].slice(-t)))}catch(r){}}function gn(e,t){try{let n=localStorage.getItem(t);if(!n)return;let r=JSON.parse(n);if(!Array.isArray(r))return;let o=new Set(e),c=r.filter(i=>!o.has(i.id));if(c.length===r.length)return;c.length===0?localStorage.removeItem(t):localStorage.setItem(t,JSON.stringify(c))}catch(n){}}var jr=500,Gr=56*1024;function mn(e){return`_snt_retry_${e.slice(0,12)}`}var Ur={push:()=>{},flush:()=>{},destroy:()=>{}};function zr(e){var t,n,r;if(typeof window=="undefined")return Ur;let o=(t=e.flushIntervalMs)!=null?t:5e3,c=(n=e.maxBatchSize)!=null?n:20,i=(r=e.maxRetrySize)!=null?r:100,s=e.ingestUrl,a=e.apiKey,u=mn(a),l=[],d=new Set,m=[],w=S=>{for(let v of S)p.delete(v),!d.has(v)&&(d.add(v),m.push(v));for(;m.length>jr;){let v=m.shift();v&&d.delete(v)}gn(S,u)},p=new Set,h=()=>{for(;l.length>i;){let S=l.shift();S&&p.delete(S.id)}},E=S=>{d.has(S.id)||p.has(S.id)||(p.add(S.id),l.push(S),h())},C=S=>{for(let v of S)d.has(v.id)||(p.add(v.id),l.push(v));h()},P=pn(u,i);for(let S of P)E(S);let f=0,b=0,_=(S,v=!0)=>{if(S.length===0)return;let k=JSON.stringify(S),x=S.map(F=>F.id),I;try{I=fetch(s,{method:"POST",keepalive:!0,body:k,headers:{"Content-Type":"application/json",Authorization:`Bearer ${a}`}})}catch(F){_e(S,i,u),C(S),b++,f=Date.now()+Ne(b);return}let ee=F=>{if(Ct(F)!=="retry"){if(!F.ok&&v){let ae=S.filter(q=>q.eventType!=="pageview");if(ae.length>0&&ae.length<S.length){w(S.filter(q=>q.eventType==="pageview").map(q=>q.id)),_(ae,!1);return}}w(x),b=0,f=0;return}_e(S,i,u),C(S),b++,f=Date.now()+Ne(b)};I instanceof Promise?I.then(ee).catch(()=>{_e(S,i,u),C(S),b++,f=Date.now()+Ne(b)}):ee(I)},K=typeof TextEncoder!="undefined"?new TextEncoder:null,A=S=>K?K.encode(S).length:S.length,D=S=>{let v=[],k=2;for(let x of S){let I=A(JSON.stringify(x))+1;if(v.length>0&&k+I>Gr||v.length>=c)break;v.push(x),k+=I}return v},G=()=>{try{if(Date.now()<f)return;for(;l.length>0&&!(Date.now()<f);){let S=l.filter(k=>!d.has(k.id));if(l.length=0,S.length===0)break;let v=D(S);if(v.length===0)break;v.length<S.length&&l.push(...S.slice(v.length)),_(v)}}catch(S){}},X=!0,M=null;M=setInterval(()=>{X&&G()},o);let j=()=>{document.visibilityState==="hidden"&&G()},se=()=>{G()};return document.addEventListener("visibilitychange",j),window.addEventListener("pagehide",se),{push(S){E(S),l.length>=c&&G()},flush:G,destroy(){X=!1,M!==null&&(clearInterval(M),M=null),document.removeEventListener("visibilitychange",j),window.removeEventListener("pagehide",se),G()}}}var Fr=200;function hn(e){return`_snt_goal_retry_${e.slice(0,12)}`}var qr={send:()=>{},flush:()=>{},destroy:()=>{}};function Wr(e){var t,n,r;if(typeof window=="undefined")return qr;let o=(t=e.flushIntervalMs)!=null?t:5e3,c=(n=e.maxRetrySize)!=null?n:100,i=(r=e.maxPerFlush)!=null?r:5,s=hn(e.apiKey),a=[],u=new Set,l=new Set,d=[],m=0,w=0,p=!1,h=A=>{for(u.delete(A.id),l.has(A.id)||(l.add(A.id),d.push(A.id));d.length>Fr;){let D=d.shift();D&&l.delete(D)}gn([A.id],s)},E=A=>{_e([A],c,s),!l.has(A.id)&&!u.has(A.id)&&(u.add(A.id),a.push(A)),Date.now()>=m&&(w++,m=Date.now()+Ne(w))},C=A=>{let D;try{D=fetch(e.url,{method:"POST",keepalive:!0,body:A.body,headers:e.headers})}catch(X){E(A);return}let G=X=>{var M;let j=Ct(X);if(j==="retry"){E(A);return}j==="dropped"&&((M=e.onDrop)==null||M.call(e,A,X.status)),h(A),w=0,m=0};D instanceof Promise?D.then(G).catch(()=>E(A)):G(D)},P=()=>{try{if(p||Date.now()<m)return;let A=0;for(;a.length>0&&A<i&&!(Date.now()<m);){let D=a.shift();u.delete(D.id),!l.has(D.id)&&(A++,C(D))}}catch(A){}},f=pn(s,c);for(let A of f)u.has(A.id)||(u.add(A.id),a.push(A));f.length>0&&_e(f,c,s);let b=setInterval(P,o),_=()=>{document.visibilityState==="hidden"&&P()},K=()=>P();return document.addEventListener("visibilitychange",_),window.addEventListener("pagehide",K),{send(A){if(!p&&!(l.has(A.id)||u.has(A.id))){if(Date.now()<m){_e([A],c,s),u.add(A.id),a.push(A);return}C(A)}},flush:P,destroy(){clearInterval(b),document.removeEventListener("visibilitychange",_),window.removeEventListener("pagehide",K),P(),p=!0}}}var Hr=1800*1e3;function Ze(e,t){return`${encodeURIComponent(e)}:${encodeURIComponent(t)}`}function Jr(e=Hr,t){let n=new Map,r=`_snt_asgn${Xe(t)}_`,o=(a,u)=>`${r}${encodeURIComponent(a)}:${encodeURIComponent(u)}`,c=a=>{let u=a.slice(r.length),l=u.indexOf(":");if(l<0)return null;try{return{componentId:decodeURIComponent(u.slice(0,l)),segment:decodeURIComponent(u.slice(l+1))}}catch(d){return null}},i=()=>{try{let a=[];for(let u=0;u<localStorage.length;u++){let l=localStorage.key(u);l!=null&&l.startsWith(r)&&a.push(l)}return a}catch(a){return[]}},s=a=>a.assignedAt+(a.ttlMs&&a.ttlMs>0?a.ttlMs:e)<Date.now();return typeof window!="undefined"&&(()=>{for(let a of i())try{let u=localStorage.getItem(a);if(!u)continue;let l=JSON.parse(u);if(s(l)){localStorage.removeItem(a);continue}let d=c(a);if(!d)continue;n.set(Ze(d.componentId,d.segment),l)}catch(u){}})(),{get(a,u){let l=n.get(Ze(a,u));return l?s(l)?(n.delete(Ze(a,u)),null):l:null},set(a,u,l){let d=Ze(a,u);n.set(d,l);try{localStorage.setItem(o(a,u),JSON.stringify(l))}catch(m){}},clear(){n.clear();for(let a of i())try{localStorage.removeItem(a)}catch(u){}}}}var tt="_snt_snap:",Vr=["low","medium","high"];function Be(e){try{let t=localStorage.getItem(tt+e);if(!t)return null;let n=JSON.parse(t);return!n||typeof n!="object"||n.v!==1||typeof n.persona!="string"||typeof n.band!="string"||!Vr.includes(n.band)||typeof n.slots!="object"||n.slots===null||Array.isArray(n.slots)||!(n.layoutOrder===null||Array.isArray(n.layoutOrder))||typeof n.savedAt!="number"||!(n.slotConfig===void 0||typeof n.slotConfig=="object"&&n.slotConfig!==null&&!Array.isArray(n.slotConfig))?null:n}catch(t){return null}}function $e(e,t){try{localStorage.setItem(tt+e,JSON.stringify(t))}catch(n){}}var xt="[sentient] No API key configured \u2014 nothing is being learned. Set NEXT_PUBLIC_SENTIENT_API_KEY or pass localMode: true for local development.",yn="[sentient] Local mode \u2014 decisions are simulated on-device and nothing is sent over the network. Add an API key to learn from real traffic.",un=!1,Qe=!1;function Xr(){var e;try{return(e=new URLSearchParams(window.location.search).get("sentient_persona"))!=null?e:void 0}catch(t){return}}function Yr(e){var t;let n=fn({ssrSessionId:e.ssrSessionId,apiKey:e.apiKey}),r=(t=n.getSessionId())!=null?t:"local",o=Xr(),c=Promise.resolve().then(()=>(sn(),on)).then(l=>{let d=l;return d.LOCAL_ENGINE_AVAILABLE?(un||(un=!0,console.info(yn)),d):(Qe||(Qe=!0,console.error(xt)),null)}).catch(()=>(Qe||(Qe=!0,console.error(xt)),null)),i=null,s={low:.15,medium:.5,high:.85},a=(()=>{var l;if(e.initialPersona)return O({},e.initialPersona);let d=Be(e.apiKey||"local");return d?{persona:d.persona,confidence:(l=s[d.band])!=null?l:.15}:null})();function u(l){let d=document.documentElement;d.dataset.sentientPersona===void 0&&(d.dataset.sentientPersona=l.persona,d.dataset.sentientConfidence=we(l.confidence))}return{isLocal:!0,async decide(l){var d,m,w;let p=await c;if(!p)return null;let h=p.createLocalEngine({sessionId:r,forcedPersona:o}).decide(l);return i=be(O({},h),{layoutOrder:(m=(d=h.layoutOrder)!=null?d:i==null?void 0:i.layoutOrder)!=null?m:null,slots:O(O({},(w=i==null?void 0:i.slots)!=null?w:{}),h.slots)}),$e(e.apiKey||"local",{v:1,persona:i.persona,band:we(i.confidence),slots:i.slots,layoutOrder:i.layoutOrder,savedAt:Date.now()}),u(h),h},getSlotResult(l){var d,m,w;return(w=(m=i==null?void 0:i.slots[l])!=null?m:(d=e.initialSlots)==null?void 0:d[l])!=null?w:null},getSlotConfig(l){var d,m;return(m=(d=e.initialSlotConfig)==null?void 0:d[l])!=null?m:null},getSitePalette(){var l;return(l=e.initialPalette)!=null?l:null},reportSlots(){},getPersona(){let l=i!=null?i:a;return l?{persona:l.persona,confidence:l.confidence,band:we(l.confidence)}:null},async assign(l,d){var m;let w=await c;return!w||!d||d.length===0?d!=null&&d[0]?{variantId:d[0],assignmentTtlMs:0}:null:{variantId:(m=w.createLocalEngine({sessionId:r,forcedPersona:o}).decide({components:[{id:l,variantIds:d}]}).assignments[l])!=null?m:d[0],assignmentTtlMs:0}},track:()=>{},goal:()=>{},componentGoal:()=>{},identify:()=>{},getAssignment:()=>null,fetchWeights:()=>Promise.resolve([]),getGraph:()=>({pageNodes:[],capturedAt:0}),dispose:()=>{},destroy:()=>n.destroy()}}function nt(e){if(e==null||typeof e!="object"||Array.isArray(e))return!1;let t=e;return t.type==="form"?!0:Array.isArray(t.children)?t.children.some(nt):!1}function Ke(e,t,n,r){let o=[];{let c=!1,i=[],s=()=>{if(c)return;let a=Date.now();for(i.push(a);i.length>0&&a-i[0]>500;)i.shift();i.length>=3&&(c=!0,e("rage_click"))};t.addEventListener("click",s),o.push(()=>t.removeEventListener("click",s))}{let c=!1,i=s=>{if(c||!(s.target instanceof Node)||!t.contains(s.target)&&t!==s.target)return;c=!0;let a=typeof window!="undefined"?window.getSelection():null,u=a?a.toString().length:0;e("text_copy",{selectionLength:u})};document.addEventListener("copy",i),o.push(()=>document.removeEventListener("copy",i))}{let c=!1,i=!1,s=null,a=()=>{s!==null&&(clearTimeout(s),s=null)},u=()=>{c||!i||(a(),s=setTimeout(()=>{!c&&i&&(c=!0,e("scroll_hesitation"))},3e3))},l=()=>{a(),u()},d=w=>{for(let p of w)i=p.intersectionRatio>.3,i?u():a()},m=new IntersectionObserver(d,{threshold:[.3]});m.observe(t),window.addEventListener("scroll",l,{passive:!0}),o.push(()=>{m.disconnect(),window.removeEventListener("scroll",l),a()})}if((r==null?void 0:r.tabLoss)!==!1){let c=!1,i=n!=null?n:Date.now(),s=()=>{if(c||document.visibilityState!=="hidden")return;let a=Date.now()-i;a<15e3&&(c=!0,e("tab_loss",{timeOnPage:a}))};document.addEventListener("visibilitychange",s),o.push(()=>document.removeEventListener("visibilitychange",s))}return()=>{for(let c of o)c()}}var vn="https://api.sentient-ui.com/v1/events",ne=new Map,bn=null;function Zr(e){return"value"in e||"currency"in e||"externalId"in e||"metadata"in e||"weight"in e||"stepIndex"in e}var Qr=3;function Et(){return dn()}function et(){var e;if(typeof window!="undefined")return((e=window.location)==null?void 0:e.pathname)||void 0}function eo(){let e=new WeakMap,t=new Map,n=!1,r=(s,a,u)=>{let l=s.get(a);return u===null?l?!0:(s.set(a,new Set),!1):l?l.has(u)?!0:(l.add(u),!1):(s.set(a,new Set([u])),!1)},o=typeof window!="undefined"&&"event"in window,c=()=>{if(!o)return;let s=window.event;return typeof Event=="function"&&s instanceof Event?s:void 0},i=()=>{if(o){Promise.resolve().then(()=>{n=!1,t.clear()});return}let s=!1,a=()=>{s||(s=!0,n=!1,t.clear())};if(setTimeout(a,0),typeof MessageChannel=="function"){let u=new MessageChannel;u.port1.onmessage=()=>{u.port1.close(),u.port2.close(),a()},u.port2.postMessage(0)}};return{firedBefore(s,a){let u=c();if(u){let d=e.get(u);return d||(d=new Map,e.set(u,d)),r(d,s,a)}let l=r(t,s,a);return!l&&!n&&(n=!0,i()),l}}}var wn=new Set;function to(e,t,n){let r=typeof window=="undefined"?null:window.history;if(!r)return()=>{};let o=!1,c,i=()=>{if(o)return;let u=et();!u||u===c||(c=u,e.track({projectId:t,componentId:"__page__",eventType:"pageview",payload:{}}),n(`${t}:${u}`))},s=[];for(let u of["pushState","replaceState"]){let l=r[u],d=function(...m){let w=l.apply(this,m);return i(),w};r[u]=d,s.push([u,l,d])}window.addEventListener("popstate",i);let a=et();return a&&wn.has(`${t}:${a}`)?c=a:i(),()=>{if(!o){o=!0,window.removeEventListener("popstate",i);for(let[u,l,d]of s)r[u]===d&&(r[u]=l)}}}var Me={track:()=>{},goal:()=>{},componentGoal:()=>{},identify:()=>{},getAssignment:()=>null,assign:()=>Promise.resolve(null),decide:()=>Promise.resolve(null),getSlotResult:()=>null,getSlotConfig:()=>null,getSitePalette:()=>null,reportSlots:()=>{},getPersona:()=>null,fetchWeights:()=>Promise.resolve([]),getGraph:()=>({pageNodes:[],capturedAt:0}),dispose:()=>{},destroy:()=>{}};function no(){try{return tn(window.location.search)}catch(e){return{utmParams:{},clickIds:{}}}}function Sn(e){return e.replace(/\/events\/?$/,"")}function Se(){return typeof navigator!="undefined"&&navigator.globalPrivacyControl===!0?!0:[typeof navigator!="undefined"?navigator.doNotTrack:void 0,typeof window!="undefined"?window.doNotTrack:void 0,typeof navigator!="undefined"?navigator.msDoNotTrack:void 0].some(e=>e==="1"||e==="yes")}function _t(e){var t;if(typeof window=="undefined")return;let n=e!=null?e:bn;if(!n){console.warn("[sentient] grantConsent() called before init()");return}let r=ne.get(n);if(!r){console.warn("[sentient] grantConsent() called before init()");return}let{config:o,upgrade:c,reinit:i}=r;if(!c){r.upgradeBlockedReason&&console.warn(r.upgradeBlockedReason);return}if(o.respectDoNotTrack!==!1&&Se())return;let s=(i!=null?i:je)(be(O({},o),{consent:!0}));c(s);let a=(t=ne.get(n))==null?void 0:t.dispose;ne.set(n,{config:be(O({},o),{consent:!0}),upgrade:null,dispose:a})}function ro(e){var t;let n=e.preConsentBehavior==="statistical_winner",r=Sn((t=e.ingestUrl)!=null?t:vn),o={"Content-Type":"application/json",Authorization:`Bearer ${e.apiKey}`},c=new Map,i=new Map,s={track:()=>{},goal:()=>{},componentGoal:()=>{},identify:()=>{},getAssignment:()=>null,fetchWeights:()=>Promise.resolve([]),assign(l,d,m){if(!n)return Promise.resolve(null);let w=c.get(l);return w?Promise.resolve(w):kt(i,l,async()=>{try{let p=new URLSearchParams({componentId:l});for(let C of d!=null?d:[])p.append("variantIds[]",C);let h=await fetch(`${r}/winner?${p.toString()}`,{headers:o});if(!h.ok)return d!=null&&d[0]?{variantId:d[0],assignmentTtlMs:0}:null;let E={variantId:(await h.json()).variantId,assignmentTtlMs:0};return c.set(l,E),E}catch(p){return d!=null&&d[0]?{variantId:d[0],assignmentTtlMs:0}:null}})},decide:()=>Promise.resolve(null),getSlotResult:()=>null,getSlotConfig:()=>null,getSitePalette:()=>null,reportSlots:()=>{},getPersona:()=>null,getGraph:()=>({pageNodes:[],capturedAt:0}),dispose:()=>{},destroy:()=>{}},a={track:l=>s.track(l),goal:((l,d,m,w)=>s.goal(l,d,m,w)),componentGoal:(l,d,m)=>s.componentGoal(l,d,m),identify:l=>s.identify(l),getAssignment:(l,d)=>s.getAssignment(l,d),assign:(l,d,m,w)=>s.assign(l,d,m,w),decide:l=>s.decide(l),getSlotResult:l=>s.getSlotResult(l),getSlotConfig:l=>s.getSlotConfig(l),getSitePalette:()=>s.getSitePalette(),reportSlots:l=>s.reportSlots(l),getPersona:()=>s.getPersona(),fetchWeights:()=>s.fetchWeights(),getGraph:()=>s.getGraph(),dispose:()=>s.dispose(),destroy:()=>s.destroy()};function u(l){s=l}return{proxy:a,setInner:u}}function kt(e,t,n){let r=e.get(t);if(r)return r;let o=(async()=>{try{return await n()}finally{e.delete(t)}})();return e.set(t,o),o}function je(e){var t,n,r,o,c,i,s,a,u,l;if(typeof window=="undefined")return Me;bn=e.apiKey||"local";let d=ne.get(e.apiKey||"local");if(d!=null&&d.dispose)try{d.dispose()}catch(g){}let m=e.respectDoNotTrack!==!1&&Se(),w=e.consent===!1||m,p=typeof e.apiKey=="string"&&e.apiKey.startsWith("pk_");if(e.localMode===!0||!p&&e.localMode!==!1)return ne.set(e.apiKey||"local",{config:e,upgrade:null,upgradeBlockedReason:"[sentient] grantConsent(): this client is keyless/local \u2014 there is no hosted client to upgrade to. Configure a pk_ API key to enable tracking."}),w?Me:Yr(e);if(w){if(!e.apiKey||!e.apiKey.startsWith("pk_"))return e.preConsentBehavior==="statistical_winner"&&console.warn("[sentient] init() called with an invalid apiKey \u2014 expected a pk_ public key. SDK disabled."),ne.set(e.apiKey||"local",{config:e,upgrade:null,upgradeBlockedReason:"[sentient] grantConsent(): the client was initialized with an invalid apiKey (expected a pk_ public key) \u2014 consent cannot enable tracking."}),Me;let{proxy:g,setInner:y}=ro(e);return ne.set(e.apiKey,{config:e,upgrade:m?null:y}),g}if(!e.apiKey||!e.apiKey.startsWith("pk_"))return console.warn("[sentient] init() called with an invalid apiKey \u2014 expected a pk_ public key. SDK disabled."),Me;if(e.ingestUrl==="")return console.warn("[sentient] init() called with an empty ingestUrl. SDK disabled."),Me;let h=(t=e.ingestUrl)!=null?t:vn,E=Date.now(),C=fn({ssrSessionId:e.ssrSessionId,apiKey:e.apiKey}),P=Jr(void 0,e.apiKey),f=zr({ingestUrl:h,apiKey:e.apiKey}),b=Sn(h),_={"Content-Type":"application/json",Authorization:`Bearer ${e.apiKey}`},K=new Set,A=Wr({url:`${b}/goals`,apiKey:e.apiKey,headers:_,onDrop:(g,y)=>{if(!e.debug){if(K.has(y))return;K.add(y)}console.warn(`[sentient] goal dropped (HTTP ${y}) \u2014 this will not be retried. `+(y===400?"The session was not found: call init() and let the session upsert complete before firing goals.":y===401||y===403?"Check the API key and that this origin is on the project allowlist.":"See the response status for the cause."),g)}}),D=Zt((n=navigator.userAgent)!=null?n:""),G=window.location.origin,X=Qt((r=document.referrer)!=null?r:"",G),M=(o=e.sessionSegment)!=null?o:`${D}:${X}`,j=new Map,se=new Map,S=new Map,v=new Map,k=null,x=null,I=new Set,ee=new Set,F=null,ae=g=>{for(let y of g)S.has(y.id)||S.set(y.id,St(y))};if(e.initialSlots)for(let[g,y]of Object.entries(e.initialSlots))S.set(g,y);if(e.initialSlotConfig)for(let[g,y]of Object.entries(e.initialSlotConfig))v.set(g,y);e.initialPalette&&(k=e.initialPalette);let q=Be(e.apiKey);if(q){for(let[g,y]of Object.entries(q.slots))S.has(g)||S.set(g,y);for(let[g,y]of Object.entries((c=q.slotConfig)!=null?c:{}))v.has(g)||v.set(g,y);!k&&q.palette&&(k=q.palette)}let ke={low:.15,medium:.5,high:.85};if(e.initialPersona)x=O({},e.initialPersona);else{let g=document.documentElement.dataset;g.sentientPersona?x={persona:g.sentientPersona,confidence:(s=ke[(i=g.sentientConfidence)!=null?i:"low"])!=null?s:.15}:q&&(x={persona:q.persona,confidence:(a=ke[q.band])!=null?a:.15})}if(e.initialAssignments)for(let[g,y]of Object.entries(e.initialAssignments))P.set(g,M,{variantId:y,assignedAt:Date.now(),segment:M,confidence:1});let fe=Promise.resolve(),Bt=C.getSessionId();if(Bt){let g=en((u=document.referrer)!=null?u:""),{utmParams:y,clickIds:N}=no(),te=O(O(O(O({sessionId:Bt,deviceClass:D,trafficSource:X,referrerDomain:g,utmParams:y,clickIds:N,timeOfDay:nn(new Date),dayOfWeek:["sun","mon","tue","wed","thu","fri","sat"][new Date().getDay()],ephemeral:C.isEphemeral(),automation:typeof navigator!="undefined"&&navigator.webdriver===!0||Yt((l=navigator.userAgent)!=null?l:"")},e.userId?{userId:e.userId}:{}),e.persona?{persona:e.persona}:{}),e.country?{country:e.country}:{}),e.sdk?{sdk:e.sdk.name,sdkVersion:e.sdk.version}:{}),H=async()=>{for(let L=0;;L++){try{let B=await fetch(`${b}/sessions`,{method:"POST",keepalive:!0,body:JSON.stringify(te),headers:_});if(B.status===402){console.warn("[SentientUI] Session limit exceeded for this project. The bandit will stop learning until the limit resets. Upgrade at sentient-ui.com/pricing");return}if(B.ok||Ct(B)==="dropped")return}catch(B){}if(L>=Qr){console.warn("[SentientUI] Could not register the session after retries. Conversions in this visit may not be recorded.");return}await new Promise(B=>setTimeout(B,Ne(L+1)))}};try{fe=H()}catch(L){}}e.debug&&(console.log("[sentient] initialized",{context:e.context}),window.__sentient={client:null,queue:f});let dr=eo(),Le=null,vt=!1,Ce={goal(g,y={},N=1,te=0){var H,L,B,Y,Z,ve,pe;let Re=C.getSessionId();if(!Re)return;let Q=Zr(y)?y:{metadata:y},Te=[g,(H=Q.externalId)!=null?H:"",(L=Q.stepIndex)!=null?L:te,(B=Q.weight)!=null?B:N].join("\0"),R=Q.value!==void 0?`${Q.value}\0${(Y=Q.currency)!=null?Y:""}`:null;if(dr.firedBefore(Te,R)){e.debug&&console.log(`[sentient] goal("${g}") already recorded for this action \u2014 not sent twice`);return}let le=Et(),He={sessionId:Re,name:g,metadata:(Z=Q.metadata)!=null?Z:{},weight:(ve=Q.weight)!=null?ve:N,stepIndex:(pe=Q.stepIndex)!=null?pe:te,goalId:le,value:Q.value,currency:Q.currency,externalId:Q.externalId};e.debug&&console.log("[sentient] goal",He);let z={id:le,body:JSON.stringify(He)};fe.then(()=>A.send(z))},componentGoal(g,y,N){var te,H,L;let B=C.getSessionId();if(!B)return;let Y=P.get(g,M),Z=Y?null:(te=S.get(g))!=null?te:null;if(!Y&&Z===null){e.debug&&console.warn(`[sentient] componentGoal("${g}"): no assignment or slot decision yet \u2014 render its <Adaptive>/adaptive hook or call assign()/decide() before recording a goal.`);return}let ve=Y?Y.variantId:rn(Z),pe={id:Et(),sessionId:B,projectId:e.apiKey,componentId:g,variantId:ve,eventType:"goal_achieved",goalType:y,payload:O({reward:(H=N==null?void 0:N.reward)!=null?H:1,goalValue:N==null?void 0:N.value,currency:N==null?void 0:N.currency},(L=N==null?void 0:N.metadata)!=null?L:{}),timestamp:Date.now(),timeInSession:Date.now()-E,path:et()};e.debug&&console.log("[sentient] componentGoal",pe),fe.then(()=>f.push(pe))},identify(g){let y=C.getSessionId();y&&fe.then(()=>{fetch(`${b}/sessions`,{method:"POST",keepalive:!0,body:JSON.stringify({sessionId:y,userId:g,ephemeral:C.isEphemeral()}),headers:_}).catch(()=>{})})},track(g){let y=C.getSessionId();if(!y)return;let N=be(O({path:et()},g),{id:Et(),sessionId:y,timestamp:Date.now(),timeInSession:Date.now()-E});e.debug&&console.log("[sentient] track",N),fe.then(()=>f.push(N))},getAssignment(g,y){return P.get(g,y)},async assign(g,y,N,te){let H=C.getSessionId();if(!H)return null;let L=P.get(g,M);if(L&&(y!=null&&y.length||L.content!==void 0)){let B=L.ttlMs&&L.ttlMs>0?Math.max(0,L.assignedAt+L.ttlMs-Date.now()):0;return{variantId:L.variantId,assignmentTtlMs:B,content:L.content}}return kt(j,g,async()=>{await fe;try{let B={sessionId:H,componentId:g,variantIds:y};te!==void 0?B.agentDataByVariant=te:N!==void 0&&(B.agentData=N);let Y=await fetch(`${b}/assign`,{method:"POST",body:JSON.stringify(B),headers:_});if(!Y.ok)return null;let Z=await Y.json();return P.set(g,M,O({variantId:Z.variantId,assignedAt:Date.now(),segment:M,confidence:1,content:Z.content},Z.assignmentTtlMs&&Z.assignmentTtlMs>0?{ttlMs:Z.assignmentTtlMs}:{})),Z}catch(B){return null}})},async decide(g){var y,N;let te=C.getSessionId();if(!te)return null;let H=(y=g.slots)!=null?y:[],L={sessionId:te};g.sections&&g.sections.length>0&&(L.sections=g.sections.map(Y=>({id:Y}))),L.components=(N=g.components)!=null?N:[],H.length>0&&(L.slots=H.map(wt)),g.slotsFrom==="registry"&&(L.slotsFrom="registry"),g.v&&(L.v=g.v),typeof g.pp=="number"&&(L.pp=g.pp),e.persona&&(L.persona=e.persona);let B=JSON.stringify(L);return kt(se,B,async()=>{var Y,Z,ve,pe,Re,Q;await fe;try{let Te=await fetch(`${b}/decide`,{method:"POST",body:B,headers:_});if(!Te.ok)return ae(H),null;let R=await Te.json(),le={};for(let z of H){let re=(Y=R.slots)==null?void 0:Y[z.id];if(re!==void 0){le[z.id]=re,S.set(z.id,re);continue}let $t=S.get(z.id);if($t!==void 0)le[z.id]=$t;else{let Kt=St(z);le[z.id]=Kt,S.set(z.id,Kt)}}if(R.slots)for(let[z,re]of Object.entries(R.slots))z in le||(le[z]=re,S.set(z,re));let He=x!=null&&x.persona!=="unknown";R.persona&&!(R.persona==="unknown"&&He)?x={persona:R.persona,confidence:(Z=R.confidence)!=null?Z:0}:x||(x={persona:"unknown",confidence:0});for(let[z,re]of Object.entries((ve=R.assignments)!=null?ve:{}))P.set(z,M,{variantId:re,assignedAt:Date.now(),segment:M,confidence:1});if(R.slotConfig)for(let[z,re]of Object.entries(R.slotConfig))v.set(z,re);return R.palette&&(k=R.palette),$e(e.apiKey,O(O({v:1,persona:x.persona,band:we(x.confidence),slots:Object.fromEntries(S),layoutOrder:(pe=R.layoutOrder)!=null?pe:null,savedAt:Date.now()},v.size>0?{slotConfig:Object.fromEntries(v)}:{}),k?{palette:k}:{})),O(O(O(O({layoutOrder:(Re=R.layoutOrder)!=null?Re:null,assignments:(Q=R.assignments)!=null?Q:{},slots:le,persona:x.persona,confidence:x.confidence},R.slotConfig?{slotConfig:R.slotConfig}:{}),R.goals?{goals:R.goals}:{}),R.sectionMap?{sectionMap:R.sectionMap}:{}),R.palette?{palette:R.palette}:{})}catch(Te){return ae(H),null}})},getSlotResult(g){var y;return(y=S.get(g))!=null?y:null},getSlotConfig(g){var y;return(y=v.get(g))!=null?y:null},reportSlots(g){for(let y of g)typeof y=="string"&&y.length>0&&!I.has(y)&&(I.add(y),ee.add(y));ee.size===0||F!=null||(F=setTimeout(()=>{F=null;let y=[...ee].slice(0,20);ee.clear(),y.length!==0&&fetch(`${b}/slots/observed`,{method:"POST",headers:_,body:JSON.stringify({slotIds:y})}).catch(()=>{})},1e3))},getSitePalette(){return k},getPersona(){return x?{persona:x.persona,confidence:x.confidence,band:we(x.confidence)}:null},async fetchWeights(){var g;try{let y=await fetch(`${b}/weights`,{headers:_});return y.ok?(g=(await y.json()).components)!=null?g:[]:[]}catch(y){return[]}},getGraph(){return{pageNodes:[],capturedAt:0}},dispose(){var g;Le==null||Le(),vt=!0,f.destroy(),A.destroy(),((g=ne.get(e.apiKey))==null?void 0:g.dispose)===Ce.dispose&&ne.delete(e.apiKey),e.debug&&console.log("[sentient] disposed")},destroy(){var g;Le==null||Le(),vt=!0,f.destroy(),A.destroy(),C.destroy(),P.clear(),((g=ne.get(e.apiKey))==null?void 0:g.dispose)===Ce.dispose&&ne.delete(e.apiKey);try{localStorage.removeItem(tt+e.apiKey),localStorage.removeItem(mn(e.apiKey)),localStorage.removeItem(hn(e.apiKey))}catch(y){}e.debug&&console.log("[sentient] destroyed")}};if(ne.set(e.apiKey,{config:e,upgrade:null,dispose:Ce.dispose}),Le=to(Ce,e.apiKey,g=>{fe.then(()=>{vt||wn.add(g)})}),e.debug){let g=window;g.__sentient&&(g.__sentient.client=Ce)}return Ce}var oo=["data-sentient-id","data-testid","data-test","data-id","data-name","data-cy"];function It(e){var t;return((t=e.textContent)!=null?t:"").replace(/\s+/g," ").trim()}function io(e){return{tag:e.tagName.toLowerCase(),text:It(e).slice(0,40)}}function An(e){return e.replace(/["\\\]]/g,"\\$&")}function Ge(e,t){try{return e.querySelectorAll(t).length===1}catch(n){return!1}}function En(e,t){var n;let r=e.tagName.toLowerCase();if(!r)return null;let o=((n=e.getAttribute("class"))!=null?n:"").split(/\s+/).filter(s=>/^[a-zA-Z][\w-]*$/.test(s)),c=[r,...o.map(s=>`${r}.${s}`)];for(let s of c)if(Ge(t,s))return s;let i=e.parentElement;if(i&&i!==t){let s=En(i,t);if(s){for(let d of c){let m=`${s} > ${d}`;if(Ge(t,m))return m}let a=Array.from(i.children).filter(d=>d.tagName.toLowerCase()===r),u=a.indexOf(e),l=a.some(d=>d!==e&&It(d)!==It(e));if(u>=0&&l){let d=`${s} > ${r}:nth-of-type(${u+1})`;if(Ge(t,d))return d}}}return null}function xn(e,t){let n=io(e),r=e.getAttribute("id");if(r&&Ge(t,`#${An(r)}`))return{v:1,id:r,fingerprint:n};for(let c of oo){let i=e.getAttribute(c);if(i&&Ge(t,`[${c}="${An(i)}"]`))return{v:1,dataAttr:{name:c,value:i},fingerprint:n}}let o=En(e,t);return o?{v:1,selector:o,fingerprint:n}:null}De();var Cn=["pricing","hero","social_proof","cta","features","faq","comparison","trust","navigation","generic"],so={banner:"hero",navigation:"navigation",contentinfo:"footer"};function ao(e){let t=e.ariaRole?so[e.ariaRole.toLowerCase()]:void 0;if(t)return t;if(e.tag==="nav")return"navigation";if(e.tag==="footer")return"footer";if(e.tag==="header")return e.actionCount>=5?"navigation":"hero";let n=`${e.idClass} ${e.headingText}`.toLowerCase();return/\b(navbar|nav-bar|navigation|site-nav|main-nav|topbar|footer)\b/.test(n)?/footer/.test(n)?"footer":"navigation":/\b(hero|masthead|jumbotron)\b/i.test(e.idClass)?"hero":null}function lo(e){return e.actionCount>=1&&e.textLength>0&&e.textLength<200?"cta":"generic"}var co=[["pricing",/\b(pricing|price list|per month|\/mo|subscriptions?)\b|\bplans?\b(?=[^.]{0,40}(from|start|month|year|[$€£]))/i],["faq",/\bfaq\b|frequently asked|common questions?/i],["comparison",/\b(compare|comparison|versus)\b|\bvs\./i],["social_proof",/\b(reviews?|ratings?|testimonial|brands?|galler(y|ies)|logos)\b|trusted by|loved by|case stud|what our customers say/i],["trust",/\b(insurance|warrant(y|ies)|guarantees?|certifi|accredit|security|privacy|compliance|gdpr|encrypt)\b|why choose|about us|our team/i],["cta",/\b(book|booking|reserve|appointments?|newsletter|subscribe)\b|contact us|get in touch|opening hours/i],["features",/\b(features?|benefits?|capabilit|services?|repairs?|menus?|products?)\b|how it works|our process|what we (do|offer)|what you get/i]],Ot=[["pricing",/(?:[$€£]\s?\d[\d,.]*\s*(?:\/|per\s)\s*(?:mo|month|yr|year|seat|user))|(?:\b(?:starter|basic|pro|growth|premium|enterprise)\b[^.]{0,60}[$€£]\s?\d)/i],["social_proof",/(?:★{2,})|(?:\b\d(?:\.\d)?\s*(?:out of|\/)\s*5\b)|(?:\brated\b)|(?:["“][^"”]{20,160}["”]\s*[—–-]\s*[A-Z][a-z]+)/],["trust",/\b(?:money[- ]back guarantee|free returns?|returns? within|refund(?:s)? within|encrypted|soc ?2|iso ?27001|gdpr[- ]compliant|cancel anytime)\b/i],["comparison",/\b(?:vs|versus)\b\.?[^.!?]{0,80}\b(?:compare|comparison|plans?|features?|alternative)\b|\bhow (?:we|it) compares?\b/i]],kn={navigation:"navigation",footer:"navigation",hero:"hero",cta:"cta",generic:"generic"};function uo(e){var t;let n=e.querySelector("h1, h2, h3");return((t=n==null?void 0:n.textContent)!=null?t:"").slice(0,160)}function _n(e){var t,n;let r=ao(e);if(r)return{type:(t=kn[r])!=null?t:"generic",strength:"strong"};let o=`${e.idClass} ${e.headingText}`.toLowerCase();for(let[i,s]of co)if(s.test(o))return{type:i,strength:"strong"};for(let[i,s]of Ot)if(s.test(e.bodyText))return{type:i,strength:"strong"};let c=lo(e);return{type:(n=kn[c])!=null?n:"generic",strength:"weak"}}function In(e){var t,n;let r=((t=e.textContent)!=null?t:"").replace(/\s+/g," ").trim(),o=e.getAttribute("role");return O({tag:e.tagName.toLowerCase(),idClass:`${e.id} ${String((n=e.className)!=null?n:"")}`,headingText:uo(e),bodyText:r.slice(0,2e3),actionCount:e.querySelectorAll('a, button, [role="button"]').length,textLength:r.length},o?{ariaRole:o}:{})}De();var fo="section, header, footer, nav, main > div, [data-sentient-section]",po=2e4;function go(e){let t=Array.from(e.querySelectorAll(fo)),n=t.filter(r=>t.filter(o=>o!==r&&r.contains(o)).length<2);return n.filter(r=>!n.some(o=>o!==r&&o.contains(r)))}function mo(e,t,n,r){try{fetch(`${t}/v1/section-map`,{method:"POST",keepalive:!0,headers:{"content-type":"application/json",authorization:`Bearer ${e}`},body:JSON.stringify({pageUrl:n,sections:r})}).catch(()=>{})}catch(o){}}var On=()=>{};function Pn(e,t){var n,r,o,c,i,s,a,u,l,d,m,w;let p=(n=t.doc)!=null?n:typeof document!="undefined"?document:void 0;if(!p||typeof IntersectionObserver=="undefined"||Se()||!t.apiKey||!t.apiKey.startsWith("pk_"))return On;let h=((r=t.apiBase)!=null?r:"https://api.sentient-ui.com").replace(/\/+$/,"").replace(/\/v1$/,""),E=go(p);if(E.length===0)return On;let C=new Map,P=[];for(let v of E){let k=v.getAttribute("data-sentient-type"),x=k&&Cn.includes(k)?k:null,I=In(v),ee=(c=x!=null?x:(o=t.typeOf)==null?void 0:o.call(t,v))!=null?c:_n(I).type,F=xn(v,p),ae=F?`nc-${ee}-${Vt(JSON.stringify({id:(i=F.id)!=null?i:null,dataAttr:(s=F.dataAttr)!=null?s:null,selector:(a=F.selector)!=null?a:null})).toString(36)}`:`nc-${ee}`;C.set(v,ae);let q=Ot.filter(([,ke])=>ke.test(I.bodyText)).map(([ke])=>ke);P.push(be(O({componentId:ae,semanticType:ee,source:x?"markup":"auto"},F?{locator:F}:{}),{observation:O(O({tag:I.tag,idClass:I.idClass.slice(0,200),headingText:I.headingText,textLength:I.textLength,actionCount:I.actionCount},I.ariaRole?{ariaRole:I.ariaRole}:{}),q.length>0?{patternFlags:q}:{})}))}let f=(m=(d=(l=(u=p.defaultView)!=null?u:typeof window!="undefined"?window:void 0)==null?void 0:l.location)==null?void 0:d.pathname)!=null?m:"/";mo(t.apiKey,h,f,P);let b=new Map,_=v=>{let k=b.get(v);return k||(k={ms:0,scroll:0,enterAt:null,intersecting:!1},b.set(v,k)),k},K=new IntersectionObserver(v=>{for(let k of v){let x=C.get(k.target);if(!x)continue;let I=_(x);k.isIntersecting?(I.intersecting=!0,I.enterAt=Date.now(),k.intersectionRatio>I.scroll&&(I.scroll=k.intersectionRatio)):(I.intersecting=!1,I.enterAt!=null&&(I.ms+=Date.now()-I.enterAt,I.enterAt=null))}},{threshold:[0,.25,.5,.75,1]});for(let v of C.keys())K.observe(v);let A=()=>{let v=Date.now();for(let[k,x]of b)if(x.enterAt!=null&&(x.ms+=v-x.enterAt,x.enterAt=null),!(x.ms<=0)){try{e.track({projectId:t.apiKey,componentId:k,eventType:"dwell",payload:{dwell_time:Math.round(x.ms),scroll_depth:Number(x.scroll.toFixed(2))}})}catch(I){}x.ms=0}},D=()=>{if(p.hidden)A();else{let v=Date.now();for(let k of b.values())k.intersecting&&(k.enterAt=v)}},G=!1,X=v=>{if(A(),v!=null&&v.persisted){G=!0;return}try{K.disconnect()}catch(k){}},M=v=>{if(!(v!=null&&v.persisted)||!G)return;G=!1;let k=Date.now();for(let x of b.values())x.enterAt=x.intersecting&&!p.hidden?k:null};p.addEventListener("visibilitychange",D);let j=(w=p.defaultView)!=null?w:typeof window!="undefined"?window:void 0;j==null||j.addEventListener("pagehide",X),j==null||j.addEventListener("pageshow",M);let se=setInterval(()=>{if(p.hidden||G)return;A();let v=Date.now();for(let k of b.values())k.intersecting&&(k.enterAt=v)},po),S=[];return t.microSignals&&[...C.entries()].forEach(([v,k],x)=>{S.push(Ke((I,ee={})=>{try{e.track({projectId:t.apiKey,componentId:k,eventType:"micro_signal",payload:O({signalType:I},ee)})}catch(F){}},v,void 0,{tabLoss:x===0}))}),()=>{A(),clearInterval(se),p.removeEventListener("visibilitychange",D),j==null||j.removeEventListener("pagehide",X),j==null||j.removeEventListener("pageshow",M);for(let v of S)v();try{K.disconnect()}catch(v){}}}var ho=["landing","ecommerce","saas","marketplace"];function yo(e){if(typeof e!="object"||e===null||Array.isArray(e))return null;let t=Object.entries(e);if(t.length<1||t.length>4)return null;let n={};for(let[r,o]of t){if(!Array.isArray(o)||o.length<2||o.length>6||!o.every(c=>typeof c=="string"))return null;n[r]=o}return n}function vo(e){return!Array.isArray(e)||e.length<2||e.length>12||!e.every(t=>typeof t=="string")?null:e}function bo(e){try{return e()}catch(t){return}}function rt(e){if(typeof e!="object"||e===null)return null;let t=e;if(typeof t.apiKey!="string"||!t.apiKey.startsWith("pk_"))return null;let n=ho.includes(t.context)?t.context:"landing",r={};if(typeof t.slots=="object"&&t.slots!==null&&!Array.isArray(t.slots))for(let[i,s]of Object.entries(t.slots)){if(typeof s!="object"||s===null)continue;let a=s,u=yo(a.dims);if(!u||a.target!==void 0&&typeof a.target!="string")continue;let l=a.arms!==void 0?vo(a.arms):null,d={dims:u};typeof a.target=="string"&&(d.target=a.target),l&&(d.arms=l),r[i]=d}let o={apiKey:t.apiKey,context:n,personaAttributes:t.personaAttributes===!0,slots:r};typeof t.consent=="boolean"&&(o.consent=t.consent),(t.preConsentBehavior==="statistical_winner"||t.preConsentBehavior==="control")&&(o.preConsentBehavior=t.preConsentBehavior),t.debug===!0&&(o.debug=!0),typeof t.registry=="boolean"&&(o.registry=t.registry),typeof t.editorSrc=="string"&&(o.editorSrc=t.editorSrc),typeof t.apiBase=="string"&&(o.apiBase=t.apiBase),typeof t.sectionCapture=="boolean"&&(o.sectionCapture=t.sectionCapture);let c=typeof t.persona=="function"?bo(t.persona):t.persona;if(typeof c=="string"&&c.trim()!==""&&(o.persona=c),Array.isArray(t.sections)){let i=t.sections.filter(s=>typeof s=="string"&&s.trim()!=="").slice(0,50);i.length>=2&&(o.sections=i)}return o}function ot(e){var n,r,o;let t=(r=(n=e.defaultView)!=null?n:typeof window!="undefined"?window:void 0)==null?void 0:r.location;return(o=t==null?void 0:t.pathname)!=null?o:""}function wo(e,t){var n;if(t.tag&&e.tagName.toLowerCase()!==t.tag.toLowerCase())return!1;if(t.text){let r=((n=e.textContent)!=null?n:"").replace(/\s+/g," ").trim().toLowerCase(),o=t.text.replace(/\s+/g," ").trim().toLowerCase();if(!(r===o||r.startsWith(o)||o.startsWith(r)))return!1}return!0}function Ln(e,t){return!!(e!=null&&e.urlMatch)&&!ot(t).includes(e.urlMatch)}var So=/^[a-zA-Z_][-a-zA-Z0-9_]*$/;function ge(e,t){var o;if(e.urlMatch&&!ot(t).includes(e.urlMatch))return null;let n=[];if(e.id){let c=t.getElementById(e.id);n=c?[c]:[]}if(n.length===0&&((o=e.dataAttr)!=null&&o.name)&&So.test(e.dataAttr.name))try{let c=e.dataAttr.value.replace(/["\\]/g,"\\$&");n=Array.from(t.querySelectorAll(`[${e.dataAttr.name}="${c}"]`))}catch(c){n=[]}if(n.length===0&&e.selector)try{n=Array.from(t.querySelectorAll(e.selector))}catch(c){n=[]}if(n.length!==1)return null;let r=n[0];return e.fingerprint&&!wo(r,e.fingerprint)?null:r}var Rn={color:"color",background:"background",fontSize:"font-size",fontWeight:"font-weight",textAlign:"text-align",padding:"padding",margin:"margin",borderRadius:"border-radius",width:"width",height:"height",maxWidth:"max-width",border:"border",boxShadow:"box-shadow",opacity:"opacity",lineHeight:"line-height",letterSpacing:"letter-spacing",textTransform:"text-transform",gap:"gap",fontFamily:"font-family"},Ao=/^(rgb|rgba|hsl|hsla|calc|var|min|max|clamp)$/i;function Tn(e){var r;if(e.trim().length===0||/[;{}<>]/.test(e))return!1;let t=/([A-Za-z-]*)\(/g,n;for(;(n=t.exec(e))!==null;)if(!Ao.test((r=n[1])!=null?r:""))return!1;return!0}var Dn=/^https:\/\//i,Mn=new Map,me=null;function Eo(e){return e.replace(/["\\]/g,"\\$&")}function xo(e){var t;(!me||!me.isConnected)&&(me=e.querySelector("style[data-sentient-ops]"),me||(me=e.createElement("style"),me.setAttribute("data-sentient-ops",""),((t=e.head)!=null?t:e.documentElement).appendChild(me))),me.textContent=[...Mn.entries()].map(([n,r])=>`[data-snt-e="${Eo(n)}"]{${r}}`).join(`
|
|
2
|
+
`)}function Nn(e,t,n,r){var s;let o=!1,c=(s=t.moveBefore)!=null?s:t.moveAfter;if(c){let a=ge(c,r);!a||a===e||a.parentElement!==e.parentElement||!e.parentElement?o=!0:t.moveBefore?e.parentElement.insertBefore(e,a):e.parentElement.insertBefore(e,a.nextSibling)}typeof t.text=="string"&&(e.textContent=t.text),typeof t.href=="string"&&Dn.test(t.href)&&e.setAttribute("href",t.href),typeof t.imageSrc=="string"&&Dn.test(t.imageSrc)&&e.setAttribute("src",t.imageSrc),typeof t.imageAlt=="string"&&e.setAttribute("alt",t.imageAlt);let i=[];if(t.hidden&&i.push("display:none !important"),t.style)for(let[a,u]of Object.entries(t.style)){let l=Rn[a];l&&typeof u=="string"&&Tn(u)&&i.push(`${l}:${u.trim()} !important`)}return i.length>0&&(e.setAttribute("data-snt-e",n),Mn.set(n,i.join(";")),xo(r)),{anchorMiss:o}}var Ue="data-sentient-block-arm",oe=null;function ze(e){oe=e!=null?e:null}var ue="data-sentient-blocks-hid",it={none:"0",sm:"8px",md:"16px",lg:"24px"},Pt={start:"flex-start",center:"center",end:"flex-end",stretch:"stretch",between:"space-between"},Bn={sm:"0.875em",md:"1em",lg:"1.25em"},ko={sm:"1.25em",md:"1.5em",lg:"2em"},Co={sm:"6px 14px",md:"10px 20px",lg:"14px 28px"},$n={sm:"8px",md:"16px",lg:"32px"},_o={square:"1 / 1",landscape:"4 / 3",wide:"16 / 9"},Io={normal:"400",medium:"500",bold:"700"};function ce(e,t){for(let[n,r]of Object.entries(t))r!==void 0&&e.style.setProperty(n,r);return e}function Kn(e){return{opacity:e==="muted"?"0.7":void 0,"font-weight":e==="accent"?"600":void 0}}function jn(e,t){var n,r,o,c,i,s,a,u,l,d,m,w;try{switch(e.type){case"stack":case"grid":{let p=t.createElement("div");if(e.type==="stack"){let h=e;ce(p,{display:"flex","flex-direction":h.direction,gap:(r=it[(n=h.gap)!=null?n:"md"])!=null?r:it.md,"align-items":h.align?Pt[h.align]:void 0,"justify-content":h.justify?Pt[h.justify]:void 0,"flex-wrap":h.wrap?"wrap":void 0})}else{let h=e,E=(c=it[(o=h.gap)!=null?o:"md"])!=null?c:it.md;ce(p,{display:"grid","grid-template-columns":`repeat(auto-fit, minmax(max(200px, calc((100% - ${h.columns-1} * ${E}) / ${h.columns})), 1fr))`,gap:E,"align-items":h.align?Pt[h.align]:void 0})}for(let h of(i=e.children)!=null?i:[]){let E=jn(h,t);E&&p.appendChild(E)}return p}case"text":{let p=t.createElement("p");return p.textContent=e.value,ce(p,J({margin:"0","font-size":e.size?Bn[e.size]:void 0,"font-weight":e.weight?Io[e.weight]:void 0,"text-align":e.align},Kn(e.tone)))}case"heading":{let p=t.createElement(`h${e.level}`);return p.textContent=e.value,ce(p,{margin:"0","font-size":ko[(s=e.size)!=null?s:"md"],"text-align":e.align})}case"button":{let p=t.createElement("a");p.textContent=e.label,p.href=e.href,e.tag&&p.setAttribute("data-sentient-tag",e.tag);let h=(a=e.emphasis)!=null?a:"primary";return ce(p,{display:"inline-block",padding:Co[(u=e.size)!=null?u:"md"],"border-radius":(l=oe==null?void 0:oe.radius)!=null?l:"8px",font:"inherit","font-size":e.size?Bn[e.size]:void 0,"text-decoration":h==="ghost"?"underline":"none",cursor:"pointer",background:h==="primary"?(d=oe==null?void 0:oe.primaryBg)!=null?d:"#111827":"transparent",color:h==="primary"?(m=oe==null?void 0:oe.primaryText)!=null?m:"#ffffff":"inherit",border:h==="secondary"?"1px solid currentColor":"none"})}case"link":{let p=t.createElement("a");return p.textContent=e.label,p.href=e.href,e.tag&&p.setAttribute("data-sentient-tag",e.tag),ce(p,{color:"inherit","text-decoration":"underline"})}case"image":{let p=t.createElement("img");return p.src=e.src,p.alt=e.alt,ce(p,{display:"block","max-width":"100%","aspect-ratio":e.ratio&&e.ratio!=="auto"?_o[e.ratio]:void 0,"object-fit":e.fit,width:e.ratio&&e.ratio!=="auto"?"100%":void 0})}case"badge":{let p=t.createElement("span");return p.textContent=e.value,ce(p,J({display:"inline-block",padding:"2px 10px","border-radius":"999px","font-size":"0.75em",border:"1px solid currentColor"},Kn(e.tone)))}case"spacer":return ce(t.createElement("div"),{height:(w=$n[e.size])!=null?w:$n.md});default:return null}}catch(p){return null}}function Gn(e,t,n,r){try{let o=new Set;for(let i of Array.from(e.children)){let s=i.getAttribute(Ue);s!==null&&(t[s]===void 0?i.remove():o.add(s))}for(let[i,s]of Object.entries(t)){if(o.has(i))continue;let a=jn(s,r);if(!a)continue;let u=r.createElement("div");u.setAttribute(Ue,i),u.style.display="none",u.appendChild(a),e.appendChild(u)}let c=n!==void 0&&t[n]!==void 0;for(let i of Array.from(e.children)){let s=i.getAttribute(Ue),a=i;s!==null?a.style.display=c&&s===n?"":"none":c?a.hasAttribute(ue)||(a.setAttribute(ue,a.style.display),a.style.display="none"):a.hasAttribute(ue)&&(a.style.display=a.getAttribute(ue),a.removeAttribute(ue))}}catch(o){}}function Oo(e){try{for(let t of Array.from(e.children)){let n=t;if(n.getAttribute(Ue)!==null){n.remove();continue}n.hasAttribute(ue)&&(n.style.display=n.getAttribute(ue),n.removeAttribute(ue))}}catch(t){}}function st(e,t){try{let n=new Set;for(let r of Array.from(e.querySelectorAll(`[${Ue}]`)))r.parentElement&&n.add(r.parentElement);for(let r of Array.from(e.querySelectorAll(`[${ue}]`)))r.parentElement&&n.add(r.parentElement);for(let r of n)t.has(r)||Oo(r)}catch(n){}}function Lt(e,t){if(!e)return[t.documentElement];try{return Array.from(t.querySelectorAll(e))}catch(n){return[]}}function at(e,t,n,r){n.documentElement.setAttribute("data-sentient-persona",e),n.documentElement.setAttribute("data-sentient-confidence",t),r==null||r(n.documentElement,"data-sentient-persona"),r==null||r(n.documentElement,"data-sentient-confidence")}function lt(e,t,n,r){var o;for(let[c,i]of Object.entries(t)){let s=e[c];if(!s||typeof s=="string")continue;let a=Lt(i.target,n);for(let u of a)for(let[l,d]of Object.entries(s))(o=i.dims[l])!=null&&o.includes(d)&&(u.setAttribute(`data-${l}`,d),r==null||r(u,`data-${l}`))}}function ct(e,t,n,r){for(let[o,c]of Object.entries(t)){let i=e[o];if(typeof i!="string"||!c.arms||!c.arms.includes(i))continue;let s=Lt(c.target,n);for(let a of s)a.setAttribute("data-sentient-arm",i),r==null||r(a,"data-sentient-arm")}}function ut(e,t,n,r){var s,a,u,l;let o=new Set,c=(s=r==null?void 0:r.contentAndOps)!=null?s:!0,i=[];for(let[d,m]of Object.entries(t)){if(Ln(m.locator,n))continue;let w;if(m.locator){let h=ge(m.locator,n);w=h?[h]:[]}else w=Lt(m.target,n);(m.locator||m.target)&&w.length===0&&i.push(d);let p=e[d];for(let h of w){if(p!==void 0)if(typeof p=="string")h.setAttribute("data-sentient-arm",p),(a=r==null?void 0:r.onAttr)==null||a.call(r,h,"data-sentient-arm"),c&&((u=r==null?void 0:r.onApplied)==null||u.call(r,d,p,h));else for(let[E,C]of Object.entries(p))h.setAttribute(`data-${E}`,C),(l=r==null?void 0:r.onAttr)==null||l.call(r,h,`data-${E}`);if(m.blocks&&!Lo(n)){let E=Object.fromEntries(Object.entries(m.blocks).filter(([,C])=>!nt(C)));Object.keys(E).length>0&&(Gn(h,E,typeof p=="string"?p:void 0,n),o.add(h))}c&&(typeof m.content=="string"&&(h.textContent=m.content),m.ops&&Nn(h,m.ops,d,n).anchorMiss&&!i.includes(d)&&i.push(d))}}return st(n,o),i}var Po=/bot|crawler|spider|crawling|googlebot|bingbot|duckduckbot|baiduspider|yandexbot|slurp|gptbot|claudebot|anthropic|perplexity|ccbot|applebot|headlesschrome/i;function Lo(e){var t,n,r;try{let o=(n=(t=e.defaultView)!=null?t:typeof window!="undefined"?window:void 0)==null?void 0:n.navigator;return o?o.webdriver===!0?!0:Po.test((r=o.userAgent)!=null?r:""):!1}catch(o){return!1}}var Ro=800;function dt(e,t,n){let r=[];return n.forEach(({slotId:o,arm:c,el:i},s)=>{r.push(Ke((m,w={})=>{try{e.track({projectId:t,componentId:o,variantId:c,eventType:"micro_signal",payload:J({signalType:m},w)})}catch(p){}},i,void 0,{tabLoss:s===0}));let a=null,u=0,l=()=>{u=Date.now(),a=setTimeout(()=>{try{e.track({projectId:t,componentId:o,variantId:c,eventType:"cursor_signal",payload:{hoverDuration:Date.now()-u}})}catch(m){}a=null},Ro)},d=()=>{a!==null&&(clearTimeout(a),a=null)};i.addEventListener("mouseenter",l),i.addEventListener("mouseleave",d),r.push(()=>{i.removeEventListener("mouseenter",l),i.removeEventListener("mouseleave",d),a!==null&&clearTimeout(a)})}),()=>{for(let o of r)o()}}function To(e,t){if(!e)return!1;if(e==="/")return t==="/";let n=e.endsWith("/")?e.slice(0,-1):e;return t===n||t.startsWith(`${n}/`)}function zn(e){return e?`_snt_fired_goals_${e.slice(0,12)}`:"_snt_fired_goals"}var Do="_snt_fired_goals";function Fn(e,t){try{e==null||e.sessionStorage.removeItem(zn(t)),e==null||e.sessionStorage.removeItem(Do)}catch(n){}}function Un(e){var t;return[(t=e.slotId)!=null?t:"",e.goalId,e.event,e.locator?JSON.stringify(e.locator):""].join("|")}function Mo(e,t){try{let n=e==null?void 0:e.sessionStorage.getItem(t);if(!n)return new Set;let r=JSON.parse(n);return Array.isArray(r)?new Set(r.filter(o=>typeof o=="string")):new Set}catch(n){return new Set}}function No(e,t,n){try{e==null||e.sessionStorage.setItem(t,JSON.stringify([...n]))}catch(r){}}function ft(e,t,n,r){var C,P;let o=(C=n.defaultView)!=null?C:typeof window!="undefined"?window:null,c=zn(r),i=Mo(o,c),s=f=>{let b=Un(f);if(!i.has(b))try{f.slotId?t.componentGoal(f.slotId,f.goalId):t.goal(f.goalId),i.add(b),No(o,c,i)}catch(_){}},a=e.filter(f=>f.event==="click"),u=e.filter(f=>f.event==="form_submit"),l=e.filter(f=>f.event==="url_reached"),d=e.filter(f=>f.event==="scroll_depth"),m=(f,b)=>{if(!f.locator)return!1;let _=ge(f.locator,n);return!!_&&(_===b||_.contains(b))},w=f=>{let b=f.target;if(!(!b||typeof b.closest!="function"))for(let _ of a)m(_,b)&&s(_)},p=f=>{let b=f.target;if(b)for(let _ of u)m(_,b)&&s(_)},h=()=>{if(l.length===0)return;let f=ot(n);for(let b of l)b.urlPattern&&To(b.urlPattern,f)&&s(b)},E=()=>{var _;let f=n.documentElement,b=f.scrollHeight>0?(f.scrollTop+f.clientHeight)/f.scrollHeight:0;for(let K of d)b>=((_=K.threshold)!=null?_:.75)&&s(K);d.every(K=>i.has(Un(K)))&&n.removeEventListener("scroll",E)};return n.addEventListener("click",w,!0),n.addEventListener("submit",p,!0),(P=n.defaultView)==null||P.addEventListener("popstate",h),h(),d.length>0&&(n.addEventListener("scroll",E,{passive:!0}),E()),{checkUrl:h,teardown:()=>{var f;n.removeEventListener("click",w,!0),n.removeEventListener("submit",p,!0),(f=n.defaultView)==null||f.removeEventListener("popstate",h),d.length>0&&n.removeEventListener("scroll",E)}}}function pt(e,t){if(!e||e.length<2||t.size!==e.length)return null;let n=[];for(let i of e){let s=t.get(i);if(!s||n.includes(s))return null;n.push(s)}let r=n[0].parentNode;if(!r||!n.every(i=>i.parentNode===r))return null;let o=n.slice().sort((i,s)=>i.compareDocumentPosition(s)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1),c=[];for(let i=0;i<n.length;i++){let s=n[i];o[i]!==s&&(c.push({el:s,before:o[i]}),o.splice(o.indexOf(s),1),o.splice(i,0,s))}return c}var qn="__snt_editor_token";function Wn(){try{return typeof sessionStorage!="undefined"?sessionStorage.getItem(qn):null}catch(e){return null}}function Hn(e){try{sessionStorage.setItem(qn,e)}catch(t){}}var We="0.24.1",ht=We!=="0.0.0-dev"?{name:"snippet",version:We}:void 0,tr=5e3,Bo=50,nr=(()=>{try{if(typeof window=="undefined")return[];let e=window.SentientSnippet;return Array.isArray(e==null?void 0:e.q)?e.q:[]}catch(e){return[]}})(),V=null,T=null,de={},ye=null,U=null,he=null,W=null,ie=null,$=null,Ae=null,Jn=!1,Rt=null,gt=null,yt=null,Ie=!1,Fe=!1,xe=!1;function rr(e,t){let n,r=new Promise(o=>{n=setTimeout(()=>o(null),t)});return Promise.race([e,r]).then(o=>(clearTimeout(n),o),o=>{throw clearTimeout(n),o})}function Ee(e,...t){e!=null&&e.debug&&console.log("[sentient-snippet]",...t)}function Oe(e,t){return V?(V.personaAttributes&&$&&at($.persona,$.band,e,t==null?void 0:t.onAttr),lt(de,V.slots,e,t==null?void 0:t.onAttr),ct(de,V.slots,e,t==null?void 0:t.onAttr),ye?ut(de,ye,e,t):(st(e,new Set),[])):[]}function or(e){var n;let t=new Map;for(let r of(n=V==null?void 0:V.sections)!=null?n:[])try{let o=e.querySelectorAll(r);o.length===1&&t.set(r,o[0])}catch(o){}return t}function Tt(e,t){var n,r;try{if(!e||e.length<2)return;for(let o of(n=pt(e,or(t)))!=null?n:[])(r=o.before.parentNode)==null||r.insertBefore(o.el,o.before)}catch(o){}}function $o(e,t,n){let r=(o,c)=>t.some(([i,s])=>i===o&&s===c);try{if(Array.isArray(e.stamped))for(let o of e.stamped){if(!Array.isArray(o))continue;let[c,i,s]=o;!c||typeof i!="string"||r(c,i)||(s==null?c.removeAttribute(i):c.setAttribute(i,s))}if(Array.isArray(e.html))for(let o of e.html)typeof o!="string"||r(n.documentElement,o)||n.documentElement.removeAttribute(o)}catch(o){}}function Ko(){try{let e=window.__sntPP;return e&&typeof e=="object"&&typeof e.v=="number"?e:null}catch(e){return null}}function ir(e){return e.apiBase?`${e.apiBase.replace(/\/+$/,"")}/v1/events`:void 0}function jo(e,t){var n;if(t.length!==0)try{let r=(n=e.apiBase)!=null?n:"https://api.sentient-ui.com";fetch(`${r}/v1/locator-miss`,{method:"POST",keepalive:!0,headers:{"content-type":"application/json",authorization:`Bearer ${e.apiKey}`},body:JSON.stringify({slots:t})}).catch(()=>{})}catch(r){}}function Pe(){return!!(V&&T&&V.sectionCapture!==!1&&(V.consent!==!1||Fe)&&!Se())}function Go(){if(!T||!V||!Pe()||ie)return;let e=[];Oe(document,{contentAndOps:Ie,onApplied:(t,n,r)=>e.push({slotId:t,arm:n,el:r})}),Mt();try{W==null||W(),W=dt(T,V.apiKey,e)}catch(t){}}function Mt(){if(typeof document=="undefined"||!Pe())return;let e;try{if(gt&>.length>0){let t=new Map;for(let n of gt){if(n.urlMatch!==window.location.pathname)continue;let r=ge(n.locator,document);r&&t.set(r,n.type)}t.size>0&&(e=n=>{var r;return(r=t.get(n))!=null?r:null})}}catch(t){}try{ie=Pn(T,J({apiKey:V.apiKey,apiBase:V.apiBase,doc:document,microSignals:!0},e?{typeOf:e}:{})),yt=window.location.pathname}catch(t){}}function Nt(){try{let e=[];if(W==null||W(),W=null,Oe(document,{contentAndOps:Ie,onApplied:(t,n,r)=>e.push({slotId:t,arm:n,el:r})}),Tt(Ae,document),e.length>0&&Pe())try{W=dt(T,V.apiKey,e)}catch(t){}try{typeof window!="undefined"&&yt!==null&&window.location.pathname!==yt&&Pe()&&(ie==null||ie(),ie=null,Mt())}catch(t){}}catch(e){}}function Vn(){Rt===null&&(Rt=setTimeout(()=>{Rt=null,Nt();try{U==null||U.checkUrl()}catch(e){}},Bo))}function Dt(){if(!(Jn||typeof window=="undefined"||typeof history=="undefined")){Jn=!0;try{let e=t=>{let n=history[t];history[t]=function(r,o,c){let i=n.call(this,r,o,c!=null?c:null);return Vn(),i}};e("pushState"),e("replaceState"),window.addEventListener("popstate",Vn)}catch(e){}}}function mt(e){let t={};for(let[n,r]of Object.entries(e.slots))try{t[n]=r.target?document.querySelectorAll(r.target).length:1}catch(o){t[n]=0}return t}function sr(e){return new URLSearchParams(e).get("sentient_editor")}function Uo(){try{let e=Array.from(document.getElementsByTagName("script")),t=/(^|\/)snippet(\.global)?\.js(\?|$)/,n=e.find(r=>t.test(r.src));if(n!=null&&n.src)return n.src.replace(t,"$1editor.global.js$3")}catch(e){}return null}function zo(e,t){var n,r,o,c;try{window.__sentientEditor={token:t,apiBase:(n=e.apiBase)!=null?n:"https://api.sentient-ui.com"};try{let a=document.createElement("meta");a.name="referrer",a.content="no-referrer",a.setAttribute("data-sentient-editor",""),((r=document.head)!=null?r:document.documentElement).appendChild(a)}catch(a){}let i=(o=e.editorSrc)!=null?o:Uo();if(!i){Yn();return}let s=document.createElement("script");s.src=i,s.async=!0,s.onerror=()=>Yn(),((c=document.head)!=null?c:document.documentElement).appendChild(s)}catch(i){}}var Xn="sentient-editor-load-notice",ar={position:"fixed",bottom:"16px",zIndex:"2147483647",background:"#111827",color:"#fff",boxShadow:"0 10px 34px rgba(0,0,0,0.45)"};function Yn(){var e,t;try{if(typeof document=="undefined"||document.getElementById(Xn))return;(e=document.querySelector('meta[name="referrer"][data-sentient-editor]'))==null||e.remove();let n=document.createElement("div");n.id=Xn,n.textContent="Couldn\u2019t load the editor \u2014 check your connection and reopen it from your dashboard.",Object.assign(n.style,ar,{right:"16px",maxWidth:"320px",padding:"14px 16px",borderRadius:"14px",font:"13px/1.45 system-ui, sans-serif",border:"1px solid rgba(245,158,11,0.6)",cursor:"pointer"}),n.addEventListener("click",()=>n.remove()),((t=document.body)!=null?t:document.documentElement).appendChild(n),setTimeout(()=>n.remove(),1e4)}catch(n){}}function lr(e){let t=new URLSearchParams(e).get("sentient_preview");if(!t)return null;let n={};for(let r of t.split("|")){let o=r.indexOf(":"),c=o===-1?"":r.slice(0,o),i=o===-1?"":r.slice(o+1);if(!(!c||!i))if(i.includes("=")){let s={};for(let a of i.split(",")){let[u,l]=a.split("=");u&&l&&(s[u]=l)}Object.keys(s).length&&(n[c]=s)}else n[c]=i}return Object.keys(n).length?n:null}function cr(e){try{return new URLSearchParams(e).get("sentient_persona")||null}catch(t){return null}}var Zn="sentient-persona-preview-banner";function Qn(e,t){var n;try{if(typeof document=="undefined"||document.getElementById(Zn))return;let r=e.charAt(0).toUpperCase()+e.slice(1).replace(/[_-]+/g," "),o=document.createElement("div");o.id=Zn,o.setAttribute("role","status"),Object.assign(o.style,ar,{left:"50%",transform:"translateX(-50%)",display:"flex",alignItems:"center",gap:"12px",padding:"10px 14px",borderRadius:"999px",font:"13px/1 system-ui, sans-serif",border:"1px solid rgba(255,255,255,0.14)"});let c=document.createElement("span");c.textContent=t?`\u201C${e}\u201D isn\u2019t in your personas \u2014 showing the default experience`:`Previewing as ${r}`;let i=document.createElement("button");i.type="button",i.textContent="Exit preview",Object.assign(i.style,{cursor:"pointer",border:"1px solid rgba(255,255,255,0.3)",background:"transparent",color:"#fff",font:"inherit",padding:"4px 10px",borderRadius:"999px"}),i.addEventListener("click",()=>{try{let s=new URL(window.location.href);s.searchParams.delete("sentient_persona"),window.location.href=s.pathname+s.search+s.hash}catch(s){}}),o.appendChild(c),o.appendChild(i),((n=document.body)!=null?n:document.documentElement).appendChild(o)}catch(r){}}async function Fo(e,t){var u,l,d,m,w,p,h,E,C,P;let n=(u=e.apiBase)!=null?u:"https://api.sentient-ui.com",o=((l=e.registry)!=null?l:Object.keys(e.slots).length===0)?{persona:t,slotsFrom:"registry"}:{persona:t,slots:Object.entries(e.slots).map(([f,b])=>({id:f,dims:b.dims}))},c=await rr(fetch(`${n}/v1/explain`,{method:"POST",headers:{"content-type":"application/json",authorization:`Bearer ${e.apiKey}`},body:JSON.stringify(o)}).then(f=>f.ok?f.json():null).catch(()=>null),tr);if(!c){qe(e),Ee(e,"persona preview: explain unavailable \u2014 page left as-is");return}let i=c;de=(d=i.slots)!=null?d:{},ye=(m=i.slotConfig)!=null?m:null,ze(i.palette);let s=(h=(p=(w=i.personaAttributes)==null?void 0:w.persona)!=null?p:i.persona)!=null?h:t,a=(C=(E=i.personaAttributes)==null?void 0:E.confidence)!=null?C:"high";$={persona:s,band:a},Oe(document),Ie=!0,Dt(),qe(e),i.recognized===!1?Qn(t,!0):Qn((P=i.personaDisplay)!=null?P:s)}function qe(e){let t={goal(n,r){try{T==null||T.goal(n,r)}catch(o){}},componentGoal(n,r){try{T==null||T.componentGoal(n,r)}catch(o){}},grantConsent(){try{!T&&xe?(T=je(J({apiKey:e.apiKey,context:e.context,consent:!0,preConsentBehavior:e.preConsentBehavior,debug:e.debug,persona:e.persona,ingestUrl:ir(e)},ht?{sdk:ht}:{})),he&&he.length>0&&(U==null||U.teardown(),U=ft(he,T,document,e.apiKey))):(_t(e.apiKey),T&&he&&he.length>0&&(U==null||U.teardown(),U=ft(he,T,document,e.apiKey))),xe=!1}catch(n){}Fe=!0;try{Go()}catch(n){}},revokeConsent(){try{ie==null||ie(),ie=null,yt=null,W==null||W(),W=null,U==null||U.teardown(),U=null,Fn(typeof window!="undefined"?window:null,e.apiKey),Fe=!1,xe=!0,T==null||T.destroy(),T=null}catch(n){}},reapply:Nt,getState(){var n,r;try{return{apiKey:e.apiKey,persona:(n=$==null?void 0:$.persona)!=null?n:null,band:(r=$==null?void 0:$.band)!=null?r:null,slots:de,matchCounts:mt(e),consent:!xe&&(e.consent!==!1||Fe)}}catch(o){return{apiKey:e.apiKey,persona:null,band:null,slots:{},matchCounts:{},consent:!1}}}};window.SentientSnippet=t;for(let n of nr.splice(0))try{n[0]==="goal"&&t.goal(n[1],n[2])}catch(r){}}function er(){var e;try{if(typeof window=="undefined")return;let t=window;if(typeof((e=t.SentientSnippet)==null?void 0:e.goal)=="function")return;let n=()=>{};t.SentientSnippet={goal:n,componentGoal:n,grantConsent:n,revokeConsent:n,reapply:n,getState:()=>({apiKey:"",persona:null,band:null,slots:{},matchCounts:{},consent:!1})},nr.length=0}catch(t){}}async function ur(){var e,t;try{let n=rt(window.sentient);if(!n){er();return}V=n,Ie=!1,Ae=null,ze(null),Fe=!1,xe=!1,he=null;let r=typeof window!="undefined"?sr(window.location.search):null;if(r){Hn(r);try{let f=new URL(window.location.href);f.searchParams.delete("sentient_editor"),window.history.replaceState(null,"",f.pathname+f.search+f.hash)}catch(f){}}let o=r!=null?r:Wn();if(o){zo(n,o),qe(n),Ee(n,"editor mode");return}let c=typeof window!="undefined"?lr(window.location.search):null;if(c){de=c,$=null,Oe(document),Dt(),qe(n),Ee(n,"preview mode",c);return}let i=typeof window!="undefined"?cr(window.location.search):null;if(i){await Fo(n,i),Ee(n,"persona preview",i);return}let s=(e=n.registry)!=null?e:Object.keys(n.slots).length===0,a=Ko();try{(t=a==null?void 0:a.stop)==null||t.call(a)}catch(f){}let u=Be(n.apiKey),l=[];u&&($={persona:u.persona,band:u.band},de=u.slots,u.slotConfig&&(ye=u.slotConfig),u.palette&&ze(u.palette),Oe(document,J({contentAndOps:!1},a?{onAttr:(f,b)=>l.push([f,b])}:{})),u.layoutOrder&&(Ae=u.layoutOrder,Tt(Ae,document))),a&&$o(a,l,document);let d=je(J({apiKey:n.apiKey,context:n.context,consent:n.consent,preConsentBehavior:n.preConsentBehavior,debug:n.debug,persona:n.persona,ingestUrl:ir(n)},ht?{sdk:ht}:{}));T=d,qe(n),Dt();let m=Object.entries(n.slots).map(([f,b])=>({id:f,dims:b.dims})),w=We!=="0.0.0-dev"?{v:We}:{},p={pp:a?a.v:0},h=Array.from(or(document).keys()),E=d.decide(J(J(J(J({slots:m},w),p),h.length>=2?{sections:h}:{}),s?{slotsFrom:"registry"}:{})),C=await rr(E,tr),P=f=>{var K,A,D,G,X,M;let b=d.getPersona();b?$={persona:b.persona,band:b.band}:f.persona&&($={persona:f.persona,band:"low"}),de=f.slots,s?ye=(K=f.slotConfig)!=null?K:null:f.slotConfig&&(ye=f.slotConfig),f.palette&&ze(f.palette),Ae=(A=f.layoutOrder)!=null?A:Ae;let _=()=>{let j=[];if(jo(n,Oe(document,{onApplied:(se,S,v)=>j.push({slotId:se,arm:S,el:v})})),Tt(Ae,document),Ie=!0,Pe())try{W==null||W(),W=dt(T,n.apiKey,j)}catch(se){}};if(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",_,{once:!0}):_(),he=(D=f.goals)!=null?D:null,f.goals&&f.goals.length>0&&n.consent!==!1&&T)try{U==null||U.teardown(),U=ft(f.goals,T,document,n.apiKey)}catch(j){}gt=(G=f.sectionMap)!=null?G:null,Pe()&&Mt(),Ee(n,"applied",{persona:$,slots:de,matches:mt(n)}),!xe&&$e(n.apiKey,J(J({v:1,persona:(X=$==null?void 0:$.persona)!=null?X:f.persona,band:(M=$==null?void 0:$.band)!=null?M:"low",slots:f.slots,layoutOrder:f.layoutOrder,savedAt:Date.now()},ye?{slotConfig:ye}:{}),f.palette?{palette:f.palette}:{}))};if(!C){Ee(n,"decide timeout/null \u2014 snapshot state stands",mt(n)),E.then(f=>{!f||Ie||xe||T!==d||(P(f),Ee(n,"late decide applied",mt(n)))}).catch(()=>{});return}P(C)}catch(n){er()}}if(typeof window!="undefined"&&window.sentient){let e=window;e.__sentientInitialized||(e.__sentientInitialized=!0,Promise.resolve().then(()=>{ur()}))}return hr(qo);})();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentientui/snippet",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "SentientUI Style-rung snippet for non-React sites — persona attributes and adaptive style tokens from one script tag",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,6 +13,20 @@
|
|
|
13
13
|
"bugs": "https://github.com/SentientUI/sdk/issues",
|
|
14
14
|
"type": "module",
|
|
15
15
|
"main": "./dist/snippet.global.js",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": "./dist/snippet.global.js",
|
|
18
|
+
"./install": {
|
|
19
|
+
"import": {
|
|
20
|
+
"types": "./dist/install.d.ts",
|
|
21
|
+
"default": "./dist/install.js"
|
|
22
|
+
},
|
|
23
|
+
"require": {
|
|
24
|
+
"types": "./dist/install.d.cts",
|
|
25
|
+
"default": "./dist/install.cjs"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"./package.json": "./package.json"
|
|
29
|
+
},
|
|
16
30
|
"files": [
|
|
17
31
|
"dist",
|
|
18
32
|
"README.md"
|
|
@@ -24,7 +38,7 @@
|
|
|
24
38
|
"tsx": "^4.19.2",
|
|
25
39
|
"typescript": "^5.7.2",
|
|
26
40
|
"vitest": "^2.1.8",
|
|
27
|
-
"@sentientui/core": "0.
|
|
41
|
+
"@sentientui/core": "0.27.0"
|
|
28
42
|
},
|
|
29
43
|
"scripts": {
|
|
30
44
|
"build": "tsup",
|