@mx-cartographer/experiences 8.2.8 → 8.2.9-alpha-insightv2-2

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 (984) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/BarChartV2-x2zNPJ-a.mjs +510 -0
  3. package/dist/EmbeddedCard-CBxmTWJW.mjs +362 -0
  4. package/dist/EmptyBarChart-qkILeuXK.mjs +6 -0
  5. package/dist/{ExportCsvAction-hDprC41l.mjs → ExportCsvAction-DDQl3FfC.mjs} +1 -1
  6. package/dist/{ManageIncome-DwylSiWs.mjs → ManageIncome-B2lZ6AJB.mjs} +79 -78
  7. package/dist/{RecurringSettings-CPXLW6AR.mjs → RecurringSettings-D1yi77Y6.mjs} +1 -1
  8. package/dist/{TransactionDetails-CbBSxdOi.mjs → TransactionDetails-BKPDKMA7.mjs} +22 -21
  9. package/dist/{UserStore-CRpKQjpP.mjs → UserStore-CvZ9Gh2J.mjs} +257 -223
  10. package/dist/accounts/index.es.js +2 -2
  11. package/dist/budgets/index.es.js +3 -3
  12. package/dist/cashflow/index.es.js +3 -3
  13. package/dist/common/index.es.js +1 -1
  14. package/dist/core/index.es.js +1 -1
  15. package/dist/finstrong/index.es.js +33 -32
  16. package/dist/insights/index.es.js +569 -533
  17. package/dist/insights-v2/index.es.js +1794 -0
  18. package/dist/recurringtransactions/index.es.js +4 -4
  19. package/dist/spending/index.es.js +2 -2
  20. package/dist/{core → src/core}/api/TransactionApi.d.ts +1 -0
  21. package/dist/{core → src/core}/stores/BeatStore.d.ts +1 -0
  22. package/dist/{core → src/core}/stores/GlobalUiStore.d.ts +5 -0
  23. package/dist/{core → src/core}/stores/TransactionStore.d.ts +1 -0
  24. package/dist/{core → src/core}/types/Beat.d.ts +2 -0
  25. package/dist/src/core/types/Insights.d.ts +83 -0
  26. package/dist/src/core/types/InsightsInstanceSlotData.d.ts +88 -0
  27. package/dist/{core → src/core}/types/index.d.ts +1 -0
  28. package/dist/{finstrong → src/finstrong}/util/finstrongUtils.d.ts +1 -1
  29. package/dist/src/insights/components/insights/MonthlySpendingComparisonV2/__test__/MonthlySpendComparisonV2.test.d.ts +1 -0
  30. package/dist/src/insights/components/insights/P2pCategorization/_tests_/P2pCategorizationSingleTransaction.test.d.ts +0 -0
  31. package/dist/{insights → src/insights}/components/insights/WeeklyNoSpendDays/BubbleWeek.d.ts +4 -1
  32. package/dist/{insights → src/insights}/components/insights/WeeklyNoSpendDays/WeeklyNoSpendDays.d.ts +4 -1
  33. package/dist/src/insights/components/insights/WeeklyNoSpendDays/_tests_/WeeklyNoSpendDays.test.d.ts +0 -0
  34. package/dist/src/insights/components/shared/Charts/EmptyBarChart.d.ts +1 -0
  35. package/dist/src/insights/components/shared/DonutChartV2.d.ts +13 -0
  36. package/dist/src/insights/hooks/useContainerDimensions.d.ts +5 -0
  37. package/dist/src/insights-v2/CommonUtils.d.ts +1 -0
  38. package/dist/src/insights-v2/blocks/ActionBlocks/DrillDown/SubTabs.d.ts +15 -0
  39. package/dist/src/insights-v2/blocks/ActionBlocks/DrillDown/TransactionDrillDown.d.ts +27 -0
  40. package/dist/src/insights-v2/blocks/ActionBlocks/TransactionHistoryBlock/TransactionHistoryBlock.d.ts +4 -0
  41. package/dist/src/insights-v2/blocks/ActionBlocks/TransactionHistoryBlock/index.d.ts +1 -0
  42. package/dist/src/insights-v2/blocks/ActionBlocks/TransactionHistoryBlock/useTransactionHistoryBlock.d.ts +25 -0
  43. package/dist/src/insights-v2/blocks/ActionBlocks/TransactionHistoryBlock/useTransactionHistoryPrepare.d.ts +13 -0
  44. package/dist/src/insights-v2/blocks/ActionBlocks/__test__/transactionFilterStrategies.test.d.ts +1 -0
  45. package/dist/src/insights-v2/blocks/ActionBlocks/drillDownVariants.d.ts +75 -0
  46. package/dist/src/insights-v2/blocks/ActionBlocks/index.d.ts +3 -0
  47. package/dist/src/insights-v2/blocks/ActionBlocks/transactionFilterStrategies.d.ts +67 -0
  48. package/dist/src/insights-v2/blocks/ChartBlocks/BarchartBlock/BarchartBlock.d.ts +3 -0
  49. package/dist/src/insights-v2/blocks/ChartBlocks/BarchartBlock/index.d.ts +1 -0
  50. package/dist/src/insights-v2/blocks/ChartBlocks/BarchartBlock/layout.d.ts +9 -0
  51. package/dist/src/insights-v2/blocks/ChartBlocks/BarchartBlock/utils.d.ts +20 -0
  52. package/dist/src/insights-v2/blocks/ChartBlocks/DonutChartBlock/DonutChartBlock.d.ts +4 -0
  53. package/dist/src/insights-v2/blocks/ChartBlocks/DonutChartBlock/index.d.ts +1 -0
  54. package/dist/src/insights-v2/blocks/ChartBlocks/DonutChartBlock/layout.d.ts +19 -0
  55. package/dist/src/insights-v2/blocks/ChartBlocks/DonutChartBlock/utils.d.ts +3 -0
  56. package/dist/src/insights-v2/blocks/ChartBlocks/DoubleBarChartBlock/ChartLegend.d.ts +7 -0
  57. package/dist/src/insights-v2/blocks/ChartBlocks/DoubleBarChartBlock/CustomDoubleBar.d.ts +18 -0
  58. package/dist/src/insights-v2/blocks/ChartBlocks/DoubleBarChartBlock/DoubleBarChart.d.ts +5 -0
  59. package/dist/src/insights-v2/blocks/ChartBlocks/DoubleBarChartBlock/comparisonUtils.d.ts +29 -0
  60. package/dist/src/insights-v2/blocks/ChartBlocks/DoubleBarChartBlock/index.d.ts +1 -0
  61. package/dist/src/insights-v2/blocks/ChartBlocks/DoubleBarChartBlock/layout.d.ts +8 -0
  62. package/dist/src/insights-v2/blocks/ChartBlocks/DoubleProgressBarBlock/DoubleProgressBarBlock.d.ts +4 -0
  63. package/dist/src/insights-v2/blocks/ChartBlocks/DoubleProgressBarBlock/ProgressBar.d.ts +8 -0
  64. package/dist/src/insights-v2/blocks/ChartBlocks/DoubleProgressBarBlock/index.d.ts +1 -0
  65. package/dist/src/insights-v2/blocks/ChartBlocks/StepChartBlock/StepChartBlock.d.ts +4 -0
  66. package/dist/src/insights-v2/blocks/ChartBlocks/StepChartBlock/index.d.ts +9 -0
  67. package/dist/src/insights-v2/blocks/ChartBlocks/StepChartBlock/utils.d.ts +19 -0
  68. package/dist/src/insights-v2/blocks/ChartBlocks/StepChartBlock/variants/WithText.d.ts +5 -0
  69. package/dist/src/insights-v2/blocks/ChartBlocks/StepChartBlock/variants/WithoutText.d.ts +5 -0
  70. package/dist/src/insights-v2/blocks/ChartBlocks/index.d.ts +5 -0
  71. package/dist/src/insights-v2/blocks/ComponentBlocks/AccountBlock/AccountBlock.d.ts +4 -0
  72. package/dist/src/insights-v2/blocks/ComponentBlocks/AccountBlock/HeaderComponent.d.ts +5 -0
  73. package/dist/src/insights-v2/blocks/ComponentBlocks/AccountBlock/IconComponent.d.ts +7 -0
  74. package/dist/src/insights-v2/blocks/ComponentBlocks/AccountBlock/index.d.ts +1 -0
  75. package/dist/src/insights-v2/blocks/ComponentBlocks/AccountBlock/layout.d.ts +8 -0
  76. package/dist/src/insights-v2/blocks/ComponentBlocks/ActionBlock/ActionBlockLayer.d.ts +9 -0
  77. package/dist/src/insights-v2/blocks/ComponentBlocks/BudgetBlock/BudgetBlock.d.ts +3 -0
  78. package/dist/src/insights-v2/blocks/ComponentBlocks/BudgetBlock/index.d.ts +1 -0
  79. package/dist/src/insights-v2/blocks/ComponentBlocks/BudgetBlock/util.d.ts +7 -0
  80. package/dist/src/insights-v2/blocks/ComponentBlocks/index.d.ts +2 -0
  81. package/dist/src/insights-v2/blocks/ImageBlocks/ImageBlock.d.ts +4 -0
  82. package/dist/src/insights-v2/blocks/ImageBlocks/SVGImageBlock/SVGImageBlock.d.ts +3 -0
  83. package/dist/src/insights-v2/blocks/ImageBlocks/SVGImageBlock/index.d.ts +1 -0
  84. package/dist/src/insights-v2/blocks/ImageBlocks/SVGImageBlock/layout.d.ts +7 -0
  85. package/dist/src/insights-v2/blocks/ImageBlocks/index.d.ts +2 -0
  86. package/dist/src/insights-v2/blocks/index.d.ts +5 -0
  87. package/dist/src/insights-v2/blocks/types.d.ts +8 -0
  88. package/dist/src/insights-v2/components/BaseLayout.d.ts +8 -0
  89. package/dist/src/insights-v2/components/ComponentBlocks/StatusIndicator.d.ts +14 -0
  90. package/dist/src/insights-v2/components/Footer.d.ts +9 -0
  91. package/dist/src/insights-v2/components/Header.d.ts +8 -0
  92. package/dist/src/insights-v2/components/SubHeader.d.ts +6 -0
  93. package/dist/src/insights-v2/components/TransactionList.d.ts +16 -0
  94. package/dist/src/insights-v2/components/chartblocks/BarchartV2.d.ts +2 -0
  95. package/dist/src/insights-v2/components/chartblocks/ThemedSVGImage.d.ts +2 -0
  96. package/dist/src/insights-v2/hooks/useActionBlock.d.ts +6 -0
  97. package/dist/src/insights-v2/hooks/useBeatTransactions.d.ts +7 -0
  98. package/dist/{insights → src/insights-v2}/hooks/useContainerDimensions.d.ts +1 -1
  99. package/dist/src/insights-v2/index.d.ts +2 -0
  100. package/dist/src/insights-v2/mappings/blocks.d.ts +13 -0
  101. package/dist/transactions/index.es.js +12 -11
  102. package/dist/trends/index.es.js +3 -3
  103. package/package.json +5 -1
  104. package/dist/EmbeddedCard-BNl3quCs.mjs +0 -856
  105. /package/dist/{accounts → src/accounts}/AccountsMiniWidget.d.ts +0 -0
  106. /package/dist/{accounts → src/accounts}/AccountsWidget.d.ts +0 -0
  107. /package/dist/{accounts → src/accounts}/ConnectMiniWidget.d.ts +0 -0
  108. /package/dist/{accounts → src/accounts}/components/AccountListItem.d.ts +0 -0
  109. /package/dist/{accounts → src/accounts}/components/AccountsList.d.ts +0 -0
  110. /package/dist/{accounts → src/accounts}/components/AccountsListCompact.d.ts +0 -0
  111. /package/dist/{accounts → src/accounts}/components/ConnectImage.d.ts +0 -0
  112. /package/dist/{accounts → src/accounts}/components/ConnectMiniWidgetCard.d.ts +0 -0
  113. /package/dist/{accounts → src/accounts}/components/ConnectStatus.d.ts +0 -0
  114. /package/dist/{accounts → src/accounts}/components/ConnectionStatusIcons.d.ts +0 -0
  115. /package/dist/{accounts → src/accounts}/components/ConnectionsDrawer.d.ts +0 -0
  116. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Accounts/AccountActions.d.ts +0 -0
  117. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Accounts/AccountActionsRow.d.ts +0 -0
  118. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Accounts/AccountConnection.d.ts +0 -0
  119. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Accounts/AccountDetailEdit.d.ts +0 -0
  120. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Accounts/AccountDetails.d.ts +0 -0
  121. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Accounts/AccountDetailsChart.d.ts +0 -0
  122. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Accounts/AccountDetailsContent.d.ts +0 -0
  123. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Accounts/AccountDetailsHeader.d.ts +0 -0
  124. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Accounts/AccountDetailsTab.d.ts +0 -0
  125. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Accounts/ConnectionErrorMessage.d.ts +0 -0
  126. /package/dist/{accounts → src/accounts}/components/detailsdrawer/Transactions/TransactionsTab.d.ts +0 -0
  127. /package/dist/{accounts → src/accounts}/constants/Accounts.d.ts +0 -0
  128. /package/dist/{accounts → src/accounts}/hooks/useGetMergeableAccounts.d.ts +0 -0
  129. /package/dist/{accounts → src/accounts}/hooks/useUiStore.d.ts +0 -0
  130. /package/dist/{accounts → src/accounts}/index.d.ts +0 -0
  131. /package/dist/{accounts → src/accounts}/utils/AccountDetails.d.ts +0 -0
  132. /package/dist/{accounts → src/accounts}/utils/AccountFields.d.ts +0 -0
  133. /package/dist/{accounts → src/accounts}/utils/getConnectionMessages.d.ts +0 -0
  134. /package/dist/{analytics → src/analytics}/SurveyMiniWidget.d.ts +0 -0
  135. /package/dist/{analytics → src/analytics}/components/OpenTextField.d.ts +0 -0
  136. /package/dist/{analytics → src/analytics}/components/RatingScale.d.ts +0 -0
  137. /package/dist/{analytics → src/analytics}/index.d.ts +0 -0
  138. /package/dist/{budgets → src/budgets}/BubbleBudgetsMiniWidget.d.ts +0 -0
  139. /package/dist/{budgets → src/budgets}/BubbleBudgetsWidget.d.ts +0 -0
  140. /package/dist/{budgets → src/budgets}/components/AddBudgets.d.ts +0 -0
  141. /package/dist/{budgets → src/budgets}/components/BubbleBudgets.d.ts +0 -0
  142. /package/dist/{budgets → src/budgets}/components/BubbleChart.d.ts +0 -0
  143. /package/dist/{budgets → src/budgets}/components/BudgetDetailsDrawer.d.ts +0 -0
  144. /package/dist/{budgets → src/budgets}/components/BudgetDetailsDrawerV2.d.ts +0 -0
  145. /package/dist/{budgets → src/budgets}/components/BudgetList.d.ts +0 -0
  146. /package/dist/{budgets → src/budgets}/components/BudgetsEmptyState.d.ts +0 -0
  147. /package/dist/{budgets → src/budgets}/components/MerchantBudgetDetailsDrawer.d.ts +0 -0
  148. /package/dist/{budgets → src/budgets}/components/Overview.d.ts +0 -0
  149. /package/dist/{budgets → src/budgets}/components/ZeroState.d.ts +0 -0
  150. /package/dist/{budgets → src/budgets}/components/addbudget/Header.d.ts +0 -0
  151. /package/dist/{budgets → src/budgets}/components/addbudget/RecalculateBudgetRow.d.ts +0 -0
  152. /package/dist/{budgets → src/budgets}/components/addbudget/RecalculateBudgets.d.ts +0 -0
  153. /package/dist/{budgets → src/budgets}/components/addbudget/UnbudgetedRow.d.ts +0 -0
  154. /package/dist/{budgets → src/budgets}/components/bubblechart/Bubble.d.ts +0 -0
  155. /package/dist/{budgets → src/budgets}/components/bubblechart/Mercury.d.ts +0 -0
  156. /package/dist/{budgets → src/budgets}/components/budgetdetails/AddSubBudget.d.ts +0 -0
  157. /package/dist/{budgets → src/budgets}/components/budgetdetails/BudgetDetails.d.ts +0 -0
  158. /package/dist/{budgets → src/budgets}/components/budgetdetails/Header.d.ts +0 -0
  159. /package/dist/{budgets → src/budgets}/components/budgetdetails/SubBudgetList.d.ts +0 -0
  160. /package/dist/{budgets → src/budgets}/components/budgetlist/BudgetRow.d.ts +0 -0
  161. /package/dist/{budgets → src/budgets}/components/budgetlist/SubBudgetRow.d.ts +0 -0
  162. /package/dist/{budgets → src/budgets}/components/budgetlist/SubBudgetZeroState.d.ts +0 -0
  163. /package/dist/{budgets → src/budgets}/components/shared/BudgetAmount.d.ts +0 -0
  164. /package/dist/{budgets → src/budgets}/components/shared/BudgetDetailsTopSection.d.ts +0 -0
  165. /package/dist/{budgets → src/budgets}/index.d.ts +0 -0
  166. /package/dist/{budgets → src/budgets}/utils/BubblesSVG.d.ts +0 -0
  167. /package/dist/{cashflow → src/cashflow}/CashflowMiniWidget.d.ts +0 -0
  168. /package/dist/{cashflow → src/cashflow}/CashflowOnboarding.d.ts +0 -0
  169. /package/dist/{cashflow → src/cashflow}/CashflowWidget.d.ts +0 -0
  170. /package/dist/{cashflow → src/cashflow}/components/CashflowAmountHeading.d.ts +0 -0
  171. /package/dist/{cashflow → src/cashflow}/components/CashflowContent.d.ts +0 -0
  172. /package/dist/{cashflow → src/cashflow}/components/CashflowHeading.d.ts +0 -0
  173. /package/dist/{cashflow → src/cashflow}/components/CashflowWidgetContent.d.ts +0 -0
  174. /package/dist/{cashflow → src/cashflow}/components/DetailsExpenseHeader.d.ts +0 -0
  175. /package/dist/{cashflow → src/cashflow}/components/DetailsExpenseRow.d.ts +0 -0
  176. /package/dist/{cashflow → src/cashflow}/components/DetailsFooter.d.ts +0 -0
  177. /package/dist/{cashflow → src/cashflow}/components/DetailsTab.d.ts +0 -0
  178. /package/dist/{cashflow → src/cashflow}/components/RemainingCash.d.ts +0 -0
  179. /package/dist/{cashflow → src/cashflow}/components/SummaryTab.d.ts +0 -0
  180. /package/dist/{cashflow → src/cashflow}/components/onboarding/StepOne.d.ts +0 -0
  181. /package/dist/{cashflow → src/cashflow}/components/onboarding/StepTwo.d.ts +0 -0
  182. /package/dist/{cashflow → src/cashflow}/constants/CashflowImages.d.ts +0 -0
  183. /package/dist/{cashflow → src/cashflow}/context/hooks.d.ts +0 -0
  184. /package/dist/{cashflow → src/cashflow}/index.d.ts +0 -0
  185. /package/dist/{cashflow → src/cashflow}/util/Filters.d.ts +0 -0
  186. /package/dist/{categories → src/categories}/components/CategoryList.d.ts +0 -0
  187. /package/dist/{categories → src/categories}/components/CategoryRow.d.ts +0 -0
  188. /package/dist/{categories → src/categories}/components/CategorySelector.d.ts +0 -0
  189. /package/dist/{categories → src/categories}/components/CategorySelectorDrawer.d.ts +0 -0
  190. /package/dist/{categories → src/categories}/components/CustomCategories/AddSubcategory.d.ts +0 -0
  191. /package/dist/{categories → src/categories}/components/CustomCategories/CustomCategoryModal.d.ts +0 -0
  192. /package/dist/{categories → src/categories}/components/CustomCategories/DeleteSubcategory.d.ts +0 -0
  193. /package/dist/{categories → src/categories}/components/CustomCategories/RenameSubcategory.d.ts +0 -0
  194. /package/dist/{categories → src/categories}/components/CustomCategories/index.d.ts +0 -0
  195. /package/dist/{categories → src/categories}/components/SubcategoryList.d.ts +0 -0
  196. /package/dist/{categories → src/categories}/components/SubcategoryRow.d.ts +0 -0
  197. /package/dist/{categories → src/categories}/constants/Analytics.d.ts +0 -0
  198. /package/dist/{categories → src/categories}/constants/OnClickEvents.d.ts +0 -0
  199. /package/dist/{categories → src/categories}/context/hooks.d.ts +0 -0
  200. /package/dist/{categories → src/categories}/index.d.ts +0 -0
  201. /package/dist/{common → src/common}/components/Banner.d.ts +0 -0
  202. /package/dist/{common → src/common}/components/ConnectCard.d.ts +0 -0
  203. /package/dist/{common → src/common}/components/ConnectDrawer.d.ts +0 -0
  204. /package/dist/{common → src/common}/components/CurrencyDialog.d.ts +0 -0
  205. /package/dist/{common → src/common}/components/CurrencyInput.d.ts +0 -0
  206. /package/dist/{common → src/common}/components/CurrencyText.d.ts +0 -0
  207. /package/dist/{common → src/common}/components/DataRow.d.ts +0 -0
  208. /package/dist/{common → src/common}/components/EmptyState.d.ts +0 -0
  209. /package/dist/{common → src/common}/components/Error.d.ts +0 -0
  210. /package/dist/{common → src/common}/components/ErrorBoundary.d.ts +0 -0
  211. /package/dist/{common → src/common}/components/GlobalAccountFilter.d.ts +0 -0
  212. /package/dist/{common → src/common}/components/IconBacking.d.ts +0 -0
  213. /package/dist/{common → src/common}/components/InformationTooltip.d.ts +0 -0
  214. /package/dist/{common → src/common}/components/ListItemAction.d.ts +0 -0
  215. /package/dist/{common → src/common}/components/ListItemRow.d.ts +0 -0
  216. /package/dist/{common → src/common}/components/ListItemWrapper.d.ts +0 -0
  217. /package/dist/{common → src/common}/components/Loader.d.ts +0 -0
  218. /package/dist/{common → src/common}/components/MicroWidgetContainer.d.ts +0 -0
  219. /package/dist/{common → src/common}/components/MiniWidgetContainer.d.ts +0 -0
  220. /package/dist/{common → src/common}/components/ResponsiveButton.d.ts +0 -0
  221. /package/dist/{common → src/common}/components/SearchBox.d.ts +0 -0
  222. /package/dist/{common → src/common}/components/Select.d.ts +0 -0
  223. /package/dist/{common → src/common}/components/SelectionBox.d.ts +0 -0
  224. /package/dist/{common → src/common}/components/SkeletonLoader.d.ts +0 -0
  225. /package/dist/{common → src/common}/components/SubheaderRow.d.ts +0 -0
  226. /package/dist/{common → src/common}/components/TabContentContainer.d.ts +0 -0
  227. /package/dist/{common → src/common}/components/TinyBarChart.d.ts +0 -0
  228. /package/dist/{common → src/common}/components/WidgetContainer.d.ts +0 -0
  229. /package/dist/{common → src/common}/components/WidgetDateRangeSelector.d.ts +0 -0
  230. /package/dist/{common → src/common}/components/addaccounts/AddAccounts.d.ts +0 -0
  231. /package/dist/{common → src/common}/components/calendar/Calendar.d.ts +0 -0
  232. /package/dist/{common → src/common}/components/calendar/Day.d.ts +0 -0
  233. /package/dist/{common → src/common}/components/calendar/Header.d.ts +0 -0
  234. /package/dist/{common → src/common}/components/calendar/index.d.ts +0 -0
  235. /package/dist/{common → src/common}/components/charts/Donut.d.ts +0 -0
  236. /package/dist/{common → src/common}/components/charts/LineChart.d.ts +0 -0
  237. /package/dist/{common → src/common}/components/charts/StackedLineChart.d.ts +0 -0
  238. /package/dist/{common → src/common}/components/charts/StatusBar.d.ts +0 -0
  239. /package/dist/{common → src/common}/components/charts/index.d.ts +0 -0
  240. /package/dist/{common → src/common}/components/charts/linechart/CustomLegend.d.ts +0 -0
  241. /package/dist/{common → src/common}/components/charts/linechart/CustomLine.d.ts +0 -0
  242. /package/dist/{common → src/common}/components/charts/linechart/CustomMark.d.ts +0 -0
  243. /package/dist/{common → src/common}/components/charts/linechart/CustomTooltip.d.ts +0 -0
  244. /package/dist/{common → src/common}/components/charts/linechart/utils/markerShapes.d.ts +0 -0
  245. /package/dist/{common → src/common}/components/charts/stackedlinechart/CategoryIconLabel.d.ts +0 -0
  246. /package/dist/{common → src/common}/components/charts/stackedlinechart/CustomAreaTooltip.d.ts +0 -0
  247. /package/dist/{common → src/common}/components/charts/stackedlinechart/CustomLegend.d.ts +0 -0
  248. /package/dist/{common → src/common}/components/charts/stackedlinechart/CustomPointTooltip.d.ts +0 -0
  249. /package/dist/{common → src/common}/components/charts/stackedlinechart/utils.d.ts +0 -0
  250. /package/dist/{common → src/common}/components/daterangeselector/DateRangeSelector.d.ts +0 -0
  251. /package/dist/{common → src/common}/components/daterangeselector/index.d.ts +0 -0
  252. /package/dist/{common → src/common}/components/dialog/Dialog.d.ts +0 -0
  253. /package/dist/{common → src/common}/components/dialog/index.d.ts +0 -0
  254. /package/dist/{common → src/common}/components/donuts/MultiSegmentDonut.d.ts +0 -0
  255. /package/dist/{common → src/common}/components/donuts/SingleSegmentDonut.d.ts +0 -0
  256. /package/dist/{common → src/common}/components/donuts/index.d.ts +0 -0
  257. /package/dist/{common → src/common}/components/drawer/Drawer.d.ts +0 -0
  258. /package/dist/{common → src/common}/components/drawer/Footer.d.ts +0 -0
  259. /package/dist/{common → src/common}/components/drawer/Header.d.ts +0 -0
  260. /package/dist/{common → src/common}/components/drawer/index.d.ts +0 -0
  261. /package/dist/{common → src/common}/components/globalaccountfilter/GlobalAccountFilterList.d.ts +0 -0
  262. /package/dist/{common → src/common}/components/index.d.ts +0 -0
  263. /package/dist/{common → src/common}/components/listitems/CollapseExpandListItem.d.ts +0 -0
  264. /package/dist/{common → src/common}/components/listitems/ToggleButtonListItem.d.ts +0 -0
  265. /package/dist/{common → src/common}/components/listitems/ToggleListItem.d.ts +0 -0
  266. /package/dist/{common → src/common}/constants/Account.d.ts +0 -0
  267. /package/dist/{common → src/common}/constants/Analytics.d.ts +0 -0
  268. /package/dist/{common → src/common}/constants/Connect.d.ts +0 -0
  269. /package/dist/{common → src/common}/constants/Donut.d.ts +0 -0
  270. /package/dist/{common → src/common}/constants/FinStrong.d.ts +0 -0
  271. /package/dist/{common → src/common}/constants/ScheduledPayment.d.ts +0 -0
  272. /package/dist/{common → src/common}/constants/Sizes.d.ts +0 -0
  273. /package/dist/{common → src/common}/constants/SpendingPlan.d.ts +0 -0
  274. /package/dist/{common → src/common}/constants/index.d.ts +0 -0
  275. /package/dist/{common → src/common}/context/GlobalDataProvider.d.ts +0 -0
  276. /package/dist/{common → src/common}/context/WidgetContainerProvider.d.ts +0 -0
  277. /package/dist/{common → src/common}/context/hooks.d.ts +0 -0
  278. /package/dist/{common → src/common}/context/index.d.ts +0 -0
  279. /package/dist/{common → src/common}/hooks/index.d.ts +0 -0
  280. /package/dist/{common → src/common}/hooks/useAccountDisplayName.d.ts +0 -0
  281. /package/dist/{common → src/common}/hooks/useAriaLive.d.ts +0 -0
  282. /package/dist/{common → src/common}/hooks/useCombineEvents.d.ts +0 -0
  283. /package/dist/{common → src/common}/hooks/useDimensions.d.ts +0 -0
  284. /package/dist/{common → src/common}/hooks/useInsightsEnabled.d.ts +0 -0
  285. /package/dist/{common → src/common}/hooks/usePrevious.d.ts +0 -0
  286. /package/dist/{common → src/common}/hooks/useScreenSize.d.ts +0 -0
  287. /package/dist/{common → src/common}/hooks/useWidgetHeaderStyles.d.ts +0 -0
  288. /package/dist/{common → src/common}/hooks/useWidgetLoadTimer.d.ts +0 -0
  289. /package/dist/{common → src/common}/index.d.ts +0 -0
  290. /package/dist/{common → src/common}/utils/AccountDisplayName.d.ts +0 -0
  291. /package/dist/{common → src/common}/utils/AccountFilter.d.ts +0 -0
  292. /package/dist/{common → src/common}/utils/Analytics.d.ts +0 -0
  293. /package/dist/{common → src/common}/utils/PostMessage.d.ts +0 -0
  294. /package/dist/{common → src/common}/utils/Theme.d.ts +0 -0
  295. /package/dist/{common → src/common}/utils/index.d.ts +0 -0
  296. /package/dist/{core → src/core}/api/AccountApi.d.ts +0 -0
  297. /package/dist/{core → src/core}/api/AnalyticsApi.d.ts +0 -0
  298. /package/dist/{core → src/core}/api/AppDataApi.d.ts +0 -0
  299. /package/dist/{core → src/core}/api/BannerApi.d.ts +0 -0
  300. /package/dist/{core → src/core}/api/BeatApi.d.ts +0 -0
  301. /package/dist/{core → src/core}/api/BudgetsApi.d.ts +0 -0
  302. /package/dist/{core → src/core}/api/CategoryApi.d.ts +0 -0
  303. /package/dist/{core → src/core}/api/FinstrongApi.d.ts +0 -0
  304. /package/dist/{core → src/core}/api/GlobalCopyApi.d.ts +0 -0
  305. /package/dist/{core → src/core}/api/GoalApi.d.ts +0 -0
  306. /package/dist/{core → src/core}/api/HelpApi.d.ts +0 -0
  307. /package/dist/{core → src/core}/api/HoldingApi.d.ts +0 -0
  308. /package/dist/{core → src/core}/api/MerchantApi.d.ts +0 -0
  309. /package/dist/{core → src/core}/api/NotificationApi.d.ts +0 -0
  310. /package/dist/{core → src/core}/api/RepeatingTransactionsApi.d.ts +0 -0
  311. /package/dist/{core → src/core}/api/ScheduledPaymentsApi.d.ts +0 -0
  312. /package/dist/{core → src/core}/api/SettingsApi.d.ts +0 -0
  313. /package/dist/{core → src/core}/api/UserApi.d.ts +0 -0
  314. /package/dist/{core → src/core}/api/WidgetApi.d.ts +0 -0
  315. /package/dist/{core → src/core}/api/index.d.ts +0 -0
  316. /package/dist/{core → src/core}/constants/ApiEndpoints.d.ts +0 -0
  317. /package/dist/{core → src/core}/constants/Category.d.ts +0 -0
  318. /package/dist/{core → src/core}/constants/DateFormats.d.ts +0 -0
  319. /package/dist/{core → src/core}/constants/Debts.d.ts +0 -0
  320. /package/dist/{core → src/core}/constants/DefaultConfig.d.ts +0 -0
  321. /package/dist/{core → src/core}/constants/Help.d.ts +0 -0
  322. /package/dist/{core → src/core}/constants/Investments.d.ts +0 -0
  323. /package/dist/{core → src/core}/constants/Numbers.d.ts +0 -0
  324. /package/dist/{core → src/core}/constants/Table.d.ts +0 -0
  325. /package/dist/{core → src/core}/constants/Transaction.d.ts +0 -0
  326. /package/dist/{core → src/core}/constants/index.d.ts +0 -0
  327. /package/dist/{core → src/core}/constants/repeatingTransactions.d.ts +0 -0
  328. /package/dist/{core → src/core}/index.d.ts +0 -0
  329. /package/dist/{core → src/core}/stores/AccountStore.d.ts +0 -0
  330. /package/dist/{core → src/core}/stores/AnalyticsStore.d.ts +0 -0
  331. /package/dist/{core → src/core}/stores/AppDataStore.d.ts +0 -0
  332. /package/dist/{core → src/core}/stores/BudgetsStore.d.ts +0 -0
  333. /package/dist/{core → src/core}/stores/CashflowStore.d.ts +0 -0
  334. /package/dist/{core → src/core}/stores/CategoryStore.d.ts +0 -0
  335. /package/dist/{core → src/core}/stores/ConnectStore.d.ts +0 -0
  336. /package/dist/{core → src/core}/stores/DebtsStore.d.ts +0 -0
  337. /package/dist/{core → src/core}/stores/FinstrongStore.d.ts +0 -0
  338. /package/dist/{core → src/core}/stores/GlobalCopyStore.d.ts +0 -0
  339. /package/dist/{core → src/core}/stores/GlobalStore.d.ts +0 -0
  340. /package/dist/{core → src/core}/stores/GoalStore.d.ts +0 -0
  341. /package/dist/{core → src/core}/stores/HelpStore.d.ts +0 -0
  342. /package/dist/{core → src/core}/stores/HoldingStore.d.ts +0 -0
  343. /package/dist/{core → src/core}/stores/MerchantStore.d.ts +0 -0
  344. /package/dist/{core → src/core}/stores/NetWorthStore.d.ts +0 -0
  345. /package/dist/{core → src/core}/stores/NotificationStore.d.ts +0 -0
  346. /package/dist/{core → src/core}/stores/RecurringTransactionsStore.d.ts +0 -0
  347. /package/dist/{core → src/core}/stores/SettingsStore.d.ts +0 -0
  348. /package/dist/{core → src/core}/stores/TrendsStore.d.ts +0 -0
  349. /package/dist/{core → src/core}/stores/UserStore.d.ts +0 -0
  350. /package/dist/{core → src/core}/stores/index.d.ts +0 -0
  351. /package/dist/{core → src/core}/types/Account.d.ts +0 -0
  352. /package/dist/{core → src/core}/types/Analytics.d.ts +0 -0
  353. /package/dist/{core → src/core}/types/AppData.d.ts +0 -0
  354. /package/dist/{core → src/core}/types/Budget.d.ts +0 -0
  355. /package/dist/{core → src/core}/types/Cashflow.d.ts +0 -0
  356. /package/dist/{core → src/core}/types/Category.d.ts +0 -0
  357. /package/dist/{core → src/core}/types/Client.d.ts +0 -0
  358. /package/dist/{core → src/core}/types/Date.d.ts +0 -0
  359. /package/dist/{core → src/core}/types/Debt.d.ts +0 -0
  360. /package/dist/{core → src/core}/types/Expense.d.ts +0 -0
  361. /package/dist/{core → src/core}/types/Finstrong.d.ts +0 -0
  362. /package/dist/{core → src/core}/types/Global.d.ts +0 -0
  363. /package/dist/{core → src/core}/types/GlobalCopy.d.ts +0 -0
  364. /package/dist/{core → src/core}/types/Goal.d.ts +0 -0
  365. /package/dist/{core → src/core}/types/Handlers.d.ts +0 -0
  366. /package/dist/{core → src/core}/types/Help.d.ts +0 -0
  367. /package/dist/{core → src/core}/types/Holding.d.ts +0 -0
  368. /package/dist/{core → src/core}/types/Institution.d.ts +0 -0
  369. /package/dist/{core → src/core}/types/LocalizedContent.d.ts +0 -0
  370. /package/dist/{core → src/core}/types/Merchant.d.ts +0 -0
  371. /package/dist/{core → src/core}/types/NetWorth.d.ts +0 -0
  372. /package/dist/{core → src/core}/types/Notification.d.ts +0 -0
  373. /package/dist/{core → src/core}/types/Offer.d.ts +0 -0
  374. /package/dist/{core → src/core}/types/RepeatingTransaction.d.ts +0 -0
  375. /package/dist/{core → src/core}/types/ScheduledPayment.d.ts +0 -0
  376. /package/dist/{core → src/core}/types/ScreenSize.d.ts +0 -0
  377. /package/dist/{core → src/core}/types/Transaction.d.ts +0 -0
  378. /package/dist/{core → src/core}/types/User.d.ts +0 -0
  379. /package/dist/{core → src/core}/types/Widgets.d.ts +0 -0
  380. /package/dist/{core → src/core}/types/localization/AccountFilterCopy.d.ts +0 -0
  381. /package/dist/{core → src/core}/types/localization/AccountTypeCopy.d.ts +0 -0
  382. /package/dist/{core → src/core}/types/localization/AccountsCopy.d.ts +0 -0
  383. /package/dist/{core → src/core}/types/localization/AnalyticsCopy.d.ts +0 -0
  384. /package/dist/{core → src/core}/types/localization/BudgetsCopy.d.ts +0 -0
  385. /package/dist/{core → src/core}/types/localization/CashflowCopy.d.ts +0 -0
  386. /package/dist/{core → src/core}/types/localization/CategoryCopy.d.ts +0 -0
  387. /package/dist/{core → src/core}/types/localization/CommonCopy.d.ts +0 -0
  388. /package/dist/{core → src/core}/types/localization/ConnectCopy.d.ts +0 -0
  389. /package/dist/{core → src/core}/types/localization/CurrencyInputCopy.d.ts +0 -0
  390. /package/dist/{core → src/core}/types/localization/DateRangePickerCopy.d.ts +0 -0
  391. /package/dist/{core → src/core}/types/localization/DebtsCopy.d.ts +0 -0
  392. /package/dist/{core → src/core}/types/localization/FinstrongCopy.d.ts +0 -0
  393. /package/dist/{core → src/core}/types/localization/GoalsCopy.d.ts +0 -0
  394. /package/dist/{core → src/core}/types/localization/HelpCopy.d.ts +0 -0
  395. /package/dist/{core → src/core}/types/localization/InsightsFeedCopy.d.ts +0 -0
  396. /package/dist/{core → src/core}/types/localization/InvestmentsCopy.d.ts +0 -0
  397. /package/dist/{core → src/core}/types/localization/MicroInsightsCopy.d.ts +0 -0
  398. /package/dist/{core → src/core}/types/localization/NetWorthCopy.d.ts +0 -0
  399. /package/dist/{core → src/core}/types/localization/NotificationsCopy.d.ts +0 -0
  400. /package/dist/{core → src/core}/types/localization/RecurringCopy.d.ts +0 -0
  401. /package/dist/{core → src/core}/types/localization/SettingsCopy.d.ts +0 -0
  402. /package/dist/{core → src/core}/types/localization/SpendingCopy.d.ts +0 -0
  403. /package/dist/{core → src/core}/types/localization/TransactionsCopy.d.ts +0 -0
  404. /package/dist/{core → src/core}/types/localization/TrendsCopy.d.ts +0 -0
  405. /package/dist/{core → src/core}/types/localization/index.d.ts +0 -0
  406. /package/dist/{core → src/core}/utils/AccountUtils.d.ts +0 -0
  407. /package/dist/{core → src/core}/utils/BeatUtils.d.ts +0 -0
  408. /package/dist/{core → src/core}/utils/BudgetUtil.d.ts +0 -0
  409. /package/dist/{core → src/core}/utils/CategoryUtil.d.ts +0 -0
  410. /package/dist/{core → src/core}/utils/DateUtil.d.ts +0 -0
  411. /package/dist/{core → src/core}/utils/DebtUtils.d.ts +0 -0
  412. /package/dist/{core → src/core}/utils/Fetch.d.ts +0 -0
  413. /package/dist/{core → src/core}/utils/FinstrongUtils.d.ts +0 -0
  414. /package/dist/{core → src/core}/utils/GoalsUtil.d.ts +0 -0
  415. /package/dist/{core → src/core}/utils/HelpUtil.d.ts +0 -0
  416. /package/dist/{core → src/core}/utils/InvestmentUtil.d.ts +0 -0
  417. /package/dist/{core → src/core}/utils/Localization.d.ts +0 -0
  418. /package/dist/{core → src/core}/utils/NetWorthUtils.d.ts +0 -0
  419. /package/dist/{core → src/core}/utils/NotificationUtils.d.ts +0 -0
  420. /package/dist/{core → src/core}/utils/NumberFormatting.d.ts +0 -0
  421. /package/dist/{core → src/core}/utils/RecurringTransactionsUtil.d.ts +0 -0
  422. /package/dist/{core → src/core}/utils/SettingsUtil.d.ts +0 -0
  423. /package/dist/{core → src/core}/utils/TransactionUtils.d.ts +0 -0
  424. /package/dist/{core → src/core}/utils/TrendsUtil.d.ts +0 -0
  425. /package/dist/{core → src/core}/utils/UserUtils.d.ts +0 -0
  426. /package/dist/{core → src/core}/utils/index.d.ts +0 -0
  427. /package/dist/{dashboard → src/dashboard}/Dashboard.d.ts +0 -0
  428. /package/dist/{dashboard → src/dashboard}/Greeting.d.ts +0 -0
  429. /package/dist/{dashboard → src/dashboard}/constants/Dashboard.d.ts +0 -0
  430. /package/dist/{dashboard → src/dashboard}/index.d.ts +0 -0
  431. /package/dist/{dashboard → src/dashboard}/types/DashboardTypes.d.ts +0 -0
  432. /package/dist/{debts → src/debts}/DebtsWidget.d.ts +0 -0
  433. /package/dist/{debts → src/debts}/components/DebtDrawer.d.ts +0 -0
  434. /package/dist/{debts → src/debts}/components/DebtsChart.d.ts +0 -0
  435. /package/dist/{debts → src/debts}/components/DebtsTable.d.ts +0 -0
  436. /package/dist/{debts → src/debts}/components/PaydownDrawer.d.ts +0 -0
  437. /package/dist/{debts → src/debts}/components/SnowballCard.d.ts +0 -0
  438. /package/dist/{debts → src/debts}/components/SnowballDrawer.d.ts +0 -0
  439. /package/dist/{debts → src/debts}/components/actions/DebtsPriorityAction.d.ts +0 -0
  440. /package/dist/{debts → src/debts}/components/actions/ExtraPaymentAction.d.ts +0 -0
  441. /package/dist/{debts → src/debts}/components/actions/InterestRateAction.d.ts +0 -0
  442. /package/dist/{debts → src/debts}/components/actions/MonthlyPaymentAction.d.ts +0 -0
  443. /package/dist/{debts → src/debts}/components/actions/OriginalBalanceAction.d.ts +0 -0
  444. /package/dist/{debts → src/debts}/components/debtsdrawer/DebtDetailsChart.d.ts +0 -0
  445. /package/dist/{debts → src/debts}/components/debtsdrawer/DebtDetailsContent.d.ts +0 -0
  446. /package/dist/{debts → src/debts}/components/debtsdrawer/DebtDetailsTab.d.ts +0 -0
  447. /package/dist/{debts → src/debts}/components/debtsdrawer/DebtScheduleTab.d.ts +0 -0
  448. /package/dist/{debts → src/debts}/components/debtsdrawer/DebtStatusCard.d.ts +0 -0
  449. /package/dist/{debts → src/debts}/components/debtspaydown/PaydownButton.d.ts +0 -0
  450. /package/dist/{debts → src/debts}/components/debtspaydown/PaydownContent.d.ts +0 -0
  451. /package/dist/{debts → src/debts}/components/debtspriority/DebtsPriorityButton.d.ts +0 -0
  452. /package/dist/{debts → src/debts}/components/debtspriority/DebtsPrioriyPopover.d.ts +0 -0
  453. /package/dist/{debts → src/debts}/components/debtstable/AccountCell.d.ts +0 -0
  454. /package/dist/{debts → src/debts}/components/debtstable/PriorityCell.d.ts +0 -0
  455. /package/dist/{debts → src/debts}/hooks/useDebtsUiStore.d.ts +0 -0
  456. /package/dist/{debts → src/debts}/index.d.ts +0 -0
  457. /package/dist/{debts → src/debts}/utils/DebtsChart.d.ts +0 -0
  458. /package/dist/{debts → src/debts}/utils/DebtsTable.d.ts +0 -0
  459. /package/dist/{debts → src/debts}/utils/SnowballCard.d.ts +0 -0
  460. /package/dist/{finstrong → src/finstrong}/FinancialStrengthCard.d.ts +0 -0
  461. /package/dist/{finstrong → src/finstrong}/FinstrongWidget.d.ts +0 -0
  462. /package/dist/{finstrong → src/finstrong}/components/ConnectMoreAccountsCard.d.ts +0 -0
  463. /package/dist/{finstrong → src/finstrong}/components/CreditScore/CreditScoreContent.d.ts +0 -0
  464. /package/dist/{finstrong → src/finstrong}/components/CreditScore/CreditScoreHeader.d.ts +0 -0
  465. /package/dist/{finstrong → src/finstrong}/components/CreditScoreGraph.d.ts +0 -0
  466. /package/dist/{finstrong → src/finstrong}/components/FinancialStrengthGraph.d.ts +0 -0
  467. /package/dist/{finstrong → src/finstrong}/components/HaveManageableDebt/DebtPaymentTabContent.d.ts +0 -0
  468. /package/dist/{finstrong → src/finstrong}/components/HaveManageableDebt/HaveManageableDebtComponent.d.ts +0 -0
  469. /package/dist/{finstrong → src/finstrong}/components/HaveManageableDebt/HaveManageableDebtProgressBar.d.ts +0 -0
  470. /package/dist/{finstrong → src/finstrong}/components/HaveManageableDebt/IncomeTabContent.d.ts +0 -0
  471. /package/dist/{finstrong → src/finstrong}/components/HealthChart.d.ts +0 -0
  472. /package/dist/{finstrong → src/finstrong}/components/KeyIndicatorsBorrowTab.d.ts +0 -0
  473. /package/dist/{finstrong → src/finstrong}/components/KeyIndicatorsDrawer.d.ts +0 -0
  474. /package/dist/{finstrong → src/finstrong}/components/KeyIndicatorsSaveTab.d.ts +0 -0
  475. /package/dist/{finstrong → src/finstrong}/components/KeyIndicatorsSpendTab.d.ts +0 -0
  476. /package/dist/{finstrong → src/finstrong}/components/KeyIndicatorsTabItem.d.ts +0 -0
  477. /package/dist/{finstrong → src/finstrong}/components/KeyIndicatorsTabItemDrawer.d.ts +0 -0
  478. /package/dist/{finstrong → src/finstrong}/components/KeyIndicatorsTabsWidget.d.ts +0 -0
  479. /package/dist/{finstrong → src/finstrong}/components/MaintainingEmergencySavings/EstimatedContributionCalculator.d.ts +0 -0
  480. /package/dist/{finstrong → src/finstrong}/components/MaintainingEmergencySavings/MaintainingEmergencySavingsContent.d.ts +0 -0
  481. /package/dist/{finstrong → src/finstrong}/components/MaintainingEmergencySavings/MaintainingEmergencySavingsSticky.d.ts +0 -0
  482. /package/dist/{finstrong → src/finstrong}/components/ManageCreditScore.d.ts +0 -0
  483. /package/dist/{finstrong → src/finstrong}/components/ManageDOB.d.ts +0 -0
  484. /package/dist/{finstrong → src/finstrong}/components/MissingData.d.ts +0 -0
  485. /package/dist/{finstrong → src/finstrong}/components/ProfileDrawer.d.ts +0 -0
  486. /package/dist/{finstrong → src/finstrong}/components/ProfileList.d.ts +0 -0
  487. /package/dist/{finstrong → src/finstrong}/components/ProfileProgressBar.d.ts +0 -0
  488. /package/dist/{finstrong → src/finstrong}/components/ProgressBar.d.ts +0 -0
  489. /package/dist/{finstrong → src/finstrong}/components/SaveEnoughToLiveOn/AvailableTabContent.d.ts +0 -0
  490. /package/dist/{finstrong → src/finstrong}/components/SaveEnoughToLiveOn/SaveEnoughToLiveOnDrawerContent.d.ts +0 -0
  491. /package/dist/{finstrong → src/finstrong}/components/SaveEnoughToLiveOn/SaveEnoughToLiveOnProgressBar.d.ts +0 -0
  492. /package/dist/{finstrong → src/finstrong}/components/SaveEnoughToLiveOn/SpendingTabContent.d.ts +0 -0
  493. /package/dist/{finstrong → src/finstrong}/components/ScoreHistoryDrawer.d.ts +0 -0
  494. /package/dist/{finstrong → src/finstrong}/components/ScoreRubricDrawer.d.ts +0 -0
  495. /package/dist/{finstrong → src/finstrong}/components/SpendLessThanYouMake/SpendLessThanYouMakeComponent.d.ts +0 -0
  496. /package/dist/{finstrong → src/finstrong}/components/SpendLessThanYouMake/SpendLessThanYouMakeProgressBar.d.ts +0 -0
  497. /package/dist/{finstrong → src/finstrong}/components/StatusChip.d.ts +0 -0
  498. /package/dist/{finstrong → src/finstrong}/components/onboarding/Onboarding.d.ts +0 -0
  499. /package/dist/{finstrong → src/finstrong}/components/onboarding/OnboardingAddMonthlyIncome.d.ts +0 -0
  500. /package/dist/{finstrong → src/finstrong}/components/onboarding/OnboardingBirthday.d.ts +0 -0
  501. /package/dist/{finstrong → src/finstrong}/components/onboarding/OnboardingCreditScore.d.ts +0 -0
  502. /package/dist/{finstrong → src/finstrong}/components/onboarding/OnboardingStepsDrawer.d.ts +0 -0
  503. /package/dist/{finstrong → src/finstrong}/components/onboarding/OnboardingStepsHeader.d.ts +0 -0
  504. /package/dist/{finstrong → src/finstrong}/components/paybillsontime/PayBillsOnTimeDrawerComponent.d.ts +0 -0
  505. /package/dist/{finstrong → src/finstrong}/components/paybillsontime/PayBillsOnTimeStickyComponent.d.ts +0 -0
  506. /package/dist/{finstrong → src/finstrong}/components/shared/Accounts.d.ts +0 -0
  507. /package/dist/{finstrong → src/finstrong}/components/shared/CustomDoubleBarPlot.d.ts +0 -0
  508. /package/dist/{finstrong → src/finstrong}/components/shared/CustomPieArc.d.ts +0 -0
  509. /package/dist/{finstrong → src/finstrong}/components/shared/DialScoreCard.d.ts +0 -0
  510. /package/dist/{finstrong → src/finstrong}/components/shared/DoubleBarChart.d.ts +0 -0
  511. /package/dist/{finstrong → src/finstrong}/components/shared/LineGraph.d.ts +0 -0
  512. /package/dist/{finstrong → src/finstrong}/components/shared/ScoreHistoryTimeline.d.ts +0 -0
  513. /package/dist/{finstrong → src/finstrong}/components/shared/ScoreHistoryTimelineItem.d.ts +0 -0
  514. /package/dist/{finstrong → src/finstrong}/components/shared/TotalCard.d.ts +0 -0
  515. /package/dist/{finstrong → src/finstrong}/components/shared/Transactions.d.ts +0 -0
  516. /package/dist/{finstrong → src/finstrong}/constants/index.d.ts +0 -0
  517. /package/dist/{finstrong → src/finstrong}/index.d.ts +0 -0
  518. /package/dist/{goals → src/goals}/GoalsMicroWidget.d.ts +0 -0
  519. /package/dist/{goals → src/goals}/GoalsWidget.d.ts +0 -0
  520. /package/dist/{goals → src/goals}/components/AccountSelectionDrawer.d.ts +0 -0
  521. /package/dist/{goals → src/goals}/components/AddGoal.d.ts +0 -0
  522. /package/dist/{goals → src/goals}/components/GoalDetails.d.ts +0 -0
  523. /package/dist/{goals → src/goals}/components/GoalDetailsDrawer.d.ts +0 -0
  524. /package/dist/{goals → src/goals}/components/GoalList.d.ts +0 -0
  525. /package/dist/{goals → src/goals}/components/GoalStatusCard.d.ts +0 -0
  526. /package/dist/{goals → src/goals}/components/ManageGoals.d.ts +0 -0
  527. /package/dist/{goals → src/goals}/components/TabTitle.d.ts +0 -0
  528. /package/dist/{goals → src/goals}/components/actions/AccountAction.d.ts +0 -0
  529. /package/dist/{goals → src/goals}/components/actions/AddRetirementAccountAction.d.ts +0 -0
  530. /package/dist/{goals → src/goals}/components/actions/AmountToSaveAction.d.ts +0 -0
  531. /package/dist/{goals → src/goals}/components/actions/BirthdayAction.d.ts +0 -0
  532. /package/dist/{goals → src/goals}/components/actions/ChangeAccountAction.d.ts +0 -0
  533. /package/dist/{goals → src/goals}/components/actions/ContributionAction.d.ts +0 -0
  534. /package/dist/{goals → src/goals}/components/actions/GoalNameAction.d.ts +0 -0
  535. /package/dist/{goals → src/goals}/components/actions/InterestRateAction.d.ts +0 -0
  536. /package/dist/{goals → src/goals}/components/actions/MonthlyPaymentAction.d.ts +0 -0
  537. /package/dist/{goals → src/goals}/components/actions/OriginalBalanceAction.d.ts +0 -0
  538. /package/dist/{goals → src/goals}/components/actions/RetirementAgeAction.d.ts +0 -0
  539. /package/dist/{goals → src/goals}/components/addgoal/AddGoalListItem.d.ts +0 -0
  540. /package/dist/{goals → src/goals}/components/managegoals/CompleteListItem.d.ts +0 -0
  541. /package/dist/{goals → src/goals}/components/managegoals/OngoingListItem.d.ts +0 -0
  542. /package/dist/{goals → src/goals}/components/managegoals/ReorderGoals.d.ts +0 -0
  543. /package/dist/{goals → src/goals}/components/micro/GoalMicroStatusCard.d.ts +0 -0
  544. /package/dist/{goals → src/goals}/components/micro/GoalsMicroEmptyState.d.ts +0 -0
  545. /package/dist/{goals → src/goals}/index.d.ts +0 -0
  546. /package/dist/{help → src/help}/HelpWidget.d.ts +0 -0
  547. /package/dist/{help → src/help}/components/Help.d.ts +0 -0
  548. /package/dist/{help → src/help}/components/HelpContent.d.ts +0 -0
  549. /package/dist/{help → src/help}/components/HelpList.d.ts +0 -0
  550. /package/dist/{help → src/help}/components/content/BottomImageContent.d.ts +0 -0
  551. /package/dist/{help → src/help}/components/content/ContentItem.d.ts +0 -0
  552. /package/dist/{help → src/help}/components/content/Header.d.ts +0 -0
  553. /package/dist/{help → src/help}/components/content/LeftImageContent.d.ts +0 -0
  554. /package/dist/{help → src/help}/components/content/NoImageContent.d.ts +0 -0
  555. /package/dist/{help → src/help}/components/content/RightImageContent.d.ts +0 -0
  556. /package/dist/{help → src/help}/components/content/TopImageContent.d.ts +0 -0
  557. /package/dist/{help → src/help}/components/content/index.d.ts +0 -0
  558. /package/dist/{help → src/help}/components/content/section/Accounts.d.ts +0 -0
  559. /package/dist/{help → src/help}/components/content/section/Budgets.d.ts +0 -0
  560. /package/dist/{help → src/help}/components/content/section/CashFlow.d.ts +0 -0
  561. /package/dist/{help → src/help}/components/content/section/Debts.d.ts +0 -0
  562. /package/dist/{help → src/help}/components/content/section/General.d.ts +0 -0
  563. /package/dist/{help → src/help}/components/content/section/Goals.d.ts +0 -0
  564. /package/dist/{help → src/help}/components/content/section/Insights.d.ts +0 -0
  565. /package/dist/{help → src/help}/components/content/section/Investments.d.ts +0 -0
  566. /package/dist/{help → src/help}/components/content/section/Mobile.d.ts +0 -0
  567. /package/dist/{help → src/help}/components/content/section/NetWorth.d.ts +0 -0
  568. /package/dist/{help → src/help}/components/content/section/Notifications.d.ts +0 -0
  569. /package/dist/{help → src/help}/components/content/section/RecurringTransactions.d.ts +0 -0
  570. /package/dist/{help → src/help}/components/content/section/Spending.d.ts +0 -0
  571. /package/dist/{help → src/help}/components/content/section/Transactions.d.ts +0 -0
  572. /package/dist/{help → src/help}/components/content/section/Trends.d.ts +0 -0
  573. /package/dist/{help → src/help}/components/content/section/index.d.ts +0 -0
  574. /package/dist/{help → src/help}/components/requestsupport/ContactSupport.d.ts +0 -0
  575. /package/dist/{help → src/help}/components/requestsupport/HelpByCategoryList.d.ts +0 -0
  576. /package/dist/{help → src/help}/components/requestsupport/MissingInstitution.d.ts +0 -0
  577. /package/dist/{help → src/help}/components/requestsupport/PopularTopicsDrawer.d.ts +0 -0
  578. /package/dist/{help → src/help}/components/requestsupport/PopularTopicsList.d.ts +0 -0
  579. /package/dist/{help → src/help}/components/requestsupport/PopularTopicsRow.d.ts +0 -0
  580. /package/dist/{help → src/help}/components/requestsupport/RequestSupport.d.ts +0 -0
  581. /package/dist/{help → src/help}/components/requestsupport/RequestSupportFooter.d.ts +0 -0
  582. /package/dist/{help → src/help}/components/requestsupport/RequestSupportHeader.d.ts +0 -0
  583. /package/dist/{help → src/help}/components/requestsupport/RequestSupportInstitution.d.ts +0 -0
  584. /package/dist/{help → src/help}/components/requestsupport/SupportSuccessMessage.d.ts +0 -0
  585. /package/dist/{help → src/help}/components/requestsupport/index.d.ts +0 -0
  586. /package/dist/{help → src/help}/constants/HelpImages.d.ts +0 -0
  587. /package/dist/{help → src/help}/index.d.ts +0 -0
  588. /package/dist/{help → src/help}/utils/getInstitutionsBasedOnGuid.d.ts +0 -0
  589. /package/dist/{help → src/help}/utils/index.d.ts +0 -0
  590. /package/dist/{insights → src/insights}/components/feed/Header.d.ts +0 -0
  591. /package/dist/{insights → src/insights}/components/index.d.ts +0 -0
  592. /package/dist/{insights → src/insights}/components/insights/AccountDiscoverability/AccountDiscoverability.d.ts +0 -0
  593. /package/dist/{insights → src/insights}/components/insights/AccountDiscoverability/index.d.ts +0 -0
  594. /package/dist/{insights → src/insights}/components/insights/AccountDiscoverability/types/AccountDiscoverability.d.ts +0 -0
  595. /package/dist/{insights → src/insights}/components/insights/AmericanUpcomingTaxDeadlineAlert/AmericanUpcomingTaxDeadlineAlert.d.ts +0 -0
  596. /package/dist/{insights → src/insights}/components/insights/AmericanUpcomingTaxDeadlineAlert/index.d.ts +0 -0
  597. /package/dist/{insights → src/insights}/components/insights/AmericanUpcomingTaxDeadlineAlert/types/AmericanUpcomingTaxDeadlineProps.d.ts +0 -0
  598. /package/dist/{insights → src/insights}/components/insights/BillAmountNotStandard/BillAmountNotStandard.d.ts +0 -0
  599. /package/dist/{insights → src/insights}/components/insights/BillAmountNotStandard/BillAmountNotStandardMUI.d.ts +0 -0
  600. /package/dist/{insights → src/insights}/components/insights/BillAmountNotStandard/index.d.ts +0 -0
  601. /package/dist/{insights → src/insights}/components/insights/BillAmountNotStandard/types/BillAmountNotStandard.d.ts +0 -0
  602. /package/dist/{insights → src/insights}/components/insights/CashBack/CashBack.d.ts +0 -0
  603. /package/dist/{insights → src/insights}/components/insights/CashBack/index.d.ts +0 -0
  604. /package/dist/{insights → src/insights}/components/insights/CashBack/types/CashBack.d.ts +0 -0
  605. /package/dist/{insights → src/insights}/components/insights/CategoryBudget/CategoryBudget.d.ts +0 -0
  606. /package/dist/{insights → src/insights}/components/insights/CategoryBudget/index.d.ts +0 -0
  607. /package/dist/{insights → src/insights}/components/insights/CategoryBudget/types/CategoryBudget.d.ts +0 -0
  608. /package/dist/{insights → src/insights}/components/insights/CategorySpendingV2/CategorySpendingV2.d.ts +0 -0
  609. /package/dist/{insights → src/insights}/components/insights/CategorySpendingV2/CategorySpendingV2MUI.d.ts +0 -0
  610. /package/dist/{insights → src/insights}/components/insights/CategorySpendingV2/index.d.ts +0 -0
  611. /package/dist/{insights → src/insights}/components/insights/CategorySpendingV2/types/CategorySpendingV2.d.ts +0 -0
  612. /package/dist/{insights → src/insights}/components/insights/CelebrateCreditCardPayoff/CelebrateCreditCardPayoff.d.ts +0 -0
  613. /package/dist/{insights → src/insights}/components/insights/CelebrateCreditCardPayoff/index.d.ts +0 -0
  614. /package/dist/{insights → src/insights}/components/insights/CelebrateCreditCardPayoff/types/CelebrateCreditCardPayoffProps.d.ts +0 -0
  615. /package/dist/{insights → src/insights}/components/insights/CustomTransaction/CustomTransaction.d.ts +0 -0
  616. /package/dist/{insights → src/insights}/components/insights/CustomTransaction/index.d.ts +0 -0
  617. /package/dist/{insights → src/insights}/components/insights/DiscoveredAccounts/DiscoveredAccountsBody.d.ts +0 -0
  618. /package/dist/{insights → src/insights}/components/insights/DiscoveredAccounts/DiscoveredAccountsLearnMoreDrawerContent.d.ts +0 -0
  619. /package/dist/{insights → src/insights}/components/insights/DiscoveredAccounts/DiscoveredAccountsMiniInsight.d.ts +0 -0
  620. /package/dist/{insights → src/insights}/components/insights/DiscoveredAccounts/index.d.ts +0 -0
  621. /package/dist/{insights → src/insights}/components/insights/FederalBankHoliday/FederalBankHoliday.d.ts +0 -0
  622. /package/dist/{insights → src/insights}/components/insights/FederalBankHoliday/FederalBankHolidayMUI.d.ts +0 -0
  623. /package/dist/{insights → src/insights}/components/insights/FederalBankHoliday/index.d.ts +0 -0
  624. /package/dist/{insights → src/insights}/components/insights/FederalBankHoliday/types/FederalBankHoliday.d.ts +0 -0
  625. /package/dist/{insights → src/insights}/components/insights/MarketingHub/Offer.d.ts +0 -0
  626. /package/dist/{insights → src/insights}/components/insights/MarketingHub/Types.d.ts +0 -0
  627. /package/dist/{insights → src/insights}/components/insights/MarketingHub/index.d.ts +0 -0
  628. /package/dist/{insights → src/insights}/components/insights/MonthlyDebtToIncomeComparisonV2/MonthlyDebtToIncomeComparisonV2.d.ts +0 -0
  629. /package/dist/{insights → src/insights}/components/insights/MonthlyDebtToIncomeComparisonV2/index.d.ts +0 -0
  630. /package/dist/{insights → src/insights}/components/insights/MonthlyDebtToIncomeComparisonV2/types/index.d.ts +0 -0
  631. /package/dist/{insights → src/insights}/components/insights/MonthlyEmergencyFundReview/LastMonthsContributionSection.d.ts +0 -0
  632. /package/dist/{insights → src/insights}/components/insights/MonthlyEmergencyFundReview/MonthlyEmergencyFundReviewBody.d.ts +0 -0
  633. /package/dist/{insights → src/insights}/components/insights/MonthlyEmergencyFundReview/ProjectedCompletionSection.d.ts +0 -0
  634. /package/dist/{insights → src/insights}/components/insights/MonthlyEmergencyFundReview/TotalSection.d.ts +0 -0
  635. /package/dist/{insights → src/insights}/components/insights/MonthlyEmergencyFundReview/index.d.ts +0 -0
  636. /package/dist/{insights → src/insights}/components/insights/MonthlySavingsToIncomeComparison/MonthlySavingsToIncomeComparison.d.ts +0 -0
  637. /package/dist/{insights → src/insights}/components/insights/MonthlySavingsToIncomeComparison/index.d.ts +0 -0
  638. /package/dist/{insights → src/insights}/components/insights/MonthlySavingsToIncomeComparison/types/index.d.ts +0 -0
  639. /package/dist/{insights → src/insights}/components/insights/MonthlySpendToIncomeComparisonV2/MonthlySpendToIncomeComparisonV2.d.ts +0 -0
  640. /package/dist/{insights → src/insights}/components/insights/MonthlySpendToIncomeComparisonV2/index.d.ts +0 -0
  641. /package/dist/{insights → src/insights}/components/insights/MonthlySpendToIncomeComparisonV2/types/index.d.ts +0 -0
  642. /package/dist/{insights → src/insights}/components/insights/MonthlySpendingComparisonV2/MonthlySpendingComparisonV2.d.ts +0 -0
  643. /package/dist/{insights → src/insights}/components/insights/MonthlySpendingComparisonV2/index.d.ts +0 -0
  644. /package/dist/{insights → src/insights}/components/insights/MonthlySpendingComparisonV2/types/MonthlySpendComparisonV2.d.ts +0 -0
  645. /package/dist/{insights → src/insights}/components/insights/P2pCategorization/P2pCategorization.d.ts +0 -0
  646. /package/dist/{insights/components/insights/WeeklyNoSpendDays/_tests_/WeeklyNoSpendDays.test.d.ts → src/insights/components/insights/P2pCategorization/_tests_/P2pCategorizationMultipleTransaction.test.d.ts} +0 -0
  647. /package/dist/{insights → src/insights}/components/insights/P2pCategorization/index.d.ts +0 -0
  648. /package/dist/{insights → src/insights}/components/insights/P2pCategorization/shared/P2pCategorizationMultipleTransactions.d.ts +0 -0
  649. /package/dist/{insights → src/insights}/components/insights/P2pCategorization/shared/P2pCategorizationSingleTransaction.d.ts +0 -0
  650. /package/dist/{insights → src/insights}/components/insights/P2pCategorization/types/P2pCategorization.d.ts +0 -0
  651. /package/dist/{insights → src/insights}/components/insights/SavingsAccountBalancesSummary/SavingsAccountBalancesSummary.d.ts +0 -0
  652. /package/dist/{insights → src/insights}/components/insights/SavingsAccountBalancesSummary/index.d.ts +0 -0
  653. /package/dist/{insights → src/insights}/components/insights/SavingsAccountBalancesSummary/types/SavingsAccountBalancesSummary.d.ts +0 -0
  654. /package/dist/{insights → src/insights}/components/insights/SetUpDirectDeposit/SetUpDirectDepositBody.d.ts +0 -0
  655. /package/dist/{insights → src/insights}/components/insights/SetUpDirectDeposit/index.d.ts +0 -0
  656. /package/dist/{insights → src/insights}/components/insights/SharedDeposit/SharedDeposit.d.ts +0 -0
  657. /package/dist/{insights → src/insights}/components/insights/SharedDeposit/index.d.ts +0 -0
  658. /package/dist/{insights → src/insights}/components/insights/SharedDeposit/types/index.d.ts +0 -0
  659. /package/dist/{insights → src/insights}/components/insights/SwitchDirectDeposit/AccountBox.d.ts +0 -0
  660. /package/dist/{insights → src/insights}/components/insights/SwitchDirectDeposit/SwitchDirectDepositBody.d.ts +0 -0
  661. /package/dist/{insights → src/insights}/components/insights/SwitchDirectDeposit/SwitchDirectDepositMainContainer.d.ts +0 -0
  662. /package/dist/{insights → src/insights}/components/insights/SwitchDirectDeposit/index.d.ts +0 -0
  663. /package/dist/{insights → src/insights}/components/insights/UnifiedDeposit/UnifiedDeposit.d.ts +0 -0
  664. /package/dist/{insights → src/insights}/components/insights/UnifiedDeposit/UnifiedDepositBody.d.ts +0 -0
  665. /package/dist/{insights → src/insights}/components/insights/UnifiedDeposit/index.d.ts +0 -0
  666. /package/dist/{insights → src/insights}/components/insights/UserFeedback/StyledToggleButton.d.ts +0 -0
  667. /package/dist/{insights → src/insights}/components/insights/UserFeedback/Types.d.ts +0 -0
  668. /package/dist/{insights → src/insights}/components/insights/UserFeedback/UserFeedback.d.ts +0 -0
  669. /package/dist/{insights → src/insights}/components/insights/UserFeedback/index.d.ts +0 -0
  670. /package/dist/{insights → src/insights}/components/insights/WeeklyNoSpendDays/NoSpendIcons.d.ts +0 -0
  671. /package/dist/{insights → src/insights}/components/insights/WeeklyNoSpendDays/index.d.ts +0 -0
  672. /package/dist/{insights → src/insights}/components/insights/index.d.ts +0 -0
  673. /package/dist/{insights → src/insights}/components/shared/AccountBalanceCard.d.ts +0 -0
  674. /package/dist/{insights → src/insights}/components/shared/BottomSheet.d.ts +0 -0
  675. /package/dist/{insights → src/insights}/components/shared/CarouselControls.d.ts +0 -0
  676. /package/dist/{insights → src/insights}/components/shared/ChartDrawerTemplate/ChartDrawerTemplate.d.ts +0 -0
  677. /package/dist/{insights → src/insights}/components/shared/ChartDrawerTemplate/TipSection.d.ts +0 -0
  678. /package/dist/{insights → src/insights}/components/shared/ChartTransactionWithDrillDown.d.ts +0 -0
  679. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/BarChart.d.ts +0 -0
  680. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/BarChartV2.d.ts +0 -0
  681. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/ChartLegend.d.ts +0 -0
  682. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/ChartLegendV2.d.ts +0 -0
  683. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/CustomBarPlot.d.ts +0 -0
  684. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/CustomBarPlotV2.d.ts +0 -0
  685. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/CustomDoubleBarPlot.d.ts +0 -0
  686. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/CustomDoubleBarPlotMXUI.d.ts +0 -0
  687. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/DoubleBarChart.d.ts +0 -0
  688. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/DoubleBarChartLegend.d.ts +0 -0
  689. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/DoubleBarChartLegendMXUI.d.ts +0 -0
  690. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/DoubleBarChartMXUI.d.ts +0 -0
  691. /package/dist/{insights → src/insights}/components/shared/Charts/BarChart/index.d.ts +0 -0
  692. /package/dist/{insights → src/insights}/components/shared/Charts/index.d.ts +0 -0
  693. /package/dist/{insights → src/insights}/components/shared/Confetti.d.ts +0 -0
  694. /package/dist/{insights → src/insights}/components/shared/ConnectionCard.d.ts +0 -0
  695. /package/dist/{insights → src/insights}/components/shared/ConnectionDetailDrillDown.d.ts +0 -0
  696. /package/dist/{insights → src/insights}/components/shared/Coupon.d.ts +0 -0
  697. /package/dist/{insights → src/insights}/components/shared/DeepLinks/DeepLinkDialog.d.ts +0 -0
  698. /package/dist/{insights → src/insights}/components/shared/DeepLinks/DirectDeposit/Circle.d.ts +0 -0
  699. /package/dist/{insights → src/insights}/components/shared/DeepLinks/DirectDeposit/DirectDepositDeepLink.d.ts +0 -0
  700. /package/dist/{insights → src/insights}/components/shared/DeepLinks/DirectDeposit/Dot.d.ts +0 -0
  701. /package/dist/{insights → src/insights}/components/shared/DeepLinks/DirectDeposit/Oval.d.ts +0 -0
  702. /package/dist/{insights → src/insights}/components/shared/DirectDeposit/DirectDeposit.d.ts +0 -0
  703. /package/dist/{insights → src/insights}/components/shared/DirectDeposit/DirectDepositSubHeader.d.ts +0 -0
  704. /package/dist/{insights → src/insights}/components/shared/DirectDeposit/FullFeedBodyHeader.d.ts +0 -0
  705. /package/dist/{insights → src/insights}/components/shared/DirectDeposit/LeftBox.d.ts +0 -0
  706. /package/dist/{insights → src/insights}/components/shared/DirectDeposit/MiniBodyHeader.d.ts +0 -0
  707. /package/dist/{insights → src/insights}/components/shared/DirectDeposit/RightBox.d.ts +0 -0
  708. /package/dist/{insights → src/insights}/components/shared/DiscoveredAccountsConnect.d.ts +0 -0
  709. /package/dist/{insights → src/insights}/components/shared/DrillDownCalculation/BalanceStepper.d.ts +0 -0
  710. /package/dist/{insights → src/insights}/components/shared/DrillDownCalculation/DrillDownCalculation.d.ts +0 -0
  711. /package/dist/{insights → src/insights}/components/shared/ErrorCard/ErrorCard.d.ts +0 -0
  712. /package/dist/{insights → src/insights}/components/shared/GenericFeedback/FeedbackButtons.d.ts +0 -0
  713. /package/dist/{insights → src/insights}/components/shared/GenericFeedback/FeedbackDescription.d.ts +0 -0
  714. /package/dist/{insights → src/insights}/components/shared/GenericFeedback/FeedbackHeader.d.ts +0 -0
  715. /package/dist/{insights → src/insights}/components/shared/GenericFeedback/FeedbackOptions.d.ts +0 -0
  716. /package/dist/{insights → src/insights}/components/shared/GenericFeedback/FeedbackText.d.ts +0 -0
  717. /package/dist/{insights → src/insights}/components/shared/GoalProgress.d.ts +0 -0
  718. /package/dist/{insights → src/insights}/components/shared/GradientBox.d.ts +0 -0
  719. /package/dist/{insights → src/insights}/components/shared/InsightsCard/BeatCard.d.ts +0 -0
  720. /package/dist/{insights → src/insights}/components/shared/InsightsCard/BeatCardMUI.d.ts +0 -0
  721. /package/dist/{insights → src/insights}/components/shared/InsightsCard/CardButtonSection.d.ts +0 -0
  722. /package/dist/{insights → src/insights}/components/shared/InsightsCard/CardError.d.ts +0 -0
  723. /package/dist/{insights → src/insights}/components/shared/InsightsCard/CardFooter.d.ts +0 -0
  724. /package/dist/{insights → src/insights}/components/shared/InsightsCard/CardHeader.d.ts +0 -0
  725. /package/dist/{insights → src/insights}/components/shared/InsightsCard/CardHeaderMUI.d.ts +0 -0
  726. /package/dist/{insights → src/insights}/components/shared/InsightsCard/CardLoading.d.ts +0 -0
  727. /package/dist/{insights → src/insights}/components/shared/InsightsCard/ClientConfigurableCta.d.ts +0 -0
  728. /package/dist/{insights → src/insights}/components/shared/InsightsCard/ContentAndDescription.d.ts +0 -0
  729. /package/dist/{insights → src/insights}/components/shared/InsightsCard/ContentAndDescriptionMUI.d.ts +0 -0
  730. /package/dist/{insights → src/insights}/components/shared/InsightsCard/Description.d.ts +0 -0
  731. /package/dist/{insights → src/insights}/components/shared/InsightsCard/DescriptionMUI.d.ts +0 -0
  732. /package/dist/{insights → src/insights}/components/shared/InsightsCard/EmbeddedCard.d.ts +0 -0
  733. /package/dist/{insights → src/insights}/components/shared/InsightsCard/FeedbackCard.d.ts +0 -0
  734. /package/dist/{insights → src/insights}/components/shared/InsightsCard/InsightButton.d.ts +0 -0
  735. /package/dist/{insights → src/insights}/components/shared/InsightsCard/MiniDescription.d.ts +0 -0
  736. /package/dist/{insights → src/insights}/components/shared/InsightsCard/MiniDescriptionMUI.d.ts +0 -0
  737. /package/dist/{insights → src/insights}/components/shared/MenuAction.d.ts +0 -0
  738. /package/dist/{insights → src/insights}/components/shared/MiniInsightCard.d.ts +0 -0
  739. /package/dist/{insights → src/insights}/components/shared/P2P/P2PMultipleCategorization.d.ts +0 -0
  740. /package/dist/{insights → src/insights}/components/shared/P2PCategorizationSingleAccount/P2PCategorizationSingleAccount.d.ts +0 -0
  741. /package/dist/{insights → src/insights}/components/shared/ProgressBar.d.ts +0 -0
  742. /package/dist/{insights → src/insights}/components/shared/SaveAnExtra100/SaveAnExtra100.d.ts +0 -0
  743. /package/dist/{insights → src/insights}/components/shared/SaveEnoughToLiveOnBottomSection.d.ts +0 -0
  744. /package/dist/{insights → src/insights}/components/shared/SaveEnoughToLiveOnTopSection.d.ts +0 -0
  745. /package/dist/{insights → src/insights}/components/shared/StatusIndicator.d.ts +0 -0
  746. /package/dist/{insights → src/insights}/components/shared/TabContainer.d.ts +0 -0
  747. /package/dist/{insights → src/insights}/components/shared/ThemedSVGImage.d.ts +0 -0
  748. /package/dist/{insights → src/insights}/components/shared/TransactionCard.d.ts +0 -0
  749. /package/dist/{insights → src/insights}/components/shared/ZeroState/LinedCardZeroState.d.ts +0 -0
  750. /package/dist/{insights → src/insights}/components/shared/index.d.ts +0 -0
  751. /package/dist/{insights → src/insights}/index.d.ts +0 -0
  752. /package/dist/{insights → src/insights}/themes/Typography.d.ts +0 -0
  753. /package/dist/{insights → src/insights}/themes/index.d.ts +0 -0
  754. /package/dist/{insights → src/insights}/types/Charts/BarChart.d.ts +0 -0
  755. /package/dist/{insights → src/insights}/types/CommonBeat.d.ts +0 -0
  756. /package/dist/{insights → src/insights}/types/DirectDeposit.d.ts +0 -0
  757. /package/dist/{insights → src/insights}/types/ThemedSVGImage.d.ts +0 -0
  758. /package/dist/{insights/components/insights/MonthlySpendingComparisonV2/__test__/MonthlySpendComparisonV2.test.d.ts → src/insights-v2/blocks/ActionBlocks/__test__/drillDownVariants.test.d.ts} +0 -0
  759. /package/dist/{insights/components/insights/P2pCategorization/_tests_/P2pCategorizationMultipleTransaction.test.d.ts → src/insights-v2/blocks/ChartBlocks/BarchartBlock/__test__/Barchart.test.d.ts} +0 -0
  760. /package/dist/{insights/components/shared/DonutChartV2.d.ts → src/insights-v2/blocks/ChartBlocks/DonutChartBlock/DonutChart.d.ts} +0 -0
  761. /package/dist/{insights/components/insights/P2pCategorization/_tests_/P2pCategorizationSingleTransaction.test.d.ts → src/insights-v2/blocks/ComponentBlocks/BudgetBlock/__test__/BudgetBlock.test.d.ts} +0 -0
  762. /package/dist/{insights/components/shared/Charts → src/insights-v2/components/chartblocks}/EmptyBarChart.d.ts +0 -0
  763. /package/dist/{investments → src/investments}/InvestmentsWidget.d.ts +0 -0
  764. /package/dist/{investments → src/investments}/components/Allocation.d.ts +0 -0
  765. /package/dist/{investments → src/investments}/components/Analysis.d.ts +0 -0
  766. /package/dist/{investments → src/investments}/components/AnalysisDetails.d.ts +0 -0
  767. /package/dist/{investments → src/investments}/components/EmptyStateFooterComponent.d.ts +0 -0
  768. /package/dist/{investments → src/investments}/components/HeaderCell.d.ts +0 -0
  769. /package/dist/{investments → src/investments}/components/HoldingDrawer.d.ts +0 -0
  770. /package/dist/{investments → src/investments}/components/HoldingTable.d.ts +0 -0
  771. /package/dist/{investments → src/investments}/components/InfoToolTip.d.ts +0 -0
  772. /package/dist/{investments → src/investments}/components/Overview.d.ts +0 -0
  773. /package/dist/{investments → src/investments}/components/TabTitle.d.ts +0 -0
  774. /package/dist/{investments → src/investments}/components/allocation/InvestementAllocationList.d.ts +0 -0
  775. /package/dist/{investments → src/investments}/components/allocation/InvestmentsAllocationChart.d.ts +0 -0
  776. /package/dist/{investments → src/investments}/components/allocation/util/createInvestementsAllocationData.d.ts +0 -0
  777. /package/dist/{investments → src/investments}/index.d.ts +0 -0
  778. /package/dist/{merchants → src/merchants}/components/MerchantLookup.d.ts +0 -0
  779. /package/dist/{merchants → src/merchants}/index.d.ts +0 -0
  780. /package/dist/{microinsights → src/microinsights}/InsightsMicroWidget.d.ts +0 -0
  781. /package/dist/{microinsights → src/microinsights}/MicroCardTemplate.d.ts +0 -0
  782. /package/dist/{microinsights → src/microinsights}/MicroWidgetContainer.d.ts +0 -0
  783. /package/dist/{microinsights → src/microinsights}/Spinner.d.ts +0 -0
  784. /package/dist/{microinsights → src/microinsights}/analytics.d.ts +0 -0
  785. /package/dist/{microinsights → src/microinsights}/beaticons/AreaChartIcon.d.ts +0 -0
  786. /package/dist/{microinsights → src/microinsights}/beaticons/AverageSpendComparisonIcon.d.ts +0 -0
  787. /package/dist/{microinsights → src/microinsights}/beaticons/BeatCategoryIcon.d.ts +0 -0
  788. /package/dist/{microinsights → src/microinsights}/beaticons/BeatIcon.d.ts +0 -0
  789. /package/dist/{microinsights → src/microinsights}/beaticons/BeatMaterialIcon.d.ts +0 -0
  790. /package/dist/{microinsights → src/microinsights}/beaticons/BeatMerchantLogo.d.ts +0 -0
  791. /package/dist/{microinsights → src/microinsights}/beaticons/ChartFilledIcon.d.ts +0 -0
  792. /package/dist/{microinsights → src/microinsights}/beaticons/InstitutionLogoIcon.d.ts +0 -0
  793. /package/dist/{microinsights → src/microinsights}/beaticons/MonthlySpendComparisonIcon.d.ts +0 -0
  794. /package/dist/{microinsights → src/microinsights}/beaticons/ZeroStateIcon.d.ts +0 -0
  795. /package/dist/{microinsights → src/microinsights}/beaticons/index.d.ts +0 -0
  796. /package/dist/{microinsights → src/microinsights}/cards/InsightCard.d.ts +0 -0
  797. /package/dist/{microinsights → src/microinsights}/cards/NoRelevantInsightsCard.d.ts +0 -0
  798. /package/dist/{microinsights → src/microinsights}/cards/ViewMoreMicroCard.d.ts +0 -0
  799. /package/dist/{microinsights → src/microinsights}/cards/ZeroStateCard.d.ts +0 -0
  800. /package/dist/{microinsights → src/microinsights}/carousel/BeatList.d.ts +0 -0
  801. /package/dist/{microinsights → src/microinsights}/carousel/CarouselControls.d.ts +0 -0
  802. /package/dist/{microinsights → src/microinsights}/carousel/CarouselHeader.d.ts +0 -0
  803. /package/dist/{microinsights → src/microinsights}/carousel/MicroBeatCarousel.d.ts +0 -0
  804. /package/dist/{microinsights → src/microinsights}/constants/Analytics.d.ts +0 -0
  805. /package/dist/{microinsights → src/microinsights}/constants/App.d.ts +0 -0
  806. /package/dist/{microinsights → src/microinsights}/context/InsightsMicroWidgetDataProvider.d.ts +0 -0
  807. /package/dist/{microinsights → src/microinsights}/context/hooks.d.ts +0 -0
  808. /package/dist/{microinsights → src/microinsights}/index.d.ts +0 -0
  809. /package/dist/{microinsights → src/microinsights}/interfaces.d.ts +0 -0
  810. /package/dist/{microinsights → src/microinsights}/stores/AppStore.d.ts +0 -0
  811. /package/dist/{microinsights → src/microinsights}/stores/CopyStore.d.ts +0 -0
  812. /package/dist/{microinsights → src/microinsights}/stores/InsightsMicroWidgetStore.d.ts +0 -0
  813. /package/dist/{microinsights → src/microinsights}/utils/DataSeries.d.ts +0 -0
  814. /package/dist/{microinsights → src/microinsights}/utils/colorType.d.ts +0 -0
  815. /package/dist/{networth → src/networth}/NetWorthMicroWidget.d.ts +0 -0
  816. /package/dist/{networth → src/networth}/NetWorthWidget.d.ts +0 -0
  817. /package/dist/{networth → src/networth}/components/AssetsLiabilitiesDetail.d.ts +0 -0
  818. /package/dist/{networth → src/networth}/components/GainsLossesDetail.d.ts +0 -0
  819. /package/dist/{networth → src/networth}/components/NetWorthChange.d.ts +0 -0
  820. /package/dist/{networth → src/networth}/components/NetWorthChart.d.ts +0 -0
  821. /package/dist/{networth → src/networth}/components/NetWorthList.d.ts +0 -0
  822. /package/dist/{networth → src/networth}/components/NetWorthListItem.d.ts +0 -0
  823. /package/dist/{networth → src/networth}/components/NetWorthSummary.d.ts +0 -0
  824. /package/dist/{networth → src/networth}/components/micro/NetworthData.d.ts +0 -0
  825. /package/dist/{networth → src/networth}/components/micro/ZeroState.d.ts +0 -0
  826. /package/dist/{networth → src/networth}/index.d.ts +0 -0
  827. /package/dist/{notifications → src/notifications}/components/DateRow.d.ts +0 -0
  828. /package/dist/{notifications → src/notifications}/components/NotificationBadge.d.ts +0 -0
  829. /package/dist/{notifications → src/notifications}/components/NotificationCard.d.ts +0 -0
  830. /package/dist/{notifications → src/notifications}/components/NotificationDrawer.d.ts +0 -0
  831. /package/dist/{notifications → src/notifications}/components/NotificationList.d.ts +0 -0
  832. /package/dist/{notifications → src/notifications}/components/NotificationsEmptyState.d.ts +0 -0
  833. /package/dist/{notifications → src/notifications}/constants/NotificationConstants.d.ts +0 -0
  834. /package/dist/{notifications → src/notifications}/index.d.ts +0 -0
  835. /package/dist/{recurringtransactions → src/recurringtransactions}/RecurringTransactionsMicroWidget.d.ts +0 -0
  836. /package/dist/{recurringtransactions → src/recurringtransactions}/RecurringTransactionsMiniWidget.d.ts +0 -0
  837. /package/dist/{recurringtransactions → src/recurringtransactions}/RecurringTransactionsWidget.d.ts +0 -0
  838. /package/dist/{recurringtransactions → src/recurringtransactions}/ZeroStateMicroWidget.d.ts +0 -0
  839. /package/dist/{recurringtransactions → src/recurringtransactions}/components/MicroWidgetContent.d.ts +0 -0
  840. /package/dist/{recurringtransactions → src/recurringtransactions}/components/MiniWidgetContent.d.ts +0 -0
  841. /package/dist/{recurringtransactions → src/recurringtransactions}/components/PaymentSchedule.d.ts +0 -0
  842. /package/dist/{recurringtransactions → src/recurringtransactions}/components/RecurrenceBadges.d.ts +0 -0
  843. /package/dist/{recurringtransactions → src/recurringtransactions}/components/RecurrenceList.d.ts +0 -0
  844. /package/dist/{recurringtransactions → src/recurringtransactions}/components/RecurrenceRow.d.ts +0 -0
  845. /package/dist/{recurringtransactions → src/recurringtransactions}/components/RecurringSettingsDrawer.d.ts +0 -0
  846. /package/dist/{recurringtransactions → src/recurringtransactions}/components/RecurringStatus.d.ts +0 -0
  847. /package/dist/{recurringtransactions → src/recurringtransactions}/components/RecurringTransactionDetails.d.ts +0 -0
  848. /package/dist/{recurringtransactions → src/recurringtransactions}/components/RecurringTransactions.d.ts +0 -0
  849. /package/dist/{recurringtransactions → src/recurringtransactions}/components/actions/PaymentScheduleAction.d.ts +0 -0
  850. /package/dist/{recurringtransactions → src/recurringtransactions}/components/micro/MerchantLogosRow.d.ts +0 -0
  851. /package/dist/{recurringtransactions → src/recurringtransactions}/components/micro/OverlappingMerchantLogos.d.ts +0 -0
  852. /package/dist/{recurringtransactions → src/recurringtransactions}/components/micro/RecurrenceLegend.d.ts +0 -0
  853. /package/dist/{recurringtransactions → src/recurringtransactions}/components/recurrencecalendar/Legend.d.ts +0 -0
  854. /package/dist/{recurringtransactions → src/recurringtransactions}/components/recurrencecalendar/RecurrenceCalendar.d.ts +0 -0
  855. /package/dist/{recurringtransactions → src/recurringtransactions}/components/recurrencecalendar/RecurrenceDay.d.ts +0 -0
  856. /package/dist/{recurringtransactions → src/recurringtransactions}/components/shared/RecurringSettings.d.ts +0 -0
  857. /package/dist/{recurringtransactions → src/recurringtransactions}/components/shared/recurringsettings/AddRecurringTransaction.d.ts +0 -0
  858. /package/dist/{recurringtransactions → src/recurringtransactions}/components/shared/recurringsettings/AddRecurringTransactionDetails.d.ts +0 -0
  859. /package/dist/{recurringtransactions → src/recurringtransactions}/components/shared/recurringsettings/ManageExpenses.d.ts +0 -0
  860. /package/dist/{recurringtransactions → src/recurringtransactions}/components/shared/recurringsettings/ManageIncome.d.ts +0 -0
  861. /package/dist/{recurringtransactions → src/recurringtransactions}/components/shared/recurringsettings/RecurringRow.d.ts +0 -0
  862. /package/dist/{recurringtransactions → src/recurringtransactions}/components/shared/recurringsettings/RecurringSettingsZeroState.d.ts +0 -0
  863. /package/dist/{recurringtransactions → src/recurringtransactions}/components/shared/recurringsettings/SelectTransaction.d.ts +0 -0
  864. /package/dist/{recurringtransactions → src/recurringtransactions}/index.d.ts +0 -0
  865. /package/dist/{settings → src/settings}/NotificationSettingsWidget.d.ts +0 -0
  866. /package/dist/{settings → src/settings}/SettingsWidget.d.ts +0 -0
  867. /package/dist/{settings → src/settings}/TransactionRulesWidget.d.ts +0 -0
  868. /package/dist/{settings → src/settings}/components/SettingsWidgetContents.d.ts +0 -0
  869. /package/dist/{settings → src/settings}/components/devices/DeviceDialog.d.ts +0 -0
  870. /package/dist/{settings → src/settings}/components/devices/DeviceList.d.ts +0 -0
  871. /package/dist/{settings → src/settings}/components/devices/DeviceTab.d.ts +0 -0
  872. /package/dist/{settings → src/settings}/components/devices/DeviceTable.d.ts +0 -0
  873. /package/dist/{settings → src/settings}/components/notifications/AccountNotificationProfile.d.ts +0 -0
  874. /package/dist/{settings → src/settings}/components/notifications/AccountNotificationProfiles.d.ts +0 -0
  875. /package/dist/{settings → src/settings}/components/notifications/AccountProfileListItem.d.ts +0 -0
  876. /package/dist/{settings → src/settings}/components/notifications/BudgetNotificationProfiles.d.ts +0 -0
  877. /package/dist/{settings → src/settings}/components/notifications/DeliveryMethods.d.ts +0 -0
  878. /package/dist/{settings → src/settings}/components/notifications/InsightsNotificationProfiles.d.ts +0 -0
  879. /package/dist/{settings → src/settings}/components/notifications/NotificationProfile.d.ts +0 -0
  880. /package/dist/{settings → src/settings}/components/notifications/NotificationSettings.d.ts +0 -0
  881. /package/dist/{settings → src/settings}/components/notifications/PersonalDetails.d.ts +0 -0
  882. /package/dist/{settings → src/settings}/components/profile/ProfileTab.d.ts +0 -0
  883. /package/dist/{settings → src/settings}/components/profile/actions/VerifyEmailAction.d.ts +0 -0
  884. /package/dist/{settings → src/settings}/components/profile/actions/VerifyPhoneAction.d.ts +0 -0
  885. /package/dist/{settings → src/settings}/components/profile/actions/VerifyTokenAction.d.ts +0 -0
  886. /package/dist/{settings → src/settings}/components/transactionrules/TransactionRulesTab.d.ts +0 -0
  887. /package/dist/{settings → src/settings}/components/transactionrules/actions/DeleteRuleAction.d.ts +0 -0
  888. /package/dist/{settings → src/settings}/components/transactionrules/actions/EditCategoryAction.d.ts +0 -0
  889. /package/dist/{settings → src/settings}/components/transactionrules/actions/EditPayeeAction.d.ts +0 -0
  890. /package/dist/{settings → src/settings}/components/transactionrules/actions/EditRuleAction.d.ts +0 -0
  891. /package/dist/{settings → src/settings}/components/transactionrules/components/EditRuleDetails.d.ts +0 -0
  892. /package/dist/{settings → src/settings}/components/transactionrules/components/RuleListItem.d.ts +0 -0
  893. /package/dist/{settings → src/settings}/constants/Settings.d.ts +0 -0
  894. /package/dist/{settings → src/settings}/index.d.ts +0 -0
  895. /package/dist/{spending → src/spending}/SpendingMiniWidget.d.ts +0 -0
  896. /package/dist/{spending → src/spending}/SpendingWidget.d.ts +0 -0
  897. /package/dist/{spending → src/spending}/components/MiniSpendingChart.d.ts +0 -0
  898. /package/dist/{spending → src/spending}/components/Spending.d.ts +0 -0
  899. /package/dist/{spending → src/spending}/components/SpendingChart.d.ts +0 -0
  900. /package/dist/{spending → src/spending}/components/SpendingDonut.d.ts +0 -0
  901. /package/dist/{spending → src/spending}/components/SpendingLegend.d.ts +0 -0
  902. /package/dist/{spending → src/spending}/components/SpendingList.d.ts +0 -0
  903. /package/dist/{spending → src/spending}/components/SpendingTabLabel.d.ts +0 -0
  904. /package/dist/{spending → src/spending}/index.d.ts +0 -0
  905. /package/dist/{spending → src/spending}/utils/SpendingData.d.ts +0 -0
  906. /package/dist/{transactions → src/transactions}/TransactionWidget.d.ts +0 -0
  907. /package/dist/{transactions → src/transactions}/components/shared/TransactionDetails.d.ts +0 -0
  908. /package/dist/{transactions → src/transactions}/components/shared/TransactionList.d.ts +0 -0
  909. /package/dist/{transactions → src/transactions}/components/shared/TransactionTable.d.ts +0 -0
  910. /package/dist/{transactions → src/transactions}/components/shared/getEmbeddedInstanceSlotByBeatTemplates.d.ts +0 -0
  911. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/Description.d.ts +0 -0
  912. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/FlagTransaction.d.ts +0 -0
  913. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/ManualTransactionDetails.d.ts +0 -0
  914. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/TransactionAmountHeader.d.ts +0 -0
  915. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/TransactionDetailsView.d.ts +0 -0
  916. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/actions/AddMerchantBudgetAction.d.ts +0 -0
  917. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/actions/CategoryAction.d.ts +0 -0
  918. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/actions/DateAction.d.ts +0 -0
  919. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/actions/DeleteAction.d.ts +0 -0
  920. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/actions/DeleteLogoAction.d.ts +0 -0
  921. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/actions/ExcludeAction.d.ts +0 -0
  922. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/actions/MemoAction.d.ts +0 -0
  923. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/actions/SplitAction.d.ts +0 -0
  924. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/actions/TagsAction.d.ts +0 -0
  925. /package/dist/{transactions → src/transactions}/components/shared/transactiondetails/actions/index.d.ts +0 -0
  926. /package/dist/{transactions → src/transactions}/components/shared/transactionlist/TransactionRow.d.ts +0 -0
  927. /package/dist/{transactions → src/transactions}/components/shared/transactionlist/ZeroState.d.ts +0 -0
  928. /package/dist/{transactions → src/transactions}/components/shared/transactiontable/cells/AccountCell.d.ts +0 -0
  929. /package/dist/{transactions → src/transactions}/components/shared/transactiontable/cells/AmountCell.d.ts +0 -0
  930. /package/dist/{transactions → src/transactions}/components/shared/transactiontable/cells/CategoryCell.d.ts +0 -0
  931. /package/dist/{transactions → src/transactions}/components/shared/transactiontable/cells/DateCell.d.ts +0 -0
  932. /package/dist/{transactions → src/transactions}/components/shared/transactiontable/cells/FlagCell.d.ts +0 -0
  933. /package/dist/{transactions → src/transactions}/components/shared/transactiontable/cells/HeaderCell.d.ts +0 -0
  934. /package/dist/{transactions → src/transactions}/components/shared/transactiontable/cells/PayeeCell.d.ts +0 -0
  935. /package/dist/{transactions → src/transactions}/components/shared/transactiontable/cells/index.d.ts +0 -0
  936. /package/dist/{transactions → src/transactions}/components/splitmanager/SplitManager.d.ts +0 -0
  937. /package/dist/{transactions → src/transactions}/components/splitmanager/SplitRow.d.ts +0 -0
  938. /package/dist/{transactions → src/transactions}/components/splitmanager/index.d.ts +0 -0
  939. /package/dist/{transactions → src/transactions}/components/tagmanager/Header.d.ts +0 -0
  940. /package/dist/{transactions → src/transactions}/components/tagmanager/SearchBox.d.ts +0 -0
  941. /package/dist/{transactions → src/transactions}/components/tagmanager/TagManager.d.ts +0 -0
  942. /package/dist/{transactions → src/transactions}/components/tagmanager/TagRow.d.ts +0 -0
  943. /package/dist/{transactions → src/transactions}/components/tagmanager/index.d.ts +0 -0
  944. /package/dist/{transactions → src/transactions}/components/transactionwidget/AddAccountModal.d.ts +0 -0
  945. /package/dist/{transactions → src/transactions}/components/transactionwidget/actions/AddTransactionAction.d.ts +0 -0
  946. /package/dist/{transactions → src/transactions}/components/transactionwidget/actions/EditCategoryAction.d.ts +0 -0
  947. /package/dist/{transactions → src/transactions}/components/transactionwidget/actions/ExportCsvAction.d.ts +0 -0
  948. /package/dist/{transactions → src/transactions}/constants/Actions.d.ts +0 -0
  949. /package/dist/{transactions → src/transactions}/constants/Analytics.d.ts +0 -0
  950. /package/dist/{transactions → src/transactions}/constants/OnClickEvents.d.ts +0 -0
  951. /package/dist/{transactions → src/transactions}/context/hooks.d.ts +0 -0
  952. /package/dist/{transactions → src/transactions}/index.d.ts +0 -0
  953. /package/dist/{transactions → src/transactions}/utils/Filters.d.ts +0 -0
  954. /package/dist/{transactions → src/transactions}/utils/Transactions.d.ts +0 -0
  955. /package/dist/{trends → src/trends}/TrendsFullWidget.d.ts +0 -0
  956. /package/dist/{trends → src/trends}/TrendsMicroWidget.d.ts +0 -0
  957. /package/dist/{trends → src/trends}/TrendsMiniWidget.d.ts +0 -0
  958. /package/dist/{trends → src/trends}/TrendsWidget.d.ts +0 -0
  959. /package/dist/{trends → src/trends}/ZeroStateMicroWidget.d.ts +0 -0
  960. /package/dist/{trends → src/trends}/components/CategoriesList.d.ts +0 -0
  961. /package/dist/{trends → src/trends}/components/CategoriesListItem.d.ts +0 -0
  962. /package/dist/{trends → src/trends}/components/CategoryDetailChart.d.ts +0 -0
  963. /package/dist/{trends → src/trends}/components/CategoryDetails.d.ts +0 -0
  964. /package/dist/{trends → src/trends}/components/DateRangeText.d.ts +0 -0
  965. /package/dist/{trends → src/trends}/components/SpendingChart.d.ts +0 -0
  966. /package/dist/{trends → src/trends}/components/TrendsChart.d.ts +0 -0
  967. /package/dist/{trends → src/trends}/components/TrendsChartTotals.d.ts +0 -0
  968. /package/dist/{trends → src/trends}/components/TrendsDrawer.d.ts +0 -0
  969. /package/dist/{trends → src/trends}/components/TrendsInsights.d.ts +0 -0
  970. /package/dist/{trends → src/trends}/components/TrendsMicroSpendingIncomeBox.d.ts +0 -0
  971. /package/dist/{trends → src/trends}/components/TrendsTableContainer.d.ts +0 -0
  972. /package/dist/{trends → src/trends}/components/TrendsViewToggle.d.ts +0 -0
  973. /package/dist/{trends → src/trends}/components/trendstable/AccessibleSortIcon.d.ts +0 -0
  974. /package/dist/{trends → src/trends}/components/trendstable/AmountCell.d.ts +0 -0
  975. /package/dist/{trends → src/trends}/components/trendstable/CategoryCell.d.ts +0 -0
  976. /package/dist/{trends → src/trends}/components/trendstable/HeaderCell.d.ts +0 -0
  977. /package/dist/{trends → src/trends}/components/trendstable/TrendsTable.d.ts +0 -0
  978. /package/dist/{trends → src/trends}/constants/TrendsInsights.d.ts +0 -0
  979. /package/dist/{trends → src/trends}/constants/TrendsWidget.d.ts +0 -0
  980. /package/dist/{trends → src/trends}/index.d.ts +0 -0
  981. /package/dist/{trends → src/trends}/utils/SpendingData.d.ts +0 -0
  982. /package/dist/{trends → src/trends}/utils/TrendsTable.d.ts +0 -0
  983. /package/dist/{trends → src/trends}/utils/TrendsWidget.d.ts +0 -0
  984. /package/dist/{trends → src/trends}/utils/shared.d.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [8.2.9] - 05-28-2026
2
+
3
+ - **UPDATED** - Adds Tab indexes to the BubbleWeek component to make it accessable to screen readers.
4
+
1
5
  ## [8.2.8] - 05-21-2026
2
6
 
3
7
  - **UPDATED** - ADD the html_in_description_cta field to the ClientConfigurableCta
@@ -0,0 +1,510 @@
1
+ import { jsxs as c, jsx as o } from "react/jsx-runtime";
2
+ import g, { useState as z, useEffect as B } from "react";
3
+ import { observer as G } from "mobx-react-lite";
4
+ import j from "@mui/material/ListItemAvatar";
5
+ import W from "@mui/material/ListItemText";
6
+ import m from "@mui/material/Stack";
7
+ import { useTheme as L } from "@mui/material/styles";
8
+ import { MerchantLogo as F, Text as h, Icon as E } from "@mxenabled/mxui";
9
+ import { f as x } from "./NumberFormatting--XMeeBfr.mjs";
10
+ import { G as Y, h as v, u as M } from "./hooks-BaO_gOI6.mjs";
11
+ import { T as Z } from "./TransactionUtils-BphBJBbU.mjs";
12
+ import { L as Q } from "./ListItemWrapper-B5r-YQQ_.mjs";
13
+ import K from "@mui/material/Box";
14
+ import { Receipt as X } from "@mxenabled/mx-icons";
15
+ import { fromUnixTime as f } from "date-fns/fromUnixTime";
16
+ import { isSameDay as H } from "date-fns/isSameDay";
17
+ import { f as q, D as J } from "./DateFormats-HudZ3Bjs.mjs";
18
+ import { ChartContainer as tt, ChartsReferenceLine as k, ChartsXAxis as et, BarPlot as nt } from "@mui/x-charts";
19
+ const w = () => {
20
+ if (!g.useContext(Y))
21
+ throw new Error("useTransactionsUiStore() must be used within the GlobalDataContext");
22
+ return v().uiStore;
23
+ }, ot = {
24
+ ON_TRANSACTION_CATEGORY_CLICK: "onTransactionCategoryClick",
25
+ ON_TRANSACTION_CATEGORY_CHANGED: "onTransactionCategoryChanged",
26
+ ON_TRANSACTION_MANUAL_ADD_CLICK: "onTransactionManualAddClick",
27
+ ON_TRANSACTION_MANUAL_ADD_ADDED: "onTransactionManualAddAdded",
28
+ ON_TRANSACTION_DATE_CHANGED: "onTransactionDateChanged",
29
+ ON_TRANSACTION_DATE_CLICK: "onTransactionDateClick",
30
+ ON_TRANSACTION_DELETE_CANCEL: "onTransactionDeleteCancel",
31
+ ON_TRANSACTION_DELETE_CLICK: "onTransactionDeleteClick",
32
+ ON_TRANSACTION_DELETE_DELETED: "onTransactionDeleted",
33
+ ON_TRANSACTION_DELETE_LOGO_CANCEL: "onTransactionDeleteLogoCancel",
34
+ ON_TRANSACTION_DELETE_LOGO_CLICK: "onTransactionDeleteLogoClick",
35
+ ON_TRANSACTION_DELETE_LOGO_DELETED: "onTransactionDeletedLogo",
36
+ ON_TRANSACTION_DESCRIPTION_EDIT_CLICK: "onTransactionDescriptionEditClick",
37
+ ON_TRANSACTION_DESCRIPTION_SAVE_CLICK: "onTransactionDescriptionSaveClick",
38
+ ON_TRANSACTION_EXPORT_CSV_CLICK: "onTransactionExportCsvClick",
39
+ ON_TRANSACTION_HIDDEN: "onTransactionHidden",
40
+ ON_TRANSACTION_HIDE_CLICK: "onTransactionHideClick",
41
+ ON_TRANSACTION_HIDE_CANCEL_CLICK: "onTransactionHideCancelClick",
42
+ ON_TRANSACTION_LIST_ITEM_CLICK: "onTransactionListItemClick",
43
+ ON_TRANSACTION_MEMO_CHANGED: "onTransactionMemoChanged",
44
+ ON_TRANSACTION_MEMO_CLICK: "onTransactionMemoClick",
45
+ ON_TRANSACTION_SPLIT_ADD_CLICK: "onTransactionSplitAddClick",
46
+ ON_TRANSACTION_SPLIT_CANCEL_CLICK: "onTransactionSplitCancelClick",
47
+ ON_TRANSACTION_SPLIT_CATEGORY_CLICK: "onTransactionSplitCategoryClick",
48
+ ON_TRANSACTION_SPLIT_CLICK: "onTransactionSplitClick",
49
+ ON_TRANSACTION_SPLIT_DELETE_CLICK: "onTransactionSplitDeleteClick",
50
+ ON_TRANSACTION_SPLIT_SAVE_CLICK: "onTransactionSplitSaveClick",
51
+ ON_TRANSACTION_TAGS_CHANGED: "onTransactionTagsChanged",
52
+ ON_TRANSACTION_TAGS_CLICK: "onTransactionTagsClick",
53
+ ON_TRANSACTION_TAGS_TAG_ADD_CANCEL_CLICK: "onTransactionTagsTagAddCancelClick",
54
+ ON_TRANSACTION_TAGS_TAG_ADD_CLICK: "onTransactionTagsTagAddClick",
55
+ ON_TRANSACTION_TAGS_TAG_ADDED: "onTransactionTagsTagAdded",
56
+ ON_TRANSACTION_TAGS_TAG_DELETE_CLICK: "onTransactionTagsTagDeleteClick",
57
+ ON_TRANSACTION_TAGS_TAG_DELETE_CANCEL_CLICK: "onTransactionTagsTagDeleteCancelClick",
58
+ ON_TRANSACTION_TAGS_TAG_DELETED: "onTransactionTagsTagDeleted",
59
+ ON_TRANSACTION_TAGS_TAG_EDIT_CLICK: "onTransactionTagsTagEditClick",
60
+ ON_TRANSACTION_TAGS_TAG_EDIT_SAVED: "onTransactionTagsTagEditSavedClick",
61
+ ON_TRANSACTION_TOGGLE_FLAG_CLICK: "onTransactionToggleFlagClick",
62
+ ON_TRANSACTION_UNHIDDEN: "onTransactionUnHidden",
63
+ ON_TRANSACTION_UNHIDE_CLICK: "onTransactionUnHideClick",
64
+ ON_TRANSACTION_UNHIDE_CANCEL_CLICK: "onTransactionUnHideCancelClick",
65
+ ON_TRANSACTION_UNSPLIT: "onTransactionUnsplit",
66
+ ON_TRANSACTION_UNSPLIT_CANCEL: "onTransactionUnsplitCancel"
67
+ };
68
+ function at() {
69
+ return window.opener && window.opener.location ? window.opener.location.toString() : document.referrer;
70
+ }
71
+ function $(t) {
72
+ const n = at().replace(/([^:]+:\/\/[^\/]+).*/, "$1"), e = window.parent || window.opener || !1;
73
+ return e && e.postMessage && n ? (e.postMessage(t, n), !0) : !1;
74
+ }
75
+ function it(t) {
76
+ return $({
77
+ metadata: { beat_guid: t },
78
+ mx: !0,
79
+ type: "mx/moneyDashboard/insightOnTransaction"
80
+ });
81
+ }
82
+ function bt(t) {
83
+ return $({
84
+ metadata: { template: t },
85
+ mx: !0,
86
+ type: "mx/pulse/client_configured_cta"
87
+ });
88
+ }
89
+ const rt = ({ transaction: t, onClick: n }) => {
90
+ const a = L().palette.mode === "dark", { associatedBeats: r } = v(), { expandedSplits: l } = w(), { transactions: _ } = M(), { showInsights: I } = w(), u = t.transaction_type === Z.CREDIT, T = g.useMemo(() => r.find((s) => s.associated_transaction_guid === t.guid), [r, t]), O = (s, d) => {
91
+ const A = [];
92
+ return s.is_flagged && A.push(
93
+ /* @__PURE__ */ o(
94
+ E,
95
+ {
96
+ fill: !0,
97
+ name: "flag",
98
+ size: 16,
99
+ sx: { color: d ? "primary.main" : "warning.dark" }
100
+ },
101
+ "flag"
102
+ )
103
+ ), s.is_hidden && A.push(/* @__PURE__ */ o(E, { name: "visibility_off", size: 16 }, "hidden")), s.has_been_split && A.push(/* @__PURE__ */ o(E, { name: "call_split", size: 16 }, "split")), A;
104
+ }, p = (s, d) => s.is_hidden ? d.is_excluded : s.has_been_split ? d.split_transaction_category_label : s.category || "";
105
+ return (
106
+ //TODO: implement common/components/ListItemRow.tsx
107
+ /* @__PURE__ */ c(
108
+ Q,
109
+ {
110
+ clickEventName: ot.ON_TRANSACTION_LIST_ITEM_CLICK,
111
+ onClick: n ? () => n(t.guid) : void 0,
112
+ sx: t.is_hidden ? { backgroundColor: "grey.50", color: "text.secondary" } : void 0,
113
+ children: [
114
+ /* @__PURE__ */ o(j, { children: t.parent_guid && l.includes(t.parent_guid) ? /* @__PURE__ */ o(g.Fragment, {}) : /* @__PURE__ */ o(
115
+ F,
116
+ {
117
+ categoryGuid: t.top_level_category_guid || "",
118
+ merchantGuid: t.merchant_guid || ""
119
+ }
120
+ ) }),
121
+ /* @__PURE__ */ o(
122
+ W,
123
+ {
124
+ disableTypography: !0,
125
+ secondary: /* @__PURE__ */ c(m, { direction: "row", justifyContent: "space-between", children: [
126
+ /* @__PURE__ */ c(m, { alignItems: "center", direction: "row", gap: 4, children: [
127
+ O(t, a),
128
+ /* @__PURE__ */ o(h, { variant: "caption", children: p(t, _) })
129
+ ] }),
130
+ T && I && /* @__PURE__ */ o(
131
+ h,
132
+ {
133
+ bold: !0,
134
+ color: "action.active",
135
+ onClick: (s) => {
136
+ s.stopPropagation(), s.preventDefault(), it(T.guid);
137
+ },
138
+ variant: "caption",
139
+ children: T.short_title
140
+ }
141
+ )
142
+ ] }),
143
+ children: /* @__PURE__ */ c(m, { direction: "row", justifyContent: "space-between", sx: { gap: 8 }, children: [
144
+ /* @__PURE__ */ o(h, { bold: !0, variant: "body1", children: t.payee || t.description || t.feed_description }),
145
+ /* @__PURE__ */ c(
146
+ h,
147
+ {
148
+ bold: !0,
149
+ color: u ? "success.main" : "text.primary",
150
+ sx: { flexShrink: 0 },
151
+ variant: "body1",
152
+ children: [
153
+ u ? "+" : "",
154
+ x(t.amount, "0,0.00")
155
+ ]
156
+ }
157
+ )
158
+ ] })
159
+ }
160
+ )
161
+ ]
162
+ }
163
+ )
164
+ );
165
+ }, kt = G(rt), wt = ({
166
+ bgcolor: t = "background.default",
167
+ children: n
168
+ }) => /* @__PURE__ */ o(K, { display: "inline-block", sx: { bgcolor: t, py: 6, width: "100%" }, children: /* @__PURE__ */ o(h, { bold: !0, sx: { pl: 24 }, variant: "caption", children: n }) }), st = ({ showIcon: t = !0, showSubtitle: n = !0 }) => {
169
+ const { transactions: e } = M();
170
+ return /* @__PURE__ */ c(m, { alignItems: "center", gap: 12, height: "auto", mb: 24, mt: 24, children: [
171
+ t && /* @__PURE__ */ o(X, { color: "action", sx: { fontSize: 32 } }),
172
+ /* @__PURE__ */ o(h, { bold: !0, color: "text.secondary", variant: "body2", children: e.zero_state_no_transactions }),
173
+ n && /* @__PURE__ */ o(h, { color: "text.secondary", variant: "caption", children: e.zero_state_there_are_no_transactions })
174
+ ] });
175
+ }, Gt = G(st), vt = (t, n) => {
176
+ const e = f(n[t].date), a = f(n[t - 1]?.date);
177
+ return !H(e, a);
178
+ }, Mt = (t, n) => {
179
+ const e = f(n[t].date), a = f(n[t + 1]?.date);
180
+ return H(e, a);
181
+ }, Kt = (t) => t?.data ? t.data.map((n) => Object.fromEntries((t.names || []).map((e, a) => [e, n[a]]))) : [], Ht = (t, n = "") => t.map((a) => {
182
+ const r = q(a.date, J.MONTH_SHORT);
183
+ return {
184
+ ariaLabel: `
185
+ ${r},
186
+ ${x(a.amount, "0.00")},
187
+ ${n}`,
188
+ label: r,
189
+ value: a.amount,
190
+ formattedAmount: x(a.amount, "0,0")
191
+ };
192
+ }), ct = (t) => {
193
+ const [n, e] = z({ width: 0, height: 0 });
194
+ return B(() => {
195
+ const a = () => {
196
+ if (t.current) {
197
+ const { offsetWidth: r, offsetHeight: l } = t.current;
198
+ e({ width: r, height: l });
199
+ }
200
+ };
201
+ return a(), window.addEventListener("resize", a), () => {
202
+ window.removeEventListener("resize", a);
203
+ };
204
+ }, [t]), n;
205
+ }, lt = ({
206
+ color: t,
207
+ legendStyle: n = {},
208
+ monthlyAmount: e,
209
+ monthlyAmountLabel: a,
210
+ trendAmount: r,
211
+ trendAmountLabel: l
212
+ }) => {
213
+ const _ = L();
214
+ return /* @__PURE__ */ c(
215
+ m,
216
+ {
217
+ sx: {
218
+ alignItems: "center",
219
+ flexDirection: "row",
220
+ gap: 24,
221
+ justifyContent: "flex-start",
222
+ py: 4,
223
+ width: "100%",
224
+ ...n
225
+ },
226
+ children: [
227
+ a && /* @__PURE__ */ c(m, { sx: { alignItems: "center", flexDirection: "row", gap: 8 }, children: [
228
+ /* @__PURE__ */ o(
229
+ "svg",
230
+ {
231
+ "aria-hidden": "true",
232
+ "aria-labelledby": "chartLegendLabel",
233
+ fill: "none",
234
+ height: "12",
235
+ role: "figure",
236
+ width: "12",
237
+ children: /* @__PURE__ */ o("rect", { fill: t, height: "12", rx: "2", width: "12" })
238
+ }
239
+ ),
240
+ /* @__PURE__ */ c(h, { id: "chartLegendLabel", variant: "caption", children: [
241
+ a,
242
+ ": ",
243
+ e
244
+ ] })
245
+ ] }),
246
+ l && /* @__PURE__ */ c(m, { sx: { alignItems: "center", flexDirection: "row", gap: 8 }, children: [
247
+ /* @__PURE__ */ o(
248
+ "svg",
249
+ {
250
+ "aria-hidden": "true",
251
+ "aria-labelledby": "chartLegendLabel",
252
+ fill: "none",
253
+ height: "12",
254
+ role: "figure",
255
+ width: "12",
256
+ children: /* @__PURE__ */ o("rect", { fill: _.palette.chart.chart7, height: "12", rx: "2", width: "12" })
257
+ }
258
+ ),
259
+ /* @__PURE__ */ c(h, { id: "chartLegendLabel", variant: "caption", children: [
260
+ l,
261
+ ": ",
262
+ r
263
+ ] })
264
+ ] })
265
+ ]
266
+ }
267
+ );
268
+ }, Tt = (t, n) => {
269
+ if (t <= 0 || n <= 0) return "";
270
+ const e = Math.min(4, t / 2, n / 2);
271
+ return `M${e},0 L${t - e},0 Q${t},0 ${t},${e} L${t},${n} L0,${n} L0,${e} Q0,0 ${e},0 Z`;
272
+ }, _t = ({
273
+ colorRange: t,
274
+ data: n,
275
+ dataIndex: e,
276
+ removeSelectedTabColorChange: a,
277
+ selectedTabIndex: r,
278
+ style: l,
279
+ ..._
280
+ }) => {
281
+ const I = L(), { ariaLabel: u, formattedAmount: T } = n[e], O = r === e ? "bold" : 400, p = l.x ?? 0, s = l.y ?? 0, d = l.width ?? 0, A = l.height ?? 0;
282
+ return /* @__PURE__ */ c("g", { "aria-label": u, children: [
283
+ /* @__PURE__ */ o(
284
+ "path",
285
+ {
286
+ ..._,
287
+ d: Tt(d, A),
288
+ fill: t[e],
289
+ transform: `translate(${p}, ${s})`
290
+ }
291
+ ),
292
+ /* @__PURE__ */ o(
293
+ "text",
294
+ {
295
+ fill: I.palette.text.primary,
296
+ fontSize: 11,
297
+ fontWeight: a ? "bold" : O,
298
+ textAnchor: "middle",
299
+ x: p + d / 2,
300
+ y: s - 8,
301
+ children: T
302
+ }
303
+ )
304
+ ] });
305
+ }, $t = ({
306
+ amounts: t,
307
+ color: n,
308
+ data: e,
309
+ heightOverride: a,
310
+ margin: r = {
311
+ bottom: 30,
312
+ left: 40,
313
+ right: 40,
314
+ top: 20
315
+ },
316
+ onBarClick: l,
317
+ legendPosition: _ = "bottom",
318
+ monthlyAmountLabel: I,
319
+ removeSelectedTabColorChange: u,
320
+ selectedTabIndex: T,
321
+ trendAmountLabel: O
322
+ }) => {
323
+ const p = g.useRef(null), { height: s, width: d } = ct(p), A = L(), y = g.useMemo(() => {
324
+ const i = e.map(({ value: S }) => S), C = Math.min(...i), N = Math.max(...i);
325
+ return {
326
+ series: [
327
+ {
328
+ data: i,
329
+ type: "bar"
330
+ }
331
+ ],
332
+ xAxis: [
333
+ {
334
+ data: e.map(({ label: S }) => S),
335
+ scaleType: "band",
336
+ categoryGapRatio: 0.45
337
+ }
338
+ ],
339
+ yAxis: [
340
+ {
341
+ scaleType: "linear",
342
+ min: C < 0 ? C * 1.2 : 0,
343
+ max: N > 0 ? N : 0
344
+ }
345
+ ]
346
+ };
347
+ }, [e]), U = g.useMemo(() => {
348
+ const i = `${n}80`;
349
+ return u ? e.map(() => n) : T == null ? [...new Array(e.length - 1).fill(i), n] : e.map((C, N) => N === T ? n : i);
350
+ }, [n, e, T]), P = g.useMemo(
351
+ () => e[T ?? e.length - 1],
352
+ [e, T]
353
+ ), D = e.reduce((i, C) => Math.min(i, C.value), 1 / 0) < 0, R = /* @__PURE__ */ o(
354
+ lt,
355
+ {
356
+ color: n,
357
+ legendStyle: { pl: r.left },
358
+ monthlyAmount: P.formattedAmount,
359
+ monthlyAmountLabel: I,
360
+ trendAmount: t?.formattedAverage,
361
+ trendAmountLabel: O
362
+ }
363
+ ), b = I || O, V = (i, { dataIndex: C }) => l?.(C);
364
+ return /* @__PURE__ */ c(m, { sx: { alignItems: "center", width: "100%" }, children: [
365
+ b && _ === "top" && R,
366
+ /* @__PURE__ */ o(
367
+ K,
368
+ {
369
+ ref: p,
370
+ sx: {
371
+ height: a || 122,
372
+ mb: _ === "top" ? 0 : 4,
373
+ mt: _ === "top" ? 4 : 0,
374
+ touchAction: "pan-y",
375
+ width: "100%",
376
+ "& svg": {
377
+ touchAction: "pan-y",
378
+ userSelect: "none"
379
+ },
380
+ "& .recharts-wrapper": {
381
+ touchAction: "pan-y"
382
+ }
383
+ },
384
+ children: /* @__PURE__ */ c(
385
+ tt,
386
+ {
387
+ height: s,
388
+ margin: {
389
+ bottom: r.bottom,
390
+ left: r.left,
391
+ right: r.right,
392
+ top: r.top || 45
393
+ },
394
+ series: y.series,
395
+ width: d,
396
+ xAxis: y.xAxis,
397
+ yAxis: [{ width: 0 }],
398
+ children: [
399
+ t?.average && /* @__PURE__ */ o(
400
+ k,
401
+ {
402
+ labelAlign: "middle",
403
+ lineStyle: {
404
+ stroke: A.palette.chart.chart7,
405
+ strokeDasharray: "4",
406
+ strokeLinecap: "round",
407
+ strokeWidth: 1
408
+ },
409
+ y: t?.average
410
+ }
411
+ ),
412
+ D && /* @__PURE__ */ o(
413
+ k,
414
+ {
415
+ labelAlign: "middle",
416
+ lineStyle: {
417
+ stroke: A.palette.chart.chart7
418
+ },
419
+ y: 0
420
+ }
421
+ ),
422
+ /* @__PURE__ */ o(
423
+ et,
424
+ {
425
+ position: "bottom",
426
+ slots: {
427
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
428
+ axisTickLabel: ({ text: i, ownerState: C, ...N }) => {
429
+ const S = e[T ?? e.length - 1]?.label;
430
+ return /* @__PURE__ */ o(
431
+ "text",
432
+ {
433
+ ...N,
434
+ style: {
435
+ ...N.style,
436
+ fontWeight: !u && S === i ? "bold" : 400
437
+ },
438
+ children: i
439
+ }
440
+ );
441
+ }
442
+ },
443
+ sx: (i) => ({
444
+ "& .MuiChartsAxis-line": {
445
+ stroke: D ? "none" : i.palette.text?.primary
446
+ },
447
+ "& .MuiChartsAxis-tickContainer:first-of-type .MuiChartsAxis-tick": {
448
+ display: "none"
449
+ },
450
+ "& .MuiChartsAxis-tickLabel": {
451
+ transform: D ? "translateY(15px)" : {}
452
+ }
453
+ }),
454
+ tickLabelStyle: {
455
+ fontSize: 11
456
+ }
457
+ }
458
+ ),
459
+ /* @__PURE__ */ o(
460
+ nt,
461
+ {
462
+ onItemClick: V,
463
+ slots: {
464
+ bar: (i) => {
465
+ const { ownerState: C, ...N } = i;
466
+ return /* @__PURE__ */ o(
467
+ _t,
468
+ {
469
+ ...N,
470
+ colorRange: U,
471
+ data: e,
472
+ dataIndex: C.dataIndex,
473
+ removeSelectedTabColorChange: u,
474
+ selectedTabIndex: T ?? e.length - 1,
475
+ style: {
476
+ height: i.height,
477
+ x: i.x,
478
+ y: i.y,
479
+ width: i.width
480
+ }
481
+ }
482
+ );
483
+ }
484
+ }
485
+ }
486
+ )
487
+ ]
488
+ }
489
+ )
490
+ }
491
+ ),
492
+ b && _ === "bottom" && R
493
+ ] });
494
+ };
495
+ export {
496
+ $t as B,
497
+ _t as C,
498
+ lt as L,
499
+ ot as O,
500
+ wt as S,
501
+ kt as T,
502
+ Gt as Z,
503
+ Ht as a,
504
+ Kt as b,
505
+ ct as c,
506
+ Mt as h,
507
+ bt as p,
508
+ vt as s,
509
+ w as u
510
+ };