@windstream/react-shared-components 0.1.93 → 0.1.95
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.esm.js +2 -2
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +3 -3
- package/dist/contentful/index.js.map +1 -1
- package/dist/core.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/utils/index.esm.js +1 -1
- package/dist/utils/index.js +1 -1
- package/package.json +14 -8
- package/src/components/accordion/index.test.tsx +270 -0
- package/src/components/alert-card/index.test.tsx +152 -0
- package/src/components/animation-wrapper/index.test.tsx +424 -0
- package/src/components/brand-button/index.test.tsx +292 -0
- package/src/components/button/index.test.tsx +91 -0
- package/src/components/call-button/index.test.tsx +260 -0
- package/src/components/checkbox/index.test.tsx +252 -0
- package/src/components/checklist/index.test.tsx +231 -0
- package/src/components/checklist/index.tsx +64 -29
- package/src/components/checklist/types.ts +7 -1
- package/src/components/collapse/index.test.tsx +277 -0
- package/src/components/collapse/index.tsx +1 -0
- package/src/components/divider/index.test.tsx +53 -0
- package/src/components/image/index.test.tsx +174 -0
- package/src/components/input/index.test.tsx +348 -0
- package/src/components/link/index.test.tsx +199 -0
- package/src/components/list/index.test.tsx +166 -0
- package/src/components/material-icon/index.test.tsx +130 -0
- package/src/components/modal/index.test.tsx +310 -0
- package/src/components/next-image/index.test.tsx +406 -0
- package/src/components/pagination/index.test.tsx +521 -0
- package/src/components/radio-button/index.test.tsx +151 -0
- package/src/components/see-more/index.test.tsx +96 -0
- package/src/components/select/index.test.tsx +256 -0
- package/src/components/select-plan-button/index.test.tsx +173 -0
- package/src/components/skeleton/index.test.tsx +74 -0
- package/src/components/spinner/index.test.tsx +76 -0
- package/src/components/text/index.test.tsx +65 -0
- package/src/components/tooltip/index.test.tsx +50 -0
- package/src/components/view-cart-button/index.test.tsx +57 -0
- package/src/contentful/blocks/accordion/index.test.tsx +218 -0
- package/src/contentful/blocks/accordion/index.tsx +3 -1
- package/src/contentful/blocks/address-input-banner/index.test.tsx +132 -0
- package/src/contentful/blocks/anchored-bottom-banner/index.test.tsx +287 -0
- package/src/contentful/blocks/blogs-grid/BlogGrid.stories.tsx +5 -4
- package/src/contentful/blocks/blogs-grid/index.test.tsx +355 -0
- package/src/contentful/blocks/blogs-grid-base/index.test.tsx +274 -0
- package/src/contentful/blocks/breadcrumbs/index.test.tsx +281 -0
- package/src/contentful/blocks/button/index.test.tsx +339 -0
- package/src/contentful/blocks/callout/index.test.tsx +539 -0
- package/src/contentful/blocks/cards/blog-card/index.test.tsx +218 -0
- package/src/contentful/blocks/cards/floating-image-card/index.test.tsx +201 -0
- package/src/contentful/blocks/cards/full-image-card/index.test.tsx +216 -0
- package/src/contentful/blocks/cards/index.test.tsx +39 -0
- package/src/contentful/blocks/cards/product-card/index.test.tsx +263 -0
- package/src/contentful/blocks/cards/simple-card/index.test.tsx +364 -0
- package/src/contentful/blocks/cards/simple-card/index.tsx +1 -1
- package/src/contentful/blocks/cards/testimonial-card/index.test.tsx +180 -0
- package/src/contentful/blocks/carousel/helper.test.tsx +539 -0
- package/src/contentful/blocks/carousel/index.test.tsx +308 -0
- package/src/contentful/blocks/carousel/types.test.ts +16 -0
- package/src/contentful/blocks/cart-retention-banner/index.test.tsx +409 -0
- package/src/contentful/blocks/cart-retention-banner/index.tsx +4 -4
- package/src/contentful/blocks/comparison-table/index.test.tsx +114 -0
- package/src/contentful/blocks/cookiebanner/index.test.tsx +277 -0
- package/src/contentful/blocks/cta-callout/index.test.tsx +244 -0
- package/src/contentful/blocks/dynamic-tabs/index.test.tsx +240 -0
- package/src/contentful/blocks/email-input-block/index.test.tsx +213 -0
- package/src/contentful/blocks/email-input-block/index.tsx +40 -35
- package/src/contentful/blocks/find-kinetic/index.test.tsx +269 -0
- package/src/contentful/blocks/floating-banner/index.test.tsx +246 -0
- package/src/contentful/blocks/footer/index.test.tsx +302 -0
- package/src/contentful/blocks/image-promo-bar/helper.test.tsx +61 -0
- package/src/contentful/blocks/image-promo-bar/index.test.tsx +467 -0
- package/src/contentful/blocks/image-promo-bar/index.tsx +248 -246
- package/src/contentful/blocks/image-promo-bar/vimeo-embed.test.tsx +142 -0
- package/src/contentful/blocks/image-promo-bar/youtube-embed.test.tsx +104 -0
- package/src/contentful/blocks/modal/index.test.tsx +209 -0
- package/src/contentful/blocks/navigation/desktop-link-groups.tsx/index.test.tsx +208 -0
- package/src/contentful/blocks/navigation/index.test.tsx +924 -0
- package/src/contentful/blocks/navigation/mobile-link-groups.tsx/index.test.tsx +131 -0
- package/src/contentful/blocks/primary-hero/index.test.tsx +286 -0
- package/src/contentful/blocks/primary-hero/index.tsx +7 -4
- package/src/contentful/blocks/search-block/index.test.tsx +268 -0
- package/src/contentful/blocks/shape-background-wrapper/index.test.tsx +284 -0
- package/src/contentful/blocks/text/index.test.tsx +36 -0
- package/src/contentful/index.test.ts +45 -0
- package/src/global-mocks/contentful/to-document.ts +25 -0
- package/src/global-mocks/cookie.ts +48 -0
- package/src/global-mocks/cx.ts +37 -0
- package/src/global-mocks/index.ts +89 -0
- package/src/global-mocks/speed-card-bg.ts +27 -0
- package/src/global-mocks/utm.ts +49 -0
- package/src/hooks/contentful/use-contentful-rich-text.test.tsx +1758 -0
- package/src/hooks/contentful/use-contentful-rich-text.tsx +1 -1
- package/src/hooks/contentful/use-processed-check-list.test.tsx +277 -0
- package/src/hooks/use-body-scroll-lock.test.ts +134 -0
- package/src/hooks/use-carousel-swipe.test.ts +393 -0
- package/src/hooks/use-outside-click.test.ts +142 -0
- package/src/index.ts +1 -1
- package/src/next/index.test.ts +7 -0
- package/src/setupTests.ts +17 -11
- package/src/utils/contentful/to-document.test.ts +85 -0
- package/src/utils/cookie.test.ts +180 -0
- package/src/utils/cx.test.ts +90 -0
- package/src/utils/index.test.ts +115 -0
- package/src/utils/speed-card-bg.test.ts +46 -0
- package/src/utils/utm.test.ts +359 -0
package/dist/core.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import { Props as Props$1 } from 'react-select';
|
|
|
15
15
|
import { TextVariant as TextVariant$1 } from '@shared/components/text';
|
|
16
16
|
import { ButtonProps as ButtonProps$2 } from '@shared/components/brand-button/types';
|
|
17
17
|
import { ChecklistProps } from '@shared/components/checklist/types';
|
|
18
|
-
export { ChecklistProps } from '@shared/components/checklist/types';
|
|
18
|
+
export { ChecklistItem, ChecklistProps } from '@shared/components/checklist/types';
|
|
19
19
|
import { SeeMoreProps } from '@shared/components/see-more/types';
|
|
20
20
|
export { SeeMoreProps } from '@shared/components/see-more/types';
|
|
21
21
|
import { ButtonProps as ButtonProps$3 } from '@shared/contentful/blocks/button/types';
|
|
@@ -64,7 +64,7 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAtt
|
|
|
64
64
|
size?: "slim" | "medium" | "large" | undefined;
|
|
65
65
|
label?: string | undefined;
|
|
66
66
|
errorText?: string | undefined;
|
|
67
|
-
prefixIconName?: "
|
|
67
|
+
prefixIconName?: "search" | "location_on" | undefined;
|
|
68
68
|
prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
|
|
69
69
|
prefixIconFill?: boolean | undefined;
|
|
70
70
|
suffixIconFill?: boolean | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import { Props as Props$1 } from 'react-select';
|
|
|
15
15
|
import { TextVariant as TextVariant$1 } from '@shared/components/text';
|
|
16
16
|
import { ButtonProps as ButtonProps$2 } from '@shared/components/brand-button/types';
|
|
17
17
|
import { ChecklistProps } from '@shared/components/checklist/types';
|
|
18
|
-
export { ChecklistProps } from '@shared/components/checklist/types';
|
|
18
|
+
export { ChecklistItem, ChecklistProps } from '@shared/components/checklist/types';
|
|
19
19
|
import { SeeMoreProps } from '@shared/components/see-more/types';
|
|
20
20
|
export { SeeMoreProps } from '@shared/components/see-more/types';
|
|
21
21
|
import { ButtonProps as ButtonProps$3 } from '@shared/contentful/blocks/button/types';
|
|
@@ -64,7 +64,7 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAtt
|
|
|
64
64
|
size?: "slim" | "medium" | "large" | undefined;
|
|
65
65
|
label?: string | undefined;
|
|
66
66
|
errorText?: string | undefined;
|
|
67
|
-
prefixIconName?: "
|
|
67
|
+
prefixIconName?: "location_on" | "search" | undefined;
|
|
68
68
|
prefixIconSize?: 20 | 24 | 40 | 48 | undefined;
|
|
69
69
|
prefixIconFill?: boolean | undefined;
|
|
70
70
|
suffixIconFill?: boolean | undefined;
|
package/dist/index.esm.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import{jsx as e,jsxs as t,Fragment as n}from"react/jsx-runtime";import*as o from"react";import r,{forwardRef as i,useState as s,useCallback as a,useEffect as l,useMemo as c,useRef as u,useContext as d,useLayoutEffect as p,createContext as f,Component as h,Fragment as m,useInsertionEffect as g,createElement as b,useId as v}from"react";import y from"next/link";import I from"next/image";import x,{createPortal as C}from"react-dom";function A(e){var t,n,o="";if("string"==typeof e||"number"==typeof e)o+=e;else if("object"==typeof e)if(Array.isArray(e)){var r=e.length;for(t=0;t<r;t++)e[t]&&(n=A(e[t]))&&(o&&(o+=" "),o+=n)}else for(n in e)e[n]&&(o&&(o+=" "),o+=n);return o}function w(){for(var e,t,n=0,o="",r=arguments.length;n<r;n++)(e=arguments[n])&&(t=A(e))&&(o&&(o+=" "),o+=t);return o}const E=e=>{const t=R(e),{conflictingClassGroups:n,conflictingClassGroupModifiers:o}=e;return{getClassGroupId:e=>{const n=e.split("-");return""===n[0]&&1!==n.length&&n.shift(),N(n,t)||T(e)},getConflictingClassGroupIds:(e,t)=>{const r=n[e]||[];return t&&o[e]?[...r,...o[e]]:r}}},N=(e,t)=>{if(0===e.length)return t.classGroupId;const n=e[0],o=t.nextPart.get(n),r=o?N(e.slice(1),o):void 0;if(r)return r;if(0===t.validators.length)return;const i=e.join("-");return t.validators.find(({validator:e})=>e(i))?.classGroupId},G=/^\[(.+)\]$/,T=e=>{if(G.test(e)){const t=G.exec(e)[1],n=t?.substring(0,t.indexOf(":"));if(n)return"arbitrary.."+n}},R=e=>{const{theme:t,classGroups:n}=e,o={nextPart:new Map,validators:[]};for(const e in n)P(n[e],o,e,t);return o},P=(e,t,n,o)=>{e.forEach(e=>{if("string"==typeof e){return void((""===e?t:S(t,e)).classGroupId=n)}if("function"==typeof e)return V(e)?void P(e(o),t,n,o):void t.validators.push({validator:e,classGroupId:n});Object.entries(e).forEach(([e,r])=>{P(r,S(t,e),n,o)})})},S=(e,t)=>{let n=e;return t.split("-").forEach(e=>{n.nextPart.has(e)||n.nextPart.set(e,{nextPart:new Map,validators:[]}),n=n.nextPart.get(e)}),n},V=e=>e.isThemeGetter,B=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,n=new Map,o=new Map;const r=(r,i)=>{n.set(r,i),t++,t>e&&(t=0,o=n,n=new Map)};return{get(e){let t=n.get(e);return void 0!==t?t:void 0!==(t=o.get(e))?(r(e,t),t):void 0},set(e,t){n.has(e)?n.set(e,t):r(e,t)}}},k=e=>{const{prefix:t,experimentalParseClassName:n}=e;let o=e=>{const t=[];let n,o=0,r=0,i=0;for(let s=0;s<e.length;s++){let a=e[s];if(0===o&&0===r){if(":"===a){t.push(e.slice(i,s)),i=s+1;continue}if("/"===a){n=s;continue}}"["===a?o++:"]"===a?o--:"("===a?r++:")"===a&&r--}const s=0===t.length?e:e.substring(i),a=O(s);return{modifiers:t,hasImportantModifier:a!==s,baseClassName:a,maybePostfixModifierPosition:n&&n>i?n-i:void 0}};if(t){const e=t+":",n=o;o=t=>t.startsWith(e)?n(t.substring(e.length)):{isExternal:!0,modifiers:[],hasImportantModifier:!1,baseClassName:t,maybePostfixModifierPosition:void 0}}if(n){const e=o;o=t=>n({className:t,parseClassName:e})}return o},O=e=>e.endsWith("!")?e.substring(0,e.length-1):e.startsWith("!")?e.substring(1):e,M=e=>{const t=Object.fromEntries(e.orderSensitiveModifiers.map(e=>[e,!0]));return e=>{if(e.length<=1)return e;const n=[];let o=[];return e.forEach(e=>{"["===e[0]||t[e]?(n.push(...o.sort(),e),o=[]):o.push(e)}),n.push(...o.sort()),n}},D=/\s+/;function L(){let e,t,n=0,o="";for(;n<arguments.length;)(e=arguments[n++])&&(t=X(e))&&(o&&(o+=" "),o+=t);return o}const X=e=>{if("string"==typeof e)return e;let t,n="";for(let o=0;o<e.length;o++)e[o]&&(t=X(e[o]))&&(n&&(n+=" "),n+=t);return n};function W(e,...t){let n,o,r,i=function(a){const l=t.reduce((e,t)=>t(e),e());return n=(e=>({cache:B(e.cacheSize),parseClassName:k(e),sortModifiers:M(e),...E(e)}))(l),o=n.cache.get,r=n.cache.set,i=s,s(a)};function s(e){const t=o(e);if(t)return t;const i=((e,t)=>{const{parseClassName:n,getClassGroupId:o,getConflictingClassGroupIds:r,sortModifiers:i}=t,s=[],a=e.trim().split(D);let l="";for(let e=a.length-1;e>=0;e-=1){const t=a[e],{isExternal:c,modifiers:u,hasImportantModifier:d,baseClassName:p,maybePostfixModifierPosition:f}=n(t);if(c){l=t+(l.length>0?" "+l:l);continue}let h=!!f,m=o(h?p.substring(0,f):p);if(!m){if(!h){l=t+(l.length>0?" "+l:l);continue}if(m=o(p),!m){l=t+(l.length>0?" "+l:l);continue}h=!1}const g=i(u).join(":"),b=d?g+"!":g,v=b+m;if(s.includes(v))continue;s.push(v);const y=r(m,h);for(let e=0;e<y.length;++e){const t=y[e];s.push(b+t)}l=t+(l.length>0?" "+l:l)}return l})(e,n);return r(e,i),i}return function(){return i(L.apply(null,arguments))}}const H=e=>{const t=t=>t[e]||[];return t.isThemeGetter=!0,t},F=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,j=/^\((?:(\w[\w-]*):)?(.+)\)$/i,Z=/^\d+\/\d+$/,z=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,Y=/\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)\(.+\)$/,U=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,_=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,Q=e=>Z.test(e),$=e=>!!e&&!Number.isNaN(Number(e)),K=e=>!!e&&Number.isInteger(Number(e)),q=e=>e.endsWith("%")&&$(e.slice(0,-1)),ee=e=>z.test(e),te=()=>!0,ne=e=>Y.test(e)&&!J.test(e),oe=()=>!1,re=e=>U.test(e),ie=e=>_.test(e),se=e=>!le(e)&&!he(e),ae=e=>xe(e,Ee,oe),le=e=>F.test(e),ce=e=>xe(e,Ne,ne),ue=e=>xe(e,Ge,$),de=e=>xe(e,Ae,oe),pe=e=>xe(e,we,ie),fe=e=>xe(e,Re,re),he=e=>j.test(e),me=e=>Ce(e,Ne),ge=e=>Ce(e,Te),be=e=>Ce(e,Ae),ve=e=>Ce(e,Ee),ye=e=>Ce(e,we),Ie=e=>Ce(e,Re,!0),xe=(e,t,n)=>{const o=F.exec(e);return!!o&&(o[1]?t(o[1]):n(o[2]))},Ce=(e,t,n=!1)=>{const o=j.exec(e);return!!o&&(o[1]?t(o[1]):n)},Ae=e=>"position"===e||"percentage"===e,we=e=>"image"===e||"url"===e,Ee=e=>"length"===e||"size"===e||"bg-size"===e,Ne=e=>"length"===e,Ge=e=>"number"===e,Te=e=>"family-name"===e,Re=e=>"shadow"===e,Pe=()=>{const e=H("color"),t=H("font"),n=H("text"),o=H("font-weight"),r=H("tracking"),i=H("leading"),s=H("breakpoint"),a=H("container"),l=H("spacing"),c=H("radius"),u=H("shadow"),d=H("inset-shadow"),p=H("text-shadow"),f=H("drop-shadow"),h=H("blur"),m=H("perspective"),g=H("aspect"),b=H("ease"),v=H("animate"),y=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom",he,le],I=()=>[he,le,l],x=()=>[Q,"full","auto",...I()],C=()=>[K,"none","subgrid",he,le],A=()=>["auto",{span:["full",K,he,le]},K,he,le],w=()=>[K,"auto",he,le],E=()=>["auto","min","max","fr",he,le],N=()=>["auto",...I()],G=()=>[Q,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...I()],T=()=>[e,he,le],R=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom",be,de,{position:[he,le]}],P=()=>["auto","cover","contain",ve,ae,{size:[he,le]}],S=()=>[q,me,ce],V=()=>["","none","full",c,he,le],B=()=>["",$,me,ce],k=()=>[$,q,be,de],O=()=>["","none",h,he,le],M=()=>["none",$,he,le],D=()=>["none",$,he,le],L=()=>[$,he,le],X=()=>[Q,"full",...I()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[ee],breakpoint:[ee],color:[te],container:[ee],"drop-shadow":[ee],ease:["in","out","in-out"],font:[se],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[ee],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[ee],shadow:[ee],spacing:["px",$],text:[ee],"text-shadow":[ee],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",Q,le,he,g]}],container:["container"],columns:[{columns:[$,le,he,a]}],"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:y()}],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:x()}],"inset-x":[{"inset-x":x()}],"inset-y":[{"inset-y":x()}],start:[{start:x()}],end:[{end:x()}],top:[{top:x()}],right:[{right:x()}],bottom:[{bottom:x()}],left:[{left:x()}],visibility:["visible","invisible","collapse"],z:[{z:[K,"auto",he,le]}],basis:[{basis:[Q,"full","auto",a,...I()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[$,Q,"auto","initial","none",le]}],grow:[{grow:["",$,he,le]}],shrink:[{shrink:["",$,he,le]}],order:[{order:[K,"first","last","none",he,le]}],"grid-cols":[{"grid-cols":C()}],"col-start-end":[{col:A()}],"col-start":[{"col-start":w()}],"col-end":[{"col-end":w()}],"grid-rows":[{"grid-rows":C()}],"row-start-end":[{row:A()}],"row-start":[{"row-start":w()}],"row-end":[{"row-end":w()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":E()}],"auto-rows":[{"auto-rows":E()}],gap:[{gap:I()}],"gap-x":[{"gap-x":I()}],"gap-y":[{"gap-y":I()}],"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:I()}],px:[{px:I()}],py:[{py:I()}],ps:[{ps:I()}],pe:[{pe:I()}],pt:[{pt:I()}],pr:[{pr:I()}],pb:[{pb:I()}],pl:[{pl:I()}],m:[{m:N()}],mx:[{mx:N()}],my:[{my:N()}],ms:[{ms:N()}],me:[{me:N()}],mt:[{mt:N()}],mr:[{mr:N()}],mb:[{mb:N()}],ml:[{ml:N()}],"space-x":[{"space-x":I()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":I()}],"space-y-reverse":["space-y-reverse"],size:[{size:G()}],w:[{w:[a,"screen",...G()]}],"min-w":[{"min-w":[a,"screen","none",...G()]}],"max-w":[{"max-w":[a,"screen","none","prose",{screen:[s]},...G()]}],h:[{h:["screen","lh",...G()]}],"min-h":[{"min-h":["screen","lh","none",...G()]}],"max-h":[{"max-h":["screen","lh",...G()]}],"font-size":[{text:["base",n,me,ce]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[o,he,ue]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",q,le]}],"font-family":[{font:[ge,le,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:[r,he,le]}],"line-clamp":[{"line-clamp":[$,"none",he,ue]}],leading:[{leading:[i,...I()]}],"list-image":[{"list-image":["none",he,le]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",he,le]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:T()}],"text-color":[{text:T()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","wavy"]}],"text-decoration-thickness":[{decoration:[$,"from-font","auto",he,ce]}],"text-decoration-color":[{decoration:T()}],"underline-offset":[{"underline-offset":[$,"auto",he,le]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:I()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",he,le]}],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",he,le]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:R()}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","space","round"]}]}],"bg-size":[{bg:P()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},K,he,le],radial:["",he,le],conic:[K,he,le]},ye,pe]}],"bg-color":[{bg:T()}],"gradient-from-pos":[{from:S()}],"gradient-via-pos":[{via:S()}],"gradient-to-pos":[{to:S()}],"gradient-from":[{from:T()}],"gradient-via":[{via:T()}],"gradient-to":[{to:T()}],rounded:[{rounded:V()}],"rounded-s":[{"rounded-s":V()}],"rounded-e":[{"rounded-e":V()}],"rounded-t":[{"rounded-t":V()}],"rounded-r":[{"rounded-r":V()}],"rounded-b":[{"rounded-b":V()}],"rounded-l":[{"rounded-l":V()}],"rounded-ss":[{"rounded-ss":V()}],"rounded-se":[{"rounded-se":V()}],"rounded-ee":[{"rounded-ee":V()}],"rounded-es":[{"rounded-es":V()}],"rounded-tl":[{"rounded-tl":V()}],"rounded-tr":[{"rounded-tr":V()}],"rounded-br":[{"rounded-br":V()}],"rounded-bl":[{"rounded-bl":V()}],"border-w":[{border:B()}],"border-w-x":[{"border-x":B()}],"border-w-y":[{"border-y":B()}],"border-w-s":[{"border-s":B()}],"border-w-e":[{"border-e":B()}],"border-w-t":[{"border-t":B()}],"border-w-r":[{"border-r":B()}],"border-w-b":[{"border-b":B()}],"border-w-l":[{"border-l":B()}],"divide-x":[{"divide-x":B()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":B()}],"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:T()}],"border-color-x":[{"border-x":T()}],"border-color-y":[{"border-y":T()}],"border-color-s":[{"border-s":T()}],"border-color-e":[{"border-e":T()}],"border-color-t":[{"border-t":T()}],"border-color-r":[{"border-r":T()}],"border-color-b":[{"border-b":T()}],"border-color-l":[{"border-l":T()}],"divide-color":[{divide:T()}],"outline-style":[{outline:["solid","dashed","dotted","double","none","hidden"]}],"outline-offset":[{"outline-offset":[$,he,le]}],"outline-w":[{outline:["",$,me,ce]}],"outline-color":[{outline:T()}],shadow:[{shadow:["","none",u,Ie,fe]}],"shadow-color":[{shadow:T()}],"inset-shadow":[{"inset-shadow":["none",d,Ie,fe]}],"inset-shadow-color":[{"inset-shadow":T()}],"ring-w":[{ring:B()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:T()}],"ring-offset-w":[{"ring-offset":[$,ce]}],"ring-offset-color":[{"ring-offset":T()}],"inset-ring-w":[{"inset-ring":B()}],"inset-ring-color":[{"inset-ring":T()}],"text-shadow":[{"text-shadow":["none",p,Ie,fe]}],"text-shadow-color":[{"text-shadow":T()}],opacity:[{opacity:[$,he,le]}],"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":k()}],"mask-image-linear-to-pos":[{"mask-linear-to":k()}],"mask-image-linear-from-color":[{"mask-linear-from":T()}],"mask-image-linear-to-color":[{"mask-linear-to":T()}],"mask-image-t-from-pos":[{"mask-t-from":k()}],"mask-image-t-to-pos":[{"mask-t-to":k()}],"mask-image-t-from-color":[{"mask-t-from":T()}],"mask-image-t-to-color":[{"mask-t-to":T()}],"mask-image-r-from-pos":[{"mask-r-from":k()}],"mask-image-r-to-pos":[{"mask-r-to":k()}],"mask-image-r-from-color":[{"mask-r-from":T()}],"mask-image-r-to-color":[{"mask-r-to":T()}],"mask-image-b-from-pos":[{"mask-b-from":k()}],"mask-image-b-to-pos":[{"mask-b-to":k()}],"mask-image-b-from-color":[{"mask-b-from":T()}],"mask-image-b-to-color":[{"mask-b-to":T()}],"mask-image-l-from-pos":[{"mask-l-from":k()}],"mask-image-l-to-pos":[{"mask-l-to":k()}],"mask-image-l-from-color":[{"mask-l-from":T()}],"mask-image-l-to-color":[{"mask-l-to":T()}],"mask-image-x-from-pos":[{"mask-x-from":k()}],"mask-image-x-to-pos":[{"mask-x-to":k()}],"mask-image-x-from-color":[{"mask-x-from":T()}],"mask-image-x-to-color":[{"mask-x-to":T()}],"mask-image-y-from-pos":[{"mask-y-from":k()}],"mask-image-y-to-pos":[{"mask-y-to":k()}],"mask-image-y-from-color":[{"mask-y-from":T()}],"mask-image-y-to-color":[{"mask-y-to":T()}],"mask-image-radial":[{"mask-radial":[he,le]}],"mask-image-radial-from-pos":[{"mask-radial-from":k()}],"mask-image-radial-to-pos":[{"mask-radial-to":k()}],"mask-image-radial-from-color":[{"mask-radial-from":T()}],"mask-image-radial-to-color":[{"mask-radial-to":T()}],"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":k()}],"mask-image-conic-to-pos":[{"mask-conic-to":k()}],"mask-image-conic-from-color":[{"mask-conic-from":T()}],"mask-image-conic-to-color":[{"mask-conic-to":T()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:R()}],"mask-repeat":[{mask:["no-repeat",{repeat:["","x","y","space","round"]}]}],"mask-size":[{mask:P()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",he,le]}],filter:[{filter:["","none",he,le]}],blur:[{blur:O()}],brightness:[{brightness:[$,he,le]}],contrast:[{contrast:[$,he,le]}],"drop-shadow":[{"drop-shadow":["","none",f,Ie,fe]}],"drop-shadow-color":[{"drop-shadow":T()}],grayscale:[{grayscale:["",$,he,le]}],"hue-rotate":[{"hue-rotate":[$,he,le]}],invert:[{invert:["",$,he,le]}],saturate:[{saturate:[$,he,le]}],sepia:[{sepia:["",$,he,le]}],"backdrop-filter":[{"backdrop-filter":["","none",he,le]}],"backdrop-blur":[{"backdrop-blur":O()}],"backdrop-brightness":[{"backdrop-brightness":[$,he,le]}],"backdrop-contrast":[{"backdrop-contrast":[$,he,le]}],"backdrop-grayscale":[{"backdrop-grayscale":["",$,he,le]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[$,he,le]}],"backdrop-invert":[{"backdrop-invert":["",$,he,le]}],"backdrop-opacity":[{"backdrop-opacity":[$,he,le]}],"backdrop-saturate":[{"backdrop-saturate":[$,he,le]}],"backdrop-sepia":[{"backdrop-sepia":["",$,he,le]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":I()}],"border-spacing-x":[{"border-spacing-x":I()}],"border-spacing-y":[{"border-spacing-y":I()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",he,le]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[$,"initial",he,le]}],ease:[{ease:["linear","initial",b,he,le]}],delay:[{delay:[$,he,le]}],animate:[{animate:["none",v,he,le]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[m,he,le]}],"perspective-origin":[{"perspective-origin":y()}],rotate:[{rotate:M()}],"rotate-x":[{"rotate-x":M()}],"rotate-y":[{"rotate-y":M()}],"rotate-z":[{"rotate-z":M()}],scale:[{scale:D()}],"scale-x":[{"scale-x":D()}],"scale-y":[{"scale-y":D()}],"scale-z":[{"scale-z":D()}],"scale-3d":["scale-3d"],skew:[{skew:L()}],"skew-x":[{"skew-x":L()}],"skew-y":[{"skew-y":L()}],transform:[{transform:[he,le,"","none","gpu","cpu"]}],"transform-origin":[{origin:y()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:X()}],"translate-x":[{"translate-x":X()}],"translate-y":[{"translate-y":X()}],"translate-z":[{"translate-z":X()}],"translate-none":["translate-none"],accent:[{accent:T()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:T()}],"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",he,le]}],"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":I()}],"scroll-mx":[{"scroll-mx":I()}],"scroll-my":[{"scroll-my":I()}],"scroll-ms":[{"scroll-ms":I()}],"scroll-me":[{"scroll-me":I()}],"scroll-mt":[{"scroll-mt":I()}],"scroll-mr":[{"scroll-mr":I()}],"scroll-mb":[{"scroll-mb":I()}],"scroll-ml":[{"scroll-ml":I()}],"scroll-p":[{"scroll-p":I()}],"scroll-px":[{"scroll-px":I()}],"scroll-py":[{"scroll-py":I()}],"scroll-ps":[{"scroll-ps":I()}],"scroll-pe":[{"scroll-pe":I()}],"scroll-pt":[{"scroll-pt":I()}],"scroll-pr":[{"scroll-pr":I()}],"scroll-pb":[{"scroll-pb":I()}],"scroll-pl":[{"scroll-pl":I()}],"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",he,le]}],fill:[{fill:["none",...T()]}],"stroke-w":[{stroke:[$,me,ce,ue]}],stroke:[{stroke:["none",...T()]}],"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"]}},Se=(e,t,n)=>{void 0!==n&&(e[t]=n)},Ve=(e,t)=>{if(t)for(const n in t)Se(e,n,t[n])},Be=(e,t)=>{if(t)for(const n in t)ke(e,t,n)},ke=(e,t,n)=>{const o=t[n];void 0!==o&&(e[n]=e[n]?e[n].concat(o):o)},Oe=((e,...t)=>"function"==typeof e?W(Pe,e,...t):W(()=>((e,{cacheSize:t,prefix:n,experimentalParseClassName:o,extend:r={},override:i={}})=>(Se(e,"cacheSize",t),Se(e,"prefix",n),Se(e,"experimentalParseClassName",o),Ve(e.theme,i.theme),Ve(e.classGroups,i.classGroups),Ve(e.conflictingClassGroups,i.conflictingClassGroups),Ve(e.conflictingClassGroupModifiers,i.conflictingClassGroupModifiers),Se(e,"orderSensitiveModifiers",i.orderSensitiveModifiers),Be(e.theme,r.theme),Be(e.classGroups,r.classGroups),Be(e.conflictingClassGroups,r.conflictingClassGroups),Be(e.conflictingClassGroupModifiers,r.conflictingClassGroupModifiers),ke(e,r,"orderSensitiveModifiers"),e))(Pe(),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"]}}}),Me=(...e)=>Oe(w(...e));
|
|
4
4
|
/*! js-cookie v3.0.5 | MIT */
|
|
5
|
-
function De(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)e[o]=n[o]}return e}!function e(t,n){function o(e,o,r){if("undefined"!=typeof document){"number"==typeof(r=De({},n,r)).expires&&(r.expires=new Date(Date.now()+864e5*r.expires)),r.expires&&(r.expires=r.expires.toUTCString()),e=encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var i="";for(var s in r)r[s]&&(i+="; "+s,!0!==r[s]&&(i+="="+r[s].split(";")[0]));return document.cookie=e+"="+t.write(o,e)+i}}return Object.create({set:o,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var n=document.cookie?document.cookie.split("; "):[],o={},r=0;r<n.length;r++){var i=n[r].split("="),s=i.slice(1).join("=");try{var a=decodeURIComponent(i[0]);if(o[a]=t.read(s,a),e===a)break}catch(e){}}return e?o[e]:o}},remove:function(e,t){o(e,"",De({},t,{expires:-1}))},withAttributes:function(t){return e(this.converter,De({},this.attributes,t))},withConverter:function(t){return e(De({},this.converter,t),this.attributes)}},{attributes:{value:Object.freeze(n)},converter:{value:Object.freeze(t)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"});var Le=function(e){return e.DOCUMENT="document",e.PARAGRAPH="paragraph",e.HEADING_1="heading-1",e.HEADING_2="heading-2",e.HEADING_3="heading-3",e.HEADING_4="heading-4",e.HEADING_5="heading-5",e.HEADING_6="heading-6",e.OL_LIST="ordered-list",e.UL_LIST="unordered-list",e.LIST_ITEM="list-item",e.HR="hr",e.QUOTE="blockquote",e.EMBEDDED_ENTRY="embedded-entry-block",e.EMBEDDED_ASSET="embedded-asset-block",e.EMBEDDED_RESOURCE="embedded-resource-block",e.TABLE="table",e.TABLE_ROW="table-row",e.TABLE_CELL="table-cell",e.TABLE_HEADER_CELL="table-header-cell",e}({}),Xe=function(e){return e.ASSET_HYPERLINK="asset-hyperlink",e.EMBEDDED_ENTRY="embedded-entry-inline",e.EMBEDDED_RESOURCE="embedded-resource-inline",e.ENTRY_HYPERLINK="entry-hyperlink",e.HYPERLINK="hyperlink",e.RESOURCE_HYPERLINK="resource-hyperlink",e}({});const We=[Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.OL_LIST,Le.UL_LIST,Le.HR,Le.QUOTE,Le.EMBEDDED_ENTRY,Le.EMBEDDED_ASSET,Le.EMBEDDED_RESOURCE,Le.TABLE],He=[Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.OL_LIST,Le.UL_LIST,Le.HR,Le.QUOTE,Le.EMBEDDED_ENTRY,Le.EMBEDDED_ASSET,Le.EMBEDDED_RESOURCE];Le.TABLE,Le.TABLE_ROW,Le.TABLE_CELL,Le.TABLE_HEADER_CELL,Le.HR,Le.EMBEDDED_ENTRY,Le.EMBEDDED_ASSET,Le.EMBEDDED_RESOURCE;const Fe={[Le.OL_LIST]:[Le.LIST_ITEM],[Le.UL_LIST]:[Le.LIST_ITEM],[Le.LIST_ITEM]:He,[Le.QUOTE]:[Le.PARAGRAPH],[Le.TABLE]:[Le.TABLE_ROW],[Le.TABLE_ROW]:[Le.TABLE_CELL,Le.TABLE_HEADER_CELL],[Le.TABLE_CELL]:[Le.PARAGRAPH,Le.UL_LIST,Le.OL_LIST],[Le.TABLE_HEADER_CELL]:[Le.PARAGRAPH]};Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6;Le.PARAGRAPH,Le.DOCUMENT,Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.OL_LIST,Le.UL_LIST,Le.LIST_ITEM,Le.HR,Le.QUOTE,Le.EMBEDDED_ENTRY,Le.EMBEDDED_ASSET,Xe.HYPERLINK,Xe.ENTRY_HYPERLINK,Xe.ASSET_HYPERLINK,Xe.EMBEDDED_ENTRY,Le.DOCUMENT,Le.PARAGRAPH;const je=({path:e,property:t,typeName:n,value:o})=>({details:`The type of "${t}" is incorrect, expected type: ${n}`,name:"type",path:e.toArray(),type:n,value:o});class Ze{obj;path;_errors=[];constructor(e,t){this.obj=e,this.path=t}catch=(...e)=>{this._errors.push(...e)};get errors(){const e=e=>JSON.stringify({details:e.details,path:e.path});return this._errors.filter((t,n)=>this._errors.findIndex(n=>e(t)===e(n))===n)}exists=e=>e in this.obj||(this.catch((({property:e,path:t})=>({details:`The property "${e}" is required here`,name:"required",path:t.toArray()}))({property:e,path:this.path.of(e)})),!1);object=e=>{const t=e?this.obj[e]:this.obj;if(e&&!this.exists(e))return!1;if("object"==typeof t&&!Array.isArray(t)&&null!==t)return!0;const n=e?this.path.of(e):this.path,o=e??this.path.last()??"value";return this.catch(je({typeName:"Object",property:o,path:n,value:t})),!1};string=e=>{const t=this.obj[e];return!(e&&!this.exists(e))&&("string"==typeof t||(this.catch(je({typeName:"String",property:e,path:this.path.of(e),value:t})),!1))};number=(e,t)=>{const n=this.obj[e];return!(!t||e in this.obj)||!!this.exists(e)&&("number"==typeof n&&!Number.isNaN(n)||(this.catch(je({typeName:"Number",property:e,path:this.path.of(e),value:n})),!1))};array=e=>{const t=this.obj[e];return!(e&&!this.exists(e))&&(!!Array.isArray(t)||(this.catch(je({typeName:"Array",property:e,path:this.path.of(e),value:t})),!1))};enum=(e,t)=>{const n=this.obj[e];return!("string"!=typeof n||!t.includes(n))||(this.catch((({expected:e,value:t,path:n})=>({details:"Value must be one of expected values",name:"in",expected:[...e].sort(),path:n.toArray(),value:t}))({expected:t,value:n,path:this.path.of(e)})),!1)};empty=e=>{if(!this.array(e))return!1;const t=this.obj[e];return 0===t.length||(this.catch((({max:e,value:t,path:n})=>({name:"size",max:e,path:n.toArray(),details:`Size must be at most ${e}`,value:t}))({max:0,value:t,path:this.path.of(e)})),!1)};minLength=(e,t)=>{if(!this.array(e))return!1;const n=this.obj[e];return n.length>=t||(this.catch((({min:e,value:t,path:n})=>({name:"size",min:e,path:n.toArray(),details:`Size must be at least ${e}`,value:t}))({min:t,value:n,path:this.path.of(e)})),!1)};noAdditionalProperties=e=>{const t=Object.keys(this.obj).sort().filter(t=>!e.includes(t));return t.forEach(e=>this.catch((({property:e,path:t})=>({details:`The property "${e}" is not expected`,name:"unexpected",path:t.toArray()}))({property:e,path:this.path.of(e)}))),0===t.length};each=(e,t)=>{if(!this.array(e))return;const n=this.obj[e];let o=!1;n.forEach((n,r)=>{if(o)return;const i=t(n,this.path.of(e).of(r));i.length>0&&(o=!0),this.catch(...i)})}}const ze=[];class Ye{contentRule;validateData;constructor(e,t){this.contentRule=e,this.validateData=t}assert(e,t){const n=new Ze(e,t);if(!n.object())return n.errors;n.noAdditionalProperties(["nodeType","data","content"]);const{nodeTypes:o,min:r=0}=Array.isArray(this.contentRule)?{nodeTypes:this.contentRule}:this.contentRule(e,t);if(0===o.length&&r>0)throw new Error(`Invalid content rule. Cannot have enforce a 'min' of ${r} with no nodeTypes`);if(n.minLength("content",r),0===o.length?n.empty("content"):n.each("content",(e,t)=>{const n=new Ze(e,t);return n.object()?(n.enum("nodeType",o),n.errors):n.errors}),n.object("data")){const o=this.validateData?.(e.data,t.of("data"))??[];n.catch(...o)}return n.errors}}class Je extends Ye{linkType;type;constructor(e,t){super(t,(e,t)=>this.assertLink(e,t)),this.linkType=e,this.type=this.linkType.startsWith("Contentful:")?"ResourceLink":"Link"}assertLink=(e,t)=>{const n=new Ze(e,t);if(n.object("target")){const o=new Ze(e.target.sys,t.of("target").of("sys"));o.object()&&(o.enum("type",[this.type]),o.enum("linkType",[this.linkType]),"Link"===this.type?(o.string("id"),o.noAdditionalProperties(["type","linkType","id"])):"ResourceLink"===this.type&&(o.string("urn"),o.noAdditionalProperties(["type","linkType","urn"]))),n.catch(...o.errors)}return n.noAdditionalProperties(["target"]),n.errors}}const Ue=(e,t)=>new Ye(e,t),_e=(e,t)=>new Je(e,t);Ue([...Object.values(Xe),"text"].sort()),Ue([Le.LIST_ITEM]),_e("Entry",ze),Ue(()=>({nodeTypes:[Le.PARAGRAPH],min:1}),(e,t)=>{const n=new Ze(e,t);return n.noAdditionalProperties(["colspan","rowspan"]),n.number("colspan",!0),n.number("rowspan",!0),n.errors});Le.DOCUMENT,Ue(We),Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.QUOTE,Ue(Fe[Le.QUOTE]),Le.EMBEDDED_ENTRY,Le.EMBEDDED_ASSET,_e("Asset",ze),Le.EMBEDDED_RESOURCE,_e("Contentful:Entry",ze),Le.HR,Ue(ze),Le.OL_LIST,Le.UL_LIST,Le.LIST_ITEM,Ue([...He].sort()),Le.TABLE,Ue(()=>({nodeTypes:[Le.TABLE_ROW],min:1})),Le.TABLE_ROW,Ue(()=>({nodeTypes:[Le.TABLE_CELL,Le.TABLE_HEADER_CELL],min:1})),Le.TABLE_CELL,Le.TABLE_HEADER_CELL,Xe.HYPERLINK,new class extends Ye{constructor(){super(["text"],(e,t)=>this.assertLink(e,t))}assertLink=(e,t)=>{const n=new Ze(e,t);return n.string("uri"),n.noAdditionalProperties(["uri"]),n.errors}},Xe.EMBEDDED_ENTRY,Xe.EMBEDDED_RESOURCE,_e("Contentful:Entry",ze),Xe.ENTRY_HYPERLINK,_e("Entry",["text"]),Xe.ASSET_HYPERLINK,_e("Asset",["text"]),Xe.RESOURCE_HYPERLINK,_e("Contentful:Entry",["text"]),Le.DOCUMENT,Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.EMBEDDED_ENTRY,Le.EMBEDDED_RESOURCE,Le.UL_LIST,Le.OL_LIST,Le.LIST_ITEM,Le.QUOTE,Le.HR,Le.TABLE,Le.TABLE_ROW,Le.TABLE_HEADER_CELL,Le.TABLE_CELL,Xe.ASSET_HYPERLINK,Xe.ENTRY_HYPERLINK,Xe.RESOURCE_HYPERLINK,Xe.EMBEDDED_ENTRY,Xe.EMBEDDED_RESOURCE,Xe.HYPERLINK;const Qe={green:"#209A61",yellow:"#F5FF36",blue:"#0393BA"},$e=i(({children:t,className:n="",variant:o="unstyled",style:r,...i},s)=>{const a=Me("unstyled"===o?"":"mb-1 leading-6","list-item",`list-item--${o}`,n);return e("li",{ref:s,className:a,style:r,...i,children:t})});$e.displayName="ListItem";const Ke=i(({type:t="ul",items:n,className:o="",renderItem:r,children:i,variant:s="unstyled",style:a,...l},c)=>{const u=(()=>{if("unstyled"===s)return"";return`m-0 p-0 ${"ol"===t?"pl-6 list-decimal":"pl-5 list-disc"}`})(),d=Me(u,`list--${t}`,`list--${s}`,o),p=i||(n&&0!==n.length?n.map((t,n)=>r?r(t,n):e($e,{className:t.className,variant:s,children:t.content},t.id||n)):null),f={className:d,style:a,...l,children:p};return e("ol"===t?"ol":"ul",{...f,ref:c})});Ke.displayName="List";const qe=({name:t,fill:n=0,opticalSize:o="48dp",weight:r="200",emphasis:i=145,size:s=24,color:a="currentColor",style:l={},className:c,onClick:u,dataTestId:d})=>{const p={fontVariationSettings:`'FILL' ${n}, 'wght' ${r}, 'GRAD' ${i}, 'opsz' ${o.substring(0,2)}`,fontSize:`${s}px`,fontFamily:"'Material Symbols Rounded'",color:a||"currentColor",...l};return e("span",{style:p,className:Me("material-symbols-rounded inline-block max-w-[52px] overflow-hidden",c),onClick:u,"data-testid":d,children:t})};qe.displayName="MaterialIcon";const et=i(({children:e,as:t,className:n="",style:o,...i},s)=>{const a=t||"p";return r.createElement(a,{ref:s,className:n,style:o,...i},e)});et.displayName="Text";const tt=n=>{const{items:o,listIconName:r="check",listItemClassName:i,listContainerClassName:s,iconSize:a=20,iconPosition:l="center",iconColor:c="green",iconClassName:u}=n,d="disc"!==r;return(null==o?void 0:o.length)?e(Ke,{className:Me("mt-2 space-y-1",s),variant:d?"unstyled":"default",children:o.map((n,o)=>t($e,{variant:d?"unstyled":"default",className:Me(`${d?"flex":""} ${"top"===l?"items-start":"items-center"} gap-2 text-text-secondary`,i),children:[d&&e("div",{className:"flex leading-none",children:e(qe,{name:r,size:a,color:Qe[c],weight:"600",className:Me("block","top"===l?"mt-1":"",u)})}),e(et,{as:"div",children:n})]},o))}):null};var nt;tt.displayName="Checklist";const ot="function"==typeof y?y:null!==(nt=y.default)&&void 0!==nt?nt:y,rt=i(({children:t,href:n,className:o="",onClick:r,variant:i="unstyled",style:s,external:a=!1,disabled:l=!1,...c},u)=>{const d=(()=>{if("unstyled"===i)return"";const e={default:"text-text underline"},t=[l?"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[i]||e.default,t].filter(Boolean).join(" ")})(),p=e=>{l?e.preventDefault():null==r||r(e)},f=Me(d,`link--${i}`,l&&"link--disabled",o),h={...c,ref:u,className:f,style:s,href:l?void 0:n,onClick:p,...a&&!l&&{target:"_blank",rel:"noopener noreferrer"},...l&&{"aria-disabled":!0,tabIndex:-1}};return a||"string"==typeof n&&n.startsWith("http")?e("a",{...h,children:t}):e(ot,{href:n||"#",className:f,onClick:p,...c,children:t})});rt.displayName="Link",Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.QUOTE,Le.UL_LIST,Le.OL_LIST,Le.LIST_ITEM,Xe.HYPERLINK,Le.EMBEDDED_ASSET,Le.EMBEDDED_ENTRY,Xe.EMBEDDED_ENTRY;const it=i(({children:t,className:n="",style:o,disabled:r,...i},s)=>e("button",{ref:s,className:Me(n),style:o,disabled:r,...i,children:t}));it.displayName="Button";const st=(n,o)=>{const{className:r,size:i,required:l,placeholder:c,label:u,state:d,errorText:p,prefixIconName:f,prefixIconFill:h=!0,suffixIconFill:m=!1,prefixIconSize:g=24,suffixIconName:b,suffixIconSize:v=24,containerClassName:y,prefixIconClassName:I,loading:x,hasError:C,type:A,...w}=n,E=C?"error":d,[N,G]=s(!1),[T,R]=s(!1),[P,S]=s(A||"text"),V=a(e=>{e.stopPropagation(),S(e=>"password"===e?"text":"password")},[]);return t("div",{className:"relative",children:[u?e("label",{htmlFor:u,className:Me("inline-block pb-1"),children:t(et,{as:"span",className:"footnote text-text",children:[u,l?e("span",{className:"pl-1 text-text-critical",children:"*"}):null]})}):null,t("div",{className:Me("relative flex flex-row items-center overflow-hidden rounded-input border border-input-border bg-input-bg-surface",{sm:"h-[48px] px-3 py-2",slim:"h-12",medium:"h-14",large:"h-[60px]"}[i||"medium"],y,(N||"hover"===E)&&!T&&"error"!==E&&"border-input-border-hover",(T||"focus"===E||"active"===E)&&"border-input-border-selected outline outline-1 outline-input-border-selected","error"===E&&"border-input-border-critical outline outline-1 outline-input-border-critical"),children:[f?e("div",{className:"mr-1",style:{width:g,height:g,overflow:"hidden"},children:e(qe,{name:f,fill:h?1:0,size:g,className:Me(I)})}):null,e("input",{ref:o,id:u,disabled:x||w.disabled,className:Me("h-full grow rounded-input p-4 caret-bg-inverse placeholder:text-input-text-placeholder focus:border-none focus:outline-none","text-body2","slim"===i&&"text-body3",r),placeholder:c,type:P,...w,onMouseOver:()=>G(!0),onMouseOut:()=>G(!1),onFocus:e=>{var t;null===(t=w.onFocus)||void 0===t||t.call(w,e),R(!0)},onBlur:e=>{var t;null===(t=w.onBlur)||void 0===t||t.call(w,e),R(!1)}}),b?e("div",{className:"ml-2",style:{width:v,height:v,overflow:"hidden"},onClick:V,children:e(qe,{name:"text"===P?"visibility":"visibility_off",size:v,fill:m?1:0})}):null]}),"error"===E&&p&&""!=p?t(et,{className:Me("footnote left-0 top-full inline-flex items-center pt-1 text-text-critical"),children:[e(qe,{name:"info",size:20,className:"mr-1"}),p||"Error"]}):null]})},at=i(st);at.displayName="Input";const lt=i(({as:t,className:n="",...o},r)=>{const i=Me(n);if(t){return e(t,{ref:r,className:i,...o})}return e("img",{ref:r,className:i,...o})});lt.displayName="Image";const ct=(e=>{let t=e;for(let e=0;e<5;e++){if("function"==typeof t)return t;if(!t||"object"!=typeof t||!("default"in t))return t;t=t.default}return t})(I),ut=({src:e,width:t,quality:n})=>{const o=new URL(e);return o.searchParams.set("w",String(t)),o.searchParams.set("q",String(n||90)),o.searchParams.set("fm","webp"),o.toString()},dt=i(({className:t,...n},o)=>{const r="string"==typeof n.src?n.src:"",i=r.toLowerCase().split("?")[0]||"",s=r.includes("images.ctfassets.net"),a=s&&i.endsWith(".svg"),l=s&&!a?{loader:ut,unoptimized:!1}:{unoptimized:a};return e(ct,{ref:o,className:Me(t),...n,...l})});dt.displayName="NextImage";const pt=n=>{const{color:o="#fff",size:r="medium"}=n;return t("div",{role:"status",className:"relative flex flex-row items-center",children:[t("svg",{"aria-hidden":"true",className:Me("mr-2 h-5 w-5 animate-spin text-transparent",{small:"w-4 h-4",medium:"w-6 h-6",large:"w-8 h-8",xlarge:"w-12 h-12"}[r],n.className),style:{animation:"spin 0.75s linear infinite"},viewBox:"0 0 100 100",fill:o,children:[e("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"}),e("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"currentFill"})]}),e("span",{className:"sr-only",children:"Loading..."})]})};pt.displayName="Spinner";const ft=n=>{const{showBlinkDot:o=!1,buttonStyle:r="primary",size:i="md",children:s,className:a,prefix:l,containerClassName:c,...u}=n,d=t(rt,{...u,className:Me("relative flex items-center gap-2 font-medium tracking-wide outline-offset-4 rounded-full",{sm:"h-6 text-xs pl-1 pr-2",md:"h-8 text-sm pl-1 pr-2",lg:"h-10 text-base pl-2 pr-3"}[i],{primary:"border-[0.727px] border-border text-text"}[r],a),children:[o?e("span",{className:`pointer-events-none absolute animate-blink ${{sm:"-left-4",md:"-left-6",lg:"-left-8"}[i]} top-1/2 ${{sm:"h-2 w-2",md:"h-3 w-3",lg:"h-4 w-4"}[i]} -translate-y-1/2 rounded-full bg-icon-brand`}):null,e("span",{className:Me("relative inline-flex items-center justify-center rounded-full bg-icon-brand",{sm:"h-5 w-5",md:"h-6 w-6",lg:"h-8 w-8"}[i]),children:e(qe,{name:"call",fill:1,size:{sm:20,md:20,lg:32}[i],className:"text-white"})}),e("span",{className:"font-normal tracking-wide",children:s})]});return null==l||!1===l||""===l?d:t("span",{className:Me("flex items-center gap-2",c),children:["string"==typeof l||"number"==typeof l?e("span",{className:"text-sm font-normal text-text",children:l}):l,d]})};function ht(e,t){l(()=>{if("undefined"==typeof document)return;const n=window.innerWidth-document.documentElement.clientWidth;return document.body.style.marginRight=e?`${n}px`:"unset",document.body.style.overflow=e?"hidden":t?"unset":document.body.style.overflow,()=>{document.body.style.overflow="unset"}},[e,t])}function mt(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function gt(e){if(Object.prototype.hasOwnProperty.call(e,"__esModule"))return e;var t=e.default;if("function"==typeof t){var n=function e(){var n=!1;try{n=this instanceof e}catch{}return n?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach(function(t){var o=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(n,t,o.get?o:{enumerable:!0,get:function(){return e[t]}})}),n}ft.displayName="CallButton";var bt,vt={exports:{}},yt={},It={exports:{}},xt={exports:{}},Ct={};var At,wt,Et,Nt,Gt,Tt,Rt,Pt,St,Vt,Bt,kt,Ot,Mt,Dt,Lt={};
|
|
5
|
+
function De(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)e[o]=n[o]}return e}!function e(t,n){function o(e,o,r){if("undefined"!=typeof document){"number"==typeof(r=De({},n,r)).expires&&(r.expires=new Date(Date.now()+864e5*r.expires)),r.expires&&(r.expires=r.expires.toUTCString()),e=encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var i="";for(var s in r)r[s]&&(i+="; "+s,!0!==r[s]&&(i+="="+r[s].split(";")[0]));return document.cookie=e+"="+t.write(o,e)+i}}return Object.create({set:o,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var n=document.cookie?document.cookie.split("; "):[],o={},r=0;r<n.length;r++){var i=n[r].split("="),s=i.slice(1).join("=");try{var a=decodeURIComponent(i[0]);if(o[a]=t.read(s,a),e===a)break}catch(e){}}return e?o[e]:o}},remove:function(e,t){o(e,"",De({},t,{expires:-1}))},withAttributes:function(t){return e(this.converter,De({},this.attributes,t))},withConverter:function(t){return e(De({},this.converter,t),this.attributes)}},{attributes:{value:Object.freeze(n)},converter:{value:Object.freeze(t)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"});var Le=function(e){return e.DOCUMENT="document",e.PARAGRAPH="paragraph",e.HEADING_1="heading-1",e.HEADING_2="heading-2",e.HEADING_3="heading-3",e.HEADING_4="heading-4",e.HEADING_5="heading-5",e.HEADING_6="heading-6",e.OL_LIST="ordered-list",e.UL_LIST="unordered-list",e.LIST_ITEM="list-item",e.HR="hr",e.QUOTE="blockquote",e.EMBEDDED_ENTRY="embedded-entry-block",e.EMBEDDED_ASSET="embedded-asset-block",e.EMBEDDED_RESOURCE="embedded-resource-block",e.TABLE="table",e.TABLE_ROW="table-row",e.TABLE_CELL="table-cell",e.TABLE_HEADER_CELL="table-header-cell",e}({}),Xe=function(e){return e.ASSET_HYPERLINK="asset-hyperlink",e.EMBEDDED_ENTRY="embedded-entry-inline",e.EMBEDDED_RESOURCE="embedded-resource-inline",e.ENTRY_HYPERLINK="entry-hyperlink",e.HYPERLINK="hyperlink",e.RESOURCE_HYPERLINK="resource-hyperlink",e}({});const We=[Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.OL_LIST,Le.UL_LIST,Le.HR,Le.QUOTE,Le.EMBEDDED_ENTRY,Le.EMBEDDED_ASSET,Le.EMBEDDED_RESOURCE,Le.TABLE],He=[Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.OL_LIST,Le.UL_LIST,Le.HR,Le.QUOTE,Le.EMBEDDED_ENTRY,Le.EMBEDDED_ASSET,Le.EMBEDDED_RESOURCE];Le.TABLE,Le.TABLE_ROW,Le.TABLE_CELL,Le.TABLE_HEADER_CELL,Le.HR,Le.EMBEDDED_ENTRY,Le.EMBEDDED_ASSET,Le.EMBEDDED_RESOURCE;const Fe={[Le.OL_LIST]:[Le.LIST_ITEM],[Le.UL_LIST]:[Le.LIST_ITEM],[Le.LIST_ITEM]:He,[Le.QUOTE]:[Le.PARAGRAPH],[Le.TABLE]:[Le.TABLE_ROW],[Le.TABLE_ROW]:[Le.TABLE_CELL,Le.TABLE_HEADER_CELL],[Le.TABLE_CELL]:[Le.PARAGRAPH,Le.UL_LIST,Le.OL_LIST],[Le.TABLE_HEADER_CELL]:[Le.PARAGRAPH]};Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6;Le.PARAGRAPH,Le.DOCUMENT,Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.OL_LIST,Le.UL_LIST,Le.LIST_ITEM,Le.HR,Le.QUOTE,Le.EMBEDDED_ENTRY,Le.EMBEDDED_ASSET,Xe.HYPERLINK,Xe.ENTRY_HYPERLINK,Xe.ASSET_HYPERLINK,Xe.EMBEDDED_ENTRY,Le.DOCUMENT,Le.PARAGRAPH;const je=({path:e,property:t,typeName:n,value:o})=>({details:`The type of "${t}" is incorrect, expected type: ${n}`,name:"type",path:e.toArray(),type:n,value:o});class Ze{obj;path;_errors=[];constructor(e,t){this.obj=e,this.path=t}catch=(...e)=>{this._errors.push(...e)};get errors(){const e=e=>JSON.stringify({details:e.details,path:e.path});return this._errors.filter((t,n)=>this._errors.findIndex(n=>e(t)===e(n))===n)}exists=e=>e in this.obj||(this.catch((({property:e,path:t})=>({details:`The property "${e}" is required here`,name:"required",path:t.toArray()}))({property:e,path:this.path.of(e)})),!1);object=e=>{const t=e?this.obj[e]:this.obj;if(e&&!this.exists(e))return!1;if("object"==typeof t&&!Array.isArray(t)&&null!==t)return!0;const n=e?this.path.of(e):this.path,o=e??this.path.last()??"value";return this.catch(je({typeName:"Object",property:o,path:n,value:t})),!1};string=e=>{const t=this.obj[e];return!(e&&!this.exists(e))&&("string"==typeof t||(this.catch(je({typeName:"String",property:e,path:this.path.of(e),value:t})),!1))};number=(e,t)=>{const n=this.obj[e];return!(!t||e in this.obj)||!!this.exists(e)&&("number"==typeof n&&!Number.isNaN(n)||(this.catch(je({typeName:"Number",property:e,path:this.path.of(e),value:n})),!1))};array=e=>{const t=this.obj[e];return!(e&&!this.exists(e))&&(!!Array.isArray(t)||(this.catch(je({typeName:"Array",property:e,path:this.path.of(e),value:t})),!1))};enum=(e,t)=>{const n=this.obj[e];return!("string"!=typeof n||!t.includes(n))||(this.catch((({expected:e,value:t,path:n})=>({details:"Value must be one of expected values",name:"in",expected:[...e].sort(),path:n.toArray(),value:t}))({expected:t,value:n,path:this.path.of(e)})),!1)};empty=e=>{if(!this.array(e))return!1;const t=this.obj[e];return 0===t.length||(this.catch((({max:e,value:t,path:n})=>({name:"size",max:e,path:n.toArray(),details:`Size must be at most ${e}`,value:t}))({max:0,value:t,path:this.path.of(e)})),!1)};minLength=(e,t)=>{if(!this.array(e))return!1;const n=this.obj[e];return n.length>=t||(this.catch((({min:e,value:t,path:n})=>({name:"size",min:e,path:n.toArray(),details:`Size must be at least ${e}`,value:t}))({min:t,value:n,path:this.path.of(e)})),!1)};noAdditionalProperties=e=>{const t=Object.keys(this.obj).sort().filter(t=>!e.includes(t));return t.forEach(e=>this.catch((({property:e,path:t})=>({details:`The property "${e}" is not expected`,name:"unexpected",path:t.toArray()}))({property:e,path:this.path.of(e)}))),0===t.length};each=(e,t)=>{if(!this.array(e))return;const n=this.obj[e];let o=!1;n.forEach((n,r)=>{if(o)return;const i=t(n,this.path.of(e).of(r));i.length>0&&(o=!0),this.catch(...i)})}}const ze=[];class Ye{contentRule;validateData;constructor(e,t){this.contentRule=e,this.validateData=t}assert(e,t){const n=new Ze(e,t);if(!n.object())return n.errors;n.noAdditionalProperties(["nodeType","data","content"]);const{nodeTypes:o,min:r=0}=Array.isArray(this.contentRule)?{nodeTypes:this.contentRule}:this.contentRule(e,t);if(0===o.length&&r>0)throw new Error(`Invalid content rule. Cannot have enforce a 'min' of ${r} with no nodeTypes`);if(n.minLength("content",r),0===o.length?n.empty("content"):n.each("content",(e,t)=>{const n=new Ze(e,t);return n.object()?(n.enum("nodeType",o),n.errors):n.errors}),n.object("data")){const o=this.validateData?.(e.data,t.of("data"))??[];n.catch(...o)}return n.errors}}class Je extends Ye{linkType;type;constructor(e,t){super(t,(e,t)=>this.assertLink(e,t)),this.linkType=e,this.type=this.linkType.startsWith("Contentful:")?"ResourceLink":"Link"}assertLink=(e,t)=>{const n=new Ze(e,t);if(n.object("target")){const o=new Ze(e.target.sys,t.of("target").of("sys"));o.object()&&(o.enum("type",[this.type]),o.enum("linkType",[this.linkType]),"Link"===this.type?(o.string("id"),o.noAdditionalProperties(["type","linkType","id"])):"ResourceLink"===this.type&&(o.string("urn"),o.noAdditionalProperties(["type","linkType","urn"]))),n.catch(...o.errors)}return n.noAdditionalProperties(["target"]),n.errors}}const Ue=(e,t)=>new Ye(e,t),_e=(e,t)=>new Je(e,t);Ue([...Object.values(Xe),"text"].sort()),Ue([Le.LIST_ITEM]),_e("Entry",ze),Ue(()=>({nodeTypes:[Le.PARAGRAPH],min:1}),(e,t)=>{const n=new Ze(e,t);return n.noAdditionalProperties(["colspan","rowspan"]),n.number("colspan",!0),n.number("rowspan",!0),n.errors});Le.DOCUMENT,Ue(We),Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.QUOTE,Ue(Fe[Le.QUOTE]),Le.EMBEDDED_ENTRY,Le.EMBEDDED_ASSET,_e("Asset",ze),Le.EMBEDDED_RESOURCE,_e("Contentful:Entry",ze),Le.HR,Ue(ze),Le.OL_LIST,Le.UL_LIST,Le.LIST_ITEM,Ue([...He].sort()),Le.TABLE,Ue(()=>({nodeTypes:[Le.TABLE_ROW],min:1})),Le.TABLE_ROW,Ue(()=>({nodeTypes:[Le.TABLE_CELL,Le.TABLE_HEADER_CELL],min:1})),Le.TABLE_CELL,Le.TABLE_HEADER_CELL,Xe.HYPERLINK,new class extends Ye{constructor(){super(["text"],(e,t)=>this.assertLink(e,t))}assertLink=(e,t)=>{const n=new Ze(e,t);return n.string("uri"),n.noAdditionalProperties(["uri"]),n.errors}},Xe.EMBEDDED_ENTRY,Xe.EMBEDDED_RESOURCE,_e("Contentful:Entry",ze),Xe.ENTRY_HYPERLINK,_e("Entry",["text"]),Xe.ASSET_HYPERLINK,_e("Asset",["text"]),Xe.RESOURCE_HYPERLINK,_e("Contentful:Entry",["text"]),Le.DOCUMENT,Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.EMBEDDED_ENTRY,Le.EMBEDDED_RESOURCE,Le.UL_LIST,Le.OL_LIST,Le.LIST_ITEM,Le.QUOTE,Le.HR,Le.TABLE,Le.TABLE_ROW,Le.TABLE_HEADER_CELL,Le.TABLE_CELL,Xe.ASSET_HYPERLINK,Xe.ENTRY_HYPERLINK,Xe.RESOURCE_HYPERLINK,Xe.EMBEDDED_ENTRY,Xe.EMBEDDED_RESOURCE,Xe.HYPERLINK;const Qe={green:"#209A61",yellow:"#F5FF36",blue:"#0393BA"},$e=i(({children:t,className:n="",variant:o="unstyled",style:r,...i},s)=>{const a=Me("unstyled"===o?"":"mb-1 leading-6","list-item",`list-item--${o}`,n);return e("li",{ref:s,className:a,style:r,...i,children:t})});$e.displayName="ListItem";const Ke=i(({type:t="ul",items:n,className:o="",renderItem:r,children:i,variant:s="unstyled",style:a,...l},c)=>{const u=(()=>{if("unstyled"===s)return"";return`m-0 p-0 ${"ol"===t?"pl-6 list-decimal":"pl-5 list-disc"}`})(),d=Me(u,`list--${t}`,`list--${s}`,o),p=i||(n&&0!==n.length?n.map((t,n)=>r?r(t,n):e($e,{className:t.className,variant:s,children:t.content},t.id||n)):null),f={className:d,style:a,...l,children:p};return e("ol"===t?"ol":"ul",{...f,ref:c})});Ke.displayName="List";const qe=({name:t,fill:n=0,opticalSize:o="48dp",weight:r="200",emphasis:i=145,size:s=24,color:a="currentColor",style:l={},className:c,onClick:u,dataTestId:d})=>{const p={fontVariationSettings:`'FILL' ${n}, 'wght' ${r}, 'GRAD' ${i}, 'opsz' ${o.substring(0,2)}`,fontSize:`${s}px`,fontFamily:"'Material Symbols Rounded'",color:a||"currentColor",...l};return e("span",{style:p,className:Me("material-symbols-rounded inline-block max-w-[52px] overflow-hidden",c),onClick:u,"data-testid":d,children:t})};qe.displayName="MaterialIcon";const et=i(({children:e,as:t,className:n="",style:o,...i},s)=>{const a=t||"p";return r.createElement(a,{ref:s,className:n,style:o,...i},e)});et.displayName="Text";const tt=n=>{const{items:o,listIconName:i="check",listItemClassName:s,listContainerClassName:a,iconSize:l=20,iconPosition:c="center",iconColor:u="green",iconClassName:d}=n,p="disc"!==i;return(null==o?void 0:o.length)?e(Ke,{className:Me("mt-2 space-y-1",a),variant:p?"unstyled":"default",children:o.map((n,o)=>{const a=function(e){return null!==e&&"object"==typeof e&&!r.isValidElement(e)&&"title"in e}(n),f=a&&!!n.iconUrl,h=a?n.title:n;return t($e,{variant:p?"unstyled":"default",className:Me(`${p?"flex":""} ${"top"===c?"items-start":"items-center"} gap-2 text-text-secondary`,s),children:[p&&f?e("div",{className:"flex shrink-0 leading-none",children:e("img",{src:n.iconUrl,alt:n.iconAlt||"",width:l,height:l,className:Me("block object-contain","top"===c?"mt-1":"",d)})}):p?e("div",{className:"flex leading-none",children:e(qe,{name:i,size:l,color:Qe[u],weight:"600",className:Me("block","top"===c?"mt-1":"",d)})}):null,e(et,{as:"div",children:h})]},o)})}):null};var nt;tt.displayName="Checklist";const ot="function"==typeof y?y:null!==(nt=y.default)&&void 0!==nt?nt:y,rt=i(({children:t,href:n,className:o="",onClick:r,variant:i="unstyled",style:s,external:a=!1,disabled:l=!1,...c},u)=>{const d=(()=>{if("unstyled"===i)return"";const e={default:"text-text underline"},t=[l?"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[i]||e.default,t].filter(Boolean).join(" ")})(),p=e=>{l?e.preventDefault():null==r||r(e)},f=Me(d,`link--${i}`,l&&"link--disabled",o),h={...c,ref:u,className:f,style:s,href:l?void 0:n,onClick:p,...a&&!l&&{target:"_blank",rel:"noopener noreferrer"},...l&&{"aria-disabled":!0,tabIndex:-1}};return a||"string"==typeof n&&n.startsWith("http")?e("a",{...h,children:t}):e(ot,{href:n||"#",className:f,onClick:p,...c,children:t})});rt.displayName="Link",Le.PARAGRAPH,Le.HEADING_1,Le.HEADING_2,Le.HEADING_3,Le.HEADING_4,Le.HEADING_5,Le.HEADING_6,Le.QUOTE,Le.UL_LIST,Le.OL_LIST,Le.LIST_ITEM,Xe.HYPERLINK,Le.EMBEDDED_ASSET,Le.EMBEDDED_ENTRY,Xe.EMBEDDED_ENTRY;const it=i(({children:t,className:n="",style:o,disabled:r,...i},s)=>e("button",{ref:s,className:Me(n),style:o,disabled:r,...i,children:t}));it.displayName="Button";const st=(n,o)=>{const{className:r,size:i,required:l,placeholder:c,label:u,state:d,errorText:p,prefixIconName:f,prefixIconFill:h=!0,suffixIconFill:m=!1,prefixIconSize:g=24,suffixIconName:b,suffixIconSize:v=24,containerClassName:y,prefixIconClassName:I,loading:x,hasError:C,type:A,...w}=n,E=C?"error":d,[N,G]=s(!1),[T,R]=s(!1),[P,S]=s(A||"text"),V=a(e=>{e.stopPropagation(),S(e=>"password"===e?"text":"password")},[]);return t("div",{className:"relative",children:[u?e("label",{htmlFor:u,className:Me("inline-block pb-1"),children:t(et,{as:"span",className:"footnote text-text",children:[u,l?e("span",{className:"pl-1 text-text-critical",children:"*"}):null]})}):null,t("div",{className:Me("relative flex flex-row items-center overflow-hidden rounded-input border border-input-border bg-input-bg-surface",{sm:"h-[48px] px-3 py-2",slim:"h-12",medium:"h-14",large:"h-[60px]"}[i||"medium"],y,(N||"hover"===E)&&!T&&"error"!==E&&"border-input-border-hover",(T||"focus"===E||"active"===E)&&"border-input-border-selected outline outline-1 outline-input-border-selected","error"===E&&"border-input-border-critical outline outline-1 outline-input-border-critical"),children:[f?e("div",{className:"mr-1",style:{width:g,height:g,overflow:"hidden"},children:e(qe,{name:f,fill:h?1:0,size:g,className:Me(I)})}):null,e("input",{ref:o,id:u,disabled:x||w.disabled,className:Me("h-full grow rounded-input p-4 caret-bg-inverse placeholder:text-input-text-placeholder focus:border-none focus:outline-none","text-body2","slim"===i&&"text-body3",r),placeholder:c,type:P,...w,onMouseOver:()=>G(!0),onMouseOut:()=>G(!1),onFocus:e=>{var t;null===(t=w.onFocus)||void 0===t||t.call(w,e),R(!0)},onBlur:e=>{var t;null===(t=w.onBlur)||void 0===t||t.call(w,e),R(!1)}}),b?e("div",{className:"ml-2",style:{width:v,height:v,overflow:"hidden"},onClick:V,children:e(qe,{name:"text"===P?"visibility":"visibility_off",size:v,fill:m?1:0})}):null]}),"error"===E&&p&&""!=p?t(et,{className:Me("footnote left-0 top-full inline-flex items-center pt-1 text-text-critical"),children:[e(qe,{name:"info",size:20,className:"mr-1"}),p||"Error"]}):null]})},at=i(st);at.displayName="Input";const lt=i(({as:t,className:n="",...o},r)=>{const i=Me(n);if(t){return e(t,{ref:r,className:i,...o})}return e("img",{ref:r,className:i,...o})});lt.displayName="Image";const ct=(e=>{let t=e;for(let e=0;e<5;e++){if("function"==typeof t)return t;if(!t||"object"!=typeof t||!("default"in t))return t;t=t.default}return t})(I),ut=({src:e,width:t,quality:n})=>{const o=new URL(e);return o.searchParams.set("w",String(t)),o.searchParams.set("q",String(n||90)),o.searchParams.set("fm","webp"),o.toString()},dt=i(({className:t,...n},o)=>{const r="string"==typeof n.src?n.src:"",i=r.toLowerCase().split("?")[0]||"",s=r.includes("images.ctfassets.net"),a=s&&i.endsWith(".svg"),l=s&&!a?{loader:ut,unoptimized:!1}:{unoptimized:a};return e(ct,{ref:o,className:Me(t),...n,...l})});dt.displayName="NextImage";const pt=n=>{const{color:o="#fff",size:r="medium"}=n;return t("div",{role:"status",className:"relative flex flex-row items-center",children:[t("svg",{"aria-hidden":"true",className:Me("mr-2 h-5 w-5 animate-spin text-transparent",{small:"w-4 h-4",medium:"w-6 h-6",large:"w-8 h-8",xlarge:"w-12 h-12"}[r],n.className),style:{animation:"spin 0.75s linear infinite"},viewBox:"0 0 100 100",fill:o,children:[e("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"}),e("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"currentFill"})]}),e("span",{className:"sr-only",children:"Loading..."})]})};pt.displayName="Spinner";const ft=n=>{const{showBlinkDot:o=!1,buttonStyle:r="primary",size:i="md",children:s,className:a,prefix:l,containerClassName:c,...u}=n,d=t(rt,{...u,className:Me("relative flex items-center gap-2 font-medium tracking-wide outline-offset-4 rounded-full",{sm:"h-6 text-xs pl-1 pr-2",md:"h-8 text-sm pl-1 pr-2",lg:"h-10 text-base pl-2 pr-3"}[i],{primary:"border-[0.727px] border-border text-text"}[r],a),children:[o?e("span",{className:`pointer-events-none absolute animate-blink ${{sm:"-left-4",md:"-left-6",lg:"-left-8"}[i]} top-1/2 ${{sm:"h-2 w-2",md:"h-3 w-3",lg:"h-4 w-4"}[i]} -translate-y-1/2 rounded-full bg-icon-brand`}):null,e("span",{className:Me("relative inline-flex items-center justify-center rounded-full bg-icon-brand",{sm:"h-5 w-5",md:"h-6 w-6",lg:"h-8 w-8"}[i]),children:e(qe,{name:"call",fill:1,size:{sm:20,md:20,lg:32}[i],className:"text-white"})}),e("span",{className:"font-normal tracking-wide",children:s})]});return null==l||!1===l||""===l?d:t("span",{className:Me("flex items-center gap-2",c),children:["string"==typeof l||"number"==typeof l?e("span",{className:"text-sm font-normal text-text",children:l}):l,d]})};function ht(e,t){l(()=>{if("undefined"==typeof document)return;const n=window.innerWidth-document.documentElement.clientWidth;return document.body.style.marginRight=e?`${n}px`:"unset",document.body.style.overflow=e?"hidden":t?"unset":document.body.style.overflow,()=>{document.body.style.overflow="unset"}},[e,t])}function mt(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function gt(e){if(Object.prototype.hasOwnProperty.call(e,"__esModule"))return e;var t=e.default;if("function"==typeof t){var n=function e(){var n=!1;try{n=this instanceof e}catch{}return n?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach(function(t){var o=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(n,t,o.get?o:{enumerable:!0,get:function(){return e[t]}})}),n}ft.displayName="CallButton";var bt,vt={exports:{}},yt={},It={exports:{}},xt={exports:{}},Ct={};var At,wt,Et,Nt,Gt,Tt,Rt,Pt,St,Vt,Bt,kt,Ot,Mt,Dt,Lt={};
|
|
6
6
|
/** @license React v16.13.1
|
|
7
7
|
* react-is.development.js
|
|
8
8
|
*
|