Sha256: f34d2a72083725249961589d4db07eaa62ea6afb76c5b0e6d3fcaa2394a178c1

Contents?: true

Size: 1.16 KB

Versions: 1127

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

module Playbook
  module PbProgressStep
    class ProgressStep < Playbook::KitBase
      prop :orientation, type: Playbook::Props::Enum,
                         values: %w[vertical horizontal],
                         default: "horizontal"
      prop :icon, type: Playbook::Props::Boolean,
                  default: false
      prop :show_icon, type: Playbook::Props::Boolean,
                       default: false
      prop :variant, type: Playbook::Props::Enum,
                     values: %w[default tracker],
                     default: "default"
      prop :color, type: Playbook::Props::Enum,
                   values: %w[primary info],
                   default: "primary"
      def classname
        generate_classname("pb_progress_step_kit", orientation, icon_class, variant_class, color_class)
      end

    private

      def icon_class
        icon === true || show_icon === true ? "icon" : nil
      end

      def variant_class
        case variant
        when "tracker"
          "tracker"
        end
      end

      def color_class
        case color
        when "info"
          "info"
        end
      end
    end
  end
end

Version data entries

1,127 entries across 1,127 versions & 1 rubygems

Version Path
playbook_ui-14.10.0.pre.rc.23 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.10.0.pre.rc.22 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.10.0.pre.rc.21 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.9.0.pre.alpha.play1703errorstatealignment5060 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.10.0.pre.rc.20 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.10.0.pre.rc.19 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.10.0.pre.rc.18 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.9.0.pre.alpha.PLAY1660reactdropzone5020 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.10.0.pre.rc.17 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.10.0.pre.rc.16 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.9.0.pre.alpha.play17004992 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.9.0.pre.alpha.play1703errorstatealignment4991 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.10.0.pre.rc.15 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.9.0.pre.alpha.PLAY16264952 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.9.0.pre.alpha.PLAY1731inputmasking4927 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.9.0.pre.alpha.play1742globalheightfixes4926 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.9.0.pre.alpha.play1742globalheightfixes4925 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.10.0.pre.rc.14 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.10.0.pre.rc.13 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.9.0.pre.alpha.PBNTR746datepickerdefaultbug4903 app/pb_kits/playbook/pb_progress_step/progress_step.rb