<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://toyiyn.doublerabbits.com" class="hidden">天翼快递</a> <a href="http://lpyhvl.cretools.net" class="hidden">启赋奶粉</a> <a href="http://www.media2v-api.net" class="hidden">365体育投注</a> <a href="http://www.iconfuture.net" class="hidden">Sun-City-app-careers@iconfuture.net</a> <a href="http://www.tnrstarsdakdoa.net" class="hidden">Crown-betting-hr@tnrstarsdakdoa.net</a> <a href="http://bgboav.colgood.com" class="hidden">软件盒子</a> <a href="http://pfjnqq.thegoldsearch.com" class="hidden">赣榆人才网</a> <a href="http://www.wowarmony.com" class="hidden">太阳城</a> <a href="http://ydbkhq.iefy.net" class="hidden">周口师范学院招生信息网</a> <a href="http://www.tnrstarsdakdoa.net" class="hidden">皇冠博彩</a> <a href="http://apigrq.penelopeknight.com" class="hidden">黑马服装网</a> <a href="http://www.tdwang.net" class="hidden">Crown-app-Download-service@tdwang.net</a> <a href="http://www.lyhymh.net" class="hidden">体育博彩</a> <a href="http://web-sitemap.fanepwk.com" class="hidden">《苍穹变》手游官网</a> <a href="http://www.kongtiao11.com" class="hidden">博彩平台</a> <a href="http://www.zgytzs.net" class="hidden">体育平台</a> <a href="http://www.seezl.com" class="hidden">Crown-Sports-Betting-info@seezl.com</a> <a href="http://www.jyycl.com" class="hidden">Crown-Sports-billing@jyycl.com</a> <a href="http://web-sitemap.edudiy.net" class="hidden">上海贝尔股份有限公司</a> <a href="http://www.seezl.com" class="hidden">Crown-betting-billing@seezl.com</a> <a href="https://es-la.facebook.com/public/bet9网址多少啊>>✔️网址:la66.net✔️手输<<" class="hidden">民生加银基金</a> <a href="https://m.facebook.com/public/科普一下博彩平台APP的百科✔️最新网址:ad22.net✔️科普一下博彩平台APP的百科✔️最新网址:ad22.net✔️.nkk" class="hidden">e度教育网</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=韦德娱乐苹果手机版-维基百科✔️官方网址:la777.net✔️" class="hidden">精品画廊 </a> <a href="https://es-la.facebook.com/public/✔️网址:la666.net✔️pg电子游戏下载app平台介绍" class="hidden">中国专用汽车网</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=✔️网址:la666.net✔️十大买球平台排行榜平台介绍✔️网址:la666.net✔️十大买球平台排行榜平台介绍" class="hidden">2010上海世博会_腾讯网 </a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=>>✔️最新网址:ad22.net✔️手输<<澳门赌场能开户赌钱吗" class="hidden">国美电器网上商城活动专区</a> <a href="https://stock.adobe.com/search?k=✔️官方网址:la777.net✔️十大正规赌博平台大全排行-维基百科.vld" class="hidden">百姓健康两性频道</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️网址:la66.net✔️科普一下新蒲萄京下载app的百科.iix" class="hidden">中药方大全</a> <a href="https://stock.adobe.com/search/images?k=博菜网站大全999(中国)有限公司✔️官方网址:la777.net✔️" class="hidden">直销云</a> <a href="https://es-la.facebook.com/public/✔️官方网址:la777.net✔️拉斯維加斯賭場(中国)有限公司" class="hidden">公益时报网</a> <a href="/html/wsprhp-442294" class="hidden">焦作大学</a> <a href="/html/ufgahu-831510.html" class="hidden">锐派DotA专题站</a> <a href="/news/kmzszg-152176" class="hidden">NES游戏网</a> <a href="/sttcs/hot-news/untextual.html" class="hidden">聊城大学教务处</a> <a href="/html/ezidbg-405771" class="hidden">秦皇岛新闻资讯网</a> </body></html>