{"version":3,"file":"static/js/5bf15907b2d32302bc00.bundle.js","mappings":";yHAAAA,EAAOC,QAAUC,2BCAjBF,EAAOC,QAAUE,ymBCAjB,MAAMC,EAAU,CAAEC,QAAS,GAAIC,YAAa,IAEvCF,EAAQC,QAAQ,gBAAkB,CAC/BE,EAAGA,IAAMC,EAAQ,MACjBC,MAAO,aACPC,GAAI,GAEJC,KAAK,EACLC,GAAI,6BACJC,EAAG,eACHC,EAAG,kBAEHC,IAAK,GAGLC,GAAI,yFAKRC,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,mGCbnB,MAAMc,UAA6BlB,EAAAA,cAC/BmB,YAAYC,GACRC,MAAMD,GAGHE,SACH,MAAM,MAAEC,EAAK,UAAEC,EAAS,GAAEC,EAAE,SAAEC,GAAaC,KAAKP,MAEhD,IAAIQ,EAAiBD,KAAKP,MAAMS,QAAUF,KAAKP,MAAMS,OAAOD,eAC5DJ,EAAUM,IAAIC,EAAAA,GAASC,MAAO,uDAAwD,CAAEC,OAAQ,CAACR,EAAIC,KAEhGE,IACDA,EACID,KAAKP,MAAMc,QAAQC,KAAOR,KAAKP,MAAMc,QAAQC,IAAIC,SAAWT,KAAKP,MAAMc,QAAQC,IAAIC,SAASR,eAAiB,IAGrH,MAAMS,GAAqBC,EAAAA,EAAAA,IAAgBX,KAAKP,MAAMc,QAAQK,cAAcC,iBAAmB,EAAI,EAEnG,OACIxC,EAAAA,cAACA,EAAAA,SAAc,KACXA,EAAAA,cAAA,KAAGyC,UAAU,eAAeC,KAAK,QAAQC,SAAUN,GAC9CT,GAEL5B,EAAAA,cAAA,cACKuB,GACGA,EAAMqB,QACNrB,EAAMqB,OAAOC,KAAKC,GACPA,KAGlBvB,GAASA,EAAMwB,WACZ/C,EAAAA,cAAA,OAAKyB,GAAG,aACHF,EAAMwB,UAAUF,KAAKC,GACXA,KAInB9C,EAAAA,cAAA,QAAMyB,GAAG,QACJF,GACGA,EAAMyB,SACNzB,EAAMyB,QAAQH,KAAKC,GACRA,KAGlBvB,GAASA,EAAM0B,WACZjD,EAAAA,cAAA,OAAKyB,GAAG,aACHF,EAAM0B,UAAUJ,KAAKC,GACXA,KAInB9C,EAAAA,cAAA,cACKuB,GACGA,EAAM2B,QACN3B,EAAM2B,OAAOL,KAAKC,GACPA,OAQnC","sources":["webpack://Msdyn365.Commerce.Online/external var \"React\"?0d3b","webpack://Msdyn365.Commerce.Online/external var \"ReactDOM\"?853b","webpack://Msdyn365.Commerce.Online/./lib/default-page/module-registration.js?b25f","webpack://Msdyn365.Commerce.Online/./src/modules/default-page/default-page.tsx?b382"],"sourcesContent":["module.exports = React;","module.exports = ReactDOM;","const binding = { modules: {}, dataActions: {} };\n\n (binding.modules['default-page'] = {\n c: () => require('@msdyn365-commerce-modules/core-components/dist/lib/modules/default-page/default-page'),\n $type: 'pageModule',\n da: [],\n \n iNM: true,\n ns: '@msdyn365-commerce-modules',\n n: 'default-page',\n p: 'core-components',\n \n pdp: '',\n \n \n md: 'node_modules/@msdyn365-commerce-modules/core-components/dist/lib/modules/default-page'\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 * Copyright (c) Microsoft Corporation.\n * All rights reserved. See LICENSE in the project root for license information.\n */\n\nimport { LogLevel } from '@msdyn365-commerce/telemetry-internal';\nimport * as React from 'react';\nimport { isEditorialMode } from '@msdyn365-commerce/core-internal';\nimport { IDefaultPageProps } from './default-page.props.autogenerated';\n\n/**\n *\n * CoreComponent component\n * @extends {React.PureComponent}\n */\nclass DefaultPageContainer extends React.PureComponent> {\n constructor(props: IDefaultPageProps<{}>) {\n super(props);\n }\n\n public render(): JSX.Element {\n const { slots, telemetry, id, typeName } = this.props;\n\n let skipToMainText = this.props.config && this.props.config.skipToMainText;\n telemetry.log(LogLevel.Debug, \"DefaultPageContainer rendering for '{id}/{typeName}'\", { values: [id, typeName] });\n\n if (!skipToMainText) {\n skipToMainText =\n this.props.context.app && this.props.context.app.platform ? this.props.context.app.platform.skipToMainText : '';\n }\n\n const tabIndexSkipToMain = isEditorialMode(this.props.context.actionContext.requestContext) ? -1 : 0;\n\n return (\n \n \n {skipToMainText}\n \n
\n {slots &&\n slots.header &&\n slots.header.map((children: React.ReactNode) => {\n return children;\n })}\n
\n {slots && slots.subheader && (\n
\n {slots.subheader.map((children: React.ReactNode) => {\n return children;\n })}\n
\n )}\n
\n {slots &&\n slots.primary &&\n slots.primary.map((children: React.ReactNode) => {\n return children;\n })}\n
\n {slots && slots.subfooter && (\n
\n {slots.subfooter.map((children: React.ReactNode) => {\n return children;\n })}\n
\n )}\n \n
\n );\n }\n}\n\nexport default DefaultPageContainer;\n"],"names":["module","exports","React","ReactDOM","binding","modules","dataActions","c","require","$type","da","iNM","ns","n","p","pdp","md","window","__bindings__","_objectSpread","DefaultPageContainer","constructor","props","super","render","slots","telemetry","id","typeName","this","skipToMainText","config","log","LogLevel","Debug","values","context","app","platform","tabIndexSkipToMain","isEditorialMode","actionContext","requestContext","className","href","tabIndex","header","map","children","subheader","primary","subfooter","footer"],"sourceRoot":""}