some doc updates
[catagits/Reaction.git] / lib / Reaction / UI / Widget / Value.pm
1 package Reaction::UI::Widget::Value;
2
3 use Reaction::UI::WidgetClass;
4
5 class Value, which {
6
7   before fragment widget {
8     arg value => $_{viewport}->value_string;
9   };
10
11 };
12
13 1;
14
15 __END__;
16
17 =head1 NAME
18
19 Reaction::UI::Widget::Value
20
21 =head1 DESCRIPTION
22
23 =head1 FRAGMENTS
24
25 =head2 widget
26
27 Additional available arguments
28
29 =over 4
30
31 =item B<value> - The C<value_string> of the viewport
32
33 =back
34
35 =head1 AUTHORS
36
37 See L<Reaction::Class> for authors.
38
39 =head1 LICENSE
40
41 See L<Reaction::Class> for the license.
42
43 =cut