- ${this.label
- ? html`
`
- : null}
-
- this._openPopup()}"
- @input="${this._handleInputChange}"
- @keydown="${this._handleInputKeydown}"
- />
-
-
-
- `
- }
-}
diff --git a/src/v2/components/forms/combobox/README.md b/src/v2/components/forms/combobox/README.md
deleted file mode 100644
index 5a585bf62..000000000
--- a/src/v2/components/forms/combobox/README.md
+++ /dev/null
@@ -1,221 +0,0 @@
-# solid-ui-combobox component
-
-A Lit-based custom element that renders a styled combobox with a text input and a custom popup listbox. It supports async suggestion loading through a consumer-provided `suggestionProvider`, keyboard navigation, `input` and `change` events, and keeps the currently selected option at the top of the popup when opened.
-
-## Installation
-
-```bash
-npm install solid-ui
-```
-
-## Usage in a bundled project (webpack, Vite, Rollup, etc.)
-
-```javascript
-import { Combobox } from 'solid-ui/components/forms/combobox'
-```
-
-The legacy flat import path `solid-ui/components/combobox` still works, but the grouped `forms/combobox` path is the preferred long-term entrypoint.
-
-```html
-