Sha256: e16b82e365f155396aa148092ef8df9e05ef1f5cc83caf7a12ddfb109d5820e9
Contents?: true
Size: 1.89 KB
Versions: 8
Compression:
Stored size: 1.89 KB
Contents
# frozen_string_literal: true new({ method: :left, type: :integer, renderer: :html }) do |params| unit = @unit[:left] || :px if params.is_a? Numeric js[:style][:left] = "#{params}#{unit}" end new({ method: :top, type: :integer, renderer: :html }) do |params| unit = @unit[:top] || :px if params.is_a? Numeric js[:style][:top] = "#{params}#{unit}" end new({ method: :bottom, type: :integer, renderer: :html }) do |params| unit = @unit[:bottom] || :px if params.is_a? Numeric js[:style][:bottom] = "#{params}#{unit}" end new({ method: :right, type: :integer, renderer: :html }) do |params| unit = @unit[:right] || :px if params.is_a? Numeric js[:style][:right] = "#{params}#{unit}" end new({ method: :top, type: :integer, renderer: :html, specific: :shadow }) do # now we refresh if needed for dynamic refresh od affected atomes affect(affect) end new({ method: :left, type: :integer, specific: :color, renderer: :html }) new({ method: :left, type: :integer, renderer: :html, specific: :shadow }) do # now we refresh if needed for dynamic refresh od affected atomes affect(affect) end new({ method: :top, type: :integer, specific: :color, renderer: :html }) new({ method: :rotate, type: :integer, renderer: :html }) do |params| html.transform(:rotate, params) end new({ method: :rotate, type: :integer, renderer: :html, specific: :paint }) new({ renderer: :html, method: :position }) do |params| html.style("position", params) end new({ renderer: :html, method: :depth }) do |params| html.style("z-index", params) end new({ method: :organise, renderer: :html }) do |params| html.style(:gridTemplateColumns, params) end new({ method: :spacing, renderer: :html }) do |params| html.style(:gap, "#{params}px") end new({ method: :display, renderer: :html }) do |params| html.style(:display, params) end new({ renderer: :html, method: :center }) do |params| html.center(params, attach) end
Version data entries
8 entries across 8 versions & 1 rubygems