Sha256: ef931e790df83098aefb002a077964c2b33ff5f8a6db89a5b487bcf8b917872e

Contents?: true

Size: 374 Bytes

Versions: 11

Compression:

Stored size: 374 Bytes

Contents

# frozen_string_literal: true
module SimpleForm
  module Inputs
    class PasswordInput < Base
      enable :placeholder, :maxlength, :minlength

      def input(wrapper_options = nil)
        merged_input_options = merge_wrapper_options(input_html_options, wrapper_options)

        @builder.password_field(attribute_name, merged_input_options)
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
simple_form-5.3.0 lib/simple_form/inputs/password_input.rb
simple_form-5.2.0 lib/simple_form/inputs/password_input.rb
simple_form-5.1.0 lib/simple_form/inputs/password_input.rb
simple_form-5.0.3 lib/simple_form/inputs/password_input.rb
simple_form-5.0.2 lib/simple_form/inputs/password_input.rb
simple_form-5.0.1 lib/simple_form/inputs/password_input.rb
simple_form-5.0.0 lib/simple_form/inputs/password_input.rb
simple_form-4.1.0 lib/simple_form/inputs/password_input.rb
simple_form-4.0.1 lib/simple_form/inputs/password_input.rb
simple_form-4.0.0 lib/simple_form/inputs/password_input.rb
simple_form-3.5.1 lib/simple_form/inputs/password_input.rb