@huluvu424242/honey-slideshow
Version:
Text to Speech component wich is reading texts from DOM elements.
28 lines (22 loc) • 832 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
const index = require('./index-99ba775b.js');
const ionicGlobal = require('./ionic-global-a82af109.js');
const selectOptionCss = ":host{display:none}";
const SelectOption = class {
constructor(hostRef) {
index.registerInstance(this, hostRef);
this.inputId = `ion-selopt-${selectOptionIds++}`;
/**
* If `true`, the user cannot interact with the select option.
*/
this.disabled = false;
}
render() {
return (index.h(index.Host, { role: "option", id: this.inputId, class: ionicGlobal.getIonMode(this) }));
}
get el() { return index.getElement(this); }
};
let selectOptionIds = 0;
SelectOption.style = selectOptionCss;
exports.ion_select_option = SelectOption;