Sha256: 430c0adac58c8ce61ab3b943c8c72708c39867e0fd6178ac761672571e40862c
Contents?: true
Size: 651 Bytes
Versions: 575
Compression:
Stored size: 651 Bytes
Contents
# frozen_string_literal: true module Playbook module PbTable class TableRow < Playbook::KitBase prop :side_highlight_color, type: Playbook::Props::String, default: "none" prop :tag, type: Playbook::Props::Enum, values: %w[table div], default: "table" def classname generate_classname("pb_table_row_kit", side_highlight_class) + tag_class end def side_highlight_class side_highlight_color.present? ? "side_highlight_#{side_highlight_color}" : nil end def tag_class " pb_table_tr" end end end end
Version data entries
575 entries across 575 versions & 1 rubygems