@mx-cartographer/experiences 6.19.0-alpha.bb2 → 6.19.1
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 +12 -0
- package/dist/categories/util/CategoryUtil.d.ts +0 -3
- package/dist/common/components/MicroWidgetContainer.d.ts +1 -0
- package/dist/common/types/AppData.d.ts +4 -0
- package/dist/common/types/GlobalCopy.d.ts +2 -1
- package/dist/common/types/localization/FinstrongCopy.d.ts +5 -0
- package/dist/common/types/localization/index.d.ts +1 -0
- package/dist/finstrong/components/ConnectMoreAccountsCard.d.ts +7 -0
- package/dist/goals/components/micro/GoalsMicroEmptyState.d.ts +3 -1
- package/dist/index.es.js +5872 -5784
- package/dist/index.es.js.map +1 -1
- package/dist/spending/utils/SpendingData.d.ts +3 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [6.19.1] - 08-01-2025
|
|
2
|
+
|
|
3
|
+
- **UPDATED** - Cleaned up BNC Micro Widget Container and configured variants
|
|
4
|
+
|
|
5
|
+
## [6.19.0] - 07-31-2025
|
|
6
|
+
|
|
7
|
+
- **ADDED** - Connect More Accounts Card for `Finstrong`.
|
|
8
|
+
|
|
9
|
+
## [6.18.12] - 07-30-2025
|
|
10
|
+
|
|
11
|
+
- **ADDED** - Added `session_timeout`, `session_timeout_url`, `keepalive_url` and `ping_id` to AppData
|
|
12
|
+
|
|
1
13
|
## [6.18.11] - 07-29-2025
|
|
2
14
|
|
|
3
15
|
- **FIXED** - Content variable name from `notifications_settings_title` to `notification_settings_title`
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Theme } from '@mui/material';
|
|
2
1
|
import { Category, DateRangeCategoryTotals, DetailedCategory, MonthlyCategoryTotals } from '../../common';
|
|
3
2
|
/**
|
|
4
3
|
* Augment categories
|
|
@@ -7,5 +6,3 @@ import { Category, DateRangeCategoryTotals, DetailedCategory, MonthlyCategoryTot
|
|
|
7
6
|
* @param currentCategoryTotals - Current month category totals
|
|
8
7
|
*/
|
|
9
8
|
export declare const augmentCategories: (categories: Category[], currentCategoryTotals: DateRangeCategoryTotals[], monthlyCategoryTotals: MonthlyCategoryTotals[]) => DetailedCategory[];
|
|
10
|
-
export declare const getCategoryColor: (guid: string, theme: Theme) => string;
|
|
11
|
-
export declare const getCategoryIcon: (guid: string) => string | undefined;
|
|
@@ -6,6 +6,7 @@ interface MicroWidgetContainerProps {
|
|
|
6
6
|
subHeader?: string;
|
|
7
7
|
sx?: SxProps;
|
|
8
8
|
title: string;
|
|
9
|
+
variant?: 'borderless' | 'card';
|
|
9
10
|
}
|
|
10
11
|
declare const MicroWidgetContainer: React.FC<React.PropsWithChildren<MicroWidgetContainerProps>>;
|
|
11
12
|
export default MicroWidgetContainer;
|
|
@@ -83,8 +83,11 @@ export interface Config {
|
|
|
83
83
|
enable_mark_account_duplicate_for_held_accounts: boolean;
|
|
84
84
|
enable_renaming_home_accounts: boolean;
|
|
85
85
|
enable_support_requests: boolean;
|
|
86
|
+
keepalive_url?: string;
|
|
86
87
|
language?: string;
|
|
87
88
|
product_name?: string;
|
|
89
|
+
session_timeout?: number;
|
|
90
|
+
session_timeout_url?: string;
|
|
88
91
|
session_token?: string;
|
|
89
92
|
show_account_nicknames_in_master: boolean;
|
|
90
93
|
show_accounts_widget_in_master: boolean;
|
|
@@ -133,6 +136,7 @@ export interface Options {
|
|
|
133
136
|
custom_copy_namespace?: string;
|
|
134
137
|
language?: string;
|
|
135
138
|
product_name?: string;
|
|
139
|
+
ping_id?: string;
|
|
136
140
|
session_token?: string;
|
|
137
141
|
subtype?: string;
|
|
138
142
|
type?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccountsCopy, AnalyticsCopy, BudgetsCopy, CashflowCopy, CategoryCopy, CommonCopy, ConnectCopy, DebtsCopy, GoalsCopy, HelpCopy, InsightsFeedCopy, InvestmentsCopy, MicroInsightsCopy, NetWorthCopy, NotificationsCopy, RecurringCopy, SettingsCopy, SpendingCopy, TransactionsCopy, TrendsCopy } from './localization';
|
|
1
|
+
import { AccountsCopy, AnalyticsCopy, BudgetsCopy, CashflowCopy, CategoryCopy, CommonCopy, ConnectCopy, DebtsCopy, FinstrongCopy, GoalsCopy, HelpCopy, InsightsFeedCopy, InvestmentsCopy, MicroInsightsCopy, NetWorthCopy, NotificationsCopy, RecurringCopy, SettingsCopy, SpendingCopy, TransactionsCopy, TrendsCopy } from './localization';
|
|
2
2
|
export interface GlobalCopy {
|
|
3
3
|
accounts: AccountsCopy;
|
|
4
4
|
analytics: AnalyticsCopy;
|
|
@@ -9,6 +9,7 @@ export interface GlobalCopy {
|
|
|
9
9
|
connect: ConnectCopy;
|
|
10
10
|
debts: DebtsCopy;
|
|
11
11
|
goals: GoalsCopy;
|
|
12
|
+
finstrong: FinstrongCopy;
|
|
12
13
|
help: HelpCopy;
|
|
13
14
|
insights_feed: InsightsFeedCopy;
|
|
14
15
|
investments: InvestmentsCopy;
|
|
@@ -10,6 +10,7 @@ export type { ConnectCopy } from './ConnectCopy';
|
|
|
10
10
|
export type { CurrencyInputCopy } from './CurrencyInputCopy';
|
|
11
11
|
export type { DateRangePickerCopy } from './DateRangePickerCopy';
|
|
12
12
|
export type { DebtsCopy } from './DebtsCopy';
|
|
13
|
+
export type { FinstrongCopy } from './FinstrongCopy';
|
|
13
14
|
export type { GoalsCopy } from './GoalsCopy';
|
|
14
15
|
export type { HelpCopy, HelpByCategoryList } from './HelpCopy';
|
|
15
16
|
export type { InsightsFeedCopy } from './InsightsFeedCopy';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface ConnectMoreAccountsCardProps {
|
|
2
|
+
isDashboard?: boolean;
|
|
3
|
+
title: string;
|
|
4
|
+
description: string;
|
|
5
|
+
}
|
|
6
|
+
export declare const ConnectMoreAccountsCard: ({ isDashboard, title, description, }: ConnectMoreAccountsCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -4,5 +4,7 @@ interface EmptyWidgetProps {
|
|
|
4
4
|
subText: string;
|
|
5
5
|
sx?: SxProps;
|
|
6
6
|
}
|
|
7
|
-
export declare const GoalsMicroEmptyState: ({ header, subText, sx }: EmptyWidgetProps) => import("react/jsx-runtime").JSX.Element
|
|
7
|
+
export declare const GoalsMicroEmptyState: (({ header, subText, sx }: EmptyWidgetProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
8
10
|
export {};
|