Sha256: 8a017d0af61fed0d604023a4293af20151d50a0c67e773cfc22c99ec91013f9a
Contents?: true
Size: 1.15 KB
Versions: 83
Compression:
Stored size: 1.15 KB
Contents
<%= content_tag(:div, aria: object.aria, class: object.classname, data: object.data) do %> <% if object.label.present? %> <%= pb_rails("caption", props: { text: object.label, dark: object.dark, classname: "pb_text_input_kit_label" }) %> <% end %> <%= content_tag(:div, class: "text_input_wrapper") do %> <% if object.children.present? %> <%= capture(&object.children) %> <% if object.error %> <%= pb_rails("body", props: {dark: object.dark, status: "negative", text: object.error}) %> <% end %> <% else %> <%= tag(:input, autocomplete: object.autocomplete ? nil : "off", class: "text_input", data: object.validation_data, disabled: object.disabled, id: object.id, name: object.name, pattern: object.validation_pattern, placeholder: object.placeholder, required: object.required, type: object.type, value: object.value) %> <% if object.error %> <%= pb_rails("body", props: {dark: object.dark, status: "negative", text: object.error}) %> <% end %> <% end %> <% end %> <% end %>
Version data entries
83 entries across 83 versions & 1 rubygems