@itwin/reports-config-widget-react 0.0.8 → 0.2.0

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