@mx-cartographer/experiences 6.0.14 → 6.0.16
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/common/types/GlobalCopy.d.ts +2 -1
- package/dist/common/types/localization/InvestmentsCopy.d.ts +6 -0
- package/dist/common/types/localization/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +2259 -2228
- package/dist/index.es.js.map +1 -1
- package/dist/investments/InvestmentsWidget.d.ts +4 -0
- package/dist/investments/components/Allocation.d.ts +2 -0
- package/dist/investments/components/Analysis.d.ts +2 -0
- package/dist/investments/components/Overview.d.ts +2 -0
- package/dist/investments/components/TabTitle.d.ts +5 -0
- package/dist/investments/index.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [6.0.16] - 05-09-2025
|
|
2
|
+
|
|
3
|
+
- **ADDED** - Initial Investments layout
|
|
4
|
+
|
|
5
|
+
## [6.0.15] - 05-08-2025
|
|
6
|
+
|
|
7
|
+
- **UPDATED** - `Dashboard` to use updated MXUI breakpoints
|
|
8
|
+
|
|
1
9
|
## [6.0.14] - 05-08-2025
|
|
2
10
|
|
|
3
11
|
- **UPDATED** - `useScreenSize` hook to use updated MXUI breakpoints
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccountsCopy, BudgetsCopy, CashflowCopy, CategoryCopy, CommonCopy, ConnectCopy, DebtsCopy, GoalsCopy, HelpCopy, InsightsFeedCopy, MicroInsightsCopy, NetWorthCopy, NotificationsCopy, RecurringCopy, SettingsCopy, SpendingCopy, TransactionsCopy, TrendsCopy } from './localization';
|
|
1
|
+
import { AccountsCopy, BudgetsCopy, CashflowCopy, CategoryCopy, CommonCopy, ConnectCopy, DebtsCopy, 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
|
budgets: BudgetsCopy;
|
|
@@ -10,6 +10,7 @@ export interface GlobalCopy {
|
|
|
10
10
|
goals: GoalsCopy;
|
|
11
11
|
help: HelpCopy;
|
|
12
12
|
insights_feed: InsightsFeedCopy;
|
|
13
|
+
investments: InvestmentsCopy;
|
|
13
14
|
micro_insights: MicroInsightsCopy;
|
|
14
15
|
net_worth: NetWorthCopy;
|
|
15
16
|
notifications: NotificationsCopy;
|
|
@@ -12,6 +12,7 @@ export type { DebtsCopy } from './DebtsCopy';
|
|
|
12
12
|
export type { GoalsCopy } from './GoalsCopy';
|
|
13
13
|
export type { HelpCopy } from './HelpCopy';
|
|
14
14
|
export type { InsightsFeedCopy } from './InsightsFeedCopy';
|
|
15
|
+
export type { InvestmentsCopy } from './InvestmentsCopy';
|
|
15
16
|
export type { MicroInsightsCopy } from './MicroInsightsCopy';
|
|
16
17
|
export type { NetWorthCopy } from './NetWorthCopy';
|
|
17
18
|
export type { NotificationsCopy } from './NotificationsCopy';
|
package/dist/index.d.ts
CHANGED