Sha256: 5264db17b8b505eac34ee43135bd2557ddea11099279ee0fb969477700b45bd3

Contents?: true

Size: 642 Bytes

Versions: 177

Compression:

Stored size: 642 Bytes

Contents

# frozen_string_literal: true

module Playbook
  module MaxHeight
    def self.included(base)
      base.prop :max_height
    end

    def max_height_props
      selected_props = max_height_options.keys.select { |sk| try(sk) }
      return nil unless selected_props.present?

      selected_props.map do |k|
        max_height_value = send(k)
        "max_height_#{max_height_value}" if max_height_values.include? max_height_value.to_s
      end.compact.join(" ")
    end

    def max_height_options
      {
        max_height: "max_height",
      }
    end

    def max_height_values
      %w[auto xs sm md lg xl xxl xxxl]
    end
  end
end

Version data entries

177 entries across 177 versions & 1 rubygems

Version Path
playbook_ui-14.10.0.pre.alpha.PBNTR662stickyrightcolumnreact5160 lib/playbook/max_height.rb
playbook_ui-14.11.0.pre.rc.2 lib/playbook/max_height.rb
playbook_ui-14.11.0.pre.rc.1 lib/playbook/max_height.rb
playbook_ui-14.10.0.pre.alpha.PBNTR775formmatingmaskdefaultvalue5137 lib/playbook/max_height.rb
playbook_ui-14.11.0.pre.rc.0 lib/playbook/max_height.rb
playbook_ui-14.9.0.pre.alpha.PBNTR767advancedtablemultiheadercolumns5136 lib/playbook/max_height.rb
playbook_ui-14.9.0.pre.alpha.PBNTR775formmatingmaskdefaultvalue5121 lib/playbook/max_height.rb
playbook_ui-14.9.0.pre.alpha.PBNTR775formmatingmaskdefaultvalue5120 lib/playbook/max_height.rb
playbook_ui-14.10.0 lib/playbook/max_height.rb
playbook_ui-14.10.0.pre.rc.24 lib/playbook/max_height.rb
playbook_ui-14.10.0.pre.rc.23 lib/playbook/max_height.rb
playbook_ui-14.10.0.pre.rc.22 lib/playbook/max_height.rb
playbook_ui-14.10.0.pre.rc.21 lib/playbook/max_height.rb
playbook_ui-14.9.0.pre.alpha.play1703errorstatealignment5060 lib/playbook/max_height.rb
playbook_ui-14.10.0.pre.rc.20 lib/playbook/max_height.rb
playbook_ui-14.10.0.pre.rc.19 lib/playbook/max_height.rb
playbook_ui-14.10.0.pre.rc.18 lib/playbook/max_height.rb
playbook_ui-14.9.0.pre.alpha.PLAY1660reactdropzone5020 lib/playbook/max_height.rb
playbook_ui-14.10.0.pre.rc.17 lib/playbook/max_height.rb
playbook_ui-14.10.0.pre.rc.16 lib/playbook/max_height.rb