Sha256: a5369a9319526a47f2475117901831db9ab6383ea3d421d4b6df4280ebbdd5da

Contents?: true

Size: 715 Bytes

Versions: 4

Compression:

Stored size: 715 Bytes

Contents

<% attribute.each do |att| %>
  <div class="Polaris-FormLayout__Item">
    <div class="">
      <% unless options[:supress_label] %>
        <div class="Polaris-Labelled__LabelWrapper">
          <div class="Polaris-Label">
            <%= form.label att, options[:label], class: 'Polaris-Label__Text' %>
          </div>
        </div>
      <% end %>
      <div class="Polaris-TextField">
        <%= form.send element_type, att, id: "#{form.object.class.name.tableize.singularize}_#{att}", class: "Polaris-TextField__Input", placeholder: options[:placeholder], value: options[:value] || form.object&.send(att) %>
        <div class="Polaris-TextField__Backdrop"></div>
      </div>
    </div>
  </div>
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
polaris_view_helpers-1.2.2 app/views/polaris/_text_field.html.erb
polaris_view_helpers-1.2.1 app/views/polaris/_text_field.html.erb
polaris_view_helpers-1.2.0 app/views/polaris/_text_field.html.erb
polaris_view_helpers-1.1.6 app/views/polaris/_text_field.html.erb