@mx-cartographer/experiences 6.25.0-alpha.sms2 → 6.25.0-alpha.sms4

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.
Files changed (29) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/dist/accounts/stores/AccountStore.d.ts +3 -8
  3. package/dist/categories/stores/CategoryStore.d.ts +0 -3
  4. package/dist/common/components/charts/LineChart.d.ts +7 -0
  5. package/dist/common/components/charts/linechart/CustomLegend.d.ts +3 -1
  6. package/dist/common/components/charts/linechart/CustomMark.d.ts +3 -0
  7. package/dist/common/constants/FinStrong.d.ts +28 -0
  8. package/dist/common/context/hooks.d.ts +1 -0
  9. package/dist/common/context/index.d.ts +1 -1
  10. package/dist/common/stores/GlobalStore.d.ts +1 -1
  11. package/dist/common/types/Client.d.ts +1 -1
  12. package/dist/common/types/Finstrong.d.ts +2 -0
  13. package/dist/common/types/localization/FinstrongCopy.d.ts +48 -1
  14. package/dist/common/types/localization/TrendsCopy.d.ts +12 -0
  15. package/dist/finstrong/components/KeyIndicatorsBorrowTab.d.ts +3 -0
  16. package/dist/finstrong/components/KeyIndicatorsSaveTab.d.ts +3 -0
  17. package/dist/finstrong/components/KeyIndicatorsSpendTab.d.ts +3 -0
  18. package/dist/finstrong/components/KeyIndicatorsTabItem.d.ts +10 -0
  19. package/dist/finstrong/components/KeyIndicatorsTabsWidget.d.ts +3 -0
  20. package/dist/finstrong/components/ManageCreditScore.d.ts +8 -0
  21. package/dist/finstrong/components/ManageDOB.d.ts +6 -0
  22. package/dist/finstrong/components/ProfileDrawer.d.ts +8 -0
  23. package/dist/finstrong/components/ProfileList.d.ts +20 -0
  24. package/dist/finstrong/components/ProfileProgressBar.d.ts +6 -0
  25. package/dist/finstrong/stores/FinstrongStore.d.ts +2 -1
  26. package/dist/index.es.js +6479 -5925
  27. package/dist/index.es.js.map +1 -1
  28. package/dist/transactions/stores/TransactionStore.d.ts +3 -3
  29. package/package.json +1 -4
@@ -27,7 +27,7 @@ export declare class TransactionStore {
27
27
  transactionRules: TransactionRule[];
28
28
  onAnalyticEvent: (event: string, session: import('../analytics').AnalyticSession | null) => Promise<any>;
29
29
  constructor(globalStore: GlobalStore);
30
- loadTransactionData: ({ associatedBeats, taggings, tags, transactionRules, transactions, }: {
30
+ loadTransactionData: ({ associatedBeats, transactionRules, transactions, }: {
31
31
  associatedBeats?: Beat[];
32
32
  taggings?: Tagging[];
33
33
  tags?: Tag[];
@@ -101,8 +101,8 @@ export declare class TransactionStore {
101
101
  }[];
102
102
  getTransactionData: () => {};
103
103
  loadAssociatedBeats: (fromDate?: Date, beatsOverride?: Beat[]) => Promise<void>;
104
- loadTags: (tagsOverrides?: Tag[]) => Promise<void>;
105
- loadTaggings: (taggingsOverrides?: Tagging[]) => Promise<void>;
104
+ loadTags: () => Promise<void>;
105
+ loadTaggings: () => Promise<void>;
106
106
  loadTransactionRules: (transactionRulesOverrides?: TransactionRule[]) => Promise<void>;
107
107
  loadTransactions: (startDate?: Date, endDate?: Date, transactionsOverrides?: Transaction[]) => Promise<void>;
108
108
  loadTransactionsByDateRange: (endDate: number, startDate: number) => Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "6.25.0-alpha.sms2",
3
+ "version": "6.25.0-alpha.sms4",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -25,8 +25,6 @@
25
25
  "dependencies": {
26
26
  "@emotion/react": "^11.14.0",
27
27
  "@emotion/styled": "^11.14.0",
28
- "@honeybadger-io/js": "^6.8.3",
29
- "@honeybadger-io/react": "^6.1.19",
30
28
  "@mui/icons-material": "^5.18.0",
31
29
  "@mui/lab": "^5.0.0-alpha.177",
32
30
  "@mui/material": "^5.18.0",
@@ -70,7 +68,6 @@
70
68
  "@testing-library/user-event": "^14.6.1",
71
69
  "@types/css-mediaquery": "^0",
72
70
  "@types/d3": "^7.4.3",
73
- "@types/honeybadger": "^1.4.5",
74
71
  "@types/jest": "^29.5.14",
75
72
  "@types/numeral": "^2.0.5",
76
73
  "@types/prop-types": "^15.7.14",