@mx-cartographer/insights-ui 1.16.10 → 1.16.11-alpha.JB7
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.
|
@@ -5,6 +5,10 @@ export interface BarDataProps {
|
|
|
5
5
|
formattedAmount: string;
|
|
6
6
|
label: string;
|
|
7
7
|
value: number;
|
|
8
|
+
category?: string;
|
|
9
|
+
categoryGuid?: string;
|
|
10
|
+
imageSize?: number;
|
|
11
|
+
merchantGuid?: string;
|
|
8
12
|
}
|
|
9
13
|
interface AmountsProps {
|
|
10
14
|
average?: number;
|
|
@@ -14,12 +18,14 @@ export interface BarChartProps {
|
|
|
14
18
|
amounts?: AmountsProps;
|
|
15
19
|
color: string;
|
|
16
20
|
data: BarDataProps[];
|
|
21
|
+
heightOverride?: number | string;
|
|
17
22
|
isMini?: boolean;
|
|
18
23
|
margin?: CardinalDirections<number>;
|
|
19
24
|
legendLabelAvg?: string;
|
|
20
25
|
legendLabelMain?: string;
|
|
21
26
|
onBarClick?: (index: number) => void;
|
|
22
27
|
selectedTabIndex?: number;
|
|
28
|
+
removeSelectedTabColorChange?: boolean;
|
|
23
29
|
}
|
|
24
30
|
export interface DataSet {
|
|
25
31
|
ariaLabelComparison: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mx-cartographer/insights-ui",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.11-alpha.JB7",
|
|
4
4
|
"description": "Package containing MX theme and common controls for MUI",
|
|
5
5
|
"main": "dist/index.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@emotion/react": "^11.13.3",
|
|
27
27
|
"@emotion/styled": "^11.13.0",
|
|
28
28
|
"@mui/base": "5.0.0-beta.61",
|
|
29
|
-
"@mui/material": "^5
|
|
29
|
+
"@mui/material": "^5",
|
|
30
30
|
"@mui/system": "^5.16.7",
|
|
31
31
|
"@mui/x-charts": "^7.22.3",
|
|
32
32
|
"@mui/x-data-grid-pro": "^7.21.0",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"@mui/x-license-pro": "^6.10.2",
|
|
36
36
|
"@mxenabled/design-tokens": "^1.0.3",
|
|
37
37
|
"@mxenabled/mx-icons": "^1.5.0",
|
|
38
|
-
"@mxenabled/mxui": "^1.
|
|
38
|
+
"@mxenabled/mxui": "^1.1.0",
|
|
39
39
|
"@testing-library/react": "^16.0.1",
|
|
40
40
|
"date-fns": "^4.1.0",
|
|
41
|
-
"react": "^18
|
|
41
|
+
"react": "^18",
|
|
42
42
|
"react-confetti": "^6.1.0",
|
|
43
|
-
"react-dom": "^18
|
|
43
|
+
"react-dom": "^18",
|
|
44
44
|
"react-intersection-observer": "^9.13.1",
|
|
45
45
|
"vitest": "^2.1.5"
|
|
46
46
|
},
|
|
@@ -94,7 +94,6 @@
|
|
|
94
94
|
},
|
|
95
95
|
"peerDependencies": {
|
|
96
96
|
"@mui/material": "^5",
|
|
97
|
-
"@mxenabled/mxui": "^1",
|
|
98
97
|
"react": "^18",
|
|
99
98
|
"react-dom": "^18"
|
|
100
99
|
},
|