// Generated by github.com/steida/coffee2closure 0.1.12
goog.provide('spark.components.Password');
goog.require('spark.components.Input');
/**
Input type password component of Spark Framework.
*/
/**
@constructor
@export
@param {Object=} options Class options.
@param {*=} data Class data
@extends {spark.components.Input}
*/
spark.components.Password = function(options, data) {
if (options == null) {
options = {};
}
options.type = options['type'] = 'password';
spark.components.Password.superClass_.constructor.call(this, options, data);
}
goog.inherits(spark.components.Password, spark.components.Input);