@reltio/dq-dashboard 1.4.1585 → 1.4.1586-mui5

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 (345) hide show
  1. package/index.ts +1 -0
  2. package/package.json +35 -18
  3. package/public/bundle.js +155 -0
  4. package/public/bundle.js.LICENSE.txt +51 -0
  5. package/public/package.json +19 -0
  6. package/scripts/build/index.js +20 -0
  7. package/src/components/AttributeListItem/AttributeListItem.tsx +139 -0
  8. package/src/components/AttributeListItem/TreeLines/TreeLines.tsx +50 -0
  9. package/src/components/AttributeListItem/TreeLines/__tests__/TreeLines.test.tsx +86 -0
  10. package/src/components/AttributeListItem/TreeLines/styles.ts +41 -0
  11. package/src/components/AttributeListItem/__tests__/AttributeListItem.test.tsx +146 -0
  12. package/src/components/AttributeListItem/styles.ts +154 -0
  13. package/src/components/AttributeTypeDetailChip/AttributeTypeDetailChip.tsx +59 -0
  14. package/src/components/AttributeTypeDetailChip/__tests__/AttributeTypeDetailChip.test.tsx +62 -0
  15. package/src/components/AttributeTypeDetailChip/styles.ts +19 -0
  16. package/src/components/AttributeTypeDetailIcon/AttributeTypeDetailIcon.tsx +57 -0
  17. package/src/components/AttributeTypeDetailIcon/__test__/AttributeTypeDetailIcon.test.tsx +35 -0
  18. package/src/components/AttributeTypeDetailIcon/icons/dvf.svg +4 -0
  19. package/src/components/AttributeTypeDetailIcon/icons/includedInMatching.svg +4 -0
  20. package/src/components/AttributeTypeDetailIcon/icons/rdm.svg +4 -0
  21. package/src/components/AttributeTypeDetailIcon/icons/reference.svg +4 -0
  22. package/src/components/AttributeTypeDetailIcon/icons/required.svg +4 -0
  23. package/src/components/AttributeTypeDetailIcon/styles.ts +22 -0
  24. package/src/components/AttributeTypeDetails/AttributeTypeDetails.tsx +37 -0
  25. package/src/components/AttributeTypeDetails/styles.ts +12 -0
  26. package/src/components/AttributeTypeDetailsIcons/AttributeTypeDetailsIcons.tsx +69 -0
  27. package/src/components/AttributeTypeDetailsIcons/__tests__/AttributeTypeDetailsIcons.test.tsx +96 -0
  28. package/src/components/AttributeTypeDetailsIcons/styles.ts +21 -0
  29. package/src/components/AttributeTypeIcon/AttributeTypeIcon.tsx +50 -0
  30. package/src/components/AttributeTypeIcon/__test__/AttributeTypeIcon.test.tsx +37 -0
  31. package/src/components/AttributeTypeIcon/icons/boolean.svg +8 -0
  32. package/src/components/AttributeTypeIcon/icons/date.svg +8 -0
  33. package/src/components/AttributeTypeIcon/icons/float.svg +10 -0
  34. package/src/components/AttributeTypeIcon/icons/integer.svg +5 -0
  35. package/src/components/AttributeTypeIcon/icons/ssn.svg +10 -0
  36. package/src/components/AttributeTypeIcon/icons/string.svg +10 -0
  37. package/src/components/AttributeTypeIcon/styles.ts +12 -0
  38. package/src/components/AttributesFilters/AttributesFilters.tsx +172 -0
  39. package/src/components/AttributesFilters/Option.tsx +43 -0
  40. package/src/components/AttributesFilters/__tests__/AttributesFilters.test.tsx +253 -0
  41. package/src/components/AttributesFilters/__tests__/Option.test.tsx +54 -0
  42. package/src/components/AttributesFilters/__tests__/helpers.test.tsx +14 -0
  43. package/src/components/AttributesFilters/helpers.ts +20 -0
  44. package/src/components/AttributesFilters/styles.ts +126 -0
  45. package/src/components/ChartDataTooltip/ChartDataTooltip.tsx +33 -0
  46. package/src/components/ChartDataTooltip/TooltipWithSquares/TooltipWithSquares.tsx +38 -0
  47. package/src/components/ChartDataTooltip/TooltipWithSquares/styles.ts +11 -0
  48. package/src/components/ChartDataTooltip/__tests__/ChartDataTooltip.test.tsx +68 -0
  49. package/src/components/ChartDataTooltip/__tests__/IntegrationAnomalyDataRenderer.test.tsx +20 -0
  50. package/src/components/ChartDataTooltip/data-renderers/AnomalyDataRenderer.tsx +40 -0
  51. package/src/components/ChartDataTooltip/data-renderers/ChartDataRenderer.tsx +21 -0
  52. package/src/components/ChartDataTooltip/data-renderers/InfoDataRenderer.tsx +21 -0
  53. package/src/components/ChartDataTooltip/data-renderers/styles.ts +45 -0
  54. package/src/components/ChartDataTooltip/index.ts +6 -0
  55. package/src/components/ChartDataTooltip/styles.ts +16 -0
  56. package/src/components/ChartInfoPanel/ChartInfoPanel.tsx +42 -0
  57. package/src/components/ChartInfoPanel/TimeSeriesInfoPanel.tsx +59 -0
  58. package/src/components/ChartInfoPanel/__tests__/ChartInfoPanel.test.tsx +303 -0
  59. package/src/components/ChartInfoPanel/negativeDynamic.svg +3 -0
  60. package/src/components/ChartInfoPanel/positiveDynamic.svg +3 -0
  61. package/src/components/ChartInfoPanel/styles.ts +41 -0
  62. package/src/components/ChartLegends/ChartLegends.tsx +53 -0
  63. package/src/components/ChartLegends/CustomLegend.tsx +31 -0
  64. package/src/components/ChartLegends/__tests__/ChartLegends.test.tsx +46 -0
  65. package/src/components/ChartLegends/__tests__/CustomLegend.test.tsx +29 -0
  66. package/src/components/ChartLegends/styles.ts +44 -0
  67. package/src/components/ContentSlider/ContentSlider.tsx +72 -0
  68. package/src/components/ContentSlider/__tests__/ContentSlider.test.tsx +80 -0
  69. package/src/components/ContentSlider/helpers.ts +67 -0
  70. package/src/components/ContentSlider/styles.ts +23 -0
  71. package/src/components/CustomTableWithBars/TableWithBars.tsx +105 -0
  72. package/src/components/CustomTableWithBars/__test__/TableWithBars.test.tsx +142 -0
  73. package/src/components/CustomTableWithBars/cell-renderers/HeadCellRenderer.tsx +68 -0
  74. package/src/components/CustomTableWithBars/cell-renderers/LabelCellRenderer.tsx +55 -0
  75. package/src/components/CustomTableWithBars/cell-renderers/NumberCellValueRenderer.tsx +60 -0
  76. package/src/components/CustomTableWithBars/cell-renderers/OverflowingHandler.tsx +24 -0
  77. package/src/components/CustomTableWithBars/cell-renderers/TableCellTooltip.tsx +27 -0
  78. package/src/components/CustomTableWithBars/cell-renderers/__tests__/HeadCellRenderer.test.tsx +35 -0
  79. package/src/components/CustomTableWithBars/cell-renderers/__tests__/LabelCellRenderer.test.tsx +51 -0
  80. package/src/components/CustomTableWithBars/cell-renderers/__tests__/NumberCellValueRenderer.test.tsx +102 -0
  81. package/src/components/CustomTableWithBars/cell-renderers/__tests__/OverflowingHandler.test.tsx +58 -0
  82. package/src/components/CustomTableWithBars/cell-renderers/__tests__/TableCellTooltip.test.tsx +22 -0
  83. package/src/components/CustomTableWithBars/cell-renderers/styles.ts +161 -0
  84. package/src/components/CustomTableWithBars/helpers.ts +7 -0
  85. package/src/components/CustomTableWithBars/styles.ts +32 -0
  86. package/src/components/DQDashboardAttributesList/DQDashboardAttributesList.tsx +277 -0
  87. package/src/components/DQDashboardAttributesList/__tests__/DQDashboardAttributesList.test.tsx +2300 -0
  88. package/src/components/DQDashboardAttributesList/helpers.ts +145 -0
  89. package/src/components/DQDashboardAttributesList/styles.ts +83 -0
  90. package/src/components/DQDashboardError/DQDashboardError.tsx +43 -0
  91. package/src/components/DQDashboardError/styles.ts +72 -0
  92. package/src/components/DQDashboardHeader/DQDashboardHeader.tsx +21 -0
  93. package/src/components/DQDashboardHeader/__tests__/DQDashboardHeader.test.tsx +18 -0
  94. package/src/components/DQDashboardHeader/styles.ts +17 -0
  95. package/src/components/DQDashboardLayout/DQDashboardLayout.tsx +35 -0
  96. package/src/components/DQDashboardLayout/__tests__/DQDashboardLayout.test.tsx +51 -0
  97. package/src/components/DQDashboardLayoutItem/DQDashboardLayoutItem.tsx +43 -0
  98. package/src/components/DQDashboardLayoutItem/__tests__/DQDashboardLayoutItem.test.tsx +90 -0
  99. package/src/components/DQDashboardNoContent/DQDashboardNoContent.tsx +30 -0
  100. package/src/components/DQDashboardNoContent/__tests__/DQDasboardNoContent.test.tsx +45 -0
  101. package/src/components/DQDashboardPerspectiveView/AttributeLevelLayout.tsx +84 -0
  102. package/src/components/DQDashboardPerspectiveView/DQDashboardPerspectiveView.tsx +291 -0
  103. package/src/components/DQDashboardPerspectiveView/DataLevelSwitcher/DataLevelSwitcher.tsx +31 -0
  104. package/src/components/DQDashboardPerspectiveView/DataLevelSwitcher/__tests__/DataLevelSwitcher.test.tsx +29 -0
  105. package/src/components/DQDashboardPerspectiveView/DataLevelSwitcher/styles.ts +55 -0
  106. package/src/components/DQDashboardPerspectiveView/EntityLevelLayout/EntityLevelLayout.tsx +77 -0
  107. package/src/components/DQDashboardPerspectiveView/EntityLevelLayout/__tests__/EntityLevelLayout.test.tsx +148 -0
  108. package/src/components/DQDashboardPerspectiveView/EntityLevelLayout/styles.ts +40 -0
  109. package/src/components/DQDashboardPerspectiveView/__tests__/AttributeLevelLayout.test.tsx +196 -0
  110. package/src/components/DQDashboardPerspectiveView/__tests__/DQDashboardPerspectiveView.test.tsx +2013 -0
  111. package/src/components/DQDashboardPerspectiveView/__tests__/IntegrationDQDashboardPerspectiveView.test.tsx +216 -0
  112. package/src/components/DQDashboardPerspectiveView/__tests__/helper.test.ts +51 -0
  113. package/src/components/DQDashboardPerspectiveView/constants.ts +3 -0
  114. package/src/components/DQDashboardPerspectiveView/helpers.ts +52 -0
  115. package/src/components/DQDashboardPerspectiveView/index.tsx +67 -0
  116. package/src/components/DQDashboardPerspectiveView/styles.ts +102 -0
  117. package/src/components/DQLayoutItemContent/DQLayoutItemContent.tsx +88 -0
  118. package/src/components/DQLayoutItemContent/__tests__/IntegrationDQLayoutItemContent.test.tsx +18 -0
  119. package/src/components/DQLayoutItemContent/styles.ts +10 -0
  120. package/src/components/DQLayoutItemHeader/DQLayoutItemHeader.tsx +43 -0
  121. package/src/components/DQLayoutItemHeader/__tests__/DQLayoutItemHeader.test.tsx +26 -0
  122. package/src/components/DQLayoutItemHeader/styles.ts +15 -0
  123. package/src/components/DQLayoutItemView/DQLayoutItemView.tsx +32 -0
  124. package/src/components/DQLayoutItemView/styles.ts +10 -0
  125. package/src/components/DataLevelBreadcrumbs/DataLevelBreadcrumbs.tsx +60 -0
  126. package/src/components/DataLevelBreadcrumbs/__tests__/DataLevelBreadcrumbs.test.tsx +62 -0
  127. package/src/components/DataLevelBreadcrumbs/styles.ts +14 -0
  128. package/src/components/EntityTypeSelector/EntityTypeSelector.tsx +36 -0
  129. package/src/components/EntityTypeSelector/__tests__/EntityTypeSelector.test.tsx +57 -0
  130. package/src/components/FillRateLine/FillRateLine.tsx +44 -0
  131. package/src/components/FillRateLine/__tests__/FillRateLine.test.tsx +84 -0
  132. package/src/components/FillRateLine/styles.ts +23 -0
  133. package/src/components/LineChart/LineChart.tsx +154 -0
  134. package/src/components/LineChart/__tests__/IntegrationLineChart.test.tsx +72 -0
  135. package/src/components/LineChart/__tests__/LineChart.test.tsx +371 -0
  136. package/src/components/LineChart/getLineChartSettings.ts +122 -0
  137. package/src/components/LineChart/helpers.ts +91 -0
  138. package/src/components/LineChart/styles.ts +8 -0
  139. package/src/components/LoadingComponent/LoadingComponent.tsx +16 -0
  140. package/src/components/LoadingComponent/__tests__/LoadingComponent.test.tsx +16 -0
  141. package/src/components/LoadingComponent/icons/Loading.svg +167 -0
  142. package/src/components/PeriodChip/PeriodChip.tsx +32 -0
  143. package/src/components/PeriodChip/__tests__/PeriodChip.test.tsx +40 -0
  144. package/src/components/PeriodChip/styles.ts +19 -0
  145. package/src/components/SearchByOVSwitcher/SearchByOVSwitcher.tsx +37 -0
  146. package/src/components/SearchByOVSwitcher/styles.ts +12 -0
  147. package/src/components/Selector/Selector.tsx +99 -0
  148. package/src/components/Selector/__tests__/Selector.test.tsx +78 -0
  149. package/src/components/Selector/styles.ts +64 -0
  150. package/src/components/SourceLabelRenderer/SourceLabelRenderer.tsx +32 -0
  151. package/src/components/SourceLabelRenderer/__tests__/SourceLabelRenderer.test.tsx +18 -0
  152. package/src/components/SourceLabelRenderer/styles.ts +22 -0
  153. package/src/components/StackedHorizontalBarChart/Bar.tsx +13 -0
  154. package/src/components/StackedHorizontalBarChart/StackedHorizontalBarChart.tsx +64 -0
  155. package/src/components/StackedHorizontalBarChart/__tests__/StackedHorizontalBarChart.test.tsx +114 -0
  156. package/src/components/StackedHorizontalBarChart/styles.ts +96 -0
  157. package/src/components/Summary/AttributeTypeSummary.tsx +69 -0
  158. package/src/components/Summary/EntityTypeSummary.tsx +68 -0
  159. package/src/components/Summary/HeaderInfo.tsx +23 -0
  160. package/src/components/Summary/__tests__/AttributeTypeSummary.test.tsx +139 -0
  161. package/src/components/Summary/__tests__/EntityTypeSummary.test.tsx +236 -0
  162. package/src/components/Summary/__tests__/IntegrationEntityTypeSummary.test.tsx +142 -0
  163. package/src/components/Summary/styles.ts +64 -0
  164. package/src/components/UpdateTimeHeader/UpdateTimeHeader.tsx +50 -0
  165. package/src/components/UpdateTimeHeader/__tests__/UpdateTimeHeader.test.tsx +51 -0
  166. package/src/components/UpdateTimeHeader/styles.ts +13 -0
  167. package/src/components/Warning/Warning.tsx +17 -0
  168. package/src/components/Warning/__tests__/Warning.test.tsx +18 -0
  169. package/src/components/Warning/styles.ts +20 -0
  170. package/src/constants/AnomalyDataKey.ts +3 -0
  171. package/src/constants/ChartDataType.ts +9 -0
  172. package/src/constants/RdmLookupState.ts +4 -0
  173. package/src/constants/ViewType.ts +13 -0
  174. package/src/constants/defaultConfig.ts +252 -0
  175. package/src/contexts/ChartsDataProvider/index.tsx +18 -0
  176. package/src/contexts/DQDashboardStateContext/index.tsx +107 -0
  177. package/src/contexts/DVFContext/index.ts +18 -0
  178. package/src/contexts/DataLevelContext/index.ts +6 -0
  179. package/src/contexts/PermissionsProvider/index.tsx +49 -0
  180. package/src/contexts/ReloadFacetContext/index.tsx +107 -0
  181. package/src/hooks/__tests__/IntegrationUseSearchRedirect.test.tsx +101 -0
  182. package/src/hooks/__tests__/useChartsDataRequest.test.tsx +439 -0
  183. package/src/hooks/__tests__/useDVF.test.tsx +181 -0
  184. package/src/hooks/__tests__/useDVFConfigLink.test.tsx +77 -0
  185. package/src/hooks/__tests__/useDebounceFunction.test.tsx +50 -0
  186. package/src/hooks/__tests__/useEntityCount.test.tsx +97 -0
  187. package/src/hooks/__tests__/useExistsTotalsRequest.test.tsx +90 -0
  188. package/src/hooks/__tests__/useFillRateRequest.test.tsx +130 -0
  189. package/src/hooks/__tests__/useInvalidProfiles.test.tsx +62 -0
  190. package/src/hooks/__tests__/useMlDqDataRequest.test.tsx +311 -0
  191. package/src/hooks/__tests__/usePermissions.test.tsx +55 -0
  192. package/src/hooks/__tests__/useRDMChartDataRequest.test.tsx +138 -0
  193. package/src/hooks/__tests__/useSearchRedirect.test.tsx +206 -0
  194. package/src/hooks/useAttrTypeDetails.ts +48 -0
  195. package/src/hooks/useChartData.ts +13 -0
  196. package/src/hooks/useChartsDataRequest.ts +149 -0
  197. package/src/hooks/useDVF.ts +49 -0
  198. package/src/hooks/useDebounceFunction.ts +23 -0
  199. package/src/hooks/useDvfConfigLink.ts +37 -0
  200. package/src/hooks/useEntityCount.ts +61 -0
  201. package/src/hooks/useEntityTypes.ts +10 -0
  202. package/src/hooks/useExistsTotalsRequest.ts +39 -0
  203. package/src/hooks/useFillRateRequest.ts +57 -0
  204. package/src/hooks/useInvalidProfiles.ts +29 -0
  205. package/src/hooks/useMlDqDataRequest.ts +128 -0
  206. package/src/hooks/usePermissionsRequest.ts +43 -0
  207. package/src/hooks/useRDMChartDataRequest.ts +59 -0
  208. package/src/hooks/useSearchRedirect.ts +49 -0
  209. package/src/services/__tests__/barCharts.test.ts +869 -0
  210. package/src/services/__tests__/charts.test.ts +253 -0
  211. package/src/services/__tests__/dateRange.test.ts +29 -0
  212. package/src/services/__tests__/fillRate.test.ts +168 -0
  213. package/src/services/__tests__/mlDq.test.ts +253 -0
  214. package/src/services/__tests__/rdmTranscode.test.ts +46 -0
  215. package/src/services/__tests__/tableCharts.test.ts +366 -0
  216. package/src/services/advancedFilters.ts +24 -0
  217. package/src/services/attributeDetails.ts +99 -0
  218. package/src/services/attributeFilters.ts +39 -0
  219. package/src/services/attributes.ts +38 -0
  220. package/src/services/barCharts.ts +375 -0
  221. package/src/services/charts.ts +321 -0
  222. package/src/services/dateRange.ts +14 -0
  223. package/src/services/fillRate.ts +87 -0
  224. package/src/services/mlDq.ts +161 -0
  225. package/src/services/rawFilters.ts +61 -0
  226. package/src/services/rdmTranscode.ts +63 -0
  227. package/src/services/tableCharts.ts +159 -0
  228. package/src/services/uniquenessAnalysis.ts +67 -0
  229. package/src/theme/index.ts +10 -0
  230. package/src/types/AttributeTypeInfo.ts +6 -0
  231. package/src/types/BarChartOptions.ts +14 -0
  232. package/src/types/ChartsDataWithState.ts +8 -0
  233. package/src/types/DQDashboardPerspectiveConfig.ts +21 -0
  234. package/src/types/DQDashboardSavedState.ts +13 -0
  235. package/src/types/DQDashboardView.ts +8 -0
  236. package/src/types/DQDateRangeValue.ts +6 -0
  237. package/src/types/DetailedAttributeType.ts +23 -0
  238. package/src/types/EmptyStateVariants.ts +5 -0
  239. package/src/types/ErrorData.ts +7 -0
  240. package/src/types/FacetFilter.ts +8 -0
  241. package/src/types/FilterOption.ts +6 -0
  242. package/src/types/FilterOptionsGroup.ts +6 -0
  243. package/src/types/GetSearchStateProps.ts +6 -0
  244. package/src/types/InfoPanelData.ts +5 -0
  245. package/src/types/LineChartData.ts +4 -0
  246. package/src/types/TableChartData.ts +3 -0
  247. package/src/types/TableColumnHeader.ts +4 -0
  248. package/src/types/TickProps.ts +11 -0
  249. package/src/types/TimeSeriesChartData.ts +4 -0
  250. package/src/types/ViewProps.ts +7 -0
  251. package/src/views/DQDashboardErrorView/DQDashboardErrorView.tsx +43 -0
  252. package/src/views/DQDashboardErrorView/styles.ts +10 -0
  253. package/src/views/Summary/Summary.tsx +40 -0
  254. package/src/views/Summary/styles.ts +8 -0
  255. package/src/views/ViewsFactory.tsx +69 -0
  256. package/src/views/__tests__/DQDashboardErrorView.test.tsx +22 -0
  257. package/src/views/__tests__/Summary.test.tsx +129 -0
  258. package/src/views/__tests__/ViewsFactory.test.tsx +91 -0
  259. package/src/views/charts/ConsolidationRateChart/ConsolidationPercentage.tsx +26 -0
  260. package/src/views/charts/ConsolidationRateChart/ConsolidationRateChart.tsx +211 -0
  261. package/src/views/charts/ConsolidationRateChart/YAxisTickRenderer.tsx +20 -0
  262. package/src/views/charts/ConsolidationRateChart/__tests__/ConsolidationPercentage.test.tsx +52 -0
  263. package/src/views/charts/ConsolidationRateChart/__tests__/ConsolidationRateChart.test.tsx +227 -0
  264. package/src/views/charts/ConsolidationRateChart/__tests__/YAxisTickRenderer.test.tsx +55 -0
  265. package/src/views/charts/ConsolidationRateChart/styles.ts +25 -0
  266. package/src/views/charts/CrosswalkAnalysisChart/CrosswalkAnalysisChart.tsx +61 -0
  267. package/src/views/charts/CrosswalkAnalysisChart/__tests__/CrosswalkAnalysisChart.test.tsx +113 -0
  268. package/src/views/charts/CustomBarChart/BarTooltip/BarTooltip.tsx +29 -0
  269. package/src/views/charts/CustomBarChart/BarTooltip/__test__/BarTooltip.test.tsx +34 -0
  270. package/src/views/charts/CustomBarChart/BarTooltip/styles.ts +8 -0
  271. package/src/views/charts/CustomBarChart/CustomBackgroundOnHover.tsx +16 -0
  272. package/src/views/charts/CustomBarChart/CustomBar.tsx +12 -0
  273. package/src/views/charts/CustomBarChart/CustomBarChart.tsx +89 -0
  274. package/src/views/charts/CustomBarChart/InfoPanel.tsx +28 -0
  275. package/src/views/charts/CustomBarChart/StackedBarChart.tsx +91 -0
  276. package/src/views/charts/CustomBarChart/XAxisLabel/XAxisLabel.tsx +38 -0
  277. package/src/views/charts/CustomBarChart/XAxisLabel/__tests__/XAxisLabel.test.tsx +47 -0
  278. package/src/views/charts/CustomBarChart/XAxisLabel/styles.ts +26 -0
  279. package/src/views/charts/CustomBarChart/__test__/CustomBackgroundOnHover.test.tsx +42 -0
  280. package/src/views/charts/CustomBarChart/__test__/CustomBarChart.test.tsx +155 -0
  281. package/src/views/charts/CustomBarChart/__test__/InfoPanel.test.tsx +24 -0
  282. package/src/views/charts/CustomBarChart/__test__/StackedBarChart.test.tsx +60 -0
  283. package/src/views/charts/CustomBarChart/getBarChartSettings.ts +76 -0
  284. package/src/views/charts/CustomBarChart/styles.ts +37 -0
  285. package/src/views/charts/CustomTableWithBarsChart/CustomTableWithBarsChart.tsx +108 -0
  286. package/src/views/charts/CustomTableWithBarsChart/__test__/CustomTableWithBarsChart.test.tsx +101 -0
  287. package/src/views/charts/CustomTableWithBarsChart/styles.ts +9 -0
  288. package/src/views/charts/DayOfMonthDistributionChart.tsx +29 -0
  289. package/src/views/charts/DayOfWeekDistributionChart.tsx +29 -0
  290. package/src/views/charts/FillRateChart/FillRateChart.tsx +22 -0
  291. package/src/views/charts/FillRateChart/FillRateTimeSeriesChart.tsx +141 -0
  292. package/src/views/charts/FillRateChart/__tests__/FillRateChart.test.tsx +55 -0
  293. package/src/views/charts/FillRateChart/__tests__/FillRateChartToday.test.tsx +83 -0
  294. package/src/views/charts/FillRateChart/__tests__/FillRateTimeSeriesChart.test.tsx +280 -0
  295. package/src/views/charts/FillRateChart/__tests__/IntegrationFillRateChart.test.tsx +72 -0
  296. package/src/views/charts/FillRateChart/index.tsx +56 -0
  297. package/src/views/charts/FillRateChart/styles.ts +19 -0
  298. package/src/views/charts/FrequencyAnalysisChart.tsx +66 -0
  299. package/src/views/charts/LengthStatisticsChart.tsx +36 -0
  300. package/src/views/charts/MonthDistributionChart.tsx +29 -0
  301. package/src/views/charts/PatternAnalysisChart.tsx +45 -0
  302. package/src/views/charts/RDMTranscodeChart/RDMTranscodeChart.tsx +66 -0
  303. package/src/views/charts/RDMTranscodeChart/__tests__/RDMTranscodechart.test.tsx +73 -0
  304. package/src/views/charts/RDMTranscodeChart/styles.ts +10 -0
  305. package/src/views/charts/UniquenessAnalysisChart/UniquenessAnalysisChart.tsx +20 -0
  306. package/src/views/charts/UniquenessAnalysisChart/UniquenessAnalysisTimeSeriesChart.tsx +142 -0
  307. package/src/views/charts/UniquenessAnalysisChart/__tests__/IntegrationUniquenessAnalysisChart.test.tsx +72 -0
  308. package/src/views/charts/UniquenessAnalysisChart/__tests__/UniquenessAnalysisChart.test.tsx +55 -0
  309. package/src/views/charts/UniquenessAnalysisChart/__tests__/UniquenessAnalysisTimeSeriesChart.test.tsx +276 -0
  310. package/src/views/charts/UniquenessAnalysisChart/__tests__/UniquenessAnalysisTodayChart.test.tsx +77 -0
  311. package/src/views/charts/UniquenessAnalysisChart/index.tsx +58 -0
  312. package/src/views/charts/UniquenessAnalysisChart/styles.ts +19 -0
  313. package/src/views/charts/ValueDistributionChart.tsx +31 -0
  314. package/src/views/charts/ViolatedValidationFuncChart/TotalInfo.tsx +34 -0
  315. package/src/views/charts/ViolatedValidationFuncChart/VVFChartNodata.tsx +109 -0
  316. package/src/views/charts/ViolatedValidationFuncChart/ViolatedValidationFuncChart.tsx +129 -0
  317. package/src/views/charts/ViolatedValidationFuncChart/ViolatedValidationFuncTimeSeriesChart.tsx +166 -0
  318. package/src/views/charts/ViolatedValidationFuncChart/__tests__/IntegrationViolatedValidationFuncChartToday.test.tsx +139 -0
  319. package/src/views/charts/ViolatedValidationFuncChart/__tests__/IntegrationViolatedValidationFuncTimeSeriesChart.test.tsx +208 -0
  320. package/src/views/charts/ViolatedValidationFuncChart/__tests__/TotalInfo.test.tsx +24 -0
  321. package/src/views/charts/ViolatedValidationFuncChart/__tests__/VVFChartNodata.test.tsx +81 -0
  322. package/src/views/charts/ViolatedValidationFuncChart/__tests__/ViolatedValidationFuncChart.test.tsx +50 -0
  323. package/src/views/charts/ViolatedValidationFuncChart/__tests__/ViolatedValidationFuncChartToday.test.tsx +355 -0
  324. package/src/views/charts/ViolatedValidationFuncChart/__tests__/ViolatedValidationFuncTimeSeriesChart.test.tsx +497 -0
  325. package/src/views/charts/ViolatedValidationFuncChart/helpers.ts +62 -0
  326. package/src/views/charts/ViolatedValidationFuncChart/hooks/__tests__/useDvfs.test.tsx +137 -0
  327. package/src/views/charts/ViolatedValidationFuncChart/hooks/useDvfs.ts +39 -0
  328. package/src/views/charts/ViolatedValidationFuncChart/hooks/useNoDataDvfType.ts +55 -0
  329. package/src/views/charts/ViolatedValidationFuncChart/index.tsx +24 -0
  330. package/src/views/charts/ViolatedValidationFuncChart/styles.ts +31 -0
  331. package/src/views/charts/__tests__/DayOfMonthDistributionChart.test.tsx +64 -0
  332. package/src/views/charts/__tests__/DayOfWeekDistributionChart.test.tsx +64 -0
  333. package/src/views/charts/__tests__/FrequencyAnalysisChart.test.tsx +188 -0
  334. package/src/views/charts/__tests__/LengthStatisticsChart.test.tsx +94 -0
  335. package/src/views/charts/__tests__/MonthDistributionChart.test.tsx +64 -0
  336. package/src/views/charts/__tests__/PatternAnalysisChart.test.tsx +114 -0
  337. package/src/views/charts/__tests__/ValueDistributionChart.test.tsx +85 -0
  338. package/src/views/charts/icons/niceOne.svg +73 -0
  339. package/src/views/charts/icons/notSupportedIcon.svg +89 -0
  340. package/src/views/charts/icons/settingsIcon.svg +63 -0
  341. package/src/views/charts/styles.ts +10 -0
  342. package/tsconfig.json +4 -0
  343. package/webpack.config.js +10 -0
  344. package/bundle.js +0 -2
  345. package/bundle.js.LICENSE.txt +0 -16
package/index.ts ADDED
@@ -0,0 +1 @@
1
+ export {default as DQDashboardView} from './src/components/DQDashboardPerspectiveView';
package/package.json CHANGED
@@ -1,19 +1,36 @@
1
1
  {
2
- "name": "@reltio/dq-dashboard",
3
- "version": "1.4.1585",
4
- "license": "SEE LICENSE IN LICENSE FILE",
5
- "main": "bundle.js",
6
- "dependencies": {
7
- "@reltio/dashboard": "^1.4.1585",
8
- "@reltio/mdm-module": "^1.4.1585",
9
- "@reltio/mdm-sdk": "^1.4.1585",
10
- "classnames": "^2.2.5",
11
- "ramda": "^0.28.0",
12
- "react-redux": "^7.2.3",
13
- "redux": "^4.1.2",
14
- "ui-i18n": "bitbucket:reltio-ondemand/ui-i18n#v1.4.0"
15
- },
16
- "publishConfig": {
17
- "access": "public"
18
- }
19
- }
2
+ "name": "@reltio/dq-dashboard",
3
+ "version": "1.4.1586-mui5",
4
+ "description": "",
5
+ "main": "index.ts",
6
+ "scripts": {
7
+ "build": "cross-env NODE_ENV=production webpack && node ./scripts/build",
8
+ "postinstall": "cross-env NODE_ENV=production webpack",
9
+ "prepublishOnly": "npm run build",
10
+ "watch": "webpack -w",
11
+ "dev": "webpack serve",
12
+ "test": "tsc && jest --config=../../jest.config.js",
13
+ "test:ci": "tsc && jest --config=../../jest.config.js --maxWorkers=50%",
14
+ "i18n": "ui-i18n bundle --src=./src/**/*.js --out=./baseline.json",
15
+ "analyze": "cross-env NODE_ENV=production webpack --analyze"
16
+ },
17
+ "author": "",
18
+ "license": "ISC",
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "dependencies": {
23
+ "@reltio/dashboard": "^1.4.1586-mui5",
24
+ "@reltio/mdm-module": "^1.4.1586-mui5",
25
+ "@reltio/mdm-sdk": "^1.4.1586-mui5",
26
+ "classnames": "^2.2.5",
27
+ "ramda": "^0.28.0",
28
+ "react-redux": "^7.2.3",
29
+ "redux": "^4.1.2",
30
+ "ui-i18n": "bitbucket:reltio-ondemand/ui-i18n#v1.4.0"
31
+ },
32
+ "devDependencies": {
33
+ "@reltio/components": "^1.4.1586-mui5"
34
+ },
35
+ "gitHead": "746e04a2ebbd1e190caf6e7b504eede0fd54d100"
36
+ }