Sha256: a4677aeab0c219471333b1adac2a8347ca758ee21bd2289cc01ffb133896423b

Contents?: true

Size: 1.1 KB

Versions: 17

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

module Playbook
  module PbAdvancedTable
    class TableSubrowHeader < Playbook::KitBase
      prop :column_definitions, type: Playbook::Props::Array,
                                default: []
      prop :depth
      prop :row
      prop :enable_toggle_expansion, type: Playbook::Props::Enum,
                                     values: %w[all header none],
                                     default: "header"
      prop :subrow_header, type: Playbook::Props::String,
                           default: ""
      prop :collapsible_trail, type: Playbook::Props::Boolean,
                               default: true
      prop :subrow_data_attributes, type: Playbook::Props::HashProp,
                                    default: {}

      def data
        Hash(prop(:data)).merge(subrow_data_attributes)
      end

      def classname
        generate_classname("pb_table_tr", "bg-silver", "pb_subrow_header", subrow_depth_classname, separator: " ")
      end

    private

      def subrow_depth_classname
        depth.positive? ? "depth-sub-row-#{depth}" : ""
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5341 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5340 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5339 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.12.0.pre.rc.3 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.12.0.pre.rc.2 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.12.0.pre.rc.1 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.12.0.pre.rc.0 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5315 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5314 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.10.0.pre.alpha.PLAY1750pbcontenttagkitbutton5308 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.11.1 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.11.0.pre.rc.17 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.11.0 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.11.0.pre.rc.16 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.10.0.pre.alpha.play16825301 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.11.0.pre.rc.15 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb
playbook_ui-14.11.0.pre.rc.14 app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb