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.10.0.pre.rc.0 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.18 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.17 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.16 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.15 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.14 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.13 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.12 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.11 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.10 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.8.0.pre.alpha.PBNTR713dropdowncustomtriggerbug4696 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.9 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.8.0.pre.alpha.PLAY1680newwidthprop4661 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.8.0.pre.alpha.PLAY1658tanstackbump4657 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.8.0.pre.alpha.PLAY1649rolloutheightglobalprops4635 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.8 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.8.0.pre.alpha.PLAY1598floatinguiupgrade4617 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.7 app/pb_kits/playbook/pb_timeline/timeline.rb
playbook_ui-14.9.0.pre.rc.6 app/pb_kits/playbook/pb_timeline/timeline.rb