forked from formio/formio.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource.html
1459 lines (1447 loc) · 126 KB
/
source.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<base data-ice="baseUrl" href="">
<title data-ice="title">Source | API Document</title>
<link type="text/css" rel="stylesheet" href="css/style.css">
<link type="text/css" rel="stylesheet" href="css/prettify-tomorrow.css">
<script src="script/prettify/prettify.js"></script>
<script src="script/manual.js"></script>
</head>
<body class="layout-container" data-ice="rootContainer">
<header>
<a href="./">Home</a>
<a href="identifiers.html">Reference</a>
<a href="source.html">Source</a>
<a data-ice="repoURL" href="https://github.com/formio/formio.js" class="repo-url-github">Repository</a>
<div class="search-box">
<span>
<img src="./image/search.png">
<span class="search-input-edge"></span><input class="search-input"><span class="search-input-edge"></span>
</span>
<ul class="search-result"></ul>
</div>
</header>
<nav class="navigation" data-ice="nav"><div>
<ul>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/formio.form.js~FormioForm.html">FormioForm</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/formio.js~Formio.html">Formio</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/formio.pdf.js~FormioPDF.html">FormioPDF</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/formio.wizard.js~FormioWizard.html">FormioWizard</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/Components.js~FormioComponents.html">FormioComponents</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Validator">Validator</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/address</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/address/Address.js~AddressComponent.html">AddressComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/address/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/base</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/base/Base.js~BaseComponent.html">BaseComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/base/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/button</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/button/Button.js~ButtonComponent.html">ButtonComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/button/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/checkbox</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/checkbox/Checkbox.js~CheckBoxComponent.html">CheckBoxComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/checkbox/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/columns</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/columns/Column.js~ColumnComponent.html">ColumnComponent</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/columns/Columns.js~ColumnsComponent.html">ColumnsComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/columns/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/container</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/container/Container.js~ContainerComponent.html">ContainerComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/container/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/content</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/content/Content.js~ContentComponent.html">ContentComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/content/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/currency</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/currency/Currency.js~CurrencyComponent.html">CurrencyComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/currency/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/datagrid</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/datagrid/DataGrid.js~DataGridComponent.html">DataGridComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/datagrid/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/datetime</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/datetime/DateTime.js~DateTimeComponent.html">DateTimeComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/datetime/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/day</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/day/Day.js~DayComponent.html">DayComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/day/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/email</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/email/Email.js~EmailComponent.html">EmailComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/email/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/fieldset</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/fieldset/Fieldset.js~FieldsetComponent.html">FieldsetComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/fieldset/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/file</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/file/File.js~FileComponent.html">FileComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/form</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/form/Form.js~FormComponent.html">FormComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/form/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/gmap</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/gmap/Gmap.js~GmapComponent.html">GmapComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/gmap/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/hidden</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/hidden/Hidden.js~HiddenComponent.html">HiddenComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/hidden/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/html</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/html/HTML.js~HTMLComponent.html">HTMLComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/html/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/number</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/number/Number.js~NumberComponent.html">NumberComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/number/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/panel</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/panel/Panel.js~PanelComponent.html">PanelComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/panel/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/password</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/password/Password.js~PasswordComponent.html">PasswordComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/password/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/phonenumber</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/phonenumber/PhoneNumber.js~PhoneNumberComponent.html">PhoneNumberComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/phonenumber/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/radio</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/radio/Radio.js~RadioComponent.html">RadioComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/radio/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/resource</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/resource/Resource.js~ResourceComponent.html">ResourceComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/resource/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/select</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/select/Select.js~SelectComponent.html">SelectComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/select/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/selectboxes</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/selectboxes/SelectBoxes.js~SelectBoxesComponent.html">SelectBoxesComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/selectboxes/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/signature</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/signature/Signature.js~SignatureComponent.html">SignatureComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/signature/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/survey</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/survey/Survey.js~SurveyComponent.html">SurveyComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/survey/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/table</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/table/Table.js~TableComponent.html">TableComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/table/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/textarea</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/textarea/TextArea.js~TextAreaComponent.html">TextAreaComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/textarea/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/textfield</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/textfield/TextField.js~TextFieldComponent.html">TextFieldComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/textfield/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/time</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/time/Time.js~TimeComponent.html">TimeComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/time/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/unknown</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/unknown/Unknown.js~UnknownComponent.html">UnknownComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/well</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/src/components/well/Well.js~WellComponent.html">WellComponent</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">components/well/fixtures</div><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-component">component</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-components">components</a></span></span></li>
</ul>
</div>
</nav>
<div class="content" data-ice="content"><h1>Source <img data-ice="coverageBadge" src="./badge.svg"><span data-ice="totalCoverageCount" class="total-coverage-count">183/730</span></h1>
<table class="files-summary" data-ice="files" data-use-coverage="true">
<thead>
<tr>
<td>File</td>
<td>Identifier</td>
<td class="coverage">Document</td>
<td style="display: none;">Size</td>
<td style="display: none;">Lines</td>
<td style="display: none;">Updated</td>
</tr>
</thead>
<tbody>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/Components.js.html#errorLines=10,12,13,14,17,209,217,22,260,301,306,314,322,330,335,343,347,359,364,375,379,387,393,9">src/components/Components.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/Components.js~FormioComponents.html">FormioComponents</a></span></td>
<td class="coverage"><span data-ice="coverage">35 %</span><span data-ice="coverageCount" class="coverage-count">13/37</span></td>
<td style="display: none;" data-ice="size">10615 byte</td>
<td style="display: none;" data-ice="lines">414</td>
<td style="display: none;" data-ice="updated">2017-11-01 01:50:14 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/Components.spec.js.html">src/components/Components.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">1435 byte</td>
<td style="display: none;" data-ice="lines">51</td>
<td style="display: none;" data-ice="updated">2017-06-05 01:21:31 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/Validator.js.html#errorLines=6">src/components/Validator.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-Validator">Validator</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">7424 byte</td>
<td style="display: none;" data-ice="lines">249</td>
<td style="display: none;" data-ice="updated">2017-11-05 14:27:20 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/Validator.spec.js.html">src/components/Validator.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">3628 byte</td>
<td style="display: none;" data-ice="lines">58</td>
<td style="display: none;" data-ice="updated">2017-07-07 18:49:34 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/address/Address.js.html#errorLines=105,19,22,284,32,426,448,49,6,7">src/components/address/Address.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/address/Address.js~AddressComponent.html">AddressComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">52 %</span><span data-ice="coverageCount" class="coverage-count">11/21</span></td>
<td style="display: none;" data-ice="size">14754 byte</td>
<td style="display: none;" data-ice="lines">453</td>
<td style="display: none;" data-ice="updated">2017-07-07 19:12:31 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/address/Address.spec.js.html">src/components/address/Address.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">375 byte</td>
<td style="display: none;" data-ice="lines">11</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/address/fixtures/comp1.js.html#errorLines=1">src/components/address/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">549 byte</td>
<td style="display: none;" data-ice="lines">32</td>
<td style="display: none;" data-ice="updated">2017-03-07 18:29:11 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/address/fixtures/index.js.html#errorLines=2">src/components/address/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/base/Base.js.html#errorLines=1169,1201,1228,1232,1236,1258,1305,1476,1482,1486,1499,1503,1507,1551,1558,1625,1639,1657,1665,1671,1682,221,321,387,500,718,744,761,788,811,962,985">src/components/base/Base.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/base/Base.js~BaseComponent.html">BaseComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">73 %</span><span data-ice="coverageCount" class="coverage-count">91/123</span></td>
<td style="display: none;" data-ice="size">44475 byte</td>
<td style="display: none;" data-ice="lines">1801</td>
<td style="display: none;" data-ice="updated">2017-11-02 17:12:26 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/base/Base.spec.js.html">src/components/base/Base.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">3474 byte</td>
<td style="display: none;" data-ice="lines">118</td>
<td style="display: none;" data-ice="updated">2017-10-06 17:42:37 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/base/fixtures/comp1.js.html#errorLines=1">src/components/base/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">571 byte</td>
<td style="display: none;" data-ice="lines">31</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/base/fixtures/comp2.js.html#errorLines=1">src/components/base/fixtures/comp2.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">561 byte</td>
<td style="display: none;" data-ice="lines">31</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/base/fixtures/index.js.html#errorLines=3">src/components/base/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">154 byte</td>
<td style="display: none;" data-ice="lines">6</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/button/Button.js.html#errorLines=125,20,23,37,47,48,5,51,6">src/components/button/Button.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/button/Button.js~ButtonComponent.html">ButtonComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/9</span></td>
<td style="display: none;" data-ice="size">4011 byte</td>
<td style="display: none;" data-ice="lines">129</td>
<td style="display: none;" data-ice="updated">2017-11-02 17:12:26 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/button/Button.spec.js.html">src/components/button/Button.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">462 byte</td>
<td style="display: none;" data-ice="lines">13</td>
<td style="display: none;" data-ice="updated">2017-06-05 01:21:31 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/button/fixtures/comp1.js.html#errorLines=1">src/components/button/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">272 byte</td>
<td style="display: none;" data-ice="lines">14</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/button/fixtures/index.js.html#errorLines=2">src/components/button/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/checkbox/Checkbox.js.html#errorLines=101,124,16,2,21,29,3,33,38,44,48,54,68,73,77,81,95,99">src/components/checkbox/Checkbox.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/checkbox/Checkbox.js~CheckBoxComponent.html">CheckBoxComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/18</span></td>
<td style="display: none;" data-ice="size">3240 byte</td>
<td style="display: none;" data-ice="lines">128</td>
<td style="display: none;" data-ice="updated">2017-11-02 17:12:26 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/checkbox/Checkbox.spec.js.html">src/components/checkbox/Checkbox.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">1205 byte</td>
<td style="display: none;" data-ice="lines">34</td>
<td style="display: none;" data-ice="updated">2017-06-05 01:21:31 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/checkbox/fixtures/comp1.js.html#errorLines=1">src/components/checkbox/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">406 byte</td>
<td style="display: none;" data-ice="lines">24</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/checkbox/fixtures/index.js.html#errorLines=2">src/components/checkbox/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/columns/Column.js.html#errorLines=2,3">src/components/columns/Column.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/columns/Column.js~ColumnComponent.html">ColumnComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/2</span></td>
<td style="display: none;" data-ice="size">512 byte</td>
<td style="display: none;" data-ice="lines">11</td>
<td style="display: none;" data-ice="updated">2017-08-02 16:23:33 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/columns/Columns.js.html#errorLines=3,4,7">src/components/columns/Columns.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/columns/Columns.js~ColumnsComponent.html">ColumnsComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/3</span></td>
<td style="display: none;" data-ice="size">352 byte</td>
<td style="display: none;" data-ice="lines">13</td>
<td style="display: none;" data-ice="updated">2017-08-02 16:23:33 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/columns/Columns.spec.js.html">src/components/columns/Columns.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">438 byte</td>
<td style="display: none;" data-ice="lines">12</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/columns/fixtures/comp1.js.html#errorLines=1">src/components/columns/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">1895 byte</td>
<td style="display: none;" data-ice="lines">89</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/columns/fixtures/index.js.html#errorLines=2">src/components/columns/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/container/Container.js.html#errorLines=10,11,20,28,33,4,5,7">src/components/container/Container.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/container/Container.js~ContainerComponent.html">ContainerComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/8</span></td>
<td style="display: none;" data-ice="size">1240 byte</td>
<td style="display: none;" data-ice="lines">44</td>
<td style="display: none;" data-ice="updated">2017-11-07 17:43:14 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/container/Container.spec.js.html">src/components/container/Container.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">1094 byte</td>
<td style="display: none;" data-ice="lines">29</td>
<td style="display: none;" data-ice="updated">2017-06-05 01:21:31 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/container/fixtures/comp1.js.html#errorLines=1">src/components/container/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">1651 byte</td>
<td style="display: none;" data-ice="lines">84</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/container/fixtures/index.js.html#errorLines=2">src/components/container/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/content/Content.js.html#errorLines=2,3,4">src/components/content/Content.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/content/Content.js~ContentComponent.html">ContentComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/3</span></td>
<td style="display: none;" data-ice="size">305 byte</td>
<td style="display: none;" data-ice="lines">9</td>
<td style="display: none;" data-ice="updated">2017-07-02 14:38:38 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/content/Content.spec.js.html">src/components/content/Content.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">476 byte</td>
<td style="display: none;" data-ice="lines">13</td>
<td style="display: none;" data-ice="updated">2017-06-05 01:21:31 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/content/fixtures/comp1.js.html#errorLines=1">src/components/content/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">217 byte</td>
<td style="display: none;" data-ice="lines">14</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/content/fixtures/index.js.html#errorLines=2">src/components/content/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/currency/Currency.js.html#errorLines=10,11,16,17,20,29,41,48,49,6,7">src/components/currency/Currency.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/currency/Currency.js~CurrencyComponent.html">CurrencyComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/11</span></td>
<td style="display: none;" data-ice="size">2195 byte</td>
<td style="display: none;" data-ice="lines">62</td>
<td style="display: none;" data-ice="updated">2017-10-06 17:42:37 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/currency/Currency.spec.js.html">src/components/currency/Currency.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">7686 byte</td>
<td style="display: none;" data-ice="lines">121</td>
<td style="display: none;" data-ice="updated">2017-11-02 15:56:32 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/currency/fixtures/comp1.js.html#errorLines=1">src/components/currency/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">485 byte</td>
<td style="display: none;" data-ice="lines">29</td>
<td style="display: none;" data-ice="updated">2017-03-06 03:14:58 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/currency/fixtures/index.js.html#errorLines=2">src/components/currency/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-06 03:13:20 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/datagrid/DataGrid.js.html#errorLines=12,135,166,175,18,23,36,6,69,7,79,83,85,86,9">src/components/datagrid/DataGrid.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/datagrid/DataGrid.js~DataGridComponent.html">DataGridComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">6 %</span><span data-ice="coverageCount" class="coverage-count">1/16</span></td>
<td style="display: none;" data-ice="size">5669 byte</td>
<td style="display: none;" data-ice="lines">219</td>
<td style="display: none;" data-ice="updated">2017-11-07 17:43:14 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/datagrid/DataGrid.spec.js.html">src/components/datagrid/DataGrid.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">1458 byte</td>
<td style="display: none;" data-ice="lines">57</td>
<td style="display: none;" data-ice="updated">2017-10-06 17:42:37 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/datagrid/fixtures/comp1.js.html#errorLines=1">src/components/datagrid/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">2311 byte</td>
<td style="display: none;" data-ice="lines">120</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/datagrid/fixtures/index.js.html#errorLines=2">src/components/datagrid/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/datetime/DateTime.js.html#errorLines=10,119,13,135,166,174,187,205,6,61,7,99">src/components/datetime/DateTime.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/datetime/DateTime.js~DateTimeComponent.html">DateTimeComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">25 %</span><span data-ice="coverageCount" class="coverage-count">4/16</span></td>
<td style="display: none;" data-ice="size">5552 byte</td>
<td style="display: none;" data-ice="lines">215</td>
<td style="display: none;" data-ice="updated">2017-10-01 03:42:46 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/datetime/DateTime.spec.js.html">src/components/datetime/DateTime.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">380 byte</td>
<td style="display: none;" data-ice="lines">11</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/datetime/fixtures/comp1.js.html#errorLines=1">src/components/datetime/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">825 byte</td>
<td style="display: none;" data-ice="lines">44</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/datetime/fixtures/index.js.html#errorLines=2">src/components/datetime/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/day/Day.js.html#errorLines=104,11,118,131,156,19,41,5,51,6,65,75,94">src/components/day/Day.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/day/Day.js~DayComponent.html">DayComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">27 %</span><span data-ice="coverageCount" class="coverage-count">5/18</span></td>
<td style="display: none;" data-ice="size">7143 byte</td>
<td style="display: none;" data-ice="lines">236</td>
<td style="display: none;" data-ice="updated">2017-07-07 18:49:30 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/day/Day.spec.js.html">src/components/day/Day.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">3921 byte</td>
<td style="display: none;" data-ice="lines">102</td>
<td style="display: none;" data-ice="updated">2017-06-05 01:21:31 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/day/fixtures/comp1.js.html#errorLines=1">src/components/day/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">631 byte</td>
<td style="display: none;" data-ice="lines">39</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/day/fixtures/index.js.html#errorLines=2">src/components/day/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/email/Email.js.html#errorLines=2,3,7">src/components/email/Email.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/email/Email.js~EmailComponent.html">EmailComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/3</span></td>
<td style="display: none;" data-ice="size">343 byte</td>
<td style="display: none;" data-ice="lines">12</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/email/Email.spec.js.html">src/components/email/Email.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">364 byte</td>
<td style="display: none;" data-ice="lines">11</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/email/fixtures/comp1.js.html#errorLines=1">src/components/email/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">440 byte</td>
<td style="display: none;" data-ice="lines">26</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/email/fixtures/index.js.html#errorLines=2">src/components/email/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/fieldset/Fieldset.js.html#errorLines=2,3,4">src/components/fieldset/Fieldset.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/fieldset/Fieldset.js~FieldsetComponent.html">FieldsetComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/3</span></td>
<td style="display: none;" data-ice="size">517 byte</td>
<td style="display: none;" data-ice="lines">16</td>
<td style="display: none;" data-ice="updated">2017-09-03 16:52:45 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/fieldset/Fieldset.spec.js.html">src/components/fieldset/Fieldset.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">443 byte</td>
<td style="display: none;" data-ice="lines">12</td>
<td style="display: none;" data-ice="updated">2017-03-06 03:02:11 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/fieldset/fixtures/comp1.js.html#errorLines=1">src/components/fieldset/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">1667 byte</td>
<td style="display: none;" data-ice="lines">85</td>
<td style="display: none;" data-ice="updated">2017-03-06 03:03:27 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/fieldset/fixtures/index.js.html#errorLines=2">src/components/fieldset/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-06 03:01:19 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/file/File.js.html#errorLines=126,133,139,143,16,178,188,20,226,228,232,25,260,264,299,31,33,332,35,353,36,372,376,380,44,451,5,59,6,68,8,87,96">src/components/file/File.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/file/File.js~FileComponent.html">FileComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/33</span></td>
<td style="display: none;" data-ice="size">16169 byte</td>
<td style="display: none;" data-ice="lines">468</td>
<td style="display: none;" data-ice="updated">2017-11-05 15:11:50 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/form/Form.js.html#errorLines=119,14,15,150,154,16,166,17,180,194,7,70,71,75,79,8,83">src/components/form/Form.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/form/Form.js~FormComponent.html">FormComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">10 %</span><span data-ice="coverageCount" class="coverage-count">2/19</span></td>
<td style="display: none;" data-ice="size">5809 byte</td>
<td style="display: none;" data-ice="lines">197</td>
<td style="display: none;" data-ice="updated">2017-11-01 01:52:53 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/form/Form.spec.js.html">src/components/form/Form.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">160 byte</td>
<td style="display: none;" data-ice="lines">5</td>
<td style="display: none;" data-ice="updated">2017-05-02 16:13:59 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/form/fixtures/comp1.js.html#errorLines=1">src/components/form/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">1627 byte</td>
<td style="display: none;" data-ice="lines">84</td>
<td style="display: none;" data-ice="updated">2017-05-07 02:54:03 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/form/fixtures/index.js.html#errorLines=2">src/components/form/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-05-07 02:54:03 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/gmap/Gmap.js.html#errorLines=120,125,127,17,18,2,22,3,31,37,83,89">src/components/gmap/Gmap.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/gmap/Gmap.js~GmapComponent.html">GmapComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/12</span></td>
<td style="display: none;" data-ice="size">4786 byte</td>
<td style="display: none;" data-ice="lines">149</td>
<td style="display: none;" data-ice="updated">2017-08-06 15:03:18 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/gmap/Gmap.spec.js.html">src/components/gmap/Gmap.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">358 byte</td>
<td style="display: none;" data-ice="lines">11</td>
<td style="display: none;" data-ice="updated">2017-03-07 18:22:31 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/gmap/fixtures/comp1.js.html#errorLines=1">src/components/gmap/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">571 byte</td>
<td style="display: none;" data-ice="lines">36</td>
<td style="display: none;" data-ice="updated">2017-03-07 18:21:32 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/gmap/fixtures/index.js.html#errorLines=2">src/components/gmap/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-07 18:21:32 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/hidden/Hidden.js.html#errorLines=11,2,3">src/components/hidden/Hidden.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/hidden/Hidden.js~HiddenComponent.html">HiddenComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/3</span></td>
<td style="display: none;" data-ice="size">309 byte</td>
<td style="display: none;" data-ice="lines">14</td>
<td style="display: none;" data-ice="updated">2017-05-03 13:01:30 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/hidden/Hidden.spec.js.html">src/components/hidden/Hidden.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">369 byte</td>
<td style="display: none;" data-ice="lines">11</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/hidden/fixtures/comp1.js.html#errorLines=1">src/components/hidden/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">279 byte</td>
<td style="display: none;" data-ice="lines">18</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/hidden/fixtures/index.js.html#errorLines=2">src/components/hidden/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/html/HTML.js.html#errorLines=3,4,8,9">src/components/html/HTML.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/html/HTML.js~HTMLComponent.html">HTMLComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/4</span></td>
<td style="display: none;" data-ice="size">666 byte</td>
<td style="display: none;" data-ice="lines">25</td>
<td style="display: none;" data-ice="updated">2017-10-07 03:49:26 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/html/HTML.spec.js.html">src/components/html/HTML.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">643 byte</td>
<td style="display: none;" data-ice="lines">21</td>
<td style="display: none;" data-ice="updated">2017-03-05 18:09:16 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/html/fixtures/comp1.js.html#errorLines=1">src/components/html/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">366 byte</td>
<td style="display: none;" data-ice="lines">22</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/html/fixtures/index.js.html#errorLines=2">src/components/html/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/index.js.html">src/components/index.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">3247 byte</td>
<td style="display: none;" data-ice="lines">88</td>
<td style="display: none;" data-ice="updated">2017-06-06 17:29:27 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/number/Number.js.html#errorLines=104,11,12,15,28,36,55,6,67,68,7,82,9,90">src/components/number/Number.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/number/Number.js~NumberComponent.html">NumberComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/14</span></td>
<td style="display: none;" data-ice="size">3324 byte</td>
<td style="display: none;" data-ice="lines">107</td>
<td style="display: none;" data-ice="updated">2017-10-07 21:58:10 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/number/Number.spec.js.html">src/components/number/Number.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">8304 byte</td>
<td style="display: none;" data-ice="lines">138</td>
<td style="display: none;" data-ice="updated">2017-11-02 15:56:32 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/number/fixtures/comp1.js.html#errorLines=1">src/components/number/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">548 byte</td>
<td style="display: none;" data-ice="lines">32</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/number/fixtures/comp2.js.html#errorLines=1">src/components/number/fixtures/comp2.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">512 byte</td>
<td style="display: none;" data-ice="lines">30</td>
<td style="display: none;" data-ice="updated">2017-10-06 17:42:37 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/number/fixtures/index.js.html#errorLines=3">src/components/number/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">154 byte</td>
<td style="display: none;" data-ice="lines">6</td>
<td style="display: none;" data-ice="updated">2017-10-06 17:42:37 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/panel/Panel.js.html#errorLines=2,3,4">src/components/panel/Panel.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/panel/Panel.js~PanelComponent.html">PanelComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/3</span></td>
<td style="display: none;" data-ice="size">740 byte</td>
<td style="display: none;" data-ice="lines">25</td>
<td style="display: none;" data-ice="updated">2017-09-03 16:52:45 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/panel/Panel.spec.js.html">src/components/panel/Panel.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">428 byte</td>
<td style="display: none;" data-ice="lines">12</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/panel/fixtures/comp1.js.html#errorLines=1">src/components/panel/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">1627 byte</td>
<td style="display: none;" data-ice="lines">84</td>
<td style="display: none;" data-ice="updated">2017-04-06 18:19:11 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/panel/fixtures/index.js.html#errorLines=2">src/components/panel/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/password/Password.js.html#errorLines=2,3">src/components/password/Password.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/password/Password.js~PasswordComponent.html">PasswordComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/2</span></td>
<td style="display: none;" data-ice="size">231 byte</td>
<td style="display: none;" data-ice="lines">8</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/password/Password.spec.js.html">src/components/password/Password.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">447 byte</td>
<td style="display: none;" data-ice="lines">12</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/password/fixtures/comp1.js.html#errorLines=1">src/components/password/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">364 byte</td>
<td style="display: none;" data-ice="lines">22</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/password/fixtures/index.js.html#errorLines=2">src/components/password/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/phonenumber/PhoneNumber.js.html#errorLines=2">src/components/phonenumber/PhoneNumber.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/phonenumber/PhoneNumber.js~PhoneNumberComponent.html">PhoneNumberComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">125 byte</td>
<td style="display: none;" data-ice="lines">2</td>
<td style="display: none;" data-ice="updated">2017-06-04 04:13:02 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/phonenumber/PhoneNumber.spec.js.html">src/components/phonenumber/PhoneNumber.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">459 byte</td>
<td style="display: none;" data-ice="lines">12</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/phonenumber/fixtures/comp1.js.html#errorLines=1">src/components/phonenumber/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">467 byte</td>
<td style="display: none;" data-ice="lines">27</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/phonenumber/fixtures/index.js.html#errorLines=2">src/components/phonenumber/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/radio/Radio.js.html#errorLines=12,3,4,51,54,73,90">src/components/radio/Radio.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/radio/Radio.js~RadioComponent.html">RadioComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/7</span></td>
<td style="display: none;" data-ice="size">2620 byte</td>
<td style="display: none;" data-ice="lines">93</td>
<td style="display: none;" data-ice="updated">2017-11-02 17:12:26 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/radio/Radio.spec.js.html">src/components/radio/Radio.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">936 byte</td>
<td style="display: none;" data-ice="lines">25</td>
<td style="display: none;" data-ice="updated">2017-06-05 01:21:31 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/radio/fixtures/comp1.js.html#errorLines=1">src/components/radio/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">663 byte</td>
<td style="display: none;" data-ice="lines">42</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/radio/fixtures/index.js.html#errorLines=2">src/components/radio/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/resource/Resource.js.html#errorLines=3,4,48,79">src/components/resource/Resource.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/resource/Resource.js~ResourceComponent.html">ResourceComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">20 %</span><span data-ice="coverageCount" class="coverage-count">1/5</span></td>
<td style="display: none;" data-ice="size">3439 byte</td>
<td style="display: none;" data-ice="lines">104</td>
<td style="display: none;" data-ice="updated">2017-10-07 03:49:26 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/resource/Resource.spec.js.html">src/components/resource/Resource.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">431 byte</td>
<td style="display: none;" data-ice="lines">12</td>
<td style="display: none;" data-ice="updated">2017-03-06 14:17:03 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/resource/fixtures/comp1.js.html#errorLines=1">src/components/resource/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">603 byte</td>
<td style="display: none;" data-ice="lines">30</td>
<td style="display: none;" data-ice="updated">2017-03-06 14:18:38 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/resource/fixtures/index.js.html#errorLines=2">src/components/resource/fixtures/index.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-components">components</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">92 byte</td>
<td style="display: none;" data-ice="lines">4</td>
<td style="display: none;" data-ice="updated">2017-03-06 14:15:43 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/select/Select.js.html#errorLines=110,12,13,17,178,189,230,236,264,289,302,32,325,333,337,372,39,49,53,57,61">src/components/select/Select.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="class/src/components/select/Select.js~SelectComponent.html">SelectComponent</a></span></td>
<td class="coverage"><span data-ice="coverage">12 %</span><span data-ice="coverageCount" class="coverage-count">3/24</span></td>
<td style="display: none;" data-ice="size">10169 byte</td>
<td style="display: none;" data-ice="lines">377</td>
<td style="display: none;" data-ice="updated">2017-11-02 17:12:22 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/select/Select.spec.js.html">src/components/select/Select.spec.js</a></span></td>
<td data-ice="identifier" class="identifiers">-</td>
<td class="coverage"><span data-ice="coverage">-</span></td>
<td style="display: none;" data-ice="size">1092 byte</td>
<td style="display: none;" data-ice="lines">28</td>
<td style="display: none;" data-ice="updated">2017-10-06 17:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/select/fixtures/comp1.js.html#errorLines=1">src/components/select/fixtures/comp1.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">1158 byte</td>
<td style="display: none;" data-ice="lines">64</td>
<td style="display: none;" data-ice="updated">2017-03-05 02:43:57 (UTC)</td>
</tr>
<tr data-ice="file">
<td data-ice="filePath"><span><a href="file/src/components/select/fixtures/comp2.js.html#errorLines=1">src/components/select/fixtures/comp2.js</a></span></td>
<td data-ice="identifier" class="identifiers"><span><a href="variable/index.html#static-variable-component">component</a></span></td>
<td class="coverage"><span data-ice="coverage">0 %</span><span data-ice="coverageCount" class="coverage-count">0/1</span></td>
<td style="display: none;" data-ice="size">1178 byte</td>
<td style="display: none;" data-ice="lines">65</td>