FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
cjs
Edit File: sc-tab-panel.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-8acc3c89.js'); const scTabPanelCss = ":host{--padding:0;--spacing:var(--sc-spacing-large);display:block}::slotted(*~*){margin-top:var(--spacing)}.tab-panel{border:solid 1px transparent;padding:var(--padding);font-family:var(--sc-font-sans);font-size:var(--sc-font-size-medium)}"; const ScTabPanelStyle0 = scTabPanelCss; let id = 0; const ScTabPanel = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.componentId = `tab-panel-${++id}`; this.name = ''; this.active = false; } render() { // If the user didn't provide an ID, we'll set one so we can link tabs and tab panels with aria labels this.el.id = this.el.id || this.componentId; return (index.h(index.Host, { key: 'cc88249cdfd2712e6bbe6d7a33c31a687ebb5231', style: { display: this.active ? 'block' : 'none' } }, index.h("div", { key: '730713320b51b369bc1d5848445022b9b8659a26', part: "base", class: "tab-panel", role: "tabpanel", "aria-hidden": this.active ? 'false' : 'true' }, index.h("slot", { key: 'bd3fd83c6dc3783003072d5712715058d2cf28b0' })))); } get el() { return index.getElement(this); } }; ScTabPanel.style = ScTabPanelStyle0; exports.sc_tab_panel = ScTabPanel; //# sourceMappingURL=sc-tab-panel.cjs.entry.js.map
Save
Back