defmodule MoonWeb.Pages.Design.Form.ComboboxPage do
@moduledoc false
require Logger
use MoonWeb, :live_view
alias MoonWeb.Components.Anatomy
alias MoonWeb.Components.ComponentPageDescription
alias MoonWeb.Components.ExamplesList
alias MoonWeb.Components.Page
alias MoonWeb.Components.PropsTable
alias MoonWeb.Examples.Design.Form.ComboboxExample
data(breadcrumbs, :any,
default: [
%{
to: "/components",
name: "Components"
},
%{
to: "/components/v2/form/combobox",
name: "Combobox"
}
]
)
def render(assigns) do
~F"""
An input that behaves similarly to a dropdown, with the addition of a free text input to filter options.