Sha256: 5aedba15ecf43fc6a3806c02a6db951b29d75d1e282202ae8e73d817e5a889cc
Contents?: true
Size: 1.16 KB
Versions: 100
Compression:
Stored size: 1.16 KB
Contents
<%= content_tag(:div, data: object.data, aria: object.aria, class: object.classname) do %> <% if object.label %> <label class="pb_select_kit_label" for="<%= object.name %>"> <%= pb_rails("caption", props: { text: object.label }) %> </label> <% end %> <label class="<%= object.select_wrapper_class %>" for="<%= object.name %>"> <% if content.present? %> <%= content %> <%= pb_rails("body", props: { status: "negative", text: object.error }) %> <% else %> <%= select_tag( object.name, options_for_select( object.options_to_array, selected: object.selected, disabled: object.disabled_options, ), id: object.id, prompt: object.blank_selection, disabled: object.disabled, required: object.required, multiple: object.multiple, onchange: object.onchange, include_blank: object.include_blank, ) %> <%= pb_rails("body", props: { status: "negative", text: object.error }) %> <% end %> <%= pb_rails("icon", props: { icon: "angle-down", fixed_width: true, classname: "pb_select_kit_caret"}) %> </label> <% end %>
Version data entries
100 entries across 100 versions & 1 rubygems