@mx-cartographer/experiences 6.5.8-alpha.san1 → 6.6.0
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 +7 -3
- package/dist/common/types/User.d.ts +1 -0
- package/dist/common/types/index.d.ts +1 -1
- package/dist/index.es.js +6093 -6115
- package/dist/index.es.js.map +1 -1
- package/dist/investments/components/HoldingDrawer.d.ts +4 -10
- package/dist/networth/NetWorthMicroWidget.d.ts +3 -0
- package/dist/networth/components/micro/Header.d.ts +7 -0
- package/dist/networth/components/micro/NetworthData.d.ts +9 -0
- package/dist/networth/components/micro/ZeroState.d.ts +7 -0
- package/dist/networth/index.d.ts +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
## [6.
|
|
1
|
+
## [6.6.0] - 06-17-2025
|
|
2
2
|
|
|
3
|
-
- **
|
|
3
|
+
- **ADDED** - `NetWorthMicroWidget`
|
|
4
|
+
|
|
5
|
+
## [6.5.8] - 06-17-2025
|
|
6
|
+
|
|
7
|
+
- **UPDATED** - Profile Save button has enabled/disabled states based on unsaved changes
|
|
4
8
|
|
|
5
9
|
## [6.5.7] - 06-17-2025
|
|
6
10
|
|
|
@@ -8,7 +12,7 @@
|
|
|
8
12
|
|
|
9
13
|
## [6.5.6] - 06-16-2025
|
|
10
14
|
|
|
11
|
-
- **
|
|
15
|
+
- **FIXED** - Another issue preventing Recurring Transactions from being created
|
|
12
16
|
|
|
13
17
|
## [6.5.5] - 06-16-2025
|
|
14
18
|
|
|
@@ -32,6 +32,7 @@ export interface UserProfile {
|
|
|
32
32
|
uses_detailed_notifications: boolean;
|
|
33
33
|
user_guid: string;
|
|
34
34
|
}
|
|
35
|
+
export type EditableUser = Pick<User, 'birthday' | 'credit_score' | 'email' | 'first_name' | 'last_name' | 'phone' | 'postal_code'>;
|
|
35
36
|
export interface UserFeature {
|
|
36
37
|
feature_guid: string;
|
|
37
38
|
feature_name: string;
|
|
@@ -25,7 +25,7 @@ export type { ScheduledPayment } from './ScheduledPayment';
|
|
|
25
25
|
export type { SpendingPlan, SpendingPlanAccount, SpendingPlanIteration, IterationItem, } from './SpendingPlan';
|
|
26
26
|
export type { Tag, Tagging, Transaction, TransactionRule } from './Transaction';
|
|
27
27
|
export { TransactionStatus, TransactionType } from './Transaction';
|
|
28
|
-
export type { Device, User, UserCommunicationProfile, UserFeature, UserProfile } from './User';
|
|
28
|
+
export type { Device, EditableUser, User, UserCommunicationProfile, UserFeature, UserProfile, } from './User';
|
|
29
29
|
export { ScreenSize } from './ScreenSize';
|
|
30
30
|
export type { MiniWidgetProps, WidgetProps } from './Widgets';
|
|
31
31
|
export type { Holding } from './Holding';
|