@reltio/dq-dashboard 1.4.1584 → 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.
- package/index.ts +1 -0
- package/package.json +35 -18
- package/public/bundle.js +155 -0
- package/public/bundle.js.LICENSE.txt +51 -0
- package/public/package.json +19 -0
- package/scripts/build/index.js +20 -0
- package/src/components/AttributeListItem/AttributeListItem.tsx +139 -0
- package/src/components/AttributeListItem/TreeLines/TreeLines.tsx +50 -0
- package/src/components/AttributeListItem/TreeLines/__tests__/TreeLines.test.tsx +86 -0
- package/src/components/AttributeListItem/TreeLines/styles.ts +41 -0
- package/src/components/AttributeListItem/__tests__/AttributeListItem.test.tsx +146 -0
- package/src/components/AttributeListItem/styles.ts +154 -0
- package/src/components/AttributeTypeDetailChip/AttributeTypeDetailChip.tsx +59 -0
- package/src/components/AttributeTypeDetailChip/__tests__/AttributeTypeDetailChip.test.tsx +62 -0
- package/src/components/AttributeTypeDetailChip/styles.ts +19 -0
- package/src/components/AttributeTypeDetailIcon/AttributeTypeDetailIcon.tsx +57 -0
- package/src/components/AttributeTypeDetailIcon/__test__/AttributeTypeDetailIcon.test.tsx +35 -0
- package/src/components/AttributeTypeDetailIcon/icons/dvf.svg +4 -0
- package/src/components/AttributeTypeDetailIcon/icons/includedInMatching.svg +4 -0
- package/src/components/AttributeTypeDetailIcon/icons/rdm.svg +4 -0
- package/src/components/AttributeTypeDetailIcon/icons/reference.svg +4 -0
- package/src/components/AttributeTypeDetailIcon/icons/required.svg +4 -0
- package/src/components/AttributeTypeDetailIcon/styles.ts +22 -0
- package/src/components/AttributeTypeDetails/AttributeTypeDetails.tsx +37 -0
- package/src/components/AttributeTypeDetails/styles.ts +12 -0
- package/src/components/AttributeTypeDetailsIcons/AttributeTypeDetailsIcons.tsx +69 -0
- package/src/components/AttributeTypeDetailsIcons/__tests__/AttributeTypeDetailsIcons.test.tsx +96 -0
- package/src/components/AttributeTypeDetailsIcons/styles.ts +21 -0
- package/src/components/AttributeTypeIcon/AttributeTypeIcon.tsx +50 -0
- package/src/components/AttributeTypeIcon/__test__/AttributeTypeIcon.test.tsx +37 -0
- package/src/components/AttributeTypeIcon/icons/boolean.svg +8 -0
- package/src/components/AttributeTypeIcon/icons/date.svg +8 -0
- package/src/components/AttributeTypeIcon/icons/float.svg +10 -0
- package/src/components/AttributeTypeIcon/icons/integer.svg +5 -0
- package/src/components/AttributeTypeIcon/icons/ssn.svg +10 -0
- package/src/components/AttributeTypeIcon/icons/string.svg +10 -0
- package/src/components/AttributeTypeIcon/styles.ts +12 -0
- package/src/components/AttributesFilters/AttributesFilters.tsx +172 -0
- package/src/components/AttributesFilters/Option.tsx +43 -0
- package/src/components/AttributesFilters/__tests__/AttributesFilters.test.tsx +253 -0
- package/src/components/AttributesFilters/__tests__/Option.test.tsx +54 -0
- package/src/components/AttributesFilters/__tests__/helpers.test.tsx +14 -0
- package/src/components/AttributesFilters/helpers.ts +20 -0
- package/src/components/AttributesFilters/styles.ts +126 -0
- package/src/components/ChartDataTooltip/ChartDataTooltip.tsx +33 -0
- package/src/components/ChartDataTooltip/TooltipWithSquares/TooltipWithSquares.tsx +38 -0
- package/src/components/ChartDataTooltip/TooltipWithSquares/styles.ts +11 -0
- package/src/components/ChartDataTooltip/__tests__/ChartDataTooltip.test.tsx +68 -0
- package/src/components/ChartDataTooltip/__tests__/IntegrationAnomalyDataRenderer.test.tsx +20 -0
- package/src/components/ChartDataTooltip/data-renderers/AnomalyDataRenderer.tsx +40 -0
- package/src/components/ChartDataTooltip/data-renderers/ChartDataRenderer.tsx +21 -0
- package/src/components/ChartDataTooltip/data-renderers/InfoDataRenderer.tsx +21 -0
- package/src/components/ChartDataTooltip/data-renderers/styles.ts +45 -0
- package/src/components/ChartDataTooltip/index.ts +6 -0
- package/src/components/ChartDataTooltip/styles.ts +16 -0
- package/src/components/ChartInfoPanel/ChartInfoPanel.tsx +42 -0
- package/src/components/ChartInfoPanel/TimeSeriesInfoPanel.tsx +59 -0
- package/src/components/ChartInfoPanel/__tests__/ChartInfoPanel.test.tsx +303 -0
- package/src/components/ChartInfoPanel/negativeDynamic.svg +3 -0
- package/src/components/ChartInfoPanel/positiveDynamic.svg +3 -0
- package/src/components/ChartInfoPanel/styles.ts +41 -0
- package/src/components/ChartLegends/ChartLegends.tsx +53 -0
- package/src/components/ChartLegends/CustomLegend.tsx +31 -0
- package/src/components/ChartLegends/__tests__/ChartLegends.test.tsx +46 -0
- package/src/components/ChartLegends/__tests__/CustomLegend.test.tsx +29 -0
- package/src/components/ChartLegends/styles.ts +44 -0
- package/src/components/ContentSlider/ContentSlider.tsx +72 -0
- package/src/components/ContentSlider/__tests__/ContentSlider.test.tsx +80 -0
- package/src/components/ContentSlider/helpers.ts +67 -0
- package/src/components/ContentSlider/styles.ts +23 -0
- package/src/components/CustomTableWithBars/TableWithBars.tsx +105 -0
- package/src/components/CustomTableWithBars/__test__/TableWithBars.test.tsx +142 -0
- package/src/components/CustomTableWithBars/cell-renderers/HeadCellRenderer.tsx +68 -0
- package/src/components/CustomTableWithBars/cell-renderers/LabelCellRenderer.tsx +55 -0
- package/src/components/CustomTableWithBars/cell-renderers/NumberCellValueRenderer.tsx +60 -0
- package/src/components/CustomTableWithBars/cell-renderers/OverflowingHandler.tsx +24 -0
- package/src/components/CustomTableWithBars/cell-renderers/TableCellTooltip.tsx +27 -0
- package/src/components/CustomTableWithBars/cell-renderers/__tests__/HeadCellRenderer.test.tsx +35 -0
- package/src/components/CustomTableWithBars/cell-renderers/__tests__/LabelCellRenderer.test.tsx +51 -0
- package/src/components/CustomTableWithBars/cell-renderers/__tests__/NumberCellValueRenderer.test.tsx +102 -0
- package/src/components/CustomTableWithBars/cell-renderers/__tests__/OverflowingHandler.test.tsx +58 -0
- package/src/components/CustomTableWithBars/cell-renderers/__tests__/TableCellTooltip.test.tsx +22 -0
- package/src/components/CustomTableWithBars/cell-renderers/styles.ts +161 -0
- package/src/components/CustomTableWithBars/helpers.ts +7 -0
- package/src/components/CustomTableWithBars/styles.ts +32 -0
- package/src/components/DQDashboardAttributesList/DQDashboardAttributesList.tsx +277 -0
- package/src/components/DQDashboardAttributesList/__tests__/DQDashboardAttributesList.test.tsx +2300 -0
- package/src/components/DQDashboardAttributesList/helpers.ts +145 -0
- package/src/components/DQDashboardAttributesList/styles.ts +83 -0
- package/src/components/DQDashboardError/DQDashboardError.tsx +43 -0
- package/src/components/DQDashboardError/styles.ts +72 -0
- package/src/components/DQDashboardHeader/DQDashboardHeader.tsx +21 -0
- package/src/components/DQDashboardHeader/__tests__/DQDashboardHeader.test.tsx +18 -0
- package/src/components/DQDashboardHeader/styles.ts +17 -0
- package/src/components/DQDashboardLayout/DQDashboardLayout.tsx +35 -0
- package/src/components/DQDashboardLayout/__tests__/DQDashboardLayout.test.tsx +51 -0
- package/src/components/DQDashboardLayoutItem/DQDashboardLayoutItem.tsx +43 -0
- package/src/components/DQDashboardLayoutItem/__tests__/DQDashboardLayoutItem.test.tsx +90 -0
- package/src/components/DQDashboardNoContent/DQDashboardNoContent.tsx +30 -0
- package/src/components/DQDashboardNoContent/__tests__/DQDasboardNoContent.test.tsx +45 -0
- package/src/components/DQDashboardPerspectiveView/AttributeLevelLayout.tsx +84 -0
- package/src/components/DQDashboardPerspectiveView/DQDashboardPerspectiveView.tsx +291 -0
- package/src/components/DQDashboardPerspectiveView/DataLevelSwitcher/DataLevelSwitcher.tsx +31 -0
- package/src/components/DQDashboardPerspectiveView/DataLevelSwitcher/__tests__/DataLevelSwitcher.test.tsx +29 -0
- package/src/components/DQDashboardPerspectiveView/DataLevelSwitcher/styles.ts +55 -0
- package/src/components/DQDashboardPerspectiveView/EntityLevelLayout/EntityLevelLayout.tsx +77 -0
- package/src/components/DQDashboardPerspectiveView/EntityLevelLayout/__tests__/EntityLevelLayout.test.tsx +148 -0
- package/src/components/DQDashboardPerspectiveView/EntityLevelLayout/styles.ts +40 -0
- package/src/components/DQDashboardPerspectiveView/__tests__/AttributeLevelLayout.test.tsx +196 -0
- package/src/components/DQDashboardPerspectiveView/__tests__/DQDashboardPerspectiveView.test.tsx +2013 -0
- package/src/components/DQDashboardPerspectiveView/__tests__/IntegrationDQDashboardPerspectiveView.test.tsx +216 -0
- package/src/components/DQDashboardPerspectiveView/__tests__/helper.test.ts +51 -0
- package/src/components/DQDashboardPerspectiveView/constants.ts +3 -0
- package/src/components/DQDashboardPerspectiveView/helpers.ts +52 -0
- package/src/components/DQDashboardPerspectiveView/index.tsx +67 -0
- package/src/components/DQDashboardPerspectiveView/styles.ts +102 -0
- package/src/components/DQLayoutItemContent/DQLayoutItemContent.tsx +88 -0
- package/src/components/DQLayoutItemContent/__tests__/IntegrationDQLayoutItemContent.test.tsx +18 -0
- package/src/components/DQLayoutItemContent/styles.ts +10 -0
- package/src/components/DQLayoutItemHeader/DQLayoutItemHeader.tsx +43 -0
- package/src/components/DQLayoutItemHeader/__tests__/DQLayoutItemHeader.test.tsx +26 -0
- package/src/components/DQLayoutItemHeader/styles.ts +15 -0
- package/src/components/DQLayoutItemView/DQLayoutItemView.tsx +32 -0
- package/src/components/DQLayoutItemView/styles.ts +10 -0
- package/src/components/DataLevelBreadcrumbs/DataLevelBreadcrumbs.tsx +60 -0
- package/src/components/DataLevelBreadcrumbs/__tests__/DataLevelBreadcrumbs.test.tsx +62 -0
- package/src/components/DataLevelBreadcrumbs/styles.ts +14 -0
- package/src/components/EntityTypeSelector/EntityTypeSelector.tsx +36 -0
- package/src/components/EntityTypeSelector/__tests__/EntityTypeSelector.test.tsx +57 -0
- package/src/components/FillRateLine/FillRateLine.tsx +44 -0
- package/src/components/FillRateLine/__tests__/FillRateLine.test.tsx +84 -0
- package/src/components/FillRateLine/styles.ts +23 -0
- package/src/components/LineChart/LineChart.tsx +154 -0
- package/src/components/LineChart/__tests__/IntegrationLineChart.test.tsx +72 -0
- package/src/components/LineChart/__tests__/LineChart.test.tsx +371 -0
- package/src/components/LineChart/getLineChartSettings.ts +122 -0
- package/src/components/LineChart/helpers.ts +91 -0
- package/src/components/LineChart/styles.ts +8 -0
- package/src/components/LoadingComponent/LoadingComponent.tsx +16 -0
- package/src/components/LoadingComponent/__tests__/LoadingComponent.test.tsx +16 -0
- package/src/components/LoadingComponent/icons/Loading.svg +167 -0
- package/src/components/PeriodChip/PeriodChip.tsx +32 -0
- package/src/components/PeriodChip/__tests__/PeriodChip.test.tsx +40 -0
- package/src/components/PeriodChip/styles.ts +19 -0
- package/src/components/SearchByOVSwitcher/SearchByOVSwitcher.tsx +37 -0
- package/src/components/SearchByOVSwitcher/styles.ts +12 -0
- package/src/components/Selector/Selector.tsx +99 -0
- package/src/components/Selector/__tests__/Selector.test.tsx +78 -0
- package/src/components/Selector/styles.ts +64 -0
- package/src/components/SourceLabelRenderer/SourceLabelRenderer.tsx +32 -0
- package/src/components/SourceLabelRenderer/__tests__/SourceLabelRenderer.test.tsx +18 -0
- package/src/components/SourceLabelRenderer/styles.ts +22 -0
- package/src/components/StackedHorizontalBarChart/Bar.tsx +13 -0
- package/src/components/StackedHorizontalBarChart/StackedHorizontalBarChart.tsx +64 -0
- package/src/components/StackedHorizontalBarChart/__tests__/StackedHorizontalBarChart.test.tsx +114 -0
- package/src/components/StackedHorizontalBarChart/styles.ts +96 -0
- package/src/components/Summary/AttributeTypeSummary.tsx +69 -0
- package/src/components/Summary/EntityTypeSummary.tsx +68 -0
- package/src/components/Summary/HeaderInfo.tsx +23 -0
- package/src/components/Summary/__tests__/AttributeTypeSummary.test.tsx +139 -0
- package/src/components/Summary/__tests__/EntityTypeSummary.test.tsx +236 -0
- package/src/components/Summary/__tests__/IntegrationEntityTypeSummary.test.tsx +142 -0
- package/src/components/Summary/styles.ts +64 -0
- package/src/components/UpdateTimeHeader/UpdateTimeHeader.tsx +50 -0
- package/src/components/UpdateTimeHeader/__tests__/UpdateTimeHeader.test.tsx +51 -0
- package/src/components/UpdateTimeHeader/styles.ts +13 -0
- package/src/components/Warning/Warning.tsx +17 -0
- package/src/components/Warning/__tests__/Warning.test.tsx +18 -0
- package/src/components/Warning/styles.ts +20 -0
- package/src/constants/AnomalyDataKey.ts +3 -0
- package/src/constants/ChartDataType.ts +9 -0
- package/src/constants/RdmLookupState.ts +4 -0
- package/src/constants/ViewType.ts +13 -0
- package/src/constants/defaultConfig.ts +252 -0
- package/src/contexts/ChartsDataProvider/index.tsx +18 -0
- package/src/contexts/DQDashboardStateContext/index.tsx +107 -0
- package/src/contexts/DVFContext/index.ts +18 -0
- package/src/contexts/DataLevelContext/index.ts +6 -0
- package/src/contexts/PermissionsProvider/index.tsx +49 -0
- package/src/contexts/ReloadFacetContext/index.tsx +107 -0
- package/src/hooks/__tests__/IntegrationUseSearchRedirect.test.tsx +101 -0
- package/src/hooks/__tests__/useChartsDataRequest.test.tsx +439 -0
- package/src/hooks/__tests__/useDVF.test.tsx +181 -0
- package/src/hooks/__tests__/useDVFConfigLink.test.tsx +77 -0
- package/src/hooks/__tests__/useDebounceFunction.test.tsx +50 -0
- package/src/hooks/__tests__/useEntityCount.test.tsx +97 -0
- package/src/hooks/__tests__/useExistsTotalsRequest.test.tsx +90 -0
- package/src/hooks/__tests__/useFillRateRequest.test.tsx +130 -0
- package/src/hooks/__tests__/useInvalidProfiles.test.tsx +62 -0
- package/src/hooks/__tests__/useMlDqDataRequest.test.tsx +311 -0
- package/src/hooks/__tests__/usePermissions.test.tsx +55 -0
- package/src/hooks/__tests__/useRDMChartDataRequest.test.tsx +138 -0
- package/src/hooks/__tests__/useSearchRedirect.test.tsx +206 -0
- package/src/hooks/useAttrTypeDetails.ts +48 -0
- package/src/hooks/useChartData.ts +13 -0
- package/src/hooks/useChartsDataRequest.ts +149 -0
- package/src/hooks/useDVF.ts +49 -0
- package/src/hooks/useDebounceFunction.ts +23 -0
- package/src/hooks/useDvfConfigLink.ts +37 -0
- package/src/hooks/useEntityCount.ts +61 -0
- package/src/hooks/useEntityTypes.ts +10 -0
- package/src/hooks/useExistsTotalsRequest.ts +39 -0
- package/src/hooks/useFillRateRequest.ts +57 -0
- package/src/hooks/useInvalidProfiles.ts +29 -0
- package/src/hooks/useMlDqDataRequest.ts +128 -0
- package/src/hooks/usePermissionsRequest.ts +43 -0
- package/src/hooks/useRDMChartDataRequest.ts +59 -0
- package/src/hooks/useSearchRedirect.ts +49 -0
- package/src/services/__tests__/barCharts.test.ts +869 -0
- package/src/services/__tests__/charts.test.ts +253 -0
- package/src/services/__tests__/dateRange.test.ts +29 -0
- package/src/services/__tests__/fillRate.test.ts +168 -0
- package/src/services/__tests__/mlDq.test.ts +253 -0
- package/src/services/__tests__/rdmTranscode.test.ts +46 -0
- package/src/services/__tests__/tableCharts.test.ts +366 -0
- package/src/services/advancedFilters.ts +24 -0
- package/src/services/attributeDetails.ts +99 -0
- package/src/services/attributeFilters.ts +39 -0
- package/src/services/attributes.ts +38 -0
- package/src/services/barCharts.ts +375 -0
- package/src/services/charts.ts +321 -0
- package/src/services/dateRange.ts +14 -0
- package/src/services/fillRate.ts +87 -0
- package/src/services/mlDq.ts +161 -0
- package/src/services/rawFilters.ts +61 -0
- package/src/services/rdmTranscode.ts +63 -0
- package/src/services/tableCharts.ts +159 -0
- package/src/services/uniquenessAnalysis.ts +67 -0
- package/src/theme/index.ts +10 -0
- package/src/types/AttributeTypeInfo.ts +6 -0
- package/src/types/BarChartOptions.ts +14 -0
- package/src/types/ChartsDataWithState.ts +8 -0
- package/src/types/DQDashboardPerspectiveConfig.ts +21 -0
- package/src/types/DQDashboardSavedState.ts +13 -0
- package/src/types/DQDashboardView.ts +8 -0
- package/src/types/DQDateRangeValue.ts +6 -0
- package/src/types/DetailedAttributeType.ts +23 -0
- package/src/types/EmptyStateVariants.ts +5 -0
- package/src/types/ErrorData.ts +7 -0
- package/src/types/FacetFilter.ts +8 -0
- package/src/types/FilterOption.ts +6 -0
- package/src/types/FilterOptionsGroup.ts +6 -0
- package/src/types/GetSearchStateProps.ts +6 -0
- package/src/types/InfoPanelData.ts +5 -0
- package/src/types/LineChartData.ts +4 -0
- package/src/types/TableChartData.ts +3 -0
- package/src/types/TableColumnHeader.ts +4 -0
- package/src/types/TickProps.ts +11 -0
- package/src/types/TimeSeriesChartData.ts +4 -0
- package/src/types/ViewProps.ts +7 -0
- package/src/views/DQDashboardErrorView/DQDashboardErrorView.tsx +43 -0
- package/src/views/DQDashboardErrorView/styles.ts +10 -0
- package/src/views/Summary/Summary.tsx +40 -0
- package/src/views/Summary/styles.ts +8 -0
- package/src/views/ViewsFactory.tsx +69 -0
- package/src/views/__tests__/DQDashboardErrorView.test.tsx +22 -0
- package/src/views/__tests__/Summary.test.tsx +129 -0
- package/src/views/__tests__/ViewsFactory.test.tsx +91 -0
- package/src/views/charts/ConsolidationRateChart/ConsolidationPercentage.tsx +26 -0
- package/src/views/charts/ConsolidationRateChart/ConsolidationRateChart.tsx +211 -0
- package/src/views/charts/ConsolidationRateChart/YAxisTickRenderer.tsx +20 -0
- package/src/views/charts/ConsolidationRateChart/__tests__/ConsolidationPercentage.test.tsx +52 -0
- package/src/views/charts/ConsolidationRateChart/__tests__/ConsolidationRateChart.test.tsx +227 -0
- package/src/views/charts/ConsolidationRateChart/__tests__/YAxisTickRenderer.test.tsx +55 -0
- package/src/views/charts/ConsolidationRateChart/styles.ts +25 -0
- package/src/views/charts/CrosswalkAnalysisChart/CrosswalkAnalysisChart.tsx +61 -0
- package/src/views/charts/CrosswalkAnalysisChart/__tests__/CrosswalkAnalysisChart.test.tsx +113 -0
- package/src/views/charts/CustomBarChart/BarTooltip/BarTooltip.tsx +29 -0
- package/src/views/charts/CustomBarChart/BarTooltip/__test__/BarTooltip.test.tsx +34 -0
- package/src/views/charts/CustomBarChart/BarTooltip/styles.ts +8 -0
- package/src/views/charts/CustomBarChart/CustomBackgroundOnHover.tsx +16 -0
- package/src/views/charts/CustomBarChart/CustomBar.tsx +12 -0
- package/src/views/charts/CustomBarChart/CustomBarChart.tsx +89 -0
- package/src/views/charts/CustomBarChart/InfoPanel.tsx +28 -0
- package/src/views/charts/CustomBarChart/StackedBarChart.tsx +91 -0
- package/src/views/charts/CustomBarChart/XAxisLabel/XAxisLabel.tsx +38 -0
- package/src/views/charts/CustomBarChart/XAxisLabel/__tests__/XAxisLabel.test.tsx +47 -0
- package/src/views/charts/CustomBarChart/XAxisLabel/styles.ts +26 -0
- package/src/views/charts/CustomBarChart/__test__/CustomBackgroundOnHover.test.tsx +42 -0
- package/src/views/charts/CustomBarChart/__test__/CustomBarChart.test.tsx +155 -0
- package/src/views/charts/CustomBarChart/__test__/InfoPanel.test.tsx +24 -0
- package/src/views/charts/CustomBarChart/__test__/StackedBarChart.test.tsx +60 -0
- package/src/views/charts/CustomBarChart/getBarChartSettings.ts +76 -0
- package/src/views/charts/CustomBarChart/styles.ts +37 -0
- package/src/views/charts/CustomTableWithBarsChart/CustomTableWithBarsChart.tsx +108 -0
- package/src/views/charts/CustomTableWithBarsChart/__test__/CustomTableWithBarsChart.test.tsx +101 -0
- package/src/views/charts/CustomTableWithBarsChart/styles.ts +9 -0
- package/src/views/charts/DayOfMonthDistributionChart.tsx +29 -0
- package/src/views/charts/DayOfWeekDistributionChart.tsx +29 -0
- package/src/views/charts/FillRateChart/FillRateChart.tsx +22 -0
- package/src/views/charts/FillRateChart/FillRateTimeSeriesChart.tsx +141 -0
- package/src/views/charts/FillRateChart/__tests__/FillRateChart.test.tsx +55 -0
- package/src/views/charts/FillRateChart/__tests__/FillRateChartToday.test.tsx +83 -0
- package/src/views/charts/FillRateChart/__tests__/FillRateTimeSeriesChart.test.tsx +280 -0
- package/src/views/charts/FillRateChart/__tests__/IntegrationFillRateChart.test.tsx +72 -0
- package/src/views/charts/FillRateChart/index.tsx +56 -0
- package/src/views/charts/FillRateChart/styles.ts +19 -0
- package/src/views/charts/FrequencyAnalysisChart.tsx +66 -0
- package/src/views/charts/LengthStatisticsChart.tsx +36 -0
- package/src/views/charts/MonthDistributionChart.tsx +29 -0
- package/src/views/charts/PatternAnalysisChart.tsx +45 -0
- package/src/views/charts/RDMTranscodeChart/RDMTranscodeChart.tsx +66 -0
- package/src/views/charts/RDMTranscodeChart/__tests__/RDMTranscodechart.test.tsx +73 -0
- package/src/views/charts/RDMTranscodeChart/styles.ts +10 -0
- package/src/views/charts/UniquenessAnalysisChart/UniquenessAnalysisChart.tsx +20 -0
- package/src/views/charts/UniquenessAnalysisChart/UniquenessAnalysisTimeSeriesChart.tsx +142 -0
- package/src/views/charts/UniquenessAnalysisChart/__tests__/IntegrationUniquenessAnalysisChart.test.tsx +72 -0
- package/src/views/charts/UniquenessAnalysisChart/__tests__/UniquenessAnalysisChart.test.tsx +55 -0
- package/src/views/charts/UniquenessAnalysisChart/__tests__/UniquenessAnalysisTimeSeriesChart.test.tsx +276 -0
- package/src/views/charts/UniquenessAnalysisChart/__tests__/UniquenessAnalysisTodayChart.test.tsx +77 -0
- package/src/views/charts/UniquenessAnalysisChart/index.tsx +58 -0
- package/src/views/charts/UniquenessAnalysisChart/styles.ts +19 -0
- package/src/views/charts/ValueDistributionChart.tsx +31 -0
- package/src/views/charts/ViolatedValidationFuncChart/TotalInfo.tsx +34 -0
- package/src/views/charts/ViolatedValidationFuncChart/VVFChartNodata.tsx +109 -0
- package/src/views/charts/ViolatedValidationFuncChart/ViolatedValidationFuncChart.tsx +129 -0
- package/src/views/charts/ViolatedValidationFuncChart/ViolatedValidationFuncTimeSeriesChart.tsx +166 -0
- package/src/views/charts/ViolatedValidationFuncChart/__tests__/IntegrationViolatedValidationFuncChartToday.test.tsx +139 -0
- package/src/views/charts/ViolatedValidationFuncChart/__tests__/IntegrationViolatedValidationFuncTimeSeriesChart.test.tsx +208 -0
- package/src/views/charts/ViolatedValidationFuncChart/__tests__/TotalInfo.test.tsx +24 -0
- package/src/views/charts/ViolatedValidationFuncChart/__tests__/VVFChartNodata.test.tsx +81 -0
- package/src/views/charts/ViolatedValidationFuncChart/__tests__/ViolatedValidationFuncChart.test.tsx +50 -0
- package/src/views/charts/ViolatedValidationFuncChart/__tests__/ViolatedValidationFuncChartToday.test.tsx +355 -0
- package/src/views/charts/ViolatedValidationFuncChart/__tests__/ViolatedValidationFuncTimeSeriesChart.test.tsx +497 -0
- package/src/views/charts/ViolatedValidationFuncChart/helpers.ts +62 -0
- package/src/views/charts/ViolatedValidationFuncChart/hooks/__tests__/useDvfs.test.tsx +137 -0
- package/src/views/charts/ViolatedValidationFuncChart/hooks/useDvfs.ts +39 -0
- package/src/views/charts/ViolatedValidationFuncChart/hooks/useNoDataDvfType.ts +55 -0
- package/src/views/charts/ViolatedValidationFuncChart/index.tsx +24 -0
- package/src/views/charts/ViolatedValidationFuncChart/styles.ts +31 -0
- package/src/views/charts/__tests__/DayOfMonthDistributionChart.test.tsx +64 -0
- package/src/views/charts/__tests__/DayOfWeekDistributionChart.test.tsx +64 -0
- package/src/views/charts/__tests__/FrequencyAnalysisChart.test.tsx +188 -0
- package/src/views/charts/__tests__/LengthStatisticsChart.test.tsx +94 -0
- package/src/views/charts/__tests__/MonthDistributionChart.test.tsx +64 -0
- package/src/views/charts/__tests__/PatternAnalysisChart.test.tsx +114 -0
- package/src/views/charts/__tests__/ValueDistributionChart.test.tsx +85 -0
- package/src/views/charts/icons/niceOne.svg +73 -0
- package/src/views/charts/icons/notSupportedIcon.svg +89 -0
- package/src/views/charts/icons/settingsIcon.svg +63 -0
- package/src/views/charts/styles.ts +10 -0
- package/tsconfig.json +4 -0
- package/webpack.config.js +10 -0
- package/bundle.js +0 -2
- 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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
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
|
+
}
|