Searched refs:radio (Results 1 – 2 of 2) sorted by relevance
24 private radio: HTMLInputElement | undefined | null property in LitRadioBox198 this.radio = this.shadowRoot?.getElementById('radio') as HTMLInputElement;204 this.radio = this.shadowRoot?.getElementById('radio') as HTMLInputElement;206 this.radio.addEventListener('change', () => {217 if (name == 'checked' && this.radio) {218 this.radio.checked = newValue !== null;
34 const radio = this.querySelector('lit-radio[checked]') as LitRadioBox; constant35 return radio ? [radio.value] : [];