Sha256: 9c36890eb62337a47cb39df49b80dc0ab41d2003926a47a9f83f94f133d5c931
Contents?: true
Size: 1.67 KB
Versions: 6
Compression:
Stored size: 1.67 KB
Contents
<% class_name = '' unless local_variables.include? :class_name position_classes = comp.position.map {|p| "v-button-position-#{p}"}.join(' ') event_parent_id = nil unless local_variables.include? :event_parent_id data_attributes = '' unless local_variables.include? :data_attributes %> <button id="<%= comp.id %>" class="v-button v-button--button mdc-button <%=class_name%> <%= 'v-hidden' if comp.hidden %> <%= 'mdc-button--raised' if eq(comp.button_type, :raised) %> <%= 'v-secondary-filled-button' if eq(comp.button_type, :raised) && eq(comp.color, :secondary) %> <%= 'v-secondary-text-button' if eq(comp.button_type, :flat) && eq(comp.color, :secondary) %> <%= position_classes %> <%= 'v-menu-click' if comp.menu%> <%= 'v-nowrap' unless comp.wrap_text%> <%= color_classname(comp, 'background-', :background_color)%>" style="<%= color_style(comp) %> <%= color_style(comp, 'background-', :background_color) %>" <%= data_attributes %> data-disabled-on-post-finished="<%= comp.disabled_on_post_finished %>" <%= 'disabled ' if comp.disabled %> <%= "type='#{eq(comp.button_type, :raised) ? 'submit' : 'button'}'" %> <%= erb :"components/event", :locals => {comp: comp, events: comp.events, parent_id: event_parent_id || comp.event_parent_id} %>> <%= erb :"components/icon", :locals => {comp: comp.icon, class_name: 'mdc-button__icon'} %> <%= erb :"components/image", :locals => {comp: comp.image} %> <%= comp.text %> </button> <%= erb :"components/tooltip", :locals => {comp: comp.tooltip, parent_id: comp.id} %> <%= erb :"components/menu", :locals => {comp: comp.menu, parent_id: comp.id} %>
Version data entries
6 entries across 6 versions & 1 rubygems