{"version":3,"file":"static/js/b5ce2029c8ac318394c6.bundle.js","mappings":";utBAAA,MAAMA,EAAU,CAAEC,QAAS,GAAIC,YAAa,IAEvCF,EAAQC,QAAQ,mBAAqB,CAClCE,EAAGA,IAAMC,EAAQ,MACjBC,MAAO,kBACPC,GAAI,GAEJC,KAAK,EACLC,GAAI,6BACJC,EAAG,kBACHC,EAAG,SAEHC,IAAK,GAGLC,GAAI,mFAKRC,OAAOC,aAAeD,OAAOC,cAAgB,GAC7CD,OAAOC,aAAab,QAAOc,EAAAA,EAAA,GACpBF,OAAOC,aAAab,SAAW,IAC/BD,EAAQC,SAGXY,OAAOC,aAAaZ,YAAWa,EAAAA,EAAA,GAC5BF,OAAOC,aAAaZ,aAAe,IACnCF,EAAQE,aAEY,MAAMc,EAAiB,GAC9BA,EAAe,6EAA+E,CACtGb,EAAGA,IAAMC,EAAQ,MACjBa,GAAI,qDAEpBJ,OAAOC,aAAeD,OAAOC,cAAgB,GAC7CD,OAAOC,aAAaE,eAAcD,EAAAA,EAAA,GACPF,OAAOC,aAAaE,gBAAkB,IACtCA,6pBChB3B,MAAME,UAAuBC,EAAAA,cAClBC,SACH,IAAKC,KAAKC,MAAMC,QAAUF,KAAKC,MAAMC,MAAMC,SAA+C,IAApCH,KAAKC,MAAMC,MAAMC,QAAQC,OAE3E,OADAJ,KAAKC,MAAMI,QAAQC,UAAUC,MAAM,qDAC5B,KAEX,MAAMC,EAASd,EAAAA,EAAA,GACRM,KAAKC,OAAK,IACbQ,WAAYT,KAAKC,MAAMC,MAAMC,QAC7BO,WAAY,CACRC,YAAaX,KAAKC,MAClBW,UAAWC,GAAAA,CAAW,kBAAmBb,KAAKC,MAAMa,OAAOF,WAC3DG,IAAK,MAETC,eAAgB,CACZJ,UAAWC,GAAAA,CAAW,uBAAwBb,KAAKC,MAAMa,OAAOF,WAChEG,IAAK,QAIb,OAAOf,KAAKC,MAAMgB,WAAWT,IAIrC,iHCpCO,MAAMU,EAAyDjB,IAClE,MAAM,WAAEQ,EAAU,WAAEC,EAAU,eAAEM,GAAmBf,EACnD,OAAKQ,GAAoC,IAAtBA,EAAWL,OAK1BN,IAAAA,cAACqB,EAAAA,OAAMC,OAAAC,OAAA,GAAKX,GACPD,EAAWa,KAAI,CAACC,EAAqBC,IAE9B1B,IAAAA,cAAC2B,EAAAA,KAAIL,OAAAC,OAAA,GAAKL,EAAc,CAAEU,IAAKF,IAC1BD,OARjBtB,EAAMI,QAAQC,UAAUC,MAAM,+CACvB,OAef,WC7BAoB,EAAOC,QAAU9B,cCAjB6B,EAAOC,QAAUC","sources":["webpack://Msdyn365.Commerce.Online/./lib/footer-category/module-registration.js?7500","webpack://Msdyn365.Commerce.Online/./src/modules/footer-category/footer-category.tsx?e0bd","webpack://Msdyn365.Commerce.Online/./src/modules/footer-category/footer-category.view.tsx?fdce","webpack://Msdyn365.Commerce.Online/external var \"React\"?0d3b","webpack://Msdyn365.Commerce.Online/external var \"ReactDOM\"?853b"],"sourcesContent":["const binding = { modules: {}, dataActions: {} };\n\n (binding.modules['footer-category'] = {\n c: () => require('@msdyn365-commerce-modules/footer/dist/lib/modules/footer-category/footer-category'),\n $type: 'containerModule',\n da: [],\n \n iNM: true,\n ns: '@msdyn365-commerce-modules',\n n: 'footer-category',\n p: 'footer',\n \n pdp: '',\n \n \n md: 'node_modules/@msdyn365-commerce-modules/footer/dist/lib/modules/footer-category'\n });\n \n\n \n window.__bindings__ = window.__bindings__ || {};\n window.__bindings__.modules = {\n ...window.__bindings__.modules || {},\n ...binding.modules\n };\n \n window.__bindings__.dataActions = {\n ...window.__bindings__.dataActions || {},\n ...binding.dataActions\n };\n export const viewDictionary = {};\n viewDictionary['@msdyn365-commerce-modules|footer|modules|footer-category|footer-category'] = {\n c: () => require('@msdyn365-commerce-modules/footer/dist/lib/modules/footer-category/footer-category.view.js'),\n cn: '@msdyn365-commerce-modules-footer-footer-category'\n };\nwindow.__bindings__ = window.__bindings__ || {};\nwindow.__bindings__.viewDictionary = {\n ...window.__bindings__.viewDictionary || {},\n ...viewDictionary\n };","/*!\n * Copyright (c) Microsoft Corporation.\n * All rights reserved. See LICENSE in the project root for license information.\n */\n\nimport { IModuleProps, INodeProps } from '@msdyn365-commerce-modules/utilities';\nimport classnames from 'classnames';\nimport * as React from 'react';\n\nimport { IFooterCategoryConfig, IFooterCategoryProps } from './footer-category.props.autogenerated';\n\nexport interface IFooterCategoryViewProps extends IFooterCategoryProps {\n categories: React.ReactNode[];\n FooterList: IModuleProps;\n FooterListItem: INodeProps;\n}\n\n/**\n *\n * FooterCategory component.\n * @extends {React.PureComponent>}\n */\nclass FooterCategory extends React.PureComponent> {\n public render(): JSX.Element | null {\n if (!this.props.slots || !this.props.slots.content || this.props.slots.content.length === 0) {\n this.props.context.telemetry.error('footer slots content is empty, module wont render');\n return null;\n }\n const viewprops = {\n ...this.props,\n categories: this.props.slots.content,\n FooterList: {\n moduleProps: this.props,\n className: classnames('ms-footer__list', this.props.config.className),\n tag: 'ul'\n },\n FooterListItem: {\n className: classnames('ms-footer__list-item', this.props.config.className),\n tag: 'li'\n }\n };\n\n return this.props.renderView(viewprops) as React.ReactElement;\n }\n}\n\nexport default FooterCategory;\n","/*!\n * Copyright (c) Microsoft Corporation.\n * All rights reserved. See LICENSE in the project root for license information.\n */\n\nimport { Module, Node } from '@msdyn365-commerce-modules/utilities';\nimport React, { ReactNode } from 'react';\n\nimport { IFooterCategoryViewProps } from './footer-category';\n\nexport const FooterCategoryView: React.FC = props => {\n const { categories, FooterList, FooterListItem } = props;\n if (!categories || categories.length === 0) {\n props.context.telemetry.error('Footer content is empty, module wont render');\n return null;\n }\n return (\n \n {categories.map((category: ReactNode, index: number) => {\n return (\n \n {category}\n \n );\n })}\n \n );\n};\n\nexport default FooterCategoryView;\n","module.exports = React;","module.exports = ReactDOM;"],"names":["binding","modules","dataActions","c","require","$type","da","iNM","ns","n","p","pdp","md","window","__bindings__","_objectSpread","viewDictionary","cn","FooterCategory","React","render","this","props","slots","content","length","context","telemetry","error","viewprops","categories","FooterList","moduleProps","className","classnames","config","tag","FooterListItem","renderView","FooterCategoryView","Module","Object","assign","map","category","index","Node","key","module","exports","ReactDOM"],"sourceRoot":""}