Reaction::UI::ViewPort::Field::Password - Reaction::UI::ViewPort::Field::Password documentation


Reaction documentation Contained in the Reaction distribution.

Index


Code Index:

NAME

Top

Reaction::UI::ViewPort::Field::Password

DESCRIPTION

Top

SEE ALSO

Top

Reaction::UI::ViewPort::Field

AUTHORS

Top

See Reaction::Class for authors.

LICENSE

Top

See Reaction::Class for the license.


Reaction documentation Contained in the Reaction distribution.

package Reaction::UI::ViewPort::Field::Password;

use Reaction::Class;
use namespace::clean -except => [ qw(meta) ];
use MooseX::Types::Common::String qw(SimpleStr);

extends 'Reaction::UI::ViewPort::Field::String';

has '+value' => (isa => SimpleStr);
#has '+layout' => (default => 'password');

__PACKAGE__->meta->make_immutable;


1;