Sha256: 9bd839de3f7e50c90ca6487c1c01e9521dca221cb5481130e6ace899c2f971d4
Contents?: true
Size: 1.21 KB
Versions: 450
Compression:
Stored size: 1.21 KB
Contents
<% if object.is_react? %> <%= react_component('Typeahead', object.typeahead_react_options) %> <% else %> <%= content_tag(:div, id: object.id, data: object.data, class: object.classname + object.inline_class) do %> <div class="pb_typeahead_wrapper"> <div class="pb_typeahead_loading_indicator" data-pb-typeahead-kit-loading-indicator> <%= pb_rails("icon", props: { icon: "spinner", pulse: true, fixed_width: true, }) %> </div> <%= pb_rails("text_input", props: { type: "search", input_options: object.input_options, label: object.label, name: object.name, value: object.value, placeholder: object.placeholder }) %> <%= pb_rails("list", props: { ordered: false, borderless: false, xpadding: true, role: "status", aria: { live: "polite" }, data: { pb_typeahead_kit_results: true } }) do %> <% end %> </div> <template data-pb-typeahead-kit-result-option> <%= pb_rails("list/item") do %> <button type="button" data-result-option-item><%= tag(:slot, name: :content) %></button> <% end %> </template> <% end %> <% end %>
Version data entries
450 entries across 450 versions & 1 rubygems