FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
esm
Edit File: sc-tab-panel.entry.js
import { r as registerInstance, h, H as Host, a as getElement } from './index-745b6bec.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) { 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 (h(Host, { key: 'cc88249cdfd2712e6bbe6d7a33c31a687ebb5231', style: { display: this.active ? 'block' : 'none' } }, h("div", { key: '730713320b51b369bc1d5848445022b9b8659a26', part: "base", class: "tab-panel", role: "tabpanel", "aria-hidden": this.active ? 'false' : 'true' }, h("slot", { key: 'bd3fd83c6dc3783003072d5712715058d2cf28b0' })))); } get el() { return getElement(this); } }; ScTabPanel.style = ScTabPanelStyle0; export { ScTabPanel as sc_tab_panel }; //# sourceMappingURL=sc-tab-panel.entry.js.map
Save
Back