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