Sha256: ef8add95466c0b73eab5449bb23bd5dd4b62dbee7a54009eb470a65805eb790b
Contents?: true
Size: 1.92 KB
Versions: 282
Compression:
Stored size: 1.92 KB
Contents
<%= content_tag(:div, id: object.id, data: object.data, class: object.classname) do %> <% # convert deprecated prop values size = object.size size = "sm" if object.size == "xs" size = "md" if object.size == "lg" %> <% if object.unstyled %> <% if object.show_icon %> <span> <%= pb_rails("icon", props: { icon: "clock", fixed_width: true }) %> </span> <% end %> <%= content_tag(:time, datetime: object.pb_date_time.to_iso) do %> <span><%= object.format_time_string %></span> <% if object.show_timezone %> <span><%= object.pb_date_time.to_timezone.upcase %></span> <% end %> <% end %> <% elsif size == "md" %> <% if object.show_icon %> <%= pb_rails("body", props: { color: "light", tag: "span"}) do %> <%= pb_rails("icon", props: { icon: "clock", fixed_width: true }) %> <% end %> <% end %> <%= content_tag(:time, datetime: object.pb_date_time.to_iso) do %> <%= pb_rails("body", props: { tag: "span", text: object.format_time_string, classname: "pb_time" }) %> <% if object.show_timezone %> <%= pb_rails("body", props: { color: "light", tag: "span", text: object.pb_date_time.to_timezone.upcase }) %> <% end %> <% end %> <% else %> <% if object.show_icon %> <%= pb_rails("body", props: { color: "light", tag: "span"}) do %> <%= pb_rails("icon", props: { icon: "clock", fixed_width: true, size: "sm" }) %> <% end %> <% end %> <%= content_tag(:time, datetime: object.pb_date_time.to_iso) do %> <%= pb_rails("caption", props: { color: "light", tag: "span", text: object.format_time_string }) do %> <%= object.format_time_string %> <% if object.show_timezone %> <span class="pb_time_timezone"> <%= object.pb_date_time.to_timezone.upcase %> </span> <% end %> <% end %> <% end %> <% end %> <% end %>
Version data entries
282 entries across 282 versions & 1 rubygems