Sha256: b28479412fc8ba512964cc5e2d0d930c761164c310d83c8e2c66cd98f40287ce
Contents?: true
Size: 947 Bytes
Versions: 25
Compression:
Stored size: 947 Bytes
Contents
# frozen_string_literal: true # Use this setup block to configure all options available in SimpleForm. SimpleForm.setup do |config| config.wrappers :default, class: :input, hint_class: :field_with_hint, error_class: :field_with_errors do |b| b.use :html5 b.use :placeholder b.optional :maxlength b.optional :pattern b.optional :min_max b.optional :readonly b.use :label b.use :hint, wrap_with: { tag: :span, class: :hint } b.use :error, wrap_with: { tag: :span, class: :error } b.use :input end config.default_wrapper = :default config.boolean_style = :nested config.button_class = 'btn' config.error_notification_tag = :div config.error_notification_class = 'error_notification' config.label_text = ->(label, required, _) { "#{label} #{required}" } config.browser_validations = true config.boolean_label_class = 'checkbox' end
Version data entries
25 entries across 25 versions & 1 rubygems