Sha256: 7aae3115935a49466d171b7d1d8c45175c9982f176e8e2b77dec064c8a849264

Contents?: true

Size: 888 Bytes

Versions: 16

Compression:

Stored size: 888 Bytes

Contents

# frozen_string_literal: true

module Playbook
  module PbTimeline
    class Timeline < Playbook::KitBase
      prop :orientation, type: Playbook::Props::Enum,
                         values: %w[vertical horizontal],
                         default: "horizontal"
      prop :show_date, type: Playbook::Props::Boolean,
                       default: false
      prop :item_gap, type: Playbook::Props::Enum,
                      values: %w[xs sm md lg none],
                      default: "none"

      def classname
        generate_classname("pb_timeline_kit",
                           orientation,
                           date_class,
                           item_gap_class)
      end

    private

      def date_class
        show_date ? "with_date" : nil
      end

      def item_gap_class
        item_gap == "none" ? nil : "gap_#{item_gap}"
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

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