Home
last modified time | relevance | path

Searched refs:radio (Results 1 – 2 of 2) sorted by relevance

/developtools/profiler/host/smartperf/ide/src/base-ui/radiobox/
DLitRadioBox.ts24 private radio: HTMLInputElement | undefined | null property in LitRadioBox
198 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;
DLitRadioGroup.ts34 const radio = this.querySelector('lit-radio[checked]') as LitRadioBox; constant
35 return radio ? [radio.value] : [];