@windstream/react-shared-components 0.0.37 → 0.0.38
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/contentful/index.d.ts +9 -29
- package/dist/contentful/index.esm.js +1 -1
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +1 -1
- package/dist/contentful/index.js.map +1 -1
- package/dist/core.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/components/accordion/index.tsx +49 -49
- package/src/components/alert-card/types.ts +9 -9
- package/src/components/brand-button/index.tsx +93 -93
- package/src/components/button/index.tsx +27 -27
- package/src/components/button/types.ts +14 -14
- package/src/components/checkbox/index.tsx +197 -197
- package/src/components/collapse/index.tsx +46 -46
- package/src/components/image/types.ts +33 -33
- package/src/components/input/index.tsx +6 -6
- package/src/components/link/index.tsx +97 -97
- package/src/components/link/types.ts +25 -25
- package/src/components/list/index.tsx +88 -88
- package/src/components/list/list-item/index.tsx +38 -38
- package/src/components/list/list-item/types.ts +13 -13
- package/src/components/list/types.ts +29 -29
- package/src/components/material-icon/index.tsx +44 -44
- package/src/components/material-icon/types.ts +31 -31
- package/src/components/modal/index.tsx +164 -164
- package/src/components/see-more/index.tsx +44 -44
- package/src/components/select/index.tsx +150 -150
- package/src/components/skeleton/index.tsx +61 -61
- package/src/components/text/index.tsx +25 -25
- package/src/components/text/types.ts +45 -45
- package/src/contentful/blocks/accordion/Accordion.stories.tsx +29 -29
- package/src/contentful/blocks/accordion/index.tsx +52 -52
- package/src/contentful/blocks/accordion/types.ts +17 -17
- package/src/contentful/blocks/button/index.tsx +5 -0
- package/src/contentful/blocks/button/types.ts +1 -0
- package/src/contentful/blocks/callout/Callout.stories.tsx +1 -1
- package/src/contentful/blocks/callout/index.tsx +15 -52
- package/src/contentful/blocks/callout/types.ts +1 -14
- package/src/contentful/blocks/find-kinetic/FindKinetic.stories.tsx +23 -23
- package/src/contentful/blocks/find-kinetic/index.tsx +80 -80
- package/src/contentful/blocks/find-kinetic/types.ts +18 -18
- package/src/contentful/blocks/footer/index.tsx +79 -79
- package/src/contentful/blocks/image-promo-bar/index.tsx +154 -154
- package/src/contentful/blocks/navigation/index.tsx +1 -2
- package/src/contentful/blocks/navigation/link-groups.tsx/index.tsx +64 -62
- package/src/contentful/blocks/primary-hero/index.tsx +163 -64
- package/src/contentful/blocks/primary-hero/types.ts +1 -0
- package/src/contentful/index.ts +45 -48
- package/src/hooks/use-body-scroll-lock.ts +34 -34
- package/src/setupTests.ts +46 -46
- package/src/contentful/blocks/cards/simple-card/index.tsx +0 -45
- package/src/contentful/blocks/cards/simple-card/types.ts +0 -11
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React$1
|
|
1
|
+
import React$1 from 'react';
|
|
2
2
|
|
|
3
3
|
type AccordionProps = {
|
|
4
4
|
title: string;
|
|
@@ -13,22 +13,11 @@ type AccordionProps = {
|
|
|
13
13
|
|
|
14
14
|
declare const Accordion: React$1.FC<AccordionProps>;
|
|
15
15
|
|
|
16
|
-
type CalloutProps = {
|
|
17
|
-
title?: string;
|
|
18
|
-
enableHeading?: boolean;
|
|
19
|
-
subtitle?: string;
|
|
20
|
-
applyBoxShadow?: boolean;
|
|
21
|
-
cardStackingMobile?: boolean;
|
|
22
|
-
bottomText?: string;
|
|
23
|
-
color?: "dark" | "light";
|
|
24
|
-
cardsWidth?: string;
|
|
25
|
-
maxCardsPerRow?: number;
|
|
26
|
-
noGutter?: boolean;
|
|
27
|
-
items: any[];
|
|
28
|
-
maxWidth?: boolean;
|
|
29
|
-
};
|
|
16
|
+
type CalloutProps = {};
|
|
30
17
|
|
|
31
|
-
declare const Callout: React
|
|
18
|
+
declare const Callout: React.FC<{
|
|
19
|
+
fields: CalloutProps;
|
|
20
|
+
}>;
|
|
32
21
|
|
|
33
22
|
type CardsProps = {};
|
|
34
23
|
|
|
@@ -36,17 +25,6 @@ declare const Cards: React.FC<{
|
|
|
36
25
|
fields: CardsProps;
|
|
37
26
|
}>;
|
|
38
27
|
|
|
39
|
-
type Item = {
|
|
40
|
-
title?: string;
|
|
41
|
-
image?: string;
|
|
42
|
-
BodyComponent?: ComponentType;
|
|
43
|
-
};
|
|
44
|
-
type SimpleCardsProps = {
|
|
45
|
-
items: Item[];
|
|
46
|
-
};
|
|
47
|
-
|
|
48
|
-
declare const SimpleCards: React$1.FC<SimpleCardsProps>;
|
|
49
|
-
|
|
50
28
|
type CarouselProps = {};
|
|
51
29
|
|
|
52
30
|
declare const Carousel: React.FC<{
|
|
@@ -160,6 +138,7 @@ type PrimaryHeroProps = {
|
|
|
160
138
|
badgeImage?: string;
|
|
161
139
|
textColor?: string;
|
|
162
140
|
maxWidth?: boolean;
|
|
141
|
+
checkPlansJSX?: React.ReactNode;
|
|
163
142
|
};
|
|
164
143
|
|
|
165
144
|
declare const PrimaryHero: React$1.FC<PrimaryHeroProps>;
|
|
@@ -186,6 +165,7 @@ type ButtonProps = {
|
|
|
186
165
|
clickToOpen: string;
|
|
187
166
|
tabmodalNameToOpen: string;
|
|
188
167
|
preDefinedFunctionExecution: string;
|
|
168
|
+
checkPlansJSX?: React.ReactNode;
|
|
189
169
|
linkClassName?: string;
|
|
190
170
|
linkVariant?: "unstyled" | "default";
|
|
191
171
|
fullWidth?: boolean;
|
|
@@ -245,5 +225,5 @@ type FindKineticProps = {
|
|
|
245
225
|
|
|
246
226
|
declare const FindKinetic: React$1.FC<FindKineticProps>;
|
|
247
227
|
|
|
248
|
-
export { Accordion, Button, Callout, Cards, Carousel, CtaCallout, FindKinetic, FloatingBanner, Footer, ImagePromoBar, Modal, Navigation, PrimaryHero, ShapeBackgroundWrapper,
|
|
249
|
-
export type { AccordionProps, ButtonProps, CalloutProps, CardsProps, CarouselProps, CtaCalloutProps, FindKineticProps, FloatingBannerProps, FooterProps, ImagePromoBarProps, ModalProps, NavigationProps, PrimaryHeroProps, ShapeBackgroundWrapperProps,
|
|
228
|
+
export { Accordion, Button, Callout, Cards, Carousel, CtaCallout, FindKinetic, FloatingBanner, Footer, ImagePromoBar, Modal, Navigation, PrimaryHero, ShapeBackgroundWrapper, Text };
|
|
229
|
+
export type { AccordionProps, ButtonProps, CalloutProps, CardsProps, CarouselProps, CtaCalloutProps, FindKineticProps, FloatingBannerProps, FooterProps, ImagePromoBarProps, ModalProps, NavigationProps, PrimaryHeroProps, ShapeBackgroundWrapperProps, TextProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
|
-
import{jsx as e,jsxs as t,Fragment as r}from"react/jsx-runtime";import l,{forwardRef as o,useRef as a,useState as n,useEffect as i}from"react";import s from"next/image";function d(e){var t,r,l="";if("string"==typeof e||"number"==typeof e)l+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(r=d(e[t]))&&(l&&(l+=" "),l+=r)}else for(r in e)e[r]&&(l&&(l+=" "),l+=r);return l}const c=e=>{const t=u(e),{conflictingClassGroups:r,conflictingClassGroupModifiers:l}=e;return{getClassGroupId:e=>{const r=e.split("-");return""===r[0]&&1!==r.length&&r.shift(),m(r,t)||h(e)},getConflictingClassGroupIds:(e,t)=>{const o=r[e]||[];return t&&l[e]?[...o,...l[e]]:o}}},m=(e,t)=>{if(0===e.length)return t.classGroupId;const r=e[0],l=t.nextPart.get(r),o=l?m(e.slice(1),l):void 0;if(o)return o;if(0===t.validators.length)return;const a=e.join("-");return t.validators.find(({validator:e})=>e(a))?.classGroupId},p=/^\[(.+)\]$/,h=e=>{if(p.test(e)){const t=p.exec(e)[1],r=t?.substring(0,t.indexOf(":"));if(r)return"arbitrary.."+r}},u=e=>{const{theme:t,classGroups:r}=e,l={nextPart:new Map,validators:[]};for(const e in r)g(r[e],l,e,t);return l},g=(e,t,r,l)=>{e.forEach(e=>{if("string"==typeof e){return void((""===e?t:b(t,e)).classGroupId=r)}if("function"==typeof e)return f(e)?void g(e(l),t,r,l):void t.validators.push({validator:e,classGroupId:r});Object.entries(e).forEach(([e,o])=>{g(o,b(t,e),r,l)})})},b=(e,t)=>{let r=e;return t.split("-").forEach(e=>{r.nextPart.has(e)||r.nextPart.set(e,{nextPart:new Map,validators:[]}),r=r.nextPart.get(e)}),r},f=e=>e.isThemeGetter,x=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,r=new Map,l=new Map;const o=(o,a)=>{r.set(o,a),t++,t>e&&(t=0,l=r,r=new Map)};return{get(e){let t=r.get(e);return void 0!==t?t:void 0!==(t=l.get(e))?(o(e,t),t):void 0},set(e,t){r.has(e)?r.set(e,t):o(e,t)}}},v=e=>{const{prefix:t,experimentalParseClassName:r}=e;let l=e=>{const t=[];let r,l=0,o=0,a=0;for(let n=0;n<e.length;n++){let i=e[n];if(0===l&&0===o){if(":"===i){t.push(e.slice(a,n)),a=n+1;continue}if("/"===i){r=n;continue}}"["===i?l++:"]"===i?l--:"("===i?o++:")"===i&&o--}const n=0===t.length?e:e.substring(a),i=y(n);return{modifiers:t,hasImportantModifier:i!==n,baseClassName:i,maybePostfixModifierPosition:r&&r>a?r-a:void 0}};if(t){const e=t+":",r=l;l=t=>t.startsWith(e)?r(t.substring(e.length)):{isExternal:!0,modifiers:[],hasImportantModifier:!1,baseClassName:t,maybePostfixModifierPosition:void 0}}if(r){const e=l;l=t=>r({className:t,parseClassName:e})}return l},y=e=>e.endsWith("!")?e.substring(0,e.length-1):e.startsWith("!")?e.substring(1):e,w=e=>{const t=Object.fromEntries(e.orderSensitiveModifiers.map(e=>[e,!0]));return e=>{if(e.length<=1)return e;const r=[];let l=[];return e.forEach(e=>{"["===e[0]||t[e]?(r.push(...l.sort(),e),l=[]):l.push(e)}),r.push(...l.sort()),r}},k=/\s+/;function N(){let e,t,r=0,l="";for(;r<arguments.length;)(e=arguments[r++])&&(t=C(e))&&(l&&(l+=" "),l+=t);return l}const C=e=>{if("string"==typeof e)return e;let t,r="";for(let l=0;l<e.length;l++)e[l]&&(t=C(e[l]))&&(r&&(r+=" "),r+=t);return r};function z(e,...t){let r,l,o,a=function(i){const s=t.reduce((e,t)=>t(e),e());return r=(e=>({cache:x(e.cacheSize),parseClassName:v(e),sortModifiers:w(e),...c(e)}))(s),l=r.cache.get,o=r.cache.set,a=n,n(i)};function n(e){const t=l(e);if(t)return t;const a=((e,t)=>{const{parseClassName:r,getClassGroupId:l,getConflictingClassGroupIds:o,sortModifiers:a}=t,n=[],i=e.trim().split(k);let s="";for(let e=i.length-1;e>=0;e-=1){const t=i[e],{isExternal:d,modifiers:c,hasImportantModifier:m,baseClassName:p,maybePostfixModifierPosition:h}=r(t);if(d){s=t+(s.length>0?" "+s:s);continue}let u=!!h,g=l(u?p.substring(0,h):p);if(!g){if(!u){s=t+(s.length>0?" "+s:s);continue}if(g=l(p),!g){s=t+(s.length>0?" "+s:s);continue}u=!1}const b=a(c).join(":"),f=m?b+"!":b,x=f+g;if(n.includes(x))continue;n.push(x);const v=o(g,u);for(let e=0;e<v.length;++e){const t=v[e];n.push(f+t)}s=t+(s.length>0?" "+s:s)}return s})(e,r);return o(e,a),a}return function(){return a(N.apply(null,arguments))}}const $=e=>{const t=t=>t[e]||[];return t.isThemeGetter=!0,t},M=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,B=/^\((?:(\w[\w-]*):)?(.+)\)$/i,G=/^\d+\/\d+$/,F=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,I=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,j=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,E=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,D=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,P=e=>G.test(e),S=e=>!!e&&!Number.isNaN(Number(e)),W=e=>!!e&&Number.isInteger(Number(e)),L=e=>e.endsWith("%")&&S(e.slice(0,-1)),_=e=>F.test(e),A=()=>!0,T=e=>I.test(e)&&!j.test(e),H=()=>!1,V=e=>E.test(e),q=e=>D.test(e),O=e=>!Y(e)&&!Z(e),R=e=>ne(e,ce,H),Y=e=>M.test(e),J=e=>ne(e,me,T),K=e=>ne(e,pe,S),Q=e=>ne(e,se,H),U=e=>ne(e,de,q),X=e=>ne(e,ue,V),Z=e=>B.test(e),ee=e=>ie(e,me),te=e=>ie(e,he),re=e=>ie(e,se),le=e=>ie(e,ce),oe=e=>ie(e,de),ae=e=>ie(e,ue,!0),ne=(e,t,r)=>{const l=M.exec(e);return!!l&&(l[1]?t(l[1]):r(l[2]))},ie=(e,t,r=!1)=>{const l=B.exec(e);return!!l&&(l[1]?t(l[1]):r)},se=e=>"position"===e||"percentage"===e,de=e=>"image"===e||"url"===e,ce=e=>"length"===e||"size"===e||"bg-size"===e,me=e=>"length"===e,pe=e=>"number"===e,he=e=>"family-name"===e,ue=e=>"shadow"===e,ge=()=>{const e=$("color"),t=$("font"),r=$("text"),l=$("font-weight"),o=$("tracking"),a=$("leading"),n=$("breakpoint"),i=$("container"),s=$("spacing"),d=$("radius"),c=$("shadow"),m=$("inset-shadow"),p=$("text-shadow"),h=$("drop-shadow"),u=$("blur"),g=$("perspective"),b=$("aspect"),f=$("ease"),x=$("animate"),v=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom",Z,Y],y=()=>[Z,Y,s],w=()=>[P,"full","auto",...y()],k=()=>[W,"none","subgrid",Z,Y],N=()=>["auto",{span:["full",W,Z,Y]},W,Z,Y],C=()=>[W,"auto",Z,Y],z=()=>["auto","min","max","fr",Z,Y],M=()=>["auto",...y()],B=()=>[P,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...y()],G=()=>[e,Z,Y],F=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom",re,Q,{position:[Z,Y]}],I=()=>["auto","cover","contain",le,R,{size:[Z,Y]}],j=()=>[L,ee,J],E=()=>["","none","full",d,Z,Y],D=()=>["",S,ee,J],T=()=>[S,L,re,Q],H=()=>["","none",u,Z,Y],V=()=>["none",S,Z,Y],q=()=>["none",S,Z,Y],ne=()=>[S,Z,Y],ie=()=>[P,"full",...y()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[_],breakpoint:[_],color:[A],container:[_],"drop-shadow":[_],ease:["in","out","in-out"],font:[O],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[_],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[_],shadow:[_],spacing:["px",S],text:[_],"text-shadow":[_],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",P,Y,Z,b]}],container:["container"],columns:[{columns:[S,Y,Z,i]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:v()}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:w()}],"inset-x":[{"inset-x":w()}],"inset-y":[{"inset-y":w()}],start:[{start:w()}],end:[{end:w()}],top:[{top:w()}],right:[{right:w()}],bottom:[{bottom:w()}],left:[{left:w()}],visibility:["visible","invisible","collapse"],z:[{z:[W,"auto",Z,Y]}],basis:[{basis:[P,"full","auto",i,...y()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[S,P,"auto","initial","none",Y]}],grow:[{grow:["",S,Z,Y]}],shrink:[{shrink:["",S,Z,Y]}],order:[{order:[W,"first","last","none",Z,Y]}],"grid-cols":[{"grid-cols":k()}],"col-start-end":[{col:N()}],"col-start":[{"col-start":C()}],"col-end":[{"col-end":C()}],"grid-rows":[{"grid-rows":k()}],"row-start-end":[{row:N()}],"row-start":[{"row-start":C()}],"row-end":[{"row-end":C()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":z()}],"auto-rows":[{"auto-rows":z()}],gap:[{gap:y()}],"gap-x":[{"gap-x":y()}],"gap-y":[{"gap-y":y()}],"justify-content":[{justify:["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe","normal"]}],"justify-items":[{"justify-items":["start","end","center","stretch","center-safe","end-safe","normal"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch","center-safe","end-safe"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"]}],"align-items":[{items:["start","end","center","stretch","center-safe","end-safe",{baseline:["","last"]}]}],"align-self":[{self:["auto","start","end","center","stretch","center-safe","end-safe",{baseline:["","last"]}]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"]}],"place-items":[{"place-items":["start","end","center","stretch","center-safe","end-safe","baseline"]}],"place-self":[{"place-self":["auto","start","end","center","stretch","center-safe","end-safe"]}],p:[{p:y()}],px:[{px:y()}],py:[{py:y()}],ps:[{ps:y()}],pe:[{pe:y()}],pt:[{pt:y()}],pr:[{pr:y()}],pb:[{pb:y()}],pl:[{pl:y()}],m:[{m:M()}],mx:[{mx:M()}],my:[{my:M()}],ms:[{ms:M()}],me:[{me:M()}],mt:[{mt:M()}],mr:[{mr:M()}],mb:[{mb:M()}],ml:[{ml:M()}],"space-x":[{"space-x":y()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":y()}],"space-y-reverse":["space-y-reverse"],size:[{size:B()}],w:[{w:[i,"screen",...B()]}],"min-w":[{"min-w":[i,"screen","none",...B()]}],"max-w":[{"max-w":[i,"screen","none","prose",{screen:[n]},...B()]}],h:[{h:["screen","lh",...B()]}],"min-h":[{"min-h":["screen","lh","none",...B()]}],"max-h":[{"max-h":["screen","lh",...B()]}],"font-size":[{text:["base",r,ee,J]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[l,Z,K]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",L,Y]}],"font-family":[{font:[te,Y,t]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[o,Z,Y]}],"line-clamp":[{"line-clamp":[S,"none",Z,K]}],leading:[{leading:[a,...y()]}],"list-image":[{"list-image":["none",Z,Y]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",Z,Y]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:G()}],"text-color":[{text:G()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","wavy"]}],"text-decoration-thickness":[{decoration:[S,"from-font","auto",Z,J]}],"text-decoration-color":[{decoration:G()}],"underline-offset":[{"underline-offset":[S,"auto",Z,Y]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:y()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",Z,Y]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",Z,Y]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:F()}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","space","round"]}]}],"bg-size":[{bg:I()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},W,Z,Y],radial:["",Z,Y],conic:[W,Z,Y]},oe,U]}],"bg-color":[{bg:G()}],"gradient-from-pos":[{from:j()}],"gradient-via-pos":[{via:j()}],"gradient-to-pos":[{to:j()}],"gradient-from":[{from:G()}],"gradient-via":[{via:G()}],"gradient-to":[{to:G()}],rounded:[{rounded:E()}],"rounded-s":[{"rounded-s":E()}],"rounded-e":[{"rounded-e":E()}],"rounded-t":[{"rounded-t":E()}],"rounded-r":[{"rounded-r":E()}],"rounded-b":[{"rounded-b":E()}],"rounded-l":[{"rounded-l":E()}],"rounded-ss":[{"rounded-ss":E()}],"rounded-se":[{"rounded-se":E()}],"rounded-ee":[{"rounded-ee":E()}],"rounded-es":[{"rounded-es":E()}],"rounded-tl":[{"rounded-tl":E()}],"rounded-tr":[{"rounded-tr":E()}],"rounded-br":[{"rounded-br":E()}],"rounded-bl":[{"rounded-bl":E()}],"border-w":[{border:D()}],"border-w-x":[{"border-x":D()}],"border-w-y":[{"border-y":D()}],"border-w-s":[{"border-s":D()}],"border-w-e":[{"border-e":D()}],"border-w-t":[{"border-t":D()}],"border-w-r":[{"border-r":D()}],"border-w-b":[{"border-b":D()}],"border-w-l":[{"border-l":D()}],"divide-x":[{"divide-x":D()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":D()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:["solid","dashed","dotted","double","hidden","none"]}],"divide-style":[{divide:["solid","dashed","dotted","double","hidden","none"]}],"border-color":[{border:G()}],"border-color-x":[{"border-x":G()}],"border-color-y":[{"border-y":G()}],"border-color-s":[{"border-s":G()}],"border-color-e":[{"border-e":G()}],"border-color-t":[{"border-t":G()}],"border-color-r":[{"border-r":G()}],"border-color-b":[{"border-b":G()}],"border-color-l":[{"border-l":G()}],"divide-color":[{divide:G()}],"outline-style":[{outline:["solid","dashed","dotted","double","none","hidden"]}],"outline-offset":[{"outline-offset":[S,Z,Y]}],"outline-w":[{outline:["",S,ee,J]}],"outline-color":[{outline:G()}],shadow:[{shadow:["","none",c,ae,X]}],"shadow-color":[{shadow:G()}],"inset-shadow":[{"inset-shadow":["none",m,ae,X]}],"inset-shadow-color":[{"inset-shadow":G()}],"ring-w":[{ring:D()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:G()}],"ring-offset-w":[{"ring-offset":[S,J]}],"ring-offset-color":[{"ring-offset":G()}],"inset-ring-w":[{"inset-ring":D()}],"inset-ring-color":[{"inset-ring":G()}],"text-shadow":[{"text-shadow":["none",p,ae,X]}],"text-shadow-color":[{"text-shadow":G()}],opacity:[{opacity:[S,Z,Y]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[S]}],"mask-image-linear-from-pos":[{"mask-linear-from":T()}],"mask-image-linear-to-pos":[{"mask-linear-to":T()}],"mask-image-linear-from-color":[{"mask-linear-from":G()}],"mask-image-linear-to-color":[{"mask-linear-to":G()}],"mask-image-t-from-pos":[{"mask-t-from":T()}],"mask-image-t-to-pos":[{"mask-t-to":T()}],"mask-image-t-from-color":[{"mask-t-from":G()}],"mask-image-t-to-color":[{"mask-t-to":G()}],"mask-image-r-from-pos":[{"mask-r-from":T()}],"mask-image-r-to-pos":[{"mask-r-to":T()}],"mask-image-r-from-color":[{"mask-r-from":G()}],"mask-image-r-to-color":[{"mask-r-to":G()}],"mask-image-b-from-pos":[{"mask-b-from":T()}],"mask-image-b-to-pos":[{"mask-b-to":T()}],"mask-image-b-from-color":[{"mask-b-from":G()}],"mask-image-b-to-color":[{"mask-b-to":G()}],"mask-image-l-from-pos":[{"mask-l-from":T()}],"mask-image-l-to-pos":[{"mask-l-to":T()}],"mask-image-l-from-color":[{"mask-l-from":G()}],"mask-image-l-to-color":[{"mask-l-to":G()}],"mask-image-x-from-pos":[{"mask-x-from":T()}],"mask-image-x-to-pos":[{"mask-x-to":T()}],"mask-image-x-from-color":[{"mask-x-from":G()}],"mask-image-x-to-color":[{"mask-x-to":G()}],"mask-image-y-from-pos":[{"mask-y-from":T()}],"mask-image-y-to-pos":[{"mask-y-to":T()}],"mask-image-y-from-color":[{"mask-y-from":G()}],"mask-image-y-to-color":[{"mask-y-to":G()}],"mask-image-radial":[{"mask-radial":[Z,Y]}],"mask-image-radial-from-pos":[{"mask-radial-from":T()}],"mask-image-radial-to-pos":[{"mask-radial-to":T()}],"mask-image-radial-from-color":[{"mask-radial-from":G()}],"mask-image-radial-to-color":[{"mask-radial-to":G()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"]}],"mask-image-conic-pos":[{"mask-conic":[S]}],"mask-image-conic-from-pos":[{"mask-conic-from":T()}],"mask-image-conic-to-pos":[{"mask-conic-to":T()}],"mask-image-conic-from-color":[{"mask-conic-from":G()}],"mask-image-conic-to-color":[{"mask-conic-to":G()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:F()}],"mask-repeat":[{mask:["no-repeat",{repeat:["","x","y","space","round"]}]}],"mask-size":[{mask:I()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",Z,Y]}],filter:[{filter:["","none",Z,Y]}],blur:[{blur:H()}],brightness:[{brightness:[S,Z,Y]}],contrast:[{contrast:[S,Z,Y]}],"drop-shadow":[{"drop-shadow":["","none",h,ae,X]}],"drop-shadow-color":[{"drop-shadow":G()}],grayscale:[{grayscale:["",S,Z,Y]}],"hue-rotate":[{"hue-rotate":[S,Z,Y]}],invert:[{invert:["",S,Z,Y]}],saturate:[{saturate:[S,Z,Y]}],sepia:[{sepia:["",S,Z,Y]}],"backdrop-filter":[{"backdrop-filter":["","none",Z,Y]}],"backdrop-blur":[{"backdrop-blur":H()}],"backdrop-brightness":[{"backdrop-brightness":[S,Z,Y]}],"backdrop-contrast":[{"backdrop-contrast":[S,Z,Y]}],"backdrop-grayscale":[{"backdrop-grayscale":["",S,Z,Y]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[S,Z,Y]}],"backdrop-invert":[{"backdrop-invert":["",S,Z,Y]}],"backdrop-opacity":[{"backdrop-opacity":[S,Z,Y]}],"backdrop-saturate":[{"backdrop-saturate":[S,Z,Y]}],"backdrop-sepia":[{"backdrop-sepia":["",S,Z,Y]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":y()}],"border-spacing-x":[{"border-spacing-x":y()}],"border-spacing-y":[{"border-spacing-y":y()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",Z,Y]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[S,"initial",Z,Y]}],ease:[{ease:["linear","initial",f,Z,Y]}],delay:[{delay:[S,Z,Y]}],animate:[{animate:["none",x,Z,Y]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[g,Z,Y]}],"perspective-origin":[{"perspective-origin":v()}],rotate:[{rotate:V()}],"rotate-x":[{"rotate-x":V()}],"rotate-y":[{"rotate-y":V()}],"rotate-z":[{"rotate-z":V()}],scale:[{scale:q()}],"scale-x":[{"scale-x":q()}],"scale-y":[{"scale-y":q()}],"scale-z":[{"scale-z":q()}],"scale-3d":["scale-3d"],skew:[{skew:ne()}],"skew-x":[{"skew-x":ne()}],"skew-y":[{"skew-y":ne()}],transform:[{transform:[Z,Y,"","none","gpu","cpu"]}],"transform-origin":[{origin:v()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:ie()}],"translate-x":[{"translate-x":ie()}],"translate-y":[{"translate-y":ie()}],"translate-z":[{"translate-z":ie()}],"translate-none":["translate-none"],accent:[{accent:G()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:G()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",Z,Y]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":y()}],"scroll-mx":[{"scroll-mx":y()}],"scroll-my":[{"scroll-my":y()}],"scroll-ms":[{"scroll-ms":y()}],"scroll-me":[{"scroll-me":y()}],"scroll-mt":[{"scroll-mt":y()}],"scroll-mr":[{"scroll-mr":y()}],"scroll-mb":[{"scroll-mb":y()}],"scroll-ml":[{"scroll-ml":y()}],"scroll-p":[{"scroll-p":y()}],"scroll-px":[{"scroll-px":y()}],"scroll-py":[{"scroll-py":y()}],"scroll-ps":[{"scroll-ps":y()}],"scroll-pe":[{"scroll-pe":y()}],"scroll-pt":[{"scroll-pt":y()}],"scroll-pr":[{"scroll-pr":y()}],"scroll-pb":[{"scroll-pb":y()}],"scroll-pl":[{"scroll-pl":y()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",Z,Y]}],fill:[{fill:["none",...G()]}],"stroke-w":[{stroke:[S,ee,J,K]}],stroke:[{stroke:["none",...G()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},be=(e,t,r)=>{void 0!==r&&(e[t]=r)},fe=(e,t)=>{if(t)for(const r in t)be(e,r,t[r])},xe=(e,t)=>{if(t)for(const r in t)ve(e,t,r)},ve=(e,t,r)=>{const l=t[r];void 0!==l&&(e[r]=e[r]?e[r].concat(l):l)},ye=((e,...t)=>"function"==typeof e?z(ge,e,...t):z(()=>((e,{cacheSize:t,prefix:r,experimentalParseClassName:l,extend:o={},override:a={}})=>(be(e,"cacheSize",t),be(e,"prefix",r),be(e,"experimentalParseClassName",l),fe(e.theme,a.theme),fe(e.classGroups,a.classGroups),fe(e.conflictingClassGroups,a.conflictingClassGroups),fe(e.conflictingClassGroupModifiers,a.conflictingClassGroupModifiers),be(e,"orderSensitiveModifiers",a.orderSensitiveModifiers),xe(e.theme,o.theme),xe(e.classGroups,o.classGroups),xe(e.conflictingClassGroups,o.conflictingClassGroups),xe(e.conflictingClassGroupModifiers,o.conflictingClassGroupModifiers),ve(e,o,"orderSensitiveModifiers"),e))(ge(),e),...t))({extend:{classGroups:{"font-variants":["heading1","heading2","heading3","heading4","heading5","heading6","subheading1","subheading2","subheading3","subheading4","subheading5","subheading6","body1","body2","body3","footnote","micro","label1","label2","label3","label4"],"button-sizes":["btn-small","btn-medium","btn-large","btn-x-large"]}}}),we=(...e)=>ye(function(){for(var e,t,r=0,l="",o=arguments.length;r<o;r++)(e=arguments[r])&&(t=d(e))&&(l&&(l+=" "),l+=t);return l}(...e)),ke=o(({children:t,className:r="",style:l,disabled:o,...a},n)=>e("button",{ref:n,className:we(r),style:l,disabled:o,...a,children:t}));ke.displayName="Button";const Ne=t=>{const{open:r,children:l}=t,o=a(null),[s,d]=n(0);return i(()=>{const e=o.current;if(!e)return;const t=()=>{d(r?e.scrollHeight:0)};let l;return t(),r&&(l=new ResizeObserver(()=>t()),l.observe(e)),()=>{l&&l.disconnect()}},[r,l]),e("div",{className:"overflow-hidden transition-all duration-300 ease-in-out",style:{maxHeight:s,opacity:r?1:0},"aria-hidden":!r,children:e("div",{ref:o,children:l})})};Ne.displayName="Collapse";const Ce=({name:t,fill:r=0,opticalSize:l="48dp",weight:o="200",emphasis:a=145,size:n=24,color:i="currentColor",style:s={},className:d,onClick:c,dataTestId:m})=>{const p={fontVariationSettings:`'FILL' ${r}, 'wght' ${o}, 'GRAD' ${a}, 'opsz' ${l.substring(0,2)}`,fontSize:`${n}px`,fontFamily:"'Material Symbols Rounded'",color:i||"currentColor",...s};return e("span",{style:p,className:we("material-symbols-rounded",d),onClick:c,"data-testid":m,children:t})};Ce.displayName="MaterialIcon";const ze=r=>{const{title:l,defaultOpen:o,children:a,containerClassName:i,titleClassName:s,className:d,buttonClassName:c}=r,[m,p]=n(Boolean(o));return t("div",{className:we("rounded-lg border",i),children:[t(ke,{type:"button",className:we("flex w-full items-center justify-between gap-4 rounded-t-lg px-4 py-3 text-left",c),onClick:()=>p(e=>!e),children:[e("span",{className:we("label5",s),children:l}),e(Ce,{name:m?"keyboard_arrow_down":"keyboard_arrow_up",fill:1,size:24})]}),e(Ne,{open:m,children:e("div",{className:we("px-4 py-4",d),children:a})})]})};ze.displayName="Accordion";const $e=o(({children:e,as:t,className:r="",style:o,...a},n)=>{const i=t||"p";return l.createElement(i,{ref:n,className:r,style:o,...a},e)});$e.displayName="Text";const Me=({items:r,title:l,background:o="white",enableHeading:a=!1,maxWidth:n=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[o]} component-container`,children:t("div",{className:(n?"max-w-120 xl:mx-auto":"")+" mx-5 my-8 lg:mx-20 lg:my-18",children:[e("div",{children:e($e,{as:a?"h1":"h2",className:"heading1 text-left lg:text-center",children:l})}),e("div",{className:"question-answer-section mt-10 lg:mt-16",children:null==r?void 0:r.map((t,r)=>e("div",{children:e(ze,{title:t.title,containerClassName:"border-0 border-b-[1px]",children:e($e,{children:t.description})})},`item-${r}`))})]})}),Be=o(({className:t,...r},l)=>e(s,{ref:l,className:we(t),...r}));Be.displayName="NextImage";const Ge=({items:r=[]})=>r.length?e("div",{className:"card-holder grid grid-cols-1 items-stretch gap-5 self-stretch lg:auto-cols-fr lg:grid-flow-col lg:gap-6 lg:overflow-x-auto",children:r.map((r,l)=>{var o;return e("div",{className:"callout-card h-full p-6 lg:p-8",children:t("div",{className:"card-template flex flex-col gap-6 lg:items-start lg:gap-8",children:[e("div",{className:"card-header",children:r.image&&e(Be,{width:88,height:88,src:r.image,alt:null!==(o=r.title)&&void 0!==o?o:"card-icon"})}),t("div",{className:"card-body flex flex-col gap-3",children:[r.title&&e($e,{as:"h3",className:"heading6",children:r.title}),r.BodyComponent&&e($e,{as:"div",className:"body1",children:e(r.BodyComponent,{})})]})]})},`card-${l}`)})}):null,Fe=({title:r,items:l,enableHeading:o=!1,subtitle:a,color:n="dark",maxWidth:i=!0})=>e("div",{className:"component-container",children:e("div",{className:`mx-5 mb-5 mt-12 ${i?"max-w-120 xl:mx-auto":""} ${"dark"==n?"text-text":"text-white"}`,children:t("div",{className:"callout-container flex flex-col gap-8",children:[t("div",{className:"title-holder",children:[r&&e($e,{as:o?"h1":"h2",className:"heading2 md:heading1 md:text-center",children:r}),a&&e($e,{as:o?"h2":"h3",className:"subheading3 mt-3 md:subheading1 md:text-center",children:a})]}),l&&e(Ge,{items:l})]})})}),Ie=({fields:t})=>e("div",{children:e($e,{children:"Cards"})}),je=({fields:t})=>e("div",{children:e($e,{children:"Carousel"})}),Ee=e=>{let t="";return e.base&&(t="x-large"===e.base?"label3 ":"label4 "),e.md&&(t+="x-large"===e.md?"md:label3 ":"md:label4 "),e.lg&&(t+="x-large"===e.lg?"lg:label3 ":"lg:label4 "),t.trim()},De=o(({variant:r="primary_brand",isLoading:l=!1,text:o,label:a,disabled:n,fullWidth:i,size:s={base:"medium"},...d},c)=>{const m=(()=>{const e=we((e=>{let t="";return e.base&&(t=`btn-${e.base} `),e.md&&(t+=`${(e=>{switch(e){case"small":return"md:btn-small";case"medium":return"md:btn-medium";case"large":return"md:btn-large";case"x-large":return"md:btn-x-large"}})(e.md)} `),e.lg&&(t+=`lg:btn-${e.lg} `),t.trim()})(s),"rounded-2xl pl-15 pr-15 inline-flex gap-2 items-center justify-center outline-none focus:ring-2 focus:ring-offset-2 cursor-pointer transition-colors duration-200 align-top",i&&"w-full"),t=we((n||l)&&"cursor-not-allowed",l&&"pl-7",n&&"bg-bg-fill-brand-disabled");return we(e,{primary_brand:"bg-bg-fill-brand text-text-brand-on-bg-fill enabled:hover:bg-bg-fill-brand-hover focus:ring-bg-fill-brand",primary_inverse:"bg-bg-surface-inverse text-text-inverse enabled:hover:bg-bg-fill-inverse-hover focus:ring-bg-surface-inverse",secondary:"border-2 border-border-secondary-on-bg-fill bg-bg text-text focus:ring-bg-surface-inverse"}[r]||"",t)})();let p=`button--${r}`;l&&(p+=" button--loading"),n&&(p+=" button--disabled");return t("button",{ref:c,className:we(`${p} ${m}`),disabled:n||l,...d,children:[l?e(Ce,{name:"progress_activity",className:"animate-spin"}):null,a?t("span",{className:"flex flex-col",children:[e("span",{className:we(Ee(s)),children:a}),o]}):o]})});De.displayName="BrandButton";const Pe=o(({children:t,href:r,className:l="",onClick:o,variant:a="unstyled",style:n,external:i=!1,disabled:s=!1,...d},c)=>{const m=(()=>{if("unstyled"===a)return"";const e={default:"text-text underline"},t=[s?"opacity-60 cursor-not-allowed pointer-events-none":"cursor-pointer"].filter(Boolean).join(" ");return["transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2",e[a]||e.default,t].filter(Boolean).join(" ")})(),p={...d,ref:c,className:we(m,`link--${a}`,s&&"link--disabled",l),style:n,href:s?void 0:r,onClick:e=>{s?e.preventDefault():null==o||o(e)},...i&&!s&&{target:"_blank",rel:"noopener noreferrer"},...s&&{"aria-disabled":!0,tabIndex:-1}};return e("a",{...p,children:t})});Pe.displayName="Link";const Se=({showButtonAs:t,buttonVariant:r,buttonLabel:l,buttonPrefix:o,href:a,target:n,anchorId:i,linkClassName:s,linkVariant:d,fullWidth:c})=>"solid"===t?e(De,{id:i,variant:r,text:l,label:o,fullWidth:c}):"text"===t?e(Pe,{href:a,target:n,variant:d||"default",className:`text-text-brand ${s||""}`,children:l}):null,We=({title:r,subtitle:l,description:o,disclaimer:a,icon:n,cta:i,background:s="navy",color:d="white",enableHeading:c,maxWidth:m=!0})=>e("div",{className:"component-container",children:t("div",{className:"mx-5 my-8 lg:mx-20 lg:my-12 lg:rounded-[40px] xl:mx-auto "+(m?" max-w-120":""),children:[t("div",{className:`flex flex-col rounded-[28px] px-5 py-7 lg:flex-row lg:rounded-[40px] lg:px-16 lg:py-9 ${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[s]} ${{blue:"text-[#07B2E2]",green:"text-[#26B170]",yellow:"text-[#F5FF1E]",purple:"text-[#931D69]",white:"text-white",navy:"text-[#00002D]"}[d]} `,children:[n&&e("div",{className:"floating-banner-icon mb-5 flex justify-center lg:mb-0 lg:items-center",children:e("div",{className:"h-[80px] w-[80px] overflow-hidden",children:e(Be,{width:80,height:80,alt:"icon",src:n})})}),t("div",{className:"flex flex-col justify-center lg:mx-5",children:[r&&e($e,{as:c?"h1":"h2",className:"heading2 mb-3 lg:w-[90%] text-center lg:text-left",children:r}),l&&e($e,{as:"h3",className:"heading3 mb-3 text-center lg:text-left",children:l}),o&&e($e,{as:"div",className:"body1 lg:w-[90%] text-center lg:text-left",children:o})]}),i&&e("div",{className:"mt-5 flex justify-center lg:mt-0 lg:w-[500px] lg:items-center",children:e(Se,{...i})})]}),a&&e("div",{children:e($e,{as:"div",className:"body3 mt-3 text-center",children:a})})]})}),Le=({body:r,links:o,bottomLinks:a,copyrights:n,terms:i,maxWidth:s=!0})=>e("div",{className:"component-container bg-bg-inverse text-white",children:t("div",{className:` ${s?"mx-auto max-w-120":""} px-5 py-8`,children:[e("div",{children:r}),e("div",{className:"my-8 h-[1px] border-t-0 bg-white opacity-100 lg:my-16 dark:opacity-50"}),e("div",{className:"grid-1 grid gap-8 py-8 md:grid-cols-2 lg:grid-cols-4",children:null==o?void 0:o.map((r,o)=>{var a,n;return t(l.Fragment,{children:[e("div",{children:t("div",{className:"site-links-group",children:[e($e,{as:"div",className:"label3",children:null==r?void 0:r.title}),e("ul",{className:"flex flex-col",children:null===(n=null===(a=null==r?void 0:r.items)||void 0===a?void 0:a.items)||void 0===n?void 0:n.map((t,r)=>e("li",{className:"pt-3",children:e(Se,{...t,linkVariant:"unstyled",linkClassName:"text-white body3"})},`site-links-${r}`))})]},`link-group-${o}`)},`footer-link-group-${o}`),e("div",{className:"block h-[1px] border-t-0 bg-white opacity-100 md:hidden dark:opacity-50"})]},`footer-link-group-${o}`)})}),t("div",{className:"pt-8",children:[e("p",{className:"copy-rights",children:n}),t("p",{className:"terms-text footnote text-white",children:["© ",(new Date).getFullYear()," ",i]}),e("ul",{className:"bottom-links list-none",children:null==a?void 0:a.map((t,r)=>e("li",{className:"relative float-left pl-[8px] before:absolute before:left-[3px] before:top-1/2 before:-translate-y-1/2 before:text-[14px] before:content-['•'] first-of-type:pl-0 first-of-type:before:content-['']",children:e(Se,{...t,linkClassName:"footnote text-white",linkVariant:"unstyled"})},`links-${r}`))})]})]})}),_e=o(({children:t,className:r="",variant:l="unstyled",style:o,...a},n)=>{const i=we("unstyled"===l?"":"mb-1 leading-6","list-item",`list-item--${l}`,r);return e("li",{ref:n,className:i,style:o,...a,children:t})});_e.displayName="ListItem";const Ae=o(({type:t="ul",items:r,className:l="",renderItem:o,children:a,variant:n="unstyled",style:i,...s},d)=>{const c=(()=>{if("unstyled"===n)return"";return`m-0 p-0 ${"ol"===t?"pl-6 list-decimal":"pl-5 list-disc"}`})(),m={className:we(c,`list--${t}`,`list--${n}`,l),style:i,...s,children:a||(r&&0!==r.length?r.map((t,r)=>o?o(t,r):e(_e,{className:t.className,variant:n,children:t.content},t.id||r)):null)};return e("ol"===t?"ol":"ul",{...m,ref:d})});Ae.displayName="List";const Te=r=>{const{items:l,listIconName:o="check",listItemClassName:a}=r;return(null==l?void 0:l.length)?e(Ae,{className:"mt-2 space-y-1",children:l.map((r,l)=>t(_e,{className:we("flex items-center gap-2 text-text-secondary",a),children:[e(Ce,{name:o,size:20,weight:"600",className:"text-icon-brand"}),e($e,{as:"span",children:r})]},l))}):null};Te.displayName="Checklist";const He=o(({as:t,className:r="",...l},o)=>{const a=we(r);if(t){return e(t,{ref:o,className:a,...l})}return e("img",{ref:o,className:a,...l})});He.displayName="Image";const Ve=({brow:l,enableHeading:o,title:a,subTitle:n,ctaDisclaimer:i,disclaimer:s,description:d,image:c,imageLinks:m,mediaPosition:p=!0,checklist:h,secondaryCta:u,cta:g,videoLink:b,maxWidth:f=!0,color:x="light"})=>e("div",{className:"component-container",children:e("div",{className:`image-promo-bar-content ${f?"max-w-120 xl:mx-auto":""} mx-5 mb-8 mt-16`,children:t("div",{className:"flex shrink-0 flex-col items-center gap-8 xl:gap-[126px] "+(p?"flex-row xl:flex-row-reverse":"xl:flex-row"),children:[t("div",{className:"flex flex-[1_0_0] flex-col items-start justify-center gap-8 xl:gap-10 "+("dark"==x?"text-text":"text-white"),children:[t("div",{className:"heading holder",children:[l&&e($e,{as:"div",className:"subheading4 mb-4 text-text-brand xl:subheading2 xl:mb-3",children:l}),a&&e($e,{as:o?"h1":"h2",className:"heading2 xl:heading1",children:a}),n&&e($e,{as:o?"h2":"h3",className:"subheading1 mt-3",children:n})]}),d&&e($e,{as:"div",className:"body1",children:d}),h.length>0&&e(Te,{items:h}),null==m?void 0:m.map((t,r)=>e("div",{className:"image-link",children:e(He,{src:t.url,alt:"icon-link"})},r)),t("div",{className:"flex w-full flex-col gap-8 xl:flex-row xl:gap-3",children:[g&&e("div",{className:"primary-cta w-full xl:w-auto",children:e(Se,{...g,fullWidth:!0})}),u&&e("div",{className:"secondary-cta",children:e(Se,{...u,fullWidth:!0})})]}),i&&e("div",{children:i}),s&&e("div",{children:s})]}),t("aside",{className:"flex shrink-0 content-center items-center",children:[e("div",{children:c&&t(r,{children:[e(Be,{src:c,alt:"section-image",width:486,height:100,className:"hidden rounded-[40px] xl:block"}),e(Be,{src:c,alt:"section-image",width:984,height:100,className:"hidden rounded-[40px] lg:block xl:hidden"}),e(Be,{src:c,alt:"section-image",width:728,height:100,className:"hidden rounded-[40px] md:block lg:hidden"}),e(Be,{src:c,alt:"section-image",width:350,height:100,className:"block rounded-[40px] md:hidden"})]})}),e("div",{children:(null==b?void 0:b.link)&&e("div",{className:"video-section",children:b.image&&e(Be,{src:b.image,alt:"Video preview",width:486,height:100,className:"rounded-[40px]"})})})]})]})})}),qe=({link:r})=>{if(!r)return null;if((e=>"string"==typeof e.href)(r)){const t="submenu-link-btn";return e("ul",{children:e("li",{className:"submenu-link",children:e(Se,{...r,linkVariant:"unstyled"})},t)})}const{anchorId:l,title:o,items:a}=r,n=Array.isArray(null==a?void 0:a.items)?a.items:[];return t("div",{id:null!=l?l:void 0,children:[e("div",{children:null!=o?o:null}),n.length>0&&e(({items:t})=>e("ul",{children:t.map((t,r)=>{const l=`submenu-link-${r}`;return e("li",{className:"submenu-link",children:e(Se,{...t,linkVariant:"unstyled"})},l)})}),{items:n})]})},Oe=({primaryNavigationLinks:r,utilityNavigationLinks:l,maxWidth:o=!0})=>e("div",{className:"component-container",children:t("div",{className:"menu-container "+(o?"mx-auto max-w-120":""),children:[e("div",{className:"utility-container",children:e("ul",{className:"flex",children:null==l?void 0:l.map((t,r)=>e("li",{children:e(qe,{link:t})},`main-menu-items-${r}`))})}),e("div",{className:"main-nav-container",children:e("ul",{className:"flex",children:null==r?void 0:r.map((t,r)=>e("li",{children:e(qe,{link:t})},`main-menu-items-${r}`))})}),e("div",{})]})}),Re=({maxWidth:r=!0,title:l,showAsHeading:o,subTitle:a,price:n,priceSuffix:i,priceCallout:s,pricingDescription:d,pricingDescriptionDisclaimer:c,checklist:m,logoLockup:p,checkAvailabilityEyebrow:h,primaryCtaPrefix1:u,primaryCtaPrefix2:g,primaryCta1:b,primaryCta2:f,secondaryCtaPrefix:x,secondaryCta:v,carouselImages:y,squareImage:w,badgeImage:k,bottomLink:N})=>e("div",{className:"component-container",children:t("div",{className:"primary-hero-container "+(r?"mx-auto max-w-120":""),children:[l&&e("div",{children:l}),o&&t("div",{children:["Heading Mode: ",String(o)]}),a&&e("div",{children:a}),n&&e("div",{children:n}),i&&e("div",{children:i}),s&&e("div",{children:s}),d&&e("div",{children:d}),c&&e("div",{children:c}),p&&t("div",{children:["Logo: ",p]}),k&&t("div",{children:["Badge: ",k]}),w&&t("div",{children:["Square Layout: ",String(w)]}),null==m?void 0:m.map((e,r)=>t("div",{children:["Checklist Item: ",e.title]},`checklist-${r}`)),h&&e("div",{children:h}),u&&e("div",{children:u}),b&&t("div",{children:["CTA 1: ",b.label]}),g&&e("div",{children:g}),f&&t("div",{children:["CTA 2: ",f.label]}),x&&e("div",{children:x}),v&&t("div",{children:["Secondary: ",v.label]}),N&&t("div",{children:["Bottom Link: ",N.label]}),null==y?void 0:y.map((e,r)=>t("div",{children:["Carousel Image ",r+1,": ",e]},r))]})}),Ye=({fields:t})=>e("div",{children:e($e,{children:"Text Block"})}),Je=({fields:t})=>e("div",{children:e($e,{children:"Modal Block"})}),Ke=({children:r,background:l,className:o,fill:a="yellow",maxFit:n,show:i=!0,path:s="path2"})=>{const d=`${s}`,c={blue:"text-[#07B2E2]",green:"text-[#26B170]",yellow:"text-[#F5FF1E]",purple:"text-[#931D69]",white:"text-white",navy:"text-[#00002D]"},m={blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"},p="string"==typeof l&&l in m,h=p?m[l]:void 0,u=l&&!p?{background:l}:void 0,g=a in c?c[a]:"text-[#F5FF1E]";return i?t("div",{className:`shape-bg relative overflow-hidden ${null!=o?o:""} ${n?"max-content":""} ${null!=h?h:u?"":"bg-white"}`,style:u,children:["path1"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-2371px] z-0 translate-x-[-55%] ${d} fill-current ${g}`,width:"2262",height:"4359",viewBox:"0 0 2262 4359",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1838.72 444.021C2216.45 758.242 2351.22 1060.81 2202.83 1982.25C2062.95 2851.55 1923.57 4265.14 1394.48 4348.94C1079.75 4409.66 766.955 4172.68 508.523 4003.04C340.876 3884.89 192.855 3774.9 26.6866 3661.93C-27.6562 3624.7 8.69435 3542.15 74.1261 3555.69C415.628 3626.61 686.916 3615.36 942.942 3443.48C1410.95 3163.54 1632.32 2141.02 1629.56 1543.75C1637.51 910.76 1276.06 582.318 829.643 352.709C587.562 235.528 333.508 169.963 100.699 149.757C31.9431 143.965 25.0259 47.9703 92.459 33.1281C623.196 -84.6769 1404.59 131.886 1839.84 443.573"})}),"path2"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[45.8px] z-0 translate-x-[-101%] ${d} fill-current ${g}`,width:"3739",height:"3666",viewBox:"0 0 3739 3666",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1662.93 3664.31C2153.52 3637.23 2442.1 3474.65 2872.31 2646.41C3278.25 1865.09 4009.1 647.09 3634.26 264.38C3417.79 27.9944 3025.37 31.7818 2716.76 13.9013C2511.72 8.81634 2327.31 8.87399 2126.55 0.511773C2060.73 -2.00127 2040.7 85.9475 2101.3 114.087C2417.76 260.743 2628.86 431.51 2731.94 722.142C2940.79 1225.9 2508.91 2178.82 2150.63 2656.7C1779.64 3169.63 1293.64 3217.84 798.345 3136.04C534.128 3085.8 291.072 2986.97 92.1133 2864.4C33.4593 2828.06 -29.3236 2901.01 15.967 2953.13C371.841 3364.12 1128.29 3656.09 1663.56 3665.34"})}),"path3"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-2600px] z-0 translate-x-[-55%] ${d} fill-current ${g}`,width:"3044",height:"3248",viewBox:"0 0 3044 3248",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1.21857 1353.6C-0.931975 1765.46 120.504 2015.15 791.765 2417.01C1424.98 2796.19 2407.16 3469.31 2746.34 3175.04C2955.08 3005.86 2971.76 2677.32 3002.33 2420C3016.95 2248.7 3026.23 2094.39 3043.38 1926.83C3048.81 1871.88 2976.24 1850.67 2949.63 1899.96C2810.91 2157.33 2657.35 2325.33 2408.95 2396.88C1976.88 2546.15 1201.39 2136.59 819.655 1812.63C409.231 1476.27 393.475 1067.19 486.97 656.895C542.372 438.358 637.352 239.983 749.974 79.7081C783.347 32.4684 725.487 -23.7534 679.587 11.5067C317.699 288.49 35.1358 906.671 0.328344 1354.07"})}),"path4"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-1966.1px] z-0 translate-x-[-48%] ${d} fill-current ${g}`,width:"3739",height:"3666",viewBox:"0 0 3739 3666",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1662.93 3664.31C2153.52 3637.23 2442.1 3474.65 2872.31 2646.41C3278.25 1865.1 4009.1 647.091 3634.26 264.381C3417.79 27.9951 3025.37 31.7826 2716.76 13.902C2511.72 8.81709 2327.31 8.87474 2126.55 0.512528C2060.73 -2.00052 2040.7 85.9483 2101.3 114.088C2417.76 260.743 2628.86 431.51 2731.94 722.143C2940.79 1225.9 2508.91 2178.82 2150.63 2656.7C1779.64 3169.63 1293.64 3217.84 798.345 3136.04C534.128 3085.8 291.072 2986.98 92.1133 2864.4C33.4593 2828.06 -29.3236 2901.01 15.967 2953.13C371.841 3364.12 1128.29 3656.09 1663.56 3665.34"})}),e("div",{className:"shape-bg-content relative z-[1]",children:r})]}):e("div",{className:o,style:u,children:r})},Qe=({title:r,background:l="white",button:o,color:a,contentAlignment:n,description:i,descriptionAlignment:s,enableHeading:d,subTitle:c,maxWidth:m=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[l]} component-container`,children:t("div",{className:`${m?"mx-auto max-w-120":""} flex flex-col text-${a} px-5 py-16 lg:px-13 lg:py-24`,children:[e($e,{as:d?"h1":"h2",className:`heading2 lg:heading1 text-${n}`,children:r}),e($e,{as:"h3",className:`subheading3 pt-2 lg:subheading1 lg:pt-3 text-${n}`,children:c}),e("div",{className:`pt-2 text-body1 lg:pt-3 text-${s}`,children:i}),e("div",{className:"flex justify-center pt-5 lg:pt-14",children:e(Se,{...o})})]})}),Ue=({background:r="white",description:l,enableHeading:o,image:a,list:n=[],subTitle:i,title:s,maxWidth:d=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[r]} component-container`,children:t("div",{className:(d?"max-w-120 xl:mx-auto":"")+" mx-5 mb-5 mt-12 xl:my-20",children:[s&&e($e,{as:o?"h1":"h2",className:"heading2 md:heading1 md:text-center",children:s}),i&&e($e,{as:o?"h2":"h3",className:"heading3 mt-4 text-center",children:i}),t("div",{className:"mt-8 flex items-center xl:mt-16 xl:gap-10",children:[t("div",{className:"flex flex-col items-start gap-10 self-stretch xl:flex-[1_0_0]",children:[l&&e($e,{as:"p",className:"body1",children:l}),n.length>0&&e("ul",{className:"grid w-full grid-cols-2 gap-x-8 gap-y-4 lg:grid-cols-3",children:null==n?void 0:n.map((t,r)=>e("li",{children:e(Pe,{href:`/${t.code}`,className:"label1",children:t.name})},`item-list-${r}`))})]}),a&&e("aside",{className:"hidden xl:block",children:e(Be,{width:472,height:100,src:a,alt:"image"})})]})]})});export{Me as Accordion,Se as Button,Fe as Callout,Ie as Cards,je as Carousel,Qe as CtaCallout,Ue as FindKinetic,We as FloatingBanner,Le as Footer,Ve as ImagePromoBar,Je as Modal,Oe as Navigation,Re as PrimaryHero,Ke as ShapeBackgroundWrapper,Ge as SimpleCards,Ye as Text};
|
|
3
|
+
import{jsx as e,jsxs as t,Fragment as r}from"react/jsx-runtime";import l,{forwardRef as o,useRef as a,useState as n,useEffect as i}from"react";import s from"next/image";function d(e){var t,r,l="";if("string"==typeof e||"number"==typeof e)l+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(r=d(e[t]))&&(l&&(l+=" "),l+=r)}else for(r in e)e[r]&&(l&&(l+=" "),l+=r);return l}const c=e=>{const t=h(e),{conflictingClassGroups:r,conflictingClassGroupModifiers:l}=e;return{getClassGroupId:e=>{const r=e.split("-");return""===r[0]&&1!==r.length&&r.shift(),m(r,t)||u(e)},getConflictingClassGroupIds:(e,t)=>{const o=r[e]||[];return t&&l[e]?[...o,...l[e]]:o}}},m=(e,t)=>{if(0===e.length)return t.classGroupId;const r=e[0],l=t.nextPart.get(r),o=l?m(e.slice(1),l):void 0;if(o)return o;if(0===t.validators.length)return;const a=e.join("-");return t.validators.find(({validator:e})=>e(a))?.classGroupId},p=/^\[(.+)\]$/,u=e=>{if(p.test(e)){const t=p.exec(e)[1],r=t?.substring(0,t.indexOf(":"));if(r)return"arbitrary.."+r}},h=e=>{const{theme:t,classGroups:r}=e,l={nextPart:new Map,validators:[]};for(const e in r)g(r[e],l,e,t);return l},g=(e,t,r,l)=>{e.forEach(e=>{if("string"==typeof e){return void((""===e?t:b(t,e)).classGroupId=r)}if("function"==typeof e)return f(e)?void g(e(l),t,r,l):void t.validators.push({validator:e,classGroupId:r});Object.entries(e).forEach(([e,o])=>{g(o,b(t,e),r,l)})})},b=(e,t)=>{let r=e;return t.split("-").forEach(e=>{r.nextPart.has(e)||r.nextPart.set(e,{nextPart:new Map,validators:[]}),r=r.nextPart.get(e)}),r},f=e=>e.isThemeGetter,x=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,r=new Map,l=new Map;const o=(o,a)=>{r.set(o,a),t++,t>e&&(t=0,l=r,r=new Map)};return{get(e){let t=r.get(e);return void 0!==t?t:void 0!==(t=l.get(e))?(o(e,t),t):void 0},set(e,t){r.has(e)?r.set(e,t):o(e,t)}}},v=e=>{const{prefix:t,experimentalParseClassName:r}=e;let l=e=>{const t=[];let r,l=0,o=0,a=0;for(let n=0;n<e.length;n++){let i=e[n];if(0===l&&0===o){if(":"===i){t.push(e.slice(a,n)),a=n+1;continue}if("/"===i){r=n;continue}}"["===i?l++:"]"===i?l--:"("===i?o++:")"===i&&o--}const n=0===t.length?e:e.substring(a),i=y(n);return{modifiers:t,hasImportantModifier:i!==n,baseClassName:i,maybePostfixModifierPosition:r&&r>a?r-a:void 0}};if(t){const e=t+":",r=l;l=t=>t.startsWith(e)?r(t.substring(e.length)):{isExternal:!0,modifiers:[],hasImportantModifier:!1,baseClassName:t,maybePostfixModifierPosition:void 0}}if(r){const e=l;l=t=>r({className:t,parseClassName:e})}return l},y=e=>e.endsWith("!")?e.substring(0,e.length-1):e.startsWith("!")?e.substring(1):e,w=e=>{const t=Object.fromEntries(e.orderSensitiveModifiers.map(e=>[e,!0]));return e=>{if(e.length<=1)return e;const r=[];let l=[];return e.forEach(e=>{"["===e[0]||t[e]?(r.push(...l.sort(),e),l=[]):l.push(e)}),r.push(...l.sort()),r}},k=/\s+/;function N(){let e,t,r=0,l="";for(;r<arguments.length;)(e=arguments[r++])&&(t=C(e))&&(l&&(l+=" "),l+=t);return l}const C=e=>{if("string"==typeof e)return e;let t,r="";for(let l=0;l<e.length;l++)e[l]&&(t=C(e[l]))&&(r&&(r+=" "),r+=t);return r};function z(e,...t){let r,l,o,a=function(i){const s=t.reduce((e,t)=>t(e),e());return r=(e=>({cache:x(e.cacheSize),parseClassName:v(e),sortModifiers:w(e),...c(e)}))(s),l=r.cache.get,o=r.cache.set,a=n,n(i)};function n(e){const t=l(e);if(t)return t;const a=((e,t)=>{const{parseClassName:r,getClassGroupId:l,getConflictingClassGroupIds:o,sortModifiers:a}=t,n=[],i=e.trim().split(k);let s="";for(let e=i.length-1;e>=0;e-=1){const t=i[e],{isExternal:d,modifiers:c,hasImportantModifier:m,baseClassName:p,maybePostfixModifierPosition:u}=r(t);if(d){s=t+(s.length>0?" "+s:s);continue}let h=!!u,g=l(h?p.substring(0,u):p);if(!g){if(!h){s=t+(s.length>0?" "+s:s);continue}if(g=l(p),!g){s=t+(s.length>0?" "+s:s);continue}h=!1}const b=a(c).join(":"),f=m?b+"!":b,x=f+g;if(n.includes(x))continue;n.push(x);const v=o(g,h);for(let e=0;e<v.length;++e){const t=v[e];n.push(f+t)}s=t+(s.length>0?" "+s:s)}return s})(e,r);return o(e,a),a}return function(){return a(N.apply(null,arguments))}}const $=e=>{const t=t=>t[e]||[];return t.isThemeGetter=!0,t},j=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,M=/^\((?:(\w[\w-]*):)?(.+)\)$/i,F=/^\d+\/\d+$/,G=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,B=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,I=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,E=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,D=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,P=e=>F.test(e),_=e=>!!e&&!Number.isNaN(Number(e)),S=e=>!!e&&Number.isInteger(Number(e)),L=e=>e.endsWith("%")&&_(e.slice(0,-1)),W=e=>G.test(e),A=()=>!0,H=e=>B.test(e)&&!I.test(e),T=()=>!1,V=e=>E.test(e),O=e=>D.test(e),q=e=>!R(e)&&!Z(e),J=e=>ne(e,ce,T),R=e=>j.test(e),X=e=>ne(e,me,H),Y=e=>ne(e,pe,_),K=e=>ne(e,se,T),Q=e=>ne(e,de,O),U=e=>ne(e,he,V),Z=e=>M.test(e),ee=e=>ie(e,me),te=e=>ie(e,ue),re=e=>ie(e,se),le=e=>ie(e,ce),oe=e=>ie(e,de),ae=e=>ie(e,he,!0),ne=(e,t,r)=>{const l=j.exec(e);return!!l&&(l[1]?t(l[1]):r(l[2]))},ie=(e,t,r=!1)=>{const l=M.exec(e);return!!l&&(l[1]?t(l[1]):r)},se=e=>"position"===e||"percentage"===e,de=e=>"image"===e||"url"===e,ce=e=>"length"===e||"size"===e||"bg-size"===e,me=e=>"length"===e,pe=e=>"number"===e,ue=e=>"family-name"===e,he=e=>"shadow"===e,ge=()=>{const e=$("color"),t=$("font"),r=$("text"),l=$("font-weight"),o=$("tracking"),a=$("leading"),n=$("breakpoint"),i=$("container"),s=$("spacing"),d=$("radius"),c=$("shadow"),m=$("inset-shadow"),p=$("text-shadow"),u=$("drop-shadow"),h=$("blur"),g=$("perspective"),b=$("aspect"),f=$("ease"),x=$("animate"),v=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom",Z,R],y=()=>[Z,R,s],w=()=>[P,"full","auto",...y()],k=()=>[S,"none","subgrid",Z,R],N=()=>["auto",{span:["full",S,Z,R]},S,Z,R],C=()=>[S,"auto",Z,R],z=()=>["auto","min","max","fr",Z,R],j=()=>["auto",...y()],M=()=>[P,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...y()],F=()=>[e,Z,R],G=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom",re,K,{position:[Z,R]}],B=()=>["auto","cover","contain",le,J,{size:[Z,R]}],I=()=>[L,ee,X],E=()=>["","none","full",d,Z,R],D=()=>["",_,ee,X],H=()=>[_,L,re,K],T=()=>["","none",h,Z,R],V=()=>["none",_,Z,R],O=()=>["none",_,Z,R],ne=()=>[_,Z,R],ie=()=>[P,"full",...y()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[W],breakpoint:[W],color:[A],container:[W],"drop-shadow":[W],ease:["in","out","in-out"],font:[q],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[W],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[W],shadow:[W],spacing:["px",_],text:[W],"text-shadow":[W],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",P,R,Z,b]}],container:["container"],columns:[{columns:[_,R,Z,i]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:v()}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:w()}],"inset-x":[{"inset-x":w()}],"inset-y":[{"inset-y":w()}],start:[{start:w()}],end:[{end:w()}],top:[{top:w()}],right:[{right:w()}],bottom:[{bottom:w()}],left:[{left:w()}],visibility:["visible","invisible","collapse"],z:[{z:[S,"auto",Z,R]}],basis:[{basis:[P,"full","auto",i,...y()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[_,P,"auto","initial","none",R]}],grow:[{grow:["",_,Z,R]}],shrink:[{shrink:["",_,Z,R]}],order:[{order:[S,"first","last","none",Z,R]}],"grid-cols":[{"grid-cols":k()}],"col-start-end":[{col:N()}],"col-start":[{"col-start":C()}],"col-end":[{"col-end":C()}],"grid-rows":[{"grid-rows":k()}],"row-start-end":[{row:N()}],"row-start":[{"row-start":C()}],"row-end":[{"row-end":C()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":z()}],"auto-rows":[{"auto-rows":z()}],gap:[{gap:y()}],"gap-x":[{"gap-x":y()}],"gap-y":[{"gap-y":y()}],"justify-content":[{justify:["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe","normal"]}],"justify-items":[{"justify-items":["start","end","center","stretch","center-safe","end-safe","normal"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch","center-safe","end-safe"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"]}],"align-items":[{items:["start","end","center","stretch","center-safe","end-safe",{baseline:["","last"]}]}],"align-self":[{self:["auto","start","end","center","stretch","center-safe","end-safe",{baseline:["","last"]}]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"]}],"place-items":[{"place-items":["start","end","center","stretch","center-safe","end-safe","baseline"]}],"place-self":[{"place-self":["auto","start","end","center","stretch","center-safe","end-safe"]}],p:[{p:y()}],px:[{px:y()}],py:[{py:y()}],ps:[{ps:y()}],pe:[{pe:y()}],pt:[{pt:y()}],pr:[{pr:y()}],pb:[{pb:y()}],pl:[{pl:y()}],m:[{m:j()}],mx:[{mx:j()}],my:[{my:j()}],ms:[{ms:j()}],me:[{me:j()}],mt:[{mt:j()}],mr:[{mr:j()}],mb:[{mb:j()}],ml:[{ml:j()}],"space-x":[{"space-x":y()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":y()}],"space-y-reverse":["space-y-reverse"],size:[{size:M()}],w:[{w:[i,"screen",...M()]}],"min-w":[{"min-w":[i,"screen","none",...M()]}],"max-w":[{"max-w":[i,"screen","none","prose",{screen:[n]},...M()]}],h:[{h:["screen","lh",...M()]}],"min-h":[{"min-h":["screen","lh","none",...M()]}],"max-h":[{"max-h":["screen","lh",...M()]}],"font-size":[{text:["base",r,ee,X]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[l,Z,Y]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",L,R]}],"font-family":[{font:[te,R,t]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[o,Z,R]}],"line-clamp":[{"line-clamp":[_,"none",Z,Y]}],leading:[{leading:[a,...y()]}],"list-image":[{"list-image":["none",Z,R]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",Z,R]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:F()}],"text-color":[{text:F()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","wavy"]}],"text-decoration-thickness":[{decoration:[_,"from-font","auto",Z,X]}],"text-decoration-color":[{decoration:F()}],"underline-offset":[{"underline-offset":[_,"auto",Z,R]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:y()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",Z,R]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",Z,R]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:G()}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","space","round"]}]}],"bg-size":[{bg:B()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},S,Z,R],radial:["",Z,R],conic:[S,Z,R]},oe,Q]}],"bg-color":[{bg:F()}],"gradient-from-pos":[{from:I()}],"gradient-via-pos":[{via:I()}],"gradient-to-pos":[{to:I()}],"gradient-from":[{from:F()}],"gradient-via":[{via:F()}],"gradient-to":[{to:F()}],rounded:[{rounded:E()}],"rounded-s":[{"rounded-s":E()}],"rounded-e":[{"rounded-e":E()}],"rounded-t":[{"rounded-t":E()}],"rounded-r":[{"rounded-r":E()}],"rounded-b":[{"rounded-b":E()}],"rounded-l":[{"rounded-l":E()}],"rounded-ss":[{"rounded-ss":E()}],"rounded-se":[{"rounded-se":E()}],"rounded-ee":[{"rounded-ee":E()}],"rounded-es":[{"rounded-es":E()}],"rounded-tl":[{"rounded-tl":E()}],"rounded-tr":[{"rounded-tr":E()}],"rounded-br":[{"rounded-br":E()}],"rounded-bl":[{"rounded-bl":E()}],"border-w":[{border:D()}],"border-w-x":[{"border-x":D()}],"border-w-y":[{"border-y":D()}],"border-w-s":[{"border-s":D()}],"border-w-e":[{"border-e":D()}],"border-w-t":[{"border-t":D()}],"border-w-r":[{"border-r":D()}],"border-w-b":[{"border-b":D()}],"border-w-l":[{"border-l":D()}],"divide-x":[{"divide-x":D()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":D()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:["solid","dashed","dotted","double","hidden","none"]}],"divide-style":[{divide:["solid","dashed","dotted","double","hidden","none"]}],"border-color":[{border:F()}],"border-color-x":[{"border-x":F()}],"border-color-y":[{"border-y":F()}],"border-color-s":[{"border-s":F()}],"border-color-e":[{"border-e":F()}],"border-color-t":[{"border-t":F()}],"border-color-r":[{"border-r":F()}],"border-color-b":[{"border-b":F()}],"border-color-l":[{"border-l":F()}],"divide-color":[{divide:F()}],"outline-style":[{outline:["solid","dashed","dotted","double","none","hidden"]}],"outline-offset":[{"outline-offset":[_,Z,R]}],"outline-w":[{outline:["",_,ee,X]}],"outline-color":[{outline:F()}],shadow:[{shadow:["","none",c,ae,U]}],"shadow-color":[{shadow:F()}],"inset-shadow":[{"inset-shadow":["none",m,ae,U]}],"inset-shadow-color":[{"inset-shadow":F()}],"ring-w":[{ring:D()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:F()}],"ring-offset-w":[{"ring-offset":[_,X]}],"ring-offset-color":[{"ring-offset":F()}],"inset-ring-w":[{"inset-ring":D()}],"inset-ring-color":[{"inset-ring":F()}],"text-shadow":[{"text-shadow":["none",p,ae,U]}],"text-shadow-color":[{"text-shadow":F()}],opacity:[{opacity:[_,Z,R]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[_]}],"mask-image-linear-from-pos":[{"mask-linear-from":H()}],"mask-image-linear-to-pos":[{"mask-linear-to":H()}],"mask-image-linear-from-color":[{"mask-linear-from":F()}],"mask-image-linear-to-color":[{"mask-linear-to":F()}],"mask-image-t-from-pos":[{"mask-t-from":H()}],"mask-image-t-to-pos":[{"mask-t-to":H()}],"mask-image-t-from-color":[{"mask-t-from":F()}],"mask-image-t-to-color":[{"mask-t-to":F()}],"mask-image-r-from-pos":[{"mask-r-from":H()}],"mask-image-r-to-pos":[{"mask-r-to":H()}],"mask-image-r-from-color":[{"mask-r-from":F()}],"mask-image-r-to-color":[{"mask-r-to":F()}],"mask-image-b-from-pos":[{"mask-b-from":H()}],"mask-image-b-to-pos":[{"mask-b-to":H()}],"mask-image-b-from-color":[{"mask-b-from":F()}],"mask-image-b-to-color":[{"mask-b-to":F()}],"mask-image-l-from-pos":[{"mask-l-from":H()}],"mask-image-l-to-pos":[{"mask-l-to":H()}],"mask-image-l-from-color":[{"mask-l-from":F()}],"mask-image-l-to-color":[{"mask-l-to":F()}],"mask-image-x-from-pos":[{"mask-x-from":H()}],"mask-image-x-to-pos":[{"mask-x-to":H()}],"mask-image-x-from-color":[{"mask-x-from":F()}],"mask-image-x-to-color":[{"mask-x-to":F()}],"mask-image-y-from-pos":[{"mask-y-from":H()}],"mask-image-y-to-pos":[{"mask-y-to":H()}],"mask-image-y-from-color":[{"mask-y-from":F()}],"mask-image-y-to-color":[{"mask-y-to":F()}],"mask-image-radial":[{"mask-radial":[Z,R]}],"mask-image-radial-from-pos":[{"mask-radial-from":H()}],"mask-image-radial-to-pos":[{"mask-radial-to":H()}],"mask-image-radial-from-color":[{"mask-radial-from":F()}],"mask-image-radial-to-color":[{"mask-radial-to":F()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"]}],"mask-image-conic-pos":[{"mask-conic":[_]}],"mask-image-conic-from-pos":[{"mask-conic-from":H()}],"mask-image-conic-to-pos":[{"mask-conic-to":H()}],"mask-image-conic-from-color":[{"mask-conic-from":F()}],"mask-image-conic-to-color":[{"mask-conic-to":F()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:G()}],"mask-repeat":[{mask:["no-repeat",{repeat:["","x","y","space","round"]}]}],"mask-size":[{mask:B()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",Z,R]}],filter:[{filter:["","none",Z,R]}],blur:[{blur:T()}],brightness:[{brightness:[_,Z,R]}],contrast:[{contrast:[_,Z,R]}],"drop-shadow":[{"drop-shadow":["","none",u,ae,U]}],"drop-shadow-color":[{"drop-shadow":F()}],grayscale:[{grayscale:["",_,Z,R]}],"hue-rotate":[{"hue-rotate":[_,Z,R]}],invert:[{invert:["",_,Z,R]}],saturate:[{saturate:[_,Z,R]}],sepia:[{sepia:["",_,Z,R]}],"backdrop-filter":[{"backdrop-filter":["","none",Z,R]}],"backdrop-blur":[{"backdrop-blur":T()}],"backdrop-brightness":[{"backdrop-brightness":[_,Z,R]}],"backdrop-contrast":[{"backdrop-contrast":[_,Z,R]}],"backdrop-grayscale":[{"backdrop-grayscale":["",_,Z,R]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[_,Z,R]}],"backdrop-invert":[{"backdrop-invert":["",_,Z,R]}],"backdrop-opacity":[{"backdrop-opacity":[_,Z,R]}],"backdrop-saturate":[{"backdrop-saturate":[_,Z,R]}],"backdrop-sepia":[{"backdrop-sepia":["",_,Z,R]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":y()}],"border-spacing-x":[{"border-spacing-x":y()}],"border-spacing-y":[{"border-spacing-y":y()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",Z,R]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[_,"initial",Z,R]}],ease:[{ease:["linear","initial",f,Z,R]}],delay:[{delay:[_,Z,R]}],animate:[{animate:["none",x,Z,R]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[g,Z,R]}],"perspective-origin":[{"perspective-origin":v()}],rotate:[{rotate:V()}],"rotate-x":[{"rotate-x":V()}],"rotate-y":[{"rotate-y":V()}],"rotate-z":[{"rotate-z":V()}],scale:[{scale:O()}],"scale-x":[{"scale-x":O()}],"scale-y":[{"scale-y":O()}],"scale-z":[{"scale-z":O()}],"scale-3d":["scale-3d"],skew:[{skew:ne()}],"skew-x":[{"skew-x":ne()}],"skew-y":[{"skew-y":ne()}],transform:[{transform:[Z,R,"","none","gpu","cpu"]}],"transform-origin":[{origin:v()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:ie()}],"translate-x":[{"translate-x":ie()}],"translate-y":[{"translate-y":ie()}],"translate-z":[{"translate-z":ie()}],"translate-none":["translate-none"],accent:[{accent:F()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:F()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",Z,R]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":y()}],"scroll-mx":[{"scroll-mx":y()}],"scroll-my":[{"scroll-my":y()}],"scroll-ms":[{"scroll-ms":y()}],"scroll-me":[{"scroll-me":y()}],"scroll-mt":[{"scroll-mt":y()}],"scroll-mr":[{"scroll-mr":y()}],"scroll-mb":[{"scroll-mb":y()}],"scroll-ml":[{"scroll-ml":y()}],"scroll-p":[{"scroll-p":y()}],"scroll-px":[{"scroll-px":y()}],"scroll-py":[{"scroll-py":y()}],"scroll-ps":[{"scroll-ps":y()}],"scroll-pe":[{"scroll-pe":y()}],"scroll-pt":[{"scroll-pt":y()}],"scroll-pr":[{"scroll-pr":y()}],"scroll-pb":[{"scroll-pb":y()}],"scroll-pl":[{"scroll-pl":y()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",Z,R]}],fill:[{fill:["none",...F()]}],"stroke-w":[{stroke:[_,ee,X,Y]}],stroke:[{stroke:["none",...F()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},be=(e,t,r)=>{void 0!==r&&(e[t]=r)},fe=(e,t)=>{if(t)for(const r in t)be(e,r,t[r])},xe=(e,t)=>{if(t)for(const r in t)ve(e,t,r)},ve=(e,t,r)=>{const l=t[r];void 0!==l&&(e[r]=e[r]?e[r].concat(l):l)},ye=((e,...t)=>"function"==typeof e?z(ge,e,...t):z(()=>((e,{cacheSize:t,prefix:r,experimentalParseClassName:l,extend:o={},override:a={}})=>(be(e,"cacheSize",t),be(e,"prefix",r),be(e,"experimentalParseClassName",l),fe(e.theme,a.theme),fe(e.classGroups,a.classGroups),fe(e.conflictingClassGroups,a.conflictingClassGroups),fe(e.conflictingClassGroupModifiers,a.conflictingClassGroupModifiers),be(e,"orderSensitiveModifiers",a.orderSensitiveModifiers),xe(e.theme,o.theme),xe(e.classGroups,o.classGroups),xe(e.conflictingClassGroups,o.conflictingClassGroups),xe(e.conflictingClassGroupModifiers,o.conflictingClassGroupModifiers),ve(e,o,"orderSensitiveModifiers"),e))(ge(),e),...t))({extend:{classGroups:{"font-variants":["heading1","heading2","heading3","heading4","heading5","heading6","subheading1","subheading2","subheading3","subheading4","subheading5","subheading6","body1","body2","body3","footnote","micro","label1","label2","label3","label4"],"button-sizes":["btn-small","btn-medium","btn-large","btn-x-large"]}}}),we=(...e)=>ye(function(){for(var e,t,r=0,l="",o=arguments.length;r<o;r++)(e=arguments[r])&&(t=d(e))&&(l&&(l+=" "),l+=t);return l}(...e)),ke=o(({children:t,className:r="",style:l,disabled:o,...a},n)=>e("button",{ref:n,className:we(r),style:l,disabled:o,...a,children:t}));ke.displayName="Button";const Ne=t=>{const{open:r,children:l}=t,o=a(null),[s,d]=n(0);return i(()=>{const e=o.current;if(!e)return;const t=()=>{d(r?e.scrollHeight:0)};let l;return t(),r&&(l=new ResizeObserver(()=>t()),l.observe(e)),()=>{l&&l.disconnect()}},[r,l]),e("div",{className:"overflow-hidden transition-all duration-300 ease-in-out",style:{maxHeight:s,opacity:r?1:0},"aria-hidden":!r,children:e("div",{ref:o,children:l})})};Ne.displayName="Collapse";const Ce=({name:t,fill:r=0,opticalSize:l="48dp",weight:o="200",emphasis:a=145,size:n=24,color:i="currentColor",style:s={},className:d,onClick:c,dataTestId:m})=>{const p={fontVariationSettings:`'FILL' ${r}, 'wght' ${o}, 'GRAD' ${a}, 'opsz' ${l.substring(0,2)}`,fontSize:`${n}px`,fontFamily:"'Material Symbols Rounded'",color:i||"currentColor",...s};return e("span",{style:p,className:we("material-symbols-rounded",d),onClick:c,"data-testid":m,children:t})};Ce.displayName="MaterialIcon";const ze=r=>{const{title:l,defaultOpen:o,children:a,containerClassName:i,titleClassName:s,className:d,buttonClassName:c}=r,[m,p]=n(Boolean(o));return t("div",{className:we("rounded-lg border",i),children:[t(ke,{type:"button",className:we("flex w-full items-center justify-between gap-4 rounded-t-lg px-4 py-3 text-left",c),onClick:()=>p(e=>!e),children:[e("span",{className:we("label5",s),children:l}),e(Ce,{name:m?"keyboard_arrow_down":"keyboard_arrow_up",fill:1,size:24})]}),e(Ne,{open:m,children:e("div",{className:we("px-4 py-4",d),children:a})})]})};ze.displayName="Accordion";const $e=o(({children:e,as:t,className:r="",style:o,...a},n)=>{const i=t||"p";return l.createElement(i,{ref:n,className:r,style:o,...a},e)});$e.displayName="Text";const je=({items:r,title:l,background:o="white",enableHeading:a=!1,maxWidth:n=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[o]} component-container`,children:t("div",{className:(n?"max-w-120 xl:mx-auto":"")+" mx-5 my-8 lg:mx-20 lg:my-18",children:[e("div",{children:e($e,{as:a?"h1":"h2",className:"heading1 text-left lg:text-center",children:l})}),e("div",{className:"question-answer-section mt-10 lg:mt-16",children:null==r?void 0:r.map((t,r)=>e("div",{children:e(ze,{title:t.title,containerClassName:"border-0 border-b-[1px]",children:e($e,{children:t.description})})},`item-${r}`))})]})}),Me=e=>{let t="";return e.base&&(t="x-large"===e.base?"label3 ":"label4 "),e.md&&(t+="x-large"===e.md?"md:label3 ":"md:label4 "),e.lg&&(t+="x-large"===e.lg?"lg:label3 ":"lg:label4 "),t.trim()},Fe=o(({variant:r="primary_brand",isLoading:l=!1,text:o,label:a,disabled:n,fullWidth:i,size:s={base:"medium"},...d},c)=>{const m=(()=>{const e=we((e=>{let t="";return e.base&&(t=`btn-${e.base} `),e.md&&(t+=`${(e=>{switch(e){case"small":return"md:btn-small";case"medium":return"md:btn-medium";case"large":return"md:btn-large";case"x-large":return"md:btn-x-large"}})(e.md)} `),e.lg&&(t+=`lg:btn-${e.lg} `),t.trim()})(s),"rounded-2xl pl-15 pr-15 inline-flex gap-2 items-center justify-center outline-none focus:ring-2 focus:ring-offset-2 cursor-pointer transition-colors duration-200 align-top",i&&"w-full"),t=we((n||l)&&"cursor-not-allowed",l&&"pl-7",n&&"bg-bg-fill-brand-disabled");return we(e,{primary_brand:"bg-bg-fill-brand text-text-brand-on-bg-fill enabled:hover:bg-bg-fill-brand-hover focus:ring-bg-fill-brand",primary_inverse:"bg-bg-surface-inverse text-text-inverse enabled:hover:bg-bg-fill-inverse-hover focus:ring-bg-surface-inverse",secondary:"border-2 border-border-secondary-on-bg-fill bg-bg text-text focus:ring-bg-surface-inverse"}[r]||"",t)})();let p=`button--${r}`;l&&(p+=" button--loading"),n&&(p+=" button--disabled");return t("button",{ref:c,className:we(`${p} ${m}`),disabled:n||l,...d,children:[l?e(Ce,{name:"progress_activity",className:"animate-spin"}):null,a?t("span",{className:"flex flex-col",children:[e("span",{className:we(Me(s)),children:a}),o]}):o]})});Fe.displayName="BrandButton";const Ge=({fields:r})=>t("div",{children:[e($e,{children:"Callout"}),e(Fe,{label:"Callout"})]}),Be=({fields:t})=>e("div",{children:e($e,{children:"Cards"})}),Ie=({fields:t})=>e("div",{children:e($e,{children:"Carousel"})}),Ee=o(({className:t,...r},l)=>e(s,{ref:l,className:we(t),...r}));Ee.displayName="NextImage";const De=o(({children:t,href:r,className:l="",onClick:o,variant:a="unstyled",style:n,external:i=!1,disabled:s=!1,...d},c)=>{const m=(()=>{if("unstyled"===a)return"";const e={default:"text-text underline"},t=[s?"opacity-60 cursor-not-allowed pointer-events-none":"cursor-pointer"].filter(Boolean).join(" ");return["transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2",e[a]||e.default,t].filter(Boolean).join(" ")})(),p={...d,ref:c,className:we(m,`link--${a}`,s&&"link--disabled",l),style:n,href:s?void 0:r,onClick:e=>{s?e.preventDefault():null==o||o(e)},...i&&!s&&{target:"_blank",rel:"noopener noreferrer"},...s&&{"aria-disabled":!0,tabIndex:-1}};return e("a",{...p,children:t})});De.displayName="Link";const Pe=({showButtonAs:t,buttonVariant:r,buttonLabel:l,buttonPrefix:o,href:a,target:n,anchorId:i,linkClassName:s,linkVariant:d,fullWidth:c,preDefinedFunctionExecution:m,checkPlansJSX:p})=>"check availability"===m?p:"solid"===t?e(Fe,{id:i,variant:r,text:l,label:o,fullWidth:c}):"text"===t?e(De,{href:a,target:n,variant:d||"default",className:`text-text-brand ${s||""}`,children:l}):null,_e=({title:r,subtitle:l,description:o,disclaimer:a,icon:n,cta:i,background:s="navy",color:d="white",enableHeading:c,maxWidth:m=!0})=>e("div",{className:"component-container",children:t("div",{className:"mx-5 my-8 lg:mx-20 lg:my-12 lg:rounded-[40px] xl:mx-auto "+(m?" max-w-120":""),children:[t("div",{className:`flex flex-col rounded-[28px] px-5 py-7 lg:flex-row lg:rounded-[40px] lg:px-16 lg:py-9 ${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[s]} ${{blue:"text-[#07B2E2]",green:"text-[#26B170]",yellow:"text-[#F5FF1E]",purple:"text-[#931D69]",white:"text-white",navy:"text-[#00002D]"}[d]} `,children:[n&&e("div",{className:"floating-banner-icon mb-5 flex justify-center lg:mb-0 lg:items-center",children:e("div",{className:"h-[80px] w-[80px] overflow-hidden",children:e(Ee,{width:80,height:80,alt:"icon",src:n})})}),t("div",{className:"flex flex-col justify-center lg:mx-5",children:[r&&e($e,{as:c?"h1":"h2",className:"heading2 mb-3 lg:w-[90%] text-center lg:text-left",children:r}),l&&e($e,{as:"h3",className:"heading3 mb-3 text-center lg:text-left",children:l}),o&&e($e,{as:"div",className:"body1 lg:w-[90%] text-center lg:text-left",children:o})]}),i&&e("div",{className:"mt-5 flex justify-center lg:mt-0 lg:w-[500px] lg:items-center",children:e(Pe,{...i})})]}),a&&e("div",{children:e($e,{as:"div",className:"body3 mt-3 text-center",children:a})})]})}),Se=({body:r,links:o,bottomLinks:a,copyrights:n,terms:i,maxWidth:s=!0})=>e("div",{className:"component-container bg-bg-inverse text-white",children:t("div",{className:` ${s?"mx-auto max-w-120":""} px-5 py-8 `,children:[e("div",{children:r}),e("div",{className:"my-8 h-[1px] border-t-0 bg-white opacity-100 lg:my-16 dark:opacity-50"}),e("div",{className:"grid-1 grid gap-8 py-8 md:grid-cols-2 lg:grid-cols-4",children:null==o?void 0:o.map((r,o)=>{var a,n;return t(l.Fragment,{children:[e("div",{children:t("div",{className:"site-links-group",children:[e($e,{as:"div",className:"label3",children:null==r?void 0:r.title}),e("ul",{className:"flex flex-col",children:null===(n=null===(a=null==r?void 0:r.items)||void 0===a?void 0:a.items)||void 0===n?void 0:n.map((t,r)=>e("li",{className:"pt-3",children:e(Pe,{...t,linkVariant:"unstyled",linkClassName:"text-white body3"})},`site-links-${r}`))})]},`link-group-${o}`)},`footer-link-group-${o}`),e("div",{className:"block h-[1px] border-t-0 bg-white opacity-100 md:hidden dark:opacity-50"})]},`footer-link-group-${o}`)})}),t("div",{className:"pt-8",children:[e("p",{className:"copy-rights",children:n}),t("p",{className:"terms-text footnote text-white",children:["© ",(new Date).getFullYear()," ",i]}),e("ul",{className:"bottom-links list-none",children:null==a?void 0:a.map((t,r)=>e("li",{className:"relative float-left pl-[8px] before:absolute before:left-[3px] before:top-1/2 before:-translate-y-1/2 before:text-[14px] before:content-['•'] first-of-type:pl-0 first-of-type:before:content-['']",children:e(Pe,{...t,linkClassName:"footnote text-white",linkVariant:"unstyled"})},`links-${r}`))})]})]})}),Le=o(({children:t,className:r="",variant:l="unstyled",style:o,...a},n)=>{const i=we("unstyled"===l?"":"mb-1 leading-6","list-item",`list-item--${l}`,r);return e("li",{ref:n,className:i,style:o,...a,children:t})});Le.displayName="ListItem";const We=o(({type:t="ul",items:r,className:l="",renderItem:o,children:a,variant:n="unstyled",style:i,...s},d)=>{const c=(()=>{if("unstyled"===n)return"";return`m-0 p-0 ${"ol"===t?"pl-6 list-decimal":"pl-5 list-disc"}`})(),m={className:we(c,`list--${t}`,`list--${n}`,l),style:i,...s,children:a||(r&&0!==r.length?r.map((t,r)=>o?o(t,r):e(Le,{className:t.className,variant:n,children:t.content},t.id||r)):null)};return e("ol"===t?"ol":"ul",{...m,ref:d})});We.displayName="List";const Ae=r=>{const{items:l,listIconName:o="check",listItemClassName:a}=r;return(null==l?void 0:l.length)?e(We,{className:"mt-2 space-y-1",children:l.map((r,l)=>t(Le,{className:we("flex items-center gap-2 text-text-secondary",a),children:[e(Ce,{name:o,size:20,weight:"600",className:"text-icon-brand"}),e($e,{as:"span",children:r})]},l))}):null};Ae.displayName="Checklist";const He=o(({as:t,className:r="",...l},o)=>{const a=we(r);if(t){return e(t,{ref:o,className:a,...l})}return e("img",{ref:o,className:a,...l})});He.displayName="Image";const Te=({brow:l,enableHeading:o,title:a,subTitle:n,ctaDisclaimer:i,disclaimer:s,description:d,image:c,imageLinks:m,mediaPosition:p=!0,checklist:u,secondaryCta:h,cta:g,videoLink:b,maxWidth:f=!0,color:x="light"})=>e("div",{className:"component-container",children:e("div",{className:`image-promo-bar-content ${f?"max-w-120 xl:mx-auto":""} mx-5 mb-8 mt-16`,children:t("div",{className:"flex shrink-0 flex-col items-center gap-8 xl:gap-[126px] "+(p?"flex-row xl:flex-row-reverse":"xl:flex-row"),children:[t("div",{className:"flex flex-[1_0_0] flex-col items-start justify-center gap-8 xl:gap-10 "+("dark"==x?"text-text":"text-white"),children:[t("div",{className:"heading holder",children:[l&&e($e,{as:"div",className:"subheading4 mb-4 text-text-brand xl:subheading2 xl:mb-3",children:l}),a&&e($e,{as:o?"h1":"h2",className:"heading2 xl:heading1",children:a}),n&&e($e,{as:o?"h2":"h3",className:"subheading1 mt-3",children:n})]}),d&&e($e,{as:"div",className:"body1",children:d}),u.length>0&&e(Ae,{items:u}),null==m?void 0:m.map((t,r)=>e("div",{className:"image-link",children:e(He,{src:t.url,alt:"icon-link"})},r)),t("div",{className:"flex w-full flex-col gap-8 xl:flex-row xl:gap-3",children:[g&&e("div",{className:"primary-cta w-full xl:w-auto",children:e(Pe,{...g,fullWidth:!0})}),h&&e("div",{className:"secondary-cta",children:e(Pe,{...h,fullWidth:!0})})]}),i&&e("div",{children:i}),s&&e("div",{children:s})]}),t("aside",{className:"flex shrink-0 content-center items-center",children:[e("div",{children:c&&t(r,{children:[e(Ee,{src:c,alt:"section-image",width:486,height:100,className:"hidden rounded-[40px] xl:block"}),e(Ee,{src:c,alt:"section-image",width:984,height:100,className:"hidden rounded-[40px] lg:block xl:hidden"}),e(Ee,{src:c,alt:"section-image",width:728,height:100,className:"hidden rounded-[40px] md:block lg:hidden"}),e(Ee,{src:c,alt:"section-image",width:350,height:100,className:"block rounded-[40px] md:hidden"})]})}),e("div",{children:(null==b?void 0:b.link)&&e("div",{className:"video-section",children:b.image&&e(Ee,{src:b.image,alt:"Video preview",width:486,height:100,className:"rounded-[40px]"})})})]})]})})}),Ve=({link:r})=>{if(!r)return null;if((e=>"string"==typeof e.href)(r)){const t="submenu-link-btn";return e("ul",{children:e("li",{className:"submenu-link",children:e(Pe,{...r,linkVariant:"unstyled"})},t)})}const{anchorId:l,title:o,items:a}=r,n=Array.isArray(null==a?void 0:a.items)?a.items:[];return t("div",{id:null!=l?l:void 0,children:[e("div",{children:null!=o?o:null}),n.length>0&&e(({items:t})=>e("ul",{children:t.map((t,r)=>{const l=`submenu-link-${r}`;return e("li",{className:"submenu-link",children:e(Pe,{...t,linkVariant:"unstyled"})},l)})}),{items:n})]})},Oe=({primaryNavigationLinks:r,utilityNavigationLinks:l,maxWidth:o=!0})=>e("div",{className:"component-container",children:t("div",{className:"menu-container "+(o?"mx-auto max-w-120":""),children:[e("div",{className:"utility-container",children:e("ul",{className:"flex",children:null==l?void 0:l.map((t,r)=>e("li",{children:e(Ve,{link:t})},`main-menu-items-${r}`))})}),e("div",{className:"main-nav-container",children:e("ul",{className:"flex",children:null==r?void 0:r.map((t,r)=>e("li",{children:e(Ve,{link:t})},`main-menu-items-${r}`))})}),e("div",{})]})}),qe=r=>{var l,o,a,n,i;const{title:s,showAsHeading:d,subTitle:c,pricingDescription:m,primaryCta1:p,carouselImages:u,bottomLink:h,price:g,priceCallout:b,priceSuffix:f,checklist:x,checkPlansJSX:v}=r,y=null!=m?m:c,w=null!==(l=null==p?void 0:p.buttonLabel)&&void 0!==l?l:null==p?void 0:p.label,k=null!==(o=null==h?void 0:h.buttonLabel)&&void 0!==o?o:null==h?void 0:h.label;return e("div",{className:"component-container p-5 lg:p-0 lg:h-[724px]",children:t("div",{className:we("primary-hero-container mx-auto lg:p-4 lg:gap-4 lg:h-full flex flex-col sm:text-center lg:text-left sm:items-center lg:flex-row lg:justify-between lg:items-center lg:max-w-120"),children:[e("div",{className:we("relative flex flex-col text-white w-[485px]"),children:t("div",{className:"flex flex-col gap-5 lg:gap-6",children:[s&&e($e,{as:d?"h1":"h2",className:"heading2 lg:heading1 font-bold",children:s}),y&&e($e,{as:"p",className:"subheading3 lg:subheading1",children:y}),g?t("div",{className:"flex",children:[e("div",{className:"mr-2",children:b?b.split("|").map(t=>e($e,{as:"p",className:"body2",children:t})):null}),e($e,{as:"p",className:"subheading1",children:"$"}),e($e,{as:"p",className:"subheading5",children:g}),f?e($e,{as:"p",className:"subheading1",children:f}):null]}):null,x&&e(Ae,{listItemClassName:"text-white body2",items:x.map(e=>e.title)}),p&&w&&t("div",{className:we("hidden lg:flex flex-col gap-3"),children:[e(Pe,{...p,checkPlansJSX:v,buttonLabel:w}),h&&(k||(null==h?void 0:h.href))&&e("div",{children:e(De,{href:null!==(a=null==h?void 0:h.href)&&void 0!==a?a:"#",target:null==h?void 0:h.target,external:"_blank"===(null==h?void 0:h.target),className:"text-footnote text-white underline hover:opacity-90",children:k})})]}),!p&&h&&(k||(null==h?void 0:h.href))&&e("div",{className:"hidden lg:block",children:e(De,{href:null!==(n=null==h?void 0:h.href)&&void 0!==n?n:"#",target:null==h?void 0:h.target,external:"_blank"===(null==h?void 0:h.target),className:"text-footnote text-white underline hover:opacity-90",children:k})})]})}),t("div",{className:"lg:hidden",children:[e("div",{className:"my-8",children:u&&u[0]?e(Ee,{src:u[0],alt:"Hero",className:"object-cover aspect-[1.71:1] sm:aspect-[1.41:1] sm:h-[420px] object-center rounded-[40px]",width:350,height:205,loading:"eager"}):null}),h&&(k||(null==h?void 0:h.href))&&e("div",{children:e(De,{href:null!==(i=null==h?void 0:h.href)&&void 0!==i?i:"#",target:null==h?void 0:h.target,external:"_blank"===(null==h?void 0:h.target),className:"body3 text-white underline hover:opacity-90",children:k})})]}),e("div",{className:we("relative hidden lg:block"),children:u&&u[0]?e(Ee,{src:u[0],alt:"Hero",className:"rounded-[40px] aspect-square object-cover object-center",width:600,height:600,loading:"eager"}):null})]})})},Je=({fields:t})=>e("div",{children:e($e,{children:"Text Block"})}),Re=({fields:t})=>e("div",{children:e($e,{children:"Modal Block"})}),Xe=({children:r,background:l,className:o,fill:a="yellow",maxFit:n,show:i=!0,path:s="path2"})=>{const d=`${s}`,c={blue:"text-[#07B2E2]",green:"text-[#26B170]",yellow:"text-[#F5FF1E]",purple:"text-[#931D69]",white:"text-white",navy:"text-[#00002D]"},m={blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"},p="string"==typeof l&&l in m,u=p?m[l]:void 0,h=l&&!p?{background:l}:void 0,g=a in c?c[a]:"text-[#F5FF1E]";return i?t("div",{className:`shape-bg relative overflow-hidden ${null!=o?o:""} ${n?"max-content":""} ${null!=u?u:h?"":"bg-white"}`,style:h,children:["path1"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-2371px] z-0 translate-x-[-55%] ${d} fill-current ${g}`,width:"2262",height:"4359",viewBox:"0 0 2262 4359",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1838.72 444.021C2216.45 758.242 2351.22 1060.81 2202.83 1982.25C2062.95 2851.55 1923.57 4265.14 1394.48 4348.94C1079.75 4409.66 766.955 4172.68 508.523 4003.04C340.876 3884.89 192.855 3774.9 26.6866 3661.93C-27.6562 3624.7 8.69435 3542.15 74.1261 3555.69C415.628 3626.61 686.916 3615.36 942.942 3443.48C1410.95 3163.54 1632.32 2141.02 1629.56 1543.75C1637.51 910.76 1276.06 582.318 829.643 352.709C587.562 235.528 333.508 169.963 100.699 149.757C31.9431 143.965 25.0259 47.9703 92.459 33.1281C623.196 -84.6769 1404.59 131.886 1839.84 443.573"})}),"path2"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[45.8px] z-0 translate-x-[-101%] ${d} fill-current ${g}`,width:"3739",height:"3666",viewBox:"0 0 3739 3666",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1662.93 3664.31C2153.52 3637.23 2442.1 3474.65 2872.31 2646.41C3278.25 1865.09 4009.1 647.09 3634.26 264.38C3417.79 27.9944 3025.37 31.7818 2716.76 13.9013C2511.72 8.81634 2327.31 8.87399 2126.55 0.511773C2060.73 -2.00127 2040.7 85.9475 2101.3 114.087C2417.76 260.743 2628.86 431.51 2731.94 722.142C2940.79 1225.9 2508.91 2178.82 2150.63 2656.7C1779.64 3169.63 1293.64 3217.84 798.345 3136.04C534.128 3085.8 291.072 2986.97 92.1133 2864.4C33.4593 2828.06 -29.3236 2901.01 15.967 2953.13C371.841 3364.12 1128.29 3656.09 1663.56 3665.34"})}),"path3"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-2600px] z-0 translate-x-[-55%] ${d} fill-current ${g}`,width:"3044",height:"3248",viewBox:"0 0 3044 3248",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1.21857 1353.6C-0.931975 1765.46 120.504 2015.15 791.765 2417.01C1424.98 2796.19 2407.16 3469.31 2746.34 3175.04C2955.08 3005.86 2971.76 2677.32 3002.33 2420C3016.95 2248.7 3026.23 2094.39 3043.38 1926.83C3048.81 1871.88 2976.24 1850.67 2949.63 1899.96C2810.91 2157.33 2657.35 2325.33 2408.95 2396.88C1976.88 2546.15 1201.39 2136.59 819.655 1812.63C409.231 1476.27 393.475 1067.19 486.97 656.895C542.372 438.358 637.352 239.983 749.974 79.7081C783.347 32.4684 725.487 -23.7534 679.587 11.5067C317.699 288.49 35.1358 906.671 0.328344 1354.07"})}),"path4"===s&&e("svg",{className:`shape-bg-svg pointer-events-none absolute left-1/2 top-[-1966.1px] z-0 translate-x-[-48%] ${d} fill-current ${g}`,width:"3739",height:"3666",viewBox:"0 0 3739 3666",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",children:e("path",{d:"M1662.93 3664.31C2153.52 3637.23 2442.1 3474.65 2872.31 2646.41C3278.25 1865.1 4009.1 647.091 3634.26 264.381C3417.79 27.9951 3025.37 31.7826 2716.76 13.902C2511.72 8.81709 2327.31 8.87474 2126.55 0.512528C2060.73 -2.00052 2040.7 85.9483 2101.3 114.088C2417.76 260.743 2628.86 431.51 2731.94 722.143C2940.79 1225.9 2508.91 2178.82 2150.63 2656.7C1779.64 3169.63 1293.64 3217.84 798.345 3136.04C534.128 3085.8 291.072 2986.98 92.1133 2864.4C33.4593 2828.06 -29.3236 2901.01 15.967 2953.13C371.841 3364.12 1128.29 3656.09 1663.56 3665.34"})}),e("div",{className:"shape-bg-content relative z-[1]",children:r})]}):e("div",{className:o,style:h,children:r})},Ye=({title:r,background:l="white",button:o,color:a,contentAlignment:n,description:i,descriptionAlignment:s,enableHeading:d,subTitle:c,maxWidth:m=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[l]} component-container`,children:t("div",{className:`${m?"mx-auto max-w-120":""} flex flex-col text-${a} px-5 py-16 lg:px-13 lg:py-24`,children:[e($e,{as:d?"h1":"h2",className:`heading2 lg:heading1 text-${n}`,children:r}),e($e,{as:"h3",className:`subheading3 pt-2 lg:subheading1 lg:pt-3 text-${n}`,children:c}),e("div",{className:`pt-2 text-body1 lg:pt-3 text-${s}`,children:i}),e("div",{className:"flex justify-center pt-5 lg:pt-14",children:e(Pe,{...o})})]})}),Ke=({background:r="white",description:l,enableHeading:o,image:a,list:n=[],subTitle:i,title:s,maxWidth:d=!0})=>e("div",{className:`${{blue:"bg-[#07B2E2]",green:"bg-[#26B170]",yellow:"bg-[#F5FF1E]",purple:"bg-[#931D69]",white:"bg-white",navy:"bg-[#00002D]"}[r]} component-container`,children:t("div",{className:(d?"max-w-120 xl:mx-auto":"")+" mx-5 mb-5 mt-12 xl:my-20",children:[s&&e($e,{as:o?"h1":"h2",className:"heading2 md:heading1 md:text-center",children:s}),i&&e($e,{as:o?"h2":"h3",className:"heading3 mt-4 text-center",children:i}),t("div",{className:"mt-8 flex items-center xl:mt-16 xl:gap-10",children:[t("div",{className:"flex flex-col items-start gap-10 self-stretch xl:flex-[1_0_0]",children:[l&&e($e,{as:"p",className:"body1",children:l}),n.length>0&&e("ul",{className:"grid w-full grid-cols-2 gap-x-8 gap-y-4 lg:grid-cols-3",children:null==n?void 0:n.map((t,r)=>e("li",{children:e(De,{href:`/${t.code}`,className:"label1",children:t.name})},`item-list-${r}`))})]}),a&&e("aside",{className:"hidden xl:block",children:e(Ee,{width:472,height:100,src:a,alt:"image"})})]})]})});export{je as Accordion,Pe as Button,Ge as Callout,Be as Cards,Ie as Carousel,Ye as CtaCallout,Ke as FindKinetic,_e as FloatingBanner,Se as Footer,Te as ImagePromoBar,Re as Modal,Oe as Navigation,qe as PrimaryHero,Xe as ShapeBackgroundWrapper,Je as Text};
|
|
4
4
|
//# sourceMappingURL=index.esm.js.map
|