@madgex/design-system 3.0.2 → 3.0.3

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 (109) hide show
  1. package/.eslintignore +2 -0
  2. package/.eslintrc.js +3 -3
  3. package/__tests__/.eslintrc.js +3 -3
  4. package/__tests__/unit/src/components/combobox.spec.js +4 -28
  5. package/__tests__/unit/src/components/notification.spec.js +14 -12
  6. package/__tests__/unit/src/components/popover.spec.js +4 -0
  7. package/__tests__/unit/tasks/css.spec.js +3 -2
  8. package/__tests__/unit/tasks/jsbundle.spec.js +3 -2
  9. package/__tests__/unit/tasks/svgsprite.spec.js +3 -2
  10. package/__tests__/unit/tasks/tokens.spec.js +3 -2
  11. package/coverage/cobertura-coverage.xml +389 -389
  12. package/coverage/components/accordion/accordion.js.html +164 -127
  13. package/coverage/components/accordion/index.html +23 -22
  14. package/coverage/components/button/button.js.html +3 -2
  15. package/coverage/components/button/index.html +3 -2
  16. package/coverage/components/inputs/combobox/combobox.js.html +3 -2
  17. package/coverage/components/inputs/combobox/index.html +3 -2
  18. package/coverage/components/inputs/combobox/vue-components/Combobox.vue.html +55 -54
  19. package/coverage/components/inputs/combobox/vue-components/ListBoxOption.vue.html +9 -8
  20. package/coverage/components/inputs/combobox/vue-components/index.html +21 -20
  21. package/coverage/components/inputs/file-upload/file-upload.js.html +7 -3
  22. package/coverage/components/inputs/file-upload/index.html +3 -2
  23. package/coverage/components/inputs/textarea/character-count.js.html +13 -3
  24. package/coverage/components/inputs/textarea/index.html +3 -2
  25. package/coverage/components/modal/index.html +23 -22
  26. package/coverage/components/modal/modal.js.html +118 -111
  27. package/coverage/components/notification/index.html +3 -2
  28. package/coverage/components/notification/notification.js.html +13 -3
  29. package/coverage/components/popover/index.html +3 -2
  30. package/coverage/components/popover/popover.js.html +3 -2
  31. package/coverage/components/switch-state/index.html +19 -18
  32. package/coverage/components/switch-state/switch-state.js.html +22 -21
  33. package/coverage/components/tabs/index.html +3 -2
  34. package/coverage/components/tabs/tabs.js.html +37 -3
  35. package/coverage/favicon.png +0 -0
  36. package/coverage/index.html +52 -51
  37. package/coverage/js/common.js.html +3 -2
  38. package/coverage/js/fractal-scripts/combobox.js.html +22 -3
  39. package/coverage/js/fractal-scripts/index.html +3 -2
  40. package/coverage/js/fractal-scripts/notification.js.html +13 -3
  41. package/coverage/js/fractal-scripts/switch-state.js.html +13 -3
  42. package/coverage/js/index-fractal.js.html +3 -2
  43. package/coverage/js/index-polyfills.js.html +3 -2
  44. package/coverage/js/index-vue.js.html +3 -2
  45. package/coverage/js/index.html +3 -2
  46. package/coverage/js/index.js.html +3 -2
  47. package/coverage/js/polyfills/arrayPrototypeFind.js.html +20 -10
  48. package/coverage/js/polyfills/closest.js.html +8 -4
  49. package/coverage/js/polyfills/index.html +3 -2
  50. package/coverage/js/polyfills/objectAssign.js.html +19 -9
  51. package/coverage/js/polyfills/remove.js.html +3 -2
  52. package/coverage/tokens/_config.js.html +3 -2
  53. package/coverage/tokens/index.html +3 -2
  54. package/cypress/.eslintrc.js +6 -6
  55. package/cypress/fixtures/testuploadfile.txt +1 -0
  56. package/cypress/integration/components/accordion.spec.js +40 -3
  57. package/cypress/integration/components/button.spec.js +2 -3
  58. package/cypress/integration/components/card.spec.js +2 -3
  59. package/cypress/integration/components/icons.spec.js +10 -0
  60. package/cypress/integration/components/{combobox.spec.js → inputs/combobox.spec.js} +6 -0
  61. package/cypress/integration/components/inputs/file-upload.spec.js +45 -0
  62. package/cypress/integration/components/{input.spec.js → inputs/input.spec.js} +1 -1
  63. package/cypress/integration/components/inputs/label.spec.js +15 -0
  64. package/cypress/integration/components/inputs/radio.spec.js +20 -0
  65. package/cypress/integration/components/inputs/select.spec.js +31 -0
  66. package/cypress/integration/components/inputs/textarea.spec.js +23 -0
  67. package/cypress/integration/components/modal.spec.js +65 -0
  68. package/cypress/integration/components/notifications.spec.js +35 -0
  69. package/cypress/integration/components/popover.spec.js +36 -0
  70. package/cypress/integration/components/skip-link.spec.js +9 -0
  71. package/cypress/plugins/index.js +1 -1
  72. package/cypress/support/commands.js +14 -0
  73. package/cypress/support/index.js +2 -0
  74. package/dist/_tokens/css/_tokens.css +1 -1
  75. package/dist/_tokens/js/_tokens-module.js +455 -1
  76. package/dist/_tokens/scss/_tokens.scss +4 -4
  77. package/dist/assets/icons.json +1 -1
  78. package/dist/assets/icons.svg +6 -1
  79. package/dist/js/index.js +1 -1
  80. package/fractal.js +2 -0
  81. package/package.json +59 -54
  82. package/server.js +1 -1
  83. package/src/components/accordion/accordion.config.js +9 -12
  84. package/src/components/accordion/accordion.js +12 -0
  85. package/src/components/inputs/file-upload/file-upload.js +1 -0
  86. package/src/components/inputs/textarea/character-count.js +3 -0
  87. package/src/components/modal/modal.js +3 -1
  88. package/src/components/notification/notification.js +3 -0
  89. package/src/components/skip-link/skip-link.njk +11 -1
  90. package/src/components/tabs/tabs.js +11 -0
  91. package/src/js/fractal-scripts/combobox.js +6 -0
  92. package/src/js/fractal-scripts/notification.js +3 -0
  93. package/src/js/fractal-scripts/switch-state.js +3 -0
  94. package/src/js/polyfills/arrayPrototypeFind.js +9 -6
  95. package/src/js/polyfills/closest.js +2 -1
  96. package/src/js/polyfills/objectAssign.js +9 -6
  97. package/tasks/colorTransforms.js +4 -0
  98. package/tasks/createMacroIndex.js +1 -0
  99. package/tasks/css.js +3 -0
  100. package/tasks/fractal.js +2 -0
  101. package/tasks/js-bundle.js +6 -2
  102. package/tasks/svgsprite.js +31 -21
  103. package/tasks/tokens.js +2 -0
  104. package/__tests__/unit/src/components/accordion.spec.js +0 -88
  105. package/__tests__/unit/src/components/modal.spec.js +0 -87
  106. package/__tests__/unit/src/components/switch-state.spec.js +0 -21
  107. package/cypress/integration/components/textarea.spec.js +0 -9
  108. /package/cypress/integration/components/{checkbox-list.spec.js → inputs/checkbox-list.spec.js} +0 -0
  109. /package/cypress/integration/components/{single-checkbox.spec.js → inputs/single-checkbox.spec.js} +0 -0
@@ -1,13 +1,13 @@
1
1
  <?xml version="1.0" ?>
2
2
  <!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
3
- <coverage lines-valid="522" lines-covered="204" line-rate="0.3908" branches-valid="161" branches-covered="54" branch-rate="0.3354" timestamp="1625657130222" complexity="0" version="0.1">
3
+ <coverage lines-valid="522" lines-covered="90" line-rate="0.1724" branches-valid="161" branches-covered="27" branch-rate="0.1677" timestamp="1625755629581" complexity="0" version="0.1">
4
4
  <sources>
5
5
  <source>/var/lib/jenkins/jobs/madgex-design-system/branches/master/workspace</source>
6
6
  </sources>
7
7
  <packages>
8
- <package name="components.accordion" line-rate="0.6747" branch-rate="0.5">
8
+ <package name="components.accordion" line-rate="0" branch-rate="0">
9
9
  <classes>
10
- <class name="accordion.js" filename="src/components/accordion/accordion.js" line-rate="0.6747" branch-rate="0.5">
10
+ <class name="accordion.js" filename="src/components/accordion/accordion.js" line-rate="0" branch-rate="0">
11
11
  <methods>
12
12
  <method name="(anonymous_0)" hits="0" signature="()V">
13
13
  <lines>
@@ -19,121 +19,121 @@
19
19
  <line number="14" hits="0"/>
20
20
  </lines>
21
21
  </method>
22
- <method name="(anonymous_2)" hits="6" signature="()V">
22
+ <method name="(anonymous_2)" hits="0" signature="()V">
23
23
  <lines>
24
- <line number="25" hits="6"/>
24
+ <line number="26" hits="0"/>
25
25
  </lines>
26
26
  </method>
27
- <method name="(anonymous_3)" hits="1" signature="()V">
27
+ <method name="(anonymous_3)" hits="0" signature="()V">
28
28
  <lines>
29
- <line number="60" hits="1"/>
29
+ <line number="65" hits="0"/>
30
30
  </lines>
31
31
  </method>
32
32
  <method name="(anonymous_4)" hits="0" signature="()V">
33
33
  <lines>
34
- <line number="76" hits="0"/>
34
+ <line number="84" hits="0"/>
35
35
  </lines>
36
36
  </method>
37
- <method name="(anonymous_5)" hits="2" signature="()V">
37
+ <method name="(anonymous_5)" hits="0" signature="()V">
38
38
  <lines>
39
- <line number="81" hits="2"/>
39
+ <line number="89" hits="0"/>
40
40
  </lines>
41
41
  </method>
42
- <method name="(anonymous_6)" hits="1" signature="()V">
42
+ <method name="(anonymous_6)" hits="0" signature="()V">
43
43
  <lines>
44
- <line number="96" hits="1"/>
44
+ <line number="105" hits="0"/>
45
45
  </lines>
46
46
  </method>
47
47
  <method name="(anonymous_7)" hits="0" signature="()V">
48
48
  <lines>
49
- <line number="106" hits="0"/>
49
+ <line number="117" hits="0"/>
50
50
  </lines>
51
51
  </method>
52
52
  </methods>
53
53
  <lines>
54
- <line number="1" hits="1" branch="false"/>
55
- <line number="2" hits="1" branch="false"/>
56
- <line number="3" hits="1" branch="false"/>
57
- <line number="4" hits="1" branch="false"/>
58
- <line number="5" hits="1" branch="false"/>
59
- <line number="6" hits="1" branch="false"/>
60
- <line number="7" hits="1" branch="false"/>
61
- <line number="9" hits="1" branch="false"/>
54
+ <line number="1" hits="0" branch="false"/>
55
+ <line number="2" hits="0" branch="false"/>
56
+ <line number="3" hits="0" branch="false"/>
57
+ <line number="4" hits="0" branch="false"/>
58
+ <line number="5" hits="0" branch="false"/>
59
+ <line number="6" hits="0" branch="false"/>
60
+ <line number="7" hits="0" branch="false"/>
61
+ <line number="9" hits="0" branch="false"/>
62
62
  <line number="11" hits="0" branch="false"/>
63
63
  <line number="12" hits="0" branch="false"/>
64
64
  <line number="14" hits="0" branch="false"/>
65
65
  <line number="15" hits="0" branch="false"/>
66
66
  <line number="16" hits="0" branch="false"/>
67
- <line number="17" hits="0" branch="true" condition-coverage="0% (0/2)"/>
68
- <line number="18" hits="0" branch="false"/>
69
- <line number="20" hits="0" branch="false"/>
67
+ <line number="18" hits="0" branch="true" condition-coverage="0% (0/2)"/>
68
+ <line number="19" hits="0" branch="false"/>
70
69
  <line number="21" hits="0" branch="false"/>
71
- <line number="26" hits="6" branch="false"/>
72
- <line number="28" hits="6" branch="true" condition-coverage="100% (2/2)"/>
73
- <line number="29" hits="5" branch="false"/>
74
- <line number="30" hits="5" branch="false"/>
75
- <line number="34" hits="5" branch="true" condition-coverage="100% (4/4)"/>
76
- <line number="36" hits="2" branch="false"/>
77
- <line number="37" hits="2" branch="false"/>
78
- <line number="39" hits="1" branch="false"/>
79
- <line number="40" hits="1" branch="false"/>
80
- <line number="41" hits="1" branch="false"/>
81
- <line number="42" hits="1" branch="false"/>
82
- <line number="44" hits="1" branch="false"/>
83
- <line number="45" hits="1" branch="false"/>
84
- <line number="46" hits="1" branch="false"/>
85
- <line number="47" hits="1" branch="false"/>
86
- <line number="49" hits="1" branch="false"/>
87
- <line number="52" hits="4" branch="true" condition-coverage="100% (2/2)"/>
88
- <line number="53" hits="3" branch="false"/>
89
- <line number="56" hits="1" branch="false"/>
90
- <line number="58" hits="1" branch="false"/>
91
- <line number="61" hits="1" branch="false"/>
92
- <line number="62" hits="1" branch="false"/>
93
- <line number="63" hits="1" branch="false"/>
94
- <line number="64" hits="1" branch="false"/>
95
- <line number="65" hits="1" branch="false"/>
96
- <line number="66" hits="1" branch="false"/>
97
- <line number="67" hits="1" branch="true" condition-coverage="50% (1/2)"/>
98
- <line number="68" hits="1" branch="false"/>
99
- <line number="70" hits="1" branch="false"/>
100
- <line number="71" hits="1" branch="false"/>
101
- <line number="73" hits="1" branch="true" condition-coverage="50% (1/2)"/>
70
+ <line number="22" hits="0" branch="false"/>
71
+ <line number="27" hits="0" branch="false"/>
72
+ <line number="29" hits="0" branch="true" condition-coverage="0% (0/2)"/>
73
+ <line number="30" hits="0" branch="false"/>
74
+ <line number="31" hits="0" branch="false"/>
75
+ <line number="35" hits="0" branch="true" condition-coverage="0% (0/4)"/>
76
+ <line number="37" hits="0" branch="false"/>
77
+ <line number="38" hits="0" branch="false"/>
78
+ <line number="41" hits="0" branch="false"/>
79
+ <line number="42" hits="0" branch="false"/>
80
+ <line number="43" hits="0" branch="false"/>
81
+ <line number="44" hits="0" branch="false"/>
82
+ <line number="47" hits="0" branch="false"/>
83
+ <line number="48" hits="0" branch="false"/>
84
+ <line number="49" hits="0" branch="false"/>
85
+ <line number="50" hits="0" branch="false"/>
86
+ <line number="53" hits="0" branch="false"/>
87
+ <line number="56" hits="0" branch="true" condition-coverage="0% (0/2)"/>
88
+ <line number="57" hits="0" branch="false"/>
89
+ <line number="60" hits="0" branch="false"/>
90
+ <line number="63" hits="0" branch="false"/>
91
+ <line number="66" hits="0" branch="false"/>
92
+ <line number="67" hits="0" branch="false"/>
93
+ <line number="68" hits="0" branch="false"/>
94
+ <line number="69" hits="0" branch="false"/>
95
+ <line number="70" hits="0" branch="false"/>
96
+ <line number="72" hits="0" branch="false"/>
97
+ <line number="73" hits="0" branch="true" condition-coverage="0% (0/2)"/>
102
98
  <line number="74" hits="0" branch="false"/>
103
- <line number="76" hits="1" branch="false"/>
104
99
  <line number="77" hits="0" branch="false"/>
105
100
  <line number="78" hits="0" branch="false"/>
106
- <line number="82" hits="2" branch="false"/>
107
- <line number="83" hits="2" branch="false"/>
108
- <line number="84" hits="2" branch="false"/>
109
- <line number="86" hits="2" branch="false"/>
110
- <line number="87" hits="2" branch="false"/>
111
- <line number="88" hits="2" branch="false"/>
112
- <line number="89" hits="2" branch="false"/>
113
- <line number="90" hits="2" branch="true" condition-coverage="50% (1/2)"/>
114
- <line number="91" hits="2" branch="false"/>
115
- <line number="94" hits="2" branch="false"/>
116
- <line number="97" hits="1" branch="false"/>
117
- <line number="99" hits="1" branch="true" condition-coverage="50% (1/2)"/>
118
- <line number="100" hits="1" branch="false"/>
119
- <line number="101" hits="1" branch="false"/>
120
- <line number="102" hits="1" branch="false"/>
121
- <line number="104" hits="1" branch="false"/>
122
- <line number="107" hits="0" branch="false"/>
123
- <line number="108" hits="0" branch="false"/>
124
- <line number="110" hits="0" branch="true" condition-coverage="0% (0/2)"/>
101
+ <line number="80" hits="0" branch="true" condition-coverage="0% (0/2)"/>
102
+ <line number="81" hits="0" branch="false"/>
103
+ <line number="84" hits="0" branch="false"/>
104
+ <line number="85" hits="0" branch="false"/>
105
+ <line number="86" hits="0" branch="false"/>
106
+ <line number="90" hits="0" branch="false"/>
107
+ <line number="91" hits="0" branch="false"/>
108
+ <line number="93" hits="0" branch="false"/>
109
+ <line number="95" hits="0" branch="false"/>
110
+ <line number="96" hits="0" branch="false"/>
111
+ <line number="97" hits="0" branch="false"/>
112
+ <line number="98" hits="0" branch="false"/>
113
+ <line number="99" hits="0" branch="true" condition-coverage="0% (0/2)"/>
114
+ <line number="100" hits="0" branch="false"/>
115
+ <line number="103" hits="0" branch="false"/>
116
+ <line number="106" hits="0" branch="false"/>
117
+ <line number="108" hits="0" branch="true" condition-coverage="0% (0/2)"/>
118
+ <line number="109" hits="0" branch="false"/>
125
119
  <line number="111" hits="0" branch="false"/>
126
120
  <line number="112" hits="0" branch="false"/>
127
- <line number="113" hits="0" branch="false"/>
128
- <line number="114" hits="0" branch="true" condition-coverage="0% (0/2)"/>
121
+ <line number="115" hits="0" branch="false"/>
129
122
  <line number="118" hits="0" branch="false"/>
130
123
  <line number="119" hits="0" branch="false"/>
124
+ <line number="121" hits="0" branch="true" condition-coverage="0% (0/2)"/>
125
+ <line number="122" hits="0" branch="false"/>
131
126
  <line number="123" hits="0" branch="false"/>
127
+ <line number="124" hits="0" branch="false"/>
132
128
  <line number="125" hits="0" branch="true" condition-coverage="0% (0/2)"/>
133
- <line number="126" hits="0" branch="false"/>
134
- <line number="127" hits="0" branch="false"/>
135
- <line number="128" hits="0" branch="false"/>
129
+ <line number="129" hits="0" branch="false"/>
136
130
  <line number="130" hits="0" branch="false"/>
131
+ <line number="134" hits="0" branch="false"/>
132
+ <line number="136" hits="0" branch="true" condition-coverage="0% (0/2)"/>
133
+ <line number="137" hits="0" branch="false"/>
134
+ <line number="138" hits="0" branch="false"/>
135
+ <line number="139" hits="0" branch="false"/>
136
+ <line number="142" hits="0" branch="false"/>
137
137
  </lines>
138
138
  </class>
139
139
  </classes>
@@ -207,88 +207,88 @@
207
207
  </class>
208
208
  </classes>
209
209
  </package>
210
- <package name="components.inputs.combobox.vue-components" line-rate="0.7570999999999999" branch-rate="0.5938">
210
+ <package name="components.inputs.combobox.vue-components" line-rate="0.6857" branch-rate="0.5313">
211
211
  <classes>
212
- <class name="Combobox.vue" filename="src/components/inputs/combobox/vue-components/Combobox.vue" line-rate="0.7343999999999999" branch-rate="0.6">
212
+ <class name="Combobox.vue" filename="src/components/inputs/combobox/vue-components/Combobox.vue" line-rate="0.6563" branch-rate="0.5333">
213
213
  <methods>
214
214
  <method name="_default" hits="0" signature="()V">
215
215
  <lines>
216
216
  <line number="76" hits="0"/>
217
217
  </lines>
218
218
  </method>
219
- <method name="data" hits="10" signature="()V">
219
+ <method name="data" hits="5" signature="()V">
220
220
  <lines>
221
- <line number="91" hits="10"/>
221
+ <line number="91" hits="5"/>
222
222
  </lines>
223
223
  </method>
224
- <method name="provide" hits="10" signature="()V">
224
+ <method name="provide" hits="5" signature="()V">
225
225
  <lines>
226
- <line number="99" hits="10"/>
226
+ <line number="99" hits="5"/>
227
227
  </lines>
228
228
  </method>
229
- <method name="get" hits="15" signature="()V">
229
+ <method name="get" hits="9" signature="()V">
230
230
  <lines>
231
- <line number="106" hits="15"/>
231
+ <line number="106" hits="9"/>
232
232
  </lines>
233
233
  </method>
234
- <method name="set" hits="4" signature="()V">
234
+ <method name="set" hits="3" signature="()V">
235
235
  <lines>
236
- <line number="112" hits="4"/>
236
+ <line number="112" hits="3"/>
237
237
  </lines>
238
238
  </method>
239
- <method name="get" hits="12" signature="()V">
239
+ <method name="get" hits="6" signature="()V">
240
240
  <lines>
241
- <line number="121" hits="12"/>
241
+ <line number="121" hits="6"/>
242
242
  </lines>
243
243
  </method>
244
- <method name="set" hits="6" signature="()V">
244
+ <method name="set" hits="4" signature="()V">
245
245
  <lines>
246
- <line number="124" hits="6"/>
246
+ <line number="124" hits="4"/>
247
247
  </lines>
248
248
  </method>
249
- <method name="get" hits="11" signature="()V">
249
+ <method name="get" hits="6" signature="()V">
250
250
  <lines>
251
- <line number="129" hits="11"/>
251
+ <line number="129" hits="6"/>
252
252
  </lines>
253
253
  </method>
254
- <method name="set" hits="5" signature="()V">
254
+ <method name="set" hits="4" signature="()V">
255
255
  <lines>
256
- <line number="132" hits="5"/>
256
+ <line number="132" hits="4"/>
257
257
  </lines>
258
258
  </method>
259
- <method name="visibleOptions" hits="14" signature="()V">
259
+ <method name="visibleOptions" hits="8" signature="()V">
260
260
  <lines>
261
- <line number="138" hits="14"/>
261
+ <line number="138" hits="8"/>
262
262
  </lines>
263
263
  </method>
264
- <method name="(anonymous_11)" hits="26" signature="()V">
264
+ <method name="(anonymous_11)" hits="14" signature="()V">
265
265
  <lines>
266
- <line number="140" hits="26"/>
266
+ <line number="140" hits="14"/>
267
267
  </lines>
268
268
  </method>
269
- <method name="listBoxId" hits="10" signature="()V">
269
+ <method name="listBoxId" hits="5" signature="()V">
270
270
  <lines>
271
- <line number="144" hits="10"/>
271
+ <line number="144" hits="5"/>
272
272
  </lines>
273
273
  </method>
274
- <method name="optionId" hits="10" signature="()V">
274
+ <method name="optionId" hits="5" signature="()V">
275
275
  <lines>
276
- <line number="147" hits="10"/>
276
+ <line number="147" hits="5"/>
277
277
  </lines>
278
278
  </method>
279
- <method name="isLoading" hits="10" signature="()V">
279
+ <method name="isLoading" hits="5" signature="()V">
280
280
  <lines>
281
- <line number="150" hits="10"/>
281
+ <line number="150" hits="5"/>
282
282
  </lines>
283
283
  </method>
284
- <method name="selectedOptionId" hits="16" signature="()V">
284
+ <method name="selectedOptionId" hits="9" signature="()V">
285
285
  <lines>
286
- <line number="153" hits="16"/>
286
+ <line number="153" hits="9"/>
287
287
  </lines>
288
288
  </method>
289
- <method name="listBoxHidden" hits="12" signature="()V">
289
+ <method name="listBoxHidden" hits="6" signature="()V">
290
290
  <lines>
291
- <line number="160" hits="12"/>
291
+ <line number="160" hits="6"/>
292
292
  </lines>
293
293
  </method>
294
294
  <method name="lastOptionIndex" hits="0" signature="()V">
@@ -296,24 +296,24 @@
296
296
  <line number="163" hits="0"/>
297
297
  </lines>
298
298
  </method>
299
- <method name="resultCount" hits="14" signature="()V">
299
+ <method name="resultCount" hits="8" signature="()V">
300
300
  <lines>
301
- <line number="166" hits="14"/>
301
+ <line number="166" hits="8"/>
302
302
  </lines>
303
303
  </method>
304
- <method name="ariaExpanded" hits="12" signature="()V">
304
+ <method name="ariaExpanded" hits="6" signature="()V">
305
305
  <lines>
306
- <line number="172" hits="12"/>
306
+ <line number="172" hits="6"/>
307
307
  </lines>
308
308
  </method>
309
- <method name="ariaInvalid" hits="10" signature="()V">
309
+ <method name="ariaInvalid" hits="5" signature="()V">
310
310
  <lines>
311
- <line number="176" hits="10"/>
311
+ <line number="176" hits="5"/>
312
312
  </lines>
313
313
  </method>
314
- <method name="makeActive" hits="2" signature="()V">
314
+ <method name="makeActive" hits="1" signature="()V">
315
315
  <lines>
316
- <line number="181" hits="2"/>
316
+ <line number="181" hits="1"/>
317
317
  </lines>
318
318
  </method>
319
319
  <method name="makeInactive" hits="3" signature="()V">
@@ -321,9 +321,9 @@
321
321
  <line number="184" hits="3"/>
322
322
  </lines>
323
323
  </method>
324
- <method name="handleChange" hits="4" signature="()V">
324
+ <method name="handleChange" hits="3" signature="()V">
325
325
  <lines>
326
- <line number="187" hits="4"/>
326
+ <line number="187" hits="3"/>
327
327
  </lines>
328
328
  </method>
329
329
  <method name="clickOption" hits="1" signature="()V">
@@ -336,9 +336,9 @@
336
336
  <line number="198" hits="0"/>
337
337
  </lines>
338
338
  </method>
339
- <method name="hiddenGuard" hits="1" signature="()V">
339
+ <method name="hiddenGuard" hits="0" signature="()V">
340
340
  <lines>
341
- <line number="202" hits="1"/>
341
+ <line number="202" hits="0"/>
342
342
  </lines>
343
343
  </method>
344
344
  <method name="onInputBlur" hits="0" signature="()V">
@@ -346,9 +346,9 @@
346
346
  <line number="206" hits="0"/>
347
347
  </lines>
348
348
  </method>
349
- <method name="onKeyDown" hits="1" signature="()V">
349
+ <method name="onKeyDown" hits="0" signature="()V">
350
350
  <lines>
351
- <line number="209" hits="1"/>
351
+ <line number="209" hits="0"/>
352
352
  </lines>
353
353
  </method>
354
354
  <method name="onKeyUp" hits="0" signature="()V">
@@ -372,58 +372,58 @@
372
372
  <line number="43" hits="1" branch="false"/>
373
373
  <line number="44" hits="1" branch="false"/>
374
374
  <line number="76" hits="0" branch="false"/>
375
- <line number="92" hits="10" branch="false"/>
376
- <line number="100" hits="10" branch="false"/>
377
- <line number="107" hits="15" branch="true" condition-coverage="100% (2/2)"/>
375
+ <line number="92" hits="5" branch="false"/>
376
+ <line number="100" hits="5" branch="false"/>
377
+ <line number="107" hits="9" branch="true" condition-coverage="100% (2/2)"/>
378
378
  <line number="108" hits="1" branch="false"/>
379
- <line number="110" hits="14" branch="false"/>
380
- <line number="114" hits="4" branch="false"/>
381
- <line number="115" hits="4" branch="true" condition-coverage="50% (1/2)"/>
382
- <line number="116" hits="4" branch="false"/>
383
- <line number="117" hits="4" branch="false"/>
384
- <line number="122" hits="12" branch="false"/>
385
- <line number="125" hits="6" branch="false"/>
386
- <line number="130" hits="11" branch="false"/>
387
- <line number="133" hits="5" branch="false"/>
388
- <line number="134" hits="5" branch="false"/>
389
- <line number="135" hits="5" branch="false"/>
390
- <line number="138" hits="14" branch="false"/>
391
- <line number="139" hits="14" branch="true" condition-coverage="100% (2/2)"/>
392
- <line number="140" hits="39" branch="false"/>
379
+ <line number="110" hits="8" branch="false"/>
380
+ <line number="114" hits="3" branch="false"/>
381
+ <line number="115" hits="3" branch="true" condition-coverage="50% (1/2)"/>
382
+ <line number="116" hits="3" branch="false"/>
383
+ <line number="117" hits="3" branch="false"/>
384
+ <line number="122" hits="6" branch="false"/>
385
+ <line number="125" hits="4" branch="false"/>
386
+ <line number="130" hits="6" branch="false"/>
387
+ <line number="133" hits="4" branch="false"/>
388
+ <line number="134" hits="4" branch="false"/>
389
+ <line number="135" hits="4" branch="false"/>
390
+ <line number="138" hits="8" branch="false"/>
391
+ <line number="139" hits="8" branch="true" condition-coverage="100% (2/2)"/>
392
+ <line number="140" hits="21" branch="false"/>
393
393
  <line number="142" hits="1" branch="false"/>
394
- <line number="145" hits="10" branch="false"/>
395
- <line number="148" hits="10" branch="false"/>
396
- <line number="151" hits="10" branch="true" condition-coverage="50% (1/2)"/>
397
- <line number="154" hits="16" branch="false"/>
398
- <line number="155" hits="16" branch="true" condition-coverage="100% (2/2)"/>
399
- <line number="156" hits="2" branch="false"/>
400
- <line number="158" hits="14" branch="false"/>
401
- <line number="161" hits="12" branch="false"/>
394
+ <line number="145" hits="5" branch="false"/>
395
+ <line number="148" hits="5" branch="false"/>
396
+ <line number="151" hits="5" branch="true" condition-coverage="50% (1/2)"/>
397
+ <line number="154" hits="9" branch="false"/>
398
+ <line number="155" hits="9" branch="true" condition-coverage="100% (2/2)"/>
399
+ <line number="156" hits="1" branch="false"/>
400
+ <line number="158" hits="8" branch="false"/>
401
+ <line number="161" hits="6" branch="false"/>
402
402
  <line number="164" hits="0" branch="false"/>
403
- <line number="167" hits="14" branch="true" condition-coverage="50% (1/2)"/>
403
+ <line number="167" hits="8" branch="true" condition-coverage="50% (1/2)"/>
404
404
  <line number="168" hits="0" branch="false"/>
405
- <line number="170" hits="14" branch="false"/>
406
- <line number="174" hits="12" branch="true" condition-coverage="100% (2/2)"/>
407
- <line number="177" hits="10" branch="true" condition-coverage="50% (1/2)"/>
408
- <line number="182" hits="2" branch="false"/>
405
+ <line number="170" hits="8" branch="false"/>
406
+ <line number="174" hits="6" branch="true" condition-coverage="100% (2/2)"/>
407
+ <line number="177" hits="5" branch="true" condition-coverage="50% (1/2)"/>
408
+ <line number="182" hits="1" branch="false"/>
409
409
  <line number="185" hits="3" branch="false"/>
410
- <line number="188" hits="4" branch="true" condition-coverage="100% (2/2)"/>
411
- <line number="189" hits="2" branch="false"/>
410
+ <line number="188" hits="3" branch="true" condition-coverage="100% (2/2)"/>
411
+ <line number="189" hits="1" branch="false"/>
412
412
  <line number="191" hits="2" branch="false"/>
413
413
  <line number="194" hits="1" branch="true" condition-coverage="100% (2/2)"/>
414
414
  <line number="195" hits="1" branch="false"/>
415
415
  <line number="196" hits="1" branch="false"/>
416
416
  <line number="199" hits="0" branch="false"/>
417
417
  <line number="200" hits="0" branch="false"/>
418
- <line number="203" hits="1" branch="true" condition-coverage="50% (1/2)"/>
419
- <line number="204" hits="1" branch="false"/>
418
+ <line number="203" hits="0" branch="true" condition-coverage="0% (0/2)"/>
419
+ <line number="204" hits="0" branch="false"/>
420
420
  <line number="207" hits="0" branch="false"/>
421
- <line number="210" hits="1" branch="true" condition-coverage="50% (1/2)"/>
421
+ <line number="210" hits="0" branch="true" condition-coverage="0% (0/2)"/>
422
422
  <line number="211" hits="0" branch="false"/>
423
423
  <line number="212" hits="0" branch="true" condition-coverage="0% (0/2)"/>
424
424
  <line number="213" hits="0" branch="false"/>
425
- <line number="214" hits="1" branch="false"/>
426
- <line number="215" hits="1" branch="false"/>
425
+ <line number="214" hits="0" branch="false"/>
426
+ <line number="215" hits="0" branch="false"/>
427
427
  <line number="219" hits="0" branch="true" condition-coverage="0% (0/2)"/>
428
428
  <line number="220" hits="0" branch="false"/>
429
429
  <line number="221" hits="0" branch="true" condition-coverage="0% (0/2)"/>
@@ -436,34 +436,34 @@
436
436
  </class>
437
437
  <class name="ListBoxOption.vue" filename="src/components/inputs/combobox/vue-components/ListBoxOption.vue" line-rate="1" branch-rate="0.5">
438
438
  <methods>
439
- <method name="searchValue" hits="4" signature="()V">
439
+ <method name="searchValue" hits="3" signature="()V">
440
440
  <lines>
441
- <line number="31" hits="4"/>
441
+ <line number="31" hits="3"/>
442
442
  </lines>
443
443
  </method>
444
- <method name="focused" hits="2" signature="()V">
444
+ <method name="focused" hits="1" signature="()V">
445
445
  <lines>
446
- <line number="34" hits="2"/>
446
+ <line number="34" hits="1"/>
447
447
  </lines>
448
448
  </method>
449
- <method name="highlightOption" hits="26" signature="()V">
449
+ <method name="highlightOption" hits="14" signature="()V">
450
450
  <lines>
451
- <line number="41" hits="26"/>
451
+ <line number="41" hits="14"/>
452
452
  </lines>
453
453
  </method>
454
- <method name="(anonymous_4)" hits="88" signature="()V">
454
+ <method name="(anonymous_4)" hits="46" signature="()V">
455
455
  <lines>
456
- <line number="42" hits="88"/>
456
+ <line number="42" hits="46"/>
457
457
  </lines>
458
458
  </method>
459
459
  </methods>
460
460
  <lines>
461
- <line number="32" hits="4" branch="false"/>
462
- <line number="35" hits="2" branch="true" condition-coverage="50% (1/2)"/>
463
- <line number="36" hits="2" branch="false"/>
464
- <line number="42" hits="26" branch="false"/>
465
- <line number="44" hits="88" branch="false"/>
466
- <line number="46" hits="26" branch="false"/>
461
+ <line number="32" hits="3" branch="false"/>
462
+ <line number="35" hits="1" branch="true" condition-coverage="50% (1/2)"/>
463
+ <line number="36" hits="1" branch="false"/>
464
+ <line number="42" hits="14" branch="false"/>
465
+ <line number="44" hits="46" branch="false"/>
466
+ <line number="46" hits="14" branch="false"/>
467
467
  </lines>
468
468
  </class>
469
469
  </classes>
@@ -479,42 +479,42 @@
479
479
  </method>
480
480
  <method name="(anonymous_1)" hits="0" signature="()V">
481
481
  <lines>
482
- <line number="12" hits="0"/>
482
+ <line number="13" hits="0"/>
483
483
  </lines>
484
484
  </method>
485
485
  <method name="(anonymous_2)" hits="0" signature="()V">
486
486
  <lines>
487
- <line number="18" hits="0"/>
487
+ <line number="19" hits="0"/>
488
488
  </lines>
489
489
  </method>
490
490
  <method name="(anonymous_3)" hits="0" signature="()V">
491
491
  <lines>
492
- <line number="26" hits="0"/>
492
+ <line number="27" hits="0"/>
493
493
  </lines>
494
494
  </method>
495
495
  <method name="(anonymous_4)" hits="0" signature="()V">
496
496
  <lines>
497
- <line number="34" hits="0"/>
497
+ <line number="35" hits="0"/>
498
498
  </lines>
499
499
  </method>
500
500
  <method name="(anonymous_5)" hits="0" signature="()V">
501
501
  <lines>
502
- <line number="35" hits="0"/>
502
+ <line number="36" hits="0"/>
503
503
  </lines>
504
504
  </method>
505
505
  <method name="(anonymous_6)" hits="0" signature="()V">
506
506
  <lines>
507
- <line number="41" hits="0"/>
507
+ <line number="42" hits="0"/>
508
508
  </lines>
509
509
  </method>
510
510
  <method name="(anonymous_7)" hits="0" signature="()V">
511
511
  <lines>
512
- <line number="42" hits="0"/>
512
+ <line number="43" hits="0"/>
513
513
  </lines>
514
514
  </method>
515
515
  <method name="(anonymous_8)" hits="0" signature="()V">
516
516
  <lines>
517
- <line number="50" hits="0"/>
517
+ <line number="51" hits="0"/>
518
518
  </lines>
519
519
  </method>
520
520
  </methods>
@@ -528,31 +528,31 @@
528
528
  <line number="8" hits="0" branch="false"/>
529
529
  <line number="10" hits="0" branch="true" condition-coverage="0% (0/2)"/>
530
530
  <line number="11" hits="0" branch="false"/>
531
- <line number="12" hits="0" branch="false"/>
532
531
  <line number="13" hits="0" branch="false"/>
533
532
  <line number="14" hits="0" branch="false"/>
534
533
  <line number="15" hits="0" branch="false"/>
535
534
  <line number="16" hits="0" branch="false"/>
536
- <line number="18" hits="0" branch="false"/>
537
- <line number="19" hits="0" branch="true" condition-coverage="0% (0/4)"/>
538
- <line number="20" hits="0" branch="false"/>
535
+ <line number="17" hits="0" branch="false"/>
536
+ <line number="19" hits="0" branch="false"/>
537
+ <line number="20" hits="0" branch="true" condition-coverage="0% (0/4)"/>
539
538
  <line number="21" hits="0" branch="false"/>
540
539
  <line number="22" hits="0" branch="false"/>
541
- <line number="26" hits="0" branch="false"/>
540
+ <line number="23" hits="0" branch="false"/>
542
541
  <line number="27" hits="0" branch="false"/>
543
542
  <line number="28" hits="0" branch="false"/>
544
543
  <line number="29" hits="0" branch="false"/>
545
544
  <line number="30" hits="0" branch="false"/>
546
545
  <line number="31" hits="0" branch="false"/>
547
- <line number="34" hits="0" branch="false"/>
546
+ <line number="32" hits="0" branch="false"/>
548
547
  <line number="35" hits="0" branch="false"/>
549
548
  <line number="36" hits="0" branch="false"/>
550
549
  <line number="37" hits="0" branch="false"/>
551
- <line number="41" hits="0" branch="false"/>
550
+ <line number="38" hits="0" branch="false"/>
552
551
  <line number="42" hits="0" branch="false"/>
553
552
  <line number="43" hits="0" branch="false"/>
554
553
  <line number="44" hits="0" branch="false"/>
555
- <line number="51" hits="0" branch="false"/>
554
+ <line number="45" hits="0" branch="false"/>
555
+ <line number="52" hits="0" branch="false"/>
556
556
  </lines>
557
557
  </class>
558
558
  </classes>
@@ -568,17 +568,17 @@
568
568
  </method>
569
569
  <method name="(anonymous_1)" hits="0" signature="()V">
570
570
  <lines>
571
- <line number="10" hits="0"/>
571
+ <line number="11" hits="0"/>
572
572
  </lines>
573
573
  </method>
574
574
  <method name="(anonymous_2)" hits="0" signature="()V">
575
575
  <lines>
576
- <line number="17" hits="0"/>
576
+ <line number="19" hits="0"/>
577
577
  </lines>
578
578
  </method>
579
579
  <method name="(anonymous_3)" hits="0" signature="()V">
580
580
  <lines>
581
- <line number="23" hits="0"/>
581
+ <line number="25" hits="0"/>
582
582
  </lines>
583
583
  </method>
584
584
  </methods>
@@ -589,131 +589,131 @@
589
589
  <line number="5" hits="0" branch="false"/>
590
590
  <line number="7" hits="0" branch="false"/>
591
591
  <line number="9" hits="0" branch="false"/>
592
- <line number="10" hits="0" branch="false"/>
593
592
  <line number="11" hits="0" branch="false"/>
594
593
  <line number="12" hits="0" branch="false"/>
595
594
  <line number="13" hits="0" branch="false"/>
596
595
  <line number="14" hits="0" branch="false"/>
597
596
  <line number="15" hits="0" branch="false"/>
598
- <line number="16" hits="0" branch="false"/>
599
597
  <line number="17" hits="0" branch="false"/>
600
598
  <line number="18" hits="0" branch="false"/>
601
599
  <line number="19" hits="0" branch="false"/>
602
- <line number="25" hits="0" branch="false"/>
603
- <line number="26" hits="0" branch="true" condition-coverage="0% (0/2)"/>
600
+ <line number="20" hits="0" branch="false"/>
601
+ <line number="21" hits="0" branch="false"/>
604
602
  <line number="27" hits="0" branch="false"/>
605
- <line number="28" hits="0" branch="false"/>
606
- <line number="29" hits="0" branch="true" condition-coverage="0% (0/2)"/>
607
- <line number="30" hits="0" branch="false"/>
608
- <line number="32" hits="0" branch="false"/>
603
+ <line number="28" hits="0" branch="true" condition-coverage="0% (0/2)"/>
604
+ <line number="29" hits="0" branch="false"/>
605
+ <line number="31" hits="0" branch="false"/>
606
+ <line number="32" hits="0" branch="true" condition-coverage="0% (0/2)"/>
607
+ <line number="33" hits="0" branch="false"/>
608
+ <line number="35" hits="0" branch="false"/>
609
609
  </lines>
610
610
  </class>
611
611
  </classes>
612
612
  </package>
613
- <package name="components.modal" line-rate="1" branch-rate="0.8125">
613
+ <package name="components.modal" line-rate="0" branch-rate="0">
614
614
  <classes>
615
- <class name="modal.js" filename="src/components/modal/modal.js" line-rate="1" branch-rate="0.8125">
615
+ <class name="modal.js" filename="src/components/modal/modal.js" line-rate="0" branch-rate="0">
616
616
  <methods>
617
- <method name="(anonymous_0)" hits="5" signature="()V">
617
+ <method name="(anonymous_0)" hits="0" signature="()V">
618
618
  <lines>
619
- <line number="10" hits="5"/>
619
+ <line number="10" hits="0"/>
620
620
  </lines>
621
621
  </method>
622
- <method name="(anonymous_1)" hits="1" signature="()V">
622
+ <method name="(anonymous_1)" hits="0" signature="()V">
623
623
  <lines>
624
- <line number="15" hits="1"/>
624
+ <line number="16" hits="0"/>
625
625
  </lines>
626
626
  </method>
627
- <method name="(anonymous_2)" hits="5" signature="()V">
627
+ <method name="(anonymous_2)" hits="0" signature="()V">
628
628
  <lines>
629
- <line number="35" hits="5"/>
629
+ <line number="37" hits="0"/>
630
630
  </lines>
631
631
  </method>
632
- <method name="(anonymous_3)" hits="2" signature="()V">
632
+ <method name="(anonymous_3)" hits="0" signature="()V">
633
633
  <lines>
634
- <line number="39" hits="2"/>
634
+ <line number="41" hits="0"/>
635
635
  </lines>
636
636
  </method>
637
- <method name="(anonymous_4)" hits="3" signature="()V">
637
+ <method name="(anonymous_4)" hits="0" signature="()V">
638
638
  <lines>
639
- <line number="44" hits="3"/>
639
+ <line number="46" hits="0"/>
640
640
  </lines>
641
641
  </method>
642
- <method name="(anonymous_5)" hits="1" signature="()V">
642
+ <method name="(anonymous_5)" hits="0" signature="()V">
643
643
  <lines>
644
- <line number="50" hits="1"/>
644
+ <line number="52" hits="0"/>
645
645
  </lines>
646
646
  </method>
647
- <method name="(anonymous_6)" hits="1" signature="()V">
647
+ <method name="(anonymous_6)" hits="0" signature="()V">
648
648
  <lines>
649
- <line number="51" hits="1"/>
649
+ <line number="53" hits="0"/>
650
650
  </lines>
651
651
  </method>
652
- <method name="(anonymous_7)" hits="5" signature="()V">
652
+ <method name="(anonymous_7)" hits="0" signature="()V">
653
653
  <lines>
654
- <line number="58" hits="5"/>
654
+ <line number="60" hits="0"/>
655
655
  </lines>
656
656
  </method>
657
- <method name="(anonymous_8)" hits="3" signature="()V">
657
+ <method name="(anonymous_8)" hits="0" signature="()V">
658
658
  <lines>
659
- <line number="64" hits="3"/>
659
+ <line number="66" hits="0"/>
660
660
  </lines>
661
661
  </method>
662
- <method name="(anonymous_9)" hits="3" signature="()V">
662
+ <method name="(anonymous_9)" hits="0" signature="()V">
663
663
  <lines>
664
- <line number="69" hits="3"/>
664
+ <line number="71" hits="0"/>
665
665
  </lines>
666
666
  </method>
667
667
  </methods>
668
668
  <lines>
669
- <line number="1" hits="1" branch="false"/>
670
- <line number="3" hits="1" branch="false"/>
671
- <line number="4" hits="1" branch="false"/>
672
- <line number="5" hits="1" branch="false"/>
673
- <line number="6" hits="1" branch="false"/>
674
- <line number="9" hits="1" branch="false"/>
675
- <line number="11" hits="5" branch="false"/>
676
- <line number="12" hits="5" branch="true" condition-coverage="50% (1/2)"/>
677
- <line number="13" hits="5" branch="false"/>
678
- <line number="15" hits="5" branch="false"/>
679
- <line number="16" hits="1" branch="false"/>
680
- <line number="17" hits="1" branch="false"/>
681
- <line number="19" hits="1" branch="false"/>
682
- <line number="22" hits="1" branch="false"/>
683
- <line number="23" hits="1" branch="false"/>
684
- <line number="27" hits="1" branch="false"/>
685
- <line number="28" hits="1" branch="false"/>
686
- <line number="30" hits="1" branch="false"/>
687
- <line number="32" hits="1" branch="false"/>
688
- <line number="33" hits="1" branch="false"/>
689
- <line number="35" hits="1" branch="false"/>
690
- <line number="36" hits="5" branch="false"/>
691
- <line number="37" hits="5" branch="false"/>
692
- <line number="39" hits="1" branch="false"/>
693
- <line number="40" hits="2" branch="true" condition-coverage="100% (2/2)"/>
694
- <line number="41" hits="1" branch="false"/>
695
- <line number="44" hits="1" branch="false"/>
696
- <line number="45" hits="3" branch="false"/>
697
- <line number="46" hits="3" branch="true" condition-coverage="100% (4/4)"/>
698
- <line number="47" hits="1" branch="false"/>
699
- <line number="50" hits="1" branch="false"/>
700
- <line number="51" hits="1" branch="false"/>
701
- <line number="52" hits="1" branch="false"/>
702
- <line number="59" hits="5" branch="false"/>
703
- <line number="60" hits="5" branch="false"/>
704
- <line number="61" hits="5" branch="false"/>
705
- <line number="62" hits="5" branch="false"/>
706
- <line number="65" hits="3" branch="false"/>
707
- <line number="66" hits="3" branch="false"/>
708
- <line number="67" hits="3" branch="false"/>
709
- <line number="70" hits="3" branch="true" condition-coverage="100% (2/2)"/>
710
- <line number="71" hits="2" branch="true" condition-coverage="100% (2/2)"/>
711
- <line number="72" hits="1" branch="true" condition-coverage="50% (1/2)"/>
712
- <line number="73" hits="1" branch="false"/>
713
- <line number="74" hits="1" branch="false"/>
714
- <line number="76" hits="1" branch="true" condition-coverage="50% (1/2)"/>
715
- <line number="77" hits="1" branch="false"/>
716
- <line number="78" hits="1" branch="false"/>
669
+ <line number="1" hits="0" branch="false"/>
670
+ <line number="3" hits="0" branch="false"/>
671
+ <line number="4" hits="0" branch="false"/>
672
+ <line number="5" hits="0" branch="false"/>
673
+ <line number="6" hits="0" branch="false"/>
674
+ <line number="9" hits="0" branch="false"/>
675
+ <line number="11" hits="0" branch="false"/>
676
+ <line number="13" hits="0" branch="true" condition-coverage="0% (0/2)"/>
677
+ <line number="14" hits="0" branch="false"/>
678
+ <line number="16" hits="0" branch="false"/>
679
+ <line number="17" hits="0" branch="false"/>
680
+ <line number="18" hits="0" branch="false"/>
681
+ <line number="20" hits="0" branch="false"/>
682
+ <line number="23" hits="0" branch="false"/>
683
+ <line number="24" hits="0" branch="false"/>
684
+ <line number="28" hits="0" branch="false"/>
685
+ <line number="29" hits="0" branch="false"/>
686
+ <line number="32" hits="0" branch="false"/>
687
+ <line number="34" hits="0" branch="false"/>
688
+ <line number="35" hits="0" branch="false"/>
689
+ <line number="37" hits="0" branch="false"/>
690
+ <line number="38" hits="0" branch="false"/>
691
+ <line number="39" hits="0" branch="false"/>
692
+ <line number="41" hits="0" branch="false"/>
693
+ <line number="42" hits="0" branch="true" condition-coverage="0% (0/2)"/>
694
+ <line number="43" hits="0" branch="false"/>
695
+ <line number="46" hits="0" branch="false"/>
696
+ <line number="47" hits="0" branch="false"/>
697
+ <line number="48" hits="0" branch="true" condition-coverage="0% (0/4)"/>
698
+ <line number="49" hits="0" branch="false"/>
699
+ <line number="52" hits="0" branch="false"/>
700
+ <line number="53" hits="0" branch="false"/>
701
+ <line number="54" hits="0" branch="false"/>
702
+ <line number="61" hits="0" branch="false"/>
703
+ <line number="62" hits="0" branch="false"/>
704
+ <line number="63" hits="0" branch="false"/>
705
+ <line number="64" hits="0" branch="false"/>
706
+ <line number="67" hits="0" branch="false"/>
707
+ <line number="68" hits="0" branch="false"/>
708
+ <line number="69" hits="0" branch="false"/>
709
+ <line number="72" hits="0" branch="true" condition-coverage="0% (0/2)"/>
710
+ <line number="73" hits="0" branch="true" condition-coverage="0% (0/2)"/>
711
+ <line number="74" hits="0" branch="true" condition-coverage="0% (0/2)"/>
712
+ <line number="75" hits="0" branch="false"/>
713
+ <line number="76" hits="0" branch="false"/>
714
+ <line number="78" hits="0" branch="true" condition-coverage="0% (0/2)"/>
715
+ <line number="79" hits="0" branch="false"/>
716
+ <line number="80" hits="0" branch="false"/>
717
717
  </lines>
718
718
  </class>
719
719
  </classes>
@@ -729,17 +729,17 @@
729
729
  </method>
730
730
  <method name="(anonymous_1)" hits="1" signature="()V">
731
731
  <lines>
732
- <line number="16" hits="1"/>
732
+ <line number="18" hits="1"/>
733
733
  </lines>
734
734
  </method>
735
735
  <method name="(anonymous_2)" hits="1" signature="()V">
736
736
  <lines>
737
- <line number="19" hits="1"/>
737
+ <line number="21" hits="1"/>
738
738
  </lines>
739
739
  </method>
740
740
  <method name="(anonymous_3)" hits="0" signature="()V">
741
741
  <lines>
742
- <line number="21" hits="0"/>
742
+ <line number="24" hits="0"/>
743
743
  </lines>
744
744
  </method>
745
745
  </methods>
@@ -747,17 +747,17 @@
747
747
  <line number="1" hits="1" branch="false"/>
748
748
  <line number="3" hits="1" branch="false"/>
749
749
  <line number="5" hits="1" branch="false"/>
750
- <line number="6" hits="1" branch="false"/>
751
- <line number="8" hits="1" branch="false"/>
750
+ <line number="7" hits="1" branch="false"/>
752
751
  <line number="9" hits="1" branch="false"/>
753
- <line number="10" hits="1" branch="false"/>
754
752
  <line number="11" hits="1" branch="false"/>
753
+ <line number="12" hits="1" branch="false"/>
755
754
  <line number="13" hits="1" branch="false"/>
756
- <line number="14" hits="1" branch="false"/>
757
- <line number="17" hits="1" branch="false"/>
758
- <line number="20" hits="1" branch="false"/>
759
- <line number="21" hits="1" branch="false"/>
760
- <line number="22" hits="0" branch="false"/>
755
+ <line number="15" hits="1" branch="false"/>
756
+ <line number="16" hits="1" branch="false"/>
757
+ <line number="19" hits="1" branch="false"/>
758
+ <line number="22" hits="1" branch="false"/>
759
+ <line number="24" hits="1" branch="false"/>
760
+ <line number="25" hits="0" branch="false"/>
761
761
  </lines>
762
762
  </class>
763
763
  </classes>
@@ -837,27 +837,27 @@
837
837
  </class>
838
838
  </classes>
839
839
  </package>
840
- <package name="components.switch-state" line-rate="1" branch-rate="1">
840
+ <package name="components.switch-state" line-rate="0" branch-rate="1">
841
841
  <classes>
842
- <class name="switch-state.js" filename="src/components/switch-state/switch-state.js" line-rate="1" branch-rate="1">
842
+ <class name="switch-state.js" filename="src/components/switch-state/switch-state.js" line-rate="0" branch-rate="1">
843
843
  <methods>
844
- <method name="(anonymous_0)" hits="1" signature="()V">
844
+ <method name="(anonymous_0)" hits="0" signature="()V">
845
845
  <lines>
846
- <line number="2" hits="1"/>
846
+ <line number="2" hits="0"/>
847
847
  </lines>
848
848
  </method>
849
- <method name="(anonymous_1)" hits="1" signature="()V">
849
+ <method name="(anonymous_1)" hits="0" signature="()V">
850
850
  <lines>
851
- <line number="6" hits="1"/>
851
+ <line number="6" hits="0"/>
852
852
  </lines>
853
853
  </method>
854
854
  </methods>
855
855
  <lines>
856
- <line number="1" hits="1" branch="false"/>
857
- <line number="3" hits="1" branch="false"/>
858
- <line number="4" hits="1" branch="false"/>
859
- <line number="7" hits="1" branch="false"/>
860
- <line number="8" hits="1" branch="false"/>
856
+ <line number="1" hits="0" branch="false"/>
857
+ <line number="3" hits="0" branch="false"/>
858
+ <line number="4" hits="0" branch="false"/>
859
+ <line number="7" hits="0" branch="false"/>
860
+ <line number="8" hits="0" branch="false"/>
861
861
  </lines>
862
862
  </class>
863
863
  </classes>
@@ -913,72 +913,72 @@
913
913
  </method>
914
914
  <method name="(anonymous_9)" hits="0" signature="()V">
915
915
  <lines>
916
- <line number="85" hits="0"/>
916
+ <line number="91" hits="0"/>
917
917
  </lines>
918
918
  </method>
919
919
  <method name="(anonymous_10)" hits="0" signature="()V">
920
920
  <lines>
921
- <line number="88" hits="0"/>
921
+ <line number="94" hits="0"/>
922
922
  </lines>
923
923
  </method>
924
924
  <method name="(anonymous_11)" hits="0" signature="()V">
925
925
  <lines>
926
- <line number="94" hits="0"/>
926
+ <line number="101" hits="0"/>
927
927
  </lines>
928
928
  </method>
929
929
  <method name="(anonymous_12)" hits="0" signature="()V">
930
930
  <lines>
931
- <line number="100" hits="0"/>
931
+ <line number="108" hits="0"/>
932
932
  </lines>
933
933
  </method>
934
934
  <method name="(anonymous_13)" hits="0" signature="()V">
935
935
  <lines>
936
- <line number="104" hits="0"/>
936
+ <line number="113" hits="0"/>
937
937
  </lines>
938
938
  </method>
939
939
  <method name="(anonymous_14)" hits="0" signature="()V">
940
940
  <lines>
941
- <line number="107" hits="0"/>
941
+ <line number="116" hits="0"/>
942
942
  </lines>
943
943
  </method>
944
944
  <method name="(anonymous_15)" hits="0" signature="()V">
945
945
  <lines>
946
- <line number="110" hits="0"/>
946
+ <line number="119" hits="0"/>
947
947
  </lines>
948
948
  </method>
949
949
  <method name="(anonymous_16)" hits="0" signature="()V">
950
950
  <lines>
951
- <line number="119" hits="0"/>
951
+ <line number="130" hits="0"/>
952
952
  </lines>
953
953
  </method>
954
954
  <method name="(anonymous_17)" hits="0" signature="()V">
955
955
  <lines>
956
- <line number="125" hits="0"/>
956
+ <line number="136" hits="0"/>
957
957
  </lines>
958
958
  </method>
959
959
  <method name="(anonymous_18)" hits="0" signature="()V">
960
960
  <lines>
961
- <line number="126" hits="0"/>
961
+ <line number="137" hits="0"/>
962
962
  </lines>
963
963
  </method>
964
964
  <method name="(anonymous_19)" hits="0" signature="()V">
965
965
  <lines>
966
- <line number="132" hits="0"/>
966
+ <line number="143" hits="0"/>
967
967
  </lines>
968
968
  </method>
969
969
  <method name="(anonymous_20)" hits="0" signature="()V">
970
970
  <lines>
971
- <line number="133" hits="0"/>
971
+ <line number="144" hits="0"/>
972
972
  </lines>
973
973
  </method>
974
974
  <method name="(anonymous_21)" hits="0" signature="()V">
975
975
  <lines>
976
- <line number="137" hits="0"/>
976
+ <line number="148" hits="0"/>
977
977
  </lines>
978
978
  </method>
979
979
  <method name="(anonymous_22)" hits="0" signature="()V">
980
980
  <lines>
981
- <line number="143" hits="0"/>
981
+ <line number="154" hits="0"/>
982
982
  </lines>
983
983
  </method>
984
984
  </methods>
@@ -1030,46 +1030,46 @@
1030
1030
  <line number="65" hits="0" branch="false"/>
1031
1031
  <line number="67" hits="0" branch="false"/>
1032
1032
  <line number="68" hits="0" branch="true" condition-coverage="0% (0/5)"/>
1033
- <line number="71" hits="0" branch="false"/>
1034
- <line number="72" hits="0" branch="false"/>
1035
1033
  <line number="73" hits="0" branch="false"/>
1036
- <line number="76" hits="0" branch="false"/>
1037
- <line number="77" hits="0" branch="false"/>
1038
- <line number="78" hits="0" branch="false"/>
1039
- <line number="80" hits="0" branch="false"/>
1034
+ <line number="74" hits="0" branch="false"/>
1035
+ <line number="75" hits="0" branch="false"/>
1036
+ <line number="81" hits="0" branch="false"/>
1037
+ <line number="82" hits="0" branch="false"/>
1038
+ <line number="83" hits="0" branch="false"/>
1040
1039
  <line number="86" hits="0" branch="false"/>
1041
- <line number="89" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1042
- <line number="90" hits="0" branch="false"/>
1043
1040
  <line number="92" hits="0" branch="false"/>
1044
1041
  <line number="95" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1045
1042
  <line number="96" hits="0" branch="false"/>
1046
- <line number="98" hits="0" branch="false"/>
1047
- <line number="101" hits="0" branch="false"/>
1048
- <line number="102" hits="0" branch="false"/>
1049
- <line number="105" hits="0" branch="false"/>
1050
- <line number="108" hits="0" branch="false"/>
1043
+ <line number="99" hits="0" branch="false"/>
1044
+ <line number="102" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1045
+ <line number="103" hits="0" branch="false"/>
1046
+ <line number="106" hits="0" branch="false"/>
1047
+ <line number="109" hits="0" branch="false"/>
1051
1048
  <line number="111" hits="0" branch="false"/>
1052
- <line number="112" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1053
- <line number="113" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1054
1049
  <line number="114" hits="0" branch="false"/>
1055
- <line number="115" hits="0" branch="false"/>
1056
- <line number="116" hits="0" branch="false"/>
1050
+ <line number="117" hits="0" branch="false"/>
1057
1051
  <line number="120" hits="0" branch="false"/>
1058
- <line number="121" hits="0" branch="false"/>
1059
- <line number="122" hits="0" branch="false"/>
1060
- <line number="123" hits="0" branch="false"/>
1061
- <line number="126" hits="0" branch="false"/>
1052
+ <line number="121" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1053
+ <line number="123" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1054
+ <line number="124" hits="0" branch="false"/>
1055
+ <line number="125" hits="0" branch="false"/>
1062
1056
  <line number="127" hits="0" branch="false"/>
1063
- <line number="128" hits="0" branch="false"/>
1064
- <line number="129" hits="0" branch="false"/>
1057
+ <line number="131" hits="0" branch="false"/>
1058
+ <line number="132" hits="0" branch="false"/>
1065
1059
  <line number="133" hits="0" branch="false"/>
1066
1060
  <line number="134" hits="0" branch="false"/>
1061
+ <line number="137" hits="0" branch="false"/>
1067
1062
  <line number="138" hits="0" branch="false"/>
1068
1063
  <line number="139" hits="0" branch="false"/>
1069
1064
  <line number="140" hits="0" branch="false"/>
1070
- <line number="141" hits="0" branch="false"/>
1071
1065
  <line number="144" hits="0" branch="false"/>
1072
1066
  <line number="145" hits="0" branch="false"/>
1067
+ <line number="149" hits="0" branch="false"/>
1068
+ <line number="150" hits="0" branch="false"/>
1069
+ <line number="151" hits="0" branch="false"/>
1070
+ <line number="152" hits="0" branch="false"/>
1071
+ <line number="155" hits="0" branch="false"/>
1072
+ <line number="156" hits="0" branch="false"/>
1073
1073
  </lines>
1074
1074
  </class>
1075
1075
  </classes>
@@ -1167,64 +1167,64 @@
1167
1167
  </method>
1168
1168
  <method name="(anonymous_1)" hits="0" signature="()V">
1169
1169
  <lines>
1170
- <line number="9" hits="0"/>
1170
+ <line number="11" hits="0"/>
1171
1171
  </lines>
1172
1172
  </method>
1173
1173
  <method name="bindToApi" hits="0" signature="()V">
1174
1174
  <lines>
1175
- <line number="20" hits="0"/>
1175
+ <line number="22" hits="0"/>
1176
1176
  </lines>
1177
1177
  </method>
1178
1178
  <method name="(anonymous_3)" hits="0" signature="()V">
1179
1179
  <lines>
1180
- <line number="25" hits="0"/>
1180
+ <line number="29" hits="0"/>
1181
1181
  </lines>
1182
1182
  </method>
1183
1183
  <method name="(anonymous_4)" hits="0" signature="()V">
1184
1184
  <lines>
1185
- <line number="29" hits="0"/>
1185
+ <line number="34" hits="0"/>
1186
1186
  </lines>
1187
1187
  </method>
1188
1188
  <method name="(anonymous_5)" hits="0" signature="()V">
1189
1189
  <lines>
1190
- <line number="30" hits="0"/>
1190
+ <line number="35" hits="0"/>
1191
1191
  </lines>
1192
1192
  </method>
1193
1193
  <method name="(anonymous_6)" hits="0" signature="()V">
1194
1194
  <lines>
1195
- <line number="31" hits="0"/>
1195
+ <line number="36" hits="0"/>
1196
1196
  </lines>
1197
1197
  </method>
1198
1198
  <method name="(anonymous_7)" hits="0" signature="()V">
1199
1199
  <lines>
1200
- <line number="44" hits="0"/>
1200
+ <line number="50" hits="0"/>
1201
1201
  </lines>
1202
1202
  </method>
1203
1203
  </methods>
1204
1204
  <lines>
1205
1205
  <line number="1" hits="0" branch="false"/>
1206
1206
  <line number="4" hits="0" branch="false"/>
1207
- <line number="5" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1208
- <line number="6" hits="0" branch="false"/>
1207
+ <line number="6" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1209
1208
  <line number="7" hits="0" branch="false"/>
1210
1209
  <line number="8" hits="0" branch="false"/>
1211
1210
  <line number="9" hits="0" branch="false"/>
1212
- <line number="21" hits="0" branch="false"/>
1213
- <line number="22" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1211
+ <line number="11" hits="0" branch="false"/>
1214
1212
  <line number="23" hits="0" branch="false"/>
1215
- <line number="24" hits="0" branch="false"/>
1216
- <line number="25" hits="0" branch="false"/>
1213
+ <line number="25" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1217
1214
  <line number="26" hits="0" branch="false"/>
1218
- <line number="27" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1219
1215
  <line number="28" hits="0" branch="false"/>
1220
1216
  <line number="29" hits="0" branch="false"/>
1221
- <line number="31" hits="0" branch="false"/>
1222
- <line number="32" hits="0" branch="false"/>
1217
+ <line number="30" hits="0" branch="false"/>
1218
+ <line number="32" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1223
1219
  <line number="33" hits="0" branch="false"/>
1224
- <line number="37" hits="0" branch="false"/>
1220
+ <line number="34" hits="0" branch="false"/>
1221
+ <line number="36" hits="0" branch="false"/>
1222
+ <line number="38" hits="0" branch="false"/>
1223
+ <line number="39" hits="0" branch="false"/>
1225
1224
  <line number="43" hits="0" branch="false"/>
1226
- <line number="45" hits="0" branch="false"/>
1227
- <line number="46" hits="0" branch="false"/>
1225
+ <line number="49" hits="0" branch="false"/>
1226
+ <line number="51" hits="0" branch="false"/>
1227
+ <line number="52" hits="0" branch="false"/>
1228
1228
  </lines>
1229
1229
  </class>
1230
1230
  <class name="notification.js" filename="src/js/fractal-scripts/notification.js" line-rate="0" branch-rate="1">
@@ -1236,27 +1236,27 @@
1236
1236
  </method>
1237
1237
  <method name="(anonymous_1)" hits="0" signature="()V">
1238
1238
  <lines>
1239
- <line number="6" hits="0"/>
1239
+ <line number="7" hits="0"/>
1240
1240
  </lines>
1241
1241
  </method>
1242
1242
  <method name="(anonymous_2)" hits="0" signature="()V">
1243
1243
  <lines>
1244
- <line number="8" hits="0"/>
1244
+ <line number="10" hits="0"/>
1245
1245
  </lines>
1246
1246
  </method>
1247
1247
  </methods>
1248
1248
  <lines>
1249
1249
  <line number="3" hits="0" branch="false"/>
1250
1250
  <line number="5" hits="0" branch="false"/>
1251
- <line number="6" hits="0" branch="false"/>
1252
1251
  <line number="7" hits="0" branch="false"/>
1253
1252
  <line number="8" hits="0" branch="false"/>
1254
- <line number="9" hits="0" branch="false"/>
1255
1253
  <line number="10" hits="0" branch="false"/>
1256
1254
  <line number="11" hits="0" branch="false"/>
1257
1255
  <line number="12" hits="0" branch="false"/>
1258
1256
  <line number="13" hits="0" branch="false"/>
1259
1257
  <line number="14" hits="0" branch="false"/>
1258
+ <line number="15" hits="0" branch="false"/>
1259
+ <line number="17" hits="0" branch="false"/>
1260
1260
  </lines>
1261
1261
  </class>
1262
1262
  <class name="switch-state.js" filename="src/js/fractal-scripts/switch-state.js" line-rate="0" branch-rate="0">
@@ -1268,29 +1268,29 @@
1268
1268
  </method>
1269
1269
  <method name="(anonymous_1)" hits="0" signature="()V">
1270
1270
  <lines>
1271
- <line number="6" hits="0"/>
1271
+ <line number="7" hits="0"/>
1272
1272
  </lines>
1273
1273
  </method>
1274
1274
  <method name="(anonymous_2)" hits="0" signature="()V">
1275
1275
  <lines>
1276
- <line number="8" hits="0"/>
1276
+ <line number="10" hits="0"/>
1277
1277
  </lines>
1278
1278
  </method>
1279
1279
  </methods>
1280
1280
  <lines>
1281
1281
  <line number="3" hits="0" branch="false"/>
1282
1282
  <line number="5" hits="0" branch="false"/>
1283
- <line number="6" hits="0" branch="false"/>
1284
1283
  <line number="7" hits="0" branch="false"/>
1285
1284
  <line number="8" hits="0" branch="false"/>
1286
- <line number="9" hits="0" branch="false"/>
1287
1285
  <line number="10" hits="0" branch="false"/>
1288
1286
  <line number="11" hits="0" branch="false"/>
1289
- <line number="12" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1287
+ <line number="12" hits="0" branch="false"/>
1290
1288
  <line number="13" hits="0" branch="false"/>
1291
- <line number="14" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1292
- <line number="15" hits="0" branch="false"/>
1293
- <line number="17" hits="0" branch="false"/>
1289
+ <line number="15" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1290
+ <line number="16" hits="0" branch="false"/>
1291
+ <line number="17" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1292
+ <line number="18" hits="0" branch="false"/>
1293
+ <line number="20" hits="0" branch="false"/>
1294
1294
  </lines>
1295
1295
  </class>
1296
1296
  </classes>
@@ -1301,27 +1301,27 @@
1301
1301
  <methods>
1302
1302
  <method name="(anonymous_0)" hits="0" signature="()V">
1303
1303
  <lines>
1304
- <line number="4" hits="0"/>
1304
+ <line number="5" hits="0"/>
1305
1305
  </lines>
1306
1306
  </method>
1307
1307
  </methods>
1308
1308
  <lines>
1309
- <line number="2" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1310
- <line number="3" hits="0" branch="false"/>
1311
- <line number="6" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1312
- <line number="7" hits="0" branch="false"/>
1313
- <line number="10" hits="0" branch="false"/>
1314
- <line number="13" hits="0" branch="false"/>
1315
- <line number="16" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1316
- <line number="17" hits="0" branch="false"/>
1317
- <line number="21" hits="0" branch="false"/>
1318
- <line number="24" hits="0" branch="false"/>
1319
- <line number="27" hits="0" branch="false"/>
1320
- <line number="32" hits="0" branch="false"/>
1321
- <line number="33" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1322
- <line number="34" hits="0" branch="false"/>
1323
- <line number="37" hits="0" branch="false"/>
1324
- <line number="41" hits="0" branch="false"/>
1309
+ <line number="3" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1310
+ <line number="4" hits="0" branch="false"/>
1311
+ <line number="7" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1312
+ <line number="8" hits="0" branch="false"/>
1313
+ <line number="11" hits="0" branch="false"/>
1314
+ <line number="14" hits="0" branch="false"/>
1315
+ <line number="17" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1316
+ <line number="18" hits="0" branch="false"/>
1317
+ <line number="22" hits="0" branch="false"/>
1318
+ <line number="25" hits="0" branch="false"/>
1319
+ <line number="28" hits="0" branch="false"/>
1320
+ <line number="33" hits="0" branch="false"/>
1321
+ <line number="35" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1322
+ <line number="36" hits="0" branch="false"/>
1323
+ <line number="40" hits="0" branch="false"/>
1324
+ <line number="44" hits="0" branch="false"/>
1325
1325
  </lines>
1326
1326
  </class>
1327
1327
  <class name="closest.js" filename="src/js/polyfills/closest.js" line-rate="0" branch-rate="0">
@@ -1341,7 +1341,7 @@
1341
1341
  <line number="10" hits="0" branch="false"/>
1342
1342
  <line number="11" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1343
1343
  <line number="12" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1344
- <line number="14" hits="0" branch="false"/>
1344
+ <line number="15" hits="0" branch="false"/>
1345
1345
  </lines>
1346
1346
  </class>
1347
1347
  <class name="objectAssign.js" filename="src/js/polyfills/objectAssign.js" line-rate="0" branch-rate="0">
@@ -1359,12 +1359,12 @@
1359
1359
  <line number="8" hits="0" branch="false"/>
1360
1360
  <line number="11" hits="0" branch="false"/>
1361
1361
  <line number="13" hits="0" branch="false"/>
1362
- <line number="14" hits="0" branch="false"/>
1363
- <line number="16" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1364
- <line number="17" hits="0" branch="false"/>
1365
- <line number="19" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1366
- <line number="20" hits="0" branch="false"/>
1367
- <line number="25" hits="0" branch="false"/>
1362
+ <line number="15" hits="0" branch="false"/>
1363
+ <line number="17" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1364
+ <line number="19" hits="0" branch="false"/>
1365
+ <line number="21" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1366
+ <line number="22" hits="0" branch="false"/>
1367
+ <line number="28" hits="0" branch="false"/>
1368
1368
  </lines>
1369
1369
  </class>
1370
1370
  <class name="remove.js" filename="src/js/polyfills/remove.js" line-rate="0" branch-rate="0">