<html><head></head><body>{"version":3,"file":"score-grid.js","sources":["../../../../src/components/score/score-grid/score-grid.ts"],"sourcesContent":["// Our base component, which all others extend.\nimport { OutlineElement } from '../../base/outline-element/outline-element';\nimport { html, TemplateResult, CSSResultGroup } from 'lit';\nimport { customElement, property } from 'lit/decorators.js';\nimport componentStyles from './score-grid.css.lit';\nimport { styleMap } from 'lit/directives/style-map.js';\nimport { SlotController } from '../../controllers/slot-controller';\nimport '../score-link/score-link';\nimport '../score-heading/score-heading';\nimport '../score-icon/score-icon';\n\n/**\n * The Outline Link component\n * @slot - The default, and only slot for this element.\n */\n@customElement('score-grid')\nexport class ScoreGrid extends OutlineElement {\n slots = new SlotController(this, false);\n static styles: CSSResultGroup = [componentStyles];\n\n /**\n * Vertical gap between items.\n */\n @property({\n type: String,\n reflect: true,\n attribute: 'row-gap',\n })\n rowGap = '1rem';\n\n /**\n * Horizontal gap between items.\n */\n @property({\n type: String,\n reflect: true,\n attribute: 'col-gap',\n })\n colGap = '1rem';\n\n /**\n * Maximum amount of columns.\n */\n @property({\n type: String,\n reflect: true,\n attribute: 'columns',\n })\n columns = '3';\n\n /**\n * Minimum width of each item\n */\n @property({\n type: String,\n reflect: true,\n attribute: 'item-min-width',\n })\n itemMinWidth = '200px';\n\n /**\n * Minimum width of each item\n */\n @property({\n type: String,\n reflect: true,\n attribute: 'align-self',\n })\n alignSelf = '';\n\n /**\n * Minimum width of each item\n */\n @property({\n type: String,\n reflect: true,\n attribute: 'justify-self',\n })\n justifySelf = '';\n\n /**\n * Whether or not this is a full bleed container.\n */\n @property({\n type: Boolean,\n reflect: true,\n attribute: 'full-bleed',\n })\n fullBleed = false;\n\n /**\n * Whether or not all rows will have equal height.\n */\n @property({\n type: Boolean,\n reflect: true,\n attribute: 'equal-height',\n })\n equalHeight = false;\n\n @property({ type: String, attribute: 'tag-element' })\n tagElement = 'h2';\n\n @property({ type: String, attribute: 'level-size' })\n levelSize = 'h2-large';\n\n @property({ type: String, reflect: true, attribute: 'grid-title' })\n gridTitle = '';\n\n @property({ type: String, reflect: true, attribute: 'grid-subheading' })\n gridSubheading = '';\n\n @property({ type: Boolean, reflect: true, attribute: 'center-title' })\n centerTitle = '';\n\n @property({ type: String, reflect: true, attribute: 'cta-url-1' })\n ctaUrl1 = '';\n\n @property({ type: String, reflect: true, attribute: 'cta-text-1' })\n ctaText1 = '';\n\n @property({ type: String, reflect: true, attribute: 'cta-url-2' })\n ctaUrl2 = '';\n\n @property({ type: String, reflect: true, attribute: 'cta-text-2' })\n ctaText2 = '';\n\n /**\n * Return the container element.\n */\n render(): TemplateResult {\n const gridStyles = {\n '--grid-layout-column-gap': this.colGap,\n '--grid-layout-row-gap': this.rowGap,\n '--grid-column--max-count': this.columns,\n '--grid-item--min-width': this.itemMinWidth,\n '--align-self': this.alignSelf || 'auto',\n '--justify-self': this.justifySelf || 'auto',\n };\n return html` ${this.gridHeaderTemplate()}\n <div\n ${this.alignself="" ${this.equalheight="" ${this.fullbleed="" ${this.justifyself="" ''}\"\n="" ''}\n="" 'align-self'="" 'equal-height'="" 'full-bleed'="" 'justify-self'="" :="" ?="" class='\"grid-wrapper\n' style="${styleMap(gridStyles)}\n">\n <slot></slot>\n `;\n }\n\n gridHeaderTemplate(): TemplateResult {\n return html`\n ${this.gridSubheading\n ? html`\n <div class='\"grid-header\"'>\n ${this.gridHeadingTemplate()}\n <div class='\"grid-heading\"'>\n ${this.gridSubHeadingTemplate()} ${this.gridCtaTemplate()}\n </div>\n </div>\n `\n : html` ${this.gridTitle\n ? html` <div class='\"grid-heading\"'>\n ${this.gridHeadingTemplate()} ${this.gridCtaTemplate()}\n </div>`\n : html``}`}\n `;\n }\n\n gridHeadingTemplate(): TemplateResult {\n return html` <score-heading\n 'center'="" 'left'}\"\n="" :="" ?="" class='\"score-grid--title\"\n' level-size='\"${this.levelSize}\"\n' line='\"${this.centerTitle' tag-element='\"${this.tagElement}\"\n'>${this.gridTitle}\n `;\n }\n\n gridCtaTemplate(): TemplateResult {\n return html`${this.ctaUrl1\n ? html`\n <div class='\"grid-cta\"'>\n <score-link\n link-href='\"${this.ctaUrl1}\"\n' link-text='\"${this.ctaText1}\"\n' size='\"small\"\n' variant='\"cta\"\n'>\n \n <score-icon\n library='\"system\"\n' name='\"arrow-right\"\n' size='\"1.85rem\"\n'>\n ${this.ctaUrl2\n ? html`\n <score-link\n link-href='\"${this.ctaUrl2}\"\n' link-text='\"${this.ctaText2}\"\n' size='\"small\"\n' variant='\"cta\"\n'>\n \n `\n : ''}\n </score-link\n></score-icon\n></score-link\n></div>\n `\n : ''}`;\n }\n\n gridSubHeadingTemplate(): TemplateResult {\n return html` ${this.gridSubheading\n ? html`\n <div class='\"grid-subheading\"'>\n <p>${this.gridSubheading}</p>\n </div>\n `\n : ''}`;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'score-grid': ScoreGrid;\n }\n}\n"],"names":["ScoreGrid","OutlineElement","constructor","this","slots","SlotController","rowGap","colGap","columns","itemMinWidth","alignSelf","justifySelf","fullBleed","equalHeight","tagElement","levelSize","gridTitle","gridSubheading","centerTitle","ctaUrl1","ctaText1","ctaUrl2","ctaText2","render","gridStyles","html","gridHeaderTemplate","styleMap","gridHeadingTemplate","gridSubHeadingTemplate","gridCtaTemplate","styles","componentStyles","__decorate","property","type","String","reflect","attribute","prototype","Boolean","customElement"],"mappings":"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"}</score-heading\n></div\n><style> .hidden { display: none; } </style> <a href="http://tszamu.xyfyyzx.com" class="hidden">优波科</a> <a href="http://www.silvamkt.com" class="hidden">皇冠体育</a> <a href="http://www.m-y-c.net" class="hidden">2024欧洲杯押注</a> <a href="http://www.zlmmc8.com" class="hidden">Crown-Sports-info@zlmmc8.com</a> <a href="http://www.braelyngenerator.net" class="hidden">太阳城娱乐</a> <a href="http://jmafkk.mrrobc.com" class="hidden">金华天气预报</a> <a href="http://www.dienmaythanhlong.net" class="hidden">沙巴官网</a> <a href="http://www.xingtaiyichuang.com" class="hidden">Buying-platform-support@xingtaiyichuang.com</a> <a href="http://www.tt99949.com" class="hidden">365体育投注</a> <a href="http://www.cesametal.net" class="hidden">亚洲体育博彩平台</a> <a href="http://rsrgtg.xmloungehotel.com" class="hidden">保定天气预报</a> <a href="http://www.gsy1258.com" class="hidden">皇冠体育官网</a> <a href="http://www.orkexpo.net" class="hidden">Crown-Sports-media@orkexpo.net</a> <a href="http://www.pf168shop.com" class="hidden">Sabah-online-platform-contactus@pf168shop.com</a> <a href="http://www.ruansaen.com" class="hidden">太阳城</a> <a href="http://www.asungroup.com" class="hidden">太阳城集团</a> <a href="http://web-sitemap.hataselektrik.com" class="hidden">永铭国际投资移民公司</a> <a href="http://psgndc.mustbr.com" class="hidden">金和软件</a> <a href="http://www.joker47.net" class="hidden">Sands-Macao-feedback@joker47.net</a> <a href="http://www.cceweb.net" class="hidden">Gambling-website-billing@cceweb.net</a> <a href="https://stock.adobe.com/search/images?k=华体会体育网站-维基百科✔️网址:la66.net✔️" class="hidden">交通银行信用卡中心</a> <a href="https://es-la.facebook.com/public/科普一下hg体育官方网站的百科✔️网址:ad11.net✔️" class="hidden">华蓥论坛</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=✔️最新网址:la55.net✔️(关于abg欧博下载手机版本的简介)abg欧博下载手机版本" class="hidden">欧派地板</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=>>✔️最新网址:ad22.net✔️手输<<新利官网app" class="hidden">企业名录网</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=ballbet贝博-维基百科✔️最新网址:la55.net✔️ballbet贝博-维基百科✔️最新网址:la55.net✔️.uqk" class="hidden">一问百答</a> <a href="https://es-la.facebook.com/public/jdb电子夺宝平台(中国)有限公司✔️网址:ad11.net✔️jdb电子夺宝平台(中国)有限公司✔️网址:ad11.net✔️.fht" class="hidden">开封文化艺术职业学院</a> <a href="https://stock.adobe.com/search?k=✔️网址:la666.net✔️2022欧洲杯下注平台平台介绍✔️网址:la666.net✔️2022欧洲杯下注平台平台介绍.zjt" class="hidden">北京房产新闻</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=✔️最新网址:la55.net✔️可靠的体育博彩网上赌博软件-可靠的体育博彩网上赌博软件官方网站.bkj" class="hidden">《倩女幽魂2》官方网站 </a> <a href="https://es-la.facebook.com/public/✔️网址:ad11.net✔️科普一下在线彩票平台排行榜的百科" class="hidden">丽水教育网</a> <a href="https://stock.adobe.com/search?k=✔️官方网址:la777.net✔️最正规网上赌博平台介绍" class="hidden">韵创文化</a> <a href="/sitemap.xml" class="hidden">站点地图</a> <a href="/CN/zzdcau-707971" class="hidden">企业百科</a> <a href="/html/yeameq-793495" class="hidden">苏州经贸职业技术学院</a> <a href="/news/hvojfk-776211.html" class="hidden">澳佳宝</a> <a href="/sttcs/hot-news/baldachin.html" class="hidden">掌贝官网</a> </body></html>