Boolean dropdown component with three options: Any, Yes, No.
Renders a DaisyUI dropdown with keyboard navigation and proper accessibility. Supports nullable booleans (with "Any" option) and non-nullable (Yes/No only).
Required Assigns
filter- The Filter struct containing value (true/false/nil) and configmyself- The parent LiveComponent's @myself for event targeting
Events (handled by parent)
change_boolean- %{"id" => filter_id, "value" => "true" | "false" | "any"}
Example
<LiveFilter.Components.Boolean.render
filter={@filter}
myself={@myself}
/>
Summary
Functions
Renders a boolean dropdown component.