@tmagic/form 1.0.0-beta.6 → 1.0.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. package/LICENSE +5432 -0
  2. package/README.md +1 -0
  3. package/coverage/clover.xml +1360 -0
  4. package/coverage/coverage-final.json +38 -0
  5. package/coverage/lcov-report/base.css +224 -0
  6. package/coverage/lcov-report/block-navigation.js +87 -0
  7. package/coverage/lcov-report/favicon.png +0 -0
  8. package/coverage/lcov-report/index.html +176 -0
  9. package/coverage/lcov-report/prettify.css +1 -0
  10. package/coverage/lcov-report/prettify.js +2 -0
  11. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  12. package/coverage/lcov-report/sorter.js +196 -0
  13. package/coverage/lcov-report/src/Form.vue.html +676 -0
  14. package/coverage/lcov-report/src/FormDialog.vue.html +583 -0
  15. package/coverage/lcov-report/src/containers/Col.vue.html +253 -0
  16. package/coverage/lcov-report/src/containers/Container.vue.html +925 -0
  17. package/coverage/lcov-report/src/containers/Fieldset.vue.html +499 -0
  18. package/coverage/lcov-report/src/containers/GroupList.vue.html +541 -0
  19. package/coverage/lcov-report/src/containers/GroupListItem.vue.html +562 -0
  20. package/coverage/lcov-report/src/containers/Panel.vue.html +403 -0
  21. package/coverage/lcov-report/src/containers/Row.vue.html +277 -0
  22. package/coverage/lcov-report/src/containers/Step.vue.html +331 -0
  23. package/coverage/lcov-report/src/containers/Table.vue.html +1987 -0
  24. package/coverage/lcov-report/src/containers/Tabs.vue.html +625 -0
  25. package/coverage/lcov-report/src/containers/index.html +251 -0
  26. package/coverage/lcov-report/src/fields/Cascader.vue.html +526 -0
  27. package/coverage/lcov-report/src/fields/Checkbox.vue.html +286 -0
  28. package/coverage/lcov-report/src/fields/CheckboxGroup.vue.html +217 -0
  29. package/coverage/lcov-report/src/fields/ColorPicker.vue.html +199 -0
  30. package/coverage/lcov-report/src/fields/Date.vue.html +238 -0
  31. package/coverage/lcov-report/src/fields/DateTime.vue.html +262 -0
  32. package/coverage/lcov-report/src/fields/Daterange.vue.html +310 -0
  33. package/coverage/lcov-report/src/fields/Display.vue.html +187 -0
  34. package/coverage/lcov-report/src/fields/DynamicField.vue.html +412 -0
  35. package/coverage/lcov-report/src/fields/Hidden.vue.html +172 -0
  36. package/coverage/lcov-report/src/fields/Link.vue.html +421 -0
  37. package/coverage/lcov-report/src/fields/Number.vue.html +244 -0
  38. package/coverage/lcov-report/src/fields/RadioGroup.vue.html +184 -0
  39. package/coverage/lcov-report/src/fields/Select.vue.html +1243 -0
  40. package/coverage/lcov-report/src/fields/Switch.vue.html +280 -0
  41. package/coverage/lcov-report/src/fields/Text.vue.html +487 -0
  42. package/coverage/lcov-report/src/fields/Textarea.vue.html +265 -0
  43. package/coverage/lcov-report/src/fields/Time.vue.html +229 -0
  44. package/coverage/lcov-report/src/fields/index.html +371 -0
  45. package/coverage/lcov-report/src/index.html +146 -0
  46. package/coverage/lcov-report/src/index.ts.html +466 -0
  47. package/coverage/lcov-report/src/theme/index.html +116 -0
  48. package/coverage/lcov-report/src/theme/index.scss.html +112 -0
  49. package/coverage/lcov-report/src/utils/config.ts.html +166 -0
  50. package/coverage/lcov-report/src/utils/createForm.ts.html +160 -0
  51. package/coverage/lcov-report/src/utils/fieldProps.ts.html +202 -0
  52. package/coverage/lcov-report/src/utils/form.ts.html +895 -0
  53. package/coverage/lcov-report/src/utils/index.html +176 -0
  54. package/coverage/lcov-report/src/utils/useAddField.ts.html +205 -0
  55. package/coverage/lcov.info +3061 -0
  56. package/dist/style.css +9 -11
  57. package/dist/tmagic-form.es.js +188 -127
  58. package/dist/tmagic-form.es.js.map +1 -1
  59. package/dist/tmagic-form.umd.js +191 -131
  60. package/dist/tmagic-form.umd.js.map +1 -1
  61. package/dist/types/src/Form.vue.d.ts +181 -120
  62. package/dist/types/src/FormDialog.vue.d.ts +357 -238
  63. package/dist/types/src/containers/Col.vue.d.ts +42 -0
  64. package/dist/types/src/containers/Container.vue.d.ts +1 -0
  65. package/dist/types/src/containers/Row.vue.d.ts +0 -1
  66. package/dist/types/src/containers/Table.vue.d.ts +1742 -544
  67. package/dist/types/src/fields/Checkbox.vue.d.ts +2 -2
  68. package/dist/types/src/fields/Link.vue.d.ts +710 -472
  69. package/dist/types/src/schema.d.ts +2 -0
  70. package/package.json +29 -9
  71. package/src/Form.vue +7 -2
  72. package/src/FormDialog.vue +1 -1
  73. package/src/containers/Col.vue +56 -0
  74. package/src/containers/Container.vue +28 -11
  75. package/src/containers/GroupListItem.vue +4 -4
  76. package/src/containers/Row.vue +13 -17
  77. package/src/containers/Table.vue +14 -6
  78. package/src/fields/Checkbox.vue +2 -2
  79. package/src/fields/Link.vue +1 -1
  80. package/src/fields/Select.vue +8 -15
  81. package/src/fields/Text.vue +4 -4
  82. package/src/fields/Textarea.vue +11 -13
  83. package/src/schema.ts +2 -0
  84. package/src/theme/form.scss +24 -17
  85. package/src/utils/form.ts +5 -1
  86. package/dist/types/src/fields/Cascader.vue.d.ts +0 -1748
  87. package/dist/types/src/fields/Select.vue.d.ts +0 -975
  88. package/tsconfig.json +0 -9
  89. package/vite.config.ts +0 -27
@@ -0,0 +1,1360 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <coverage generated="1653397393902" clover="3.2.0">
3
+ <project timestamp="1653397393902" name="All files">
4
+ <metrics statements="1228" coveredstatements="592" conditionals="834" coveredconditionals="198" methods="333" coveredmethods="126" elements="2395" coveredelements="916" complexity="0" loc="1228" ncloc="1228" packages="5" files="37" classes="37"/>
5
+ <package name="src">
6
+ <metrics statements="179" coveredstatements="149" conditionals="27" coveredconditionals="5" methods="62" coveredmethods="36"/>
7
+ <file name="Form.vue" path="/data/magic/tmagic-editor/packages/form/src/Form.vue">
8
+ <metrics statements="46" coveredstatements="32" conditionals="21" coveredconditionals="5" methods="22" coveredmethods="14"/>
9
+ <line num="28" count="17" type="stmt"/>
10
+ <line num="30" count="17" type="stmt"/>
11
+ <line num="32" count="17" type="stmt"/>
12
+ <line num="33" count="17" type="stmt"/>
13
+ <line num="45" count="17" type="stmt"/>
14
+ <line num="53" count="0" type="stmt"/>
15
+ <line num="58" count="50" type="stmt"/>
16
+ <line num="65" count="0" type="stmt"/>
17
+ <line num="70" count="50" type="stmt"/>
18
+ <line num="75" count="50" type="stmt"/>
19
+ <line num="80" count="50" type="stmt"/>
20
+ <line num="85" count="50" type="stmt"/>
21
+ <line num="114" count="50" type="stmt"/>
22
+ <line num="115" count="50" type="stmt"/>
23
+ <line num="116" count="50" type="stmt"/>
24
+ <line num="117" count="50" type="stmt"/>
25
+ <line num="118" count="50" type="stmt"/>
26
+ <line num="120" count="50" type="stmt"/>
27
+ <line num="122" count="50" type="stmt"/>
28
+ <line num="131" count="45" type="stmt"/>
29
+ <line num="132" count="0" type="stmt"/>
30
+ <line num="133" count="0" type="stmt"/>
31
+ <line num="135" count="0" type="cond" truecount="0" falsecount="1"/>
32
+ <line num="136" count="0" type="stmt"/>
33
+ <line num="144" count="50" type="stmt"/>
34
+ <line num="146" count="50" type="stmt"/>
35
+ <line num="147" count="50" type="stmt"/>
36
+ <line num="148" count="50" type="stmt"/>
37
+ <line num="149" count="50" type="cond" truecount="1" falsecount="0"/>
38
+ <line num="150" count="50" type="stmt"/>
39
+ <line num="153" count="50" type="stmt"/>
40
+ <line num="157" count="50" type="stmt"/>
41
+ <line num="158" count="50" type="stmt"/>
42
+ <line num="164" count="50" type="stmt"/>
43
+ <line num="172" count="20" type="stmt"/>
44
+ <line num="175" count="0" type="cond" truecount="0" falsecount="4"/>
45
+ <line num="177" count="36" type="stmt"/>
46
+ <line num="179" count="72" type="cond" truecount="3" falsecount="1"/>
47
+ <line num="180" count="36" type="cond" truecount="1" falsecount="1"/>
48
+ <line num="182" count="0" type="stmt"/>
49
+ <line num="184" count="0" type="stmt"/>
50
+ <line num="185" count="0" type="stmt"/>
51
+ <line num="186" count="0" type="cond" truecount="0" falsecount="3"/>
52
+ <line num="187" count="0" type="cond" truecount="0" falsecount="3"/>
53
+ <line num="188" count="0" type="cond" truecount="0" falsecount="3"/>
54
+ <line num="191" count="0" type="stmt"/>
55
+ </file>
56
+ <file name="FormDialog.vue" path="/data/magic/tmagic-editor/packages/form/src/FormDialog.vue">
57
+ <metrics statements="38" coveredstatements="22" conditionals="6" coveredconditionals="0" methods="11" coveredmethods="4"/>
58
+ <line num="53" count="17" type="stmt"/>
59
+ <line num="58" count="17" type="stmt"/>
60
+ <line num="64" count="1" type="stmt"/>
61
+ <line num="76" count="1" type="stmt"/>
62
+ <line num="91" count="1" type="stmt"/>
63
+ <line num="92" count="1" type="stmt"/>
64
+ <line num="93" count="1" type="stmt"/>
65
+ <line num="94" count="1" type="stmt"/>
66
+ <line num="95" count="1" type="stmt"/>
67
+ <line num="96" count="1" type="stmt"/>
68
+ <line num="98" count="1" type="stmt"/>
69
+ <line num="99" count="0" type="stmt"/>
70
+ <line num="100" count="0" type="stmt"/>
71
+ <line num="101" count="0" type="cond" truecount="0" falsecount="1"/>
72
+ <line num="102" count="0" type="stmt"/>
73
+ <line num="105" count="0" type="stmt"/>
74
+ <line num="108" count="1" type="stmt"/>
75
+ <line num="109" count="1" type="stmt"/>
76
+ <line num="110" count="1" type="stmt"/>
77
+ <line num="111" count="0" type="cond" truecount="0" falsecount="1"/>
78
+ <line num="112" count="0" type="stmt"/>
79
+ <line num="116" count="1" type="stmt"/>
80
+ <line num="119" count="1" type="stmt"/>
81
+ <line num="120" count="0" type="stmt"/>
82
+ <line num="123" count="1" type="stmt"/>
83
+ <line num="124" count="0" type="stmt"/>
84
+ <line num="125" count="0" type="stmt"/>
85
+ <line num="128" count="1" type="stmt"/>
86
+ <line num="130" count="0" type="cond" truecount="0" falsecount="4"/>
87
+ <line num="131" count="0" type="stmt"/>
88
+ <line num="133" count="0" type="stmt"/>
89
+ <line num="137" count="1" type="stmt"/>
90
+ <line num="138" count="0" type="stmt"/>
91
+ <line num="141" count="1" type="stmt"/>
92
+ <line num="142" count="0" type="stmt"/>
93
+ <line num="145" count="1" type="stmt"/>
94
+ <line num="146" count="0" type="stmt"/>
95
+ <line num="149" count="1" type="stmt"/>
96
+ </file>
97
+ <file name="index.ts" path="/data/magic/tmagic-editor/packages/form/src/index.ts">
98
+ <metrics statements="95" coveredstatements="95" conditionals="0" coveredconditionals="0" methods="29" coveredmethods="18"/>
99
+ <line num="21" count="17" type="stmt"/>
100
+ <line num="22" count="17" type="stmt"/>
101
+ <line num="23" count="17" type="stmt"/>
102
+ <line num="24" count="17" type="stmt"/>
103
+ <line num="25" count="17" type="stmt"/>
104
+ <line num="26" count="17" type="stmt"/>
105
+ <line num="27" count="17" type="stmt"/>
106
+ <line num="28" count="17" type="stmt"/>
107
+ <line num="29" count="17" type="stmt"/>
108
+ <line num="30" count="17" type="stmt"/>
109
+ <line num="31" count="17" type="stmt"/>
110
+ <line num="32" count="17" type="stmt"/>
111
+ <line num="33" count="17" type="stmt"/>
112
+ <line num="34" count="17" type="stmt"/>
113
+ <line num="35" count="17" type="stmt"/>
114
+ <line num="36" count="17" type="stmt"/>
115
+ <line num="37" count="17" type="stmt"/>
116
+ <line num="38" count="17" type="stmt"/>
117
+ <line num="39" count="17" type="stmt"/>
118
+ <line num="40" count="17" type="stmt"/>
119
+ <line num="41" count="17" type="stmt"/>
120
+ <line num="42" count="17" type="stmt"/>
121
+ <line num="43" count="17" type="stmt"/>
122
+ <line num="44" count="17" type="stmt"/>
123
+ <line num="45" count="17" type="stmt"/>
124
+ <line num="46" count="17" type="stmt"/>
125
+ <line num="47" count="17" type="stmt"/>
126
+ <line num="48" count="17" type="stmt"/>
127
+ <line num="49" count="17" type="stmt"/>
128
+ <line num="51" count="17" type="stmt"/>
129
+ <line num="53" count="17" type="stmt"/>
130
+ <line num="54" count="17" type="stmt"/>
131
+ <line num="55" count="17" type="stmt"/>
132
+ <line num="56" count="17" type="stmt"/>
133
+ <line num="58" count="65" type="stmt"/>
134
+ <line num="59" count="18" type="stmt"/>
135
+ <line num="60" count="17" type="stmt"/>
136
+ <line num="61" count="17" type="stmt"/>
137
+ <line num="62" count="17" type="stmt"/>
138
+ <line num="63" count="17" type="stmt"/>
139
+ <line num="64" count="17" type="stmt"/>
140
+ <line num="65" count="17" type="stmt"/>
141
+ <line num="66" count="17" type="stmt"/>
142
+ <line num="67" count="18" type="stmt"/>
143
+ <line num="68" count="19" type="stmt"/>
144
+ <line num="69" count="18" type="stmt"/>
145
+ <line num="70" count="19" type="stmt"/>
146
+ <line num="71" count="18" type="stmt"/>
147
+ <line num="72" count="20" type="stmt"/>
148
+ <line num="73" count="18" type="stmt"/>
149
+ <line num="74" count="18" type="stmt"/>
150
+ <line num="75" count="19" type="stmt"/>
151
+ <line num="76" count="19" type="stmt"/>
152
+ <line num="77" count="18" type="stmt"/>
153
+ <line num="78" count="18" type="stmt"/>
154
+ <line num="79" count="18" type="stmt"/>
155
+ <line num="80" count="19" type="stmt"/>
156
+ <line num="81" count="21" type="stmt"/>
157
+ <line num="82" count="17" type="stmt"/>
158
+ <line num="83" count="17" type="stmt"/>
159
+ <line num="84" count="17" type="stmt"/>
160
+ <line num="86" count="17" type="stmt"/>
161
+ <line num="88" count="17" type="stmt"/>
162
+ <line num="89" count="48" type="stmt"/>
163
+ <line num="92" count="48" type="stmt"/>
164
+ <line num="93" count="48" type="stmt"/>
165
+ <line num="95" count="48" type="stmt"/>
166
+ <line num="96" count="48" type="stmt"/>
167
+ <line num="97" count="48" type="stmt"/>
168
+ <line num="98" count="48" type="stmt"/>
169
+ <line num="99" count="48" type="stmt"/>
170
+ <line num="100" count="48" type="stmt"/>
171
+ <line num="101" count="48" type="stmt"/>
172
+ <line num="102" count="48" type="stmt"/>
173
+ <line num="103" count="48" type="stmt"/>
174
+ <line num="104" count="48" type="stmt"/>
175
+ <line num="105" count="48" type="stmt"/>
176
+ <line num="106" count="48" type="stmt"/>
177
+ <line num="107" count="48" type="stmt"/>
178
+ <line num="108" count="48" type="stmt"/>
179
+ <line num="109" count="48" type="stmt"/>
180
+ <line num="110" count="48" type="stmt"/>
181
+ <line num="111" count="48" type="stmt"/>
182
+ <line num="112" count="48" type="stmt"/>
183
+ <line num="113" count="48" type="stmt"/>
184
+ <line num="114" count="48" type="stmt"/>
185
+ <line num="115" count="48" type="stmt"/>
186
+ <line num="116" count="48" type="stmt"/>
187
+ <line num="117" count="48" type="stmt"/>
188
+ <line num="118" count="48" type="stmt"/>
189
+ <line num="119" count="48" type="stmt"/>
190
+ <line num="120" count="48" type="stmt"/>
191
+ <line num="121" count="48" type="stmt"/>
192
+ <line num="122" count="48" type="stmt"/>
193
+ <line num="125" count="17" type="stmt"/>
194
+ </file>
195
+ </package>
196
+ <package name="src.containers">
197
+ <metrics statements="458" coveredstatements="108" conditionals="356" coveredconditionals="36" methods="146" coveredmethods="26"/>
198
+ <file name="Col.vue" path="/data/magic/tmagic-editor/packages/form/src/containers/Col.vue">
199
+ <metrics statements="10" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="5" coveredmethods="0"/>
200
+ <line num="16" count="17" type="stmt"/>
201
+ <line num="19" count="17" type="stmt"/>
202
+ <line num="21" count="17" type="stmt"/>
203
+ <line num="29" count="0" type="stmt"/>
204
+ <line num="34" count="0" type="stmt"/>
205
+ <line num="44" count="0" type="stmt"/>
206
+ <line num="45" count="0" type="stmt"/>
207
+ <line num="47" count="0" type="stmt"/>
208
+ <line num="49" count="0" type="stmt"/>
209
+ <line num="51" count="0" type="stmt"/>
210
+ </file>
211
+ <file name="Container.vue" path="/data/magic/tmagic-editor/packages/form/src/containers/Container.vue">
212
+ <metrics statements="59" coveredstatements="51" conditionals="65" coveredconditionals="35" methods="20" coveredmethods="19"/>
213
+ <line num="106" count="17" type="stmt"/>
214
+ <line num="107" count="17" type="stmt"/>
215
+ <line num="110" count="17" type="stmt"/>
216
+ <line num="112" count="17" type="stmt"/>
217
+ <line num="133" count="48" type="stmt"/>
218
+ <line num="148" count="49" type="stmt"/>
219
+ <line num="149" count="49" type="stmt"/>
220
+ <line num="151" count="49" type="stmt"/>
221
+ <line num="153" count="49" type="cond" truecount="2" falsecount="0"/>
222
+ <line num="155" count="49" type="stmt"/>
223
+ <line num="157" count="49" type="cond" truecount="3" falsecount="1"/>
224
+ <line num="159" count="49" type="stmt"/>
225
+ <line num="160" count="47" type="cond" truecount="2" falsecount="0"/>
226
+ <line num="161" count="47" type="cond" truecount="1" falsecount="0"/>
227
+ <line num="162" count="0" type="stmt"/>
228
+ <line num="165" count="49" type="stmt"/>
229
+ <line num="167" count="49" type="stmt"/>
230
+ <line num="169" count="49" type="stmt"/>
231
+ <line num="171" count="49" type="stmt"/>
232
+ <line num="173" count="49" type="stmt"/>
233
+ <line num="174" count="49" type="stmt"/>
234
+ <line num="175" count="49" type="cond" truecount="0" falsecount="1"/>
235
+ <line num="176" count="0" type="stmt"/>
236
+ <line num="180" count="49" type="cond" truecount="0" falsecount="1"/>
237
+ <line num="181" count="49" type="cond" truecount="7" falsecount="1"/>
238
+ <line num="184" count="49" type="stmt"/>
239
+ <line num="185" count="47" type="cond" truecount="0" falsecount="1"/>
240
+ <line num="186" count="0" type="stmt"/>
241
+ <line num="189" count="47" type="stmt"/>
242
+ <line num="192" count="49" type="cond" truecount="2" falsecount="0"/>
243
+ <line num="194" count="49" type="stmt"/>
244
+ <line num="195" count="49" type="stmt"/>
245
+ <line num="198" count="49" type="stmt"/>
246
+ <line num="200" count="83" type="cond" truecount="3" falsecount="1"/>
247
+ <line num="202" count="49" type="stmt"/>
248
+ <line num="203" count="20" type="cond" truecount="0" falsecount="1"/>
249
+ <line num="204" count="0" type="stmt"/>
250
+ <line num="212" count="20" type="cond" truecount="1" falsecount="0"/>
251
+ <line num="213" count="8" type="stmt"/>
252
+ <line num="216" count="12" type="stmt"/>
253
+ <line num="219" count="49" type="stmt"/>
254
+ <line num="220" count="20" type="cond" truecount="0" falsecount="1"/>
255
+ <line num="221" count="0" type="stmt"/>
256
+ <line num="230" count="49" type="stmt"/>
257
+ <line num="231" count="20" type="cond" truecount="2" falsecount="1"/>
258
+ <line num="232" count="0" type="stmt"/>
259
+ <line num="236" count="49" type="stmt"/>
260
+ <line num="237" count="20" type="stmt"/>
261
+ <line num="238" count="20" type="stmt"/>
262
+ <line num="241" count="20" type="stmt"/>
263
+ <line num="242" count="20" type="cond" truecount="3" falsecount="1"/>
264
+ <line num="243" count="20" type="cond" truecount="3" falsecount="1"/>
265
+ <line num="245" count="0" type="stmt"/>
266
+ <line num="249" count="20" type="cond" truecount="5" falsecount="1"/>
267
+ <line num="251" count="8" type="stmt"/>
268
+ <line num="254" count="20" type="cond" truecount="1" falsecount="2"/>
269
+ <line num="256" count="0" type="stmt"/>
270
+ <line num="258" count="20" type="stmt"/>
271
+ <line num="261" count="49" type="stmt"/>
272
+ </file>
273
+ <file name="Fieldset.vue" path="/data/magic/tmagic-editor/packages/form/src/containers/Fieldset.vue">
274
+ <metrics statements="21" coveredstatements="2" conditionals="27" coveredconditionals="0" methods="10" coveredmethods="0"/>
275
+ <line num="66" count="17" type="stmt"/>
276
+ <line num="70" count="17" type="stmt"/>
277
+ <line num="78" count="0" type="stmt"/>
278
+ <line num="83" count="0" type="stmt"/>
279
+ <line num="88" count="0" type="stmt"/>
280
+ <line num="93" count="0" type="stmt"/>
281
+ <line num="101" count="0" type="stmt"/>
282
+ <line num="102" count="0" type="stmt"/>
283
+ <line num="104" count="0" type="cond" truecount="0" falsecount="2"/>
284
+ <line num="106" count="0" type="stmt"/>
285
+ <line num="107" count="0" type="cond" truecount="0" falsecount="3"/>
286
+ <line num="108" count="0" type="cond" truecount="0" falsecount="4"/>
287
+ <line num="110" count="0" type="stmt"/>
288
+ <line num="113" count="0" type="stmt"/>
289
+ <line num="114" count="0" type="cond" truecount="0" falsecount="1"/>
290
+ <line num="115" count="0" type="cond" truecount="0" falsecount="2"/>
291
+ <line num="117" count="0" type="cond" truecount="0" falsecount="5"/>
292
+ <line num="120" count="0" type="stmt"/>
293
+ <line num="121" count="0" type="stmt"/>
294
+ <line num="124" count="0" type="cond" truecount="0" falsecount="10"/>
295
+ <line num="126" count="0" type="stmt"/>
296
+ </file>
297
+ <file name="GroupList.vue" path="/data/magic/tmagic-editor/packages/form/src/containers/GroupList.vue">
298
+ <metrics statements="40" coveredstatements="4" conditionals="22" coveredconditionals="0" methods="10" coveredmethods="0"/>
299
+ <line num="33" count="17" type="stmt"/>
300
+ <line num="36" count="17" type="stmt"/>
301
+ <line num="38" count="17" type="stmt"/>
302
+ <line num="40" count="17" type="stmt"/>
303
+ <line num="50" count="0" type="stmt"/>
304
+ <line num="55" count="0" type="stmt"/>
305
+ <line num="73" count="0" type="stmt"/>
306
+ <line num="74" count="0" type="stmt"/>
307
+ <line num="76" count="0" type="stmt"/>
308
+ <line num="77" count="0" type="cond" truecount="0" falsecount="1"/>
309
+ <line num="79" count="0" type="cond" truecount="0" falsecount="1"/>
310
+ <line num="80" count="0" type="stmt"/>
311
+ <line num="86" count="0" type="cond" truecount="0" falsecount="2"/>
312
+ <line num="89" count="0" type="stmt"/>
313
+ <line num="90" count="0" type="cond" truecount="0" falsecount="1"/>
314
+ <line num="92" count="0" type="stmt"/>
315
+ <line num="95" count="0" type="stmt"/>
316
+ <line num="96" count="0" type="cond" truecount="0" falsecount="1"/>
317
+ <line num="98" count="0" type="stmt"/>
318
+ <line num="100" count="0" type="cond" truecount="0" falsecount="1"/>
319
+ <line num="101" count="0" type="stmt"/>
320
+ <line num="105" count="0" type="cond" truecount="0" falsecount="1"/>
321
+ <line num="106" count="0" type="stmt"/>
322
+ <line num="109" count="0" type="stmt"/>
323
+ <line num="114" count="0" type="stmt"/>
324
+ <line num="117" count="0" type="stmt"/>
325
+ <line num="118" count="0" type="cond" truecount="0" falsecount="1"/>
326
+ <line num="120" count="0" type="stmt"/>
327
+ <line num="121" count="0" type="stmt"/>
328
+ <line num="124" count="0" type="stmt"/>
329
+ <line num="125" count="0" type="cond" truecount="0" falsecount="1"/>
330
+ <line num="127" count="0" type="stmt"/>
331
+ <line num="128" count="0" type="stmt"/>
332
+ <line num="129" count="0" type="stmt"/>
333
+ <line num="132" count="0" type="stmt"/>
334
+ <line num="133" count="0" type="stmt"/>
335
+ <line num="134" count="0" type="stmt"/>
336
+ <line num="135" count="0" type="cond" truecount="0" falsecount="2"/>
337
+ <line num="136" count="0" type="stmt"/>
338
+ <line num="142" count="0" type="stmt"/>
339
+ </file>
340
+ <file name="GroupListItem.vue" path="/data/magic/tmagic-editor/packages/form/src/containers/GroupListItem.vue">
341
+ <metrics statements="36" coveredstatements="4" conditionals="35" coveredconditionals="0" methods="15" coveredmethods="0"/>
342
+ <line num="43" count="17" type="stmt"/>
343
+ <line num="44" count="17" type="stmt"/>
344
+ <line num="47" count="17" type="stmt"/>
345
+ <line num="49" count="17" type="stmt"/>
346
+ <line num="59" count="0" type="stmt"/>
347
+ <line num="64" count="0" type="stmt"/>
348
+ <line num="78" count="0" type="stmt"/>
349
+ <line num="84" count="0" type="stmt"/>
350
+ <line num="85" count="0" type="stmt"/>
351
+ <line num="86" count="0" type="stmt"/>
352
+ <line num="88" count="0" type="stmt"/>
353
+ <line num="89" count="0" type="stmt"/>
354
+ <line num="92" count="0" type="stmt"/>
355
+ <line num="100" count="0" type="stmt"/>
356
+ <line num="101" count="0" type="cond" truecount="0" falsecount="3"/>
357
+ <line num="102" count="0" type="stmt"/>
358
+ <line num="105" count="0" type="stmt"/>
359
+ <line num="108" count="0" type="cond" truecount="0" falsecount="6"/>
360
+ <line num="110" count="0" type="stmt"/>
361
+ <line num="112" count="0" type="stmt"/>
362
+ <line num="114" count="0" type="stmt"/>
363
+ <line num="116" count="0" type="stmt"/>
364
+ <line num="117" count="0" type="stmt"/>
365
+ <line num="121" count="0" type="stmt"/>
366
+ <line num="122" count="0" type="stmt"/>
367
+ <line num="123" count="0" type="cond" truecount="0" falsecount="3"/>
368
+ <line num="124" count="0" type="cond" truecount="0" falsecount="4"/>
369
+ <line num="126" count="0" type="stmt"/>
370
+ <line num="130" count="0" type="cond" truecount="0" falsecount="1"/>
371
+ <line num="132" count="0" type="stmt"/>
372
+ <line num="133" count="0" type="stmt"/>
373
+ <line num="136" count="0" type="cond" truecount="0" falsecount="1"/>
374
+ <line num="137" count="0" type="cond" truecount="0" falsecount="1"/>
375
+ <line num="138" count="0" type="cond" truecount="0" falsecount="2"/>
376
+ <line num="140" count="0" type="stmt"/>
377
+ <line num="143" count="0" type="stmt"/>
378
+ </file>
379
+ <file name="Panel.vue" path="/data/magic/tmagic-editor/packages/form/src/containers/Panel.vue">
380
+ <metrics statements="13" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="6" coveredmethods="0"/>
381
+ <line num="53" count="17" type="stmt"/>
382
+ <line num="54" count="17" type="stmt"/>
383
+ <line num="57" count="17" type="stmt"/>
384
+ <line num="59" count="17" type="stmt"/>
385
+ <line num="69" count="0" type="stmt"/>
386
+ <line num="74" count="0" type="stmt"/>
387
+ <line num="86" count="0" type="stmt"/>
388
+ <line num="87" count="0" type="stmt"/>
389
+ <line num="89" count="0" type="stmt"/>
390
+ <line num="91" count="0" type="stmt"/>
391
+ <line num="93" count="0" type="stmt"/>
392
+ <line num="95" count="0" type="stmt"/>
393
+ <line num="97" count="0" type="stmt"/>
394
+ </file>
395
+ <file name="Row.vue" path="/data/magic/tmagic-editor/packages/form/src/containers/Row.vue">
396
+ <metrics statements="9" coveredstatements="3" conditionals="2" coveredconditionals="0" methods="4" coveredmethods="0"/>
397
+ <line num="19" count="17" type="stmt"/>
398
+ <line num="23" count="17" type="stmt"/>
399
+ <line num="25" count="17" type="stmt"/>
400
+ <line num="36" count="0" type="stmt"/>
401
+ <line num="41" count="0" type="stmt"/>
402
+ <line num="53" count="0" type="stmt"/>
403
+ <line num="54" count="0" type="stmt"/>
404
+ <line num="56" count="0" type="cond" truecount="0" falsecount="2"/>
405
+ <line num="58" count="0" type="stmt"/>
406
+ </file>
407
+ <file name="Step.vue" path="/data/magic/tmagic-editor/packages/form/src/containers/Step.vue">
408
+ <metrics statements="16" coveredstatements="2" conditionals="4" coveredconditionals="0" methods="7" coveredmethods="0"/>
409
+ <line num="32" count="17" type="stmt"/>
410
+ <line num="36" count="17" type="stmt"/>
411
+ <line num="42" count="0" type="stmt"/>
412
+ <line num="47" count="0" type="stmt"/>
413
+ <line num="52" count="0" type="stmt"/>
414
+ <line num="62" count="0" type="stmt"/>
415
+ <line num="63" count="0" type="stmt"/>
416
+ <line num="64" count="0" type="stmt"/>
417
+ <line num="66" count="0" type="stmt"/>
418
+ <line num="67" count="0" type="stmt"/>
419
+ <line num="70" count="0" type="stmt"/>
420
+ <line num="71" count="0" type="stmt"/>
421
+ <line num="72" count="0" type="cond" truecount="0" falsecount="4"/>
422
+ <line num="75" count="0" type="stmt"/>
423
+ <line num="76" count="0" type="stmt"/>
424
+ <line num="79" count="0" type="stmt"/>
425
+ </file>
426
+ <file name="Table.vue" path="/data/magic/tmagic-editor/packages/form/src/containers/Table.vue">
427
+ <metrics statements="194" coveredstatements="10" conditionals="156" coveredconditionals="0" methods="53" coveredmethods="0"/>
428
+ <line num="155" count="17" type="stmt"/>
429
+ <line num="156" count="17" type="stmt"/>
430
+ <line num="157" count="17" type="stmt"/>
431
+ <line num="158" count="17" type="stmt"/>
432
+ <line num="159" count="17" type="stmt"/>
433
+ <line num="161" count="17" type="stmt"/>
434
+ <line num="164" count="17" type="stmt"/>
435
+ <line num="183" count="17" type="stmt"/>
436
+ <line num="184" count="17" type="stmt"/>
437
+ <line num="186" count="17" type="stmt"/>
438
+ <line num="198" count="0" type="stmt"/>
439
+ <line num="204" count="0" type="stmt"/>
440
+ <line num="239" count="0" type="stmt"/>
441
+ <line num="240" count="0" type="stmt"/>
442
+ <line num="241" count="0" type="stmt"/>
443
+ <line num="243" count="0" type="stmt"/>
444
+ <line num="244" count="0" type="stmt"/>
445
+ <line num="245" count="0" type="stmt"/>
446
+ <line num="247" count="0" type="stmt"/>
447
+ <line num="248" count="0" type="stmt"/>
448
+ <line num="249" count="0" type="stmt"/>
449
+ <line num="250" count="0" type="stmt"/>
450
+ <line num="252" count="0" type="cond" truecount="0" falsecount="3"/>
451
+ <line num="254" count="0" type="stmt"/>
452
+ <line num="255" count="0" type="cond" truecount="0" falsecount="2"/>
453
+ <line num="256" count="0" type="stmt"/>
454
+ <line num="257" count="0" type="cond" truecount="0" falsecount="1"/>
455
+ <line num="258" count="0" type="stmt"/>
456
+ <line num="262" count="0" type="stmt"/>
457
+ <line num="263" count="0" type="stmt"/>
458
+ <line num="264" count="0" type="stmt"/>
459
+ <line num="267" count="0" type="stmt"/>
460
+ <line num="268" count="0" type="stmt"/>
461
+ <line num="273" count="0" type="cond" truecount="0" falsecount="1"/>
462
+ <line num="274" count="0" type="stmt"/>
463
+ <line num="275" count="0" type="stmt"/>
464
+ <line num="278" count="0" type="cond" truecount="0" falsecount="4"/>
465
+ <line num="281" count="0" type="stmt"/>
466
+ <line num="282" count="0" type="cond" truecount="0" falsecount="4"/>
467
+ <line num="283" count="0" type="cond" truecount="0" falsecount="5"/>
468
+ <line num="285" count="0" type="stmt"/>
469
+ <line num="286" count="0" type="stmt"/>
470
+ <line num="287" count="0" type="stmt"/>
471
+ <line num="288" count="0" type="cond" truecount="0" falsecount="1"/>
472
+ <line num="289" count="0" type="cond" truecount="0" falsecount="1"/>
473
+ <line num="290" count="0" type="stmt"/>
474
+ <line num="291" count="0" type="stmt"/>
475
+ <line num="292" count="0" type="stmt"/>
476
+ <line num="293" count="0" type="stmt"/>
477
+ <line num="294" count="0" type="cond" truecount="0" falsecount="4"/>
478
+ <line num="295" count="0" type="stmt"/>
479
+ <line num="296" count="0" type="stmt"/>
480
+ <line num="297" count="0" type="cond" truecount="0" falsecount="5"/>
481
+ <line num="298" count="0" type="stmt"/>
482
+ <line num="299" count="0" type="stmt"/>
483
+ <line num="300" count="0" type="stmt"/>
484
+ <line num="309" count="0" type="stmt"/>
485
+ <line num="310" count="0" type="cond" truecount="0" falsecount="3"/>
486
+ <line num="311" count="0" type="stmt"/>
487
+ <line num="312" count="0" type="stmt"/>
488
+ <line num="315" count="0" type="stmt"/>
489
+ <line num="316" count="0" type="cond" truecount="0" falsecount="2"/>
490
+ <line num="317" count="0" type="stmt"/>
491
+ <line num="318" count="0" type="stmt"/>
492
+ <line num="319" count="0" type="cond" truecount="0" falsecount="2"/>
493
+ <line num="320" count="0" type="stmt"/>
494
+ <line num="322" count="0" type="cond" truecount="0" falsecount="1"/>
495
+ <line num="323" count="0" type="cond" truecount="0" falsecount="1"/>
496
+ <line num="324" count="0" type="stmt"/>
497
+ <line num="326" count="0" type="stmt"/>
498
+ <line num="327" count="0" type="stmt"/>
499
+ <line num="328" count="0" type="stmt"/>
500
+ <line num="329" count="0" type="cond" truecount="0" falsecount="1"/>
501
+ <line num="330" count="0" type="stmt"/>
502
+ <line num="333" count="0" type="stmt"/>
503
+ <line num="336" count="0" type="cond" truecount="0" falsecount="1"/>
504
+ <line num="338" count="0" type="stmt"/>
505
+ <line num="340" count="0" type="cond" truecount="0" falsecount="1"/>
506
+ <line num="341" count="0" type="stmt"/>
507
+ <line num="342" count="0" type="cond" truecount="0" falsecount="2"/>
508
+ <line num="345" count="0" type="cond" truecount="0" falsecount="1"/>
509
+ <line num="346" count="0" type="stmt"/>
510
+ <line num="350" count="0" type="cond" truecount="0" falsecount="1"/>
511
+ <line num="351" count="0" type="stmt"/>
512
+ <line num="354" count="0" type="stmt"/>
513
+ <line num="360" count="0" type="cond" truecount="0" falsecount="3"/>
514
+ <line num="361" count="0" type="stmt"/>
515
+ <line num="364" count="0" type="stmt"/>
516
+ <line num="365" count="0" type="stmt"/>
517
+ <line num="368" count="0" type="cond" truecount="0" falsecount="4"/>
518
+ <line num="369" count="0" type="stmt"/>
519
+ <line num="370" count="0" type="stmt"/>
520
+ <line num="372" count="0" type="stmt"/>
521
+ <line num="375" count="0" type="stmt"/>
522
+ <line num="379" count="0" type="stmt"/>
523
+ <line num="380" count="0" type="cond" truecount="0" falsecount="1"/>
524
+ <line num="381" count="0" type="stmt"/>
525
+ <line num="384" count="0" type="cond" truecount="0" falsecount="3"/>
526
+ <line num="385" count="0" type="stmt"/>
527
+ <line num="388" count="0" type="cond" truecount="0" falsecount="1"/>
528
+ <line num="389" count="0" type="stmt"/>
529
+ <line num="393" count="0" type="stmt"/>
530
+ <line num="411" count="0" type="stmt"/>
531
+ <line num="413" count="0" type="cond" truecount="0" falsecount="2"/>
532
+ <line num="417" count="0" type="cond" truecount="0" falsecount="1"/>
533
+ <line num="418" count="0" type="stmt"/>
534
+ <line num="420" count="0" type="cond" truecount="0" falsecount="1"/>
535
+ <line num="421" count="0" type="stmt"/>
536
+ <line num="427" count="0" type="cond" truecount="0" falsecount="2"/>
537
+ <line num="430" count="0" type="cond" truecount="0" falsecount="1"/>
538
+ <line num="431" count="0" type="stmt"/>
539
+ <line num="433" count="0" type="stmt"/>
540
+ <line num="436" count="0" type="cond" truecount="0" falsecount="1"/>
541
+ <line num="437" count="0" type="stmt"/>
542
+ <line num="442" count="0" type="cond" truecount="0" falsecount="2"/>
543
+ <line num="448" count="0" type="stmt"/>
544
+ <line num="452" count="0" type="cond" truecount="0" falsecount="1"/>
545
+ <line num="453" count="0" type="stmt"/>
546
+ <line num="462" count="0" type="stmt"/>
547
+ <line num="468" count="0" type="stmt"/>
548
+ <line num="469" count="0" type="stmt"/>
549
+ <line num="473" count="0" type="cond" truecount="0" falsecount="3"/>
550
+ <line num="474" count="0" type="cond" truecount="0" falsecount="4"/>
551
+ <line num="475" count="0" type="cond" truecount="0" falsecount="4"/>
552
+ <line num="477" count="0" type="stmt"/>
553
+ <line num="478" count="0" type="cond" truecount="0" falsecount="1"/>
554
+ <line num="479" count="0" type="stmt"/>
555
+ <line num="484" count="0" type="cond" truecount="0" falsecount="4"/>
556
+ <line num="488" count="0" type="stmt"/>
557
+ <line num="489" count="0" type="stmt"/>
558
+ <line num="490" count="0" type="stmt"/>
559
+ <line num="494" count="0" type="cond" truecount="0" falsecount="1"/>
560
+ <line num="495" count="0" type="stmt"/>
561
+ <line num="498" count="0" type="stmt"/>
562
+ <line num="499" count="0" type="stmt"/>
563
+ <line num="504" count="0" type="cond" truecount="0" falsecount="1"/>
564
+ <line num="505" count="0" type="stmt"/>
565
+ <line num="509" count="0" type="stmt"/>
566
+ <line num="512" count="0" type="stmt"/>
567
+ <line num="513" count="0" type="stmt"/>
568
+ <line num="514" count="0" type="stmt"/>
569
+ <line num="519" count="0" type="cond" truecount="0" falsecount="1"/>
570
+ <line num="520" count="0" type="stmt"/>
571
+ <line num="523" count="0" type="stmt"/>
572
+ <line num="524" count="0" type="stmt"/>
573
+ <line num="529" count="0" type="cond" truecount="0" falsecount="1"/>
574
+ <line num="530" count="0" type="stmt"/>
575
+ <line num="534" count="0" type="stmt"/>
576
+ <line num="537" count="0" type="stmt"/>
577
+ <line num="538" count="0" type="stmt"/>
578
+ <line num="539" count="0" type="stmt"/>
579
+ <line num="545" count="0" type="stmt"/>
580
+ <line num="546" count="0" type="cond" truecount="0" falsecount="3"/>
581
+ <line num="547" count="0" type="cond" truecount="0" falsecount="4"/>
582
+ <line num="549" count="0" type="stmt"/>
583
+ <line num="553" count="0" type="stmt"/>
584
+ <line num="554" count="0" type="stmt"/>
585
+ <line num="555" count="0" type="cond" truecount="0" falsecount="4"/>
586
+ <line num="559" count="0" type="cond" truecount="0" falsecount="3"/>
587
+ <line num="560" count="0" type="stmt"/>
588
+ <line num="562" count="0" type="stmt"/>
589
+ <line num="563" count="0" type="stmt"/>
590
+ <line num="564" count="0" type="stmt"/>
591
+ <line num="565" count="0" type="stmt"/>
592
+ <line num="566" count="0" type="stmt"/>
593
+ <line num="567" count="0" type="stmt"/>
594
+ <line num="568" count="0" type="cond" truecount="0" falsecount="5"/>
595
+ <line num="569" count="0" type="stmt"/>
596
+ <line num="570" count="0" type="stmt"/>
597
+ <line num="573" count="0" type="stmt"/>
598
+ <line num="574" count="0" type="cond" truecount="0" falsecount="4"/>
599
+ <line num="578" count="0" type="stmt"/>
600
+ <line num="580" count="0" type="stmt"/>
601
+ <line num="584" count="0" type="stmt"/>
602
+ <line num="588" count="0" type="stmt"/>
603
+ <line num="592" count="0" type="stmt"/>
604
+ <line num="593" count="0" type="cond" truecount="0" falsecount="1"/>
605
+ <line num="594" count="0" type="cond" truecount="0" falsecount="6"/>
606
+ <line num="595" count="0" type="stmt"/>
607
+ <line num="596" count="0" type="stmt"/>
608
+ <line num="600" count="0" type="stmt"/>
609
+ <line num="601" count="0" type="stmt"/>
610
+ <line num="602" count="0" type="stmt"/>
611
+ <line num="603" count="0" type="stmt"/>
612
+ <line num="606" count="0" type="cond" truecount="0" falsecount="2"/>
613
+ <line num="607" count="0" type="stmt"/>
614
+ <line num="608" count="0" type="stmt"/>
615
+ <line num="618" count="0" type="cond" truecount="0" falsecount="2"/>
616
+ <line num="619" count="0" type="cond" truecount="0" falsecount="4"/>
617
+ <line num="620" count="0" type="stmt"/>
618
+ <line num="622" count="0" type="cond" truecount="0" falsecount="4"/>
619
+ <line num="623" count="0" type="stmt"/>
620
+ <line num="628" count="0" type="stmt"/>
621
+ <line num="629" count="0" type="cond" truecount="0" falsecount="2"/>
622
+ </file>
623
+ <file name="Tabs.vue" path="/data/magic/tmagic-editor/packages/form/src/containers/Tabs.vue">
624
+ <metrics statements="60" coveredstatements="25" conditionals="45" coveredconditionals="1" methods="16" coveredmethods="7"/>
625
+ <line num="38" count="17" type="stmt"/>
626
+ <line num="39" count="17" type="stmt"/>
627
+ <line num="42" count="17" type="stmt"/>
628
+ <line num="44" count="17" type="stmt"/>
629
+ <line num="45" count="3" type="stmt"/>
630
+ <line num="46" count="1" type="stmt"/>
631
+ <line num="48" count="1" type="cond" truecount="0" falsecount="5"/>
632
+ <line num="49" count="1" type="cond" truecount="0" falsecount="1"/>
633
+ <line num="50" count="1" type="cond" truecount="0" falsecount="1"/>
634
+ <line num="52" count="1" type="stmt"/>
635
+ <line num="55" count="17" type="stmt"/>
636
+ <line num="56" count="0" type="stmt"/>
637
+ <line num="59" count="0" type="stmt"/>
638
+ <line num="61" count="0" type="cond" truecount="0" falsecount="1"/>
639
+ <line num="62" count="0" type="cond" truecount="0" falsecount="4"/>
640
+ <line num="65" count="0" type="stmt"/>
641
+ <line num="66" count="0" type="cond" truecount="0" falsecount="3"/>
642
+ <line num="67" count="0" type="cond" truecount="0" falsecount="4"/>
643
+ <line num="71" count="17" type="stmt"/>
644
+ <line num="80" count="0" type="stmt"/>
645
+ <line num="85" count="0" type="stmt"/>
646
+ <line num="95" count="0" type="stmt"/>
647
+ <line num="99" count="1" type="stmt"/>
648
+ <line num="100" count="1" type="stmt"/>
649
+ <line num="101" count="1" type="stmt"/>
650
+ <line num="103" count="1" type="stmt"/>
651
+ <line num="104" count="1" type="cond" truecount="0" falsecount="1"/>
652
+ <line num="105" count="0" type="cond" truecount="0" falsecount="1"/>
653
+ <line num="106" count="0" type="cond" truecount="0" falsecount="2"/>
654
+ <line num="108" count="1" type="stmt"/>
655
+ <line num="111" count="4" type="stmt"/>
656
+ <line num="113" count="1" type="stmt"/>
657
+ <line num="114" count="1" type="cond" truecount="0" falsecount="1"/>
658
+ <line num="115" count="0" type="stmt"/>
659
+ <line num="122" count="1" type="stmt"/>
660
+ <line num="131" count="4" type="cond" truecount="1" falsecount="1"/>
661
+ <line num="133" count="0" type="stmt"/>
662
+ <line num="136" count="0" type="cond" truecount="0" falsecount="1"/>
663
+ <line num="138" count="0" type="cond" truecount="0" falsecount="2"/>
664
+ <line num="139" count="0" type="stmt"/>
665
+ <line num="140" count="0" type="cond" truecount="0" falsecount="1"/>
666
+ <line num="141" count="0" type="stmt"/>
667
+ <line num="142" count="0" type="stmt"/>
668
+ <line num="143" count="0" type="stmt"/>
669
+ <line num="145" count="0" type="stmt"/>
670
+ <line num="146" count="0" type="cond" truecount="0" falsecount="4"/>
671
+ <line num="150" count="0" type="cond" truecount="0" falsecount="1"/>
672
+ <line num="152" count="0" type="cond" truecount="0" falsecount="2"/>
673
+ <line num="153" count="0" type="stmt"/>
674
+ <line num="155" count="0" type="stmt"/>
675
+ <line num="158" count="0" type="cond" truecount="0" falsecount="3"/>
676
+ <line num="159" count="0" type="stmt"/>
677
+ <line num="160" count="0" type="stmt"/>
678
+ <line num="163" count="0" type="stmt"/>
679
+ <line num="164" count="0" type="cond" truecount="0" falsecount="4"/>
680
+ <line num="167" count="2" type="stmt"/>
681
+ <line num="170" count="0" type="stmt"/>
682
+ <line num="171" count="0" type="cond" truecount="0" falsecount="1"/>
683
+ <line num="172" count="0" type="stmt"/>
684
+ <line num="179" count="17" type="stmt"/>
685
+ </file>
686
+ </package>
687
+ <package name="src.fields">
688
+ <metrics statements="478" coveredstatements="227" conditionals="366" coveredconditionals="90" methods="101" coveredmethods="41"/>
689
+ <file name="Cascader.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Cascader.vue">
690
+ <metrics statements="46" coveredstatements="5" conditionals="41" coveredconditionals="0" methods="8" coveredmethods="0"/>
691
+ <line num="20" count="17" type="stmt"/>
692
+ <line num="34" count="17" type="stmt"/>
693
+ <line num="35" count="17" type="stmt"/>
694
+ <line num="36" count="17" type="stmt"/>
695
+ <line num="38" count="17" type="stmt"/>
696
+ <line num="51" count="0" type="stmt"/>
697
+ <line num="52" count="0" type="stmt"/>
698
+ <line num="53" count="0" type="stmt"/>
699
+ <line num="55" count="0" type="stmt"/>
700
+ <line num="57" count="0" type="stmt"/>
701
+ <line num="59" count="0" type="stmt"/>
702
+ <line num="60" count="0" type="stmt"/>
703
+ <line num="62" count="0" type="cond" truecount="0" falsecount="2"/>
704
+ <line num="63" count="0" type="stmt"/>
705
+ <line num="65" count="0" type="stmt"/>
706
+ <line num="66" count="0" type="stmt"/>
707
+ <line num="67" count="0" type="stmt"/>
708
+ <line num="68" count="0" type="cond" truecount="0" falsecount="1"/>
709
+ <line num="69" count="0" type="stmt"/>
710
+ <line num="71" count="0" type="stmt"/>
711
+ <line num="78" count="0" type="cond" truecount="0" falsecount="3"/>
712
+ <line num="79" count="0" type="cond" truecount="0" falsecount="4"/>
713
+ <line num="80" count="0" type="stmt"/>
714
+ <line num="86" count="0" type="stmt"/>
715
+ <line num="89" count="0" type="stmt"/>
716
+ <line num="91" count="0" type="stmt"/>
717
+ <line num="92" count="0" type="cond" truecount="0" falsecount="7"/>
718
+ <line num="93" count="0" type="stmt"/>
719
+ <line num="98" count="0" type="cond" truecount="0" falsecount="5"/>
720
+ <line num="99" count="0" type="stmt"/>
721
+ <line num="101" count="0" type="stmt"/>
722
+ <line num="103" count="0" type="cond" truecount="0" falsecount="4"/>
723
+ <line num="104" count="0" type="stmt"/>
724
+ <line num="107" count="0" type="stmt"/>
725
+ <line num="108" count="0" type="cond" truecount="0" falsecount="5"/>
726
+ <line num="109" count="0" type="stmt"/>
727
+ <line num="110" count="0" type="stmt"/>
728
+ <line num="115" count="0" type="stmt"/>
729
+ <line num="118" count="0" type="stmt"/>
730
+ <line num="132" count="0" type="cond" truecount="0" falsecount="1"/>
731
+ <line num="133" count="0" type="stmt"/>
732
+ <line num="134" count="0" type="stmt"/>
733
+ <line num="135" count="0" type="stmt"/>
734
+ <line num="138" count="0" type="cond" truecount="0" falsecount="1"/>
735
+ <line num="139" count="0" type="stmt"/>
736
+ <line num="142" count="0" type="stmt"/>
737
+ </file>
738
+ <file name="Checkbox.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Checkbox.vue">
739
+ <metrics statements="18" coveredstatements="13" conditionals="6" coveredconditionals="2" methods="4" coveredmethods="3"/>
740
+ <line num="14" count="17" type="stmt"/>
741
+ <line num="17" count="17" type="stmt"/>
742
+ <line num="18" count="17" type="stmt"/>
743
+ <line num="20" count="17" type="stmt"/>
744
+ <line num="33" count="1" type="stmt"/>
745
+ <line num="34" count="1" type="stmt"/>
746
+ <line num="36" count="1" type="stmt"/>
747
+ <line num="38" count="1" type="cond" truecount="1" falsecount="1"/>
748
+ <line num="39" count="1" type="cond" truecount="0" falsecount="1"/>
749
+ <line num="40" count="0" type="stmt"/>
750
+ <line num="43" count="0" type="stmt"/>
751
+ <line num="46" count="1" type="stmt"/>
752
+ <line num="50" count="1" type="cond" truecount="1" falsecount="1"/>
753
+ <line num="51" count="1" type="cond" truecount="0" falsecount="1"/>
754
+ <line num="52" count="0" type="stmt"/>
755
+ <line num="55" count="0" type="stmt"/>
756
+ <line num="58" count="1" type="stmt"/>
757
+ <line num="62" count="0" type="stmt"/>
758
+ </file>
759
+ <file name="CheckboxGroup.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/CheckboxGroup.vue">
760
+ <metrics statements="10" coveredstatements="9" conditionals="3" coveredconditionals="3" methods="2" coveredmethods="1"/>
761
+ <line num="10" count="17" type="stmt"/>
762
+ <line num="13" count="17" type="stmt"/>
763
+ <line num="14" count="17" type="stmt"/>
764
+ <line num="16" count="17" type="stmt"/>
765
+ <line num="29" count="2" type="stmt"/>
766
+ <line num="30" count="2" type="stmt"/>
767
+ <line num="33" count="2" type="cond" truecount="3" falsecount="0"/>
768
+ <line num="35" count="1" type="stmt"/>
769
+ <line num="37" count="2" type="stmt"/>
770
+ <line num="39" count="0" type="stmt"/>
771
+ </file>
772
+ <file name="ColorPicker.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/ColorPicker.vue">
773
+ <metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
774
+ <line num="14" count="34" type="stmt"/>
775
+ <line num="17" count="17" type="stmt"/>
776
+ <line num="18" count="17" type="stmt"/>
777
+ <line num="19" count="17" type="stmt"/>
778
+ <line num="35" count="2" type="stmt"/>
779
+ <line num="37" count="2" type="stmt"/>
780
+ </file>
781
+ <file name="Date.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Date.vue">
782
+ <metrics statements="11" coveredstatements="11" conditionals="3" coveredconditionals="1" methods="3" coveredmethods="3"/>
783
+ <line num="17" count="17" type="stmt"/>
784
+ <line num="19" count="17" type="stmt"/>
785
+ <line num="22" count="17" type="stmt"/>
786
+ <line num="23" count="17" type="stmt"/>
787
+ <line num="25" count="17" type="stmt"/>
788
+ <line num="38" count="3" type="stmt"/>
789
+ <line num="39" count="3" type="stmt"/>
790
+ <line num="41" count="3" type="cond" truecount="1" falsecount="2"/>
791
+ <line num="42" count="3" type="stmt"/>
792
+ <line num="43" count="3" type="stmt"/>
793
+ <line num="46" count="1" type="stmt"/>
794
+ </file>
795
+ <file name="DateTime.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/DateTime.vue">
796
+ <metrics statements="14" coveredstatements="14" conditionals="7" coveredconditionals="6" methods="2" coveredmethods="2"/>
797
+ <line num="18" count="17" type="stmt"/>
798
+ <line num="20" count="17" type="stmt"/>
799
+ <line num="23" count="17" type="stmt"/>
800
+ <line num="24" count="17" type="stmt"/>
801
+ <line num="26" count="17" type="stmt"/>
802
+ <line num="39" count="5" type="stmt"/>
803
+ <line num="40" count="5" type="stmt"/>
804
+ <line num="42" count="5" type="cond" truecount="3" falsecount="1"/>
805
+ <line num="43" count="5" type="cond" truecount="1" falsecount="0"/>
806
+ <line num="44" count="5" type="cond" truecount="2" falsecount="0"/>
807
+ <line num="45" count="1" type="stmt"/>
808
+ <line num="47" count="4" type="stmt"/>
809
+ <line num="51" count="5" type="stmt"/>
810
+ <line num="54" count="1" type="stmt"/>
811
+ </file>
812
+ <file name="Daterange.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Daterange.vue">
813
+ <metrics statements="24" coveredstatements="15" conditionals="27" coveredconditionals="11" methods="6" coveredmethods="2"/>
814
+ <line num="18" count="17" type="stmt"/>
815
+ <line num="20" count="17" type="stmt"/>
816
+ <line num="23" count="17" type="stmt"/>
817
+ <line num="24" count="17" type="stmt"/>
818
+ <line num="26" count="17" type="stmt"/>
819
+ <line num="39" count="2" type="stmt"/>
820
+ <line num="40" count="2" type="stmt"/>
821
+ <line num="43" count="2" type="stmt"/>
822
+ <line num="44" count="2" type="stmt"/>
823
+ <line num="46" count="2" type="cond" truecount="1" falsecount="0"/>
824
+ <line num="47" count="2" type="cond" truecount="6" falsecount="0"/>
825
+ <line num="48" count="2" type="cond" truecount="3" falsecount="1"/>
826
+ <line num="49" count="1" type="cond" truecount="1" falsecount="2"/>
827
+ <line num="50" count="0" type="stmt"/>
828
+ <line num="54" count="2" type="stmt"/>
829
+ <line num="55" count="0" type="cond" truecount="0" falsecount="8"/>
830
+ <line num="56" count="0" type="stmt"/>
831
+ <line num="57" count="0" type="cond" truecount="0" falsecount="1"/>
832
+ <line num="58" count="0" type="stmt"/>
833
+ <line num="61" count="0" type="cond" truecount="0" falsecount="4"/>
834
+ <line num="62" count="0" type="stmt"/>
835
+ <line num="66" count="2" type="stmt"/>
836
+ <line num="69" count="0" type="stmt"/>
837
+ <line num="70" count="0" type="stmt"/>
838
+ </file>
839
+ <file name="Display.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Display.vue">
840
+ <metrics statements="8" coveredstatements="8" conditionals="7" coveredconditionals="5" methods="1" coveredmethods="1"/>
841
+ <line num="6" count="34" type="stmt"/>
842
+ <line num="9" count="17" type="stmt"/>
843
+ <line num="10" count="17" type="stmt"/>
844
+ <line num="12" count="17" type="stmt"/>
845
+ <line num="26" count="2" type="cond" truecount="1" falsecount="2"/>
846
+ <line num="28" count="2" type="cond" truecount="4" falsecount="0"/>
847
+ <line num="30" count="1" type="stmt"/>
848
+ <line num="33" count="2" type="stmt"/>
849
+ </file>
850
+ <file name="DynamicField.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/DynamicField.vue">
851
+ <metrics statements="32" coveredstatements="5" conditionals="23" coveredconditionals="0" methods="8" coveredmethods="0"/>
852
+ <line num="26" count="17" type="stmt"/>
853
+ <line num="29" count="17" type="stmt"/>
854
+ <line num="30" count="17" type="stmt"/>
855
+ <line num="31" count="17" type="stmt"/>
856
+ <line num="33" count="17" type="stmt"/>
857
+ <line num="46" count="0" type="stmt"/>
858
+ <line num="47" count="0" type="stmt"/>
859
+ <line num="49" count="0" type="stmt"/>
860
+ <line num="50" count="0" type="stmt"/>
861
+ <line num="53" count="0" type="stmt"/>
862
+ <line num="57" count="0" type="stmt"/>
863
+ <line num="58" count="0" type="cond" truecount="0" falsecount="3"/>
864
+ <line num="59" count="0" type="stmt"/>
865
+ <line num="60" count="0" type="stmt"/>
866
+ <line num="61" count="0" type="stmt"/>
867
+ <line num="62" count="0" type="stmt"/>
868
+ <line num="63" count="0" type="cond" truecount="0" falsecount="3"/>
869
+ <line num="64" count="0" type="cond" truecount="0" falsecount="6"/>
870
+ <line num="65" count="0" type="cond" truecount="0" falsecount="3"/>
871
+ <line num="66" count="0" type="stmt"/>
872
+ <line num="67" count="0" type="stmt"/>
873
+ <line num="69" count="0" type="stmt"/>
874
+ <line num="70" count="0" type="cond" truecount="0" falsecount="2"/>
875
+ <line num="74" count="0" type="stmt"/>
876
+ <line num="75" count="0" type="cond" truecount="0" falsecount="4"/>
877
+ <line num="77" count="0" type="cond" truecount="0" falsecount="1"/>
878
+ <line num="78" count="0" type="stmt"/>
879
+ <line num="86" count="0" type="stmt"/>
880
+ <line num="87" count="0" type="cond" truecount="0" falsecount="1"/>
881
+ <line num="88" count="0" type="stmt"/>
882
+ <line num="92" count="0" type="stmt"/>
883
+ <line num="100" count="0" type="stmt"/>
884
+ </file>
885
+ <file name="Hidden.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Hidden.vue">
886
+ <metrics statements="6" coveredstatements="6" conditionals="3" coveredconditionals="3" methods="1" coveredmethods="1"/>
887
+ <line num="6" count="34" type="stmt"/>
888
+ <line num="9" count="17" type="stmt"/>
889
+ <line num="10" count="17" type="stmt"/>
890
+ <line num="12" count="17" type="stmt"/>
891
+ <line num="26" count="2" type="cond" truecount="3" falsecount="0"/>
892
+ <line num="28" count="2" type="stmt"/>
893
+ </file>
894
+ <file name="Link.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Link.vue">
895
+ <metrics statements="34" coveredstatements="30" conditionals="30" coveredconditionals="17" methods="8" coveredmethods="7"/>
896
+ <line num="20" count="17" type="stmt"/>
897
+ <line num="24" count="17" type="stmt"/>
898
+ <line num="25" count="17" type="stmt"/>
899
+ <line num="27" count="17" type="stmt"/>
900
+ <line num="40" count="5" type="stmt"/>
901
+ <line num="41" count="5" type="stmt"/>
902
+ <line num="43" count="5" type="stmt"/>
903
+ <line num="44" count="5" type="stmt"/>
904
+ <line num="45" count="5" type="stmt"/>
905
+ <line num="47" count="5" type="stmt"/>
906
+ <line num="48" count="3" type="cond" truecount="3" falsecount="0"/>
907
+ <line num="49" count="1" type="stmt"/>
908
+ <line num="51" count="2" type="cond" truecount="1" falsecount="5"/>
909
+ <line num="54" count="5" type="stmt"/>
910
+ <line num="55" count="1" type="cond" truecount="5" falsecount="1"/>
911
+ <line num="58" count="5" type="stmt"/>
912
+ <line num="67" count="1" type="cond" truecount="0" falsecount="1"/>
913
+ <line num="68" count="0" type="stmt"/>
914
+ <line num="73" count="1" type="stmt"/>
915
+ <line num="77" count="0" type="cond" truecount="0" falsecount="1"/>
916
+ <line num="78" count="0" type="stmt"/>
917
+ <line num="80" count="0" type="stmt"/>
918
+ <line num="84" count="4" type="cond" truecount="1" falsecount="0"/>
919
+ <line num="85" count="1" type="cond" truecount="1" falsecount="1"/>
920
+ <line num="87" count="3" type="cond" truecount="1" falsecount="0"/>
921
+ <line num="88" count="1" type="stmt"/>
922
+ <line num="90" count="2" type="stmt"/>
923
+ <line num="97" count="1" type="stmt"/>
924
+ <line num="98" count="1" type="cond" truecount="2" falsecount="0"/>
925
+ <line num="102" count="1" type="cond" truecount="1" falsecount="0"/>
926
+ <line num="103" count="1" type="stmt"/>
927
+ <line num="104" count="1" type="stmt"/>
928
+ <line num="105" count="1" type="stmt"/>
929
+ <line num="107" count="1" type="cond" truecount="2" falsecount="0"/>
930
+ </file>
931
+ <file name="Number.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Number.vue">
932
+ <metrics statements="11" coveredstatements="11" conditionals="4" coveredconditionals="3" methods="3" coveredmethods="3"/>
933
+ <line num="19" count="17" type="stmt"/>
934
+ <line num="22" count="17" type="stmt"/>
935
+ <line num="23" count="17" type="stmt"/>
936
+ <line num="24" count="17" type="stmt"/>
937
+ <line num="37" count="4" type="stmt"/>
938
+ <line num="38" count="4" type="stmt"/>
939
+ <line num="40" count="4" type="stmt"/>
940
+ <line num="41" count="4" type="stmt"/>
941
+ <line num="44" count="4" type="stmt"/>
942
+ <line num="47" count="4" type="stmt"/>
943
+ <line num="48" count="4" type="cond" truecount="3" falsecount="1"/>
944
+ </file>
945
+ <file name="RadioGroup.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/RadioGroup.vue">
946
+ <metrics statements="8" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
947
+ <line num="8" count="17" type="stmt"/>
948
+ <line num="10" count="17" type="stmt"/>
949
+ <line num="11" count="17" type="stmt"/>
950
+ <line num="13" count="17" type="stmt"/>
951
+ <line num="26" count="2" type="stmt"/>
952
+ <line num="27" count="2" type="stmt"/>
953
+ <line num="28" count="2" type="stmt"/>
954
+ <line num="29" count="0" type="stmt"/>
955
+ </file>
956
+ <file name="Select.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Select.vue">
957
+ <metrics statements="159" coveredstatements="5" conditionals="155" coveredconditionals="0" methods="32" coveredmethods="0"/>
958
+ <line num="48" count="17" type="stmt"/>
959
+ <line num="52" count="17" type="stmt"/>
960
+ <line num="53" count="17" type="stmt"/>
961
+ <line num="54" count="17" type="stmt"/>
962
+ <line num="56" count="17" type="stmt"/>
963
+ <line num="69" count="0" type="stmt"/>
964
+ <line num="70" count="0" type="cond" truecount="0" falsecount="1"/>
965
+ <line num="71" count="0" type="stmt"/>
966
+ <line num="73" count="0" type="stmt"/>
967
+ <line num="74" count="0" type="stmt"/>
968
+ <line num="75" count="0" type="stmt"/>
969
+ <line num="76" count="0" type="stmt"/>
970
+ <line num="77" count="0" type="stmt"/>
971
+ <line num="78" count="0" type="stmt"/>
972
+ <line num="79" count="0" type="stmt"/>
973
+ <line num="80" count="0" type="stmt"/>
974
+ <line num="81" count="0" type="stmt"/>
975
+ <line num="82" count="0" type="stmt"/>
976
+ <line num="83" count="0" type="stmt"/>
977
+ <line num="84" count="0" type="stmt"/>
978
+ <line num="86" count="0" type="stmt"/>
979
+ <line num="87" count="0" type="cond" truecount="0" falsecount="1"/>
980
+ <line num="88" count="0" type="cond" truecount="0" falsecount="2"/>
981
+ <line num="89" count="0" type="stmt"/>
982
+ <line num="92" count="0" type="stmt"/>
983
+ <line num="95" count="0" type="stmt"/>
984
+ <line num="96" count="0" type="stmt"/>
985
+ <line num="97" count="0" type="stmt"/>
986
+ <line num="98" count="0" type="stmt"/>
987
+ <line num="100" count="0" type="stmt"/>
988
+ <line num="106" count="0" type="stmt"/>
989
+ <line num="107" count="0" type="cond" truecount="0" falsecount="1"/>
990
+ <line num="109" count="0" type="cond" truecount="0" falsecount="1"/>
991
+ <line num="110" count="0" type="stmt"/>
992
+ <line num="113" count="0" type="stmt"/>
993
+ <line num="115" count="0" type="stmt"/>
994
+ <line num="117" count="0" type="stmt"/>
995
+ <line num="118" count="0" type="stmt"/>
996
+ <line num="119" count="0" type="stmt"/>
997
+ <line num="121" count="0" type="stmt"/>
998
+ <line num="131" count="0" type="cond" truecount="0" falsecount="1"/>
999
+ <line num="132" count="0" type="cond" truecount="0" falsecount="1"/>
1000
+ <line num="133" count="0" type="stmt"/>
1001
+ <line num="140" count="0" type="stmt"/>
1002
+ <line num="141" count="0" type="stmt"/>
1003
+ <line num="142" count="0" type="stmt"/>
1004
+ <line num="143" count="0" type="stmt"/>
1005
+ <line num="146" count="0" type="stmt"/>
1006
+ <line num="148" count="0" type="cond" truecount="0" falsecount="1"/>
1007
+ <line num="149" count="0" type="stmt"/>
1008
+ <line num="155" count="0" type="cond" truecount="0" falsecount="5"/>
1009
+ <line num="156" count="0" type="cond" truecount="0" falsecount="2"/>
1010
+ <line num="159" count="0" type="stmt"/>
1011
+ <line num="161" count="0" type="cond" truecount="0" falsecount="1"/>
1012
+ <line num="162" count="0" type="stmt"/>
1013
+ <line num="169" count="0" type="stmt"/>
1014
+ <line num="171" count="0" type="cond" truecount="0" falsecount="1"/>
1015
+ <line num="172" count="0" type="stmt"/>
1016
+ <line num="175" count="0" type="stmt"/>
1017
+ <line num="176" count="0" type="cond" truecount="0" falsecount="1"/>
1018
+ <line num="177" count="0" type="cond" truecount="0" falsecount="2"/>
1019
+ <line num="178" count="0" type="stmt"/>
1020
+ <line num="179" count="0" type="cond" truecount="0" falsecount="1"/>
1021
+ <line num="180" count="0" type="stmt"/>
1022
+ <line num="184" count="0" type="stmt"/>
1023
+ <line num="187" count="0" type="stmt"/>
1024
+ <line num="188" count="0" type="cond" truecount="0" falsecount="3"/>
1025
+ <line num="189" count="0" type="stmt"/>
1026
+ <line num="190" count="0" type="cond" truecount="0" falsecount="4"/>
1027
+ <line num="191" count="0" type="cond" truecount="0" falsecount="3"/>
1028
+ <line num="192" count="0" type="stmt"/>
1029
+ <line num="197" count="0" type="cond" truecount="0" falsecount="2"/>
1030
+ <line num="200" count="0" type="stmt"/>
1031
+ <line num="201" count="0" type="cond" truecount="0" falsecount="1"/>
1032
+ <line num="203" count="0" type="stmt"/>
1033
+ <line num="204" count="0" type="stmt"/>
1034
+ <line num="205" count="0" type="stmt"/>
1035
+ <line num="207" count="0" type="stmt"/>
1036
+ <line num="209" count="0" type="cond" truecount="0" falsecount="1"/>
1037
+ <line num="210" count="0" type="cond" truecount="0" falsecount="3"/>
1038
+ <line num="211" count="0" type="stmt"/>
1039
+ <line num="212" count="0" type="stmt"/>
1040
+ <line num="216" count="0" type="stmt"/>
1041
+ <line num="217" count="0" type="stmt"/>
1042
+ <line num="221" count="0" type="cond" truecount="0" falsecount="3"/>
1043
+ <line num="222" count="0" type="stmt"/>
1044
+ <line num="223" count="0" type="stmt"/>
1045
+ <line num="226" count="0" type="stmt"/>
1046
+ <line num="229" count="0" type="stmt"/>
1047
+ <line num="230" count="0" type="cond" truecount="0" falsecount="1"/>
1048
+ <line num="232" count="0" type="stmt"/>
1049
+ <line num="233" count="0" type="stmt"/>
1050
+ <line num="235" count="0" type="stmt"/>
1051
+ <line num="237" count="0" type="stmt"/>
1052
+ <line num="238" count="0" type="cond" truecount="0" falsecount="1"/>
1053
+ <line num="239" count="0" type="stmt"/>
1054
+ <line num="242" count="0" type="cond" truecount="0" falsecount="1"/>
1055
+ <line num="243" count="0" type="cond" truecount="0" falsecount="4"/>
1056
+ <line num="246" count="0" type="stmt"/>
1057
+ <line num="256" count="0" type="cond" truecount="0" falsecount="5"/>
1058
+ <line num="257" count="0" type="cond" truecount="0" falsecount="2"/>
1059
+ <line num="260" count="0" type="stmt"/>
1060
+ <line num="261" count="0" type="stmt"/>
1061
+ <line num="263" count="0" type="stmt"/>
1062
+ <line num="264" count="0" type="cond" truecount="0" falsecount="1"/>
1063
+ <line num="265" count="0" type="cond" truecount="0" falsecount="1"/>
1064
+ <line num="266" count="0" type="stmt"/>
1065
+ <line num="269" count="0" type="cond" truecount="0" falsecount="2"/>
1066
+ <line num="270" count="0" type="stmt"/>
1067
+ <line num="271" count="0" type="cond" truecount="0" falsecount="1"/>
1068
+ <line num="272" count="0" type="stmt"/>
1069
+ <line num="276" count="0" type="stmt"/>
1070
+ <line num="279" count="0" type="cond" truecount="0" falsecount="2"/>
1071
+ <line num="280" count="0" type="stmt"/>
1072
+ <line num="281" count="0" type="cond" truecount="0" falsecount="4"/>
1073
+ <line num="283" count="0" type="cond" truecount="0" falsecount="2"/>
1074
+ <line num="292" count="0" type="stmt"/>
1075
+ <line num="300" count="0" type="cond" truecount="0" falsecount="2"/>
1076
+ <line num="301" count="0" type="stmt"/>
1077
+ <line num="302" count="0" type="stmt"/>
1078
+ <line num="304" count="0" type="stmt"/>
1079
+ <line num="308" count="0" type="cond" truecount="0" falsecount="1"/>
1080
+ <line num="309" count="0" type="stmt"/>
1081
+ <line num="310" count="0" type="cond" truecount="0" falsecount="1"/>
1082
+ <line num="311" count="0" type="stmt"/>
1083
+ <line num="312" count="0" type="cond" truecount="0" falsecount="3"/>
1084
+ <line num="313" count="0" type="stmt"/>
1085
+ <line num="314" count="0" type="stmt"/>
1086
+ <line num="320" count="0" type="cond" truecount="0" falsecount="2"/>
1087
+ <line num="322" count="0" type="cond" truecount="0" falsecount="4"/>
1088
+ <line num="323" count="0" type="stmt"/>
1089
+ <line num="324" count="0" type="cond" truecount="0" falsecount="1"/>
1090
+ <line num="325" count="0" type="stmt"/>
1091
+ <line num="327" count="0" type="cond" truecount="0" falsecount="1"/>
1092
+ <line num="328" count="0" type="stmt"/>
1093
+ <line num="330" count="0" type="cond" truecount="0" falsecount="1"/>
1094
+ <line num="331" count="0" type="stmt"/>
1095
+ <line num="333" count="0" type="stmt"/>
1096
+ <line num="334" count="0" type="stmt"/>
1097
+ <line num="335" count="0" type="stmt"/>
1098
+ <line num="336" count="0" type="stmt"/>
1099
+ <line num="340" count="0" type="stmt"/>
1100
+ <line num="351" count="0" type="stmt"/>
1101
+ <line num="355" count="0" type="stmt"/>
1102
+ <line num="359" count="0" type="cond" truecount="0" falsecount="1"/>
1103
+ <line num="361" count="0" type="cond" truecount="0" falsecount="1"/>
1104
+ <line num="362" count="0" type="cond" truecount="0" falsecount="3"/>
1105
+ <line num="363" count="0" type="stmt"/>
1106
+ <line num="364" count="0" type="stmt"/>
1107
+ <line num="365" count="0" type="stmt"/>
1108
+ <line num="366" count="0" type="cond" truecount="0" falsecount="7"/>
1109
+ <line num="367" count="0" type="stmt"/>
1110
+ <line num="372" count="0" type="cond" truecount="0" falsecount="1"/>
1111
+ <line num="373" count="0" type="stmt"/>
1112
+ <line num="374" count="0" type="stmt"/>
1113
+ <line num="375" count="0" type="stmt"/>
1114
+ <line num="377" count="0" type="cond" truecount="0" falsecount="1"/>
1115
+ <line num="378" count="0" type="stmt"/>
1116
+ <line num="379" count="0" type="cond" truecount="0" falsecount="4"/>
1117
+ </file>
1118
+ <file name="Switch.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Switch.vue">
1119
+ <metrics statements="19" coveredstatements="19" conditionals="9" coveredconditionals="7" methods="5" coveredmethods="5"/>
1120
+ <line num="14" count="17" type="stmt"/>
1121
+ <line num="17" count="17" type="stmt"/>
1122
+ <line num="18" count="17" type="stmt"/>
1123
+ <line num="19" count="17" type="stmt"/>
1124
+ <line num="32" count="3" type="stmt"/>
1125
+ <line num="33" count="3" type="stmt"/>
1126
+ <line num="35" count="3" type="stmt"/>
1127
+ <line num="36" count="3" type="cond" truecount="1" falsecount="2"/>
1128
+ <line num="38" count="3" type="cond" truecount="2" falsecount="0"/>
1129
+ <line num="39" count="2" type="cond" truecount="1" falsecount="0"/>
1130
+ <line num="40" count="1" type="stmt"/>
1131
+ <line num="43" count="1" type="stmt"/>
1132
+ <line num="46" count="1" type="stmt"/>
1133
+ <line num="49" count="3" type="cond" truecount="2" falsecount="0"/>
1134
+ <line num="50" count="2" type="cond" truecount="1" falsecount="0"/>
1135
+ <line num="51" count="1" type="stmt"/>
1136
+ <line num="54" count="1" type="stmt"/>
1137
+ <line num="57" count="1" type="stmt"/>
1138
+ <line num="60" count="2" type="stmt"/>
1139
+ </file>
1140
+ <file name="Text.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Text.vue">
1141
+ <metrics statements="50" coveredstatements="42" conditionals="44" coveredconditionals="29" methods="7" coveredmethods="4"/>
1142
+ <line num="27" count="17" type="stmt"/>
1143
+ <line num="30" count="17" type="stmt"/>
1144
+ <line num="31" count="17" type="stmt"/>
1145
+ <line num="33" count="17" type="stmt"/>
1146
+ <line num="46" count="13" type="stmt"/>
1147
+ <line num="47" count="13" type="stmt"/>
1148
+ <line num="49" count="13" type="stmt"/>
1149
+ <line num="51" count="13" type="cond" truecount="1" falsecount="2"/>
1150
+ <line num="52" count="13" type="stmt"/>
1151
+ <line num="56" count="0" type="stmt"/>
1152
+ <line num="60" count="0" type="stmt"/>
1153
+ <line num="61" count="0" type="cond" truecount="0" falsecount="4"/>
1154
+ <line num="65" count="1" type="cond" truecount="0" falsecount="1"/>
1155
+ <line num="67" count="1" type="cond" truecount="4" falsecount="1"/>
1156
+ <line num="68" count="1" type="stmt"/>
1157
+ <line num="76" count="8" type="cond" truecount="0" falsecount="1"/>
1158
+ <line num="77" count="8" type="cond" truecount="0" falsecount="1"/>
1159
+ <line num="79" count="8" type="stmt"/>
1160
+ <line num="80" count="8" type="stmt"/>
1161
+ <line num="82" count="8" type="cond" truecount="2" falsecount="1"/>
1162
+ <line num="83" count="0" type="stmt"/>
1163
+ <line num="86" count="8" type="stmt"/>
1164
+ <line num="89" count="8" type="cond" truecount="1" falsecount="1"/>
1165
+ <line num="90" count="8" type="stmt"/>
1166
+ <line num="92" count="0" type="stmt"/>
1167
+ <line num="93" count="0" type="stmt"/>
1168
+ <line num="94" count="0" type="stmt"/>
1169
+ <line num="98" count="8" type="cond" truecount="0" falsecount="1"/>
1170
+ <line num="99" count="0" type="stmt"/>
1171
+ <line num="102" count="8" type="cond" truecount="1" falsecount="1"/>
1172
+ <line num="103" count="8" type="stmt"/>
1173
+ <line num="104" count="8" type="stmt"/>
1174
+ <line num="106" count="8" type="cond" truecount="2" falsecount="0"/>
1175
+ <line num="107" count="4" type="cond" truecount="2" falsecount="0"/>
1176
+ <line num="108" count="1" type="stmt"/>
1177
+ <line num="109" count="3" type="cond" truecount="2" falsecount="0"/>
1178
+ <line num="110" count="1" type="stmt"/>
1179
+ <line num="111" count="2" type="cond" truecount="2" falsecount="0"/>
1180
+ <line num="112" count="1" type="stmt"/>
1181
+ <line num="114" count="1" type="stmt"/>
1182
+ <line num="116" count="4" type="cond" truecount="1" falsecount="0"/>
1183
+ <line num="117" count="4" type="cond" truecount="2" falsecount="0"/>
1184
+ <line num="118" count="1" type="stmt"/>
1185
+ <line num="119" count="3" type="cond" truecount="2" falsecount="0"/>
1186
+ <line num="120" count="1" type="stmt"/>
1187
+ <line num="121" count="2" type="cond" truecount="2" falsecount="0"/>
1188
+ <line num="122" count="1" type="stmt"/>
1189
+ <line num="124" count="1" type="stmt"/>
1190
+ <line num="128" count="8" type="cond" truecount="2" falsecount="0"/>
1191
+ <line num="129" count="8" type="stmt"/>
1192
+ </file>
1193
+ <file name="Textarea.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Textarea.vue">
1194
+ <metrics statements="13" coveredstatements="13" conditionals="4" coveredconditionals="3" methods="5" coveredmethods="5"/>
1195
+ <line num="16" count="17" type="stmt"/>
1196
+ <line num="19" count="17" type="stmt"/>
1197
+ <line num="20" count="17" type="stmt"/>
1198
+ <line num="21" count="17" type="stmt"/>
1199
+ <line num="34" count="1" type="stmt"/>
1200
+ <line num="38" count="1" type="stmt"/>
1201
+ <line num="42" count="1" type="stmt"/>
1202
+ <line num="43" count="1" type="stmt"/>
1203
+ <line num="45" count="1" type="stmt"/>
1204
+ <line num="47" count="1" type="stmt"/>
1205
+ <line num="50" count="1" type="stmt"/>
1206
+ <line num="54" count="1" type="stmt"/>
1207
+ <line num="55" count="1" type="cond" truecount="3" falsecount="1"/>
1208
+ </file>
1209
+ <file name="Time.vue" path="/data/magic/tmagic-editor/packages/form/src/fields/Time.vue">
1210
+ <metrics statements="9" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="3" coveredmethods="2"/>
1211
+ <line num="15" count="17" type="stmt"/>
1212
+ <line num="18" count="17" type="stmt"/>
1213
+ <line num="19" count="17" type="stmt"/>
1214
+ <line num="21" count="17" type="stmt"/>
1215
+ <line num="34" count="1" type="stmt"/>
1216
+ <line num="38" count="1" type="stmt"/>
1217
+ <line num="39" count="1" type="stmt"/>
1218
+ <line num="41" count="1" type="stmt"/>
1219
+ <line num="43" count="0" type="stmt"/>
1220
+ </file>
1221
+ </package>
1222
+ <package name="src.theme">
1223
+ <metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
1224
+ <file name="index.scss" path="/data/magic/tmagic-editor/packages/form/src/theme/index.scss">
1225
+ <metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
1226
+ <line num="1" count="17" type="stmt"/>
1227
+ </file>
1228
+ </package>
1229
+ <package name="src.utils">
1230
+ <metrics statements="112" coveredstatements="107" conditionals="85" coveredconditionals="67" methods="24" coveredmethods="23"/>
1231
+ <file name="config.ts" path="/data/magic/tmagic-editor/packages/form/src/utils/config.ts">
1232
+ <metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
1233
+ <line num="19" count="21" type="stmt"/>
1234
+ <line num="21" count="21" type="stmt"/>
1235
+ <line num="22" count="52" type="stmt"/>
1236
+ <line num="25" count="56" type="stmt"/>
1237
+ <line num="27" count="21" type="stmt"/>
1238
+ </file>
1239
+ <file name="createForm.ts" path="/data/magic/tmagic-editor/packages/form/src/utils/createForm.ts">
1240
+ <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
1241
+ <line num="21" count="1" type="stmt"/>
1242
+ <line num="22" count="2" type="stmt"/>
1243
+ <line num="25" count="1" type="stmt"/>
1244
+ </file>
1245
+ <file name="fieldProps.ts" path="/data/magic/tmagic-editor/packages/form/src/utils/fieldProps.ts">
1246
+ <metrics statements="2" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
1247
+ <line num="21" count="17" type="stmt"/>
1248
+ <line num="25" count="0" type="stmt"/>
1249
+ </file>
1250
+ <file name="form.ts" path="/data/magic/tmagic-editor/packages/form/src/utils/form.ts">
1251
+ <metrics statements="92" coveredstatements="89" conditionals="82" coveredconditionals="65" methods="17" coveredmethods="17"/>
1252
+ <line num="20" count="18" type="stmt"/>
1253
+ <line num="21" count="18" type="stmt"/>
1254
+ <line num="43" count="18" type="stmt"/>
1255
+ <line num="44" count="81" type="cond" truecount="2" falsecount="0"/>
1256
+ <line num="46" count="18" type="stmt"/>
1257
+ <line num="48" count="80" type="cond" truecount="1" falsecount="3"/>
1258
+ <line num="49" count="0" type="stmt"/>
1259
+ <line num="50" count="0" type="cond" truecount="0" falsecount="2"/>
1260
+ <line num="54" count="18" type="stmt"/>
1261
+ <line num="55" count="41" type="cond" truecount="2" falsecount="0"/>
1262
+ <line num="67" count="18" type="stmt"/>
1263
+ <line num="73" count="8" type="cond" truecount="2" falsecount="0"/>
1264
+ <line num="74" count="1" type="stmt"/>
1265
+ <line num="76" count="7" type="stmt"/>
1266
+ <line num="77" count="7" type="cond" truecount="1" falsecount="0"/>
1267
+ <line num="78" count="1" type="stmt"/>
1268
+ <line num="83" count="18" type="stmt"/>
1269
+ <line num="84" count="41" type="stmt"/>
1270
+ <line num="86" count="41" type="cond" truecount="1" falsecount="0"/>
1271
+ <line num="87" count="3" type="cond" truecount="2" falsecount="0"/>
1272
+ <line num="91" count="41" type="cond" truecount="2" falsecount="0"/>
1273
+ <line num="92" count="8" type="stmt"/>
1274
+ <line num="94" count="33" type="stmt"/>
1275
+ <line num="98" count="41" type="cond" truecount="3" falsecount="0"/>
1276
+ <line num="99" count="1" type="cond" truecount="1" falsecount="0"/>
1277
+ <line num="100" count="1" type="cond" truecount="1" falsecount="3"/>
1278
+ <line num="105" count="18" type="stmt"/>
1279
+ <line num="111" count="81" type="stmt"/>
1280
+ <line num="112" count="81" type="stmt"/>
1281
+ <line num="113" count="81" type="stmt"/>
1282
+ <line num="115" count="81" type="cond" truecount="3" falsecount="0"/>
1283
+ <line num="116" count="1" type="cond" truecount="2" falsecount="0"/>
1284
+ <line num="117" count="1" type="stmt"/>
1285
+ <line num="120" count="80" type="stmt"/>
1286
+ <line num="123" count="80" type="cond" truecount="4" falsecount="0"/>
1287
+ <line num="124" count="32" type="cond" truecount="1" falsecount="0"/>
1288
+ <line num="125" count="32" type="cond" truecount="1" falsecount="1"/>
1289
+ <line num="126" count="0" type="stmt"/>
1290
+ <line num="128" count="32" type="cond" truecount="2" falsecount="0"/>
1291
+ <line num="132" count="32" type="stmt"/>
1292
+ <line num="135" count="48" type="cond" truecount="1" falsecount="0"/>
1293
+ <line num="136" count="4" type="cond" truecount="2" falsecount="0"/>
1294
+ <line num="139" count="46" type="cond" truecount="1" falsecount="0"/>
1295
+ <line num="141" count="5" type="stmt"/>
1296
+ <line num="144" count="41" type="stmt"/>
1297
+ <line num="146" count="41" type="stmt"/>
1298
+ <line num="149" count="18" type="stmt"/>
1299
+ <line num="155" count="68" type="cond" truecount="1" falsecount="0"/>
1300
+ <line num="156" count="68" type="stmt"/>
1301
+ <line num="157" count="81" type="stmt"/>
1302
+ <line num="161" count="68" type="stmt"/>
1303
+ <line num="164" count="18" type="stmt"/>
1304
+ <line num="165" count="33" type="cond" truecount="1" falsecount="0"/>
1305
+ <line num="166" count="1" type="stmt"/>
1306
+ <line num="170" count="32" type="cond" truecount="1" falsecount="0"/>
1307
+ <line num="171" count="1" type="stmt"/>
1308
+ <line num="174" count="31" type="cond" truecount="1" falsecount="0"/>
1309
+ <line num="175" count="3" type="stmt"/>
1310
+ <line num="178" count="28" type="cond" truecount="3" falsecount="0"/>
1311
+ <line num="179" count="6" type="stmt"/>
1312
+ <line num="182" count="22" type="cond" truecount="1" falsecount="0"/>
1313
+ <line num="183" count="5" type="stmt"/>
1314
+ <line num="186" count="17" type="cond" truecount="1" falsecount="0"/>
1315
+ <line num="187" count="1" type="stmt"/>
1316
+ <line num="190" count="16" type="stmt"/>
1317
+ <line num="193" count="18" type="stmt"/>
1318
+ <line num="194" count="149" type="cond" truecount="1" falsecount="0"/>
1319
+ <line num="195" count="145" type="stmt"/>
1320
+ <line num="198" count="4" type="stmt"/>
1321
+ <line num="207" count="18" type="stmt"/>
1322
+ <line num="208" count="56" type="cond" truecount="1" falsecount="0"/>
1323
+ <line num="209" count="3" type="stmt"/>
1324
+ <line num="212" count="53" type="cond" truecount="1" falsecount="0"/>
1325
+ <line num="213" count="1" type="stmt"/>
1326
+ <line num="216" count="52" type="stmt"/>
1327
+ <line num="219" count="18" type="cond" truecount="1" falsecount="0"/>
1328
+ <line num="220" count="47" type="stmt"/>
1329
+ <line num="222" count="47" type="cond" truecount="3" falsecount="0"/>
1330
+ <line num="223" count="1" type="stmt"/>
1331
+ <line num="226" count="47" type="stmt"/>
1332
+ <line num="227" count="1" type="cond" truecount="1" falsecount="0"/>
1333
+ <line num="228" count="1" type="stmt"/>
1334
+ <line num="230" count="1" type="stmt"/>
1335
+ <line num="231" count="1" type="stmt"/>
1336
+ <line num="249" count="1" type="stmt"/>
1337
+ <line num="253" count="18" type="stmt"/>
1338
+ <line num="257" count="55" type="cond" truecount="0" falsecount="1"/>
1339
+ <line num="259" count="55" type="stmt"/>
1340
+ <line num="261" count="55" type="stmt"/>
1341
+ <line num="262" count="55" type="cond" truecount="3" falsecount="0"/>
1342
+ <line num="263" count="1" type="stmt"/>
1343
+ <line num="269" count="55" type="cond" truecount="1" falsecount="1"/>
1344
+ </file>
1345
+ <file name="useAddField.ts" path="/data/magic/tmagic-editor/packages/form/src/utils/useAddField.ts">
1346
+ <metrics statements="10" coveredstatements="9" conditionals="3" coveredconditionals="2" methods="3" coveredmethods="3"/>
1347
+ <line num="19" count="17" type="stmt"/>
1348
+ <line num="23" count="17" type="stmt"/>
1349
+ <line num="24" count="48" type="cond" truecount="1" falsecount="0"/>
1350
+ <line num="25" count="45" type="stmt"/>
1351
+ <line num="26" count="45" type="stmt"/>
1352
+ <line num="27" count="45" type="stmt"/>
1353
+ <line num="28" count="45" type="stmt"/>
1354
+ <line num="30" count="45" type="cond" truecount="1" falsecount="1"/>
1355
+ <line num="31" count="45" type="stmt"/>
1356
+ <line num="33" count="0" type="stmt"/>
1357
+ </file>
1358
+ </package>
1359
+ </project>
1360
+ </coverage>