Sha256: 49b95078aa827cf1fc1dd0d8c380aaf8c5569325d6df237471f335c1d6b1cfe8

Contents?: true

Size: 853 Bytes

Versions: 122

Compression:

Stored size: 853 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 :gap, type: Playbook::Props::Enum,
                 values: %w[xs sm md lg none],
                 default: "none"

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

    private

      def date_class
        show_date ? "with_date" : nil
      end

      def gap_class
        gap == "none" ? nil : "gap_#{gap}"
      end
    end
  end
end

Version data entries

122 entries across 122 versions & 1 rubygems

Version Path
playbook_ui-14.11.0.pre.rc.15 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.11.0.pre.rc.14 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.11.0.pre.rc.13 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.11.0.pre.rc.12 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5274 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.play1465attempt25272 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.11.0.pre.rc.11 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.11.0.pre.rc.10 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5214 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5213 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5210 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5208 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5207 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.play16825206 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5204 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5201 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.11.0.pre.rc.9 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5200 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.11.0.pre.rc.8 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.11.0.pre.rc.7 app/pb_kits/playbook/pb_timeline/timeline.rb