Sha256: 307ddcb63d23415bc795e9d202db11e750526ce0c6f3bd27aa63121fa420d643

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

# frozen_string_literal: true

new({ renderer: :html, method: :diffusion, type: :string })

new({ method: :red, type: :integer, specific: :color, renderer: :html }) do |value, _user_proc|
end

new({ method: :green, type: :integer, specific: :color, renderer: :html }) do |value, _user_proc|
end

new({ method: :blue, type: :integer, specific: :color, renderer: :html }) do |value, _user_proc|
end

new({ method: :alpha, type: :integer, specific: :color, renderer: :html }) do |value, _user_proc|
end

new({ renderer: :html, method: :diffusion, type: :string })

# edit
new({ renderer: :html, method: :edit }) do |params|
  html.attr(:contenteditable, params)
  html.update_data(params)
end


new({ method: :clean, renderer: :html, type: :hash }) do |params|
  html.table_clean(params)
end

new({ method: :insert, renderer: :html, type: :hash }) do |params|
  html.table_insert(params)
end



new({ method: :sort, renderer: :html, type: :hash }) do |params|
  html.refresh_table(params)
end

new({ method: :inside, renderer: :html }) do |params|
  if params
    affect.each do |at_found|
      grab(at_found).html.style("box-sizing", 'border-box')
    end
  else
    html.style("boxSizing", ' content-box')
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
atome-0.5.7.1.0 lib/renderers/html/property.rb
atome-0.5.7.0.7 lib/renderers/html/property.rb
atome-0.5.7.0.5 lib/renderers/html/property.rb
atome-0.5.7.0.4 lib/renderers/html/property.rb