@itwin/reports-config-widget-react 0.0.4 → 0.0.7

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 (77) hide show
  1. package/.rush/temp/package-deps_rebuild.json +12 -12
  2. package/.rush/temp/shrinkwrap-deps.json +8 -3
  3. package/CHANGELOG.json +36 -0
  4. package/CHANGELOG.md +22 -1
  5. package/coverage/clover.xml +103 -102
  6. package/coverage/coverage-final.json +12 -12
  7. package/coverage/lcov-report/index.html +19 -19
  8. package/coverage/lcov-report/src/ReportsConfigWidget.ts.html +2 -2
  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 +2 -2
  12. package/coverage/lcov-report/src/widget/ReportsConfigUiProvider.tsx.html +1 -1
  13. package/coverage/lcov-report/src/widget/components/ActionPanel.tsx.html +1 -1
  14. package/coverage/lcov-report/src/widget/components/AddMappingsModal.tsx.html +9 -9
  15. package/coverage/lcov-report/src/widget/components/DeleteModal.tsx.html +4 -4
  16. package/coverage/lcov-report/src/widget/components/Extraction.tsx.html +13 -13
  17. package/coverage/lcov-report/src/widget/components/HorizontalTile.tsx.html +2 -2
  18. package/coverage/lcov-report/src/widget/components/LocalizedTablePaginator.tsx.html +1 -1
  19. package/coverage/lcov-report/src/widget/components/ReportAction.tsx.html +5 -5
  20. package/coverage/lcov-report/src/widget/components/ReportMappings.tsx.html +35 -26
  21. package/coverage/lcov-report/src/widget/components/Reports.tsx.html +34 -34
  22. package/coverage/lcov-report/src/widget/components/ReportsContainer.tsx.html +1 -1
  23. package/coverage/lcov-report/src/widget/components/SearchBar.tsx.html +4 -4
  24. package/coverage/lcov-report/src/widget/components/SelectIModel.tsx.html +1 -1
  25. package/coverage/lcov-report/src/widget/components/index.html +38 -38
  26. package/coverage/lcov-report/src/widget/components/utils.tsx.html +30 -30
  27. package/coverage/lcov-report/src/widget/context/ReportsApiConfigContext.tsx.html +4 -4
  28. package/coverage/lcov-report/src/widget/context/index.html +1 -1
  29. package/coverage/lcov-report/src/widget/hooks/index.html +1 -1
  30. package/coverage/lcov-report/src/widget/hooks/useValidator.ts.html +1 -1
  31. package/coverage/lcov-report/src/widget/index.html +1 -1
  32. package/coverage/lcov.info +238 -317
  33. package/lib/cjs/test/ReportMappings.test.js +42 -31
  34. package/lib/cjs/test/ReportMappings.test.js.map +1 -1
  35. package/lib/cjs/test/Reports.test.js +12 -7
  36. package/lib/cjs/test/Reports.test.js.map +1 -1
  37. package/lib/cjs/test/test-utils.js.map +1 -1
  38. package/lib/cjs/tsconfig.tsbuildinfo +1 -1
  39. package/lib/cjs/widget/components/AddMappingsModal.js +5 -6
  40. package/lib/cjs/widget/components/AddMappingsModal.js.map +1 -1
  41. package/lib/cjs/widget/components/Extraction.js +9 -11
  42. package/lib/cjs/widget/components/Extraction.js.map +1 -1
  43. package/lib/cjs/widget/components/ReportAction.js +3 -3
  44. package/lib/cjs/widget/components/ReportAction.js.map +1 -1
  45. package/lib/cjs/widget/components/ReportMappings.d.ts.map +1 -1
  46. package/lib/cjs/widget/components/ReportMappings.js +23 -27
  47. package/lib/cjs/widget/components/ReportMappings.js.map +1 -1
  48. package/lib/cjs/widget/components/Reports.js +6 -6
  49. package/lib/cjs/widget/components/Reports.js.map +1 -1
  50. package/lib/esm/test/ReportMappings.test.js +42 -31
  51. package/lib/esm/test/ReportMappings.test.js.map +1 -1
  52. package/lib/esm/test/Reports.test.js +12 -7
  53. package/lib/esm/test/Reports.test.js.map +1 -1
  54. package/lib/esm/test/test-utils.js.map +1 -1
  55. package/lib/esm/tsconfig.tsbuildinfo +1 -1
  56. package/lib/esm/widget/components/AddMappingsModal.js +6 -7
  57. package/lib/esm/widget/components/AddMappingsModal.js.map +1 -1
  58. package/lib/esm/widget/components/Extraction.js +10 -12
  59. package/lib/esm/widget/components/Extraction.js.map +1 -1
  60. package/lib/esm/widget/components/ReportAction.js +4 -4
  61. package/lib/esm/widget/components/ReportAction.js.map +1 -1
  62. package/lib/esm/widget/components/ReportMappings.d.ts.map +1 -1
  63. package/lib/esm/widget/components/ReportMappings.js +24 -28
  64. package/lib/esm/widget/components/ReportMappings.js.map +1 -1
  65. package/lib/esm/widget/components/Reports.js +7 -7
  66. package/lib/esm/widget/components/Reports.js.map +1 -1
  67. package/package.json +5 -4
  68. package/reports-config-widget-react.build.error.log +3 -3
  69. package/reports-config-widget-react.build.log +11 -11
  70. package/src/test/ReportMappings.test.tsx +44 -24
  71. package/src/test/Reports.test.tsx +18 -13
  72. package/src/test/test-utils.tsx +1 -1
  73. package/src/widget/components/AddMappingsModal.tsx +6 -6
  74. package/src/widget/components/Extraction.tsx +10 -10
  75. package/src/widget/components/ReportAction.tsx +4 -4
  76. package/src/widget/components/ReportMappings.tsx +21 -18
  77. package/src/widget/components/Reports.tsx +6 -6
@@ -1,39 +1,39 @@
1
1
  {
2
2
  "files": {
3
- "packages/itwin/reports-config-widget/.rush/temp/shrinkwrap-deps.json": "77ed3c4dd33b0f9a715ee2f2fd6c4802894d5f1e",
4
- "packages/itwin/reports-config-widget/CHANGELOG.json": "1e890fbe45e63c101ad3d7b1dd4d99e96a08b40d",
5
- "packages/itwin/reports-config-widget/CHANGELOG.md": "599d16750da60e3f5017068ba21b968cea7761d8",
3
+ "packages/itwin/reports-config-widget/.rush/temp/shrinkwrap-deps.json": "82b7733ef454d3fc4632841eadac06bb9fa41614",
4
+ "packages/itwin/reports-config-widget/CHANGELOG.json": "47ca0bad32ce8be1a041846d2c5bc894c4353906",
5
+ "packages/itwin/reports-config-widget/CHANGELOG.md": "7b4e9edd0cb219e0973763db8f15b2911108a697",
6
6
  "packages/itwin/reports-config-widget/LICENSE.md": "a5ca7f3cac799edf91ab2cadfe98eca41db76415",
7
7
  "packages/itwin/reports-config-widget/README.md": "6b69338893db9df6210813dd1bc09e9aacda7167",
8
8
  "packages/itwin/reports-config-widget/__mocks__/fileMock.js": "fc9379f960161b8723da71342c5ef74a7e6946fe",
9
9
  "packages/itwin/reports-config-widget/jest.config.js": "b598030141fbfb2e3859b6b65780e5c667a67fc1",
10
- "packages/itwin/reports-config-widget/package.json": "0f16e3e07e8ecc9356e8428f13da60057b699a92",
10
+ "packages/itwin/reports-config-widget/package.json": "f90094437d430d82be4d60b057fada08a774b0e0",
11
11
  "packages/itwin/reports-config-widget/public/locales/en/ReportsConfigWidget.json": "bee5a5c2b8810b8edd64d59fc39a115632a5d459",
12
12
  "packages/itwin/reports-config-widget/src/ReportsConfigWidget.ts": "2a14eac2207411b012e8f337887b66da02011173",
13
13
  "packages/itwin/reports-config-widget/src/reports-config-widget-react.ts": "93bf8d302bb40adc42d3133046b32d01b9cf5675",
14
14
  "packages/itwin/reports-config-widget/src/test/ReportAction.test.tsx": "013d80fbf071a3296a23025df678210c1f4a62bd",
15
- "packages/itwin/reports-config-widget/src/test/ReportMappings.test.tsx": "4f0dfc049812816ab13908395ebb8b44c71b30bc",
16
- "packages/itwin/reports-config-widget/src/test/Reports.test.tsx": "0224f21f31693ac087bb6ca6a22b757ff6a461e7",
15
+ "packages/itwin/reports-config-widget/src/test/ReportMappings.test.tsx": "13184d1c890600a642710566f91b68bc85dd2875",
16
+ "packages/itwin/reports-config-widget/src/test/Reports.test.tsx": "0c6b4ee638cc9ff539fdfbd250da2a6b7fa403e8",
17
17
  "packages/itwin/reports-config-widget/src/test/WidgetHeader.test.tsx": "1c579b978282664e9d0143642b8adfe1b30be887",
18
- "packages/itwin/reports-config-widget/src/test/test-utils.tsx": "0fc4a8cb60d10174cea078041f7d9e466c3ed1d0",
18
+ "packages/itwin/reports-config-widget/src/test/test-utils.tsx": "d0e79b3fb6b4d1289640fea3c07f5be195a9b8e2",
19
19
  "packages/itwin/reports-config-widget/src/widget/ReportsConfigUiProvider.tsx": "9fbbbe42b363f50d9cf51e8b653a9869e70528d8",
20
20
  "packages/itwin/reports-config-widget/src/widget/components/ActionPanel.scss": "7af50855e3604e1f346d9244a942e525b471a652",
21
21
  "packages/itwin/reports-config-widget/src/widget/components/ActionPanel.tsx": "3debdaec912bfd097ff58174d5fd5d31d4160a56",
22
22
  "packages/itwin/reports-config-widget/src/widget/components/AddMappingsModal.scss": "a322c04abacb5009786086dde238f0ecd6e7b219",
23
- "packages/itwin/reports-config-widget/src/widget/components/AddMappingsModal.tsx": "838e9947e11b9a76caf897cbf75194144aa570e9",
23
+ "packages/itwin/reports-config-widget/src/widget/components/AddMappingsModal.tsx": "7979b9c9987fb93180ef61add6b9f8af2d0c4141",
24
24
  "packages/itwin/reports-config-widget/src/widget/components/DeleteModal.scss": "3c05ff3345c6f53c58146f4cfe3a5c90b0af6d09",
25
25
  "packages/itwin/reports-config-widget/src/widget/components/DeleteModal.tsx": "ffa394a4ec7f8def216e9b7c3118dca0546d9d97",
26
26
  "packages/itwin/reports-config-widget/src/widget/components/Extraction.scss": "6482ff3163cff2ac4d471c2a8bd052938cbc712f",
27
- "packages/itwin/reports-config-widget/src/widget/components/Extraction.tsx": "3a1c68ffd07a8ad1a7cc7e52ef4af83158f77066",
27
+ "packages/itwin/reports-config-widget/src/widget/components/Extraction.tsx": "cf72fd0196cc1ecafb9fa49286dc0b389b954915",
28
28
  "packages/itwin/reports-config-widget/src/widget/components/HorizontalTile.scss": "8e54484683f5a256edf5077a2be5078f7ef75e02",
29
29
  "packages/itwin/reports-config-widget/src/widget/components/HorizontalTile.tsx": "2f3315d7834329086ee3881bd20f401ab37a900b",
30
30
  "packages/itwin/reports-config-widget/src/widget/components/LocalizedTablePaginator.tsx": "69c8a6b511f04f67eed0a6e7bbfd2a2f881c9a09",
31
31
  "packages/itwin/reports-config-widget/src/widget/components/ReportAction.scss": "412fde57c9eaed00c0556cbb7617eaf9f261f96e",
32
- "packages/itwin/reports-config-widget/src/widget/components/ReportAction.tsx": "95837d8f50400b31da17806d974a66508fd0cd6f",
32
+ "packages/itwin/reports-config-widget/src/widget/components/ReportAction.tsx": "41d84980df7646fdefce0cd59176239e5f7e333c",
33
33
  "packages/itwin/reports-config-widget/src/widget/components/ReportMappings.scss": "e556ab22c7035f8811a45a9a8a2a44d7617653f0",
34
- "packages/itwin/reports-config-widget/src/widget/components/ReportMappings.tsx": "006d758e5f3242afa7cc307f3b3c315ecc8efc88",
34
+ "packages/itwin/reports-config-widget/src/widget/components/ReportMappings.tsx": "641129c2c762e2b812a9ac7c2cac4beff700e494",
35
35
  "packages/itwin/reports-config-widget/src/widget/components/Reports.scss": "d15a94649cc20cb990a490bba835e9a9ce9b674e",
36
- "packages/itwin/reports-config-widget/src/widget/components/Reports.tsx": "1f595ae37727be4b098f71217c4544751a3a8294",
36
+ "packages/itwin/reports-config-widget/src/widget/components/Reports.tsx": "080de296e8f52ee5280c5b0a00c72566d01c524b",
37
37
  "packages/itwin/reports-config-widget/src/widget/components/ReportsContainer.scss": "44b62e9b2af01439939c0bf8e33d44499cf5a5a0",
38
38
  "packages/itwin/reports-config-widget/src/widget/components/ReportsContainer.tsx": "a3cc0ee11a8f284570931cf0b07d55357cda853c",
39
39
  "packages/itwin/reports-config-widget/src/widget/components/SearchBar.scss": "ae06bb761b49c195cfaf1058e83ae802bfe8d4a9",
@@ -1,5 +1,5 @@
1
1
  {
2
- "../../packages/itwin/reports-config-widget": "../../packages/itwin/reports-config-widget:1VPTTkm4mF4nIfL25oY1vgZvUb8GDRh6eqIv7zNnTeI=:",
2
+ "../../packages/itwin/reports-config-widget": "../../packages/itwin/reports-config-widget:aJ0Ob2hIfpQBWxsu2IjxZ+3Vanu5VCUS7clgvOh90pw=:",
3
3
  "/@ampproject/remapping/2.1.2": "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==",
4
4
  "/@babel/code-frame/7.12.11": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
5
5
  "/@babel/code-frame/7.16.7": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
@@ -61,7 +61,7 @@
61
61
  "/@istanbuljs/schema/0.1.3": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
62
62
  "/@itwin/appui-abstract/3.2.2_@itwin+core-bentley@3.2.2": "sha512-bIzSvZQvWh3c95HMbBOF9pzGr2lRqe/5NNTC4LQQUPaheIAFHGvM+WXnr4Fonjh9A8DDB34NfGs4qxwc8nE8hQ==",
63
63
  "/@itwin/appui-layout-react/3.2.2_0099bfc9ea57e7c3c0d0f85e9959e8d2": "sha512-UEStBcc4z6tNPAazLEsqWNRRlxo2rYeCuW95V3hDTsqOSpI9Hk1ZFn3kb2IL971rAJrVAfhhO3jD65/mgR4THw==",
64
- "/@itwin/appui-react/3.2.2_08e0d709a0c0b07f27da264d3d74f4ad": "sha512-B3jNTiVgKK6GYYfQXKlZxJrGHfu8kTTpP0IYJbl2LEpv1glevJtUO4fmy2nrzmILdeLcvMyU3b4MBV+Lk5lUwQ==",
64
+ "/@itwin/appui-react/3.2.2_4789d025ca1425755dd1e71786f2c62d": "sha512-B3jNTiVgKK6GYYfQXKlZxJrGHfu8kTTpP0IYJbl2LEpv1glevJtUO4fmy2nrzmILdeLcvMyU3b4MBV+Lk5lUwQ==",
65
65
  "/@itwin/build-tools/3.2.2": "sha512-EP8KyiOWHnUXptGxbMuUkc9zAZzmNy74mH1giP8wVf76ekeEkUE9icX8H1WFSXilXzOXehIZV9MDW8CWoWepGA==",
66
66
  "/@itwin/components-react/3.2.2_0099bfc9ea57e7c3c0d0f85e9959e8d2": "sha512-bf/BG0sd6BmI/CSMRAZDnz9+W1Zo4fuC9uOwZgL0z85N0owFaQq4R7MpnLQE6rauyLGFjMEvIbbNwUOZHHNDfw==",
67
67
  "/@itwin/core-bentley/3.2.2": "sha512-FXvnJi7STf+gQqnC/mSgET8TNL70kGERluQEhL/Msugs+j9NkwTICqbvQFmc2xsAchO5JxsMkwipekGh3qlMtA==",
@@ -78,7 +78,7 @@
78
78
  "/@itwin/imodel-components-react/3.2.2_fd0453885139ba43494b554614c626b0": "sha512-akw7BfybwldgFWFShI58eWkw6j9l1rJxZ+pU/bZBrhyU+occqwDmQ+ZvmOy04WDA8/hDlYwTm4pN8/hxV0trgQ==",
79
79
  "/@itwin/imodels-access-frontend/1.0.1_e42c8153c9c78e18694e22e7ad06c7e0": "sha512-qwD8kM7sW/ku5EAqj7kTZR1C1gv2vfRZYgu2VaYXHtTYEibCnbU0tOHhAfRyWMeF8LnZMNUmpZZjjZkruYoWhw==",
80
80
  "/@itwin/imodels-client-management/1.0.1": "sha512-HzwegaR7krCXY1I2UPGGjxp4tttcU4RD5kZoHFpA+Nit3jrsvoXR0CieH7H0GUSKmgoV0Go5KN1YvbBUgqruRg==",
81
- "/@itwin/insights-client/0.2.0": "sha512-D8jeHbQVErug9cBNkmdTFd93Yavg/lfYQ0UYcJWA538qk4Fw32GkOxDaMIj584NzmXr26n4xW2HLB3mwk3ewig==",
81
+ "/@itwin/insights-client/0.3.0": "sha512-QiulW7EeOab9qy5jKGZDEmeN3VmEx5dZ1DYAJbgdQDit+4eSFW/1jpmD2X8ZGADoW//FdI5dY+wTPaqrQACb9Q==",
82
82
  "/@itwin/itwinui-css/0.50.1": "sha512-+T+2tztEX24IhKmt6PAh/gVAeeHhwtMqudyfZUoi5EgcZPlnDDKmUDpX3uzum/xKi0mTIsX0Qr0KC1pVAc9Zzg==",
83
83
  "/@itwin/itwinui-css/0.61.0": "sha512-hdbeabfuZSr53ykzCdu+phQdlwMVYninRt+K+1tnUDJCdPVYOx3WFUltnbq1mCDASF/ZQDpbPFsxY4aQ/tx4Hw==",
84
84
  "/@itwin/itwinui-icons-color-react/1.0.2_react-dom@17.0.2+react@17.0.2": "sha512-jsYwrecYVnve9qM4l6NegliJBI5jEupJ4aIvHlVTJMZEwtqLDYOzQKB/SfdE79aoKJ7qBVZDUqozRRbReFhQ8Q==",
@@ -161,6 +161,7 @@
161
161
  "/@types/prettier/2.6.0": "sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw==",
162
162
  "/@types/prop-types/15.7.5": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==",
163
163
  "/@types/react-dom/17.0.15": "sha512-Tr9VU9DvNoHDWlmecmcsE5ZZiUkYx+nKBzum4Oxe1K0yJVyBlfbq7H3eXjxXqJczBKqPGq3EgfTru4MgKb9+Yw==",
164
+ "/@types/react-redux/7.1.23": "sha512-D02o3FPfqQlfu2WeEYwh3x2otYd2Dk1o8wAfsA0B1C2AJEFxE663Ozu7JzuWbznGgW248NaOF6wsqCGNq9d3qw==",
164
165
  "/@types/react-table/7.7.10": "sha512-yt7FHv/2cFsucStSWLBOB3OmsRZF08DvVHzz8Zg41B4tzRL6pQ+5VYvmhaR1dKS//tDG4UOJ1RQJPEINHYoRtg==",
165
166
  "/@types/react/17.0.44": "sha512-Ye0nlw09GeMp2Suh8qoOv0odfgCoowfM/9MG6WeRD60Gq9wS90bdkdRtYbRkNhXOpG4H+YXGvj4wOWhAC0LJ1g==",
166
167
  "/@types/scheduler/0.16.2": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==",
@@ -386,6 +387,7 @@
386
387
  "/fast-levenshtein/2.0.6": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
387
388
  "/fast-safe-stringify/2.1.1": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==",
388
389
  "/fast-sort/3.1.3": "sha512-DFD9n2nZVfJljjRaEN94SnIvUoSW2wpCdS2LC95iMNnzz8sja4yAYUVOXsXqvTiKUGMXiuhGZkrmtzUx8vopTg==",
390
+ "/fast-xml-parser/4.0.9": "sha512-4G8EzDg2Nb1Qurs3f7BpFV4+jpMVsdgLVuG1Uv8O2OHJfVCg7gcA53obuKbmVqzd4Y7YXVBK05oJG7hzGIdyzg==",
389
391
  "/fastq/1.13.0": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
390
392
  "/fb-watchman/2.0.1": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==",
391
393
  "/figures/3.2.0": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
@@ -678,6 +680,7 @@
678
680
  "/react-input-autosize/3.0.0_react@17.0.2": "sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==",
679
681
  "/react-is/16.13.1": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
680
682
  "/react-is/17.0.2": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
683
+ "/react-redux/7.2.8_react-dom@17.0.2+react@17.0.2": "sha512-6+uDjhs3PSIclqoCk0kd6iX74gzrGc3W5zcAjbrFgEdIjRSQObdIwfx80unTkVUYvbQ95Y8Av3OvFHq1w5EOUw==",
681
684
  "/react-select/3.2.0_react-dom@17.0.2+react@17.0.2": "sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==",
682
685
  "/react-table/7.7.0_react@17.0.2": "sha512-jBlj70iBwOTvvImsU9t01LjFjy4sXEtclBovl3mTiqjz23Reu0DKnRza4zlLtOPACx6j2/7MrQIthIK1Wi+LIA==",
683
686
  "/react-themeable/1.1.0": "sha1-fURm3ZsrX6dQWHJ4JenxUro3mg4=",
@@ -767,6 +770,7 @@
767
770
  "/strip-final-newline/2.0.0": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
768
771
  "/strip-indent/3.0.0": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==",
769
772
  "/strip-json-comments/3.1.1": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
773
+ "/strnum/1.0.5": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==",
770
774
  "/subarg/1.0.0": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=",
771
775
  "/superagent/7.1.2": "sha512-o9/fP6dww7a4xmEF5a484o2rG34UUGo8ztDlv7vbCWuqPhpndMi0f7eXxdlryk5U12Kzy46nh8eNpLAJ93Alsg==",
772
776
  "/supports-color/5.5.0": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
@@ -850,6 +854,7 @@
850
854
  "/xml-name-validator/3.0.0": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
851
855
  "/xml/1.0.1": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==",
852
856
  "/xmlchars/2.2.0": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
857
+ "/xmlhttprequest/1.8.0": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==",
853
858
  "/y18n/5.0.8": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
854
859
  "/yallist/4.0.0": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
855
860
  "/yaml/1.10.2": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
package/CHANGELOG.json CHANGED
@@ -1,6 +1,42 @@
1
1
  {
2
2
  "name": "@itwin/reports-config-widget-react",
3
3
  "entries": [
4
+ {
5
+ "version": "0.0.7",
6
+ "tag": "@itwin/reports-config-widget-react_v0.0.7",
7
+ "date": "Mon, 12 Sep 2022 19:50:36 GMT",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "comment": "updated insights client to 0.3.0"
12
+ }
13
+ ]
14
+ }
15
+ },
16
+ {
17
+ "version": "0.0.6",
18
+ "tag": "@itwin/reports-config-widget-react_v0.0.6",
19
+ "date": "Mon, 08 Aug 2022 11:57:54 GMT",
20
+ "comments": {
21
+ "patch": [
22
+ {
23
+ "comment": "Added missing dev dependencies"
24
+ }
25
+ ]
26
+ }
27
+ },
28
+ {
29
+ "version": "0.0.5",
30
+ "tag": "@itwin/reports-config-widget-react_v0.0.5",
31
+ "date": "Thu, 04 Aug 2022 20:07:49 GMT",
32
+ "comments": {
33
+ "patch": [
34
+ {
35
+ "comment": "Added a missing dev dep"
36
+ }
37
+ ]
38
+ }
39
+ },
4
40
  {
5
41
  "version": "0.0.4",
6
42
  "tag": "@itwin/reports-config-widget-react_v0.0.4",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,27 @@
1
1
  # Change Log - @itwin/reports-config-widget-react
2
2
 
3
- This log was last generated on Thu, 28 Jul 2022 13:50:39 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 12 Sep 2022 19:50:36 GMT and should not be manually modified.
4
+
5
+ ## 0.0.7
6
+ Mon, 12 Sep 2022 19:50:36 GMT
7
+
8
+ ### Patches
9
+
10
+ - updated insights client to 0.3.0
11
+
12
+ ## 0.0.6
13
+ Mon, 08 Aug 2022 11:57:54 GMT
14
+
15
+ ### Patches
16
+
17
+ - Added missing dev dependencies
18
+
19
+ ## 0.0.5
20
+ Thu, 04 Aug 2022 20:07:49 GMT
21
+
22
+ ### Patches
23
+
24
+ - Added a missing dev dep
4
25
 
5
26
  ## 0.0.4
6
27
  Thu, 28 Jul 2022 13:50:39 GMT
@@ -1,7 +1,7 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1659016238539" clover="3.2.0">
3
- <project timestamp="1659016238539" name="All files">
4
- <metrics statements="538" coveredstatements="469" conditionals="336" coveredconditionals="234" methods="119" coveredmethods="101" elements="993" coveredelements="804" complexity="0" loc="538" ncloc="538" packages="6" files="18" classes="18"/>
2
+ <coverage generated="1663012235489" clover="3.2.0">
3
+ <project timestamp="1663012235489" 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"/>
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">
@@ -9,7 +9,7 @@
9
9
  <line num="6" count="4" type="stmt"/>
10
10
  <line num="8" count="4" type="stmt"/>
11
11
  <line num="13" count="3" type="stmt"/>
12
- <line num="17" count="5469" type="stmt"/>
12
+ <line num="17" count="5441" type="stmt"/>
13
13
  <line num="21" count="3" type="cond" truecount="3" falsecount="1"/>
14
14
  <line num="23" count="3" type="stmt"/>
15
15
  <line num="24" count="3" type="stmt"/>
@@ -66,7 +66,7 @@
66
66
  </file>
67
67
  </package>
68
68
  <package name="src.widget.components">
69
- <metrics statements="467" coveredstatements="409" conditionals="322" coveredconditionals="228" methods="99" coveredmethods="85"/>
69
+ <metrics statements="468" coveredstatements="415" conditionals="242" coveredconditionals="172" methods="99" coveredmethods="86"/>
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
72
  <line num="5" count="4" type="stmt"/>
@@ -79,7 +79,7 @@
79
79
  <line num="56" count="4" 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="10" coveredconditionals="8" methods="9" coveredmethods="8"/>
82
+ <metrics statements="46" coveredstatements="43" conditionals="6" coveredconditionals="5" methods="9" coveredmethods="8"/>
83
83
  <line num="5" count="2" type="stmt"/>
84
84
  <line num="6" count="2" type="stmt"/>
85
85
  <line num="8" count="2" type="stmt"/>
@@ -135,8 +135,8 @@
135
135
  <line num="15" count="4" type="stmt"/>
136
136
  <line num="16" count="4" type="stmt"/>
137
137
  <line num="26" count="4" type="stmt"/>
138
- <line num="33" count="160" type="stmt"/>
139
- <line num="35" count="160" type="stmt"/>
138
+ <line num="33" count="158" type="stmt"/>
139
+ <line num="35" count="158" type="stmt"/>
140
140
  <line num="36" count="2" type="stmt"/>
141
141
  <line num="37" count="2" type="stmt"/>
142
142
  <line num="38" count="2" type="stmt"/>
@@ -144,13 +144,13 @@
144
144
  <line num="40" count="2" type="stmt"/>
145
145
  <line num="42" count="0" type="stmt"/>
146
146
  <line num="44" count="2" type="stmt"/>
147
- <line num="48" count="160" type="stmt"/>
147
+ <line num="48" count="158" type="stmt"/>
148
148
  <line num="56" count="0" type="stmt"/>
149
149
  <line num="87" count="0" type="stmt"/>
150
150
  <line num="100" count="4" type="stmt"/>
151
151
  </file>
152
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="63" coveredconditionals="46" methods="14" coveredmethods="12"/>
153
+ <metrics statements="91" coveredstatements="78" conditionals="39" coveredconditionals="31" methods="14" coveredmethods="12"/>
154
154
  <line num="6" count="2" type="stmt"/>
155
155
  <line num="12" count="2" type="stmt"/>
156
156
  <line num="13" count="2" type="stmt"/>
@@ -200,7 +200,7 @@
200
200
  <line num="188" count="1" type="stmt"/>
201
201
  <line num="191" count="1" type="stmt"/>
202
202
  <line num="192" count="1" type="stmt"/>
203
- <line num="196" count="1" type="cond" truecount="6" falsecount="2"/>
203
+ <line num="196" count="1" type="stmt"/>
204
204
  <line num="197" count="1" type="stmt"/>
205
205
  <line num="198" count="1" type="stmt"/>
206
206
  <line num="200" count="0" type="stmt"/>
@@ -213,15 +213,15 @@
213
213
  <line num="210" count="3" type="stmt"/>
214
214
  <line num="213" count="3" type="stmt"/>
215
215
  <line num="214" count="3" type="stmt"/>
216
- <line num="218" count="3" type="cond" truecount="5" falsecount="1"/>
216
+ <line num="218" count="3" type="cond" truecount="2" falsecount="0"/>
217
217
  <line num="219" count="1" type="stmt"/>
218
- <line num="220" count="2" type="cond" truecount="5" falsecount="1"/>
218
+ <line num="220" count="2" type="cond" truecount="2" falsecount="0"/>
219
219
  <line num="221" count="1" type="stmt"/>
220
- <line num="222" count="1" type="cond" truecount="4" falsecount="2"/>
220
+ <line num="222" count="1" type="cond" truecount="1" falsecount="1"/>
221
221
  <line num="223" count="1" type="stmt"/>
222
222
  <line num="224" count="1" type="stmt"/>
223
223
  <line num="225" count="1" type="stmt"/>
224
- <line num="226" count="0" type="cond" truecount="0" falsecount="5"/>
224
+ <line num="226" count="0" type="cond" truecount="0" falsecount="1"/>
225
225
  <line num="227" count="0" type="stmt"/>
226
226
  <line num="228" count="0" type="stmt"/>
227
227
  <line num="229" count="0" type="stmt"/>
@@ -249,7 +249,7 @@
249
249
  <line num="7" count="4" type="stmt"/>
250
250
  <line num="8" count="4" type="stmt"/>
251
251
  <line num="19" count="4" type="stmt"/>
252
- <line num="27" count="323" type="stmt"/>
252
+ <line num="27" count="315" type="stmt"/>
253
253
  </file>
254
254
  <file name="LocalizedTablePaginator.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/LocalizedTablePaginator.tsx">
255
255
  <metrics statements="11" coveredstatements="11" conditionals="2" coveredconditionals="1" methods="6" coveredmethods="6"/>
@@ -304,7 +304,7 @@
304
304
  <line num="146" count="4" type="stmt"/>
305
305
  </file>
306
306
  <file name="ReportMappings.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/ReportMappings.tsx">
307
- <metrics statements="80" coveredstatements="77" conditionals="86" coveredconditionals="64" methods="18" coveredmethods="17"/>
307
+ <metrics statements="81" coveredstatements="78" conditionals="38" coveredconditionals="28" methods="18" coveredmethods="17"/>
308
308
  <line num="5" count="2" type="stmt"/>
309
309
  <line num="11" count="2" type="stmt"/>
310
310
  <line num="21" count="2" type="stmt"/>
@@ -328,66 +328,67 @@
328
328
  <line num="70" count="8" type="stmt"/>
329
329
  <line num="71" count="8" type="stmt"/>
330
330
  <line num="74" count="8" type="stmt"/>
331
- <line num="75" count="8" type="stmt"/>
332
- <line num="79" count="8" type="stmt"/>
333
- <line num="83" count="8" type="stmt"/>
334
- <line num="85" 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"/>
335
334
  <line num="86" count="8" type="stmt"/>
336
- <line num="87" count="8" type="stmt"/>
337
- <line num="89" count="15" type="cond" truecount="3" falsecount="1"/>
338
- <line num="90" count="15" type="stmt"/>
339
- <line num="91" count="15" type="stmt"/>
340
- <line num="96" count="15" type="cond" truecount="1" falsecount="1"/>
341
- <line num="97" count="0" type="cond" truecount="0" falsecount="4"/>
342
- <line num="99" count="15" type="stmt"/>
343
- <line num="103" count="15" type="stmt"/>
344
- <line num="104" count="15" type="stmt"/>
345
- <line num="105" count="15" 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"/>
346
345
  <line num="107" count="15" type="stmt"/>
347
- <line num="113" count="15" type="stmt"/>
348
- <line num="117" count="8" type="stmt"/>
349
- <line num="119" count="0" type="stmt"/>
350
- <line num="121" count="8" type="stmt"/>
351
- <line num="130" count="2" type="stmt"/>
352
- <line num="131" count="92" type="stmt"/>
353
- <line num="133" count="92" 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"/>
354
353
  <line num="134" count="92" type="stmt"/>
354
+ <line num="136" count="92" type="stmt"/>
355
355
  <line num="137" count="92" type="stmt"/>
356
- <line num="138" count="92" type="stmt"/>
357
356
  <line num="140" count="92" type="stmt"/>
357
+ <line num="141" count="92" type="stmt"/>
358
358
  <line num="143" count="92" type="stmt"/>
359
- <line num="144" count="92" type="stmt"/>
360
- <line num="145" count="92" type="stmt"/>
361
- <line num="149" count="92" type="stmt"/>
362
- <line num="150" count="6" type="stmt"/>
363
- <line num="158" count="92" type="stmt"/>
364
- <line num="159" count="2" type="stmt"/>
365
- <line num="160" count="2" type="stmt"/>
366
- <line num="168" count="92" type="stmt"/>
367
- <line num="169" count="1" type="stmt"/>
368
- <line num="172" count="92" type="stmt"/>
369
- <line num="174" count="14" type="stmt"/>
370
- <line num="175" count="15" type="stmt"/>
371
- <line num="183" count="92" type="stmt"/>
372
- <line num="188" count="92" type="stmt"/>
373
- <line num="190" count="73" type="stmt"/>
374
- <line num="191" count="133" type="stmt"/>
375
- <line num="199" count="92" type="stmt"/>
376
- <line num="217" count="1" type="stmt"/>
377
- <line num="218" count="1" type="stmt"/>
378
- <line num="242" count="1" type="stmt"/>
379
- <line num="268" count="0" type="stmt"/>
380
- <line num="279" count="148" type="stmt"/>
381
- <line num="293" count="143" type="stmt"/>
382
- <line num="297" count="1" type="stmt"/>
383
- <line num="298" count="1" type="stmt"/>
384
- <line num="299" count="1" type="stmt"/>
385
- <line num="336" count="1" 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
386
  <line num="339" count="1" type="stmt"/>
387
- <line num="340" count="1" type="stmt"/>
387
+ <line num="342" count="1" type="stmt"/>
388
+ <line num="343" count="1" type="stmt"/>
388
389
  </file>
389
390
  <file name="Reports.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/Reports.tsx">
390
- <metrics statements="68" coveredstatements="67" conditionals="61" coveredconditionals="48" methods="16" coveredmethods="16"/>
391
+ <metrics statements="68" coveredstatements="68" conditionals="57" coveredconditionals="45" methods="16" coveredmethods="16"/>
391
392
  <line num="5" count="4" type="stmt"/>
392
393
  <line num="11" count="4" type="stmt"/>
393
394
  <line num="18" count="4" type="stmt"/>
@@ -414,40 +415,40 @@
414
415
  <line num="58" count="9" type="stmt"/>
415
416
  <line num="61" count="9" type="stmt"/>
416
417
  <line num="62" count="9" type="stmt"/>
417
- <line num="63" count="9" type="cond" truecount="3" falsecount="1"/>
418
- <line num="65" count="0" type="stmt"/>
418
+ <line num="63" count="7" type="cond" truecount="3" falsecount="1"/>
419
+ <line num="65" count="2" type="stmt"/>
419
420
  <line num="67" count="9" type="stmt"/>
420
421
  <line num="71" count="4" type="stmt"/>
421
- <line num="72" count="69" type="cond" truecount="6" falsecount="2"/>
422
- <line num="73" count="69" type="stmt"/>
423
- <line num="74" count="69" type="stmt"/>
424
- <line num="75" count="69" type="stmt"/>
425
- <line num="78" count="69" type="stmt"/>
426
- <line num="81" count="69" type="stmt"/>
427
- <line num="82" count="69" type="stmt"/>
428
- <line num="83" count="69" type="stmt"/>
429
- <line num="85" count="69" 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"/>
430
431
  <line num="86" count="8" type="stmt"/>
431
- <line num="89" count="69" type="stmt"/>
432
+ <line num="89" count="67" type="stmt"/>
432
433
  <line num="90" count="1" type="stmt"/>
433
434
  <line num="91" count="1" type="stmt"/>
434
435
  <line num="92" count="1" type="stmt"/>
435
- <line num="95" count="69" type="stmt"/>
436
+ <line num="95" count="67" type="stmt"/>
436
437
  <line num="96" count="2" type="stmt"/>
437
- <line num="99" count="69" type="stmt"/>
438
- <line num="101" count="51" type="stmt"/>
439
- <line num="102" count="166" type="stmt"/>
440
- <line num="110" count="69" type="cond" truecount="4" falsecount="0"/>
438
+ <line num="99" count="67" type="stmt"/>
439
+ <line num="101" count="49" type="stmt"/>
440
+ <line num="102" count="161" type="stmt"/>
441
+ <line num="110" count="67" type="cond" truecount="4" falsecount="0"/>
441
442
  <line num="112" count="2" type="cond" truecount="1" falsecount="1"/>
442
443
  <line num="116" count="2" type="cond" truecount="1" falsecount="1"/>
443
444
  <line num="124" count="1" type="cond" truecount="1" falsecount="1"/>
444
- <line num="128" count="64" type="stmt"/>
445
+ <line num="128" count="62" type="stmt"/>
445
446
  <line num="139" count="1" type="stmt"/>
446
447
  <line num="163" count="1" type="stmt"/>
447
- <line num="173" count="175" type="stmt"/>
448
+ <line num="173" count="167" type="stmt"/>
448
449
  <line num="181" count="1" type="stmt"/>
449
450
  <line num="182" count="1" type="stmt"/>
450
- <line num="186" count="175" type="stmt"/>
451
+ <line num="186" count="167" type="stmt"/>
451
452
  <line num="190" count="2" type="stmt"/>
452
453
  <line num="191" count="2" type="stmt"/>
453
454
  <line num="202" count="1" type="stmt"/>
@@ -481,9 +482,9 @@
481
482
  <line num="8" count="4" type="stmt"/>
482
483
  <line num="9" count="4" type="stmt"/>
483
484
  <line num="17" count="4" type="stmt"/>
484
- <line num="22" count="158" type="stmt"/>
485
- <line num="23" count="158" type="stmt"/>
486
- <line num="25" count="158" type="cond" truecount="4" falsecount="0"/>
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"/>
487
488
  <line num="31" count="0" type="cond" truecount="0" falsecount="1"/>
488
489
  <line num="32" count="0" type="stmt"/>
489
490
  <line num="33" count="0" type="stmt"/>
@@ -528,17 +529,17 @@
528
529
  <line num="92" count="0" type="stmt"/>
529
530
  </file>
530
531
  <file name="utils.tsx" path="/home/vsts/work/1/s/packages/itwin/reports-config-widget/src/widget/components/utils.tsx">
531
- <metrics statements="43" coveredstatements="21" conditionals="13" coveredconditionals="3" methods="8" coveredmethods="7"/>
532
+ <metrics statements="43" coveredstatements="25" conditionals="13" coveredconditionals="4" methods="8" coveredmethods="8"/>
532
533
  <line num="5" count="4" type="stmt"/>
533
534
  <line num="6" count="4" type="stmt"/>
534
535
  <line num="12" count="4" type="stmt"/>
535
536
  <line num="13" count="4" type="stmt"/>
536
537
  <line num="14" count="4" type="stmt"/>
537
538
  <line num="22" count="4" type="stmt"/>
538
- <line num="27" count="425" type="stmt"/>
539
+ <line num="27" count="423" type="stmt"/>
539
540
  <line num="45" count="4" type="stmt"/>
540
- <line num="46" count="0" type="stmt"/>
541
- <line num="49" count="0" type="cond" truecount="0" falsecount="10"/>
541
+ <line num="46" count="2" type="stmt"/>
542
+ <line num="49" count="2" type="cond" truecount="1" falsecount="9"/>
542
543
  <line num="51" count="0" type="stmt"/>
543
544
  <line num="54" count="0" type="stmt"/>
544
545
  <line num="56" count="0" type="stmt"/>
@@ -557,10 +558,10 @@
557
558
  <line num="89" count="0" type="stmt"/>
558
559
  <line num="91" count="0" type="stmt"/>
559
560
  <line num="94" count="0" type="stmt"/>
560
- <line num="96" count="0" type="stmt"/>
561
- <line num="100" count="0" type="stmt"/>
561
+ <line num="96" count="2" type="stmt"/>
562
+ <line num="100" count="2" type="stmt"/>
562
563
  <line num="103" count="4" type="stmt"/>
563
- <line num="104" count="34" type="stmt"/>
564
+ <line num="104" count="32" type="stmt"/>
564
565
  <line num="121" count="4" type="stmt"/>
565
566
  <line num="122" count="2" type="stmt"/>
566
567
  <line num="125" count="4" type="stmt"/>
@@ -571,7 +572,7 @@
571
572
  <line num="149" count="4" type="stmt"/>
572
573
  <line num="150" count="16" type="stmt"/>
573
574
  <line num="153" count="4" type="stmt"/>
574
- <line num="154" count="127" type="stmt"/>
575
+ <line num="154" count="135" type="stmt"/>
575
576
  </file>
576
577
  </package>
577
578
  <package name="src.widget.context">
@@ -583,10 +584,10 @@
583
584
  <line num="14" count="4" type="stmt"/>
584
585
  <line num="15" count="0" type="stmt"/>
585
586
  <line num="19" count="4" type="stmt"/>
586
- <line num="20" count="634" type="stmt"/>
587
- <line num="21" count="634" type="cond" truecount="0" falsecount="1"/>
587
+ <line num="20" count="632" type="stmt"/>
588
+ <line num="21" count="632" type="cond" truecount="0" falsecount="1"/>
588
589
  <line num="22" count="0" type="stmt"/>
589
- <line num="26" count="634" type="stmt"/>
590
+ <line num="26" count="632" type="stmt"/>
590
591
  </file>
591
592
  </package>
592
593
  <package name="src.widget.hooks">