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