Lines Matching refs:dropdown
9 #dropdown;
75 this.#dropdown = document.createElement('div');
76 this.#dropdown.className = 'dropdown';
77 this.#dropdown.part = 'dropdown';
78 this.#dropdown.style.display = 'none';
112 this.shadowRoot.appendChild(this.#dropdown);
129 const dropdownStyles = window.getComputedStyle(this.#dropdown);
146 this.#dropdown.style.setProperty(property, newValue);
148 this.#dropdown.style.minWidth = `${this.#input.offsetWidth}px`;
149 this.#dropdown.style.borderTop = 'none';
223 if (this.#dropdown.style.display !== 'block') return;
225 const items = this.#dropdown.querySelectorAll('.option');
226 const selectedItem = this.#dropdown.querySelector('.option.selected');
251 this.#dropdown.style.display = 'none';
329 this.#dropdown.innerHTML = '';
337 this.#dropdown.appendChild(div);
344 this.#dropdown.style.display = 'block';
353 this.#dropdown.style.display = 'none';