added action_filter
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / Password.pm
1 package Reaction::UI::ViewPort::Field::Password;
2
3 use Reaction::Class;
4 use namespace::clean -except => [ qw(meta) ];
5 use MooseX::Types::Common::String qw(SimpleStr);
6
7 extends 'Reaction::UI::ViewPort::Field::String';
8
9 has '+value' => (isa => SimpleStr);
10 #has '+layout' => (default => 'password');
11
12 __PACKAGE__->meta->make_immutable;
13
14
15 1;
16
17 =head1 NAME
18
19 Reaction::UI::ViewPort::Field::Password
20
21 =head1 DESCRIPTION
22
23 =head1 SEE ALSO
24
25 =head2 L<Reaction::UI::ViewPort::Field>
26
27 =head1 AUTHORS
28
29 See L<Reaction::Class> for authors.
30
31 =head1 LICENSE
32
33 See L<Reaction::Class> for the license.
34
35 =cut