| 1 | # Dropdown Component DOX |
| 2 | |
| 3 | ## Purpose |
| 4 | |
| 5 | - Own the shared dropdown component used by WebUI controls. |
| 6 | |
| 7 | ## Ownership |
| 8 | |
| 9 | - `dropdown.html` owns dropdown markup, behavior hooks, and component-local styling. |
| 10 | |
| 11 | ## Local Contracts |
| 12 | |
| 13 | - Keep keyboard, focus, and click-outside behavior compatible with existing callers. |
| 14 | - Avoid caller-specific assumptions in the shared dropdown. |
| 15 | |
| 16 | ## Work Guidance |
| 17 | |
| 18 | - Prefer component attributes and slots over hardcoded option sets. |
| 19 | |
| 20 | ## Verification |
| 21 | |
| 22 | - Smoke-test each caller that uses the dropdown after behavior changes. |
| 23 | |
| 24 | ## Child DOX Index |
| 25 | |
| 26 | No child DOX files. |