{"version":3,"file":"8092.59b37e476452c18e23fa.js","mappings":"g0BAEMA,EAAN,SAAQ,I,mpBAAFA,EACUC,G,wHACFA,G,gBAGVC,IAAAA,S,MAAAA,WACI,OAAM,gBACDC,MAAG,CAACC,UAAU,wBACVC,KAAKJ,MAAMK,aAAW,gBAClBC,IAAC,CACEH,UAAU,sBACVI,wBAAyB,CAAEC,OAAQJ,KAAKJ,MAAMK,eAGrDD,KAAKJ,MAAMS,YAAcL,KAAKJ,MAAMU,kBAAgB,gBAChDC,KAAE,CACCR,UAAU,2CACVI,wBAAyB,CAAEC,OAAQJ,KAAKJ,MAAMS,aAGrDL,KAAKJ,MAAMS,WAAaL,KAAKJ,MAAMU,kBAAgB,gBAC/CE,KAAE,CACCT,UAAU,2CACVI,wBAAyB,CAAEC,OAAQJ,KAAKJ,MAAMS,aAGrDL,KAAKJ,MAAMa,iBAAe,gBACtBX,MAAG,CACAC,UAAU,0CACVI,wBAAyB,CAAEC,OAAQJ,KAAKJ,MAAMa,yB,mBA7BtE,CAAwBC,EAAAA,WAqCxB,O,uwBCtBA,EAfA,SAAQ,I,mpBAAFC,EACUf,G,wHACFA,G,gBAGVC,IAAAA,S,MAAAA,WACI,OAAM,gBACDe,KAAE,CAACb,UAAU,wC,gBACTc,IAAC,CAACC,KAAMd,KAAKJ,MAAMmB,IAAKC,MAAOhB,KAAKJ,MAAMqB,MACtCjB,KAAKJ,MAAMqB,Y,mBAThC,CAA6CP,EAAAA,W,0qBC4B7C,EA1BA,SAAQ,I,mpBAAFQ,EACUtB,G,wHACFA,G,gBAGVC,IAAAA,S,MAAAA,WACI,OAAM,gBACDC,MAAG,CAACC,UAAU,4C,gBACVJ,EAAAA,EAAS,CACNM,YAAY,GACZI,UAAWL,KAAKJ,MAAMS,UACtBI,gBAAiBT,KAAKJ,MAAMa,gBAC5BH,iBAAkBN,KAAKJ,MAAMU,mB,gBAEhCa,KAAE,CAACpB,UAAU,kCACTC,KAAKJ,MAAMwB,OACRpB,KAAKJ,MAAMwB,MAAMC,KAAI,SAACC,EAAMC,GACxB,OAAM,gBACDZ,EAA8B,CAACa,IAAKD,EAAON,KAAMK,EAAKL,KAAMF,IAAKO,EAAKP,gB,mBAlBvG,CAAyCL,EAAAA,W,03BCezC,EAhBA,SAAQ,I,mpBAAFe,EACU7B,G,wHACFA,G,gBAGVC,IAAAA,S,MAAAA,WACI,OAAM,gBACDC,MAAG,CAACC,UAAU,gDACVC,KAAKJ,MAAM8B,oBACR1B,KAAKJ,MAAM8B,mBAAmBL,KAAI,SAACM,EAAMJ,GACrC,OAAM,gBAAEL,EAA0B,GAACM,IAAKD,GAAWI,a,mBAV3E,CAAiCjB,EAAAA,W,gNCAjC,IAEA,EAF+Bd,SAAAA,GAAS,OAAM,gBAAL6B,EAAkB,KAAK7B","sources":["webpack://gyldendal-uddannelse/./src/Foundation/Frontend/ReactComponents/PageIntro/page-intro.js","webpack://gyldendal-uddannelse/./src/Foundation/Frontend/ReactComponents/NavigationOverview/navigation-overview-link-list-item.js","webpack://gyldendal-uddannelse/./src/Foundation/Frontend/ReactComponents/NavigationOverview/navigation-overview-link-list.js","webpack://gyldendal-uddannelse/./src/Foundation/Frontend/ReactComponents/NavigationOverview/navigation-overview.js","webpack://gyldendal-uddannelse/./src/Foundation/Frontend/ReactViews/NavigationOverview/navigation-overview-view.js"],"sourcesContent":["import React, { Component } from \"react\";\r\n\r\nclass PageIntro extends Component {\r\n    constructor(props) {\r\n        super(props);\r\n    }\r\n\r\n    render() {\r\n        return (\r\n            <div className=\"page-intro-container\">\r\n                {this.props.TrumpetText && (\r\n                    <p\r\n                        className=\"page-intro__trumpet\"\r\n                        dangerouslySetInnerHTML={{ __html: this.props.TrumpetText }}\r\n                    />\r\n                )}\r\n                {this.props.TitleText && !this.props.NotPrimaryHeader && (\r\n                    <h1\r\n                        className=\"page-intro__header content-module-header\"\r\n                        dangerouslySetInnerHTML={{ __html: this.props.TitleText }}\r\n                    />\r\n                )}\r\n                {this.props.TitleText && this.props.NotPrimaryHeader && (\r\n                    <h2\r\n                        className=\"page-intro__header content-module-header\"\r\n                        dangerouslySetInnerHTML={{ __html: this.props.TitleText }}\r\n                    />\r\n                )}\r\n                {this.props.DescriptionText && (\r\n                    <div\r\n                        className=\"page-intro__paragraph content-rich-text\"\r\n                        dangerouslySetInnerHTML={{ __html: this.props.DescriptionText }}\r\n                    />\r\n                )}\r\n            </div>\r\n        );\r\n    }\r\n}\r\n\r\nexport default PageIntro;\r\n","import React, { Component } from \"react\";\r\n\r\nclass NavigationOverviewLinkListItem extends Component {\r\n    constructor(props) {\r\n        super(props);\r\n    }\r\n\r\n    render() {\r\n        return (\r\n            <li className=\"navigation-overview__link-list__item\">\r\n                <a href={this.props.Url} title={this.props.Text}>\r\n                    {this.props.Text}\r\n                </a>\r\n            </li>\r\n        );\r\n    }\r\n}\r\nexport default NavigationOverviewLinkListItem;\r\n","import React, { Component } from \"react\";\r\nimport PageIntro from \"ReactComponents/PageIntro/page-intro\";\r\nimport NavigationOverviewLinkListItem from \"ReactComponents/NavigationOverview/navigation-overview-link-list-item\";\r\n\r\nclass NavigationOverviewLinkList extends Component {\r\n    constructor(props) {\r\n        super(props);\r\n    }\r\n\r\n    render() {\r\n        return (\r\n            <div className=\"navigation-overview__link-list-container\">\r\n                <PageIntro\r\n                    TrumpetText=\"\"\r\n                    TitleText={this.props.TitleText}\r\n                    DescriptionText={this.props.DescriptionText}\r\n                    NotPrimaryHeader={this.props.NotPrimaryHeader}\r\n                />\r\n                <ul className=\"navigation-overview__link-list\">\r\n                    {this.props.Links &&\r\n                        this.props.Links.map((link, index) => {\r\n                            return (\r\n                                <NavigationOverviewLinkListItem key={index} Text={link.Text} Url={link.Url} />\r\n                            );\r\n                        })}\r\n                </ul>\r\n            </div>\r\n        );\r\n    }\r\n}\r\nexport default NavigationOverviewLinkList;\r\n","import React, { Component } from \"react\";\r\nimport NavigationOverviewLinkList from \"ReactComponents/NavigationOverview/navigation-overview-link-list\";\r\n\r\nclass NavigationOverview extends Component {\r\n    constructor(props) {\r\n        super(props);\r\n    }\r\n\r\n    render() {\r\n        return (\r\n            <div className=\"navigation-overview-container content-module\">\r\n                {this.props.NavigationSections &&\r\n                    this.props.NavigationSections.map((item, index) => {\r\n                        return <NavigationOverviewLinkList key={index} {...item} />;\r\n                    })}\r\n            </div>\r\n        );\r\n    }\r\n}\r\nexport default NavigationOverview;\r\n","import * as React from \"react\";\r\nimport NavigationOverview from \"@/ReactComponents/NavigationOverview/navigation-overview\";\r\n\r\nconst NavigationOverviewView = props => <NavigationOverview {...props} />;\r\n\r\nexport default NavigationOverviewView;\r\n"],"names":["PageIntro","props","render","div","className","this","TrumpetText","p","dangerouslySetInnerHTML","__html","TitleText","NotPrimaryHeader","h1","h2","DescriptionText","Component","NavigationOverviewLinkListItem","li","a","href","Url","title","Text","NavigationOverviewLinkList","ul","Links","map","link","index","key","NavigationOverview","NavigationSections","item"],"sourceRoot":""}