{"version":3,"file":"static/chunks/4520.82be6f5aecd1cae0.js","mappings":"uIA6BO,SAASA,EACdC,CAAoC,EAqBpC,OAnB8D,OAAC,CAC7DC,MAAOC,CAAG,CACVC,SAAO,CACR,GACO,UAAEC,CAAQ,sBAAEC,CAAoB,CAAE,CAAGC,CAAAA,EAAAA,EAAAA,CAAAA,CAAaA,GAElDL,EAAQG,EAASF,SAEvB,OAAKD,EAAAA,KAAAA,EAAAA,EAAOM,MAAAA,CAAPN,IAAiB,KAACA,EAAAA,KAAAA,EAAAA,EAAOO,OAAPP,CAAOO,KAAY,KAACP,EAAAA,KAAAA,EAAAA,EAAOQ,GAAG,CAACC,EAAAA,CAAXT,CAGzC,UAACD,EAAAA,CACCC,MAAOA,EACPE,QAASA,EACTE,qBAAsBA,IANuC,IASnE,CAGF,4IC9CO,IAAMM,EACXZ,CAAAA,EAAAA,EAAAA,CAAAA,CAAyBA,CACvB,OAAC,OAAEE,CAAK,sBAAEI,CAAoB,CAAE,GAC9B,MACE,UAACO,EAAAA,CAAaA,CAAAA,CACZC,MAAOZ,EAAMM,MAAM,CAACM,KAAK,CACzBC,SAAUb,EAAMM,MAAM,CAACQ,QAAQ,CAC/BC,YACEf,EAAMM,MAAM,CAACS,WAAW,EACtB,UAACC,EAAAA,CAAwBA,CAAAA,CAACC,SAAUjB,EAAMM,MAAM,CAACS,WAAW,GAGhEG,IAAKC,CAAAA,EAAAA,EAAAA,CAAAA,CAAkBA,CAACnB,EAAMM,MAAM,CAACc,IAAI,EACzCC,eAAgB,CACdT,MAAOR,EAAqB,OAAEJ,EAAOsB,QAAS,OAAQ,GACtDT,SAAUT,EAAqB,OAAEJ,EAAOsB,QAAS,UAAW,GAC5DP,YAAaX,EAAqB,OAChCJ,EACAsB,QAAS,aACX,EACF,GAGN,GACA,6GELG,SAASX,EAAc,CAMT,KANS,OAC5BC,CAAK,UACLC,CAAQ,CACRE,aAAW,KACXG,CAAG,gBACHG,CAAc,CACK,CANS,EAOtBE,EACJ,GAAUX,EAAMY,MAAM,GAAGC,EACxBZ,GAAYA,EAASW,MAAM,CAXL,EAWQC,CAE3BC,EAAcC,CAAAA,EAAAA,EAAAA,CAAAA,CAAEA,CACpB,6BACAJ,EAAa,mCAAqC,IAE9CK,EAAWb,GAAeG,EAEhC,MACE,UAACW,MAAAA,CAAIC,UAAU,+DACb,UAACD,MAAAA,CAAIC,UAAU,8BACb,WAACD,MAAAA,CAAIC,UAAU,qCACb,WAACD,MAAAA,CAAIC,UAAWJ,YACbd,GACC,UAACmB,KAAAA,CACCD,UAAU,qCACNT,EAAAA,KAAAA,EAAAA,EAAgBT,KAAK,UAExBA,CAFGS,GAKPR,GACC,UAACmB,IAAAA,CACCF,UAAU,wCACNT,EAAAA,KAAAA,EAAAA,EAAgBR,QAAQ,QAAxBQ,EAEHR,OAINe,GACC,UAACC,MAAAA,CACCC,UAAWH,CAAAA,EAAAA,EAAAA,CAAAA,CAAEA,CACX,0BACA,CAACZ,GAAe,6CAGlB,WAACc,MAAAA,UAAQR,EAAAA,KAAAA,EAAAA,EAAgBN,WAAW,KAA3BM,MACNN,EACAG,GAAO,UAACe,EAAAA,CAAOA,CAAAA,CAAE,GAAGf,CAAG,CAAEgB,SAAS,eAQnD","sources":["webpack://_N_E/./src/contentful/lib/create-contentful-component.tsx","webpack://_N_E/./src/contentful/components/blocks/page-section-header.contentful.tsx","webpack://_N_E/../design-system/src/components/blocks/section-header/section-header.scss?dcb6","webpack://_N_E/../design-system/src/components/blocks/section-header/section-header.tsx"],"sourcesContent":["import { ContentfulEntry, EntryRef } from \"frontend/contentful/schema/sys\";\nimport { useContentful } from \"frontend/hooks/use-contentful\";\nimport { ComponentType, ReactNode } from \"react\";\nimport { CreateEditAttributesFn } from \"./edit-attributes-factory\";\n\nexport interface ContentfulComponentProps<\n E extends ContentfulEntry,\n O = Record,\n> {\n entry: E;\n options: O | undefined;\n createEditAttributes: CreateEditAttributesFn;\n}\n\nexport type ContentfulComponent = (\n props: ContentfulComponentProps,\n) => ReactNode;\nexport interface ContentfulComponentRenderProps<\n E extends ContentfulEntry,\n O = void,\n> {\n entry?: EntryRef;\n options?: O;\n}\nexport type ContentfulFactoryComponent<\n E extends ContentfulEntry,\n O = void,\n> = ComponentType>;\n\nexport function createContentfulComponent(\n Component: ContentfulComponent,\n) {\n const ContentfulComponent: ContentfulFactoryComponent = ({\n entry: ref,\n options,\n }) => {\n const { getEntry, createEditAttributes } = useContentful();\n\n const entry = getEntry(ref);\n\n if (!entry?.fields || !entry?.metadata || !entry?.sys.id) return null;\n\n return (\n \n );\n };\n\n return ContentfulComponent;\n}\n","import { createContentfulComponent } from \"frontend/contentful/lib/create-contentful-component\";\nimport { PageSectionHeaderEntry } from \"frontend/contentful/schema/blocks\";\nimport { RenderContentfulRichText } from \"../utils/render-contentful-rich-text\";\nimport { SectionHeader } from \"design-system/components/blocks/section-header/section-header\";\nimport { createCtaLinkProps } from \"../primitives/cta-link.props\";\n\nexport const ContentfulPageSectionHeader =\n createContentfulComponent(\n ({ entry, createEditAttributes }) => {\n return (\n \n )\n }\n cta={createCtaLinkProps(entry.fields.link)}\n editAttributes={{\n title: createEditAttributes({ entry, fieldId: \"title\" }),\n subTitle: createEditAttributes({ entry, fieldId: \"subtitle\" }),\n description: createEditAttributes({\n entry,\n fieldId: \"description\",\n }),\n }}\n />\n );\n },\n );\n","// extracted by mini-css-extract-plugin","import \"./section-header.scss\";\n\nimport cn from \"clsx\";\nimport {\n CtaLink,\n CtaLinkProps,\n} from \"design-system/components/primitives/cta-link/cta-link\";\nimport { EditAttributes } from \"design-system/types/types\";\nimport { ReactNode } from \"react\";\n\nexport interface SectionHeaderProps {\n title?: string;\n subTitle?: string;\n description?: ReactNode;\n cta?: CtaLinkProps;\n\n editAttributes?: {\n title?: EditAttributes;\n subTitle?: EditAttributes;\n description?: EditAttributes;\n };\n}\n\nconst LONG_HEADER_LENGTH = 50;\n\nexport function SectionHeader({\n title,\n subTitle,\n description,\n cta,\n editAttributes,\n}: SectionHeaderProps) {\n const longHeader =\n (title && title.length > LONG_HEADER_LENGTH) ||\n (subTitle && subTitle.length > LONG_HEADER_LENGTH);\n\n const hgroupClass = cn(\n \"hbs-section-header__hgroup\",\n longHeader ? \"hbs-section-header__hgroup--long\" : \"\",\n );\n const showDesc = description || cta;\n\n return (\n
\n
\n
\n
\n {title && (\n \n {title}\n \n )}\n {subTitle && (\n \n {subTitle}\n

\n )}\n
\n {showDesc && (\n \n
\n {description}\n {cta && }\n
\n
\n )}\n
\n
\n \n );\n}\n"],"names":["createContentfulComponent","Component","entry","ref","options","getEntry","createEditAttributes","useContentful","fields","metadata","sys","id","ContentfulPageSectionHeader","SectionHeader","title","subTitle","subtitle","description","RenderContentfulRichText","document","cta","createCtaLinkProps","link","editAttributes","fieldId","longHeader","length","LONG_HEADER_LENGTH","hgroupClass","cn","showDesc","div","className","h2","p","CtaLink","isSmall"],"sourceRoot":"","ignoreList":[]}