module Coco module Concerns module WithDropdownOptions extend ActiveSupport::Concern include AcceptsOptions included do accepts_option :dropdown, alias: "tippy" do |dd| dd.accepts_option :placement, from: %w[top top-start top-end right right-start right-end bottom bottom-start bottom-end left left-start left-end auto auto-start auto-end], default: "bottom-start" end end end end end