Sha256: d57452b7af5852912b8d511d2d82dab518eb2c158cdceccd41904872f378121e

Contents?: true

Size: 704 Bytes

Versions: 1194

Compression:

Stored size: 704 Bytes

Contents

# frozen_string_literal: true

module Playbook
  module PbTitleCount
    class TitleCount < Playbook::KitBase
      prop :align, type: Playbook::Props::Enum,
                   values: %w[left center right],
                   default: "left"
      prop :size, type: Playbook::Props::Enum,
                  values: %w[lg sm],
                  default: "sm"
      prop :title
      prop :count, type: Playbook::Props::Numeric

      def classname
        generate_classname("pb_title_count_kit", align, size)
      end

      def title_size
        size == "lg" ? 3 : 4
      end

      def format_count
        count.to_s.gsub(/(\d)(?=\d{3}+(?:\.|$))(\d{3}\..*)?/, '\1,\2')
      end
    end
  end
end

Version data entries

1,194 entries across 1,194 versions & 1 rubygems

Version Path
playbook_ui-14.11.1.pre.alpha.PLAY1720phonenumberinputformatAsYouType5377 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1.pre.alpha.play17725374 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1.pre.alpha.play17725372 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.12.0.pre.rc.4 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1.pre.alpha.hfhbrakemanplaybook5370 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1.pre.alpha.responsivetablerails5364 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1.pre.alpha.responsivetablerails5362 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1.pre.alpha.PBNTR769sticky5359 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1.pre.alpha.PBNTR573datepickerinvestigation5355 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5341 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5340 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5339 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.12.0.pre.rc.3 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.12.0.pre.rc.2 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.12.0.pre.rc.1 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.12.0.pre.rc.0 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5315 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5314 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.10.0.pre.alpha.PLAY1750pbcontenttagkitbutton5308 app/pb_kits/playbook/pb_title_count/title_count.rb
playbook_ui-14.11.1 app/pb_kits/playbook/pb_title_count/title_count.rb