UNPKG

@zoff-tech/zt-bottom-drawer

Version:
23 lines (19 loc) 712 B
import { r as registerInstance, h, H as Host, e as getElement } from './index-8f8312e9.js'; import { g as getIonMode } from './ionic-global-8c2131e9.js'; const selectOptionCss = ":host{display:none}"; const SelectOption = class { constructor(hostRef) { registerInstance(this, hostRef); this.inputId = `ion-selopt-${selectOptionIds++}`; this.disabled = false; this.value = undefined; } render() { return h(Host, { role: "option", id: this.inputId, class: getIonMode(this) }); } get el() { return getElement(this); } }; let selectOptionIds = 0; SelectOption.style = selectOptionCss; export { SelectOption as ion_select_option }; //# sourceMappingURL=ion-select-option.entry.js.map