@frigade/react 2.0.3 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +72 -50
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +44 -1
- package/dist/index.js +29 -9
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import * as _frigade_js from '@frigade/js';
|
|
|
5
5
|
import { Flow, FlowStep } from '@frigade/js';
|
|
6
6
|
export { Flow, Frigade } from '@frigade/js';
|
|
7
7
|
import { EmotionJSX } from '@emotion/react/types/jsx-namespace';
|
|
8
|
+
import * as Collapsible$1 from '@radix-ui/react-collapsible';
|
|
8
9
|
import { ControllerFieldState, Message, ValidationRule } from 'react-hook-form';
|
|
9
10
|
import * as Popover from '@radix-ui/react-popover';
|
|
10
11
|
|
|
@@ -1179,6 +1180,48 @@ interface CardComponent extends ForwardRefExoticComponent<Omit<FlowPropsWithoutC
|
|
|
1179
1180
|
}
|
|
1180
1181
|
declare const Card: CardComponent;
|
|
1181
1182
|
|
|
1183
|
+
interface CollapsibleProps extends FlowPropsWithoutChildren {
|
|
1184
|
+
stepTypes: Record<string, (props: FlowChildrenProps) => React.ReactNode>;
|
|
1185
|
+
}
|
|
1186
|
+
interface CollapsibleStepProps extends FlowChildrenProps {
|
|
1187
|
+
onOpenChange: (isOpening: boolean) => void;
|
|
1188
|
+
open: boolean;
|
|
1189
|
+
}
|
|
1190
|
+
declare function Collapsible({ flowId, stepTypes, ...props }: CollapsibleProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
1191
|
+
|
|
1192
|
+
declare function Content({ children }: {
|
|
1193
|
+
children: any;
|
|
1194
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
1195
|
+
declare function Root({ children, open, onOpenChange, }: Collapsible$1.CollapsibleProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
1196
|
+
declare function Trigger({ isCompleted, title }: {
|
|
1197
|
+
isCompleted: any;
|
|
1198
|
+
title: any;
|
|
1199
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
1200
|
+
|
|
1201
|
+
declare const CollapsibleStep_Content: typeof Content;
|
|
1202
|
+
declare const CollapsibleStep_Root: typeof Root;
|
|
1203
|
+
declare const CollapsibleStep_Trigger: typeof Trigger;
|
|
1204
|
+
declare namespace CollapsibleStep {
|
|
1205
|
+
export {
|
|
1206
|
+
CollapsibleStep_Content as Content,
|
|
1207
|
+
CollapsibleStep_Root as Root,
|
|
1208
|
+
CollapsibleStep_Trigger as Trigger,
|
|
1209
|
+
};
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
declare const index_Collapsible: typeof Collapsible;
|
|
1213
|
+
type index_CollapsibleProps = CollapsibleProps;
|
|
1214
|
+
declare const index_CollapsibleStep: typeof CollapsibleStep;
|
|
1215
|
+
type index_CollapsibleStepProps = CollapsibleStepProps;
|
|
1216
|
+
declare namespace index {
|
|
1217
|
+
export {
|
|
1218
|
+
index_Collapsible as Collapsible,
|
|
1219
|
+
index_CollapsibleProps as CollapsibleProps,
|
|
1220
|
+
index_CollapsibleStep as CollapsibleStep,
|
|
1221
|
+
index_CollapsibleStepProps as CollapsibleStepProps,
|
|
1222
|
+
};
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1182
1225
|
declare const Row: React$1.ForwardRefExoticComponent<Omit<BoxProps<React$1.ElementType<any, keyof React$1.JSX.IntrinsicElements>>, "ref"> & React$1.RefAttributes<unknown>>;
|
|
1183
1226
|
declare const Column: React$1.ForwardRefExoticComponent<Omit<BoxProps<React$1.ElementType<any, keyof React$1.JSX.IntrinsicElements>>, "ref"> & React$1.RefAttributes<unknown>>;
|
|
1184
1227
|
|
|
@@ -1316,4 +1359,4 @@ declare function useGroup(): {
|
|
|
1316
1359
|
track: (eventName: string, properties?: Record<string, unknown>) => Promise<void>;
|
|
1317
1360
|
};
|
|
1318
1361
|
|
|
1319
|
-
export { Announcement, AnnouncementProps, Banner, Box, BoxProps, Button, ButtonProps, Card, Flex, FlowConfig, Form, Provider, ProviderProps, Text, TextProps, Tooltip, TooltipProps, Tour, TourProps, themeVariables, useBoundingClientRect, useFlow, useFlowHandlers, useFrigade, useGroup, useModal, useStepHandlers, useUser };
|
|
1362
|
+
export { Announcement, AnnouncementProps, Banner, Box, BoxProps, Button, ButtonProps, Card, index as Checklist, CollapsibleProps, CollapsibleStepProps, Flex, FlowConfig, Form, Provider, ProviderProps, Text, TextProps, Tooltip, TooltipProps, Tour, TourProps, themeVariables, useBoundingClientRect, useFlow, useFlowHandlers, useFrigade, useGroup, useModal, useStepHandlers, useUser };
|
package/dist/index.js
CHANGED
|
@@ -1,23 +1,43 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
import * as T from '@radix-ui/react-dialog';
|
|
3
3
|
import { XMarkIcon } from '@heroicons/react/24/solid';
|
|
4
|
-
import * as
|
|
4
|
+
import * as ye from 'react';
|
|
5
5
|
import { createContext, useState, useMemo, useEffect, useContext, useRef, useCallback, useLayoutEffect } from 'react';
|
|
6
6
|
import { clsx } from 'clsx';
|
|
7
|
-
import
|
|
8
|
-
import
|
|
7
|
+
import jt from 'known-css-properties';
|
|
8
|
+
import Qt from 'dompurify';
|
|
9
9
|
import { jsx, jsxs, Fragment } from '@emotion/react/jsx-runtime';
|
|
10
10
|
import { keyframes, Global, ThemeProvider } from '@emotion/react';
|
|
11
11
|
import { Frigade } from '@frigade/js';
|
|
12
12
|
export { Flow, Frigade } from '@frigade/js';
|
|
13
|
+
import { ChevronDownIcon } from '@heroicons/react/16/solid';
|
|
14
|
+
import * as X from '@radix-ui/react-collapsible';
|
|
13
15
|
import { useForm, useController } from 'react-hook-form';
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import { ChevronDownIcon } from '@heroicons/react/24/outline';
|
|
17
|
-
import * as
|
|
16
|
+
import * as q from '@radix-ui/react-radio-group';
|
|
17
|
+
import * as C from '@radix-ui/react-select';
|
|
18
|
+
import { ChevronDownIcon as ChevronDownIcon$1 } from '@heroicons/react/24/outline';
|
|
19
|
+
import * as M from '@radix-ui/react-popover';
|
|
18
20
|
|
|
19
|
-
var wt=Object.defineProperty;var Rt=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(t,o)=>(typeof require<"u"?require:t)[o]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw new Error('Dynamic require of "'+e+'" is not supported')});var Z=(e,t)=>{for(var o in t)wt(e,o,{get:t[o],enumerable:!0});};var Se={borders:{md:"1px solid"},borderWidths:{0:"0",md:"1px"}};var Ce={black:"#000000",gray100:"#14161A",gray200:"#181B20",gray300:"#1F2329",gray400:"#2E343D",gray500:"#4C5766",gray600:"#5A6472",gray700:"#C5CBD3",gray800:"#E2E5E9",gray900:"#F1F2F4",white:"#ffffff",blue400:"#015AC6",blue500:"#0171F8",blue800:"#DBECFF",blue900:"#F5F9FF",green400:"#009E37",green500:"#00D149",green800:"#DBFFE8",transparent:"#FFFFFF00",inherit:"inherit",red500:"#c00000"};var Fe={md:"10px",lg:"20px",round:"50%"};var l=e=>`var(--fr-colors-${e})`,Te={neutral:{background:l("white"),border:l("gray800"),foreground:l("black"),surface:l("gray700"),active:{background:l("white"),border:l("gray900"),foreground:l("black"),surface:l("gray700")},focus:{background:l("white"),border:l("gray900"),foreground:l("black"),surface:l("gray700")},hover:{background:l("white"),border:l("gray900"),foreground:l("black"),surface:l("gray700")}},primary:{background:l("blue500"),border:l("blue500"),foreground:l("white"),surface:l("blue500"),active:{background:l("blue400"),border:l("blue400"),foreground:l("white"),surface:l("blue400")},focus:{background:l("blue500"),border:l("blue500"),foreground:l("white"),surface:l("blue500")},hover:{background:l("blue400"),border:l("blue400"),foreground:l("white"),surface:l("blue400")}},secondary:{background:l("white"),border:l("gray800"),foreground:l("black"),surface:l("gray900"),active:{background:l("gray900"),border:l("gray800"),foreground:l("black"),surface:l("gray800")},focus:{background:l("gray900"),border:l("gray800"),foreground:l("black"),surface:l("gray900")},hover:{background:l("gray900"),border:l("gray800"),foreground:l("black"),surface:l("gray800")}}};var we={md:"0px 4px 20px rgba(0, 0, 0, 0.1)"};var Bt="px",vt=e=>typeof e=="number"?`${4*e}${Bt}`:e,kt=[-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,-.5,0,.5,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,"auto"],Re=Object.fromEntries(kt.map(e=>[e,vt(e)]));var Be={fontFamilies:{default:"inherit"},fontSizes:{xs:"12px",sm:"14px",md:"16px",lg:"18px",xl:"20px","2xl":"24px","3xl":"30px","4xl":"36px","5xl":"48px"},fontWeights:{thin:"100",extralight:"200",light:"300",regular:"400",medium:"500",demibold:"600",bold:"700",extrabold:"800",black:"900"},letterSpacings:{md:"0.02em"},lineHeights:{xs:"18px",sm:"22px",md:"24px",lg:"26px",xl:"30px","2xl":"38px","3xl":"46px","4xl":"60px"}};var ae={...Se,colors:{...Ce,...Te},...Be,radii:Fe,shadows:we,space:Re};function U(e,t="",o="."){return Object.keys(e).reduce((i,r)=>{let s=`${t.length?`${t}${o}`:""}${r}`,a=e[r];return typeof a=="object"&&a!==null&&!Array.isArray(a)?Object.assign(i,U(a,s,o)):i[s]=a,i},{})}function se(e){return U(e,"--fr","-")}function ve(e,t="--fr"){let o={};return Object.keys(e).forEach(i=>{let r=e[i];typeof r=="object"&&r!==null&&!Array.isArray(r)?o[i]=ve(r,`${t}-${i}`):o[i]=`var(${t}-${i})`;}),o}var le=se(ae),f=ve(ae);var Dt=new Set(["alt","size","src"]),Ot=Et.all.filter(e=>e.indexOf("-")!=0&&!Dt.has(e)).map(e=>[e.replace(/-([a-z])/g,(t,o)=>o.toUpperCase()),null]),Mt=Object.fromEntries(Ot),pe=U(f.colors),Ht={color:pe,backgroundColor:pe,borderColor:pe,border:f.borders,borderRadius:f.radii,borderWidth:f.borderWidths,boxShadow:f.shadows,fontFamily:f.fontFamilies,fontSize:f.fontSizes,fontWeight:f.fontWeights,gap:f.space,lineHeight:f.lineHeights,margin:f.space,marginBottom:f.space,marginLeft:f.space,marginRight:f.space,marginTop:f.space,padding:f.space,paddingBottom:f.space,paddingLeft:f.space,paddingRight:f.space,paddingTop:f.space},ke={...Mt,...Ht},Ee={bg:["backgroundColor"],m:["margin"],mt:["marginTop"],mr:["marginRight"],mb:["marginBottom"],ml:["marginLeft"],mx:["marginLeft","marginRight"],my:["marginTop","marginBottom"],p:["padding"],pt:["paddingTop"],pr:["paddingRight"],pb:["paddingBottom"],pl:["paddingLeft"],px:["paddingLeft","paddingRight"],py:["paddingTop","paddingBottom"]},De=new Set(["active","focus","focusVisible","focusWithin","hover"]);function It(e){return Array.isArray(e)?new Map(e.map(t=>[t,t])):typeof e=="object"&&e!==null?new Map(Object.entries(e)):typeof e=="string"||typeof e=="number"?new Map([[e,e]]):new Map}var Oe=new Map(Object.entries(ke).map(([e,t])=>[e,It(t)])),Wt=new Map(Object.entries(Ee).map(([e,t])=>[e,new Set(t)])),At=new Set(["height","width"]),Vt=new Set(["canvas","embed","iframe","img","input","object","video"]);function Me(e){let[t,o]=e.split(":");return [t,De.has(o)?o:null]}function He(e,t="div"){let o=Object.assign({},e),i={};function r(n){if(n==null)return i;let a=`&:${n.replace(/[A-Z]/g,c=>`-${c.toLocaleLowerCase()}`)}`;return i[a]==null&&(i[a]={}),i[a]}return Object.entries(o).forEach(([n,s])=>{let[a,c]=Me(n),x=Wt.get(a);x!=null&&(x.forEach(m=>{let d=`${m}${c?":"+c:""}`;o[d]=s;}),delete o[n]);}),Object.entries(o).forEach(([n,s])=>{let[a,c]=Me(n),x=Oe.get(a);if(x!=null){if(typeof s=="string"&&s.indexOf(" ")>-1){let m=s.split(" ");r(c)[a]=m.map(d=>x.get(d.toString())??d).join(" ");}else x.has(s.toString())?r(c)[a]=x.get(s.toString()):r(c)[a]=s;(typeof t!="string"||!Vt.has(t)||!At.has(a))&&delete o[n];}}),Object.keys(o).forEach(n=>{let s=n.substring(1);n.indexOf("_")===0&&Oe.has(s)&&(o[s]=o[n],delete o[n]);}),{cssFromProps:i,unmatchedProps:o}}function $t(){if(typeof window>"u"){let{JSDOM:e}=Rt("jsdom");return new e("<!DOCTYPE html>").window}return window}function Ie(e){return e?{__html:Lt($t()).sanitize(e,{ALLOWED_TAGS:["b","i","a","span","div","p","pre","u","br","img","code","li","ul","table","tbody","thead","tr","td","th","h1","h2","h3","h4","video"],ALLOWED_ATTR:["style","class","target","id","href","alt","src","controls","autoplay","loop","muted"]})}:{__html:""}}function zt(e){return e&&`fr-${e}`}function Ve(e){return e&&(Array.isArray(e)?e.map(t=>Ve(t)).join(" "):zt(e))}function jt({as:e,children:t,className:o,css:i={},part:r,...n},s){let a=e??"div",{cssFromProps:c,unmatchedProps:x}=He(n,a),m=Ve(r),d=o||m?clsx(o,m):void 0,h=[{boxSizing:"border-box"},c,i];return typeof t=="string"?jsx(a,{className:d,css:h,...x,ref:s,dangerouslySetInnerHTML:Ie(t)}):jsx(a,{className:d,css:h,...x,ref:s,children:t})}var p=ue.forwardRef(jt);var u={};Z(u,{Body1:()=>ao,Body2:()=>so,Caption:()=>lo,Display1:()=>eo,Display2:()=>to,H1:()=>oo,H2:()=>ro,H3:()=>no,H4:()=>io});var de={};Z(de,{Body1:()=>qt,Body2:()=>Yt,Caption:()=>Qt,Display1:()=>Kt,Display2:()=>Nt,H1:()=>Ut,H2:()=>Gt,H3:()=>Jt,H4:()=>Xt});var E={color:"neutral.foreground",fontFamily:"default",margin:"0"},Kt={...E,fontSize:"5xl",fontWeight:"bold",lineHeight:"4xl"},Nt={...E,fontSize:"4xl",fontWeight:"bold",lineHeight:"3xl"},Ut={...E,fontSize:"3xl",fontWeight:"demibold",lineHeight:"2xl"},Gt={...E,fontSize:"2xl",fontWeight:"demibold",lineHeight:"xl"},Jt={...E,fontSize:"xl",fontWeight:"demibold",lineHeight:"lg"},Xt={...E,fontSize:"md",fontWeight:"demibold",lineHeight:"md"},qt={...E,fontSize:"md",fontWeight:"regular",lineHeight:"md"},Yt={...E,fontSize:"sm",fontWeight:"regular",lineHeight:"sm"},Qt={...E,fontSize:"xs",fontWeight:"regular",lineHeight:"xs"};var Zt=["Display1","Display2","H1","H2","H3","H4","Body1","Body2","Caption"],D=Object.fromEntries(Zt.map(e=>{let t=["H1","H2","H3","H4"].includes(e)?e.toLowerCase():"span",o=ue.forwardRef(({as:i=t,children:r,...n},s)=>jsx(p,{as:i,...de[e],...n,ref:s,children:r}));return o.displayName=`Text.${e}`,[e,o]})),eo=D.Display1,to=D.Display2,oo=D.H1,ro=D.H2,no=D.H3,io=D.H4,ao=D.Body1,so=D.Body2,lo=D.Caption;var ce={};Z(ce,{Link:()=>mo,Plain:()=>fo,Primary:()=>co,Secondary:()=>uo});var ee={borderWidth:"0",borderRadius:"md",display:"flex",gap:"2",padding:"2 4"},co={...ee,backgroundColor:"primary.surface",color:"primary.foreground","backgroundColor:hover":"primary.hover.surface"},uo={...ee,backgroundColor:"secondary.background",borderColor:"secondary.border",borderStyle:"solid",borderWidth:"1px",color:"secondary.foreground","backgroundColor:hover":"secondary.hover.background"},mo={...ee,backgroundColor:"transparent",color:"primary.surface","color:hover":"primary.hover.surface"},fo={...ee,backgroundColor:"transparent",color:"neutral.foreground"};function $e({as:e,children:t,part:o,title:i,variant:r="Primary",...n}){let s=r.toLocaleLowerCase();return jsxs(p,{as:e??"button",part:[`button-${s}`,o],...ce[r],...n,children:[t,i&&jsx(u.Body2,{color:"inherit",flexGrow:"1",fontWeight:"demibold",css:{WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale"},children:i})]})}var go=["Primary","Secondary","Link","Plain"],xo=Object.fromEntries(go.map(e=>{let t=o=>jsx($e,{...o,variant:e,children:o.children});return t.displayName=`Button.${e}`,[e,t]})),b=Object.assign($e,xo);var y={};Z(y,{Column:()=>bo,Row:()=>ho});var ho=ue.forwardRef((e,t)=>jsx(p,{display:"flex",flexDirection:"row",...e,ref:t})),bo=ue.forwardRef((e,t)=>jsx(p,{display:"flex",flexDirection:"column",...e,ref:t}));var B=createContext({apiKey:"",modals:new Set,setModals:()=>{},currentModal:null,navigate:()=>{}});function Bo({children:e,navigate:t,theme:o,...i}){let r=o?se(o):{},[n,s]=useState(new Set),a=useMemo(()=>new Frigade(i.apiKey,{apiKey:i.apiKey,apiUrl:i.apiUrl,userId:i.userId,groupId:i.groupId,__readOnly:i.__readOnly,__flowConfigOverrides:i.__flowConfigOverrides}),[i.userId,i.groupId,i.apiKey]),c=t??((m,d="_self")=>{window.open(m,d);});useEffect(()=>()=>{a.destroy();},[]);let x=n.size>0?n.values().next().value:null;return jsxs(B.Provider,{value:{modals:n,setModals:s,currentModal:x,navigate:c,...i,frigade:a},children:[jsx(Global,{styles:{":root":{...le,...r}}}),jsx(ThemeProvider,{theme:f,children:e})]})}function G(e,t){let[o,i]=useState(),[,r]=useState(""),{frigade:n}=useContext(B),s=a=>{a.id===e&&(t!=null&&t.variables&&a.applyVariables(t.variables),i(a),r(Math.random().toString()));};return useEffect(()=>((async()=>{let a=await n.getFlow(e);if(!a||n.hasFailedToLoad()){i(void 0);return}t!=null&&t.variables&&a.applyVariables(t.variables),i(a);})(),n.onStateChange(s),()=>{n.removeStateChangeHandler(s);}),[]),{flow:o}}function V(e,{onComplete:t,onDismiss:o}={}){let i=useRef(null);return useEffect(()=>{e!=null&&(e.isCompleted&&i.current===!1&&(async()=>await(t==null?void 0:t(e)))(),i.current=e==null?void 0:e.isCompleted);},[e==null?void 0:e.isCompleted]),{handleDismiss:useCallback(async r=>{if(await(o==null?void 0:o(e,r))===!1)return r.preventDefault(),!1;await e.skip();},[e])}}function J(e,{onPrimary:t,onSecondary:o}={}){let{navigate:i}=useContext(B);return {handlePrimary:useCallback(async(r,n)=>await(t==null?void 0:t(e,r))===!1?(r.preventDefault(),!1):(await e.complete(n),e.primaryButtonUri!=null&&i(e.primaryButtonUri,e.primaryButtonUriTarget),!0),[e]),handleSecondary:useCallback(async(r,n)=>await(o==null?void 0:o(e,r))===!1?(r.preventDefault(),!1):(await e.complete(n),e.secondaryButtonUri!=null&&i(e.secondaryButtonUri,e.secondaryButtonUriTarget),!0),[e])}}function X(e){let{currentModal:t,modals:o,setModals:i}=useContext(B),[r,n]=useState(!1);useEffect(()=>{e!=null&&e.isVisible&&e&&!o.has(e.id)&&i(a=>new Set(a).add(e.id));},[e==null?void 0:e.id,e==null?void 0:e.isVisible]),useEffect(()=>{let a=t===(e==null?void 0:e.id);(e==null?void 0:e.id)!=null&&a!==r&&n(a);},[e==null?void 0:e.id,t]);function s(){o.has(e==null?void 0:e.id)&&i(a=>{let c=new Set(a);return c.delete(e==null?void 0:e.id),c});}return {isCurrentModal:r,removeModal:s}}function H({as:e,children:t,container:o,dismissible:i=!1,flowId:r,onComplete:n,onDismiss:s,onPrimary:a,onSecondary:c,variables:x,...m}){let{flow:d}=G(r,{variables:x}),h=d==null?void 0:d.getCurrentStep(),{handleDismiss:A}=V(d,{onComplete:n,onDismiss:s}),{handlePrimary:Y,handleSecondary:ne}=J(h,{onPrimary:a,onSecondary:c}),{isCurrentModal:K,removeModal:ie}=X(d);return useEffect(()=>{!(d!=null&&d.isVisible)&&K&&ie();},[d==null?void 0:d.isVisible,K]),d==null||!d.isVisible||!K?null:(d.start(),h.start(),jsx(e??p,{position:"relative",...m,children:t({flow:d,handleDismiss:A,handlePrimary:Y,handleSecondary:ne,parentProps:{container:o,dismissible:i,flowId:r,variables:x,...m},step:h})}))}function Ge(e){return jsx(H,{as:g,gap:5,borderColor:"neutral.border",borderStyle:"solid",borderWidth:"md",part:"card",...e,children:({handleDismiss:t,handlePrimary:o,handleSecondary:i,parentProps:{dismissible:r},step:n})=>jsxs(Fragment,{children:[jsxs(y.Row,{alignItems:"center",flexWrap:"wrap",gap:1,justifyContent:"space-between",part:"card-header",children:[jsx(g.Title,{children:n.title}),r&&jsx(g.Dismiss,{onClick:t}),jsx(g.Subtitle,{flexBasis:"100%",children:n.subtitle})]}),jsx(g.Media,{src:n.imageUri,css:{objectFit:"contain",width:"100%"}}),jsxs(y.Row,{gap:3,justifyContent:"flex-end",part:"card-footer",children:[jsx(g.Secondary,{title:n.secondaryButtonTitle,onClick:i}),jsx(g.Primary,{title:n.primaryButtonTitle??"Continue",onClick:o})]})]})})}function Je({part:e,src:t,...o}){return jsx(p,{as:"img",part:["image",e],src:t,...o})}function _o(e){var t,o,i,r;return e.includes("youtube")?`https://www.youtube.com/embed/${(t=e.split("v=")[1])==null?void 0:t.split("&")[0]}`:e.includes("vimeo")?`https://player.vimeo.com/video/${(o=e.split("vimeo.com/")[1])==null?void 0:o.split("&")[0]}`:e.includes("wistia")?`https://fast.wistia.net/embed/iframe/${(i=e.split("wistia.com/medias/")[1])==null?void 0:i.split("&")[0]}`:e.includes("loom")?`https://loom.com/embed/${(r=e.split("loom.com/share/")[1])==null?void 0:r.split("&")[0]}?hideEmbedTopBar=true&hide_title=true&hide_share=true&hide_owner=true`:null}function qe({part:e,src:t,...o}){let i=_o(t);return i?jsx(p,{allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",allowFullScreen:!0,as:"iframe",backgroundColor:"gray100",borderWidth:0,part:["video",e],src:i,...o}):t!=null&&t.endsWith(".mp4")?jsx(p,{as:"video",controls:!0,part:["video",e],src:t,...o}):(console.error(`Could not map videoUri ${t} to a known provider (Youtube, Vimeo, Wistia, Loom) or valid mp4 file.`),null)}function $({src:e,type:t,...o}){return jsx(t==="video"?qe:Je,{src:e,...o})}var g=ue.forwardRef(({children:e,flowId:t,...o},i)=>{if(t!=null)return jsx(Ge,{flowId:t,...o});let r=o.as??y.Column;return jsx(r,{backgroundColor:"neutral.background",borderColor:"neutral.border",borderStyle:"solid",borderRadius:"md",borderWidth:"0",gap:5,p:5,...o,ref:i,children:e})});g.Dismiss=e=>jsx(b.Plain,{part:"dismiss",padding:0,...e,children:jsx(XMarkIcon,{height:"24",fill:"currentColor"})});g.Media=({src:e,...t})=>e==null?null:jsx($,{borderRadius:"md",src:e,...t});g.Primary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Primary,{title:t,onClick:e,...o});g.Secondary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Secondary,{title:t,onClick:e,...o});g.Subtitle=({children:e,...t})=>e==null?null:jsx(u.Body2,{display:"block",part:"subtitle",...t,children:e});g.Title=({children:e,...t})=>e==null?null:jsx(u.Body1,{display:"block",fontWeight:"bold",part:"title",...t,children:e});function F({children:e,...t}){return jsx(T.Root,{defaultOpen:!0,modal:!0,children:jsx(T.Portal,{children:jsxs(p,{inset:"0",position:"fixed",zIndex:"9999",children:[jsx(T.Overlay,{asChild:!0,children:jsx(p,{background:"rgb(0 0 0 / 0.5)",part:"dialog-overlay",position:"fixed",inset:"0"})}),jsx(T.Content,{asChild:!0,onOpenAutoFocus:o=>o.preventDefault(),onPointerDownOutside:o=>o.preventDefault(),children:jsx(g,{boxShadow:"md",left:"50%",maxWidth:"430px",p:8,part:"dialog",position:"fixed",textAlign:"center",top:"50%",transform:"translate(-50%, -50%)",...t,children:e})})]})})})}F.Dismiss=e=>jsx(T.Close,{"aria-label":"Close",asChild:!0,children:jsx(b.Plain,{part:"close",position:"absolute",right:"-4px",top:"4px",...e,children:jsx(XMarkIcon,{height:"24",fill:"currentColor"})})});F.Subtitle=({children:e,...t})=>jsx(T.Description,{asChild:!0,children:jsx(u.Body2,{part:"subtitle",...t,children:e})});F.Media=({src:e,...t})=>e==null?null:jsx($,{borderRadius:"md",src:e,...t});F.Primary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Primary,{title:t,onClick:e,...o});F.ProgressDots=({current:e,total:t})=>{if(t==1)return null;let o=[...Array(t)].map((i,r)=>jsx("circle",{r:4,cx:4+16*r,cy:"4px",fill:e===r?f.colors.blue500:f.colors.blue800},r));return jsx(p,{as:"svg",height:"8px",marginInline:"auto",part:"progress",viewBox:`0 0 ${16*t-8} 8`,width:16*t-8,children:o})};F.Secondary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Secondary,{title:t,onClick:e,...o});F.Title=({children:e,...t})=>jsx(T.Title,{asChild:!0,children:jsx(u.H3,{part:"title",...t,children:e})});function Uo({flowId:e,...t}){return jsx(H,{as:F,dismissible:!0,flowId:e,...t,children:({flow:o,handleDismiss:i,handlePrimary:r,handleSecondary:n,parentProps:{dismissible:s},step:a})=>jsxs(Fragment,{children:[s&&jsx(F.Dismiss,{onClick:i}),jsxs(y.Column,{gap:1,part:"announcement-header",children:[jsx(F.Title,{children:a.title}),jsx(F.Subtitle,{children:a.subtitle})]}),jsx(F.Media,{src:a.videoUri??a.imageUri,type:a.videoUri?"video":"image",css:{aspectRatio:"1.5",objectFit:"cover",width:"100%"}}),jsx(F.ProgressDots,{current:o.getNumberOfCompletedSteps(),total:o.getNumberOfAvailableSteps()}),jsxs(y.Row,{css:{"& > button":{flexBasis:"50%",flexGrow:1}},gap:3,part:"announcement-footer",children:[a.secondaryButtonTitle&&jsx(F.Secondary,{onClick:n,title:a.secondaryButtonTitle}),a.primaryButtonTitle&&jsx(F.Primary,{onClick:r,title:a.primaryButtonTitle??"Continue"})]})]})})}function Jo({flowId:e,...t}){return jsx(H,{as:g,borderWidth:"md",display:"flex",flexDirection:"row",flowId:e,gap:3,justifyContent:"space-between",part:"banner",...t,children:({handleDismiss:o,handlePrimary:i,handleSecondary:r,step:n})=>jsxs(Fragment,{children:[jsxs(y.Row,{gap:3,children:[n.imageUri&&jsx("img",{src:n.imageUri,style:{height:40,width:40,alignSelf:"center"}}),jsxs(y.Column,{children:[jsx(u.H4,{mb:1,children:n.title}),jsx(u.Body2,{color:"gray500",children:n.subtitle})]})]}),jsxs(y.Row,{alignItems:"center",gap:3,justifyContent:"center",children:[n.secondaryButtonTitle&&jsx(b.Secondary,{title:n.secondaryButtonTitle,onClick:r}),jsx(b.Primary,{title:n.primaryButtonTitle,onClick:i}),t.dismissible&&jsx(g.Dismiss,{onClick:o})]})]})})}var Qo=new Set(["required","min","max","minLength","maxLength","pattern"]);function Zo({fieldComponent:e,control:t,fieldData:o}){o.pattern!=null&&(typeof o.pattern=="string"?o.pattern=new RegExp(o.pattern.replace(/^\/|\/$/g,"")):typeof o.pattern=="object"&&typeof o.pattern.value=="string"&&(o.pattern.value=new RegExp(o.pattern.value.replace(/^\/|\/$/g,""))));let i=Object.fromEntries(Object.entries(o).filter(([n])=>Qo.has(n))),r=useController({name:o.id,control:t,rules:i});return jsx(e,{...r,fieldData:o})}function Qe({fieldTypes:e,handleDismiss:t,handlePrimary:o,handleSecondary:i,parentProps:{dismissible:r},step:n}){var d;let{control:s,handleSubmit:a}=useForm({delayError:2e3,mode:"onChange"}),c=[];function x(h,A){o(A,h);}function m(h,A){i(A,h);}return (d=n.fields)==null||d.forEach(h=>{e[h.type]!=null&&c.push(jsx(Zo,{control:s,fieldComponent:e[h.type],fieldData:h},h.id));}),jsxs(y.Column,{gap:5,part:"form-step",children:[jsxs(y.Row,{alignItems:"center",flexWrap:"wrap",gap:1,justifyContent:"space-between",part:"form-step-header",children:[jsx(g.Title,{children:n.title}),r&&jsx(g.Dismiss,{onClick:t}),jsx(g.Subtitle,{flexBasis:"100%",children:n.subtitle})]}),c,jsxs(y.Row,{part:"form-step-footer",justifyContent:"flex-end",gap:3,children:[n.secondaryButtonTitle&&jsx(b.Secondary,{title:n.secondaryButtonTitle,onClick:a(m)}),jsx(b.Primary,{title:n.primaryButtonTitle??"Submit",onClick:a(x)})]},"form-footer")]})}function Ze({error:e}){var t;return (t=e==null?void 0:e.message)!=null&&t.length?jsx(u.Caption,{color:"red500",display:"block",part:"field-error",textAlign:"end",children:e==null?void 0:e.message}):null}function et({children:e,id:t,required:o=!1}){return jsxs(u.H4,{as:"label",htmlFor:t,part:"field-label",children:[e,o&&" *"]})}var q={px:"4",py:"2",backgroundColor:"neutral.background",borderColor:"neutral.border",borderStyle:"solid",borderWidth:"md",borderRadius:"md",display:"block",outline:"none",width:"100%"};function W({children:e,field:t,fieldData:o,fieldState:i}){let{id:r,label:n,placeholder:s}=o,{error:a}=i,c={id:r,...t,...s?{placeholder:s}:{},...q,"aria-invalid":!!a,value:t.value??""};return jsxs(p,{part:"field",children:[jsx(et,{id:r,required:!!o.required,children:n}),e(c),jsx(Ze,{error:a})]})}var rr=()=>jsx(p,{as:"svg",color:"primary.foreground",width:"10px",height:"8px",viewBox:"0 0 10 8",fill:"none",children:jsx("path",{d:"M1 4.34664L3.4618 6.99729L3.4459 6.98017L9 1",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),nr=ue.forwardRef(({label:e,value:t},o)=>jsxs(p,{as:"label",backgroundColor:"neutral.background",borderColor:"neutral.border",borderRadius:"md",borderStyle:"solid",borderWidth:"md",display:"flex",htmlFor:t,justifyContent:"space-between",part:"field-radio",px:4,py:2,children:[jsx(u.Body2,{part:"field-radio-label",children:e}),jsx(N.Item,{id:t,value:t,ref:o,asChild:!0,children:jsx(p,{as:"button",backgroundColor:"inherit",borderWidth:"md",borderStyle:"solid",borderColor:"neutral.border",borderRadius:"100%",padding:"0",part:"field-radio-value",position:"relative",height:"24px",width:"24px",children:jsx(p,{as:N.Indicator,alignItems:"center",bg:"primary.surface",borderWidth:"md",borderStyle:"solid",borderColor:"primary.border",borderRadius:"100%",display:"flex",height:"calc(100% + 2px)",justifyContent:"center",left:"-1px",part:"field-radio-indicator",position:"absolute",top:"-1px",width:"calc(100% + 2px)",children:jsx(rr,{})})})})]}));function nt(e){let{field:{onChange:t,value:o},fieldData:{options:i=[]}}=e,r=i.map(({label:n,value:s})=>jsx(nr,{value:s,label:n},s));return jsx(W,{...e,children:()=>jsx(N.Root,{value:o,onValueChange:t,asChild:!0,children:jsx(y.Column,{gap:2,part:"field-radio-group",children:r})})})}var sr=ue.forwardRef(({label:e,value:t},o)=>jsx(S.Item,{value:t,ref:o,asChild:!0,children:jsx(p,{"backgroundColor:hover":"blue900",borderRadius:"md",outline:"none",part:"field-select-option",px:"3",py:"2",children:jsx(S.ItemText,{asChild:!0,children:jsx(u.Body2,{part:"field-select-option-label",children:e})})})}));function st(e){let{field:{onChange:t,value:o},fieldData:{options:i=[],placeholder:r}}=e,n=i.map(({label:s,value:a})=>jsx(sr,{value:a,label:s},a));return jsx(W,{...e,children:()=>jsxs(S.Root,{value:o,onValueChange:t,children:[jsx(S.Trigger,{asChild:!0,children:jsxs(u.Body2,{...q,alignItems:"center",display:"flex",justifyContent:"space-between",part:"field-select",children:[jsx(S.Value,{placeholder:r??"Select one"}),jsx(S.Icon,{children:jsx(p,{as:ChevronDownIcon,color:"gray100",display:"block",height:"24px",part:"field-select-icon",width:"24px"})})]})}),jsx(S.Portal,{children:jsx(S.Content,{position:"popper",sideOffset:4,asChild:!0,children:jsx(p,{...q,p:"1",part:"field-select-options",width:"var(--radix-popper-anchor-width)",children:jsx(S.Viewport,{children:n})})})})]})})}function pt(e){return jsx(W,{...e,children:t=>jsx(u.Body2,{as:"input",part:"field-text",type:"text",...t})})}function ct(e){return jsx(W,{...e,children:t=>jsx(u.Body2,{as:"textarea",part:"field-textarea",...t})})}var lr={radio:nt,select:st,text:pt,textarea:ct};function pr({fieldTypes:e={},flowId:t,...o}){let i=Object.assign({},lr,e);return jsx(H,{flowId:t,part:"form",...o,children:r=>jsx(Qe,{fieldTypes:i,...r})})}function oe(){let e="DOMRect"in globalThis?new DOMRect:{height:0,width:0,x:0,y:0,bottom:0,top:0,right:0,left:0,toJSON:()=>{}},[t,o]=useState(e),[i,r]=useState(null),n=useCallback(s=>{r(s);},[]);return useLayoutEffect(()=>{if(!i)return;let s=()=>{let a=i.getBoundingClientRect();o(a);};return s(),window.addEventListener("resize",s),()=>window.removeEventListener("resize",s)},[i]),{node:i,rect:t,ref:n}}var mr=keyframes({"0%":{opacity:.5,transform:"scale(0.5)"},"50%":{opacity:0,transform:"scale(1)"},"100%":{opacity:0,transform:"scale(1)"}});function gt({style:e={},part:t="",...o}){return jsxs(p,{part:`dot-wrapper ${t}`,style:{height:"48px",position:"absolute",width:"48px",...e},...o,children:[jsx(p,{backgroundColor:"primary.surface",part:"dot-pulse",css:{animation:`2s ease-out infinite ${mr}`,borderRadius:"24px",height:"48px",left:0,position:"absolute",top:0,transformOrigin:"center center",width:"48px"}}),jsx(p,{backgroundColor:"primary.surface",part:"dot",style:{borderRadius:"12px",height:"24px",left:"12px",position:"absolute",top:"12px",width:"24px"}})]})}function xt({props:e,alignAttr:t,sideAttr:o}){let i=o??"bottom",r={},n=()=>{if(["after","before"].includes(e.align)){if(t=="start")return "before";if(t=="end")return "after"}return e.align??"after"},s="-24px",a={top:"bottom",right:"left",bottom:"top",left:"right"};r[a[i]]=s;let c=n();return ["before","end"].includes(c)?["top","bottom"].includes(i)?r.right=s:r.bottom=s:["after","start"].includes(c)?["top","bottom"].includes(i)?r.left=s:r.top=s:["top","bottom"].includes(i)?r.left=`calc(50% + ${s})`:r.top=`calc(50% + ${s})`,r}var yt={content:["align","alignOffset","arrowPadding","avoidCollisions","collisionBoundary","collisionPadding","forceMount","hideWhenDetached","onCloseAutoFocus","onEscapeKeyDown","onFocusOutside","onInteractOutside","onOpenAutoFocus","onPointerDownOutside","side","sideOffset","sticky"],root:["defaultOpen","modal","onOpenChange","open"]};function ht(e,t){let o=Object.fromEntries(yt.content.map(r=>[r,e[r]]).filter(r=>r[1]!==void 0)),i=Object.fromEntries(yt.root.map(r=>[r,e[r]]).filter(r=>r[1]!==void 0));if(o.align=o.align??"after",o.side=o.side??"bottom",["before","after"].includes(o.align)){let r={after:"end",before:"start"},n=(d,h)=>["top","bottom"].includes(h)?d=="after"?"marginLeft":"marginRight":d=="after"?"marginTop":"marginBottom",s=o.alignOffset??0,a=o.style??{},c=o.side??"bottom",x=o.align;o.style={...a,[n(x,c)]:s};let m=["top","bottom"].includes(c)?t.width:t.height;o.alignOffset=(m+s)*-1,o.align=r[x];}return {contentProps:o,rootProps:i}}function C({anchor:e,children:t,className:o,spotlight:i=!1,style:r,...n}){let{node:s,rect:a,ref:c}=oe(),{node:x,rect:m,ref:d}=oe(),{contentProps:h,rootProps:A}=ht(n,a),[Y,ne]=useState(h.align),[K,ie]=useState(h.side),[he,St]=useState(0),[Ct,Ft]=useState(0);if(s!==null){let M=s.getAttribute("data-align"),Q=s.getAttribute("data-side");Y!==M&&ne(M),K!==Q&&ie(Q);}let be=useRef(null);if(useEffect(()=>{let M=document.querySelector(e);M!=null&&(d(M),be.current=M);},[e]),useEffect(()=>{let{scrollX:M,scrollY:Q}=window;St(m.left+M),Ft(m.top+Q);},[m.left,m.top]),x==null)return null;let Pe="0";typeof window<"u"&&(Pe=window.getComputedStyle(x).borderRadius);let Tt=xt({props:n,alignAttr:Y,sideAttr:K});return jsxs(k.Root,{defaultOpen:!0,...A,children:[jsx(k.Anchor,{virtualRef:be}),jsx(k.Portal,{children:jsxs("div",{className:o,css:{bottom:0,left:0,position:"absolute",right:0,top:0,zIndex:9999,pointerEvents:"none"},children:[i&&jsx(p,{part:"tooltip-spotlight",position:"absolute",style:{borderRadius:Pe,boxShadow:"0 0 0 20000px rgb(0 0 0 / 0.5)",height:m.height,left:he,top:Ct,width:m.width}}),jsx(k.Content,{asChild:!0,...h,ref:c,children:jsxs(g,{boxShadow:"md",part:"tooltip",position:"relative",css:{maxWidth:"360px",pointerEvents:"auto",...r},children:[jsx(gt,{style:Tt}),t]})})]})})]})}C.Close=e=>jsx(k.Close,{"aria-label":"Close",asChild:!0,children:jsx(b.Plain,{css:{top:"12px",right:"4px"},part:"close",position:"absolute",...e,children:jsx(XMarkIcon,{height:"24",fill:"currentColor"})})});C.Media=({src:e,...t})=>e==null?null:jsx($,{borderRadius:"md md 0 0",borderWidth:"0",css:{aspectRatio:"2",objectFit:"cover"},margin:"-5 -5 0",src:e,...t});C.Primary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Primary,{title:t,onClick:e,...o});C.Progress=({children:e,...t})=>e==null?null:jsx(u.H4,{part:"progress",...t,children:e});C.Secondary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Secondary,{title:t,onClick:e,...o});C.Subtitle=({children:e,...t})=>e==null?null:jsx(u.Body2,{part:"subtitle",...t,children:e});C.Title=({children:e,...t})=>e==null?null:jsx(u.H4,{part:"title",...t,children:e});function Pt({dismissible:e=!0,flow:t,onDismiss:o,onPrimary:i,onSecondary:r,step:n,...s}){let{handleDismiss:a}=V(t,{onDismiss:o}),{handlePrimary:c,handleSecondary:x}=J(n,{onPrimary:i,onSecondary:r});return jsxs(C,{anchor:n.selector,onOpenAutoFocus:m=>m.preventDefault(),onPointerDownOutside:m=>m.preventDefault(),...s,children:[e&&jsx(C.Close,{onClick:a}),jsx(C.Media,{src:n.videoUri??n.imageUri,type:n.videoUri?"video":"image"}),jsxs(y.Column,{gap:1,part:"tooltip-header",children:[jsx(C.Title,{children:n.title}),jsx(C.Subtitle,{color:"gray500",children:n.subtitle})]}),jsxs(y.Row,{alignItems:"center",gap:3,justifyContent:"flex-end",part:"tooltip-footer",children:[jsx(C.Progress,{marginRight:"auto",transform:"translateY(1px)",children:`${t.getNumberOfCompletedSteps()+1}/${t.getNumberOfAvailableSteps()}`}),jsx(C.Secondary,{title:n.secondaryButtonTitle,onClick:x}),jsx(C.Primary,{title:n.primaryButtonTitle,onClick:c})]})]},n.id)}function hr({flowId:e,onComplete:t,variables:o,...i}){let{flow:r}=G(e,{variables:o});V(r,{onComplete:t});let{isCurrentModal:n,removeModal:s}=X(r);if(useEffect(()=>{!(r!=null&&r.isVisible)&&n&&s();},[r==null?void 0:r.isVisible,n]),r==null||r.isVisible===!1||!n)return null;r.start();let a=r.getCurrentStep();return a==null||a.start(),jsx(Pt,{step:a,flow:r,...i})}function Sr(){let{frigade:e}=useContext(B);return {frigade:e,isLoading:!(e!=null&&e.isReady())}}function Fr(){let{userId:e,frigade:t}=useContext(B);async function o(r){await t.identify(e,r);}async function i(r,n){await t.track(r,n);}return {userId:e,addProperties:o,track:i}}function wr(){let{groupId:e,frigade:t}=useContext(B);async function o(r){if(!e){console.error("No Group ID is set. Cannot set properties without a Group ID.");return}await t.group(e,r);}async function i(r,n){await t.track(r,n);}return {groupId:e,addProperties:o,track:i}}
|
|
21
|
+
var Lt=Object.defineProperty;var Vt=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(t,o)=>(typeof require<"u"?require:t)[o]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw new Error('Dynamic require of "'+e+'" is not supported')});var J=(e,t)=>{for(var o in t)Lt(e,o,{get:t[o],enumerable:!0});};var Ee={borders:{md:"1px solid"},borderWidths:{0:"0",md:"1px"}};var De={black:"#000000",gray100:"#14161A",gray200:"#181B20",gray300:"#1F2329",gray400:"#2E343D",gray500:"#4C5766",gray600:"#5A6472",gray700:"#C5CBD3",gray800:"#E2E5E9",gray900:"#F1F2F4",white:"#ffffff",blue400:"#015AC6",blue500:"#0171F8",blue800:"#DBECFF",blue900:"#F5F9FF",green400:"#009E37",green500:"#00D149",green800:"#DBFFE8",transparent:"#FFFFFF00",inherit:"inherit",red500:"#c00000"};var Oe={md:"10px",lg:"20px",round:"50%"};var l=e=>`var(--fr-colors-${e})`,Me={neutral:{background:l("white"),border:l("gray800"),foreground:l("black"),surface:l("gray700"),active:{background:l("white"),border:l("gray900"),foreground:l("black"),surface:l("gray700")},focus:{background:l("white"),border:l("gray900"),foreground:l("black"),surface:l("gray700")},hover:{background:l("white"),border:l("gray900"),foreground:l("black"),surface:l("gray700")}},primary:{background:l("blue500"),border:l("blue500"),foreground:l("white"),surface:l("blue500"),active:{background:l("blue400"),border:l("blue400"),foreground:l("white"),surface:l("blue400")},focus:{background:l("blue500"),border:l("blue500"),foreground:l("white"),surface:l("blue500")},hover:{background:l("blue400"),border:l("blue400"),foreground:l("white"),surface:l("blue400")}},secondary:{background:l("white"),border:l("gray800"),foreground:l("black"),surface:l("gray900"),active:{background:l("gray900"),border:l("gray800"),foreground:l("black"),surface:l("gray800")},focus:{background:l("gray900"),border:l("gray800"),foreground:l("black"),surface:l("gray900")},hover:{background:l("gray900"),border:l("gray800"),foreground:l("black"),surface:l("gray800")}}};var He={md:"0px 4px 20px rgba(0, 0, 0, 0.1)"};var $t="px",_t=e=>typeof e=="number"?`${4*e}${$t}`:e,zt=[-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,-.5,0,.5,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,"auto"],Ie=Object.fromEntries(zt.map(e=>[e,_t(e)]));var We={fontFamilies:{default:"inherit"},fontSizes:{xs:"12px",sm:"14px",md:"16px",lg:"18px",xl:"20px","2xl":"24px","3xl":"30px","4xl":"36px","5xl":"48px"},fontWeights:{thin:"100",extralight:"200",light:"300",regular:"400",medium:"500",demibold:"600",bold:"700",extrabold:"800",black:"900"},letterSpacings:{md:"0.02em"},lineHeights:{xs:"18px",sm:"22px",md:"24px",lg:"26px",xl:"30px","2xl":"38px","3xl":"46px","4xl":"60px"}};var ce={...Ee,colors:{...De,...Me},...We,radii:Oe,shadows:He,space:Ie};function Y(e,t="",o="."){return Object.keys(e).reduce((i,r)=>{let s=`${t.length?`${t}${o}`:""}${r}`,a=e[r];return typeof a=="object"&&a!==null&&!Array.isArray(a)?Object.assign(i,Y(a,s,o)):i[s]=a,i},{})}function me(e){return Y(e,"--fr","-")}function Ae(e,t="--fr"){let o={};return Object.keys(e).forEach(i=>{let r=e[i];typeof r=="object"&&r!==null&&!Array.isArray(r)?o[i]=Ae(r,`${t}-${i}`):o[i]=`var(${t}-${i})`;}),o}var ue=me(ce),y=Ae(ce);var Kt=new Set(["alt","size","src"]),Nt=jt.all.filter(e=>e.indexOf("-")!=0&&!Kt.has(e)).map(e=>[e.replace(/-([a-z])/g,(t,o)=>o.toUpperCase()),null]),Ut=Object.fromEntries(Nt),fe=Y(y.colors),Gt={color:fe,backgroundColor:fe,borderColor:fe,border:y.borders,borderRadius:y.radii,borderWidth:y.borderWidths,boxShadow:y.shadows,fontFamily:y.fontFamilies,fontSize:y.fontSizes,fontWeight:y.fontWeights,gap:y.space,lineHeight:y.lineHeights,margin:y.space,marginBottom:y.space,marginLeft:y.space,marginRight:y.space,marginTop:y.space,padding:y.space,paddingBottom:y.space,paddingLeft:y.space,paddingRight:y.space,paddingTop:y.space},Le={...Ut,...Gt},Ve={bg:["backgroundColor"],m:["margin"],mt:["marginTop"],mr:["marginRight"],mb:["marginBottom"],ml:["marginLeft"],mx:["marginLeft","marginRight"],my:["marginTop","marginBottom"],p:["padding"],pt:["paddingTop"],pr:["paddingRight"],pb:["paddingBottom"],pl:["paddingLeft"],px:["paddingLeft","paddingRight"],py:["paddingTop","paddingBottom"]},$e=new Set(["active","focus","focusVisible","focusWithin","hover"]);function Jt(e){return Array.isArray(e)?new Map(e.map(t=>[t,t])):typeof e=="object"&&e!==null?new Map(Object.entries(e)):typeof e=="string"||typeof e=="number"?new Map([[e,e]]):new Map}var _e=new Map(Object.entries(Le).map(([e,t])=>[e,Jt(t)])),Xt=new Map(Object.entries(Ve).map(([e,t])=>[e,new Set(t)])),qt=new Set(["height","width"]),Yt=new Set(["canvas","embed","iframe","img","input","object","video"]);function ze(e){let[t,o]=e.split(":");return [t,$e.has(o)?o:null]}function je(e,t="div"){let o=Object.assign({},e),i={};function r(n){if(n==null)return i;let a=`&:${n.replace(/[A-Z]/g,d=>`-${d.toLocaleLowerCase()}`)}`;return i[a]==null&&(i[a]={}),i[a]}return Object.entries(o).forEach(([n,s])=>{let[a,d]=ze(n),u=Xt.get(a);u!=null&&(u.forEach(x=>{let m=`${x}${d?":"+d:""}`;o[m]=s;}),delete o[n]);}),Object.entries(o).forEach(([n,s])=>{let[a,d]=ze(n),u=_e.get(a);if(u!=null){if(typeof s=="string"&&s.indexOf(" ")>-1){let x=s.split(" ");r(d)[a]=x.map(m=>u.get(m.toString())??m).join(" ");}else u.has(s.toString())?r(d)[a]=u.get(s.toString()):r(d)[a]=s;(typeof t!="string"||!Yt.has(t)||!qt.has(a))&&delete o[n];}}),Object.keys(o).forEach(n=>{let s=n.substring(1);n.indexOf("_")===0&&_e.has(s)&&(o[s]=o[n],delete o[n]);}),{cssFromProps:i,unmatchedProps:o}}function Zt(){if(typeof window>"u"){let{JSDOM:e}=Vt("jsdom");return new e("<!DOCTYPE html>").window}return window}function Ke(e){return e?{__html:Qt(Zt()).sanitize(e,{ALLOWED_TAGS:["b","i","a","span","div","p","pre","u","br","img","code","li","ul","table","tbody","thead","tr","td","th","h1","h2","h3","h4","video"],ALLOWED_ATTR:["style","class","target","id","href","alt","src","controls","autoplay","loop","muted"]})}:{__html:""}}function to(e){return e&&`fr-${e}`}function Ge(e){return e&&(Array.isArray(e)?e.map(t=>Ge(t)).join(" "):to(e))}function oo({as:e,children:t,className:o,css:i={},part:r,...n},s){let a=e??"div",{cssFromProps:d,unmatchedProps:u}=je(n,a),x=Ge(r),m=o||x?clsx(o,x):void 0,h=[{boxSizing:"border-box"},d,i];return typeof t=="string"?jsx(a,{className:m,css:h,...u,ref:s,dangerouslySetInnerHTML:Ke(t)}):jsx(a,{className:m,css:h,...u,ref:s,children:t})}var p=ye.forwardRef(oo);var f={};J(f,{Body1:()=>Po,Body2:()=>Co,Caption:()=>So,Display1:()=>fo,Display2:()=>go,H1:()=>xo,H2:()=>yo,H3:()=>ho,H4:()=>bo});var ge={};J(ge,{Body1:()=>po,Body2:()=>co,Caption:()=>mo,Display1:()=>ro,Display2:()=>no,H1:()=>io,H2:()=>ao,H3:()=>so,H4:()=>lo});var H={color:"neutral.foreground",fontFamily:"default",margin:"0"},ro={...H,fontSize:"5xl",fontWeight:"bold",lineHeight:"4xl"},no={...H,fontSize:"4xl",fontWeight:"bold",lineHeight:"3xl"},io={...H,fontSize:"3xl",fontWeight:"demibold",lineHeight:"2xl"},ao={...H,fontSize:"2xl",fontWeight:"demibold",lineHeight:"xl"},so={...H,fontSize:"xl",fontWeight:"demibold",lineHeight:"lg"},lo={...H,fontSize:"md",fontWeight:"demibold",lineHeight:"md"},po={...H,fontSize:"md",fontWeight:"regular",lineHeight:"md"},co={...H,fontSize:"sm",fontWeight:"regular",lineHeight:"sm"},mo={...H,fontSize:"xs",fontWeight:"regular",lineHeight:"xs"};var uo=["Display1","Display2","H1","H2","H3","H4","Body1","Body2","Caption"],I=Object.fromEntries(uo.map(e=>{let t=["H1","H2","H3","H4"].includes(e)?e.toLowerCase():"span",o=ye.forwardRef(({as:i=t,children:r,...n},s)=>jsx(p,{as:i,...ge[e],...n,ref:s,children:r}));return o.displayName=`Text.${e}`,[e,o]})),fo=I.Display1,go=I.Display2,xo=I.H1,yo=I.H2,ho=I.H3,bo=I.H4,Po=I.Body1,Co=I.Body2,So=I.Caption;var xe={};J(xe,{Link:()=>Ro,Plain:()=>Bo,Primary:()=>To,Secondary:()=>wo});var ne={borderWidth:"0",borderRadius:"md",display:"flex",gap:"2",padding:"2 4"},To={...ne,backgroundColor:"primary.surface",color:"primary.foreground","backgroundColor:hover":"primary.hover.surface"},wo={...ne,backgroundColor:"secondary.background",borderColor:"secondary.border",borderStyle:"solid",borderWidth:"1px",color:"secondary.foreground","backgroundColor:hover":"secondary.hover.background"},Ro={...ne,backgroundColor:"transparent",color:"primary.surface","color:hover":"primary.hover.surface"},Bo={...ne,backgroundColor:"transparent",color:"neutral.foreground"};function Xe({as:e,children:t,part:o,title:i,variant:r="Primary",...n}){let s=r.toLocaleLowerCase();return jsxs(p,{as:e??"button",part:[`button-${s}`,o],...xe[r],...n,children:[t,i&&jsx(f.Body2,{color:"inherit",css:{WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale"},flexGrow:"1",fontWeight:"demibold",part:"button-title",children:i})]})}var vo=["Primary","Secondary","Link","Plain"],ko=Object.fromEntries(vo.map(e=>{let t=o=>jsx(Xe,{...o,variant:e,children:o.children});return t.displayName=`Button.${e}`,[e,t]})),b=Object.assign(Xe,ko);var g={};J(g,{Column:()=>Oo,Row:()=>Do});var Do=ye.forwardRef((e,t)=>jsx(p,{display:"flex",flexDirection:"row",...e,ref:t})),Oo=ye.forwardRef((e,t)=>jsx(p,{display:"flex",flexDirection:"column",...e,ref:t}));var B=createContext({apiKey:"",modals:new Set,setModals:()=>{},currentModal:null,navigate:()=>{}});function $o({children:e,navigate:t,theme:o,...i}){let r=o?me(o):{},[n,s]=useState(new Set),a=useMemo(()=>new Frigade(i.apiKey,{apiKey:i.apiKey,apiUrl:i.apiUrl,userId:i.userId,groupId:i.groupId,__readOnly:i.__readOnly,__flowConfigOverrides:i.__flowConfigOverrides}),[i.userId,i.groupId,i.apiKey]),d=t??((x,m="_self")=>{window.open(x,m);});useEffect(()=>()=>{a.destroy();},[]);let u=n.size>0?n.values().next().value:null;return jsxs(B.Provider,{value:{modals:n,setModals:s,currentModal:u,navigate:d,...i,frigade:a},children:[jsx(Global,{styles:{":root":{...ue,...r}}}),jsx(ThemeProvider,{theme:y,children:e})]})}function Q(e,t){let[o,i]=useState(),[,r]=useState(""),{frigade:n}=useContext(B),s=a=>{a.id===e&&(t!=null&&t.variables&&a.applyVariables(t.variables),i(a),r(Math.random().toString()));};return useEffect(()=>((async()=>{let a=await n.getFlow(e);if(!a||n.hasFailedToLoad()){i(void 0);return}t!=null&&t.variables&&a.applyVariables(t.variables),i(a);})(),n.onStateChange(s),()=>{n.removeStateChangeHandler(s);}),[]),{flow:o}}function _(e,{onComplete:t,onDismiss:o}={}){let i=useRef(null);return useEffect(()=>{e!=null&&(e.isCompleted&&i.current===!1&&(async()=>await(t==null?void 0:t(e)))(),i.current=e==null?void 0:e.isCompleted);},[e==null?void 0:e.isCompleted]),{handleDismiss:useCallback(async r=>{if(await(o==null?void 0:o(e,r))===!1)return r.preventDefault(),!1;await e.skip();},[e])}}function Z(e,{onPrimary:t,onSecondary:o}={}){let{navigate:i}=useContext(B);return {handlePrimary:useCallback(async(r,n)=>await(t==null?void 0:t(e,r))===!1?(r.preventDefault(),!1):(await e.complete(n),e.primaryButtonUri!=null&&i(e.primaryButtonUri,e.primaryButtonUriTarget),!0),[e]),handleSecondary:useCallback(async(r,n)=>await(o==null?void 0:o(e,r))===!1?(r.preventDefault(),!1):(await e.complete(n),e.secondaryButtonUri!=null&&i(e.secondaryButtonUri,e.secondaryButtonUriTarget),!0),[e])}}function ee(e){let{currentModal:t,modals:o,setModals:i}=useContext(B),[r,n]=useState(!1);useEffect(()=>{e!=null&&e.isVisible&&e&&!o.has(e.id)&&i(a=>new Set(a).add(e.id));},[e==null?void 0:e.id,e==null?void 0:e.isVisible]),useEffect(()=>{let a=t===(e==null?void 0:e.id);(e==null?void 0:e.id)!=null&&a!==r&&n(a);},[e==null?void 0:e.id,t]);function s(){o.has(e==null?void 0:e.id)&&i(a=>{let d=new Set(a);return d.delete(e==null?void 0:e.id),d});}return {isCurrentModal:r,removeModal:s}}function D({as:e,children:t,container:o,dismissible:i=!1,flowId:r,onComplete:n,onDismiss:s,onPrimary:a,onSecondary:d,variables:u,...x}){let{flow:m}=Q(r,{variables:u}),h=m==null?void 0:m.getCurrentStep(),{handleDismiss:E}=_(m,{onComplete:n,onDismiss:s}),{handlePrimary:$,handleSecondary:pe}=Z(h,{onPrimary:a,onSecondary:d}),{isCurrentModal:G,removeModal:de}=ee(m);return useEffect(()=>{!(m!=null&&m.isVisible)&&G&&de();},[m==null?void 0:m.isVisible,G]),m==null||!m.isVisible||!G?null:(m.start(),h.start(),jsx(e??p,{position:"relative",...x,children:t({flow:m,handleDismiss:E,handlePrimary:$,handleSecondary:pe,parentProps:{container:o,dismissible:i,flowId:r,variables:u,...x},step:h})}))}function ot(e){return jsx(D,{as:c,gap:5,borderColor:"neutral.border",borderStyle:"solid",borderWidth:"md",part:"card",...e,children:({handleDismiss:t,handlePrimary:o,handleSecondary:i,parentProps:{dismissible:r},step:n})=>jsxs(Fragment,{children:[jsxs(g.Row,{alignItems:"center",flexWrap:"wrap",gap:1,justifyContent:"space-between",part:"card-header",children:[jsx(c.Title,{children:n.title}),r&&jsx(c.Dismiss,{onClick:t}),jsx(c.Subtitle,{flexBasis:"100%",children:n.subtitle})]}),jsx(c.Media,{src:n.imageUri,css:{objectFit:"contain",width:"100%"}}),jsxs(g.Row,{gap:3,justifyContent:"flex-end",part:"card-footer",children:[jsx(c.Secondary,{title:n.secondaryButtonTitle,onClick:i}),jsx(c.Primary,{title:n.primaryButtonTitle??"Continue",onClick:o})]})]})})}function rt({part:e,src:t,...o}){return jsx(p,{as:"img",part:["image",e],src:t,...o})}function er(e){var t,o,i,r;return e.includes("youtube")?`https://www.youtube.com/embed/${(t=e.split("v=")[1])==null?void 0:t.split("&")[0]}`:e.includes("vimeo")?`https://player.vimeo.com/video/${(o=e.split("vimeo.com/")[1])==null?void 0:o.split("&")[0]}`:e.includes("wistia")?`https://fast.wistia.net/embed/iframe/${(i=e.split("wistia.com/medias/")[1])==null?void 0:i.split("&")[0]}`:e.includes("loom")?`https://loom.com/embed/${(r=e.split("loom.com/share/")[1])==null?void 0:r.split("&")[0]}?hideEmbedTopBar=true&hide_title=true&hide_share=true&hide_owner=true`:null}function it({part:e,src:t,...o}){let i=er(t);return i?jsx(p,{allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture",allowFullScreen:!0,as:"iframe",backgroundColor:"gray100",borderWidth:0,part:["video",e],src:i,...o}):t!=null&&t.endsWith(".mp4")?jsx(p,{as:"video",controls:!0,part:["video",e],src:t,...o}):(console.error(`Could not map videoUri ${t} to a known provider (Youtube, Vimeo, Wistia, Loom) or valid mp4 file.`),null)}function j({src:e,type:t,...o}){return jsx(t==="video"?it:rt,{src:e,...o})}var c=ye.forwardRef(({children:e,flowId:t,...o},i)=>{if(t!=null)return jsx(ot,{flowId:t,...o});let r=o.as??g.Column;return jsx(r,{backgroundColor:"neutral.background",borderColor:"neutral.border",borderStyle:"solid",borderRadius:"md",borderWidth:"0",gap:5,p:5,...o,ref:i,children:e})});c.Dismiss=e=>jsx(b.Plain,{part:"dismiss",padding:0,...e,children:jsx(XMarkIcon,{height:"24",fill:"currentColor"})});c.Media=({src:e,...t})=>e==null?null:jsx(j,{borderRadius:"md",src:e,...t});c.Primary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Primary,{title:t,onClick:e,...o});c.Secondary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Secondary,{title:t,onClick:e,...o});c.Subtitle=({children:e,...t})=>e==null?null:jsx(f.Body2,{display:"block",part:"subtitle",...t,children:e});c.Title=({children:e,...t})=>e==null?null:jsx(f.Body1,{display:"block",fontWeight:"bold",part:"title",...t,children:e});function F({children:e,...t}){return jsx(T.Root,{defaultOpen:!0,modal:!0,children:jsx(T.Portal,{children:jsxs(p,{inset:"0",position:"fixed",zIndex:"9999",children:[jsx(T.Overlay,{asChild:!0,children:jsx(p,{background:"rgb(0 0 0 / 0.5)",part:"dialog-overlay",position:"fixed",inset:"0"})}),jsx(T.Content,{asChild:!0,onOpenAutoFocus:o=>o.preventDefault(),onPointerDownOutside:o=>o.preventDefault(),children:jsx(c,{boxShadow:"md",left:"50%",maxWidth:"430px",p:8,part:"dialog",position:"fixed",textAlign:"center",top:"50%",transform:"translate(-50%, -50%)",...t,children:e})})]})})})}F.Dismiss=e=>jsx(T.Close,{"aria-label":"Close",asChild:!0,children:jsx(b.Plain,{part:"close",position:"absolute",right:"-4px",top:"4px",...e,children:jsx(XMarkIcon,{height:"24",fill:"currentColor"})})});F.Subtitle=({children:e,...t})=>jsx(T.Description,{asChild:!0,children:jsx(f.Body2,{part:"subtitle",...t,children:e})});F.Media=({src:e,...t})=>e==null?null:jsx(j,{borderRadius:"md",src:e,...t});F.Primary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Primary,{title:t,onClick:e,...o});F.ProgressDots=({current:e,total:t})=>{if(t==1)return null;let o=[...Array(t)].map((i,r)=>jsx("circle",{r:4,cx:4+16*r,cy:"4px",fill:e===r?y.colors.blue500:y.colors.blue800},r));return jsx(p,{as:"svg",height:"8px",marginInline:"auto",part:"progress",viewBox:`0 0 ${16*t-8} 8`,width:16*t-8,children:o})};F.Secondary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Secondary,{title:t,onClick:e,...o});F.Title=({children:e,...t})=>jsx(T.Title,{asChild:!0,children:jsx(f.H3,{part:"title",...t,children:e})});function ir({flowId:e,...t}){return jsx(D,{as:F,dismissible:!0,flowId:e,...t,children:({flow:o,handleDismiss:i,handlePrimary:r,handleSecondary:n,parentProps:{dismissible:s},step:a})=>jsxs(Fragment,{children:[s&&jsx(F.Dismiss,{onClick:i}),jsxs(g.Column,{gap:1,part:"announcement-header",children:[jsx(F.Title,{children:a.title}),jsx(F.Subtitle,{children:a.subtitle})]}),jsx(F.Media,{src:a.videoUri??a.imageUri,type:a.videoUri?"video":"image",css:{aspectRatio:"1.5",objectFit:"cover",width:"100%"}}),jsx(F.ProgressDots,{current:o.getNumberOfCompletedSteps(),total:o.getNumberOfAvailableSteps()}),jsxs(g.Row,{css:{"& > button":{flexBasis:"50%",flexGrow:1}},gap:3,part:"announcement-footer",children:[a.secondaryButtonTitle&&jsx(F.Secondary,{onClick:n,title:a.secondaryButtonTitle}),a.primaryButtonTitle&&jsx(F.Primary,{onClick:r,title:a.primaryButtonTitle??"Continue"})]})]})})}function sr({flowId:e,...t}){return jsx(D,{as:c,borderWidth:"md",display:"flex",flexDirection:"row",flowId:e,gap:3,justifyContent:"space-between",part:"banner",...t,children:({handleDismiss:o,handlePrimary:i,handleSecondary:r,step:n})=>jsxs(Fragment,{children:[jsxs(g.Row,{gap:3,children:[n.imageUri&&jsx("img",{src:n.imageUri,style:{height:40,width:40,alignSelf:"center"}}),jsxs(g.Column,{children:[jsx(f.H4,{mb:1,children:n.title}),jsx(f.Body2,{color:"gray500",children:n.subtitle})]})]}),jsxs(g.Row,{alignItems:"center",gap:3,justifyContent:"center",children:[n.secondaryButtonTitle&&jsx(b.Secondary,{title:n.secondaryButtonTitle,onClick:r}),jsx(b.Primary,{title:n.primaryButtonTitle,onClick:i}),t.dismissible&&jsx(c.Dismiss,{onClick:o})]})]})})}var dt={};J(dt,{Collapsible:()=>pt,CollapsibleStep:()=>ae});var ae={};J(ae,{Content:()=>Ce,Root:()=>Se,Trigger:()=>Fe});var dr=keyframes`
|
|
22
|
+
from {
|
|
23
|
+
height: 0;
|
|
24
|
+
opacity: 0;
|
|
25
|
+
}
|
|
26
|
+
to {
|
|
27
|
+
height: var(--radix-collapsible-content-height);
|
|
28
|
+
opacity: 1;
|
|
29
|
+
}
|
|
30
|
+
`,cr=keyframes`
|
|
31
|
+
from {
|
|
32
|
+
height: var(--radix-collapsible-content-height);
|
|
33
|
+
opacity: 1;
|
|
34
|
+
}
|
|
35
|
+
to {
|
|
36
|
+
height: 0;
|
|
37
|
+
opacity: 0;
|
|
38
|
+
}
|
|
39
|
+
`,mr=()=>jsx(p,{as:"svg",color:"primary.foreground",width:"10px",height:"8px",viewBox:"0 0 10 8",fill:"none",children:jsx("path",{d:"M1 4.34664L3.4618 6.99729L3.4459 6.98017L9 1",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})});function ur({checked:e=!1}){return jsx(p,{backgroundColor:"inherit",borderWidth:"md",borderStyle:"solid",borderColor:"neutral.border",borderRadius:"100%",padding:"0",part:"field-radio-value",position:"relative",height:"22px",width:"22px",children:e&&jsx(p,{alignItems:"center",bg:"green500",borderWidth:"md",borderStyle:"solid",borderColor:"green500",borderRadius:"100%",display:"flex",height:"calc(100% + 2px)",justifyContent:"center",left:"-1px",part:"field-radio-indicator",position:"absolute",top:"-1px",width:"calc(100% + 2px)",children:jsx(mr,{})})})}function Ce({children:e}){return jsx(X.Content,{asChild:!0,children:jsxs(g.Column,{css:{'&[data-state="open"]':{animation:`${dr} 300ms ease-out`},'&[data-state="closed"]':{animation:`${cr} 300ms ease-out`},overflow:"hidden"},gap:5,children:[jsx(p,{}),e]})})}function Se({children:e,open:t=!1,onOpenChange:o=()=>{}}){return jsx(X.Root,{asChild:!0,open:t,onOpenChange:o,children:jsx(c,{borderWidth:"md",css:{'&[data-state="open"] .fr-collapsible-step-icon':{transform:"rotate(180deg)"}},gap:0,children:e})})}function Fe({isCompleted:e,title:t}){return jsx(X.Trigger,{asChild:!0,children:jsxs(g.Row,{alignItems:"center",justifyContent:"space-between",children:[jsxs(g.Row,{alignItems:"center",gap:2,children:[jsx(ur,{checked:e}),jsx(f.Body2,{fontWeight:"demibold",children:t})]}),jsx(p,{as:ChevronDownIcon,color:"gray100",display:"block",height:"16px",order:2,part:"collapsible-step-icon",width:"16px"})]})})}function lt({handlePrimary:e,handleSecondary:t,open:o,onOpenChange:i,step:r}){let{isCompleted:n,primaryButtonTitle:s,secondaryButtonTitle:a,subtitle:d,title:u}=r;return jsxs(Se,{open:o,onOpenChange:i,children:[jsx(Fe,{isCompleted:n,title:u}),jsxs(Ce,{children:[jsx(c.Media,{aspectRatio:2.5,objectFit:"cover",src:r.imageUri}),jsx(c.Subtitle,{color:"gray500",children:d}),jsxs(g.Row,{gap:3,children:[jsx(c.Secondary,{title:a,onClick:t}),jsx(c.Primary,{title:s,onClick:e})]})]})]})}var xr={default:lt};function yr({flow:e,step:t,stepTypes:o,...i}){var d;let[r,n]=useState(t.id);useEffect(()=>{n(t.id);},[t.id]);let s={...xr,...o},a=Array.from((d=e.steps)==null?void 0:d.entries()).map(([,u])=>{let x=s[u.type]??lt;function m(h){var E,$;n(h?u.id:null),($=(E=e.steps)==null?void 0:E.get(u.id))==null||$.start();}return jsx(x,{flow:e,onOpenChange:m,open:u.id===r,step:u,...i},u.id)});return jsxs(Fragment,{children:[jsxs(g.Column,{gap:2,children:[jsx(c.Title,{children:e.title}),jsx(c.Subtitle,{color:"gray500",children:e.subtitle})]}),a]})}function pt({flowId:e,stepTypes:t={},...o}){return jsx(D,{as:c,borderWidth:"md",flowId:e,part:"checklist",...o,children:i=>jsx(yr,{stepTypes:t,...i})})}var Cr=new Set(["required","min","max","minLength","maxLength","pattern"]);function Sr({fieldComponent:e,control:t,fieldData:o}){o.pattern!=null&&(typeof o.pattern=="string"?o.pattern=new RegExp(o.pattern.replace(/^\/|\/$/g,"")):typeof o.pattern=="object"&&typeof o.pattern.value=="string"&&(o.pattern.value=new RegExp(o.pattern.value.replace(/^\/|\/$/g,""))));let i=Object.fromEntries(Object.entries(o).filter(([n])=>Cr.has(n))),r=useController({name:o.id,control:t,rules:i});return jsx(e,{...r,fieldData:o})}function ct({fieldTypes:e,handleDismiss:t,handlePrimary:o,handleSecondary:i,parentProps:{dismissible:r},step:n}){var m;let{control:s,handleSubmit:a}=useForm({delayError:2e3,mode:"onChange"}),d=[];function u(h,E){o(E,h);}function x(h,E){i(E,h);}return (m=n.fields)==null||m.forEach(h=>{e[h.type]!=null&&d.push(jsx(Sr,{control:s,fieldComponent:e[h.type],fieldData:h},h.id));}),jsxs(g.Column,{gap:5,part:"form-step",children:[jsxs(g.Row,{alignItems:"center",flexWrap:"wrap",gap:1,justifyContent:"space-between",part:"form-step-header",children:[jsx(c.Title,{children:n.title}),r&&jsx(c.Dismiss,{onClick:t}),jsx(c.Subtitle,{flexBasis:"100%",children:n.subtitle})]}),d,jsxs(g.Row,{part:"form-step-footer",justifyContent:"flex-end",gap:3,children:[n.secondaryButtonTitle&&jsx(b.Secondary,{title:n.secondaryButtonTitle,onClick:a(x)}),jsx(b.Primary,{title:n.primaryButtonTitle??"Submit",onClick:a(u)})]},"form-footer")]})}function mt({error:e}){var t;return (t=e==null?void 0:e.message)!=null&&t.length?jsx(f.Caption,{color:"red500",display:"block",part:"field-error",textAlign:"end",children:e==null?void 0:e.message}):null}function ut({children:e,id:t,required:o=!1}){return jsxs(f.H4,{as:"label",htmlFor:t,part:"field-label",children:[e,o&&" *"]})}var oe={px:"4",py:"2",backgroundColor:"neutral.background",borderColor:"neutral.border",borderStyle:"solid",borderWidth:"md",borderRadius:"md",display:"block",outline:"none",width:"100%"};function V({children:e,field:t,fieldData:o,fieldState:i}){let{id:r,label:n,placeholder:s}=o,{error:a}=i,d={id:r,...t,...s?{placeholder:s}:{},...oe,"aria-invalid":!!a,value:t.value??""};return jsxs(p,{part:"field",children:[jsx(ut,{id:r,required:!!o.required,children:n}),e(d),jsx(mt,{error:a})]})}var Rr=()=>jsx(p,{as:"svg",color:"primary.foreground",width:"10px",height:"8px",viewBox:"0 0 10 8",fill:"none",children:jsx("path",{d:"M1 4.34664L3.4618 6.99729L3.4459 6.98017L9 1",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),Br=ye.forwardRef(({label:e,value:t},o)=>jsxs(p,{as:"label",backgroundColor:"neutral.background",borderColor:"neutral.border",borderRadius:"md",borderStyle:"solid",borderWidth:"md",display:"flex",htmlFor:t,justifyContent:"space-between",part:"field-radio",px:4,py:2,children:[jsx(f.Body2,{part:"field-radio-label",children:e}),jsx(q.Item,{id:t,value:t,ref:o,asChild:!0,children:jsx(p,{as:"button",backgroundColor:"inherit",borderWidth:"md",borderStyle:"solid",borderColor:"neutral.border",borderRadius:"100%",padding:"0",part:"field-radio-value",position:"relative",height:"24px",width:"24px",children:jsx(p,{as:q.Indicator,alignItems:"center",bg:"primary.surface",borderWidth:"md",borderStyle:"solid",borderColor:"primary.border",borderRadius:"100%",display:"flex",height:"calc(100% + 2px)",justifyContent:"center",left:"-1px",part:"field-radio-indicator",position:"absolute",top:"-1px",width:"calc(100% + 2px)",children:jsx(Rr,{})})})})]}));function yt(e){let{field:{onChange:t,value:o},fieldData:{options:i=[]}}=e,r=i.map(({label:n,value:s})=>jsx(Br,{value:s,label:n},s));return jsx(V,{...e,children:()=>jsx(q.Root,{value:o,onValueChange:t,asChild:!0,children:jsx(g.Column,{gap:2,part:"field-radio-group",children:r})})})}var Er=ye.forwardRef(({label:e,value:t},o)=>jsx(C.Item,{value:t,ref:o,asChild:!0,children:jsx(p,{"backgroundColor:hover":"blue900",borderRadius:"md",outline:"none",part:"field-select-option",px:"3",py:"2",children:jsx(C.ItemText,{asChild:!0,children:jsx(f.Body2,{part:"field-select-option-label",children:e})})})}));function Pt(e){let{field:{onChange:t,value:o},fieldData:{options:i=[],placeholder:r}}=e,n=i.map(({label:s,value:a})=>jsx(Er,{value:a,label:s},a));return jsx(V,{...e,children:()=>jsxs(C.Root,{value:o,onValueChange:t,children:[jsx(C.Trigger,{asChild:!0,children:jsxs(f.Body2,{...oe,alignItems:"center",display:"flex",justifyContent:"space-between",part:"field-select",children:[jsx(C.Value,{placeholder:r??"Select one"}),jsx(C.Icon,{children:jsx(p,{as:ChevronDownIcon$1,color:"gray100",display:"block",height:"24px",part:"field-select-icon",width:"24px"})})]})}),jsx(C.Portal,{children:jsx(C.Content,{position:"popper",sideOffset:4,asChild:!0,children:jsx(p,{...oe,p:"1",part:"field-select-options",width:"var(--radix-popper-anchor-width)",children:jsx(C.Viewport,{children:n})})})})]})})}function St(e){return jsx(V,{...e,children:t=>jsx(f.Body2,{as:"input",part:"field-text",type:"text",...t})})}function Tt(e){return jsx(V,{...e,children:t=>jsx(f.Body2,{as:"textarea",part:"field-textarea",...t})})}var Dr={radio:yt,select:Pt,text:St,textarea:Tt};function Or({fieldTypes:e={},flowId:t,...o}){let i=Object.assign({},Dr,e);return jsx(D,{flowId:t,part:"form",...o,children:r=>jsx(ct,{fieldTypes:i,...r})})}function se(){let e="DOMRect"in globalThis?new DOMRect:{height:0,width:0,x:0,y:0,bottom:0,top:0,right:0,left:0,toJSON:()=>{}},[t,o]=useState(e),[i,r]=useState(null),n=useCallback(s=>{r(s);},[]);return useLayoutEffect(()=>{if(!i)return;let s=()=>{let a=i.getBoundingClientRect();o(a);};return s(),window.addEventListener("resize",s),()=>window.removeEventListener("resize",s)},[i]),{node:i,rect:t,ref:n}}var Wr=keyframes({"0%":{opacity:.5,transform:"scale(0.5)"},"50%":{opacity:0,transform:"scale(1)"},"100%":{opacity:0,transform:"scale(1)"}});function vt({style:e={},part:t="",...o}){return jsxs(p,{part:`dot-wrapper ${t}`,style:{height:"48px",position:"absolute",width:"48px",...e},...o,children:[jsx(p,{backgroundColor:"primary.surface",part:"dot-pulse",css:{animation:`2s ease-out infinite ${Wr}`,borderRadius:"24px",height:"48px",left:0,position:"absolute",top:0,transformOrigin:"center center",width:"48px"}}),jsx(p,{backgroundColor:"primary.surface",part:"dot",style:{borderRadius:"12px",height:"24px",left:"12px",position:"absolute",top:"12px",width:"24px"}})]})}function kt({props:e,alignAttr:t,sideAttr:o}){let i=o??"bottom",r={},n=()=>{if(["after","before"].includes(e.align)){if(t=="start")return "before";if(t=="end")return "after"}return e.align??"after"},s="-24px",a={top:"bottom",right:"left",bottom:"top",left:"right"};r[a[i]]=s;let d=n();return ["before","end"].includes(d)?["top","bottom"].includes(i)?r.right=s:r.bottom=s:["after","start"].includes(d)?["top","bottom"].includes(i)?r.left=s:r.top=s:["top","bottom"].includes(i)?r.left=`calc(50% + ${s})`:r.top=`calc(50% + ${s})`,r}var Et={content:["align","alignOffset","arrowPadding","avoidCollisions","collisionBoundary","collisionPadding","forceMount","hideWhenDetached","onCloseAutoFocus","onEscapeKeyDown","onFocusOutside","onInteractOutside","onOpenAutoFocus","onPointerDownOutside","side","sideOffset","sticky"],root:["defaultOpen","modal","onOpenChange","open"]};function Dt(e,t){let o=Object.fromEntries(Et.content.map(r=>[r,e[r]]).filter(r=>r[1]!==void 0)),i=Object.fromEntries(Et.root.map(r=>[r,e[r]]).filter(r=>r[1]!==void 0));if(o.align=o.align??"after",o.side=o.side??"bottom",["before","after"].includes(o.align)){let r={after:"end",before:"start"},n=(m,h)=>["top","bottom"].includes(h)?m=="after"?"marginLeft":"marginRight":m=="after"?"marginTop":"marginBottom",s=o.alignOffset??0,a=o.style??{},d=o.side??"bottom",u=o.align;o.style={...a,[n(u,d)]:s};let x=["top","bottom"].includes(d)?t.width:t.height;o.alignOffset=(x+s)*-1,o.align=r[u];}return {contentProps:o,rootProps:i}}function S({anchor:e,children:t,className:o,spotlight:i=!1,style:r,...n}){let{node:s,rect:a,ref:d}=se(),{node:u,rect:x,ref:m}=se(),{contentProps:h,rootProps:E}=Dt(n,a),[$,pe]=useState(h.align),[G,de]=useState(h.side),[Be,Ht]=useState(0),[It,Wt]=useState(0);if(s!==null){let A=s.getAttribute("data-align"),re=s.getAttribute("data-side");$!==A&&pe(A),G!==re&&de(re);}let ve=useRef(null);if(useEffect(()=>{let A=document.querySelector(e);A!=null&&(m(A),ve.current=A);},[e]),useEffect(()=>{let{scrollX:A,scrollY:re}=window;Ht(x.left+A),Wt(x.top+re);},[x.left,x.top]),u==null)return null;let ke="0";typeof window<"u"&&(ke=window.getComputedStyle(u).borderRadius);let At=kt({props:n,alignAttr:$,sideAttr:G});return jsxs(M.Root,{defaultOpen:!0,...E,children:[jsx(M.Anchor,{virtualRef:ve}),jsx(M.Portal,{children:jsxs("div",{className:o,css:{bottom:0,left:0,position:"absolute",right:0,top:0,zIndex:9999,pointerEvents:"none"},children:[i&&jsx(p,{part:"tooltip-spotlight",position:"absolute",style:{borderRadius:ke,boxShadow:"0 0 0 20000px rgb(0 0 0 / 0.5)",height:x.height,left:Be,top:It,width:x.width}}),jsx(M.Content,{asChild:!0,...h,ref:d,children:jsxs(c,{boxShadow:"md",part:"tooltip",position:"relative",css:{maxWidth:"360px",pointerEvents:"auto",...r},children:[jsx(vt,{style:At}),t]})})]})})]})}S.Close=e=>jsx(M.Close,{"aria-label":"Close",asChild:!0,children:jsx(b.Plain,{css:{top:"12px",right:"4px"},part:"close",position:"absolute",...e,children:jsx(XMarkIcon,{height:"24",fill:"currentColor"})})});S.Media=({src:e,...t})=>e==null?null:jsx(j,{borderRadius:"md md 0 0",borderWidth:"0",css:{aspectRatio:"2",objectFit:"cover"},margin:"-5 -5 0",src:e,...t});S.Primary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Primary,{title:t,onClick:e,...o});S.Progress=({children:e,...t})=>e==null?null:jsx(f.H4,{part:"progress",...t,children:e});S.Secondary=({onClick:e,title:t,...o})=>t==null?null:jsx(b.Secondary,{title:t,onClick:e,...o});S.Subtitle=({children:e,...t})=>e==null?null:jsx(f.Body2,{part:"subtitle",...t,children:e});S.Title=({children:e,...t})=>e==null?null:jsx(f.H4,{part:"title",...t,children:e});function Mt({dismissible:e=!0,flow:t,onDismiss:o,onPrimary:i,onSecondary:r,step:n,...s}){let{handleDismiss:a}=_(t,{onDismiss:o}),{handlePrimary:d,handleSecondary:u}=Z(n,{onPrimary:i,onSecondary:r});return jsxs(S,{anchor:n.selector,onOpenAutoFocus:x=>x.preventDefault(),onPointerDownOutside:x=>x.preventDefault(),onInteractOutside:x=>x.preventDefault(),...s,children:[e&&jsx(S.Close,{onClick:a}),jsx(S.Media,{src:n.videoUri??n.imageUri,type:n.videoUri?"video":"image"}),jsxs(g.Column,{gap:1,part:"tooltip-header",children:[jsx(S.Title,{children:n.title}),jsx(S.Subtitle,{color:"gray500",children:n.subtitle})]}),jsxs(g.Row,{alignItems:"center",gap:3,justifyContent:"flex-end",part:"tooltip-footer",children:[jsx(S.Progress,{marginRight:"auto",transform:"translateY(1px)",children:`${t.getNumberOfCompletedSteps()+1}/${t.getNumberOfAvailableSteps()}`}),jsx(S.Secondary,{title:n.secondaryButtonTitle,onClick:u}),jsx(S.Primary,{title:n.primaryButtonTitle,onClick:d})]})]},n.id)}function _r({flowId:e,onComplete:t,variables:o,...i}){let{flow:r}=Q(e,{variables:o});_(r,{onComplete:t});let{isCurrentModal:n,removeModal:s}=ee(r);if(useEffect(()=>{!(r!=null&&r.isVisible)&&n&&s();},[r==null?void 0:r.isVisible,n]),r==null||r.isVisible===!1||!n)return null;r.start();let a=r.getCurrentStep();return a==null||a.start(),jsx(Mt,{step:a,flow:r,...i})}function Kr(){let{frigade:e}=useContext(B);return {frigade:e,isLoading:!(e!=null&&e.isReady())}}function Ur(){let{userId:e,frigade:t}=useContext(B);async function o(r){await t.identify(e,r);}async function i(r,n){await t.track(r,n);}return {userId:e,addProperties:o,track:i}}function Jr(){let{groupId:e,frigade:t}=useContext(B);async function o(r){if(!e){console.error("No Group ID is set. Cannot set properties without a Group ID.");return}await t.group(e,r);}async function i(r,n){await t.track(r,n);}return {groupId:e,addProperties:o,track:i}}
|
|
20
40
|
|
|
21
|
-
export {
|
|
41
|
+
export { ir as Announcement, sr as Banner, p as Box, b as Button, c as Card, dt as Checklist, g as Flex, Or as Form, $o as Provider, f as Text, S as Tooltip, _r as Tour, ue as themeVariables, se as useBoundingClientRect, Q as useFlow, _ as useFlowHandlers, Kr as useFrigade, Jr as useGroup, ee as useModal, Z as useStepHandlers, Ur as useUser };
|
|
22
42
|
//# sourceMappingURL=out.js.map
|
|
23
43
|
//# sourceMappingURL=index.js.map
|