@mx-cartographer/experiences 6.13.2-alpha.mega1 → 6.14.0-alpha-ram1-zero-state
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 +9 -9
- package/dist/common/components/listitems/ToggleButtonListItem.d.ts +1 -4
- package/dist/common/components/listitems/ToggleListItem.d.ts +1 -2
- package/dist/common/constants/Analytics.d.ts +1 -0
- package/dist/common/types/Notification.d.ts +24 -13
- package/dist/common/types/index.d.ts +2 -2
- package/dist/common/types/localization/RecurringCopy.d.ts +4 -0
- package/dist/common/types/localization/SettingsCopy.d.ts +0 -8
- package/dist/index.es.js +5528 -5255
- package/dist/index.es.js.map +1 -1
- package/dist/notifications/components/NotificationDrawer.d.ts +3 -2
- package/dist/notifications/constants/NotificationConstants.d.ts +2 -1
- package/dist/recurringtransactions/RecurringTransactionsMicroWidget.d.ts +7 -0
- package/dist/recurringtransactions/ZeroStateMicroWidget.d.ts +3 -0
- package/dist/recurringtransactions/components/micro/MerchantLogosRow.d.ts +8 -0
- package/dist/recurringtransactions/components/micro/OverlappingMerchantLogos.d.ts +9 -0
- package/dist/recurringtransactions/components/micro/RecurrenceLegend.d.ts +9 -0
- package/dist/recurringtransactions/index.d.ts +2 -0
- package/dist/settings/components/notifications/InsightsNotificationTypes.d.ts +2 -0
- package/dist/settings/components/notifications/NotificationProfileDetails.d.ts +9 -0
- package/dist/settings/components/notifications/NotificationSettings.d.ts +7 -2
- package/dist/settings/constants/Settings.d.ts +2 -0
- package/dist/settings/index.d.ts +1 -4
- package/dist/settings/stores/SettingsStore.d.ts +6 -2
- package/dist/settings/util/Notifications.d.ts +2 -1
- package/package.json +2 -2
- package/dist/settings/components/notifications/AccountNotificationProfile.d.ts +0 -9
- package/dist/settings/components/notifications/AccountNotificationProfiles.d.ts +0 -3
- package/dist/settings/components/notifications/BudgetNotificationProfiles.d.ts +0 -3
- package/dist/settings/components/notifications/InsightsNotificationProfiles.d.ts +0 -3
- package/dist/settings/components/notifications/NotificationProfile.d.ts +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
## [6.
|
|
1
|
+
## [6.14.1] - 07-04-2025
|
|
2
2
|
|
|
3
|
-
- **
|
|
4
|
-
- **UPDATED** - Budget notification profiles to use expanders for each type
|
|
5
|
-
- **UPDATED** - Insight notification profiles into a new component
|
|
6
|
-
- **ADDED** - Institution logos for account in account notification profiles
|
|
7
|
-
- **FIXED** - Dialog title for dates in account notification profiles
|
|
3
|
+
- **ADDED** - ZeroState micro widget for recurring transactions.
|
|
8
4
|
|
|
9
|
-
## [6.
|
|
5
|
+
## [6.14.0] - 07-03-2025
|
|
6
|
+
|
|
7
|
+
- **ADDED** - RecurringTransactions Micro Widget.
|
|
8
|
+
|
|
9
|
+
## [6.13.2] - 07-03-2025
|
|
10
10
|
|
|
11
11
|
- **FIXED** - Issue with save goals
|
|
12
12
|
|
|
13
|
-
## [6.
|
|
13
|
+
## [6.13.1] - 07-01-2025
|
|
14
14
|
|
|
15
15
|
- **Fixed** - Empty account section headers being displayed
|
|
16
16
|
|
|
17
|
-
## [6.
|
|
17
|
+
## [6.13.0] - 07-01-2025
|
|
18
18
|
|
|
19
19
|
- **Fixed** - Hidden account transaction still showing until refresh
|
|
20
20
|
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
1
|
interface ToggleButtonListItemProps {
|
|
3
|
-
avatar?: React.ReactNode;
|
|
4
|
-
endIcon?: React.ReactNode;
|
|
5
2
|
isChecked: boolean;
|
|
6
3
|
isDisabled?: boolean;
|
|
7
4
|
onClick: () => void;
|
|
@@ -9,5 +6,5 @@ interface ToggleButtonListItemProps {
|
|
|
9
6
|
primaryText: string;
|
|
10
7
|
secondaryText?: string;
|
|
11
8
|
}
|
|
12
|
-
export declare const ToggleButtonListItem: ({
|
|
9
|
+
export declare const ToggleButtonListItem: ({ isChecked, isDisabled, onClick, onToggle, primaryText, secondaryText, }: ToggleButtonListItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
10
|
export {};
|
|
@@ -4,7 +4,6 @@ interface ToggleListItemProps {
|
|
|
4
4
|
onToggle: () => void;
|
|
5
5
|
primaryText: string;
|
|
6
6
|
secondaryText?: string;
|
|
7
|
-
useExtraPadding?: boolean;
|
|
8
7
|
}
|
|
9
|
-
export declare const ToggleListItem: ({ isChecked, isDisabled, onToggle, primaryText, secondaryText,
|
|
8
|
+
export declare const ToggleListItem: ({ isChecked, isDisabled, onToggle, primaryText, secondaryText, }: ToggleListItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
9
|
export {};
|
|
@@ -65,6 +65,7 @@ export declare const ANALYTICS_EVENTS: {
|
|
|
65
65
|
RECURRING_TRANSACTIONS_CLICK_UPCOMING: string;
|
|
66
66
|
RECURRING_TRANSACTIONS_DETAILS_CLICK_DELETE: string;
|
|
67
67
|
RECURRING_TRANSACTIONS_DETAILS_CLICK_PAYMENT_SCHEDULE: string;
|
|
68
|
+
RECURRING_TRANSACTIONS_MICRO_WIDGET_CTA: string;
|
|
68
69
|
SPENDING_CLICK_FILTER: string;
|
|
69
70
|
SPENDING_VIEW: string;
|
|
70
71
|
TRANSACTIONS_ADD_MANUAL_ACCOUNT_MODAL: string;
|
|
@@ -10,14 +10,14 @@ export type Notification = {
|
|
|
10
10
|
has_been_viewed: boolean;
|
|
11
11
|
in_app_icon: string;
|
|
12
12
|
merchant_guid: string;
|
|
13
|
-
notification_type:
|
|
13
|
+
notification_type: NotificationType;
|
|
14
14
|
};
|
|
15
15
|
export type NotificationProfile = {
|
|
16
16
|
email_channel: boolean;
|
|
17
17
|
entity_guid: string;
|
|
18
18
|
guid: string;
|
|
19
19
|
is_enabled: boolean;
|
|
20
|
-
notification_type:
|
|
20
|
+
notification_type: NotificationType;
|
|
21
21
|
push_channel: boolean;
|
|
22
22
|
sms_channel: boolean;
|
|
23
23
|
threshold?: number | null;
|
|
@@ -28,12 +28,9 @@ export interface DetailedNotificationProfile extends NotificationProfile {
|
|
|
28
28
|
deliveryMethodsLabel?: string;
|
|
29
29
|
label: string;
|
|
30
30
|
}
|
|
31
|
-
export declare enum
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
Insights = "insights"
|
|
35
|
-
}
|
|
36
|
-
export declare enum AccountNotificationTypes {
|
|
31
|
+
export declare enum NotificationType {
|
|
32
|
+
BudgetExceeded = 1,
|
|
33
|
+
BudgetOffTarget = 2,
|
|
37
34
|
DebtPaymentReminder = 3,
|
|
38
35
|
AccountBalanceLow = 6,
|
|
39
36
|
AccountDepositLarge = 7,
|
|
@@ -42,16 +39,13 @@ export declare enum AccountNotificationTypes {
|
|
|
42
39
|
InternationalTransaction = 23,
|
|
43
40
|
AccountDepositLargePosted = 48
|
|
44
41
|
}
|
|
45
|
-
export declare enum
|
|
46
|
-
BudgetExceeded = 1,
|
|
47
|
-
BudgetOffTarget = 2
|
|
48
|
-
}
|
|
49
|
-
export declare enum InsightNotificationTypes {
|
|
42
|
+
export declare enum InsightNotificationType {
|
|
50
43
|
AccountBalanceLow = 33,
|
|
51
44
|
BillAmountNotStandard = 49,
|
|
52
45
|
CategorySpending = 50,
|
|
53
46
|
CreditCardCloseToLimit = 51,
|
|
54
47
|
DebtPaymentReminder = 37,
|
|
48
|
+
DebtPaymentReminderV3 = 66,
|
|
55
49
|
DuplicatePayment = 42,
|
|
56
50
|
MonthlySpendComparison = 53,
|
|
57
51
|
MonthlySpendToIncomeComparison = 54,
|
|
@@ -71,3 +65,20 @@ export declare enum InsightNotificationTypes {
|
|
|
71
65
|
PromotionalCampaignMessages = 67,
|
|
72
66
|
TransparentOverdraft = 68
|
|
73
67
|
}
|
|
68
|
+
export type InsightsNotificationProfile = {
|
|
69
|
+
email_channel: boolean;
|
|
70
|
+
entity_guid: string;
|
|
71
|
+
guid: string;
|
|
72
|
+
is_enabled: boolean;
|
|
73
|
+
notification_type: number;
|
|
74
|
+
user_guid: string;
|
|
75
|
+
push_channel: boolean;
|
|
76
|
+
sms_channel: boolean;
|
|
77
|
+
client_guid: string;
|
|
78
|
+
};
|
|
79
|
+
export interface DetailedInsightsNotificationProfile extends InsightsNotificationProfile {
|
|
80
|
+
account?: Account;
|
|
81
|
+
children?: DetailedInsightsNotificationProfile[];
|
|
82
|
+
deliveryMethodsLabel?: string;
|
|
83
|
+
label: string;
|
|
84
|
+
}
|
|
@@ -19,8 +19,8 @@ export type { HelpAlertProps, HelpCategory, HelpContentProps, HelpTopic, HelpTyp
|
|
|
19
19
|
export type { Institution } from './Institution';
|
|
20
20
|
export * from './localization';
|
|
21
21
|
export type { LocalizedContent } from './LocalizedContent';
|
|
22
|
-
export {
|
|
23
|
-
export type { DetailedNotificationProfile, Notification, NotificationProfile } from './Notification';
|
|
22
|
+
export { NotificationType } from './Notification';
|
|
23
|
+
export type { DetailedNotificationProfile, Notification, NotificationProfile, InsightsNotificationProfile, DetailedInsightsNotificationProfile, } from './Notification';
|
|
24
24
|
export type { Merchant } from './Merchant';
|
|
25
25
|
export type { ScheduledPayment } from './ScheduledPayment';
|
|
26
26
|
export type { SpendingPlan, SpendingPlanAccount, SpendingPlanIteration, IterationItem, } from './SpendingPlan';
|
|
@@ -67,6 +67,7 @@ export interface RecurringCopy {
|
|
|
67
67
|
quarterly_ordinal: string;
|
|
68
68
|
recurrence_day_label: string;
|
|
69
69
|
recurrence_days_label: string;
|
|
70
|
+
recurring_expenses: string;
|
|
70
71
|
reset: string;
|
|
71
72
|
second_day_of_the_month: string;
|
|
72
73
|
select_day_label: string;
|
|
@@ -93,4 +94,7 @@ export interface RecurringCopy {
|
|
|
93
94
|
weekday_saturday: string;
|
|
94
95
|
weekly: string;
|
|
95
96
|
weekly_ordinal: string;
|
|
97
|
+
zero_state_content_description: string;
|
|
98
|
+
zero_state_content_header: string;
|
|
99
|
+
zero_state_title: string;
|
|
96
100
|
}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
export interface SettingsCopy {
|
|
2
|
-
accounts_subtitle: string;
|
|
3
|
-
accounts_threshold_title: string;
|
|
4
2
|
accounts_title: string;
|
|
5
3
|
birthdate: string;
|
|
6
|
-
budgets_subtitle: string;
|
|
7
4
|
budgets_title: string;
|
|
8
5
|
category: string;
|
|
9
6
|
confirm_email: string;
|
|
@@ -37,16 +34,11 @@ export interface SettingsCopy {
|
|
|
37
34
|
enter_verification_code: string;
|
|
38
35
|
first_name: string;
|
|
39
36
|
help_label: string;
|
|
40
|
-
insights_subtitle: string;
|
|
41
|
-
insights_title: string;
|
|
42
37
|
information_updated_error: string;
|
|
43
38
|
information_updated_success: string;
|
|
44
39
|
keep_editing: string;
|
|
45
40
|
last_name: string;
|
|
46
41
|
leave: string;
|
|
47
|
-
manage_account_notifications: string;
|
|
48
|
-
manage_budget_notifications: string;
|
|
49
|
-
manage_insights_notifications: string;
|
|
50
42
|
mobile_devices_access_cta: string;
|
|
51
43
|
mobile_devices_access_description: string;
|
|
52
44
|
mobile_devices_access_error: string;
|