UNPKG

forms-reactive

Version:

Reactive Form Web Component

60 lines (56 loc) 1.93 kB
import { r as registerInstance, h, H as Host, e as getElement } from './index-c364827c.js'; import { a as attachComponent } from './framework-delegate-6a899b18.js'; import './helpers-609e93da.js'; const tabCss = ":host(.tab-hidden){display:none !important}"; const IonTabStyle0 = tabCss; const Tab = class { constructor(hostRef) { registerInstance(this, hostRef); this.loaded = false; this.active = false; this.delegate = undefined; this.tab = undefined; this.component = undefined; } async componentWillLoad() { if (this.active) { await this.setActive(); } } /** Set the active component for the tab */ async setActive() { await this.prepareLazyLoaded(); this.active = true; } changeActive(isActive) { if (isActive) { this.prepareLazyLoaded(); } } prepareLazyLoaded() { if (!this.loaded && this.component != null) { this.loaded = true; try { return attachComponent(this.delegate, this.el, this.component, ['ion-page']); } catch (e) { console.error(e); } } return Promise.resolve(undefined); } render() { const { tab, active, component } = this; return (h(Host, { key: '2107ece2f1ebdf748bac8adb78a9ad67e7fc9057', role: "tabpanel", "aria-hidden": !active ? 'true' : null, "aria-labelledby": `tab-button-${tab}`, class: { 'ion-page': component === undefined, 'tab-hidden': !active, } }, h("slot", { key: 'b4a1bc1aa79f6b82b8f77b544bcb74e65229b541' }))); } get el() { return getElement(this); } static get watchers() { return { "active": ["changeActive"] }; } }; Tab.style = IonTabStyle0; export { Tab as ion_tab }; //# sourceMappingURL=ion-tab.entry.js.map