@reltio/dashboard 1.4.2029 → 1.4.2030
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/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/dashboard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2030",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE FILE",
|
|
5
5
|
"main": "bundle.js",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@reltio/components": "^1.4.
|
|
8
|
+
"@reltio/components": "^1.4.2004",
|
|
9
9
|
"@reltio/mdm-module": "^1.4.1921",
|
|
10
10
|
"@reltio/mdm-sdk": "^1.4.1892",
|
|
11
11
|
"object-hash": "^2.1.1"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"legend" | "tooltipTitle" | "tooltipWrapper" | "tooltipItemColor" | "legendItem" | "legendItemColor" | "legendItemValue">;
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"legend" | "tooltipTitle" | "tooltipWrapper" | "tooltipItemColor" | "legendItem" | "legendItemColor" | "legendItemName" | "legendItemValue">;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CartesianGridProps, LegendProps, LineProps, TooltipProps, XAxisProps, YAxisProps } from 'recharts';
|
|
1
|
+
import type { CartesianGridProps, LegendProps, LineProps, TooltipProps, XAxisProps, YAxisProps } from 'recharts';
|
|
2
2
|
type StatsChartSettings = {
|
|
3
3
|
xAxis: XAxisProps;
|
|
4
4
|
yAxis: YAxisProps;
|
|
@@ -7,5 +7,5 @@ type StatsChartSettings = {
|
|
|
7
7
|
line: Omit<LineProps, 'ref'>;
|
|
8
8
|
legend: Omit<LegendProps, 'ref'>;
|
|
9
9
|
};
|
|
10
|
-
declare const getStatsChartSettings: () => StatsChartSettings;
|
|
11
|
-
export
|
|
10
|
+
export declare const getStatsChartSettings: () => StatsChartSettings;
|
|
11
|
+
export {};
|