Lines Matching refs:a
170 options.filter((a: LitSelectOption) => {
171 if (a.textContent!.indexOf(this.selectVSearchInputEl!.value) <= -1) {
172 a.style.display = 'none';
174 a.style.display = 'flex';
271 this.shadowRoot?.querySelectorAll('lit-select-option').forEach((a) => {
272 a.setAttribute('check', '');
273 a.addEventListener('onSelected', (e: any) => {
274 if (a.hasAttribute('selected')) {
275 let number = this.showItems.indexOf(a.textContent!);
282 a.removeAttribute('selected');
285 let index = this.itemValue.indexOf(a.textContent!);
286 let value = this.showItems.indexOf(a.textContent!);
288 this.showItems.push(a.textContent!);
298 a.setAttribute('selected', '');
323 this.shadowRoot?.querySelectorAll('lit-select-option').forEach((a) => {
324 a.setAttribute('check', '');
325 a.addEventListener('onSelected', (e: any) => {
326 if (a.hasAttribute('selected')) {
327 let number = this.showItems.indexOf(a.textContent!);
331 a.removeAttribute('selected');
334 let index = this.itemValue.indexOf(a.textContent!);
336 this.showItems.push(a.textContent!);
338 a.setAttribute('selected', '');
347 this.shadowRoot?.querySelectorAll('lit-select-option').forEach((a) => {
348 a.setAttribute('selected', '');