@mx-cartographer/experiences 8.0.5 → 8.0.7
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/CHANGELOG.md +8 -0
- package/dist/insights/components/index.d.ts +2 -0
- package/dist/insights/components/shared/Coupon.d.ts +8 -0
- package/dist/insights/components/shared/P2PCategorizationSingleAccount/P2PCategorizationSingleAccount.d.ts +10 -0
- package/dist/insights/index.es.js +876 -735
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [8.0.7] - 04-08-2026
|
|
2
|
+
|
|
3
|
+
- **ADDED** - `Coupon` component
|
|
4
|
+
|
|
5
|
+
## [8.0.6] - 04-08-2026
|
|
6
|
+
|
|
7
|
+
- **ADDED** - `P2P Category Single Account card` component added
|
|
8
|
+
|
|
1
9
|
## [8.0.5] - 04-08-2026
|
|
2
10
|
|
|
3
11
|
- **ADDED** - `SaveEnoughToLiveOn` SVG component with theme support
|
|
@@ -4,6 +4,7 @@ export * from './shared/ChartDrawerTemplate/ChartDrawerTemplate';
|
|
|
4
4
|
export { default as ChartTransactionWithDrillDown } from './shared/ChartTransactionWithDrillDown';
|
|
5
5
|
export * from './shared/Confetti';
|
|
6
6
|
export { default as ConnectionCard } from './shared/ConnectionCard';
|
|
7
|
+
export { default as Coupon } from './shared/Coupon';
|
|
7
8
|
export * from './shared/GoalProgress';
|
|
8
9
|
export * from './shared/GradientBox';
|
|
9
10
|
export * from './shared/MiniInsightCard';
|
|
@@ -44,3 +45,4 @@ export { DirectDepositDeepLink } from './shared/DeepLinks/DirectDeposit/DirectDe
|
|
|
44
45
|
export * from './feed/Header';
|
|
45
46
|
export * from './shared/InsightsCard/BeatCardMUI';
|
|
46
47
|
export * from './shared/InsightsCard/CardHeaderMUI';
|
|
48
|
+
export * from './shared/P2PCategorizationSingleAccount/P2PCategorizationSingleAccount';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SxProps, Theme } from '@mui/material/styles';
|
|
2
|
+
interface CouponProps {
|
|
3
|
+
amount: string;
|
|
4
|
+
label: string;
|
|
5
|
+
sx?: SxProps<Theme>;
|
|
6
|
+
}
|
|
7
|
+
declare const Coupon: ({ amount, label, sx }: CouponProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default Coupon;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface P2PCategorizationSingleAccountProps {
|
|
2
|
+
amount?: string;
|
|
3
|
+
categorized?: string;
|
|
4
|
+
categoryGuid: string;
|
|
5
|
+
merchantGuid: string;
|
|
6
|
+
merchantName: string;
|
|
7
|
+
isSuccessState?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare const P2PCategorizationSingleAccount: React.FC<P2PCategorizationSingleAccountProps>;
|
|
10
|
+
export {};
|