@itwin/reports-config-widget-react 0.1.0 → 0.2.1

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 (250) hide show
  1. package/.rush/temp/package-deps_rebuild.json +38 -34
  2. package/.rush/temp/shrinkwrap-deps.json +14 -6
  3. package/CHANGELOG.json +30 -0
  4. package/CHANGELOG.md +17 -1
  5. package/coverage/clover.xml +605 -610
  6. package/coverage/coverage-final.json +28 -27
  7. package/coverage/lcov-report/index.html +31 -31
  8. package/coverage/lcov-report/src/ReportsConfigWidget.ts.html +10 -10
  9. package/coverage/lcov-report/src/index.html +1 -1
  10. package/coverage/lcov-report/src/test/index.html +1 -1
  11. package/coverage/lcov-report/src/test/test-utils.tsx.html +22 -22
  12. package/coverage/lcov-report/src/widget/ReportsConfigUiProvider.tsx.html +7 -7
  13. package/coverage/lcov-report/src/widget/components/ActionPanel.tsx.html +29 -41
  14. package/coverage/lcov-report/src/widget/components/AddMappingsModal.tsx.html +31 -37
  15. package/coverage/lcov-report/src/widget/components/BulkExtractor.ts.html +270 -162
  16. package/coverage/lcov-report/src/widget/components/Constants.ts.html +4 -4
  17. package/coverage/lcov-report/src/widget/components/DeleteModal.tsx.html +21 -21
  18. package/coverage/lcov-report/src/widget/components/ExtractionStates/FailedExtractionState.tsx.html +6 -6
  19. package/coverage/lcov-report/src/widget/components/ExtractionStates/QueuedExtractionState.tsx.html +14 -14
  20. package/coverage/lcov-report/src/widget/components/ExtractionStates/RunningExtractionState.tsx.html +15 -15
  21. package/coverage/lcov-report/src/widget/components/ExtractionStates/StartingExtractionState.tsx.html +14 -14
  22. package/coverage/lcov-report/src/widget/components/ExtractionStates/SucceededExtractionState.tsx.html +22 -19
  23. package/coverage/lcov-report/src/widget/components/ExtractionStates/index.html +43 -43
  24. package/coverage/lcov-report/src/widget/components/ExtractionStatus.tsx.html +57 -57
  25. package/coverage/lcov-report/src/widget/components/ExtractionToast.tsx.html +208 -0
  26. package/coverage/lcov-report/src/widget/components/HorizontalTile.tsx.html +8 -8
  27. package/coverage/lcov-report/src/widget/components/LocalizedTablePaginator.tsx.html +8 -8
  28. package/coverage/lcov-report/src/widget/components/ReportAction.tsx.html +14 -20
  29. package/coverage/lcov-report/src/widget/components/ReportHorizontalTile.tsx.html +30 -33
  30. package/coverage/lcov-report/src/widget/components/ReportMappingHorizontalTile.tsx.html +469 -0
  31. package/coverage/lcov-report/src/widget/components/ReportMappings.tsx.html +183 -231
  32. package/coverage/lcov-report/src/widget/components/Reports.tsx.html +73 -43
  33. package/coverage/lcov-report/src/widget/components/ReportsContainer.tsx.html +10 -10
  34. package/coverage/lcov-report/src/widget/components/SearchBar.tsx.html +10 -10
  35. package/coverage/lcov-report/src/widget/components/SelectIModel.tsx.html +31 -31
  36. package/coverage/lcov-report/src/widget/components/index.html +100 -85
  37. package/coverage/lcov-report/src/widget/components/utils.tsx.html +32 -32
  38. package/coverage/lcov-report/src/widget/context/ReportsApiConfigContext.tsx.html +8 -8
  39. package/coverage/lcov-report/src/widget/context/index.html +1 -1
  40. package/coverage/lcov-report/src/widget/hooks/index.html +1 -1
  41. package/coverage/lcov-report/src/widget/hooks/useValidator.ts.html +7 -7
  42. package/coverage/lcov-report/src/widget/index.html +1 -1
  43. package/coverage/lcov.info +990 -1003
  44. package/jest.config.js +6 -0
  45. package/lib/cjs/test/AddMappingModal.test.d.ts +2 -0
  46. package/lib/cjs/test/AddMappingModal.test.d.ts.map +1 -0
  47. package/lib/cjs/test/AddMappingModal.test.js +277 -0
  48. package/lib/cjs/test/AddMappingModal.test.js.map +1 -0
  49. package/lib/cjs/test/BulkExtractor.test.d.ts +2 -0
  50. package/lib/cjs/test/BulkExtractor.test.d.ts.map +1 -0
  51. package/lib/cjs/test/BulkExtractor.test.js +182 -0
  52. package/lib/cjs/test/BulkExtractor.test.js.map +1 -0
  53. package/lib/cjs/test/DeleteModal.test.d.ts +2 -0
  54. package/lib/cjs/test/DeleteModal.test.d.ts.map +1 -0
  55. package/lib/cjs/test/DeleteModal.test.js +93 -0
  56. package/lib/cjs/test/DeleteModal.test.js.map +1 -0
  57. package/lib/cjs/test/ReportAction.test.js +2 -3
  58. package/lib/cjs/test/ReportAction.test.js.map +1 -1
  59. package/lib/cjs/test/ReportMappingHorizontalTile.test.d.ts +2 -0
  60. package/lib/cjs/test/ReportMappingHorizontalTile.test.d.ts.map +1 -0
  61. package/lib/cjs/test/ReportMappingHorizontalTile.test.js +340 -0
  62. package/lib/cjs/test/ReportMappingHorizontalTile.test.js.map +1 -0
  63. package/lib/cjs/test/ReportMappings.test.js +115 -267
  64. package/lib/cjs/test/ReportMappings.test.js.map +1 -1
  65. package/lib/cjs/test/Reports.test.js +1 -1
  66. package/lib/cjs/test/Reports.test.js.map +1 -1
  67. package/lib/cjs/tsconfig.tsbuildinfo +1 -1
  68. package/lib/cjs/widget/components/ActionPanel.d.ts.map +1 -1
  69. package/lib/cjs/widget/components/ActionPanel.js +4 -5
  70. package/lib/cjs/widget/components/ActionPanel.js.map +1 -1
  71. package/lib/cjs/widget/components/AddMappingsModal.d.ts +2 -2
  72. package/lib/cjs/widget/components/AddMappingsModal.d.ts.map +1 -1
  73. package/lib/cjs/widget/components/AddMappingsModal.js +5 -4
  74. package/lib/cjs/widget/components/AddMappingsModal.js.map +1 -1
  75. package/lib/cjs/widget/components/AddMappingsModal.scss +4 -3
  76. package/lib/cjs/widget/components/BulkExtractor.d.ts +18 -9
  77. package/lib/cjs/widget/components/BulkExtractor.d.ts.map +1 -1
  78. package/lib/cjs/widget/components/BulkExtractor.js +86 -57
  79. package/lib/cjs/widget/components/BulkExtractor.js.map +1 -1
  80. package/lib/cjs/widget/components/DeleteModal.js +1 -1
  81. package/lib/cjs/widget/components/DeleteModal.js.map +1 -1
  82. package/lib/cjs/widget/components/DeleteModal.scss +4 -3
  83. package/lib/cjs/widget/components/ExtractionStates/RunningExtractionState.js +1 -1
  84. package/lib/cjs/widget/components/ExtractionStates/RunningExtractionState.js.map +1 -1
  85. package/lib/cjs/widget/components/ExtractionStates/SucceededExtractionState.d.ts.map +1 -1
  86. package/lib/cjs/widget/components/ExtractionStates/SucceededExtractionState.js +1 -1
  87. package/lib/cjs/widget/components/ExtractionStates/SucceededExtractionState.js.map +1 -1
  88. package/lib/cjs/widget/components/ExtractionStatus.scss +15 -1
  89. package/lib/cjs/widget/components/ExtractionToast.d.ts +11 -0
  90. package/lib/cjs/widget/components/ExtractionToast.d.ts.map +1 -0
  91. package/lib/cjs/widget/components/ExtractionToast.js +33 -0
  92. package/lib/cjs/widget/components/ExtractionToast.js.map +1 -0
  93. package/lib/cjs/widget/components/HorizontalTile.scss +1 -1
  94. package/lib/cjs/widget/components/ReportAction.d.ts.map +1 -1
  95. package/lib/cjs/widget/components/ReportAction.js +3 -3
  96. package/lib/cjs/widget/components/ReportAction.js.map +1 -1
  97. package/lib/cjs/widget/components/ReportAction.scss +2 -2
  98. package/lib/cjs/widget/components/ReportHorizontalTile.d.ts.map +1 -1
  99. package/lib/cjs/widget/components/ReportHorizontalTile.js +1 -2
  100. package/lib/cjs/widget/components/ReportHorizontalTile.js.map +1 -1
  101. package/lib/cjs/widget/components/ReportMappingHorizontalTile.d.ts +13 -0
  102. package/lib/cjs/widget/components/ReportMappingHorizontalTile.d.ts.map +1 -0
  103. package/lib/cjs/widget/components/ReportMappingHorizontalTile.js +82 -0
  104. package/lib/cjs/widget/components/ReportMappingHorizontalTile.js.map +1 -0
  105. package/lib/cjs/widget/components/ReportMappings.d.ts +3 -1
  106. package/lib/cjs/widget/components/ReportMappings.d.ts.map +1 -1
  107. package/lib/cjs/widget/components/ReportMappings.js +39 -40
  108. package/lib/cjs/widget/components/ReportMappings.js.map +1 -1
  109. package/lib/cjs/widget/components/ReportMappings.scss +7 -7
  110. package/lib/cjs/widget/components/Reports.d.ts.map +1 -1
  111. package/lib/cjs/widget/components/Reports.js +13 -6
  112. package/lib/cjs/widget/components/Reports.js.map +1 -1
  113. package/lib/cjs/widget/components/Reports.scss +1 -1
  114. package/lib/cjs/widget/components/ReportsContainer.js +1 -1
  115. package/lib/cjs/widget/components/ReportsContainer.js.map +1 -1
  116. package/lib/cjs/widget/components/ReportsContainer.scss +2 -2
  117. package/lib/cjs/widget/components/SelectIModel.js +2 -2
  118. package/lib/cjs/widget/components/SelectIModel.js.map +1 -1
  119. package/lib/cjs/widget/components/SelectIModel.scss +4 -3
  120. package/lib/cjs/widget/components/utils.js +1 -1
  121. package/lib/cjs/widget/components/utils.js.map +1 -1
  122. package/lib/cjs/widget/components/utils.scss +2 -2
  123. package/lib/esm/test/AddMappingModal.test.d.ts +2 -0
  124. package/lib/esm/test/AddMappingModal.test.d.ts.map +1 -0
  125. package/lib/esm/test/AddMappingModal.test.js +253 -0
  126. package/lib/esm/test/AddMappingModal.test.js.map +1 -0
  127. package/lib/esm/test/BulkExtractor.test.d.ts +2 -0
  128. package/lib/esm/test/BulkExtractor.test.d.ts.map +1 -0
  129. package/lib/esm/test/BulkExtractor.test.js +158 -0
  130. package/lib/esm/test/BulkExtractor.test.js.map +1 -0
  131. package/lib/esm/test/DeleteModal.test.d.ts +2 -0
  132. package/lib/esm/test/DeleteModal.test.d.ts.map +1 -0
  133. package/lib/esm/test/DeleteModal.test.js +69 -0
  134. package/lib/esm/test/DeleteModal.test.js.map +1 -0
  135. package/lib/esm/test/ReportAction.test.js +2 -3
  136. package/lib/esm/test/ReportAction.test.js.map +1 -1
  137. package/lib/esm/test/ReportMappingHorizontalTile.test.d.ts +2 -0
  138. package/lib/esm/test/ReportMappingHorizontalTile.test.d.ts.map +1 -0
  139. package/lib/esm/test/ReportMappingHorizontalTile.test.js +316 -0
  140. package/lib/esm/test/ReportMappingHorizontalTile.test.js.map +1 -0
  141. package/lib/esm/test/ReportMappings.test.js +117 -269
  142. package/lib/esm/test/ReportMappings.test.js.map +1 -1
  143. package/lib/esm/test/Reports.test.js +1 -1
  144. package/lib/esm/test/Reports.test.js.map +1 -1
  145. package/lib/esm/tsconfig.tsbuildinfo +1 -1
  146. package/lib/esm/widget/components/ActionPanel.d.ts.map +1 -1
  147. package/lib/esm/widget/components/ActionPanel.js +4 -5
  148. package/lib/esm/widget/components/ActionPanel.js.map +1 -1
  149. package/lib/esm/widget/components/AddMappingsModal.d.ts +2 -2
  150. package/lib/esm/widget/components/AddMappingsModal.d.ts.map +1 -1
  151. package/lib/esm/widget/components/AddMappingsModal.js +4 -5
  152. package/lib/esm/widget/components/AddMappingsModal.js.map +1 -1
  153. package/lib/esm/widget/components/AddMappingsModal.scss +4 -3
  154. package/lib/esm/widget/components/BulkExtractor.d.ts +18 -9
  155. package/lib/esm/widget/components/BulkExtractor.d.ts.map +1 -1
  156. package/lib/esm/widget/components/BulkExtractor.js +86 -57
  157. package/lib/esm/widget/components/BulkExtractor.js.map +1 -1
  158. package/lib/esm/widget/components/DeleteModal.js +1 -1
  159. package/lib/esm/widget/components/DeleteModal.js.map +1 -1
  160. package/lib/esm/widget/components/DeleteModal.scss +4 -3
  161. package/lib/esm/widget/components/ExtractionStates/RunningExtractionState.js +1 -1
  162. package/lib/esm/widget/components/ExtractionStates/RunningExtractionState.js.map +1 -1
  163. package/lib/esm/widget/components/ExtractionStates/SucceededExtractionState.d.ts.map +1 -1
  164. package/lib/esm/widget/components/ExtractionStates/SucceededExtractionState.js +1 -1
  165. package/lib/esm/widget/components/ExtractionStates/SucceededExtractionState.js.map +1 -1
  166. package/lib/esm/widget/components/ExtractionStatus.scss +15 -1
  167. package/lib/esm/widget/components/ExtractionToast.d.ts +11 -0
  168. package/lib/esm/widget/components/ExtractionToast.d.ts.map +1 -0
  169. package/lib/esm/widget/components/ExtractionToast.js +25 -0
  170. package/lib/esm/widget/components/ExtractionToast.js.map +1 -0
  171. package/lib/esm/widget/components/HorizontalTile.scss +1 -1
  172. package/lib/esm/widget/components/ReportAction.d.ts.map +1 -1
  173. package/lib/esm/widget/components/ReportAction.js +3 -3
  174. package/lib/esm/widget/components/ReportAction.js.map +1 -1
  175. package/lib/esm/widget/components/ReportAction.scss +2 -2
  176. package/lib/esm/widget/components/ReportHorizontalTile.d.ts.map +1 -1
  177. package/lib/esm/widget/components/ReportHorizontalTile.js +1 -2
  178. package/lib/esm/widget/components/ReportHorizontalTile.js.map +1 -1
  179. package/lib/esm/widget/components/ReportMappingHorizontalTile.d.ts +13 -0
  180. package/lib/esm/widget/components/ReportMappingHorizontalTile.d.ts.map +1 -0
  181. package/lib/esm/widget/components/ReportMappingHorizontalTile.js +75 -0
  182. package/lib/esm/widget/components/ReportMappingHorizontalTile.js.map +1 -0
  183. package/lib/esm/widget/components/ReportMappings.d.ts +3 -1
  184. package/lib/esm/widget/components/ReportMappings.d.ts.map +1 -1
  185. package/lib/esm/widget/components/ReportMappings.js +40 -41
  186. package/lib/esm/widget/components/ReportMappings.js.map +1 -1
  187. package/lib/esm/widget/components/ReportMappings.scss +7 -7
  188. package/lib/esm/widget/components/Reports.d.ts.map +1 -1
  189. package/lib/esm/widget/components/Reports.js +15 -8
  190. package/lib/esm/widget/components/Reports.js.map +1 -1
  191. package/lib/esm/widget/components/Reports.scss +1 -1
  192. package/lib/esm/widget/components/ReportsContainer.js +1 -1
  193. package/lib/esm/widget/components/ReportsContainer.js.map +1 -1
  194. package/lib/esm/widget/components/ReportsContainer.scss +2 -2
  195. package/lib/esm/widget/components/SelectIModel.js +2 -2
  196. package/lib/esm/widget/components/SelectIModel.js.map +1 -1
  197. package/lib/esm/widget/components/SelectIModel.scss +4 -3
  198. package/lib/esm/widget/components/utils.js +1 -1
  199. package/lib/esm/widget/components/utils.js.map +1 -1
  200. package/lib/esm/widget/components/utils.scss +2 -2
  201. package/lib/public/locales/en/ReportsConfigWidget.json +5 -0
  202. package/package.json +7 -4
  203. package/public/locales/en/ReportsConfigWidget.json +5 -0
  204. package/reports-config-widget-react.build.error.log +10 -6
  205. package/reports-config-widget-react.build.log +51 -46
  206. package/src/test/AddMappingModal.test.tsx +315 -0
  207. package/src/test/BulkExtractor.test.ts +301 -0
  208. package/src/test/DeleteModal.test.tsx +118 -0
  209. package/src/test/ReportAction.test.tsx +2 -4
  210. package/src/test/ReportMappingHorizontalTile.test.tsx +451 -0
  211. package/src/test/ReportMappings.test.tsx +154 -549
  212. package/src/test/Reports.test.tsx +1 -1
  213. package/src/widget/components/ActionPanel.tsx +19 -23
  214. package/src/widget/components/AddMappingsModal.scss +4 -3
  215. package/src/widget/components/AddMappingsModal.tsx +4 -6
  216. package/src/widget/components/BulkExtractor.ts +97 -61
  217. package/src/widget/components/DeleteModal.scss +4 -3
  218. package/src/widget/components/DeleteModal.tsx +1 -1
  219. package/src/widget/components/ExtractionStates/RunningExtractionState.tsx +1 -1
  220. package/src/widget/components/ExtractionStates/SucceededExtractionState.tsx +1 -0
  221. package/src/widget/components/ExtractionStatus.scss +15 -1
  222. package/src/widget/components/ExtractionToast.tsx +41 -0
  223. package/src/widget/components/HorizontalTile.scss +1 -1
  224. package/src/widget/components/ReportAction.scss +2 -2
  225. package/src/widget/components/ReportAction.tsx +1 -3
  226. package/src/widget/components/ReportHorizontalTile.tsx +1 -2
  227. package/src/widget/components/ReportMappingHorizontalTile.tsx +128 -0
  228. package/src/widget/components/ReportMappings.scss +7 -7
  229. package/src/widget/components/ReportMappings.tsx +89 -105
  230. package/src/widget/components/Reports.scss +1 -1
  231. package/src/widget/components/Reports.tsx +18 -8
  232. package/src/widget/components/ReportsContainer.scss +2 -2
  233. package/src/widget/components/ReportsContainer.tsx +1 -1
  234. package/src/widget/components/SelectIModel.scss +4 -3
  235. package/src/widget/components/SelectIModel.tsx +2 -2
  236. package/src/widget/components/utils.scss +2 -2
  237. package/src/widget/components/utils.tsx +1 -1
  238. package/coverage/lcov-report/src/widget/components/Extraction.tsx.html +0 -1030
  239. package/lib/cjs/widget/components/Extraction.d.ts +0 -28
  240. package/lib/cjs/widget/components/Extraction.d.ts.map +0 -1
  241. package/lib/cjs/widget/components/Extraction.js +0 -190
  242. package/lib/cjs/widget/components/Extraction.js.map +0 -1
  243. package/lib/cjs/widget/components/Extraction.scss +0 -39
  244. package/lib/esm/widget/components/Extraction.d.ts +0 -28
  245. package/lib/esm/widget/components/Extraction.d.ts.map +0 -1
  246. package/lib/esm/widget/components/Extraction.js +0 -166
  247. package/lib/esm/widget/components/Extraction.js.map +0 -1
  248. package/lib/esm/widget/components/Extraction.scss +0 -39
  249. package/src/widget/components/Extraction.scss +0 -39
  250. package/src/widget/components/Extraction.tsx +0 -315
@@ -1,59 +1,59 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1667243006059" clover="3.2.0">
3
- <project timestamp="1667243006060" name="All files">
4
- <metrics statements="735" coveredstatements="570" conditionals="301" coveredconditionals="188" methods="164" coveredmethods="116" elements="1200" coveredelements="874" complexity="0" loc="735" ncloc="735" packages="7" files="27" classes="27"/>
2
+ <coverage generated="1678204060319" clover="3.2.0">
3
+ <project timestamp="1678204060319" name="All files">
4
+ <metrics statements="727" coveredstatements="631" conditionals="279" coveredconditionals="184" methods="168" coveredmethods="134" elements="1174" coveredelements="949" complexity="0" loc="727" ncloc="727" packages="7" files="28" classes="28"/>
5
5
  <package name="src">
6
6
  <metrics statements="9" coveredstatements="9" conditionals="4" coveredconditionals="3" methods="4" coveredmethods="4"/>
7
7
  <file name="ReportsConfigWidget.ts" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/ReportsConfigWidget.ts">
8
8
  <metrics statements="9" coveredstatements="9" conditionals="4" coveredconditionals="3" methods="4" coveredmethods="4"/>
9
- <line num="6" count="4" type="stmt"/>
10
- <line num="8" count="4" type="stmt"/>
11
- <line num="13" count="3" type="stmt"/>
12
- <line num="17" count="5608" type="stmt"/>
13
- <line num="21" count="3" type="cond" truecount="3" falsecount="1"/>
14
- <line num="23" count="3" type="stmt"/>
15
- <line num="24" count="3" type="stmt"/>
16
- <line num="28" count="3" type="stmt"/>
17
- <line num="32" count="3" type="stmt"/>
9
+ <line num="6" count="8" type="stmt"/>
10
+ <line num="8" count="8" type="stmt"/>
11
+ <line num="13" count="5" type="stmt"/>
12
+ <line num="17" count="4981" type="stmt"/>
13
+ <line num="21" count="6" type="cond" truecount="3" falsecount="1"/>
14
+ <line num="23" count="6" type="stmt"/>
15
+ <line num="24" count="6" type="stmt"/>
16
+ <line num="28" count="6" type="stmt"/>
17
+ <line num="32" count="5" type="stmt"/>
18
18
  </file>
19
19
  </package>
20
20
  <package name="src.test">
21
21
  <metrics statements="21" coveredstatements="21" conditionals="3" coveredconditionals="2" methods="6" coveredmethods="6"/>
22
22
  <file name="test-utils.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/test/test-utils.tsx">
23
23
  <metrics statements="21" coveredstatements="21" conditionals="3" coveredconditionals="2" methods="6" coveredmethods="6"/>
24
- <line num="5" count="4" type="stmt"/>
25
- <line num="6" count="4" type="stmt"/>
26
- <line num="7" count="4" type="stmt"/>
27
- <line num="9" count="4" type="stmt"/>
28
- <line num="10" count="4" type="stmt"/>
29
- <line num="16" count="4" type="stmt"/>
30
- <line num="17" count="4" type="stmt"/>
31
- <line num="18" count="4" type="stmt"/>
32
- <line num="20" count="27" type="stmt"/>
33
- <line num="27" count="22" type="stmt"/>
34
- <line num="28" count="22" type="stmt"/>
35
- <line num="38" count="22" type="stmt"/>
36
- <line num="44" count="4" type="stmt"/>
37
- <line num="46" count="4" type="stmt"/>
38
- <line num="48" count="4" type="stmt"/>
39
- <line num="50" count="3" type="stmt"/>
40
- <line num="54" count="3" type="stmt"/>
41
- <line num="62" count="3" type="stmt"/>
42
- <line num="64" count="3" type="stmt"/>
43
- <line num="71" count="3" type="stmt"/>
44
- <line num="75" count="3" type="stmt"/>
24
+ <line num="5" count="7" type="stmt"/>
25
+ <line num="6" count="7" type="stmt"/>
26
+ <line num="7" count="7" type="stmt"/>
27
+ <line num="9" count="7" type="stmt"/>
28
+ <line num="10" count="7" type="stmt"/>
29
+ <line num="16" count="7" type="stmt"/>
30
+ <line num="17" count="7" type="stmt"/>
31
+ <line num="18" count="7" type="stmt"/>
32
+ <line num="20" count="28" type="stmt"/>
33
+ <line num="27" count="30" type="stmt"/>
34
+ <line num="28" count="30" type="stmt"/>
35
+ <line num="38" count="30" type="stmt"/>
36
+ <line num="44" count="7" type="stmt"/>
37
+ <line num="46" count="7" type="stmt"/>
38
+ <line num="48" count="7" type="stmt"/>
39
+ <line num="50" count="5" type="stmt"/>
40
+ <line num="54" count="5" type="stmt"/>
41
+ <line num="62" count="5" type="stmt"/>
42
+ <line num="64" count="5" type="stmt"/>
43
+ <line num="71" count="5" type="stmt"/>
44
+ <line num="75" count="5" type="stmt"/>
45
45
  </file>
46
46
  </package>
47
47
  <package name="src.widget">
48
48
  <metrics statements="15" coveredstatements="6" conditionals="5" coveredconditionals="0" methods="3" coveredmethods="0"/>
49
49
  <file name="ReportsConfigUiProvider.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/ReportsConfigUiProvider.tsx">
50
50
  <metrics statements="15" coveredstatements="6" conditionals="5" coveredconditionals="0" methods="3" coveredmethods="0"/>
51
- <line num="9" count="4" type="stmt"/>
52
- <line num="16" count="4" type="stmt"/>
53
- <line num="17" count="4" type="stmt"/>
54
- <line num="18" count="4" type="stmt"/>
55
- <line num="20" count="4" type="stmt"/>
56
- <line num="22" count="4" type="stmt"/>
51
+ <line num="9" count="7" type="stmt"/>
52
+ <line num="16" count="7" type="stmt"/>
53
+ <line num="17" count="7" type="stmt"/>
54
+ <line num="18" count="7" type="stmt"/>
55
+ <line num="20" count="7" type="stmt"/>
56
+ <line num="22" count="7" type="stmt"/>
57
57
  <line num="23" count="0" type="stmt"/>
58
58
  <line num="31" count="0" type="stmt"/>
59
59
  <line num="32" count="0" type="stmt"/>
@@ -66,31 +66,31 @@
66
66
  </file>
67
67
  </package>
68
68
  <package name="src.widget.components">
69
- <metrics statements="637" coveredstatements="488" conditionals="283" coveredconditionals="182" methods="139" coveredmethods="100"/>
69
+ <metrics statements="629" coveredstatements="545" conditionals="261" coveredconditionals="177" methods="143" coveredmethods="114"/>
70
70
  <file name="ActionPanel.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ActionPanel.tsx">
71
71
  <metrics statements="8" coveredstatements="8" conditionals="9" coveredconditionals="7" methods="1" coveredmethods="1"/>
72
- <line num="5" count="4" type="stmt"/>
73
- <line num="6" count="4" type="stmt"/>
74
- <line num="7" count="4" type="stmt"/>
75
- <line num="8" count="4" type="stmt"/>
76
- <line num="9" count="4" type="stmt"/>
77
- <line num="20" count="4" type="stmt"/>
78
- <line num="28" count="278" type="stmt"/>
79
- <line num="56" count="4" type="stmt"/>
72
+ <line num="5" count="7" type="stmt"/>
73
+ <line num="6" count="7" type="stmt"/>
74
+ <line num="7" count="7" type="stmt"/>
75
+ <line num="8" count="7" type="stmt"/>
76
+ <line num="9" count="7" type="stmt"/>
77
+ <line num="20" count="7" type="stmt"/>
78
+ <line num="28" count="275" type="stmt"/>
79
+ <line num="52" count="7" type="stmt"/>
80
80
  </file>
81
81
  <file name="AddMappingsModal.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/AddMappingsModal.tsx">
82
- <metrics statements="46" coveredstatements="43" conditionals="6" coveredconditionals="5" methods="9" coveredmethods="8"/>
83
- <line num="5" count="2" type="stmt"/>
84
- <line num="6" count="2" type="stmt"/>
85
- <line num="8" count="2" type="stmt"/>
86
- <line num="9" count="2" type="stmt"/>
87
- <line num="10" count="2" type="stmt"/>
88
- <line num="11" count="2" type="stmt"/>
89
- <line num="14" count="2" type="stmt"/>
90
- <line num="15" count="2" type="stmt"/>
91
- <line num="17" count="2" type="stmt"/>
92
- <line num="18" count="2" type="stmt"/>
93
- <line num="22" count="2" type="stmt"/>
82
+ <metrics statements="45" coveredstatements="42" conditionals="6" coveredconditionals="5" methods="9" coveredmethods="8"/>
83
+ <line num="5" count="5" type="stmt"/>
84
+ <line num="6" count="5" type="stmt"/>
85
+ <line num="8" count="5" type="stmt"/>
86
+ <line num="9" count="5" type="stmt"/>
87
+ <line num="10" count="5" type="stmt"/>
88
+ <line num="11" count="5" type="stmt"/>
89
+ <line num="14" count="5" type="stmt"/>
90
+ <line num="15" count="5" type="stmt"/>
91
+ <line num="17" count="5" type="stmt"/>
92
+ <line num="18" count="5" type="stmt"/>
93
+ <line num="22" count="5" type="stmt"/>
94
94
  <line num="28" count="1" type="stmt"/>
95
95
  <line num="29" count="1" type="stmt"/>
96
96
  <line num="30" count="1" type="stmt"/>
@@ -99,18 +99,18 @@
99
99
  <line num="38" count="1" type="stmt"/>
100
100
  <line num="40" count="0" type="stmt"/>
101
101
  <line num="42" count="1" type="stmt"/>
102
- <line num="53" count="2" type="stmt"/>
103
- <line num="59" count="99" type="stmt"/>
104
- <line num="60" count="99" type="stmt"/>
105
- <line num="61" count="99" type="stmt"/>
106
- <line num="62" count="99" type="stmt"/>
107
- <line num="63" count="99" type="stmt"/>
108
- <line num="65" count="99" type="stmt"/>
109
- <line num="66" count="7" type="cond" truecount="1" falsecount="0"/>
102
+ <line num="53" count="5" type="stmt"/>
103
+ <line num="59" count="8" type="stmt"/>
104
+ <line num="60" count="8" type="stmt"/>
105
+ <line num="61" count="8" type="stmt"/>
106
+ <line num="62" count="8" type="stmt"/>
107
+ <line num="63" count="8" type="stmt"/>
108
+ <line num="65" count="8" type="stmt"/>
109
+ <line num="66" count="2" type="cond" truecount="1" falsecount="0"/>
110
110
  <line num="67" count="1" type="stmt"/>
111
- <line num="76" count="99" type="stmt"/>
112
- <line num="77" count="6" type="stmt"/>
113
- <line num="103" count="99" type="stmt"/>
111
+ <line num="76" count="8" type="stmt"/>
112
+ <line num="77" count="1" type="stmt"/>
113
+ <line num="103" count="8" type="stmt"/>
114
114
  <line num="104" count="1" type="stmt"/>
115
115
  <line num="105" count="1" type="cond" truecount="0" falsecount="1"/>
116
116
  <line num="106" count="1" type="stmt"/>
@@ -121,109 +121,126 @@
121
121
  <line num="118" count="1" type="stmt"/>
122
122
  <line num="120" count="0" type="stmt"/>
123
123
  <line num="122" count="1" type="stmt"/>
124
- <line num="126" count="99" type="stmt"/>
124
+ <line num="126" count="8" type="stmt"/>
125
125
  <line num="134" count="0" type="stmt"/>
126
126
  <line num="154" count="153" type="stmt"/>
127
127
  <line num="157" count="1" type="cond" truecount="2" falsecount="0"/>
128
- <line num="175" count="2" type="stmt"/>
129
128
  </file>
130
129
  <file name="BulkExtractor.ts" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/BulkExtractor.ts">
131
- <metrics statements="78" coveredstatements="13" conditionals="13" coveredconditionals="0" methods="15" coveredmethods="1"/>
132
- <line num="5" count="4" type="stmt"/>
133
- <line num="7" count="4" type="stmt"/>
134
- <line num="9" count="4" type="stmt"/>
135
- <line num="10" count="4" type="stmt"/>
136
- <line num="18" count="4" type="stmt"/>
137
- <line num="19" count="15" type="stmt"/>
138
- <line num="23" count="15" type="stmt"/>
139
- <line num="24" count="15" type="stmt"/>
140
- <line num="28" count="15" type="stmt"/>
141
- <line num="29" count="15" type="stmt"/>
142
- <line num="30" count="15" type="stmt"/>
143
- <line num="31" count="15" type="stmt"/>
144
- <line num="32" count="15" type="stmt"/>
145
- <line num="36" count="0" type="stmt"/>
146
- <line num="37" count="0" type="stmt"/>
147
- <line num="39" count="0" type="stmt"/>
148
- <line num="40" count="0" type="stmt"/>
149
- <line num="41" count="0" type="cond" truecount="0" falsecount="1"/>
150
- <line num="42" count="0" type="stmt"/>
151
- <line num="43" count="0" type="stmt"/>
152
- <line num="46" count="0" type="stmt"/>
153
- <line num="47" count="0" type="stmt"/>
154
- <line num="48" count="0" type="stmt"/>
155
- <line num="49" count="0" type="cond" truecount="0" falsecount="2"/>
156
- <line num="50" count="0" type="stmt"/>
157
- <line num="52" count="0" type="stmt"/>
158
- <line num="53" count="0" type="stmt"/>
159
- <line num="54" count="0" type="stmt"/>
160
- <line num="57" count="0" type="stmt"/>
161
- <line num="58" count="0" type="stmt"/>
162
- <line num="60" count="0" type="stmt"/>
163
- <line num="64" count="0" type="stmt"/>
164
- <line num="68" count="0" type="cond" truecount="0" falsecount="1"/>
165
- <line num="69" count="0" type="stmt"/>
166
- <line num="70" count="0" type="stmt"/>
167
- <line num="72" count="0" type="stmt"/>
168
- <line num="75" count="0" type="cond" truecount="0" falsecount="4"/>
169
- <line num="79" count="0" type="stmt"/>
170
- <line num="83" count="0" type="cond" truecount="0" falsecount="1"/>
171
- <line num="84" count="0" type="stmt"/>
172
- <line num="86" count="0" type="cond" truecount="0" falsecount="1"/>
173
- <line num="87" count="0" type="stmt"/>
174
- <line num="89" count="0" type="cond" truecount="0" falsecount="1"/>
175
- <line num="90" count="0" type="stmt"/>
176
- <line num="92" count="0" type="cond" truecount="0" falsecount="1"/>
177
- <line num="93" count="0" type="stmt"/>
178
- <line num="95" count="0" type="stmt"/>
179
- <line num="99" count="0" type="stmt"/>
180
- <line num="100" count="0" type="stmt"/>
181
- <line num="101" count="0" type="stmt"/>
182
- <line num="103" count="0" type="stmt"/>
183
- <line num="105" count="0" type="stmt"/>
184
- <line num="109" count="0" type="stmt"/>
185
- <line num="110" count="0" type="stmt"/>
186
- <line num="111" count="0" type="stmt"/>
187
- <line num="112" count="0" type="stmt"/>
188
- <line num="113" count="0" type="stmt"/>
189
- <line num="115" count="0" type="stmt"/>
130
+ <metrics statements="96" coveredstatements="82" conditionals="21" coveredconditionals="16" methods="15" coveredmethods="13"/>
131
+ <line num="5" count="8" type="stmt"/>
132
+ <line num="7" count="8" type="stmt"/>
133
+ <line num="9" count="8" type="stmt"/>
134
+ <line num="10" count="8" type="stmt"/>
135
+ <line num="18" count="8" type="stmt"/>
136
+ <line num="23" count="19" type="stmt"/>
137
+ <line num="24" count="19" type="stmt"/>
138
+ <line num="25" count="19" type="stmt"/>
139
+ <line num="26" count="19" type="stmt"/>
140
+ <line num="27" count="19" type="stmt"/>
141
+ <line num="31" count="19" type="stmt"/>
142
+ <line num="38" count="19" type="stmt"/>
143
+ <line num="39" count="19" type="stmt"/>
144
+ <line num="40" count="19" type="stmt"/>
145
+ <line num="41" count="19" type="stmt"/>
146
+ <line num="42" count="19" type="stmt"/>
147
+ <line num="43" count="19" type="stmt"/>
148
+ <line num="47" count="17" type="stmt"/>
149
+ <line num="48" count="20" type="stmt"/>
150
+ <line num="49" count="20" type="cond" truecount="3" falsecount="0"/>
151
+ <line num="50" count="4" type="stmt"/>
152
+ <line num="52" count="20" type="stmt"/>
153
+ <line num="57" count="7" type="cond" truecount="1" falsecount="0"/>
154
+ <line num="58" count="7" type="stmt"/>
155
+ <line num="59" count="7" type="stmt"/>
156
+ <line num="62" count="7" type="stmt"/>
157
+ <line num="63" count="7" type="cond" truecount="1" falsecount="0"/>
158
+ <line num="64" count="6" type="stmt"/>
159
+ <line num="65" count="6" type="stmt"/>
160
+ <line num="66" count="8" type="stmt"/>
161
+ <line num="67" count="8" type="cond" truecount="0" falsecount="1"/>
162
+ <line num="68" count="8" type="stmt"/>
163
+ <line num="70" count="6" type="stmt"/>
164
+ <line num="74" count="10" type="cond" truecount="1" falsecount="0"/>
165
+ <line num="75" count="10" type="stmt"/>
166
+ <line num="76" count="10" type="stmt"/>
167
+ <line num="79" count="10" type="stmt"/>
168
+ <line num="80" count="10" type="cond" truecount="1" falsecount="0"/>
169
+ <line num="81" count="9" type="cond" truecount="1" falsecount="0"/>
170
+ <line num="82" count="9" type="cond" truecount="2" falsecount="0"/>
171
+ <line num="83" count="1" type="stmt"/>
172
+ <line num="84" count="1" type="stmt"/>
173
+ <line num="85" count="1" type="stmt"/>
174
+ <line num="86" count="8" type="cond" truecount="1" falsecount="0"/>
175
+ <line num="87" count="1" type="stmt"/>
176
+ <line num="88" count="1" type="stmt"/>
177
+ <line num="89" count="1" type="stmt"/>
178
+ <line num="92" count="9" type="stmt"/>
179
+ <line num="96" count="15" type="cond" truecount="1" falsecount="0"/>
180
+ <line num="97" count="2" type="stmt"/>
181
+ <line num="99" count="13" type="cond" truecount="1" falsecount="0"/>
182
+ <line num="100" count="5" type="stmt"/>
183
+ <line num="102" count="8" type="cond" truecount="1" falsecount="0"/>
184
+ <line num="103" count="6" type="stmt"/>
185
+ <line num="105" count="2" type="cond" truecount="1" falsecount="0"/>
186
+ <line num="106" count="2" type="stmt"/>
187
+ <line num="108" count="0" type="stmt"/>
188
+ <line num="112" count="20" type="stmt"/>
189
+ <line num="113" count="20" type="stmt"/>
190
+ <line num="114" count="20" type="stmt"/>
191
+ <line num="115" count="20" type="stmt"/>
190
192
  <line num="117" count="0" type="stmt"/>
191
- <line num="118" count="0" type="stmt"/>
192
193
  <line num="119" count="0" type="stmt"/>
193
- <line num="122" count="0" type="stmt"/>
194
- <line num="123" count="0" type="stmt"/>
194
+ <line num="123" count="14" type="cond" truecount="0" falsecount="1"/>
195
195
  <line num="124" count="0" type="stmt"/>
196
196
  <line num="125" count="0" type="stmt"/>
197
197
  <line num="126" count="0" type="stmt"/>
198
- <line num="127" count="0" type="stmt"/>
198
+ <line num="127" count="0" type="cond" truecount="0" falsecount="3"/>
199
199
  <line num="128" count="0" type="stmt"/>
200
- <line num="129" count="0" type="cond" truecount="0" falsecount="1"/>
201
- <line num="130" count="0" type="stmt"/>
202
200
  <line num="132" count="0" type="stmt"/>
203
- <line num="137" count="0" type="stmt"/>
204
- <line num="138" count="0" type="stmt"/>
205
- <line num="142" count="0" type="stmt"/>
206
- <line num="144" count="0" type="stmt"/>
207
- <line num="146" count="0" type="stmt"/>
208
- <line num="150" count="0" type="stmt"/>
209
- <line num="154" count="0" type="stmt"/>
201
+ <line num="137" count="5" type="stmt"/>
202
+ <line num="138" count="5" type="stmt"/>
203
+ <line num="139" count="5" type="stmt"/>
204
+ <line num="140" count="5" type="stmt"/>
205
+ <line num="141" count="5" type="stmt"/>
206
+ <line num="143" count="5" type="stmt"/>
207
+ <line num="145" count="5" type="stmt"/>
208
+ <line num="146" count="7" type="stmt"/>
209
+ <line num="151" count="12" type="stmt"/>
210
+ <line num="152" count="12" type="stmt"/>
211
+ <line num="156" count="12" type="stmt"/>
212
+ <line num="157" count="12" type="stmt"/>
213
+ <line num="159" count="0" type="stmt"/>
214
+ <line num="161" count="0" type="stmt"/>
215
+ <line num="165" count="3" type="stmt"/>
216
+ <line num="169" count="0" type="stmt"/>
217
+ <line num="170" count="0" type="stmt"/>
218
+ <line num="171" count="0" type="stmt"/>
219
+ <line num="175" count="11" type="stmt"/>
220
+ <line num="176" count="12" type="stmt"/>
221
+ <line num="177" count="12" type="cond" truecount="1" falsecount="0"/>
222
+ <line num="178" count="12" type="stmt"/>
223
+ <line num="179" count="12" type="stmt"/>
224
+ <line num="181" count="12" type="stmt"/>
225
+ <line num="186" count="5" type="stmt"/>
226
+ <line num="190" count="8" type="stmt"/>
210
227
  </file>
211
228
  <file name="Constants.ts" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/Constants.ts">
212
229
  <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
213
- <line num="5" count="4" type="stmt"/>
214
- <line num="6" count="4" type="stmt"/>
215
- <line num="7" count="4" type="stmt"/>
230
+ <line num="5" count="5" type="stmt"/>
231
+ <line num="6" count="5" type="stmt"/>
232
+ <line num="7" count="5" type="stmt"/>
216
233
  </file>
217
234
  <file name="DeleteModal.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/DeleteModal.tsx">
218
- <metrics statements="19" coveredstatements="16" conditionals="2" coveredconditionals="2" methods="4" coveredmethods="2"/>
219
- <line num="5" count="4" type="stmt"/>
220
- <line num="13" count="4" type="stmt"/>
221
- <line num="14" count="4" type="stmt"/>
222
- <line num="15" count="4" type="stmt"/>
223
- <line num="16" count="4" type="stmt"/>
224
- <line num="26" count="4" type="stmt"/>
225
- <line num="33" count="161" type="stmt"/>
226
- <line num="35" count="161" type="stmt"/>
235
+ <metrics statements="19" coveredstatements="17" conditionals="2" coveredconditionals="2" methods="4" coveredmethods="3"/>
236
+ <line num="5" count="7" type="stmt"/>
237
+ <line num="13" count="7" type="stmt"/>
238
+ <line num="14" count="7" type="stmt"/>
239
+ <line num="15" count="7" type="stmt"/>
240
+ <line num="16" count="7" type="stmt"/>
241
+ <line num="26" count="7" type="stmt"/>
242
+ <line num="33" count="149" type="stmt"/>
243
+ <line num="35" count="149" type="stmt"/>
227
244
  <line num="36" count="2" type="stmt"/>
228
245
  <line num="37" count="2" type="stmt"/>
229
246
  <line num="38" count="2" type="stmt"/>
@@ -231,176 +248,95 @@
231
248
  <line num="40" count="2" type="stmt"/>
232
249
  <line num="42" count="0" type="stmt"/>
233
250
  <line num="44" count="2" type="stmt"/>
234
- <line num="48" count="161" type="stmt"/>
251
+ <line num="48" count="149" type="stmt"/>
235
252
  <line num="56" count="0" type="stmt"/>
236
- <line num="87" count="0" type="stmt"/>
237
- <line num="100" count="4" type="stmt"/>
238
- </file>
239
- <file name="Extraction.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/Extraction.tsx">
240
- <metrics statements="91" coveredstatements="78" conditionals="39" coveredconditionals="31" methods="14" coveredmethods="12"/>
241
- <line num="6" count="2" type="stmt"/>
242
- <line num="12" count="2" type="stmt"/>
243
- <line num="13" count="2" type="stmt"/>
244
- <line num="14" count="2" type="stmt"/>
245
- <line num="15" count="2" type="stmt"/>
246
- <line num="16" count="2" type="stmt"/>
247
- <line num="17" count="2" type="stmt"/>
248
- <line num="23" count="2" type="stmt"/>
249
- <line num="24" count="2" type="stmt"/>
250
- <line num="26" count="2" type="stmt"/>
251
- <line num="28" count="2" type="cond" truecount="2" falsecount="0"/>
252
- <line num="29" count="2" type="stmt"/>
253
- <line num="30" count="2" type="stmt"/>
254
- <line num="31" count="2" type="stmt"/>
255
- <line num="32" count="2" type="stmt"/>
256
- <line num="33" count="2" type="stmt"/>
257
- <line num="34" count="2" type="stmt"/>
258
- <line num="35" count="2" type="stmt"/>
259
- <line num="43" count="2" type="stmt"/>
260
- <line num="48" count="156" type="stmt"/>
261
- <line num="50" count="156" type="stmt"/>
262
- <line num="51" count="0" type="cond" truecount="0" falsecount="1"/>
263
- <line num="52" count="0" type="stmt"/>
264
- <line num="53" count="0" type="stmt"/>
265
- <line num="57" count="156" type="stmt"/>
266
- <line num="59" count="27" type="cond" truecount="2" falsecount="0"/>
267
- <line num="62" count="2" type="stmt"/>
268
- <line num="64" count="27" type="stmt"/>
269
- <line num="67" count="156" type="cond" truecount="6" falsecount="1"/>
270
- <line num="69" count="3" type="stmt"/>
271
- <line num="82" count="2" type="stmt"/>
272
- <line num="93" count="2" type="stmt"/>
273
- <line num="106" count="2" type="stmt"/>
274
- <line num="117" count="4" type="stmt"/>
275
- <line num="138" count="0" type="stmt"/>
276
- <line num="159" count="143" type="stmt"/>
277
- <line num="171" count="2" type="stmt"/>
278
- <line num="178" count="95" type="stmt"/>
279
- <line num="179" count="95" type="stmt"/>
280
- <line num="180" count="95" type="stmt"/>
281
- <line num="181" count="95" type="stmt"/>
282
- <line num="182" count="95" type="stmt"/>
283
- <line num="184" count="95" type="stmt"/>
284
- <line num="185" count="1" type="stmt"/>
285
- <line num="186" count="1" type="stmt"/>
286
- <line num="187" count="1" type="stmt"/>
287
- <line num="188" count="1" type="stmt"/>
288
- <line num="191" count="1" type="stmt"/>
289
- <line num="192" count="1" type="stmt"/>
290
- <line num="196" count="1" type="stmt"/>
291
- <line num="197" count="1" type="stmt"/>
292
- <line num="198" count="1" type="stmt"/>
293
- <line num="200" count="0" type="stmt"/>
294
- <line num="201" count="0" type="stmt"/>
295
- <line num="202" count="0" type="stmt"/>
296
- <line num="203" count="0" type="stmt"/>
297
- <line num="207" count="95" type="stmt"/>
298
- <line num="208" count="8" type="cond" truecount="4" falsecount="0"/>
299
- <line num="209" count="1" type="stmt"/>
300
- <line num="210" count="3" type="stmt"/>
301
- <line num="213" count="3" type="stmt"/>
302
- <line num="214" count="3" type="stmt"/>
303
- <line num="218" count="3" type="cond" truecount="2" falsecount="0"/>
304
- <line num="219" count="1" type="stmt"/>
305
- <line num="220" count="2" type="cond" truecount="2" falsecount="0"/>
306
- <line num="221" count="1" type="stmt"/>
307
- <line num="222" count="1" type="cond" truecount="1" falsecount="1"/>
308
- <line num="223" count="1" type="stmt"/>
309
- <line num="224" count="1" type="stmt"/>
310
- <line num="225" count="1" type="stmt"/>
311
- <line num="226" count="0" type="cond" truecount="0" falsecount="1"/>
312
- <line num="227" count="0" type="stmt"/>
313
- <line num="228" count="0" type="stmt"/>
314
- <line num="229" count="0" type="stmt"/>
315
- <line num="232" count="1" type="stmt"/>
316
- <line num="233" count="7" type="cond" truecount="3" falsecount="0"/>
317
- <line num="234" count="7" type="stmt"/>
318
- <line num="235" count="7" type="stmt"/>
319
- <line num="237" count="8" type="stmt"/>
320
- <line num="240" count="95" type="stmt"/>
321
- <line num="241" count="19" type="stmt"/>
322
- <line num="243" count="19" type="stmt"/>
323
- <line num="244" count="25" type="stmt"/>
324
- <line num="252" count="19" type="stmt"/>
325
- <line num="255" count="95" type="stmt"/>
326
- <line num="270" count="1" type="stmt"/>
327
- <line num="271" count="1" type="cond" truecount="2" falsecount="0"/>
328
- <line num="288" count="8" type="cond" truecount="2" falsecount="1"/>
329
- <line num="290" count="3" type="stmt"/>
330
- <line num="295" count="0" type="stmt"/>
331
- <line num="300" count="5" type="stmt"/>
253
+ <line num="87" count="1" type="stmt"/>
254
+ <line num="100" count="7" type="stmt"/>
332
255
  </file>
333
256
  <file name="ExtractionStatus.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ExtractionStatus.tsx">
334
- <metrics statements="32" coveredstatements="17" conditionals="10" coveredconditionals="2" methods="6" coveredmethods="1"/>
335
- <line num="5" count="4" type="stmt"/>
336
- <line num="6" count="4" type="stmt"/>
337
- <line num="7" count="4" type="stmt"/>
338
- <line num="8" count="4" type="stmt"/>
339
- <line num="9" count="4" type="stmt"/>
340
- <line num="10" count="4" type="stmt"/>
341
- <line num="11" count="4" type="stmt"/>
342
- <line num="12" count="4" type="stmt"/>
343
- <line num="13" count="4" type="stmt"/>
344
- <line num="15" count="4" type="cond" truecount="2" falsecount="0"/>
345
- <line num="16" count="4" type="stmt"/>
346
- <line num="17" count="4" type="stmt"/>
347
- <line num="18" count="4" type="stmt"/>
348
- <line num="19" count="4" type="stmt"/>
349
- <line num="20" count="4" type="stmt"/>
350
- <line num="21" count="4" type="stmt"/>
351
- <line num="29" count="4" type="stmt"/>
352
- <line num="33" count="0" type="stmt"/>
353
- <line num="35" count="0" type="stmt"/>
354
- <line num="36" count="0" type="stmt"/>
355
- <line num="37" count="0" type="stmt"/>
356
- <line num="40" count="0" type="stmt"/>
357
- <line num="42" count="0" type="cond" truecount="0" falsecount="2"/>
358
- <line num="45" count="0" type="stmt"/>
359
- <line num="47" count="0" type="stmt"/>
360
- <line num="50" count="0" type="cond" truecount="0" falsecount="6"/>
361
- <line num="52" count="0" type="stmt"/>
362
- <line num="54" count="0" type="stmt"/>
363
- <line num="56" count="0" type="stmt"/>
364
- <line num="58" count="0" type="stmt"/>
257
+ <metrics statements="32" coveredstatements="31" conditionals="10" coveredconditionals="9" methods="6" coveredmethods="5"/>
258
+ <line num="5" count="8" type="stmt"/>
259
+ <line num="6" count="8" type="stmt"/>
260
+ <line num="7" count="8" type="stmt"/>
261
+ <line num="8" count="8" type="stmt"/>
262
+ <line num="9" count="8" type="stmt"/>
263
+ <line num="10" count="8" type="stmt"/>
264
+ <line num="11" count="8" type="stmt"/>
265
+ <line num="12" count="8" type="stmt"/>
266
+ <line num="13" count="8" type="stmt"/>
267
+ <line num="15" count="8" type="cond" truecount="2" falsecount="0"/>
268
+ <line num="16" count="8" type="stmt"/>
269
+ <line num="17" count="8" type="stmt"/>
270
+ <line num="18" count="8" type="stmt"/>
271
+ <line num="19" count="8" type="stmt"/>
272
+ <line num="20" count="8" type="stmt"/>
273
+ <line num="21" count="8" type="stmt"/>
274
+ <line num="29" count="8" type="stmt"/>
275
+ <line num="33" count="15" type="stmt"/>
276
+ <line num="35" count="15" type="stmt"/>
277
+ <line num="36" count="1" type="stmt"/>
278
+ <line num="37" count="1" type="stmt"/>
279
+ <line num="40" count="15" type="stmt"/>
280
+ <line num="42" count="10" type="cond" truecount="2" falsecount="0"/>
281
+ <line num="45" count="1" type="stmt"/>
282
+ <line num="47" count="10" type="stmt"/>
283
+ <line num="50" count="15" type="cond" truecount="5" falsecount="1"/>
284
+ <line num="52" count="8" type="stmt"/>
285
+ <line num="54" count="3" type="stmt"/>
286
+ <line num="56" count="2" type="stmt"/>
287
+ <line num="58" count="1" type="stmt"/>
365
288
  <line num="63" count="0" type="stmt"/>
366
- <line num="68" count="0" type="stmt"/>
289
+ <line num="68" count="1" type="stmt"/>
290
+ </file>
291
+ <file name="ExtractionToast.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ExtractionToast.tsx">
292
+ <metrics statements="10" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="3" coveredmethods="0"/>
293
+ <line num="5" count="7" type="stmt"/>
294
+ <line num="6" count="7" type="stmt"/>
295
+ <line num="7" count="7" type="stmt"/>
296
+ <line num="17" count="7" type="stmt"/>
297
+ <line num="18" count="0" type="stmt"/>
298
+ <line num="19" count="0" type="stmt"/>
299
+ <line num="20" count="0" type="stmt"/>
300
+ <line num="22" count="0" type="stmt"/>
301
+ <line num="35" count="7" type="stmt"/>
302
+ <line num="36" count="0" type="stmt"/>
367
303
  </file>
368
304
  <file name="HorizontalTile.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/HorizontalTile.tsx">
369
305
  <metrics statements="7" coveredstatements="7" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
370
- <line num="6" count="4" type="stmt"/>
371
- <line num="7" count="4" type="stmt"/>
372
- <line num="8" count="4" type="stmt"/>
373
- <line num="9" count="4" type="stmt"/>
374
- <line num="21" count="4" type="stmt"/>
375
- <line num="32" count="357" type="stmt"/>
376
- <line num="34" count="357" type="stmt"/>
306
+ <line num="6" count="7" type="stmt"/>
307
+ <line num="7" count="7" type="stmt"/>
308
+ <line num="8" count="7" type="stmt"/>
309
+ <line num="9" count="7" type="stmt"/>
310
+ <line num="21" count="7" type="stmt"/>
311
+ <line num="32" count="174" type="stmt"/>
312
+ <line num="34" count="174" type="stmt"/>
377
313
  </file>
378
314
  <file name="LocalizedTablePaginator.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/LocalizedTablePaginator.tsx">
379
315
  <metrics statements="11" coveredstatements="11" conditionals="2" coveredconditionals="1" methods="6" coveredmethods="6"/>
380
- <line num="6" count="2" type="stmt"/>
381
- <line num="7" count="2" type="stmt"/>
382
- <line num="8" count="2" type="stmt"/>
383
- <line num="10" count="2" type="stmt"/>
384
- <line num="11" count="41" type="stmt"/>
385
- <line num="12" count="41" type="stmt"/>
316
+ <line num="6" count="5" type="stmt"/>
317
+ <line num="7" count="5" type="stmt"/>
318
+ <line num="8" count="5" type="stmt"/>
319
+ <line num="10" count="5" type="stmt"/>
320
+ <line num="11" count="26" type="stmt"/>
321
+ <line num="12" count="26" type="stmt"/>
386
322
  <line num="13" count="1" type="stmt"/>
387
323
  <line num="15" count="21" type="stmt"/>
388
324
  <line num="25" count="7" type="cond" truecount="1" falsecount="1"/>
389
325
  <line num="41" count="2" type="stmt"/>
390
- <line num="52" count="41" type="stmt"/>
326
+ <line num="52" count="26" type="stmt"/>
391
327
  </file>
392
328
  <file name="ReportAction.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ReportAction.tsx">
393
329
  <metrics statements="35" coveredstatements="33" conditionals="27" coveredconditionals="22" methods="6" coveredmethods="6"/>
394
- <line num="5" count="4" type="stmt"/>
395
- <line num="6" count="4" type="stmt"/>
396
- <line num="7" count="4" type="stmt"/>
397
- <line num="8" count="4" type="stmt"/>
398
- <line num="9" count="4" type="stmt"/>
399
- <line num="15" count="4" type="stmt"/>
400
- <line num="17" count="4" type="stmt"/>
401
- <line num="18" count="4" type="stmt"/>
402
- <line num="19" count="4" type="stmt"/>
403
- <line num="27" count="4" type="stmt"/>
330
+ <line num="5" count="7" type="stmt"/>
331
+ <line num="6" count="7" type="stmt"/>
332
+ <line num="7" count="7" type="stmt"/>
333
+ <line num="8" count="7" type="stmt"/>
334
+ <line num="9" count="7" type="stmt"/>
335
+ <line num="15" count="7" type="stmt"/>
336
+ <line num="17" count="7" type="stmt"/>
337
+ <line num="18" count="7" type="stmt"/>
338
+ <line num="19" count="7" type="stmt"/>
339
+ <line num="27" count="7" type="stmt"/>
404
340
  <line num="28" count="267" type="stmt"/>
405
341
  <line num="29" count="267" type="stmt"/>
406
342
  <line num="33" count="267" type="stmt"/>
@@ -419,38 +355,38 @@
419
355
  <line num="60" count="0" type="stmt"/>
420
356
  <line num="62" count="5" type="stmt"/>
421
357
  <line num="66" count="267" type="stmt"/>
358
+ <line num="101" count="230" type="stmt"/>
422
359
  <line num="102" count="230" type="stmt"/>
423
- <line num="103" count="230" type="stmt"/>
424
- <line num="112" count="5" type="stmt"/>
360
+ <line num="111" count="5" type="stmt"/>
361
+ <line num="114" count="5" type="stmt"/>
425
362
  <line num="115" count="5" type="stmt"/>
426
- <line num="116" count="5" type="stmt"/>
427
- <line num="127" count="16" type="stmt"/>
428
- <line num="146" count="4" type="stmt"/>
363
+ <line num="125" count="16" type="stmt"/>
364
+ <line num="144" count="7" type="stmt"/>
429
365
  </file>
430
366
  <file name="ReportHorizontalTile.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ReportHorizontalTile.tsx">
431
- <metrics statements="39" coveredstatements="27" conditionals="25" coveredconditionals="14" methods="11" coveredmethods="8"/>
432
- <line num="5" count="4" type="stmt"/>
433
- <line num="6" count="4" type="stmt"/>
434
- <line num="8" count="4" type="stmt"/>
435
- <line num="10" count="4" type="stmt"/>
436
- <line num="12" count="4" type="stmt"/>
437
- <line num="13" count="4" type="stmt"/>
438
- <line num="18" count="4" type="stmt"/>
439
- <line num="23" count="4" type="stmt"/>
440
- <line num="36" count="4" type="stmt"/>
441
- <line num="37" count="209" type="stmt"/>
442
- <line num="38" count="209" type="stmt"/>
443
- <line num="39" count="209" type="stmt"/>
444
- <line num="41" count="209" type="stmt"/>
445
- <line num="42" count="29" type="stmt"/>
367
+ <metrics statements="38" coveredstatements="27" conditionals="25" coveredconditionals="14" methods="11" coveredmethods="8"/>
368
+ <line num="5" count="7" type="stmt"/>
369
+ <line num="6" count="7" type="stmt"/>
370
+ <line num="8" count="7" type="stmt"/>
371
+ <line num="10" count="7" type="stmt"/>
372
+ <line num="12" count="7" type="stmt"/>
373
+ <line num="13" count="7" type="stmt"/>
374
+ <line num="18" count="7" type="stmt"/>
375
+ <line num="23" count="7" type="stmt"/>
376
+ <line num="36" count="7" type="stmt"/>
377
+ <line num="37" count="146" type="stmt"/>
378
+ <line num="38" count="146" type="stmt"/>
379
+ <line num="39" count="146" type="stmt"/>
380
+ <line num="41" count="146" type="stmt"/>
381
+ <line num="42" count="26" type="stmt"/>
446
382
  <line num="43" count="0" type="cond" truecount="0" falsecount="1"/>
447
383
  <line num="44" count="0" type="stmt"/>
448
384
  <line num="45" count="0" type="stmt"/>
449
- <line num="48" count="29" type="stmt"/>
450
- <line num="50" count="29" type="stmt"/>
451
- <line num="51" count="29" type="stmt"/>
452
- <line num="55" count="209" type="stmt"/>
453
- <line num="56" count="29" type="cond" truecount="0" falsecount="1"/>
385
+ <line num="48" count="26" type="stmt"/>
386
+ <line num="50" count="26" type="stmt"/>
387
+ <line num="51" count="26" type="stmt"/>
388
+ <line num="55" count="146" type="stmt"/>
389
+ <line num="56" count="26" type="cond" truecount="0" falsecount="1"/>
454
390
  <line num="57" count="0" type="stmt"/>
455
391
  <line num="58" count="0" type="stmt"/>
456
392
  <line num="59" count="0" type="stmt"/>
@@ -458,214 +394,273 @@
458
394
  <line num="61" count="0" type="stmt"/>
459
395
  <line num="62" count="0" type="cond" truecount="0" falsecount="3"/>
460
396
  <line num="63" count="0" type="stmt"/>
461
- <line num="68" count="29" type="stmt"/>
462
- <line num="71" count="209" type="stmt"/>
397
+ <line num="68" count="26" type="stmt"/>
398
+ <line num="71" count="146" type="stmt"/>
463
399
  <line num="72" count="4" type="cond" truecount="7" falsecount="2"/>
464
400
  <line num="73" count="4" type="stmt"/>
465
- <line num="77" count="209" type="stmt"/>
466
- <line num="91" count="209" type="stmt"/>
401
+ <line num="77" count="146" type="stmt"/>
402
+ <line num="91" count="146" type="stmt"/>
467
403
  <line num="104" count="1" type="stmt"/>
468
404
  <line num="105" count="1" type="stmt"/>
469
405
  <line num="124" count="0" type="stmt"/>
470
- <line num="125" count="0" type="stmt"/>
406
+ </file>
407
+ <file name="ReportMappingHorizontalTile.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ReportMappingHorizontalTile.tsx">
408
+ <metrics statements="47" coveredstatements="44" conditionals="10" coveredconditionals="10" methods="12" coveredmethods="11"/>
409
+ <line num="5" count="4" type="stmt"/>
410
+ <line num="6" count="4" type="stmt"/>
411
+ <line num="8" count="4" type="stmt"/>
412
+ <line num="10" count="4" type="stmt"/>
413
+ <line num="11" count="4" type="stmt"/>
414
+ <line num="12" count="4" type="stmt"/>
415
+ <line num="13" count="4" type="stmt"/>
416
+ <line num="17" count="4" type="stmt"/>
417
+ <line num="28" count="4" type="stmt"/>
418
+ <line num="29" count="38" type="stmt"/>
419
+ <line num="30" count="38" type="stmt"/>
420
+ <line num="31" count="38" type="stmt"/>
421
+ <line num="32" count="38" type="stmt"/>
422
+ <line num="34" count="38" type="stmt"/>
423
+ <line num="35" count="6" type="stmt"/>
424
+ <line num="36" count="4" type="cond" truecount="1" falsecount="0"/>
425
+ <line num="37" count="4" type="stmt"/>
426
+ <line num="38" count="4" type="stmt"/>
427
+ <line num="41" count="6" type="stmt"/>
428
+ <line num="43" count="6" type="stmt"/>
429
+ <line num="44" count="6" type="stmt"/>
430
+ <line num="48" count="38" type="stmt"/>
431
+ <line num="49" count="13" type="stmt"/>
432
+ <line num="50" count="13" type="cond" truecount="5" falsecount="0"/>
433
+ <line num="51" count="7" type="stmt"/>
434
+ <line num="52" count="7" type="cond" truecount="1" falsecount="0"/>
435
+ <line num="53" count="6" type="stmt"/>
436
+ <line num="54" count="6" type="stmt"/>
437
+ <line num="55" count="6" type="stmt"/>
438
+ <line num="58" count="6" type="stmt"/>
439
+ <line num="60" count="7" type="stmt"/>
440
+ <line num="63" count="38" type="stmt"/>
441
+ <line num="64" count="17" type="cond" truecount="1" falsecount="0"/>
442
+ <line num="65" count="10" type="stmt"/>
443
+ <line num="66" count="0" type="stmt"/>
444
+ <line num="67" count="0" type="stmt"/>
445
+ <line num="69" count="0" type="stmt"/>
446
+ <line num="71" count="10" type="stmt"/>
447
+ <line num="72" count="10" type="stmt"/>
448
+ <line num="73" count="3" type="stmt"/>
449
+ <line num="76" count="17" type="stmt"/>
450
+ <line num="79" count="38" type="stmt"/>
451
+ <line num="96" count="3" type="stmt"/>
452
+ <line num="97" count="3" type="stmt"/>
453
+ <line num="98" count="3" type="stmt"/>
454
+ <line num="108" count="1" type="stmt"/>
455
+ <line num="118" count="1" type="stmt"/>
471
456
  </file>
472
457
  <file name="ReportMappings.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ReportMappings.tsx">
473
- <metrics statements="81" coveredstatements="78" conditionals="38" coveredconditionals="28" methods="18" coveredmethods="17"/>
474
- <line num="5" count="2" type="stmt"/>
475
- <line num="11" count="2" type="stmt"/>
476
- <line num="21" count="2" type="stmt"/>
477
- <line num="23" count="2" type="stmt"/>
478
- <line num="30" count="2" type="stmt"/>
479
- <line num="31" count="2" type="stmt"/>
480
- <line num="33" count="2" type="stmt"/>
481
- <line num="34" count="2" type="stmt"/>
482
- <line num="39" count="2" type="stmt"/>
483
- <line num="40" count="2" type="stmt"/>
484
- <line num="41" count="2" type="stmt"/>
485
- <line num="42" count="2" type="stmt"/>
486
- <line num="43" count="2" type="stmt"/>
487
- <line num="45" count="2" type="stmt"/>
488
- <line num="46" count="2" type="stmt"/>
489
- <line num="56" count="2" type="cond" truecount="2" falsecount="0"/>
490
- <line num="57" count="2" type="stmt"/>
491
- <line num="58" count="2" type="stmt"/>
492
- <line num="61" count="2" type="stmt"/>
493
- <line num="67" count="8" type="stmt"/>
494
- <line num="68" count="8" type="stmt"/>
495
- <line num="69" count="8" type="stmt"/>
496
- <line num="72" count="8" type="stmt"/>
497
- <line num="75" count="8" type="stmt"/>
498
- <line num="76" count="8" type="stmt"/>
499
- <line num="80" count="8" type="stmt"/>
500
- <line num="84" count="8" type="stmt"/>
501
- <line num="86" count="8" type="stmt"/>
502
- <line num="87" count="8" type="stmt"/>
503
- <line num="88" count="8" type="stmt"/>
504
- <line num="90" count="15" type="stmt"/>
505
- <line num="91" count="15" type="stmt"/>
506
- <line num="92" count="15" type="stmt"/>
507
- <line num="97" count="15" type="cond" truecount="1" falsecount="1"/>
508
- <line num="98" count="0" type="cond" truecount="0" falsecount="4"/>
509
- <line num="100" count="15" type="stmt"/>
510
- <line num="104" count="15" type="stmt"/>
511
- <line num="105" count="15" type="stmt"/>
512
- <line num="106" count="15" type="stmt"/>
513
- <line num="108" count="15" type="stmt"/>
514
- <line num="114" count="15" type="stmt"/>
515
- <line num="118" count="8" type="stmt"/>
516
- <line num="120" count="0" type="stmt"/>
517
- <line num="122" count="8" type="stmt"/>
518
- <line num="131" count="2" type="stmt"/>
519
- <line num="132" count="92" type="stmt"/>
520
- <line num="134" count="92" type="stmt"/>
521
- <line num="135" count="92" type="stmt"/>
522
- <line num="136" count="92" type="stmt"/>
523
- <line num="137" count="92" type="stmt"/>
524
- <line num="139" count="92" type="stmt"/>
525
- <line num="142" count="92" type="stmt"/>
526
- <line num="143" count="92" type="stmt"/>
527
- <line num="144" count="92" type="stmt"/>
528
- <line num="146" count="92" type="stmt"/>
529
- <line num="147" count="6" type="stmt"/>
530
- <line num="155" count="92" type="stmt"/>
531
- <line num="156" count="2" type="stmt"/>
532
- <line num="157" count="2" type="stmt"/>
533
- <line num="165" count="92" type="stmt"/>
534
- <line num="166" count="1" type="stmt"/>
535
- <line num="169" count="92" type="stmt"/>
536
- <line num="171" count="14" type="stmt"/>
537
- <line num="172" count="15" type="stmt"/>
538
- <line num="180" count="92" type="stmt"/>
539
- <line num="185" count="92" type="stmt"/>
540
- <line num="187" count="73" type="stmt"/>
541
- <line num="188" count="133" type="stmt"/>
542
- <line num="196" count="92" type="stmt"/>
543
- <line num="214" count="1" type="stmt"/>
544
- <line num="215" count="1" type="stmt"/>
545
- <line num="239" count="1" type="stmt"/>
546
- <line num="265" count="0" type="stmt"/>
547
- <line num="276" count="148" type="stmt"/>
548
- <line num="290" count="143" type="stmt"/>
549
- <line num="294" count="1" type="stmt"/>
550
- <line num="295" count="1" type="stmt"/>
551
- <line num="296" count="1" type="stmt"/>
552
- <line num="333" count="1" type="stmt"/>
553
- <line num="336" count="1" type="stmt"/>
554
- <line num="337" count="1" type="stmt"/>
458
+ <metrics statements="86" coveredstatements="79" conditionals="37" coveredconditionals="21" methods="20" coveredmethods="17"/>
459
+ <line num="5" count="5" type="stmt"/>
460
+ <line num="9" count="5" type="stmt"/>
461
+ <line num="17" count="5" type="stmt"/>
462
+ <line num="19" count="5" type="stmt"/>
463
+ <line num="26" count="5" type="stmt"/>
464
+ <line num="27" count="5" type="stmt"/>
465
+ <line num="29" count="5" type="stmt"/>
466
+ <line num="30" count="5" type="stmt"/>
467
+ <line num="35" count="5" type="stmt"/>
468
+ <line num="36" count="5" type="stmt"/>
469
+ <line num="37" count="5" type="stmt"/>
470
+ <line num="39" count="5" type="stmt"/>
471
+ <line num="40" count="5" type="stmt"/>
472
+ <line num="41" count="5" type="stmt"/>
473
+ <line num="43" count="5" type="stmt"/>
474
+ <line num="44" count="5" type="stmt"/>
475
+ <line num="54" count="5" type="cond" truecount="2" falsecount="0"/>
476
+ <line num="55" count="5" type="stmt"/>
477
+ <line num="56" count="5" type="stmt"/>
478
+ <line num="59" count="5" type="stmt"/>
479
+ <line num="65" count="6" type="stmt"/>
480
+ <line num="66" count="6" type="stmt"/>
481
+ <line num="67" count="6" type="stmt"/>
482
+ <line num="70" count="6" type="stmt"/>
483
+ <line num="73" count="6" type="stmt"/>
484
+ <line num="74" count="6" type="stmt"/>
485
+ <line num="78" count="6" type="stmt"/>
486
+ <line num="82" count="6" type="stmt"/>
487
+ <line num="84" count="6" type="stmt"/>
488
+ <line num="85" count="6" type="stmt"/>
489
+ <line num="87" count="6" type="stmt"/>
490
+ <line num="88" count="6" type="stmt"/>
491
+ <line num="89" count="8" type="stmt"/>
492
+ <line num="90" count="8" type="stmt"/>
493
+ <line num="91" count="8" type="stmt"/>
494
+ <line num="96" count="8" type="cond" truecount="1" falsecount="1"/>
495
+ <line num="97" count="0" type="cond" truecount="0" falsecount="4"/>
496
+ <line num="99" count="8" type="stmt"/>
497
+ <line num="103" count="8" type="stmt"/>
498
+ <line num="104" count="8" type="stmt"/>
499
+ <line num="105" count="8" type="stmt"/>
500
+ <line num="107" count="8" type="stmt"/>
501
+ <line num="113" count="8" type="stmt"/>
502
+ <line num="116" count="4" type="stmt"/>
503
+ <line num="118" count="2" type="stmt"/>
504
+ <line num="120" count="6" type="stmt"/>
505
+ <line num="130" count="5" type="stmt"/>
506
+ <line num="131" count="77" type="stmt"/>
507
+ <line num="133" count="77" type="stmt"/>
508
+ <line num="134" count="77" type="stmt"/>
509
+ <line num="135" count="77" type="stmt"/>
510
+ <line num="136" count="77" type="stmt"/>
511
+ <line num="137" count="77" type="stmt"/>
512
+ <line num="138" count="77" type="stmt"/>
513
+ <line num="139" count="77" type="stmt"/>
514
+ <line num="141" count="77" type="stmt"/>
515
+ <line num="142" count="5" type="stmt"/>
516
+ <line num="146" count="77" type="stmt"/>
517
+ <line num="147" count="5" type="stmt"/>
518
+ <line num="155" count="77" type="stmt"/>
519
+ <line num="156" count="9" type="stmt"/>
520
+ <line num="159" count="77" type="stmt"/>
521
+ <line num="160" count="1" type="stmt"/>
522
+ <line num="161" count="1" type="stmt"/>
523
+ <line num="169" count="77" type="stmt"/>
524
+ <line num="170" count="1" type="stmt"/>
525
+ <line num="173" count="77" type="stmt"/>
526
+ <line num="178" count="77" type="stmt"/>
527
+ <line num="180" count="68" type="stmt"/>
528
+ <line num="181" count="126" type="stmt"/>
529
+ <line num="189" count="77" type="stmt"/>
530
+ <line num="207" count="1" type="stmt"/>
531
+ <line num="208" count="1" type="stmt"/>
532
+ <line num="225" count="1" type="stmt"/>
533
+ <line num="251" count="0" type="stmt"/>
534
+ <line num="262" count="129" type="stmt"/>
535
+ <line num="267" count="0" type="stmt"/>
536
+ <line num="268" count="0" type="stmt"/>
537
+ <line num="288" count="0" type="stmt"/>
538
+ <line num="291" count="0" type="stmt"/>
539
+ <line num="292" count="0" type="stmt"/>
540
+ <line num="306" count="1" type="stmt"/>
541
+ <line num="307" count="2" type="stmt"/>
542
+ <line num="308" count="1" type="stmt"/>
543
+ <line num="309" count="1" type="stmt"/>
544
+ <line num="310" count="2" type="stmt"/>
555
545
  </file>
556
546
  <file name="Reports.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/Reports.tsx">
557
- <metrics statements="83" coveredstatements="79" conditionals="52" coveredconditionals="41" methods="24" coveredmethods="20"/>
558
- <line num="5" count="4" type="stmt"/>
559
- <line num="9" count="4" type="stmt"/>
560
- <line num="14" count="4" type="stmt"/>
561
- <line num="16" count="4" type="stmt"/>
562
- <line num="23" count="4" type="stmt"/>
563
- <line num="24" count="4" type="stmt"/>
564
- <line num="26" count="4" type="stmt"/>
565
- <line num="27" count="4" type="stmt"/>
566
- <line num="28" count="4" type="stmt"/>
567
- <line num="29" count="4" type="stmt"/>
568
- <line num="30" count="4" type="stmt"/>
569
- <line num="32" count="4" type="stmt"/>
570
- <line num="33" count="4" type="stmt"/>
571
- <line num="34" count="4" type="stmt"/>
572
- <line num="35" count="4" type="stmt"/>
573
- <line num="36" count="4" type="stmt"/>
574
- <line num="40" count="4" type="cond" truecount="2" falsecount="0"/>
575
- <line num="41" count="4" type="stmt"/>
576
- <line num="42" count="4" type="stmt"/>
577
- <line num="43" count="4" type="stmt"/>
578
- <line num="44" count="4" type="stmt"/>
579
- <line num="47" count="4" type="stmt"/>
580
- <line num="53" count="9" type="stmt"/>
581
- <line num="54" count="9" type="cond" truecount="0" falsecount="1"/>
547
+ <metrics statements="88" coveredstatements="82" conditionals="52" coveredconditionals="41" methods="25" coveredmethods="19"/>
548
+ <line num="5" count="7" type="stmt"/>
549
+ <line num="9" count="7" type="stmt"/>
550
+ <line num="15" count="7" type="stmt"/>
551
+ <line num="17" count="7" type="stmt"/>
552
+ <line num="24" count="7" type="stmt"/>
553
+ <line num="25" count="7" type="stmt"/>
554
+ <line num="27" count="7" type="stmt"/>
555
+ <line num="28" count="7" type="stmt"/>
556
+ <line num="29" count="7" type="stmt"/>
557
+ <line num="30" count="7" type="stmt"/>
558
+ <line num="31" count="7" type="stmt"/>
559
+ <line num="33" count="7" type="stmt"/>
560
+ <line num="34" count="7" type="stmt"/>
561
+ <line num="35" count="7" type="stmt"/>
562
+ <line num="36" count="7" type="stmt"/>
563
+ <line num="37" count="7" type="stmt"/>
564
+ <line num="38" count="7" type="stmt"/>
565
+ <line num="42" count="7" type="cond" truecount="2" falsecount="0"/>
566
+ <line num="43" count="7" type="stmt"/>
567
+ <line num="44" count="7" type="stmt"/>
568
+ <line num="45" count="7" type="stmt"/>
569
+ <line num="46" count="7" type="stmt"/>
570
+ <line num="49" count="7" type="stmt"/>
582
571
  <line num="55" count="9" type="stmt"/>
583
- <line num="56" count="9" type="stmt"/>
584
- <line num="59" count="9" type="stmt"/>
585
- <line num="60" count="9" type="stmt"/>
586
- <line num="61" count="7" type="cond" truecount="3" falsecount="1"/>
587
- <line num="63" count="2" type="stmt"/>
588
- <line num="65" count="9" type="stmt"/>
589
- <line num="69" count="4" type="stmt"/>
590
- <line num="70" count="70" type="cond" truecount="6" falsecount="2"/>
591
- <line num="71" count="70" type="stmt"/>
572
+ <line num="56" count="9" type="cond" truecount="0" falsecount="1"/>
573
+ <line num="57" count="9" type="stmt"/>
574
+ <line num="58" count="9" type="stmt"/>
575
+ <line num="61" count="9" type="stmt"/>
576
+ <line num="62" count="9" type="stmt"/>
577
+ <line num="63" count="7" type="cond" truecount="3" falsecount="1"/>
578
+ <line num="65" count="2" type="stmt"/>
579
+ <line num="67" count="9" type="stmt"/>
580
+ <line num="71" count="7" type="stmt"/>
592
581
  <line num="72" count="70" type="stmt"/>
593
- <line num="73" count="70" type="stmt"/>
594
- <line num="74" count="70" type="stmt"/>
595
- <line num="77" count="70" type="stmt"/>
596
- <line num="80" count="70" type="stmt"/>
582
+ <line num="73" count="0" type="stmt"/>
583
+ <line num="76" count="70" type="stmt"/>
584
+ <line num="77" count="0" type="stmt"/>
585
+ <line num="80" count="70" type="cond" truecount="6" falsecount="2"/>
597
586
  <line num="81" count="70" type="stmt"/>
598
587
  <line num="82" count="70" type="stmt"/>
599
588
  <line num="83" count="70" type="stmt"/>
600
- <line num="84" count="25" type="stmt"/>
589
+ <line num="84" count="70" type="stmt"/>
601
590
  <line num="87" count="70" type="stmt"/>
602
- <line num="88" count="8" type="stmt"/>
591
+ <line num="90" count="70" type="stmt"/>
592
+ <line num="91" count="70" type="stmt"/>
603
593
  <line num="92" count="70" type="stmt"/>
604
- <line num="93" count="8" type="stmt"/>
605
- <line num="96" count="70" type="stmt"/>
606
- <line num="97" count="1" type="stmt"/>
607
- <line num="98" count="1" type="stmt"/>
608
- <line num="99" count="1" type="stmt"/>
594
+ <line num="93" count="70" type="stmt"/>
595
+ <line num="94" count="8" type="stmt"/>
596
+ <line num="97" count="70" type="stmt"/>
597
+ <line num="98" count="8" type="stmt"/>
609
598
  <line num="102" count="70" type="stmt"/>
610
- <line num="103" count="2" type="stmt"/>
599
+ <line num="103" count="8" type="stmt"/>
611
600
  <line num="106" count="70" type="stmt"/>
612
- <line num="108" count="49" type="stmt"/>
613
- <line num="109" count="195" type="stmt"/>
614
- <line num="117" count="70" type="stmt"/>
615
- <line num="118" count="4" type="cond" truecount="1" falsecount="0"/>
616
- <line num="119" count="4" type="stmt"/>
617
- <line num="121" count="4" type="stmt"/>
618
- <line num="122" count="4" type="cond" truecount="1" falsecount="1"/>
619
- <line num="124" count="0" type="stmt"/>
620
- <line num="130" count="70" type="stmt"/>
621
- <line num="131" count="0" type="stmt"/>
622
- <line num="132" count="0" type="stmt"/>
623
- <line num="133" count="0" type="stmt"/>
624
- <line num="136" count="70" type="cond" truecount="4" falsecount="0"/>
625
- <line num="138" count="2" type="cond" truecount="1" falsecount="1"/>
626
- <line num="142" count="2" type="cond" truecount="1" falsecount="1"/>
627
- <line num="150" count="1" type="cond" truecount="1" falsecount="1"/>
628
- <line num="154" count="65" type="stmt"/>
629
- <line num="165" count="1" type="stmt"/>
630
- <line num="211" count="209" type="stmt"/>
631
- <line num="215" count="1" type="stmt"/>
632
- <line num="216" count="1" type="stmt"/>
633
- <line num="221" count="1" type="stmt"/>
634
- <line num="222" count="1" type="stmt"/>
635
- <line num="225" count="2" type="stmt"/>
636
- <line num="226" count="2" type="stmt"/>
637
- <line num="229" count="25" type="stmt"/>
638
- <line num="240" count="1" type="stmt"/>
639
- <line num="243" count="1" type="stmt"/>
640
- <line num="244" count="1" type="stmt"/>
601
+ <line num="107" count="1" type="stmt"/>
602
+ <line num="108" count="1" type="stmt"/>
603
+ <line num="109" count="1" type="stmt"/>
604
+ <line num="112" count="70" type="stmt"/>
605
+ <line num="113" count="2" type="stmt"/>
606
+ <line num="116" count="70" type="stmt"/>
607
+ <line num="118" count="49" type="stmt"/>
608
+ <line num="119" count="126" type="stmt"/>
609
+ <line num="127" count="70" type="stmt"/>
610
+ <line num="128" count="4" type="cond" truecount="1" falsecount="0"/>
611
+ <line num="129" count="4" type="stmt"/>
612
+ <line num="131" count="4" type="stmt"/>
613
+ <line num="132" count="4" type="cond" truecount="1" falsecount="1"/>
614
+ <line num="134" count="0" type="stmt"/>
615
+ <line num="140" count="70" type="stmt"/>
616
+ <line num="141" count="0" type="stmt"/>
617
+ <line num="142" count="0" type="stmt"/>
618
+ <line num="143" count="0" type="stmt"/>
619
+ <line num="146" count="70" type="cond" truecount="4" falsecount="0"/>
620
+ <line num="148" count="2" type="cond" truecount="1" falsecount="1"/>
621
+ <line num="152" count="2" type="cond" truecount="1" falsecount="1"/>
622
+ <line num="160" count="1" type="cond" truecount="1" falsecount="1"/>
623
+ <line num="164" count="65" type="stmt"/>
624
+ <line num="175" count="1" type="stmt"/>
625
+ <line num="221" count="146" type="stmt"/>
626
+ <line num="225" count="1" type="stmt"/>
627
+ <line num="226" count="1" type="stmt"/>
628
+ <line num="231" count="1" type="stmt"/>
629
+ <line num="232" count="1" type="stmt"/>
630
+ <line num="235" count="2" type="stmt"/>
631
+ <line num="236" count="2" type="stmt"/>
632
+ <line num="239" count="27" type="stmt"/>
633
+ <line num="250" count="1" type="stmt"/>
634
+ <line num="253" count="1" type="stmt"/>
635
+ <line num="254" count="1" type="stmt"/>
641
636
  </file>
642
637
  <file name="ReportsContainer.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ReportsContainer.tsx">
643
638
  <metrics statements="13" coveredstatements="8" conditionals="16" coveredconditionals="0" methods="4" coveredmethods="0"/>
644
- <line num="6" count="4" type="stmt"/>
645
- <line num="7" count="4" type="stmt"/>
646
- <line num="8" count="4" type="stmt"/>
647
- <line num="10" count="4" type="stmt"/>
648
- <line num="11" count="4" type="stmt"/>
649
- <line num="18" count="4" type="stmt"/>
639
+ <line num="6" count="7" type="stmt"/>
640
+ <line num="7" count="7" type="stmt"/>
641
+ <line num="8" count="7" type="stmt"/>
642
+ <line num="10" count="7" type="stmt"/>
643
+ <line num="11" count="7" type="stmt"/>
644
+ <line num="18" count="7" type="stmt"/>
650
645
  <line num="19" count="0" type="cond" truecount="0" falsecount="8"/>
651
- <line num="21" count="4" type="stmt"/>
646
+ <line num="21" count="7" type="stmt"/>
652
647
  <line num="25" count="0" type="stmt"/>
653
648
  <line num="30" count="0" type="stmt"/>
654
649
  <line num="31" count="0" type="stmt"/>
655
650
  <line num="37" count="0" type="stmt"/>
656
- <line num="46" count="4" type="stmt"/>
651
+ <line num="46" count="7" type="stmt"/>
657
652
  </file>
658
653
  <file name="SearchBar.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/SearchBar.tsx">
659
654
  <metrics statements="16" coveredstatements="11" conditionals="7" coveredconditionals="5" methods="5" coveredmethods="3"/>
660
- <line num="5" count="4" type="stmt"/>
661
- <line num="6" count="4" type="stmt"/>
662
- <line num="7" count="4" type="stmt"/>
663
- <line num="8" count="4" type="stmt"/>
664
- <line num="9" count="4" type="stmt"/>
665
- <line num="17" count="4" type="stmt"/>
666
- <line num="22" count="159" type="stmt"/>
667
- <line num="23" count="159" type="stmt"/>
668
- <line num="25" count="159" type="cond" truecount="4" falsecount="0"/>
655
+ <line num="5" count="7" type="stmt"/>
656
+ <line num="6" count="7" type="stmt"/>
657
+ <line num="7" count="7" type="stmt"/>
658
+ <line num="8" count="7" type="stmt"/>
659
+ <line num="9" count="7" type="stmt"/>
660
+ <line num="17" count="7" type="stmt"/>
661
+ <line num="22" count="144" type="stmt"/>
662
+ <line num="23" count="144" type="stmt"/>
663
+ <line num="25" count="144" type="cond" truecount="4" falsecount="0"/>
669
664
  <line num="31" count="0" type="cond" truecount="0" falsecount="1"/>
670
665
  <line num="32" count="0" type="stmt"/>
671
666
  <line num="33" count="0" type="stmt"/>
@@ -676,51 +671,51 @@
676
671
  </file>
677
672
  <file name="SelectIModel.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/SelectIModel.tsx">
678
673
  <metrics statements="32" coveredstatements="31" conditionals="22" coveredconditionals="18" methods="7" coveredmethods="6"/>
679
- <line num="5" count="2" type="stmt"/>
680
- <line num="6" count="2" type="stmt"/>
681
- <line num="12" count="2" type="stmt"/>
682
- <line num="17" count="2" type="stmt"/>
683
- <line num="18" count="2" type="stmt"/>
684
- <line num="19" count="2" type="stmt"/>
685
- <line num="21" count="2" type="stmt"/>
686
- <line num="22" count="2" type="stmt"/>
687
- <line num="23" count="2" type="stmt"/>
688
- <line num="25" count="2" type="stmt"/>
689
- <line num="30" count="1" type="stmt"/>
690
- <line num="34" count="1" type="stmt"/>
691
- <line num="35" count="1" type="stmt"/>
692
- <line num="36" count="1" type="stmt"/>
693
- <line num="37" count="1" type="stmt"/>
694
- <line num="41" count="1" type="stmt"/>
695
- <line num="44" count="1" type="stmt"/>
696
- <line num="52" count="2" type="stmt"/>
697
- <line num="56" count="12" type="stmt"/>
698
- <line num="57" count="12" type="cond" truecount="6" falsecount="2"/>
699
- <line num="58" count="12" type="cond" truecount="6" falsecount="2"/>
700
- <line num="59" count="12" type="stmt"/>
701
- <line num="61" count="12" type="stmt"/>
702
- <line num="62" count="1" type="cond" truecount="3" falsecount="0"/>
703
- <line num="63" count="1" type="stmt"/>
704
- <line num="67" count="12" type="stmt"/>
674
+ <line num="5" count="5" type="stmt"/>
675
+ <line num="6" count="5" type="stmt"/>
676
+ <line num="12" count="5" type="stmt"/>
677
+ <line num="17" count="5" type="stmt"/>
678
+ <line num="18" count="5" type="stmt"/>
679
+ <line num="19" count="5" type="stmt"/>
680
+ <line num="21" count="5" type="stmt"/>
681
+ <line num="22" count="5" type="stmt"/>
682
+ <line num="23" count="5" type="stmt"/>
683
+ <line num="25" count="5" type="stmt"/>
684
+ <line num="30" count="9" type="stmt"/>
685
+ <line num="34" count="9" type="stmt"/>
686
+ <line num="35" count="9" type="stmt"/>
687
+ <line num="36" count="9" type="stmt"/>
688
+ <line num="37" count="9" type="stmt"/>
689
+ <line num="41" count="9" type="stmt"/>
690
+ <line num="44" count="9" type="stmt"/>
691
+ <line num="52" count="5" type="stmt"/>
692
+ <line num="56" count="9" type="stmt"/>
693
+ <line num="57" count="9" type="cond" truecount="6" falsecount="2"/>
694
+ <line num="58" count="9" type="cond" truecount="6" falsecount="2"/>
695
+ <line num="59" count="9" type="stmt"/>
696
+ <line num="61" count="9" type="stmt"/>
697
+ <line num="62" count="9" type="cond" truecount="3" falsecount="0"/>
698
+ <line num="63" count="9" type="stmt"/>
699
+ <line num="67" count="9" type="stmt"/>
705
700
  <line num="68" count="2" type="cond" truecount="3" falsecount="0"/>
706
701
  <line num="69" count="1" type="stmt"/>
707
- <line num="73" count="12" type="stmt"/>
702
+ <line num="73" count="9" type="stmt"/>
708
703
  <line num="74" count="2" type="stmt"/>
709
- <line num="80" count="12" type="stmt"/>
704
+ <line num="80" count="9" type="stmt"/>
710
705
  <line num="92" count="0" type="stmt"/>
711
706
  </file>
712
707
  <file name="utils.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/utils.tsx">
713
- <metrics statements="43" coveredstatements="25" conditionals="13" coveredconditionals="4" methods="8" coveredmethods="8"/>
714
- <line num="5" count="4" type="stmt"/>
715
- <line num="6" count="4" type="stmt"/>
716
- <line num="12" count="4" type="stmt"/>
717
- <line num="13" count="4" type="stmt"/>
718
- <line num="14" count="4" type="stmt"/>
719
- <line num="22" count="4" type="stmt"/>
720
- <line num="27" count="426" type="stmt"/>
721
- <line num="45" count="4" type="stmt"/>
722
- <line num="46" count="2" type="stmt"/>
723
- <line num="49" count="2" type="cond" truecount="1" falsecount="9"/>
708
+ <metrics statements="43" coveredstatements="24" conditionals="13" coveredconditionals="4" methods="8" coveredmethods="7"/>
709
+ <line num="5" count="8" type="stmt"/>
710
+ <line num="6" count="8" type="stmt"/>
711
+ <line num="12" count="8" type="stmt"/>
712
+ <line num="13" count="8" type="stmt"/>
713
+ <line num="14" count="8" type="stmt"/>
714
+ <line num="22" count="8" type="stmt"/>
715
+ <line num="27" count="411" type="stmt"/>
716
+ <line num="45" count="8" type="stmt"/>
717
+ <line num="46" count="4" type="stmt"/>
718
+ <line num="49" count="4" type="cond" truecount="1" falsecount="9"/>
724
719
  <line num="51" count="0" type="stmt"/>
725
720
  <line num="54" count="0" type="stmt"/>
726
721
  <line num="56" count="0" type="stmt"/>
@@ -739,92 +734,92 @@
739
734
  <line num="89" count="0" type="stmt"/>
740
735
  <line num="91" count="0" type="stmt"/>
741
736
  <line num="94" count="0" type="stmt"/>
742
- <line num="96" count="2" type="stmt"/>
743
- <line num="100" count="2" type="stmt"/>
744
- <line num="103" count="4" type="stmt"/>
745
- <line num="104" count="32" type="stmt"/>
746
- <line num="121" count="4" type="stmt"/>
747
- <line num="122" count="2" type="stmt"/>
748
- <line num="125" count="4" type="stmt"/>
737
+ <line num="96" count="4" type="stmt"/>
738
+ <line num="100" count="4" type="stmt"/>
739
+ <line num="103" count="8" type="stmt"/>
740
+ <line num="104" count="26" type="stmt"/>
741
+ <line num="121" count="8" type="stmt"/>
742
+ <line num="122" count="3" type="stmt"/>
743
+ <line num="125" count="8" type="stmt"/>
749
744
  <line num="130" count="251" type="stmt"/>
750
745
  <line num="132" count="251" type="stmt"/>
751
- <line num="138" count="4" type="stmt"/>
752
- <line num="139" count="20" type="stmt"/>
753
- <line num="149" count="4" type="stmt"/>
754
- <line num="150" count="16" type="stmt"/>
755
- <line num="153" count="4" type="stmt"/>
756
- <line num="154" count="150" type="stmt"/>
746
+ <line num="138" count="8" type="stmt"/>
747
+ <line num="139" count="21" type="stmt"/>
748
+ <line num="149" count="8" type="stmt"/>
749
+ <line num="150" count="0" type="stmt"/>
750
+ <line num="153" count="8" type="stmt"/>
751
+ <line num="154" count="136" type="stmt"/>
757
752
  </file>
758
753
  </package>
759
754
  <package name="src.widget.components.ExtractionStates">
760
- <metrics statements="27" coveredstatements="22" conditionals="4" coveredconditionals="0" methods="5" coveredmethods="0"/>
755
+ <metrics statements="27" coveredstatements="26" conditionals="4" coveredconditionals="1" methods="5" coveredmethods="4"/>
761
756
  <file name="FailedExtractionState.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ExtractionStates/FailedExtractionState.tsx">
762
757
  <metrics statements="6" coveredstatements="5" conditionals="2" coveredconditionals="0" methods="1" coveredmethods="0"/>
763
- <line num="5" count="4" type="stmt"/>
764
- <line num="6" count="4" type="stmt"/>
765
- <line num="7" count="4" type="stmt"/>
766
- <line num="8" count="4" type="stmt"/>
767
- <line num="15" count="4" type="stmt"/>
758
+ <line num="5" count="8" type="stmt"/>
759
+ <line num="6" count="8" type="stmt"/>
760
+ <line num="7" count="8" type="stmt"/>
761
+ <line num="8" count="8" type="stmt"/>
762
+ <line num="15" count="8" type="stmt"/>
768
763
  <line num="16" count="0" type="stmt"/>
769
764
  </file>
770
765
  <file name="QueuedExtractionState.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ExtractionStates/QueuedExtractionState.tsx">
771
- <metrics statements="5" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
772
- <line num="5" count="4" type="stmt"/>
773
- <line num="6" count="4" type="stmt"/>
774
- <line num="7" count="4" type="stmt"/>
775
- <line num="9" count="4" type="stmt"/>
776
- <line num="10" count="0" type="stmt"/>
766
+ <metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
767
+ <line num="5" count="8" type="stmt"/>
768
+ <line num="6" count="8" type="stmt"/>
769
+ <line num="7" count="8" type="stmt"/>
770
+ <line num="9" count="8" type="stmt"/>
771
+ <line num="10" count="3" type="stmt"/>
777
772
  </file>
778
773
  <file name="RunningExtractionState.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ExtractionStates/RunningExtractionState.tsx">
779
- <metrics statements="5" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
780
- <line num="5" count="4" type="stmt"/>
781
- <line num="6" count="4" type="stmt"/>
782
- <line num="7" count="4" type="stmt"/>
783
- <line num="9" count="4" type="stmt"/>
784
- <line num="10" count="0" type="stmt"/>
774
+ <metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
775
+ <line num="5" count="8" type="stmt"/>
776
+ <line num="6" count="8" type="stmt"/>
777
+ <line num="7" count="8" type="stmt"/>
778
+ <line num="9" count="8" type="stmt"/>
779
+ <line num="10" count="2" type="stmt"/>
785
780
  </file>
786
781
  <file name="StartingExtractionState.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ExtractionStates/StartingExtractionState.tsx">
787
- <metrics statements="5" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
788
- <line num="5" count="4" type="stmt"/>
789
- <line num="6" count="4" type="stmt"/>
790
- <line num="7" count="4" type="stmt"/>
791
- <line num="9" count="4" type="stmt"/>
792
- <line num="10" count="0" type="stmt"/>
782
+ <metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
783
+ <line num="5" count="8" type="stmt"/>
784
+ <line num="6" count="8" type="stmt"/>
785
+ <line num="7" count="8" type="stmt"/>
786
+ <line num="9" count="8" type="stmt"/>
787
+ <line num="10" count="8" type="stmt"/>
793
788
  </file>
794
789
  <file name="SucceededExtractionState.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ExtractionStates/SucceededExtractionState.tsx">
795
- <metrics statements="6" coveredstatements="5" conditionals="2" coveredconditionals="0" methods="1" coveredmethods="0"/>
796
- <line num="5" count="4" type="stmt"/>
797
- <line num="6" count="4" type="stmt"/>
798
- <line num="7" count="4" type="stmt"/>
799
- <line num="8" count="4" type="stmt"/>
800
- <line num="15" count="4" type="stmt"/>
801
- <line num="16" count="0" type="stmt"/>
790
+ <metrics statements="6" coveredstatements="6" conditionals="2" coveredconditionals="1" methods="1" coveredmethods="1"/>
791
+ <line num="5" count="8" type="stmt"/>
792
+ <line num="6" count="8" type="stmt"/>
793
+ <line num="7" count="8" type="stmt"/>
794
+ <line num="8" count="8" type="stmt"/>
795
+ <line num="15" count="8" type="stmt"/>
796
+ <line num="16" count="1" type="stmt"/>
802
797
  </file>
803
798
  </package>
804
799
  <package name="src.widget.context">
805
800
  <metrics statements="9" coveredstatements="7" conditionals="1" coveredconditionals="0" methods="2" coveredmethods="1"/>
806
801
  <file name="ReportsApiConfigContext.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/context/ReportsApiConfigContext.tsx">
807
802
  <metrics statements="9" coveredstatements="7" conditionals="1" coveredconditionals="0" methods="2" coveredmethods="1"/>
808
- <line num="6" count="4" type="stmt"/>
809
- <line num="7" count="4" type="stmt"/>
810
- <line num="14" count="4" type="stmt"/>
803
+ <line num="6" count="7" type="stmt"/>
804
+ <line num="7" count="7" type="stmt"/>
805
+ <line num="14" count="7" type="stmt"/>
811
806
  <line num="15" count="0" type="stmt"/>
812
- <line num="19" count="4" type="stmt"/>
813
- <line num="20" count="635" type="stmt"/>
814
- <line num="21" count="635" type="cond" truecount="0" falsecount="1"/>
807
+ <line num="19" count="7" type="stmt"/>
808
+ <line num="20" count="431" type="stmt"/>
809
+ <line num="21" count="431" type="cond" truecount="0" falsecount="1"/>
815
810
  <line num="22" count="0" type="stmt"/>
816
- <line num="26" count="635" type="stmt"/>
811
+ <line num="26" count="431" type="stmt"/>
817
812
  </file>
818
813
  </package>
819
814
  <package name="src.widget.hooks">
820
815
  <metrics statements="17" coveredstatements="17" conditionals="1" coveredconditionals="1" methods="5" coveredmethods="5"/>
821
816
  <file name="useValidator.ts" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/hooks/useValidator.ts">
822
817
  <metrics statements="17" coveredstatements="17" conditionals="1" coveredconditionals="1" methods="5" coveredmethods="5"/>
823
- <line num="5" count="4" type="stmt"/>
824
- <line num="6" count="4" type="stmt"/>
825
- <line num="7" count="4" type="stmt"/>
826
- <line num="9" count="4" type="stmt"/>
827
- <line num="12" count="4" type="stmt"/>
818
+ <line num="5" count="7" type="stmt"/>
819
+ <line num="6" count="7" type="stmt"/>
820
+ <line num="7" count="7" type="stmt"/>
821
+ <line num="9" count="7" type="stmt"/>
822
+ <line num="12" count="7" type="stmt"/>
828
823
  <line num="16" count="267" type="stmt"/>
829
824
  <line num="17" count="267" type="stmt"/>
830
825
  <line num="23" count="518" type="stmt"/>
@@ -836,7 +831,7 @@
836
831
  <line num="63" count="267" type="cond" truecount="1" falsecount="0"/>
837
832
  <line num="64" count="4" type="stmt"/>
838
833
  <line num="67" count="267" type="stmt"/>
839
- <line num="70" count="4" type="stmt"/>
834
+ <line num="70" count="7" type="stmt"/>
840
835
  </file>
841
836
  </package>
842
837
  </project>