UNPKG

@huluvu424242/honey-slideshow

Version:

Text to Speech component wich is reading texts from DOM elements.

35 lines (29 loc) 1.97 kB
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-99ba775b.js'); require('./config-eee1a965.js'); require('./hardware-back-button-8c2f48d2.js'); const ionicGlobal = require('./ionic-global-a82af109.js'); const overlays = require('./overlays-e24c5e4f.js'); const selectPopoverCss = ".sc-ion-select-popover-h ion-list.sc-ion-select-popover{margin-left:0;margin-right:0;margin-top:-1px;margin-bottom:-1px}.sc-ion-select-popover-h ion-list-header.sc-ion-select-popover,.sc-ion-select-popover-h ion-label.sc-ion-select-popover{margin-left:0;margin-right:0;margin-top:0;margin-bottom:0}"; const SelectPopover = class { constructor(hostRef) { index.registerInstance(this, hostRef); /** Array of options for the popover */ this.options = []; } onSelect(ev) { const option = this.options.find(o => o.value === ev.target.value); if (option) { overlays.safeCall(option.handler); } } render() { const checkedOption = this.options.find(o => o.checked); const checkedValue = checkedOption ? checkedOption.value : undefined; return (index.h(index.Host, { class: ionicGlobal.getIonMode(this) }, index.h("ion-list", null, this.header !== undefined && index.h("ion-list-header", null, this.header), (this.subHeader !== undefined || this.message !== undefined) && index.h("ion-item", null, index.h("ion-label", { class: "ion-text-wrap" }, this.subHeader !== undefined && index.h("h3", null, this.subHeader), this.message !== undefined && index.h("p", null, this.message))), index.h("ion-radio-group", { value: checkedValue }, this.options.map(option => index.h("ion-item", null, index.h("ion-label", null, option.text), index.h("ion-radio", { value: option.value, disabled: option.disabled }))))))); } }; SelectPopover.style = selectPopoverCss; exports.ion_select_popover = SelectPopover;