Sha256: 32e35a0a5f85c3c8191c9ad6c7099e09d47c029a592e014f26ead147f6d45850
Contents?: true
Size: 1.07 KB
Versions: 323
Compression:
Stored size: 1.07 KB
Contents
<%= content_tag(:div, aria: object.aria, data: object.data, class: object.classnames, **combined_html_options) 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, ), object.all_attributes ) %> <%= pb_rails("body", props: { status: "negative", text: object.error }) %> <% end %> <% if object.multiple != true %> <%= pb_rails("icon", props: { custom_icon: Playbook::Engine::root.join(angle_down_path), fixed_width: true, classname: "pb_select_kit_caret"}) %> <% end %> </label> <% end %>
Version data entries
323 entries across 323 versions & 1 rubygems