Sha256: 0735c7454b49e1299e43a77d3d13de6a93822bd9e7b09af109095bcff3933747

Contents?: true

Size: 1.03 KB

Versions: 1082

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

module Playbook
  module PbProgressStep
    class ProgressStepItem < Playbook::KitBase
      prop :status, type: Playbook::Props::Enum,
                    values: %w[complete active inactive hidden],
                    default: "inactive"

      prop :icon, required: false, default: "check"
      prop :tooltip, required: false
      prop :tooltip_position, required: false
      prop :step_direction, type: Playbook::Props::Enum,
                            values: %w[horizontal vertical],
                            default: "horizontal"

      def name_icon
        icon || "check"
      end

      def classname
        generate_classname("pb_progress_step_item", status)
      end

      def tooltip_trigger_class
        classname.split(" ").last
      end

      def step_tooltip_position
        if tooltip_position.present?
          if step_direction == "vertical"
            "right"
          else
            "top"
          end
        else
          tooltip_position
        end
      end
    end
  end
end

Version data entries

1,082 entries across 1,082 versions & 1 rubygems

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