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