Module: Playbook::Height
- Included in:
- KitBase
- Defined in:
- lib/playbook/height.rb
Constant Summary collapse
- 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/height.rb', line 5 def self.included(base) base.prop :height end |
Instance Method Details
#height_options ⇒ Object
18 19 20 |
# File 'lib/playbook/height.rb', line 18 def { height: "height" } end |
#height_props ⇒ Object
11 12 13 14 15 16 |
# File 'lib/playbook/height.rb', line 11 def height_props value = height return nil unless value "height_#{value}" if HEIGHT_VALUES.include?(value.to_s) end |
#height_values ⇒ Object
22 23 24 |
# File 'lib/playbook/height.rb', line 22 def height_values HEIGHT_VALUES end |