File Coverage

blib/lib/Dash/Html/Components/Textarea.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 18 21 85.7


line stmt bran cond sub pod time code
1             # AUTO GENERATED FILE - DO NOT EDIT
2              
3             package Dash::Html::Components::Textarea;
4              
5 1     1   600 use Moo;
  1         3  
  1         7  
6 1     1   837 use strictures 2;
  1         1658  
  1         45  
7 1     1   606 use Dash::Html::ComponentsAssets;
  1         3  
  1         30  
8 1     1   458 use namespace::clean;
  1         9814  
  1         7  
9              
10             extends 'Dash::BaseComponent';
11              
12             has 'id' => ( is => 'rw' );
13             has 'children' => ( is => 'rw' );
14             has 'n_clicks' => ( is => 'rw' );
15             has 'n_clicks_timestamp' => ( is => 'rw' );
16             has 'key' => ( is => 'rw' );
17             has 'role' => ( is => 'rw' );
18             has 'autoComplete' => ( is => 'rw' );
19             has 'autoFocus' => ( is => 'rw' );
20             has 'cols' => ( is => 'rw' );
21             has 'disabled' => ( is => 'rw' );
22             has 'form' => ( is => 'rw' );
23             has 'inputMode' => ( is => 'rw' );
24             has 'maxLength' => ( is => 'rw' );
25             has 'minLength' => ( is => 'rw' );
26             has 'name' => ( is => 'rw' );
27             has 'placeholder' => ( is => 'rw' );
28             has 'readOnly' => ( is => 'rw' );
29             has 'required' => ( is => 'rw' );
30             has 'rows' => ( is => 'rw' );
31             has 'wrap' => ( is => 'rw' );
32             has 'accessKey' => ( is => 'rw' );
33             has 'className' => ( is => 'rw' );
34             has 'contentEditable' => ( is => 'rw' );
35             has 'contextMenu' => ( is => 'rw' );
36             has 'dir' => ( is => 'rw' );
37             has 'draggable' => ( is => 'rw' );
38             has 'hidden' => ( is => 'rw' );
39             has 'lang' => ( is => 'rw' );
40             has 'spellCheck' => ( is => 'rw' );
41             has 'style' => ( is => 'rw' );
42             has 'tabIndex' => ( is => 'rw' );
43             has 'title' => ( is => 'rw' );
44             has 'loading_state' => ( is => 'rw' );
45             my $dash_namespace = 'dash_html_components';
46              
47             sub DashNamespace {
48 1     1 0 10 return $dash_namespace;
49             }
50              
51             sub _js_dist {
52 0     0     return Dash::Html::ComponentsAssets::_js_dist;
53             }
54              
55             1;
56              
57             __END__