File Coverage

blib/lib/Dash/Core/Components/Input.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 6 66.6
pod 0 1 0.0
total 16 21 76.1


line stmt bran cond sub pod time code
1             # AUTO GENERATED FILE - DO NOT EDIT
2              
3             package Dash::Core::Components::Input;
4              
5 3     3   1521 use Moo;
  3         8  
  3         31  
6 3     3   1164 use strictures 2;
  3         24  
  3         130  
7 3     3   1652 use Dash::Core::ComponentsAssets;
  3         7  
  3         77  
8 3     3   16 use namespace::clean;
  3         6  
  3         20  
9              
10             extends 'Dash::BaseComponent';
11              
12             has 'id' => ( is => 'rw' );
13             has 'value' => ( is => 'rw' );
14             has 'style' => ( is => 'rw' );
15             has 'className' => ( is => 'rw' );
16             has 'debounce' => ( is => 'rw' );
17             has 'type' => ( is => 'rw' );
18             has 'autoComplete' => ( is => 'rw' );
19             has 'autoFocus' => ( is => 'rw' );
20             has 'disabled' => ( is => 'rw' );
21             has 'inputMode' => ( is => 'rw' );
22             has 'list' => ( is => 'rw' );
23             has 'max' => ( is => 'rw' );
24             has 'maxLength' => ( is => 'rw' );
25             has 'min' => ( is => 'rw' );
26             has 'minLength' => ( is => 'rw' );
27             has 'multiple' => ( is => 'rw' );
28             has 'name' => ( is => 'rw' );
29             has 'pattern' => ( is => 'rw' );
30             has 'placeholder' => ( is => 'rw' );
31             has 'readOnly' => ( is => 'rw' );
32             has 'required' => ( is => 'rw' );
33             has 'selectionDirection' => ( is => 'rw' );
34             has 'selectionEnd' => ( is => 'rw' );
35             has 'selectionStart' => ( is => 'rw' );
36             has 'size' => ( is => 'rw' );
37             has 'spellCheck' => ( is => 'rw' );
38             has 'step' => ( is => 'rw' );
39             has 'n_submit' => ( is => 'rw' );
40             has 'n_submit_timestamp' => ( is => 'rw' );
41             has 'n_blur' => ( is => 'rw' );
42             has 'n_blur_timestamp' => ( is => 'rw' );
43             has 'loading_state' => ( is => 'rw' );
44             has 'persistence' => ( is => 'rw' );
45             has 'persisted_props' => ( is => 'rw' );
46             has 'persistence_type' => ( is => 'rw' );
47             my $dash_namespace = 'dash_core_components';
48              
49             sub DashNamespace {
50 0     0 0   return $dash_namespace;
51             }
52              
53             sub _js_dist {
54 0     0     return Dash::Core::ComponentsAssets::_js_dist;
55             }
56              
57             1;
58              
59             __END__