Dropdown select component with search support.
Renders a DaisyUI dropdown with keyboard navigation, search filtering, and proper accessibility attributes.
Required Assigns
filter- The Filter struct containing value and configmyself- The parent LiveComponent's @myself for event targeting
Optional Assigns
select_search- Map of filter_id => search string for filtering options
Events (handled by parent)
select_option_value- %{"id" => filter_id, "selected" => value}select_search- %{"id" => filter_id, "value" => search}
Example
<LiveFilter.Components.Select.render
filter={@filter}
myself={@myself}
select_search={@select_search}
/>
Summary
Functions
Renders a dropdown select component.