class Primer::Forms::Dsl::ActionMenuInput
:nodoc:
def focusable?
def focusable? true end
def initialize(name:, label:, **system_arguments, &block)
def initialize(name:, label:, **system_arguments, &block) @name = name @label = label @block = block super(**system_arguments) end
def to_component
def to_component ActionMenu.new(input: self) end
def type
def type :action_menu end