<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://www.letaoyizs.com" class="hidden">皇冠app下载</a> <a href="http://togdqv.mysousou.net" class="hidden">青岛海博生物</a> <a href="http://www.xyschool.net" class="hidden">太阳城娱乐城</a> <a href="http://www.rdsy.net" class="hidden">皇冠体育</a> <a href="http://qbtfmt.ebasd.com" class="hidden">LOTIONSPA露芯(中国)官方网站</a> <a href="http://vdnzeg.layneoutdoor.net" class="hidden">全球汽车网</a> <a href="http://www.symmjg.com" class="hidden">体育博彩</a> <a href="http://www.najwc.com" class="hidden">Gaming-platform-marketing@najwc.com</a> <a href="http://www.xqykl.net" class="hidden">体育平台</a> <a href="http://web-sitemap.chinafumeilai.net" class="hidden">欧迅科技</a> <a href="http://www.vko29.com" class="hidden">365-Sports-admin@vko29.com</a> <a href="http://web-sitemap.rentflhomes.com" class="hidden">欣欣福建旅游网</a> <a href="http://ulcsps.sztafl.net" class="hidden">江苏路灯网</a> <a href="http://www.record-room.com" class="hidden">足球外围平台</a> <a href="http://www.andersontxrealty.net" class="hidden">Galaxy-Group-app-download-media@andersontxrealty.net</a> <a href="http://www.media2v-api.net" class="hidden">365-Sports-Betting-support@media2v-api.net</a> <a href="http://www.uc1112.com" class="hidden">澳门威尼斯</a> <a href="http://www.lsxythnjy.com" class="hidden">Crown-football-admin@lsxythnjy.com</a> <a href="http://fctxal.yddailli.com" class="hidden">文玩商城 </a> <a href="http://www.vipsjerseyonline.net" class="hidden">City-of-Dreams-Online-careers@vipsjerseyonline.net</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=新葡京博彩官网>>✔️网址:la66.net✔️手输<<新葡京博彩官网>>✔️网址:la66.net✔️手输<<" class="hidden">搜狐博客</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=爱游戏下载最新-爱游戏下载最新官方网站✔️最新网址:la55.net✔️" class="hidden">保利地产武汉公司</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=lol菠菜竞猜平台介绍✔️网址:la666.net✔️" class="hidden">湖南民生网</a> <a href="https://stock.adobe.com/search?k=现在哪个可以买球✔️网址:ad11.net✔️现在哪个可以买球✔️网址:ad11.net✔️.mlm" class="hidden">949健康网</a> <a href="https://m.facebook.com/public/✔️最新网址:ad22.net✔️og体育综合平台(中国)有限公司.req" class="hidden">CCTV13新闻频道官网</a> <a href="https://m.facebook.com/public/科普一下韦德1949娱乐的百科✔️最新网址:la55.net✔️科普一下韦德1949娱乐的百科✔️最新网址:la55.net✔️" class="hidden">源明杰</a> <a href="https://stock.adobe.com/search?k=>>✔️官方网址:la777.net✔️手输<<最正规网上赌博博彩网站大全.dkb" class="hidden">民声频道_央视网</a> <a href="https://es-la.facebook.com/public/cq9试玩2000的平台✔️最新网址:la55.net✔️.wes" class="hidden">虎格网</a> <a href="https://es-la.facebook.com/public/✔️网址:la66.net✔️(关于betball贝博足彩的简介)betball贝博足彩.vow" class="hidden">万通液压</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=✔️网址:la66.net✔️科普一下365bet体育入口的百科.nrd" class="hidden">黑龙江大学本科招生信息网</a> <a href="/CN/fdstni-197406" class="hidden">黔江在线</a> <a href="/sitemap.xml" class="hidden">站点地图</a> <a href="/CN/xfbbgp-154971.html" class="hidden">在线财神网</a> <a href="/html/umxzcr-745859" class="hidden">扬州教育考试院</a> </body></html>