Sha256: bc90be2504e8ca1d8f857d60818e123b97be0dfb5d49387626c93854f81356bc
Contents?: true
Size: 1.05 KB
Versions: 57
Compression:
Stored size: 1.05 KB
Contents
module Plutonium module Helpers module ActionButtonsHelper def toolbar_action_button(resource, action) render_component :action_button, classname: "me-2", to: resource_url_for(resource, action: action.route_options.action, **action.route_options.options), method: action.route_options.method, icon: action.icon, label: action.label, tooltip: action.label, color: action.color, confirmation: action.confirmation, size: :xs end def table_action_button(resource, action) render_component :action_button, classname: "ms-2", to: resource_url_for(resource, action: action.route_options.action, **action.route_options.options), method: action.route_options.method, icon: action.icon, label: nil, # action.label, tooltip: action.label, color: action.color, confirmation: action.confirmation, variant: :outline, size: :xs end end end end
Version data entries
57 entries across 57 versions & 1 rubygems