{"file":"vds-teaser-quote.entry.js","mappings":";;AAAA,MAAM,iBAAiB,GAAG,msKAAmsK,CAAC;AAC9tK,6BAAe,iBAAiB;;MCUnB,cAAc;;;wBAOL,EAAE;oBAMP,EAAE;sBAMC,EAAE;uBAKgB,KAAK;;IAGzC,MAAM;QACJ,QACE,EAAC,IAAI,uDACH,4DAAK,KAAK,EAAC,0DAA0D,IACnE,4DAAK,KAAK,EAAC,0BAA0B,IACnC,6DAAM,IAAI,EAAC,OAAO,GAAQ,CACtB,EACN,4DAAK,KAAK,EAAC,0BAA0B,IACnC,2DAAI,KAAK,EAAC,qGAAqG,EAAC,SAAS,EAAE,IAAI,CAAC,QAAQ,GAAO,EAC/I,mEAAY,KAAK,EAAC,MAAM,IACtB,0DAAG,KAAK,EAAC,qFAAqF,EAAC,SAAS,EAAE,IAAI,CAAC,IAAI,GAAM,EACzH,+DAAQ,KAAK,EAAC,qCAAqC,EAAC,SAAS,EAAE,IAAI,CAAC,MAAM,GAAW,CAC1E,EACX,IAAI,CAAC,SAAS,EAAE,CACd,CACF,CACD,EACP;KACH;IAEO,SAAS;QACf,IAAG,IAAI,CAAC,OAAO,EAAE;YACf,QACE,YAAM,IAAI,EAAC,KAAK,GAAQ,EACxB;SACH;KACF;;;;;;","names":[],"sources":["src/components/vds-teaser-quote/vds-teaser-quote.scss?tag=vds-teaser-quote&encapsulation=shadow","src/components/vds-teaser-quote/vds-teaser-quote.tsx"],"sourcesContent":[":host {\r\n @apply block;\r\n}\r\n\r\n::slotted(img) {\r\n @apply w-full h-full object-cover;\r\n}\r\n\r\n::slotted(picture) {\r\n @apply flex w-full h-auto overflow-hidden;\r\n}\r\n\r\n::slotted(img),\r\n::slotted(picture) {\r\n @apply rounded-full;\r\n}\r\n","import { Component, Host, h, Prop } from '@stencil/core';\r\n\r\n/**\r\n * @slot media - Shadow Dom Slot to place Media Item (e.g. picture / image)\r\n * @slot cta - Shadow Dom Slot where you can add a Call-To-Action Button (vds-button)\r\n */\r\n@Component({\r\n tag: 'vds-teaser-quote',\r\n styleUrl: 'vds-teaser-quote.scss',\r\n shadow: true,\r\n})\r\nexport class VdsTeaserQuote {\r\n\r\n /**\r\n * Headline for the Content Modules\r\n * Mandatory: no\r\n * Max Chars: 50\r\n */\r\n @Prop() headline = '';\r\n\r\n /**\r\n * Text-Content\r\n * Mandatory: no\r\n */\r\n @Prop() copy = '';\r\n\r\n /**\r\n * Text-Content above the media element\r\n * Mandatory: no\r\n */\r\n @Prop() source = '';\r\n\r\n /**\r\n * Controls wether the CTA Button is displayed or not\r\n */\r\n @Prop({ reflect: true }) showCta = false;\r\n\r\n\r\n render() {\r\n return (\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n \r\n
\r\n { this.renderCta() }\r\n
\r\n
\r\n
\r\n );\r\n }\r\n\r\n private renderCta(): string {\r\n if(this.showCta) {\r\n return (\r\n \r\n );\r\n }\r\n }\r\n\r\n}\r\n"],"version":3}