@mx-cartographer/insights-ui 1.4.6-alpha.mega9 → 1.4.8
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/README.md +5 -0
- package/dist/components/index.d.ts +4 -3
- package/dist/components/insights/DiscoveredAccounts/DiscoveredAccountsBody.d.ts +5 -5
- package/dist/components/insights/SwitchDirectDeposit/__tests__/SwitchDirectDeposit.test.d.ts +0 -0
- package/dist/components/shared/Charts/BarChart/BarChart.d.ts +1 -1
- package/dist/components/shared/Charts/BarChart/ChartLegend.d.ts +1 -1
- package/dist/components/shared/Charts/BarChart/CustomBarPlot.d.ts +7 -1
- package/dist/components/shared/Charts/__tests__/BarChart.test.d.ts +1 -0
- package/dist/components/shared/Confetti.d.ts +5 -0
- package/dist/components/shared/DirectDeposit/DirectDeposit.d.ts +2 -15
- package/dist/components/shared/DirectDeposit/FullFeedBodyHeader.d.ts +4 -0
- package/dist/components/shared/DirectDeposit/MiniBodyHeader.d.ts +4 -1
- package/dist/components/shared/InsightsCard/CardError.d.ts +1 -2
- package/dist/components/shared/InsightsCard/CardLoading.d.ts +1 -2
- package/dist/components/shared/InsightsCard/InsightButton.d.ts +1 -1
- package/dist/components/shared/InsightsCard/__tests__/BeatCard.test.d.ts +0 -0
- package/dist/components/shared/InsightsCard/__tests__/CardError.test.d.ts +1 -0
- package/dist/components/shared/InsightsCard/__tests__/CardLoading.test.d.ts +1 -0
- package/dist/components/shared/InsightsCard/__tests__/ContentAndDescription.test.d.ts +1 -0
- package/dist/components/shared/InsightsCard/__tests__/LinedCardZeroState.test.d.ts +1 -0
- package/dist/components/shared/MiniInsightCard.d.ts +16 -0
- package/dist/components/shared/ZeroState/LinedCardZeroState.d.ts +1 -0
- package/dist/hooks/__tests__/useContainerDimensions.test.d.ts +0 -0
- package/dist/hooks/useContainerDimensions.d.ts +5 -0
- package/dist/index.es.js +1079 -1027
- package/dist/index.es.js.map +1 -1
- package/package.json +14 -6
- package/dist/components/shared/DirectDeposit/FullFeedLogoSection.d.ts +0 -6
- package/dist/components/shared/DirectDeposit/LowerBoxSection.d.ts +0 -10
- /package/dist/components/insights/{__tests__/SetUpDirectDeposit.test.d.ts → DiscoveredAccounts/__tests__/DiscoveredAccountsBody.test.d.ts} +0 -0
- /package/dist/components/insights/{__tests__/SwitchDirectDeposit.test.d.ts → SetUpDirectDeposit/__tests__/SetUpDirectDeposit.test.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mx-cartographer/insights-ui",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.8",
|
|
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",
|
|
@@ -16,11 +16,15 @@
|
|
|
16
16
|
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
17
17
|
"precommit": "lint-staged",
|
|
18
18
|
"prepublishOnly": "yarn build",
|
|
19
|
-
"prepare": "husky install"
|
|
19
|
+
"prepare": "husky install",
|
|
20
|
+
"test": "vitest",
|
|
21
|
+
"test:file": "vitest run",
|
|
22
|
+
"testui": "vitest --ui --coverage",
|
|
23
|
+
"citest": "vitest run --coverage"
|
|
20
24
|
},
|
|
21
25
|
"dependencies": {
|
|
22
|
-
"@emotion/react": "^11.13.
|
|
23
|
-
"@emotion/styled": "^11.13.
|
|
26
|
+
"@emotion/react": "^11.13.3",
|
|
27
|
+
"@emotion/styled": "^11.13.0",
|
|
24
28
|
"@kyper/mui": "^4.4.1",
|
|
25
29
|
"@mui/base": "5.0.0-beta.61",
|
|
26
30
|
"@mui/icons-material": "^5.16.7",
|
|
@@ -38,7 +42,6 @@
|
|
|
38
42
|
"react-confetti": "^6.1.0",
|
|
39
43
|
"react-dom": "^18.3.1",
|
|
40
44
|
"react-intersection-observer": "^9.13.1",
|
|
41
|
-
"react-virtualized-auto-sizer": "^1.0.24",
|
|
42
45
|
"vitest": "^2.1.5"
|
|
43
46
|
},
|
|
44
47
|
"devDependencies": {
|
|
@@ -56,11 +59,14 @@
|
|
|
56
59
|
"@storybook/react": "^8.3.5",
|
|
57
60
|
"@storybook/react-vite": "^8.3.5",
|
|
58
61
|
"@storybook/test": "^8.3.5",
|
|
62
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
59
63
|
"@types/react": "^18.3.11",
|
|
60
64
|
"@types/react-dom": "^18.3.1",
|
|
61
65
|
"@typescript-eslint/eslint-plugin": "^7.16.0",
|
|
62
66
|
"@typescript-eslint/parser": "^7.16.0",
|
|
63
67
|
"@vitejs/plugin-react": "^4.3.2",
|
|
68
|
+
"@vitest/coverage-v8": "2.1.8",
|
|
69
|
+
"@vitest/ui": "2.1.8",
|
|
64
70
|
"@yarnpkg/sdks": "^3.2.0",
|
|
65
71
|
"eslint": "^8.57.0",
|
|
66
72
|
"eslint-config-mx": "^4.0.0",
|
|
@@ -72,6 +78,7 @@
|
|
|
72
78
|
"eslint-plugin-storybook": "^0.8.0",
|
|
73
79
|
"globals": "^15.8.0",
|
|
74
80
|
"husky": "^9.0.11",
|
|
81
|
+
"jsdom": "^25.0.1",
|
|
75
82
|
"lint-staged": "^15.2.7",
|
|
76
83
|
"path": "^0.12.7",
|
|
77
84
|
"prettier": "^3.3.2",
|
|
@@ -79,6 +86,7 @@
|
|
|
79
86
|
"storybook": "^8.3.4",
|
|
80
87
|
"storybook-dark-mode": "4.0.1",
|
|
81
88
|
"typescript": "^5.6.2",
|
|
89
|
+
"vi-canvas-mock": "^1.0.0",
|
|
82
90
|
"vite": "^5.4.8",
|
|
83
91
|
"vite-plugin-dts": "^4.2.3",
|
|
84
92
|
"vite-plugin-svgr": "^4.3.0"
|
|
@@ -90,5 +98,5 @@
|
|
|
90
98
|
"type": "git",
|
|
91
99
|
"url": "git@gitlab.mx.com:mx/experiences/moneymap/cartographer/insights-ui.git"
|
|
92
100
|
},
|
|
93
|
-
"packageManager": "yarn@4.5.
|
|
101
|
+
"packageManager": "yarn@4.5.3"
|
|
94
102
|
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
interface LowerBoxSectionProps {
|
|
3
|
-
isComplete?: boolean;
|
|
4
|
-
leftLowerText: string;
|
|
5
|
-
leftUpperText: string;
|
|
6
|
-
rightLowerText: string;
|
|
7
|
-
rightUpperText: string;
|
|
8
|
-
}
|
|
9
|
-
export declare const LowerBoxesSection: React.FC<LowerBoxSectionProps>;
|
|
10
|
-
export {};
|
|
File without changes
|