@layerfi/components 0.1.64 → 0.1.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +103 -33
- package/dist/esm/index.js.map +2 -2
- package/dist/index.d.ts +34 -16
- package/dist/index.js +103 -33
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -723,8 +723,9 @@ declare module '@layerfi/components/components/ActionableList/ActionableList' {
|
|
|
723
723
|
options: ActionableListOption<T>[];
|
|
724
724
|
onClick: (item: ActionableListOption<T>) => void;
|
|
725
725
|
selectedId?: string;
|
|
726
|
+
showDescriptions?: boolean;
|
|
726
727
|
}
|
|
727
|
-
export const ActionableList: <T>({ options, onClick, selectedId, }: ActionableListProps<T>) => React.JSX.Element;
|
|
728
|
+
export const ActionableList: <T>({ options, onClick, selectedId, showDescriptions, }: ActionableListProps<T>) => React.JSX.Element;
|
|
728
729
|
export {};
|
|
729
730
|
|
|
730
731
|
}
|
|
@@ -896,9 +897,10 @@ declare module '@layerfi/components/components/BankTransactionList/BankTransacti
|
|
|
896
897
|
removeTransaction: (bt: BankTransaction) => void;
|
|
897
898
|
showDescriptions?: boolean;
|
|
898
899
|
showReceiptUploads?: boolean;
|
|
900
|
+
showTooltips: boolean;
|
|
899
901
|
stringOverrides?: BankTransactionCTAStringOverrides;
|
|
900
902
|
}
|
|
901
|
-
export const BankTransactionList: ({ bankTransactions, editable, removeTransaction, mode, containerWidth, showDescriptions, showReceiptUploads, stringOverrides, }: BankTransactionListProps) => React.JSX.Element;
|
|
903
|
+
export const BankTransactionList: ({ bankTransactions, editable, removeTransaction, mode, containerWidth, showDescriptions, showReceiptUploads, showTooltips, stringOverrides, }: BankTransactionListProps) => React.JSX.Element;
|
|
902
904
|
export {};
|
|
903
905
|
|
|
904
906
|
}
|
|
@@ -914,11 +916,12 @@ declare module '@layerfi/components/components/BankTransactionList/BankTransacti
|
|
|
914
916
|
mode: BankTransactionsMode;
|
|
915
917
|
showDescriptions: boolean;
|
|
916
918
|
showReceiptUploads: boolean;
|
|
919
|
+
showTooltips: boolean;
|
|
917
920
|
removeTransaction: (bt: BankTransaction) => void;
|
|
918
921
|
containerWidth?: number;
|
|
919
922
|
stringOverrides?: BankTransactionCTAStringOverrides;
|
|
920
923
|
};
|
|
921
|
-
export const BankTransactionListItem: ({ index, dateFormat, bankTransaction, editable, mode, showDescriptions, showReceiptUploads, containerWidth, removeTransaction, stringOverrides, }: Props) => React.JSX.Element;
|
|
924
|
+
export const BankTransactionListItem: ({ index, dateFormat, bankTransaction, editable, mode, showDescriptions, showReceiptUploads, showTooltips, containerWidth, removeTransaction, stringOverrides, }: Props) => React.JSX.Element;
|
|
922
925
|
export {};
|
|
923
926
|
|
|
924
927
|
}
|
|
@@ -933,8 +936,9 @@ declare module '@layerfi/components/components/BankTransactionMobileList/BankTra
|
|
|
933
936
|
interface BankTransactionMobileFormsProps {
|
|
934
937
|
purpose: Purpose;
|
|
935
938
|
bankTransaction: BankTransaction;
|
|
939
|
+
showTooltips: boolean;
|
|
936
940
|
}
|
|
937
|
-
export const BankTransactionMobileForms: ({ purpose, bankTransaction, }: BankTransactionMobileFormsProps) => React.JSX.Element;
|
|
941
|
+
export const BankTransactionMobileForms: ({ purpose, bankTransaction, showTooltips, }: BankTransactionMobileFormsProps) => React.JSX.Element;
|
|
938
942
|
export {};
|
|
939
943
|
|
|
940
944
|
}
|
|
@@ -947,9 +951,10 @@ declare module '@layerfi/components/components/BankTransactionMobileList/BankTra
|
|
|
947
951
|
editable: boolean;
|
|
948
952
|
removeTransaction: (bt: BankTransaction) => void;
|
|
949
953
|
initialLoad?: boolean;
|
|
954
|
+
showTooltips: boolean;
|
|
950
955
|
mode: BankTransactionsMode;
|
|
951
956
|
}
|
|
952
|
-
export const BankTransactionMobileList: ({ bankTransactions, removeTransaction, editable, initialLoad, mode, }: BankTransactionMobileListProps) => React.JSX.Element;
|
|
957
|
+
export const BankTransactionMobileList: ({ bankTransactions, removeTransaction, editable, initialLoad, showTooltips, mode, }: BankTransactionMobileListProps) => React.JSX.Element;
|
|
953
958
|
|
|
954
959
|
}
|
|
955
960
|
declare module '@layerfi/components/components/BankTransactionMobileList/BankTransactionMobileListItem' {
|
|
@@ -962,6 +967,7 @@ declare module '@layerfi/components/components/BankTransactionMobileList/BankTra
|
|
|
962
967
|
editable: boolean;
|
|
963
968
|
removeTransaction: (bt: BankTransaction) => void;
|
|
964
969
|
initialLoad?: boolean;
|
|
970
|
+
showTooltips: boolean;
|
|
965
971
|
mode: BankTransactionsMode;
|
|
966
972
|
isFirstItem?: boolean;
|
|
967
973
|
}
|
|
@@ -970,7 +976,7 @@ declare module '@layerfi/components/components/BankTransactionMobileList/BankTra
|
|
|
970
976
|
personal = "personal",
|
|
971
977
|
more = "more"
|
|
972
978
|
}
|
|
973
|
-
export const BankTransactionMobileListItem: ({ index, bankTransaction, removeTransaction, editable, mode, initialLoad, isFirstItem, }: BankTransactionMobileListItemProps) => React.JSX.Element;
|
|
979
|
+
export const BankTransactionMobileListItem: ({ index, bankTransaction, removeTransaction, editable, mode, initialLoad, showTooltips, isFirstItem, }: BankTransactionMobileListItemProps) => React.JSX.Element;
|
|
974
980
|
|
|
975
981
|
}
|
|
976
982
|
declare module '@layerfi/components/components/BankTransactionMobileList/BusinessCategories' {
|
|
@@ -979,8 +985,9 @@ declare module '@layerfi/components/components/BankTransactionMobileList/Busines
|
|
|
979
985
|
export interface BusinessCategoriesProps {
|
|
980
986
|
select: (category: Option) => void;
|
|
981
987
|
selectedId?: string;
|
|
988
|
+
showTooltips: boolean;
|
|
982
989
|
}
|
|
983
|
-
export const BusinessCategories: ({ select, selectedId, }: BusinessCategoriesProps) => React.JSX.Element;
|
|
990
|
+
export const BusinessCategories: ({ select, selectedId, showTooltips }: BusinessCategoriesProps) => React.JSX.Element;
|
|
984
991
|
|
|
985
992
|
}
|
|
986
993
|
declare module '@layerfi/components/components/BankTransactionMobileList/BusinessForm' {
|
|
@@ -988,8 +995,9 @@ declare module '@layerfi/components/components/BankTransactionMobileList/Busines
|
|
|
988
995
|
import { BankTransaction } from '@layerfi/components/types';
|
|
989
996
|
interface BusinessFormProps {
|
|
990
997
|
bankTransaction: BankTransaction;
|
|
998
|
+
showTooltips: boolean;
|
|
991
999
|
}
|
|
992
|
-
export const BusinessForm: ({ bankTransaction }: BusinessFormProps) => React.JSX.Element;
|
|
1000
|
+
export const BusinessForm: ({ bankTransaction, showTooltips, }: BusinessFormProps) => React.JSX.Element;
|
|
993
1001
|
export {};
|
|
994
1002
|
|
|
995
1003
|
}
|
|
@@ -1016,16 +1024,18 @@ declare module '@layerfi/components/components/BankTransactionMobileList/SplitAn
|
|
|
1016
1024
|
import { BankTransaction } from '@layerfi/components/types';
|
|
1017
1025
|
interface SplitAndMatchFormProps {
|
|
1018
1026
|
bankTransaction: BankTransaction;
|
|
1027
|
+
showTooltips: boolean;
|
|
1019
1028
|
}
|
|
1020
|
-
export const SplitAndMatchForm: ({ bankTransaction, }: SplitAndMatchFormProps) => React.JSX.Element;
|
|
1029
|
+
export const SplitAndMatchForm: ({ bankTransaction, showTooltips, }: SplitAndMatchFormProps) => React.JSX.Element;
|
|
1021
1030
|
export {};
|
|
1022
1031
|
|
|
1023
1032
|
}
|
|
1024
1033
|
declare module '@layerfi/components/components/BankTransactionMobileList/SplitForm' {
|
|
1025
1034
|
import React from 'react';
|
|
1026
1035
|
import { BankTransaction } from '@layerfi/components/types';
|
|
1027
|
-
export const SplitForm: ({ bankTransaction, }: {
|
|
1036
|
+
export const SplitForm: ({ bankTransaction, showTooltips, }: {
|
|
1028
1037
|
bankTransaction: BankTransaction;
|
|
1038
|
+
showTooltips: boolean;
|
|
1029
1039
|
}) => React.JSX.Element;
|
|
1030
1040
|
|
|
1031
1041
|
}
|
|
@@ -1091,13 +1101,14 @@ declare module '@layerfi/components/components/BankTransactionRow/BankTransactio
|
|
|
1091
1101
|
initialLoad?: boolean;
|
|
1092
1102
|
showDescriptions: boolean;
|
|
1093
1103
|
showReceiptUploads: boolean;
|
|
1104
|
+
showTooltips: boolean;
|
|
1094
1105
|
mode: BankTransactionsMode;
|
|
1095
1106
|
stringOverrides?: BankTransactionCTAStringOverrides;
|
|
1096
1107
|
};
|
|
1097
1108
|
export type LastSubmittedForm = 'simple' | 'match' | 'split' | undefined;
|
|
1098
1109
|
export const extractDescriptionForSplit: (category: Category) => string;
|
|
1099
1110
|
export const getDefaultSelectedCategory: (bankTransaction: BankTransaction) => import("@layerfi/components/components/CategorySelect/CategorySelect").CategoryOption | undefined;
|
|
1100
|
-
export const BankTransactionRow: ({ index, editable, dateFormat, bankTransaction, mode, removeTransaction, containerWidth, initialLoad, showDescriptions, showReceiptUploads, stringOverrides, }: Props) => React.JSX.Element;
|
|
1111
|
+
export const BankTransactionRow: ({ index, editable, dateFormat, bankTransaction, mode, removeTransaction, containerWidth, initialLoad, showDescriptions, showReceiptUploads, showTooltips, stringOverrides, }: Props) => React.JSX.Element;
|
|
1101
1112
|
export {};
|
|
1102
1113
|
|
|
1103
1114
|
}
|
|
@@ -1149,6 +1160,7 @@ declare module '@layerfi/components/components/BankTransactions/BankTransactions
|
|
|
1149
1160
|
mode?: BankTransactionsMode;
|
|
1150
1161
|
showDescriptions?: boolean;
|
|
1151
1162
|
showReceiptUploads?: boolean;
|
|
1163
|
+
showTooltips?: boolean;
|
|
1152
1164
|
monthlyView?: boolean;
|
|
1153
1165
|
categorizeView?: boolean;
|
|
1154
1166
|
mobileComponent?: MobileComponentType;
|
|
@@ -1223,8 +1235,9 @@ declare module '@layerfi/components/components/BankTransactions/utils' {
|
|
|
1223
1235
|
}
|
|
1224
1236
|
declare module '@layerfi/components/components/BankTransactionsLoader/BankTransactionsLoader' {
|
|
1225
1237
|
import React from 'react';
|
|
1226
|
-
export const BankTransactionsLoader: ({ isLoading, }: {
|
|
1238
|
+
export const BankTransactionsLoader: ({ isLoading, showTooltips }: {
|
|
1227
1239
|
isLoading: boolean;
|
|
1240
|
+
showTooltips: boolean;
|
|
1228
1241
|
}) => React.JSX.Element;
|
|
1229
1242
|
|
|
1230
1243
|
}
|
|
@@ -1255,13 +1268,14 @@ declare module '@layerfi/components/components/BankTransactionsTable/BankTransac
|
|
|
1255
1268
|
removeTransaction: (bt: BankTransaction) => void;
|
|
1256
1269
|
showDescriptions?: boolean;
|
|
1257
1270
|
showReceiptUploads?: boolean;
|
|
1271
|
+
showTooltips: boolean;
|
|
1258
1272
|
stringOverrides?: BankTransactionsStringOverrides;
|
|
1259
1273
|
isSyncing?: boolean;
|
|
1260
1274
|
page?: number;
|
|
1261
1275
|
lastPage?: boolean;
|
|
1262
1276
|
onRefresh?: () => void;
|
|
1263
1277
|
}
|
|
1264
|
-
export const BankTransactionsTable: ({ categorizeView, editable, isLoading, bankTransactions, mode, initialLoad, containerWidth, removeTransaction, showDescriptions, showReceiptUploads, stringOverrides, isSyncing, page, lastPage, onRefresh, }: BankTransactionsTableProps) => React.JSX.Element;
|
|
1278
|
+
export const BankTransactionsTable: ({ categorizeView, editable, isLoading, bankTransactions, mode, initialLoad, containerWidth, removeTransaction, showDescriptions, showReceiptUploads, showTooltips, stringOverrides, isSyncing, page, lastPage, onRefresh, }: BankTransactionsTableProps) => React.JSX.Element;
|
|
1265
1279
|
export {};
|
|
1266
1280
|
|
|
1267
1281
|
}
|
|
@@ -1458,6 +1472,7 @@ declare module '@layerfi/components/components/CategorySelect/CategorySelect' {
|
|
|
1458
1472
|
onChange: (newValue: CategoryOption) => void;
|
|
1459
1473
|
disabled?: boolean;
|
|
1460
1474
|
className?: string;
|
|
1475
|
+
showTooltips: boolean;
|
|
1461
1476
|
excludeMatches?: boolean;
|
|
1462
1477
|
asDrawer?: boolean;
|
|
1463
1478
|
};
|
|
@@ -1486,7 +1501,7 @@ declare module '@layerfi/components/components/CategorySelect/CategorySelect' {
|
|
|
1486
1501
|
export const mapCategoryToOption: (category: Category) => CategoryOption;
|
|
1487
1502
|
export const mapCategoryToExclusionOption: (category: Category) => CategoryOption;
|
|
1488
1503
|
export const mapSuggestedMatchToOption: (record: SuggestedMatch) => CategoryOption;
|
|
1489
|
-
export const CategorySelect: ({ bankTransaction, name, value, onChange, disabled, className, excludeMatches, asDrawer, }: Props) => React.JSX.Element;
|
|
1504
|
+
export const CategorySelect: ({ bankTransaction, name, value, onChange, disabled, className, showTooltips, excludeMatches, asDrawer, }: Props) => React.JSX.Element;
|
|
1490
1505
|
export {};
|
|
1491
1506
|
|
|
1492
1507
|
}
|
|
@@ -1496,8 +1511,9 @@ declare module '@layerfi/components/components/CategorySelect/CategorySelectDraw
|
|
|
1496
1511
|
interface CategorySelectDrawerProps {
|
|
1497
1512
|
onSelect: (value: CategoryOption) => void;
|
|
1498
1513
|
selected?: CategoryOption;
|
|
1514
|
+
showTooltips: boolean;
|
|
1499
1515
|
}
|
|
1500
|
-
export const CategorySelectDrawer: ({ onSelect, selected, }: CategorySelectDrawerProps) => React.JSX.Element;
|
|
1516
|
+
export const CategorySelectDrawer: ({ onSelect, selected, showTooltips, }: CategorySelectDrawerProps) => React.JSX.Element;
|
|
1501
1517
|
export {};
|
|
1502
1518
|
|
|
1503
1519
|
}
|
|
@@ -1861,6 +1877,7 @@ declare module '@layerfi/components/components/ExpandedBankTransactionRow/Expand
|
|
|
1861
1877
|
categorized?: boolean;
|
|
1862
1878
|
showDescriptions: boolean;
|
|
1863
1879
|
showReceiptUploads: boolean;
|
|
1880
|
+
showTooltips: boolean;
|
|
1864
1881
|
};
|
|
1865
1882
|
export type SaveHandle = {
|
|
1866
1883
|
save: () => void;
|
|
@@ -5812,11 +5829,12 @@ declare module '@layerfi/components/views/BankTransactionsWithLinkedAccounts/Ban
|
|
|
5812
5829
|
showBreakConnection?: boolean;
|
|
5813
5830
|
showDescriptions?: boolean;
|
|
5814
5831
|
showReceiptUploads?: boolean;
|
|
5832
|
+
showTooltips?: boolean;
|
|
5815
5833
|
mode?: BankTransactionsMode;
|
|
5816
5834
|
mobileComponent?: MobileComponentType;
|
|
5817
5835
|
stringOverrides?: BankTransactionsWithLinkedAccountsStringOverrides;
|
|
5818
5836
|
}
|
|
5819
|
-
export const BankTransactionsWithLinkedAccounts: ({ title, showTitle, elevatedLinkedAccounts, showLedgerBalance, showUnlinkItem, showBreakConnection, mode, showDescriptions, showReceiptUploads, mobileComponent, stringOverrides, }: BankTransactionsWithLinkedAccountsProps) => React.JSX.Element;
|
|
5837
|
+
export const BankTransactionsWithLinkedAccounts: ({ title, showTitle, elevatedLinkedAccounts, showLedgerBalance, showUnlinkItem, showBreakConnection, mode, showDescriptions, showReceiptUploads, showTooltips, mobileComponent, stringOverrides, }: BankTransactionsWithLinkedAccountsProps) => React.JSX.Element;
|
|
5820
5838
|
export {};
|
|
5821
5839
|
|
|
5822
5840
|
}
|
package/dist/index.js
CHANGED
|
@@ -4920,7 +4920,8 @@ var import_classnames23 = __toESM(require("classnames"));
|
|
|
4920
4920
|
var ActionableList = ({
|
|
4921
4921
|
options,
|
|
4922
4922
|
onClick,
|
|
4923
|
-
selectedId
|
|
4923
|
+
selectedId,
|
|
4924
|
+
showDescriptions = false
|
|
4924
4925
|
}) => {
|
|
4925
4926
|
return /* @__PURE__ */ import_react55.default.createElement("ul", { className: "Layer__actionable-list" }, options.map((x, idx) => /* @__PURE__ */ import_react55.default.createElement(
|
|
4926
4927
|
"li",
|
|
@@ -4939,7 +4940,7 @@ var ActionableList = ({
|
|
|
4939
4940
|
{ className: "Layer__actionable-list__content" },
|
|
4940
4941
|
/* @__PURE__ */ import_react55.default.createElement(Text, { size: "sm" /* sm */ }, x.label),
|
|
4941
4942
|
/*TODO: Replace 'See all categories' with something more generic*/
|
|
4942
|
-
x.description && x.label !== "See all categories" && /* @__PURE__ */ import_react55.default.createElement(
|
|
4943
|
+
showDescriptions && x.description && x.label !== "See all categories" && /* @__PURE__ */ import_react55.default.createElement(
|
|
4943
4944
|
Text,
|
|
4944
4945
|
{
|
|
4945
4946
|
className: "Layer__actionable-list__content-description",
|
|
@@ -5025,7 +5026,8 @@ var getAssignedValue = (bankTransaction) => {
|
|
|
5025
5026
|
// src/components/BankTransactionMobileList/BusinessCategories.tsx
|
|
5026
5027
|
var BusinessCategories = ({
|
|
5027
5028
|
select,
|
|
5028
|
-
selectedId
|
|
5029
|
+
selectedId,
|
|
5030
|
+
showTooltips
|
|
5029
5031
|
}) => {
|
|
5030
5032
|
const { categories } = useLayerContext();
|
|
5031
5033
|
const categoryOptions = flattenCategories(
|
|
@@ -5053,7 +5055,8 @@ var BusinessCategories = ({
|
|
|
5053
5055
|
{
|
|
5054
5056
|
options: optionsToShow,
|
|
5055
5057
|
onClick: onCategorySelect,
|
|
5056
|
-
selectedId
|
|
5058
|
+
selectedId,
|
|
5059
|
+
showDescriptions: showTooltips
|
|
5057
5060
|
}
|
|
5058
5061
|
));
|
|
5059
5062
|
};
|
|
@@ -5062,7 +5065,8 @@ var BusinessCategories = ({
|
|
|
5062
5065
|
var import_classnames24 = __toESM(require("classnames"));
|
|
5063
5066
|
var CategorySelectDrawer = ({
|
|
5064
5067
|
onSelect,
|
|
5065
|
-
selected
|
|
5068
|
+
selected,
|
|
5069
|
+
showTooltips
|
|
5066
5070
|
}) => {
|
|
5067
5071
|
const { setContent, close } = (0, import_react57.useContext)(DrawerContext);
|
|
5068
5072
|
const onDrawerCategorySelect = (value) => {
|
|
@@ -5082,7 +5086,8 @@ var CategorySelectDrawer = ({
|
|
|
5082
5086
|
CategorySelectDrawerContent,
|
|
5083
5087
|
{
|
|
5084
5088
|
selected,
|
|
5085
|
-
onSelect: onDrawerCategorySelect
|
|
5089
|
+
onSelect: onDrawerCategorySelect,
|
|
5090
|
+
showTooltips: true
|
|
5086
5091
|
}
|
|
5087
5092
|
)
|
|
5088
5093
|
)
|
|
@@ -5099,7 +5104,8 @@ var CategorySelectDrawer = ({
|
|
|
5099
5104
|
};
|
|
5100
5105
|
var CategorySelectDrawerContent = ({
|
|
5101
5106
|
onSelect,
|
|
5102
|
-
selected
|
|
5107
|
+
selected,
|
|
5108
|
+
showTooltips
|
|
5103
5109
|
}) => /* @__PURE__ */ import_react57.default.createElement(
|
|
5104
5110
|
BusinessCategories,
|
|
5105
5111
|
{
|
|
@@ -5111,7 +5117,8 @@ var CategorySelectDrawerContent = ({
|
|
|
5111
5117
|
}
|
|
5112
5118
|
});
|
|
5113
5119
|
},
|
|
5114
|
-
selectedId: selected?.payload?.id
|
|
5120
|
+
selectedId: selected?.payload?.id,
|
|
5121
|
+
showTooltips
|
|
5115
5122
|
}
|
|
5116
5123
|
);
|
|
5117
5124
|
|
|
@@ -5195,7 +5202,7 @@ var Option2 = (props) => {
|
|
|
5195
5202
|
className: `Layer__select__option-menu-content ${props.className}`
|
|
5196
5203
|
},
|
|
5197
5204
|
/* @__PURE__ */ import_react58.default.createElement("div", { className: "Layer__select__option-menu--name" }, props.isSelected ? /* @__PURE__ */ import_react58.default.createElement("span", { className: "Layer__select__option-menu-content-check" }, /* @__PURE__ */ import_react58.default.createElement(Check_default, { size: 16 })) : /* @__PURE__ */ import_react58.default.createElement("span", { className: "Layer__select__option-menu-content-check" }, /* @__PURE__ */ import_react58.default.createElement("div", { style: { width: 16, height: 16 } })), /* @__PURE__ */ import_react58.default.createElement("div", null, props.data.payload.display_name)),
|
|
5198
|
-
props.data.payload.description && /* @__PURE__ */ import_react58.default.createElement("div", { className: "Layer__select__option-menu--tooltip" }, /* @__PURE__ */ import_react58.default.createElement(Tooltip, null, /* @__PURE__ */ import_react58.default.createElement(TooltipTrigger, null, /* @__PURE__ */ import_react58.default.createElement(InfoIcon_default, null)), /* @__PURE__ */ import_react58.default.createElement(TooltipContent, { className: "Layer__actionable-list__tooltip-content" }, /* @__PURE__ */ import_react58.default.createElement(
|
|
5205
|
+
props.showTooltips && props.data.payload.description && /* @__PURE__ */ import_react58.default.createElement("div", { className: "Layer__select__option-menu--tooltip" }, /* @__PURE__ */ import_react58.default.createElement(Tooltip, null, /* @__PURE__ */ import_react58.default.createElement(TooltipTrigger, null, /* @__PURE__ */ import_react58.default.createElement(InfoIcon_default, null)), /* @__PURE__ */ import_react58.default.createElement(TooltipContent, { className: "Layer__actionable-list__tooltip-content" }, /* @__PURE__ */ import_react58.default.createElement(
|
|
5199
5206
|
Text,
|
|
5200
5207
|
{
|
|
5201
5208
|
className: "Layer__actionable-list__content-description",
|
|
@@ -5244,6 +5251,7 @@ var CategorySelect = ({
|
|
|
5244
5251
|
onChange,
|
|
5245
5252
|
disabled,
|
|
5246
5253
|
className,
|
|
5254
|
+
showTooltips,
|
|
5247
5255
|
excludeMatches = false,
|
|
5248
5256
|
asDrawer = false
|
|
5249
5257
|
}) => {
|
|
@@ -5283,7 +5291,14 @@ var CategorySelect = ({
|
|
|
5283
5291
|
const selected = value ? value : !excludeMatches && matchOptions?.length === 1 && matchOptions[0].options.length === 1 ? matchOptions[0].options[0] : void 0;
|
|
5284
5292
|
const placeholder = matchOptions?.length === 1 && matchOptions[0].options.length > 1 ? `${matchOptions[0].options.length} possible matches...` : "Categorize or match...";
|
|
5285
5293
|
if (asDrawer) {
|
|
5286
|
-
return /* @__PURE__ */ import_react58.default.createElement(
|
|
5294
|
+
return /* @__PURE__ */ import_react58.default.createElement(
|
|
5295
|
+
CategorySelectDrawer,
|
|
5296
|
+
{
|
|
5297
|
+
onSelect: onChange,
|
|
5298
|
+
selected: value,
|
|
5299
|
+
showTooltips
|
|
5300
|
+
}
|
|
5301
|
+
);
|
|
5287
5302
|
}
|
|
5288
5303
|
return /* @__PURE__ */ import_react58.default.createElement(
|
|
5289
5304
|
import_react_select.default,
|
|
@@ -5307,7 +5322,11 @@ var CategorySelect = ({
|
|
|
5307
5322
|
styles: {
|
|
5308
5323
|
menuPortal: (base) => ({ ...base, zIndex: 9999 })
|
|
5309
5324
|
},
|
|
5310
|
-
components: {
|
|
5325
|
+
components: {
|
|
5326
|
+
DropdownIndicator,
|
|
5327
|
+
GroupHeading,
|
|
5328
|
+
Option: (optionProps) => /* @__PURE__ */ import_react58.default.createElement(Option2, { ...optionProps, showTooltips })
|
|
5329
|
+
},
|
|
5311
5330
|
isDisabled: disabled,
|
|
5312
5331
|
isOptionDisabled: (option) => option.disabled ?? false,
|
|
5313
5332
|
isOptionSelected: (option) => selected?.payload.display_name == option.payload.display_name
|
|
@@ -6142,7 +6161,8 @@ var ExpandedBankTransactionRow = (0, import_react71.forwardRef)(
|
|
|
6142
6161
|
containerWidth,
|
|
6143
6162
|
showDescriptions,
|
|
6144
6163
|
mode,
|
|
6145
|
-
showReceiptUploads
|
|
6164
|
+
showReceiptUploads,
|
|
6165
|
+
showTooltips
|
|
6146
6166
|
}, ref) => {
|
|
6147
6167
|
const {
|
|
6148
6168
|
categorize: categorizeBankTransaction2,
|
|
@@ -6496,7 +6516,8 @@ var ExpandedBankTransactionRow = (0, import_react71.forwardRef)(
|
|
|
6496
6516
|
onChange: (value) => changeCategory(index, value),
|
|
6497
6517
|
className: "Layer__category-menu--full",
|
|
6498
6518
|
disabled: bankTransaction.processing || !categorizationEnabled(mode),
|
|
6499
|
-
excludeMatches: true
|
|
6519
|
+
excludeMatches: true,
|
|
6520
|
+
showTooltips
|
|
6500
6521
|
}
|
|
6501
6522
|
),
|
|
6502
6523
|
index > 0 && /* @__PURE__ */ import_react71.default.createElement(
|
|
@@ -6665,6 +6686,7 @@ var BankTransactionRow = ({
|
|
|
6665
6686
|
initialLoad,
|
|
6666
6687
|
showDescriptions,
|
|
6667
6688
|
showReceiptUploads,
|
|
6689
|
+
showTooltips,
|
|
6668
6690
|
stringOverrides
|
|
6669
6691
|
}) => {
|
|
6670
6692
|
const expandedRowRef = (0, import_react73.useRef)(null);
|
|
@@ -6820,7 +6842,8 @@ var BankTransactionRow = ({
|
|
|
6820
6842
|
setSelectedCategory(category);
|
|
6821
6843
|
setShowRetry(false);
|
|
6822
6844
|
},
|
|
6823
|
-
disabled: bankTransaction.processing
|
|
6845
|
+
disabled: bankTransaction.processing,
|
|
6846
|
+
showTooltips
|
|
6824
6847
|
}
|
|
6825
6848
|
) : null,
|
|
6826
6849
|
categorized && !open ? /* @__PURE__ */ import_react73.default.createElement(Text, { as: "span", className: `${className}__category-text` }, bankTransaction.categorization_status === "SPLIT" /* SPLIT */ && /* @__PURE__ */ import_react73.default.createElement(import_react73.default.Fragment, null, /* @__PURE__ */ import_react73.default.createElement(
|
|
@@ -6912,7 +6935,8 @@ var BankTransactionRow = ({
|
|
|
6912
6935
|
close: () => setOpen(false),
|
|
6913
6936
|
containerWidth,
|
|
6914
6937
|
showDescriptions,
|
|
6915
|
-
showReceiptUploads
|
|
6938
|
+
showReceiptUploads,
|
|
6939
|
+
showTooltips
|
|
6916
6940
|
}
|
|
6917
6941
|
))));
|
|
6918
6942
|
};
|
|
@@ -6965,6 +6989,7 @@ var BankTransactionListItem = ({
|
|
|
6965
6989
|
mode,
|
|
6966
6990
|
showDescriptions,
|
|
6967
6991
|
showReceiptUploads,
|
|
6992
|
+
showTooltips,
|
|
6968
6993
|
containerWidth,
|
|
6969
6994
|
removeTransaction,
|
|
6970
6995
|
stringOverrides
|
|
@@ -7061,7 +7086,8 @@ var BankTransactionListItem = ({
|
|
|
7061
7086
|
submitBtnText: categorized ? stringOverrides?.updateButtonText || "Update" : stringOverrides?.approveButtonText || "Approve",
|
|
7062
7087
|
containerWidth,
|
|
7063
7088
|
showDescriptions,
|
|
7064
|
-
showReceiptUploads
|
|
7089
|
+
showReceiptUploads,
|
|
7090
|
+
showTooltips
|
|
7065
7091
|
}
|
|
7066
7092
|
)), /* @__PURE__ */ import_react75.default.createElement("span", { className: `${className}__base-row` }, !categorized ? /* @__PURE__ */ import_react75.default.createElement(
|
|
7067
7093
|
CategorySelect,
|
|
@@ -7073,7 +7099,8 @@ var BankTransactionListItem = ({
|
|
|
7073
7099
|
setShowRetry(false);
|
|
7074
7100
|
setSelectedCategory(category);
|
|
7075
7101
|
},
|
|
7076
|
-
disabled: bankTransaction.processing
|
|
7102
|
+
disabled: bankTransaction.processing,
|
|
7103
|
+
showTooltips
|
|
7077
7104
|
}
|
|
7078
7105
|
) : null, categorized ? /* @__PURE__ */ import_react75.default.createElement(Assignment, { bankTransaction }) : null, !categorized && !showRetry ? /* @__PURE__ */ import_react75.default.createElement(
|
|
7079
7106
|
SubmitButton,
|
|
@@ -7113,6 +7140,7 @@ var BankTransactionList = ({
|
|
|
7113
7140
|
containerWidth,
|
|
7114
7141
|
showDescriptions = false,
|
|
7115
7142
|
showReceiptUploads = false,
|
|
7143
|
+
showTooltips,
|
|
7116
7144
|
stringOverrides
|
|
7117
7145
|
}) => {
|
|
7118
7146
|
return /* @__PURE__ */ import_react76.default.createElement("ul", { className: "Layer__bank-transactions__list" }, bankTransactions?.map(
|
|
@@ -7129,6 +7157,7 @@ var BankTransactionList = ({
|
|
|
7129
7157
|
containerWidth,
|
|
7130
7158
|
showDescriptions,
|
|
7131
7159
|
showReceiptUploads,
|
|
7160
|
+
showTooltips,
|
|
7132
7161
|
stringOverrides
|
|
7133
7162
|
}
|
|
7134
7163
|
)
|
|
@@ -7146,7 +7175,10 @@ var import_react82 = __toESM(require("react"));
|
|
|
7146
7175
|
|
|
7147
7176
|
// src/components/BankTransactionMobileList/BusinessForm.tsx
|
|
7148
7177
|
var import_react77 = __toESM(require("react"));
|
|
7149
|
-
var BusinessForm = ({
|
|
7178
|
+
var BusinessForm = ({
|
|
7179
|
+
bankTransaction,
|
|
7180
|
+
showTooltips
|
|
7181
|
+
}) => {
|
|
7150
7182
|
const { setContent, close } = (0, import_react77.useContext)(DrawerContext);
|
|
7151
7183
|
const { categorize: categorizeBankTransaction2, isLoading } = useBankTransactionsContext();
|
|
7152
7184
|
const [selectedCategory, setSelectedCategory] = (0, import_react77.useState)(
|
|
@@ -7188,7 +7220,8 @@ var BusinessForm = ({ bankTransaction }) => {
|
|
|
7188
7220
|
BusinessCategories,
|
|
7189
7221
|
{
|
|
7190
7222
|
selectedId: selectedCategory?.id,
|
|
7191
|
-
select: onDrawerCategorySelect
|
|
7223
|
+
select: onDrawerCategorySelect,
|
|
7224
|
+
showTooltips
|
|
7192
7225
|
}
|
|
7193
7226
|
)
|
|
7194
7227
|
);
|
|
@@ -7229,7 +7262,8 @@ var BusinessForm = ({ bankTransaction }) => {
|
|
|
7229
7262
|
{
|
|
7230
7263
|
options,
|
|
7231
7264
|
onClick: onCategorySelect,
|
|
7232
|
-
selectedId: selectedCategory?.id
|
|
7265
|
+
selectedId: selectedCategory?.id,
|
|
7266
|
+
showDescriptions: showTooltips
|
|
7233
7267
|
}
|
|
7234
7268
|
), options.length === 0 ? /* @__PURE__ */ import_react77.default.createElement(
|
|
7235
7269
|
Button,
|
|
@@ -7366,7 +7400,8 @@ var MatchForm2 = ({
|
|
|
7366
7400
|
var import_react80 = __toESM(require("react"));
|
|
7367
7401
|
var import_classnames38 = __toESM(require("classnames"));
|
|
7368
7402
|
var SplitForm = ({
|
|
7369
|
-
bankTransaction
|
|
7403
|
+
bankTransaction,
|
|
7404
|
+
showTooltips
|
|
7370
7405
|
}) => {
|
|
7371
7406
|
const {
|
|
7372
7407
|
categorize: categorizeBankTransaction2,
|
|
@@ -7517,7 +7552,8 @@ var SplitForm = ({
|
|
|
7517
7552
|
className: "Layer__category-menu--full",
|
|
7518
7553
|
disabled: bankTransaction.processing,
|
|
7519
7554
|
excludeMatches: true,
|
|
7520
|
-
asDrawer: true
|
|
7555
|
+
asDrawer: true,
|
|
7556
|
+
showTooltips
|
|
7521
7557
|
}
|
|
7522
7558
|
)),
|
|
7523
7559
|
/* @__PURE__ */ import_react80.default.createElement(
|
|
@@ -7569,28 +7605,48 @@ var SplitForm = ({
|
|
|
7569
7605
|
|
|
7570
7606
|
// src/components/BankTransactionMobileList/SplitAndMatchForm.tsx
|
|
7571
7607
|
var SplitAndMatchForm = ({
|
|
7572
|
-
bankTransaction
|
|
7608
|
+
bankTransaction,
|
|
7609
|
+
showTooltips
|
|
7573
7610
|
}) => {
|
|
7574
7611
|
const anyMatch = hasMatch(bankTransaction);
|
|
7575
7612
|
const [formType, setFormType] = (0, import_react81.useState)(
|
|
7576
7613
|
bankTransaction.category ? "categorize" /* categorize */ : anyMatch ? "match" /* match */ : "categorize" /* categorize */
|
|
7577
7614
|
);
|
|
7578
|
-
return /* @__PURE__ */ import_react81.default.createElement("div", { className: "Layer__bank-transaction-mobile-list-item__split-and-match-form" }, formType === "categorize" /* categorize */ && /* @__PURE__ */ import_react81.default.createElement(
|
|
7615
|
+
return /* @__PURE__ */ import_react81.default.createElement("div", { className: "Layer__bank-transaction-mobile-list-item__split-and-match-form" }, formType === "categorize" /* categorize */ && /* @__PURE__ */ import_react81.default.createElement(
|
|
7616
|
+
SplitForm,
|
|
7617
|
+
{
|
|
7618
|
+
bankTransaction,
|
|
7619
|
+
showTooltips
|
|
7620
|
+
}
|
|
7621
|
+
), formType === "match" /* match */ && /* @__PURE__ */ import_react81.default.createElement(MatchForm2, { bankTransaction }), anyMatch && formType === "match" /* match */ ? /* @__PURE__ */ import_react81.default.createElement("div", { className: "Layer__bank-transaction-mobile-list-item__switch-form-btns" }, /* @__PURE__ */ import_react81.default.createElement(TextButton, { onClick: () => setFormType("categorize" /* categorize */) }, "or split transaction")) : null, anyMatch && formType === "categorize" /* categorize */ ? /* @__PURE__ */ import_react81.default.createElement("div", { className: "Layer__bank-transaction-mobile-list-item__switch-form-btns" }, /* @__PURE__ */ import_react81.default.createElement(TextButton, { onClick: () => setFormType("match" /* match */) }, "or find match")) : null);
|
|
7579
7622
|
};
|
|
7580
7623
|
|
|
7581
7624
|
// src/components/BankTransactionMobileList/BankTransactionMobileForms.tsx
|
|
7582
7625
|
var BankTransactionMobileForms = ({
|
|
7583
7626
|
purpose,
|
|
7584
|
-
bankTransaction
|
|
7627
|
+
bankTransaction,
|
|
7628
|
+
showTooltips
|
|
7585
7629
|
}) => {
|
|
7586
7630
|
const getContent = () => {
|
|
7587
7631
|
switch (purpose) {
|
|
7588
7632
|
case "business":
|
|
7589
|
-
return /* @__PURE__ */ import_react82.default.createElement(
|
|
7633
|
+
return /* @__PURE__ */ import_react82.default.createElement(
|
|
7634
|
+
BusinessForm,
|
|
7635
|
+
{
|
|
7636
|
+
bankTransaction,
|
|
7637
|
+
showTooltips
|
|
7638
|
+
}
|
|
7639
|
+
);
|
|
7590
7640
|
case "personal":
|
|
7591
7641
|
return /* @__PURE__ */ import_react82.default.createElement(PersonalForm, { bankTransaction });
|
|
7592
7642
|
case "more":
|
|
7593
|
-
return /* @__PURE__ */ import_react82.default.createElement(
|
|
7643
|
+
return /* @__PURE__ */ import_react82.default.createElement(
|
|
7644
|
+
SplitAndMatchForm,
|
|
7645
|
+
{
|
|
7646
|
+
bankTransaction,
|
|
7647
|
+
showTooltips
|
|
7648
|
+
}
|
|
7649
|
+
);
|
|
7594
7650
|
default:
|
|
7595
7651
|
return null;
|
|
7596
7652
|
}
|
|
@@ -7635,6 +7691,7 @@ var BankTransactionMobileListItem = ({
|
|
|
7635
7691
|
editable,
|
|
7636
7692
|
mode,
|
|
7637
7693
|
initialLoad,
|
|
7694
|
+
showTooltips,
|
|
7638
7695
|
isFirstItem = false
|
|
7639
7696
|
}) => {
|
|
7640
7697
|
const {
|
|
@@ -7786,7 +7843,8 @@ var BankTransactionMobileListItem = ({
|
|
|
7786
7843
|
BankTransactionMobileForms,
|
|
7787
7844
|
{
|
|
7788
7845
|
purpose,
|
|
7789
|
-
bankTransaction
|
|
7846
|
+
bankTransaction,
|
|
7847
|
+
showTooltips
|
|
7790
7848
|
}
|
|
7791
7849
|
)
|
|
7792
7850
|
)
|
|
@@ -7799,6 +7857,7 @@ var BankTransactionMobileList = ({
|
|
|
7799
7857
|
removeTransaction,
|
|
7800
7858
|
editable,
|
|
7801
7859
|
initialLoad,
|
|
7860
|
+
showTooltips,
|
|
7802
7861
|
mode
|
|
7803
7862
|
}) => {
|
|
7804
7863
|
const transactionToOpenContextData = useTransactionToOpen();
|
|
@@ -7810,6 +7869,7 @@ var BankTransactionMobileList = ({
|
|
|
7810
7869
|
mode,
|
|
7811
7870
|
key: bankTransaction.id,
|
|
7812
7871
|
bankTransaction,
|
|
7872
|
+
showTooltips,
|
|
7813
7873
|
editable,
|
|
7814
7874
|
removeTransaction,
|
|
7815
7875
|
initialLoad,
|
|
@@ -7879,7 +7939,8 @@ var SkeletonTableLoader = ({
|
|
|
7879
7939
|
|
|
7880
7940
|
// src/components/BankTransactionsLoader/BankTransactionsLoader.tsx
|
|
7881
7941
|
var BankTransactionsLoader = ({
|
|
7882
|
-
isLoading = true
|
|
7942
|
+
isLoading = true,
|
|
7943
|
+
showTooltips
|
|
7883
7944
|
}) => {
|
|
7884
7945
|
const inactiveBankTransactionsActions = /* @__PURE__ */ import_react88.default.createElement("div", { className: "Layer__bank-transaction-row__actions-container Layer__bank-transaction-row__actions-disabled" }, /* @__PURE__ */ import_react88.default.createElement(
|
|
7885
7946
|
CategorySelect,
|
|
@@ -7889,7 +7950,8 @@ var BankTransactionsLoader = ({
|
|
|
7889
7950
|
value: void 0,
|
|
7890
7951
|
onChange: () => {
|
|
7891
7952
|
},
|
|
7892
|
-
disabled: true
|
|
7953
|
+
disabled: true,
|
|
7954
|
+
showTooltips
|
|
7893
7955
|
}
|
|
7894
7956
|
), /* @__PURE__ */ import_react88.default.createElement(
|
|
7895
7957
|
SubmitButton,
|
|
@@ -7972,6 +8034,7 @@ var BankTransactionsTable = ({
|
|
|
7972
8034
|
removeTransaction,
|
|
7973
8035
|
showDescriptions = false,
|
|
7974
8036
|
showReceiptUploads = false,
|
|
8037
|
+
showTooltips,
|
|
7975
8038
|
stringOverrides,
|
|
7976
8039
|
isSyncing = false,
|
|
7977
8040
|
page,
|
|
@@ -7985,7 +8048,7 @@ var BankTransactionsTable = ({
|
|
|
7985
8048
|
className: "Layer__table Layer__bank-transactions__table with-cell-separators"
|
|
7986
8049
|
},
|
|
7987
8050
|
/* @__PURE__ */ import_react90.default.createElement("thead", null, /* @__PURE__ */ import_react90.default.createElement("tr", null, /* @__PURE__ */ import_react90.default.createElement("th", { className: "Layer__table-header Layer__bank-transactions__date-col" }, stringOverrides?.transactionsTable?.dateColumnHeaderText || "Date"), /* @__PURE__ */ import_react90.default.createElement("th", { className: "Layer__table-header Layer__bank-transactions__tx-col" }, stringOverrides?.transactionsTable?.transactionColumnHeaderText || "Transaction"), /* @__PURE__ */ import_react90.default.createElement("th", { className: "Layer__table-header Layer__bank-transactions__account-col" }, stringOverrides?.transactionsTable?.accountColumnHeaderText || "Account"), /* @__PURE__ */ import_react90.default.createElement("th", { className: "Layer__table-header Layer__table-cell--amount Layer__table-cell__amount-col" }, stringOverrides?.transactionsTable?.amountColumnHeaderText || "Amount"), categorizeView && editable ? /* @__PURE__ */ import_react90.default.createElement("th", { className: "Layer__table-header Layer__table-header--primary Layer__table-cell__category-col" }, stringOverrides?.transactionsTable?.categorizeColumnHeaderText || "Categorize") : /* @__PURE__ */ import_react90.default.createElement("th", { className: "Layer__table-header Layer__table-cell__category-col" }, stringOverrides?.transactionsTable?.categoryColumnHeaderText || "Category"))),
|
|
7988
|
-
isLoading && page && page === 1 ? /* @__PURE__ */ import_react90.default.createElement(BankTransactionsLoader, { isLoading: true }) : null,
|
|
8051
|
+
isLoading && page && page === 1 ? /* @__PURE__ */ import_react90.default.createElement(BankTransactionsLoader, { isLoading: true, showTooltips }) : null,
|
|
7989
8052
|
/* @__PURE__ */ import_react90.default.createElement("tbody", null, !isLoading && bankTransactions?.map(
|
|
7990
8053
|
(bankTransaction, index) => /* @__PURE__ */ import_react90.default.createElement(
|
|
7991
8054
|
BankTransactionRow,
|
|
@@ -8001,6 +8064,7 @@ var BankTransactionsTable = ({
|
|
|
8001
8064
|
containerWidth,
|
|
8002
8065
|
showDescriptions,
|
|
8003
8066
|
showReceiptUploads,
|
|
8067
|
+
showTooltips,
|
|
8004
8068
|
stringOverrides: stringOverrides?.bankTransactionCTAs
|
|
8005
8069
|
}
|
|
8006
8070
|
)
|
|
@@ -8834,6 +8898,7 @@ var BankTransactionsContent = ({
|
|
|
8834
8898
|
mode = "self-serve",
|
|
8835
8899
|
showDescriptions = false,
|
|
8836
8900
|
showReceiptUploads = false,
|
|
8901
|
+
showTooltips = false,
|
|
8837
8902
|
monthlyView = false,
|
|
8838
8903
|
categorizeView: categorizeViewProp,
|
|
8839
8904
|
mobileComponent,
|
|
@@ -8991,6 +9056,7 @@ var BankTransactionsContent = ({
|
|
|
8991
9056
|
removeTransaction,
|
|
8992
9057
|
showDescriptions,
|
|
8993
9058
|
showReceiptUploads,
|
|
9059
|
+
showTooltips,
|
|
8994
9060
|
page: currentPage,
|
|
8995
9061
|
stringOverrides,
|
|
8996
9062
|
lastPage: isLastPage,
|
|
@@ -9005,7 +9071,8 @@ var BankTransactionsContent = ({
|
|
|
9005
9071
|
editable,
|
|
9006
9072
|
removeTransaction,
|
|
9007
9073
|
containerWidth,
|
|
9008
|
-
stringOverrides: stringOverrides?.bankTransactionCTAs
|
|
9074
|
+
stringOverrides: stringOverrides?.bankTransactionCTAs,
|
|
9075
|
+
showTooltips
|
|
9009
9076
|
}
|
|
9010
9077
|
) : null,
|
|
9011
9078
|
!isLoading && listView && mobileComponent === "mobileList" ? /* @__PURE__ */ import_react99.default.createElement(
|
|
@@ -9015,7 +9082,8 @@ var BankTransactionsContent = ({
|
|
|
9015
9082
|
editable,
|
|
9016
9083
|
mode,
|
|
9017
9084
|
removeTransaction,
|
|
9018
|
-
initialLoad
|
|
9085
|
+
initialLoad,
|
|
9086
|
+
showTooltips
|
|
9019
9087
|
}
|
|
9020
9088
|
) : null,
|
|
9021
9089
|
listView && isLoading ? /* @__PURE__ */ import_react99.default.createElement("div", { className: "Layer__bank-transactions__list-loader" }, /* @__PURE__ */ import_react99.default.createElement(Loader2, null)) : null,
|
|
@@ -16755,6 +16823,7 @@ var BankTransactionsWithLinkedAccounts = ({
|
|
|
16755
16823
|
mode = "self-serve",
|
|
16756
16824
|
showDescriptions,
|
|
16757
16825
|
showReceiptUploads,
|
|
16826
|
+
showTooltips = false,
|
|
16758
16827
|
mobileComponent,
|
|
16759
16828
|
stringOverrides
|
|
16760
16829
|
}) => {
|
|
@@ -16780,6 +16849,7 @@ var BankTransactionsWithLinkedAccounts = ({
|
|
|
16780
16849
|
asWidget: true,
|
|
16781
16850
|
showDescriptions,
|
|
16782
16851
|
showReceiptUploads,
|
|
16852
|
+
showTooltips,
|
|
16783
16853
|
mobileComponent,
|
|
16784
16854
|
mode,
|
|
16785
16855
|
stringOverrides: stringOverrides?.bankTransactions
|