Module: Playbook::MinHeight
- Included in:
- KitBase
- Defined in:
- lib/playbook/min_height.rb
Constant Summary collapse
- MIN_HEIGHT_VALUES =
%w[auto xs sm md lg xl xxl xxxl].freeze
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.included(base) ⇒ Object
5 6 7 |
# File 'lib/playbook/min_height.rb', line 5 def self.included(base) base.prop :min_height end |
Instance Method Details
#min_height_options ⇒ Object
18 19 20 |
# File 'lib/playbook/min_height.rb', line 18 def { min_height: "min_height" } end |
#min_height_props ⇒ Object
11 12 13 14 15 16 |
# File 'lib/playbook/min_height.rb', line 11 def min_height_props value = min_height return nil unless value "min_height_#{value}" if MIN_HEIGHT_VALUES.include?(value.to_s) end |
#min_height_values ⇒ Object
22 23 24 |
# File 'lib/playbook/min_height.rb', line 22 def min_height_values MIN_HEIGHT_VALUES end |