Sha256: f34d2a72083725249961589d4db07eaa62ea6afb76c5b0e6d3fcaa2394a178c1

Contents?: true

Size: 1.16 KB

Versions: 1157

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,157 entries across 1,157 versions & 1 rubygems

Version Path
playbook_ui-14.12.0.pre.alpha.testingwithfas5689 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.alpha.testingwithfas5686 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.alpha.play1828updateviteversion5680 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.alpha.PBNTR456fixedconftoastrailsautoclose5673 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.alpha.PLAY1602lightboxoverlapnitrobug5655 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.alpha.PBNTR720railscarddraggable5649 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.alpha.PLAY1602lightboxoverlapnitrobug5646 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.11.1.pre.alpha.PBNTR440enableglobalpropspbformwith5624 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.rc.12 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.11.1.pre.alpha.PLAY17445539 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.11.1.pre.alpha.PBNTR798datepickerturbo5537 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.11.1.pre.alpha.pbntr703collapsiblerowsrails5536 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.11.1.pre.alpha.PLAY1751pbcontenttagpt25529 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.11.1.pre.alpha.PBNTR7495495 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.rc.11 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.rc.10 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.rc.9 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.rc.8 app/pb_kits/playbook/pb_progress_step/progress_step.rb
playbook_ui-14.12.0.pre.rc.7 app/pb_kits/playbook/pb_progress_step/progress_step.rb