{"version":3,"file":"static/js/96a13ca2f433e4f68fa7.bundle.js","mappings":";wsBAAA,MAAMA,EAAU,CAAEC,QAAS,GAAIC,YAAa,IAEvCF,EAAQC,QAAQ,cAAgB,CAC7BE,EAAGA,IAAMC,EAAQ,MACjBC,MAAO,gBACPC,GAAI,GAEJC,KAAK,EACLC,GAAI,6BACJC,EAAG,aACHC,EAAG,aAEHC,IAAK,GAGLC,GAAI,kFAKRC,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,uEAAyE,CAChGb,EAAGA,IAAMC,EAAQ,MACjBa,GAAI,oDAEpBJ,OAAOC,aAAeD,OAAOC,cAAgB,GAC7CD,OAAOC,aAAaE,eAAcD,EAAAA,EAAA,GACPF,OAAOC,aAAaE,gBAAkB,IACtCA,2qBClB3B,MAAME,UAAkBC,EAAAA,cAAxBC,cAAA,oBAiBW,KAAAC,iBAAoBC,GAA0CC,KAAKC,MAAMC,OAAOC,UAAYJ,EAAMK,OAAOC,MAhBzGC,SACH,MAAM,UAAEH,EAAS,UAAEI,GAAcP,KAAKC,MAAMC,OACtCM,EAAOL,GACTP,EAAAA,cAACa,EAAAA,GAA0B,CACvBD,KAAML,EACNO,UAAW,CAAEC,OAAQX,KAAKF,iBAAkBc,eAAgBZ,KAAKC,MAAMY,QAAQC,WAGjFC,EAAkBvB,EAAAA,EAAA,GACjBQ,KAAKC,OAAK,IACbE,UAAWK,EACXD,UAAWS,GAAAA,CAAW,gBAAiBT,KAE3C,OAAOP,KAAKC,MAAMgB,WAAWF,IAKrC,wEC9BA,MAMA,EANqDd,GACjDL,EAAAA,cAAA,MAAAsB,OAAAC,OAAA,CAAKZ,UAAWN,EAAMM,UAAWa,GAAInB,EAAMmB,IAAQnB,EAAMoB,uBAAuBpB,IAC3EA,EAAME,kBCXfmB,EAAOC,QAAU3B,cCAjB0B,EAAOC,QAAUC","sources":["webpack://Dobbies.Commerce/./lib/text-block/module-registration.js?a78c","webpack://Dobbies.Commerce/./src/modules/text-block/text-block.tsx?db84","webpack://Dobbies.Commerce/./src/modules/text-block/text-block.view.tsx?9307","webpack://Dobbies.Commerce/external var \"React\"?0d3b","webpack://Dobbies.Commerce/external var \"ReactDOM\"?853b"],"sourcesContent":["const binding = { modules: {}, dataActions: {} };\n\n (binding.modules['text-block'] = {\n c: () => require('@msdyn365-commerce-modules/text-block/dist/lib/modules/text-block/text-block'),\n $type: 'contentModule',\n da: [],\n \n iNM: true,\n ns: '@msdyn365-commerce-modules',\n n: 'text-block',\n p: 'text-block',\n \n pdp: '',\n \n \n md: 'node_modules/@msdyn365-commerce-modules/text-block/dist/lib/modules/text-block'\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|text-block|modules|text-block|text-block'] = {\n c: () => require('@msdyn365-commerce-modules/text-block/dist/lib/modules/text-block/text-block.view.js'),\n cn: '@msdyn365-commerce-modules-text-block-text-block'\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 * as MsDyn365 from '@msdyn365-commerce/core';\nimport classnames from 'classnames';\nimport * as React from 'react';\n\nimport { ITextBlockProps } from './text-block.props.autogenerated';\n\nexport interface ITextBlockViewProps extends ITextBlockProps<{}> {\n paragraph?: React.ReactNode;\n className?: string;\n}\n\n/**\n *\n * TextBlock component.\n */\nclass TextBlock extends React.PureComponent> {\n public render(): JSX.Element | null {\n const { paragraph, className } = this.props.config;\n const text = paragraph && (\n \n );\n const textBlockViewProps = {\n ...this.props,\n paragraph: text,\n className: classnames('ms-text-block', className)\n };\n return this.props.renderView(textBlockViewProps) as React.ReactElement;\n }\n\n public handleTextChange = (event: MsDyn365.ContentEditableEvent) => (this.props.config.paragraph = event.target.value);\n}\nexport default TextBlock;\n","/*!\n * Copyright (c) Microsoft Corporation.\n * All rights reserved. See LICENSE in the project root for license information.\n */\n\nimport * as React from 'react';\n\nimport { ITextBlockViewProps } from './text-block';\n\nconst TextBlockView: React.FC = props => (\n
\n {props.paragraph}\n
\n);\n\nexport default TextBlockView;\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","TextBlock","React","constructor","handleTextChange","event","this","props","config","paragraph","target","value","render","className","text","MsDyn365","editProps","onEdit","requestContext","context","request","textBlockViewProps","classnames","renderView","Object","assign","id","renderModuleAttributes","module","exports","ReactDOM"],"sourceRoot":""}