Sha256: 49746f282e0dd66b5160d9ea3949790ac7030de3621f9b66b39d3967e079fe65

Contents?: true

Size: 745 Bytes

Versions: 502

Compression:

Stored size: 745 Bytes

Contents

# frozen_string_literal: true

module Playbook
  module PbDetail
    class Detail < Playbook::KitBase
      prop :bold, type: Playbook::Props::Boolean,
                  default: false
      prop :color, type: Playbook::Props::Enum,
                   values: %w[light default lighter link error success],
                   default: "light"
      prop :tag, type: Playbook::Props::Enum,
                 values: %w[h1 h2 h3 h4 h5 h6 p span div],
                 default: "div"
      prop :text

      def classname
        generate_classname("pb_detail_kit", "color", color) + is_bold
      end

      def content
        super.presence || text
      end

    private

      def is_bold
        bold ? " bold" : ""
      end
    end
  end
end

Version data entries

502 entries across 502 versions & 1 rubygems

Version Path
playbook_ui-14.9.0.pre.rc.8 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.8.0.pre.alpha.PLAY1598floatinguiupgrade4617 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.9.0.pre.rc.7 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.9.0.pre.rc.6 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.9.0.pre.rc.5 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.8.0.pre.alpha.pbntr661createstickyleftprop4612 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.8.0.pre.alpha.play1648heightglobalprops4606 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.9.0.pre.rc.4 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.9.0.pre.rc.3 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.9.0.pre.rc.2 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.8.0.pre.alpha.revert3916revert3893PBNTR667railstypeaheadformintegration4567 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.8.0.pre.alpha.revert3916revert3893PBNTR667railstypeaheadformintegration4565 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.8.0.pre.alpha.PLAY1598floatinguiupgrade4563 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.8.0.pre.alpha.play1648heightglobalprops4559 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.9.0.pre.rc.1 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.8.0.pre.alpha.PLAY16254545 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.8.0.pre.alpha.PLAY1615movenegativetoleftofcurrencysign4543 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.8.0.pre.alpha.PLAY1615movenegativetoleftofcurrencysign4539 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.9.0.pre.rc.0 app/pb_kits/playbook/pb_detail/detail.rb
playbook_ui-14.7.0.pre.alpha.dependabotnpmandyarnfloatinguireact026284532 app/pb_kits/playbook/pb_detail/detail.rb