@layerfi/components 0.1.26 → 0.1.28
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/README.md +18 -0
- package/dist/esm/index.js +2836 -2618
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +162 -41
- package/dist/index.js +10131 -9912
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +138 -6
- package/dist/styles/index.css.map +2 -2
- package/package.json +1 -1
- package/.idea/layer-react.iml +0 -9
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
package/dist/index.d.ts
CHANGED
|
@@ -836,9 +836,9 @@ declare module '@layerfi/components/components/BankTransactionRow/BankTransactio
|
|
|
836
836
|
import { BankTransaction, Category } from '@layerfi/components/types';
|
|
837
837
|
type Props = {
|
|
838
838
|
index: number;
|
|
839
|
+
editable: boolean;
|
|
839
840
|
dateFormat: string;
|
|
840
841
|
bankTransaction: BankTransaction;
|
|
841
|
-
editable: boolean;
|
|
842
842
|
removeTransaction: (id: string) => void;
|
|
843
843
|
containerWidth?: number;
|
|
844
844
|
initialLoad?: boolean;
|
|
@@ -848,7 +848,7 @@ declare module '@layerfi/components/components/BankTransactionRow/BankTransactio
|
|
|
848
848
|
export type LastSubmittedForm = 'simple' | 'match' | 'split' | undefined;
|
|
849
849
|
export const extractDescriptionForSplit: (category: Category) => string;
|
|
850
850
|
export const getDefaultSelectedCategory: (bankTransaction: BankTransaction) => import("@layerfi/components/components/CategorySelect/CategorySelect").CategoryOption | undefined;
|
|
851
|
-
export const BankTransactionRow: ({ index, dateFormat, bankTransaction,
|
|
851
|
+
export const BankTransactionRow: ({ index, editable, dateFormat, bankTransaction, removeTransaction, containerWidth, initialLoad, showDescriptions, showReceiptUploads, }: Props) => React.JSX.Element | null;
|
|
852
852
|
export {};
|
|
853
853
|
|
|
854
854
|
}
|
|
@@ -879,6 +879,7 @@ declare module '@layerfi/components/components/BankTransactionRow/index' {
|
|
|
879
879
|
}
|
|
880
880
|
declare module '@layerfi/components/components/BankTransactions/BankTransactions' {
|
|
881
881
|
import React from 'react';
|
|
882
|
+
import { BankTransactionFilters } from '@layerfi/components/hooks/useBankTransactions/types';
|
|
882
883
|
import { MobileComponentType } from '@layerfi/components/components/BankTransactions/constants';
|
|
883
884
|
export interface BankTransactionsProps {
|
|
884
885
|
asWidget?: boolean;
|
|
@@ -887,20 +888,25 @@ declare module '@layerfi/components/components/BankTransactions/BankTransactions
|
|
|
887
888
|
showDescriptions?: boolean;
|
|
888
889
|
showReceiptUploads?: boolean;
|
|
889
890
|
monthlyView?: boolean;
|
|
891
|
+
categorizeView?: boolean;
|
|
890
892
|
mobileComponent?: MobileComponentType;
|
|
893
|
+
filters?: BankTransactionFilters;
|
|
894
|
+
hideHeader?: boolean;
|
|
891
895
|
}
|
|
892
|
-
export const BankTransactions: ({ asWidget, pageSize, categorizedOnly, showDescriptions, showReceiptUploads, monthlyView, mobileComponent, }: BankTransactionsProps) => React.JSX.Element;
|
|
896
|
+
export const BankTransactions: ({ asWidget, pageSize, categorizedOnly, categorizeView, showDescriptions, showReceiptUploads, monthlyView, mobileComponent, filters: inputFilters, hideHeader, }: BankTransactionsProps) => React.JSX.Element;
|
|
893
897
|
|
|
894
898
|
}
|
|
895
899
|
declare module '@layerfi/components/components/BankTransactions/BankTransactionsHeader' {
|
|
896
900
|
import React, { ChangeEvent } from 'react';
|
|
901
|
+
import { DisplayState } from '@layerfi/components/hooks/useBankTransactions/types';
|
|
897
902
|
import { DateRange } from '@layerfi/components/types';
|
|
898
|
-
import {
|
|
903
|
+
import { MobileComponentType } from '@layerfi/components/components/BankTransactions/constants';
|
|
899
904
|
export interface BankTransactionsHeaderProps {
|
|
900
905
|
shiftStickyHeader: number;
|
|
901
906
|
asWidget?: boolean;
|
|
902
907
|
categorizedOnly?: boolean;
|
|
903
|
-
|
|
908
|
+
categorizeView?: boolean;
|
|
909
|
+
display?: DisplayState;
|
|
904
910
|
onCategorizationDisplayChange: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
905
911
|
mobileComponent?: MobileComponentType;
|
|
906
912
|
withDatePicker?: boolean;
|
|
@@ -908,7 +914,7 @@ declare module '@layerfi/components/components/BankTransactions/BankTransactions
|
|
|
908
914
|
dateRange?: DateRange;
|
|
909
915
|
setDateRange?: (value: DateRange) => void;
|
|
910
916
|
}
|
|
911
|
-
export const BankTransactionsHeader: ({ shiftStickyHeader, asWidget, categorizedOnly, display, onCategorizationDisplayChange, mobileComponent, withDatePicker, listView, dateRange, setDateRange, }: BankTransactionsHeaderProps) => React.JSX.Element;
|
|
917
|
+
export const BankTransactionsHeader: ({ shiftStickyHeader, asWidget, categorizedOnly, categorizeView, display, onCategorizationDisplayChange, mobileComponent, withDatePicker, listView, dateRange, setDateRange, }: BankTransactionsHeaderProps) => React.JSX.Element;
|
|
912
918
|
|
|
913
919
|
}
|
|
914
920
|
declare module '@layerfi/components/components/BankTransactions/DataStates' {
|
|
@@ -929,10 +935,6 @@ declare module '@layerfi/components/components/BankTransactions/DataStates' {
|
|
|
929
935
|
declare module '@layerfi/components/components/BankTransactions/constants' {
|
|
930
936
|
import { CategorizationStatus } from '@layerfi/components/types';
|
|
931
937
|
export type MobileComponentType = 'regularList' | 'mobileList';
|
|
932
|
-
export enum DisplayState {
|
|
933
|
-
review = "review",
|
|
934
|
-
categorized = "categorized"
|
|
935
|
-
}
|
|
936
938
|
export const CategorizedCategories: CategorizationStatus[];
|
|
937
939
|
export const ReviewCategories: CategorizationStatus[];
|
|
938
940
|
|
|
@@ -942,9 +944,9 @@ declare module '@layerfi/components/components/BankTransactions/index' {
|
|
|
942
944
|
|
|
943
945
|
}
|
|
944
946
|
declare module '@layerfi/components/components/BankTransactions/utils' {
|
|
945
|
-
import { BankTransaction } from '@layerfi/components/types';
|
|
946
|
-
|
|
947
|
-
export const
|
|
947
|
+
import { BankTransaction, CategorizationScope } from '@layerfi/components/types';
|
|
948
|
+
export const filterVisibility: (scope: CategorizationScope, bankTransaction: BankTransaction) => boolean;
|
|
949
|
+
export const isCategorized: (bankTransaction: BankTransaction) => boolean;
|
|
948
950
|
|
|
949
951
|
}
|
|
950
952
|
declare module '@layerfi/components/components/BankTransactionsTable/BankTransactionsTable' {
|
|
@@ -953,6 +955,7 @@ declare module '@layerfi/components/components/BankTransactionsTable/BankTransac
|
|
|
953
955
|
interface BankTransactionsTableProps {
|
|
954
956
|
bankTransactions?: BankTransaction[];
|
|
955
957
|
editable: boolean;
|
|
958
|
+
categorizeView?: boolean;
|
|
956
959
|
isLoading?: boolean;
|
|
957
960
|
initialLoad?: boolean;
|
|
958
961
|
containerWidth: number;
|
|
@@ -960,7 +963,7 @@ declare module '@layerfi/components/components/BankTransactionsTable/BankTransac
|
|
|
960
963
|
showDescriptions?: boolean;
|
|
961
964
|
showReceiptUploads?: boolean;
|
|
962
965
|
}
|
|
963
|
-
export const BankTransactionsTable: ({ editable, isLoading, bankTransactions, initialLoad, containerWidth, removeTransaction, showDescriptions, showReceiptUploads, }: BankTransactionsTableProps) => React.JSX.Element;
|
|
966
|
+
export const BankTransactionsTable: ({ categorizeView, editable, isLoading, bankTransactions, initialLoad, containerWidth, removeTransaction, showDescriptions, showReceiptUploads, }: BankTransactionsTableProps) => React.JSX.Element;
|
|
964
967
|
export {};
|
|
965
968
|
|
|
966
969
|
}
|
|
@@ -1375,7 +1378,7 @@ declare module '@layerfi/components/components/ExpandedBankTransactionRow/Expand
|
|
|
1375
1378
|
asListItem?: boolean;
|
|
1376
1379
|
submitBtnText?: string;
|
|
1377
1380
|
containerWidth?: number;
|
|
1378
|
-
|
|
1381
|
+
categorized?: boolean;
|
|
1379
1382
|
showDescriptions: boolean;
|
|
1380
1383
|
showReceiptUploads: boolean;
|
|
1381
1384
|
};
|
|
@@ -1799,8 +1802,9 @@ declare module '@layerfi/components/components/Onboarding/ConnectAccount' {
|
|
|
1799
1802
|
export interface ConnectAccountProps {
|
|
1800
1803
|
onboardingStep: OnboardingStep;
|
|
1801
1804
|
onTransactionsToReviewClick?: () => void;
|
|
1805
|
+
currentMonthOnly?: boolean;
|
|
1802
1806
|
}
|
|
1803
|
-
export const ConnectAccount: ({ onboardingStep, onTransactionsToReviewClick, }: ConnectAccountProps) => React.JSX.Element;
|
|
1807
|
+
export const ConnectAccount: ({ onboardingStep, onTransactionsToReviewClick, currentMonthOnly, }: ConnectAccountProps) => React.JSX.Element;
|
|
1804
1808
|
|
|
1805
1809
|
}
|
|
1806
1810
|
declare module '@layerfi/components/components/Onboarding/Onboarding' {
|
|
@@ -2399,8 +2403,9 @@ declare module '@layerfi/components/components/TransactionToReviewCard/Transacti
|
|
|
2399
2403
|
import React from 'react';
|
|
2400
2404
|
export interface TransactionToReviewCardProps {
|
|
2401
2405
|
onClick?: () => void;
|
|
2406
|
+
currentMonthOnly?: true;
|
|
2402
2407
|
}
|
|
2403
|
-
export const TransactionToReviewCard: ({ onClick, }: TransactionToReviewCardProps) => React.JSX.Element;
|
|
2408
|
+
export const TransactionToReviewCard: ({ onClick, currentMonthOnly, }: TransactionToReviewCardProps) => React.JSX.Element;
|
|
2404
2409
|
|
|
2405
2410
|
}
|
|
2406
2411
|
declare module '@layerfi/components/components/TransactionToReviewCard/index' {
|
|
@@ -2572,6 +2577,51 @@ declare module '@layerfi/components/config/theme' {
|
|
|
2572
2577
|
};
|
|
2573
2578
|
};
|
|
2574
2579
|
|
|
2580
|
+
}
|
|
2581
|
+
declare module '@layerfi/components/contexts/BankTransactionsContext/BankTransactionsContext' {
|
|
2582
|
+
/// <reference types="react" />
|
|
2583
|
+
import { useBankTransactions } from '@layerfi/components/hooks/useBankTransactions/index';
|
|
2584
|
+
import { DisplayState } from '@layerfi/components/hooks/useBankTransactions/types';
|
|
2585
|
+
export type BankTransactionsContextType = ReturnType<typeof useBankTransactions>;
|
|
2586
|
+
export const BankTransactionsContext: import("react").Context<{
|
|
2587
|
+
data?: import("@layerfi/components/types").BankTransaction[] | undefined;
|
|
2588
|
+
metadata: import("@layerfi/components/types").Metadata;
|
|
2589
|
+
loadingStatus: import("@layerfi/components/types/general").LoadedStatus;
|
|
2590
|
+
isLoading: boolean;
|
|
2591
|
+
isValidating: boolean;
|
|
2592
|
+
error: unknown;
|
|
2593
|
+
filters?: import("@layerfi/components/hooks/useBankTransactions/types").BankTransactionFilters | undefined;
|
|
2594
|
+
accountsList?: import("@layerfi/components/hooks/useBankTransactions/types").AccountItem[] | undefined;
|
|
2595
|
+
display: DisplayState;
|
|
2596
|
+
categorize: (id: string, newCategory: import("@layerfi/components/types").CategoryUpdate, notify?: boolean | undefined) => Promise<void>;
|
|
2597
|
+
match: (id: string, matchId: string, notify?: boolean | undefined) => Promise<void>;
|
|
2598
|
+
updateOneLocal: (bankTransaction: import("@layerfi/components/types").BankTransaction) => void;
|
|
2599
|
+
refetch: () => void;
|
|
2600
|
+
setFilters: (filters?: Partial<import("@layerfi/components/hooks/useBankTransactions/types").BankTransactionFilters> | undefined) => void;
|
|
2601
|
+
activate: () => void;
|
|
2602
|
+
}>;
|
|
2603
|
+
export const useBankTransactionsContext: () => {
|
|
2604
|
+
data?: import("@layerfi/components/types").BankTransaction[] | undefined;
|
|
2605
|
+
metadata: import("@layerfi/components/types").Metadata;
|
|
2606
|
+
loadingStatus: import("@layerfi/components/types/general").LoadedStatus;
|
|
2607
|
+
isLoading: boolean;
|
|
2608
|
+
isValidating: boolean;
|
|
2609
|
+
error: unknown;
|
|
2610
|
+
filters?: import("@layerfi/components/hooks/useBankTransactions/types").BankTransactionFilters | undefined;
|
|
2611
|
+
accountsList?: import("@layerfi/components/hooks/useBankTransactions/types").AccountItem[] | undefined;
|
|
2612
|
+
display: DisplayState;
|
|
2613
|
+
categorize: (id: string, newCategory: import("@layerfi/components/types").CategoryUpdate, notify?: boolean | undefined) => Promise<void>;
|
|
2614
|
+
match: (id: string, matchId: string, notify?: boolean | undefined) => Promise<void>;
|
|
2615
|
+
updateOneLocal: (bankTransaction: import("@layerfi/components/types").BankTransaction) => void;
|
|
2616
|
+
refetch: () => void;
|
|
2617
|
+
setFilters: (filters?: Partial<import("@layerfi/components/hooks/useBankTransactions/types").BankTransactionFilters> | undefined) => void;
|
|
2618
|
+
activate: () => void;
|
|
2619
|
+
};
|
|
2620
|
+
|
|
2621
|
+
}
|
|
2622
|
+
declare module '@layerfi/components/contexts/BankTransactionsContext/index' {
|
|
2623
|
+
export { BankTransactionsContext, useBankTransactionsContext } from '@layerfi/components/contexts/BankTransactionsContext/BankTransactionsContext';
|
|
2624
|
+
|
|
2575
2625
|
}
|
|
2576
2626
|
declare module '@layerfi/components/contexts/ChartOfAccountsContext/ChartOfAccountsContext' {
|
|
2577
2627
|
/// <reference types="react" />
|
|
@@ -2662,10 +2712,13 @@ declare module '@layerfi/components/contexts/LayerContext/LayerContext' {
|
|
|
2662
2712
|
export const LayerContext: import("react").Context<LayerContextValues & LayerContextHelpers & {
|
|
2663
2713
|
setTheme: (theme: LayerThemeConfig) => void;
|
|
2664
2714
|
}>;
|
|
2715
|
+
export const useLayerContext: () => LayerContextValues & LayerContextHelpers & {
|
|
2716
|
+
setTheme: (theme: LayerThemeConfig) => void;
|
|
2717
|
+
};
|
|
2665
2718
|
|
|
2666
2719
|
}
|
|
2667
2720
|
declare module '@layerfi/components/contexts/LayerContext/index' {
|
|
2668
|
-
export { LayerContext } from '@layerfi/components/contexts/LayerContext/LayerContext';
|
|
2721
|
+
export { LayerContext, useLayerContext } from '@layerfi/components/contexts/LayerContext/LayerContext';
|
|
2669
2722
|
|
|
2670
2723
|
}
|
|
2671
2724
|
declare module '@layerfi/components/contexts/LedgerAccountsContext/LedgerAccountsContext' {
|
|
@@ -2758,23 +2811,61 @@ declare module '@layerfi/components/hooks/useBankTransactions/index' {
|
|
|
2758
2811
|
export { useBankTransactions } from '@layerfi/components/hooks/useBankTransactions/useBankTransactions';
|
|
2759
2812
|
|
|
2760
2813
|
}
|
|
2761
|
-
declare module '@layerfi/components/hooks/useBankTransactions/
|
|
2762
|
-
import { BankTransaction, CategoryUpdate, Metadata } from '@layerfi/components/types';
|
|
2814
|
+
declare module '@layerfi/components/hooks/useBankTransactions/types' {
|
|
2815
|
+
import { BankTransaction, CategorizationScope, CategoryUpdate, DateRange, Direction, Metadata } from '@layerfi/components/types';
|
|
2763
2816
|
import { LoadedStatus } from '@layerfi/components/types/general';
|
|
2764
|
-
|
|
2817
|
+
export interface NumericRangeFilter {
|
|
2818
|
+
min?: number;
|
|
2819
|
+
max?: number;
|
|
2820
|
+
}
|
|
2821
|
+
export interface AccountItem {
|
|
2822
|
+
id: string;
|
|
2823
|
+
name: string;
|
|
2824
|
+
}
|
|
2825
|
+
export enum DisplayState {
|
|
2826
|
+
review = "review",
|
|
2827
|
+
categorized = "categorized"
|
|
2828
|
+
}
|
|
2829
|
+
export interface BankTransactionFilters {
|
|
2830
|
+
amount?: NumericRangeFilter;
|
|
2831
|
+
account?: string[];
|
|
2832
|
+
direction?: Direction[];
|
|
2833
|
+
categorizationStatus?: CategorizationScope;
|
|
2834
|
+
dateRange?: Partial<DateRange>;
|
|
2835
|
+
}
|
|
2836
|
+
export type UseBankTransactions = () => {
|
|
2765
2837
|
data?: BankTransaction[];
|
|
2766
2838
|
metadata: Metadata;
|
|
2767
2839
|
loadingStatus: LoadedStatus;
|
|
2768
2840
|
isLoading: boolean;
|
|
2769
2841
|
isValidating: boolean;
|
|
2770
2842
|
error: unknown;
|
|
2843
|
+
filters?: BankTransactionFilters;
|
|
2844
|
+
accountsList?: AccountItem[];
|
|
2845
|
+
display: DisplayState;
|
|
2771
2846
|
categorize: (id: BankTransaction['id'], newCategory: CategoryUpdate, notify?: boolean) => Promise<void>;
|
|
2772
2847
|
match: (id: BankTransaction['id'], matchId: BankTransaction['id'], notify?: boolean) => Promise<void>;
|
|
2773
2848
|
updateOneLocal: (bankTransaction: BankTransaction) => void;
|
|
2774
2849
|
refetch: () => void;
|
|
2850
|
+
setFilters: (filters?: Partial<BankTransactionFilters>) => void;
|
|
2851
|
+
activate: () => void;
|
|
2775
2852
|
};
|
|
2853
|
+
|
|
2854
|
+
}
|
|
2855
|
+
declare module '@layerfi/components/hooks/useBankTransactions/useBankTransactions' {
|
|
2856
|
+
import { UseBankTransactions } from '@layerfi/components/hooks/useBankTransactions/types';
|
|
2776
2857
|
export const useBankTransactions: UseBankTransactions;
|
|
2777
|
-
|
|
2858
|
+
|
|
2859
|
+
}
|
|
2860
|
+
declare module '@layerfi/components/hooks/useBankTransactions/utils' {
|
|
2861
|
+
import { BankTransaction, CategorizationScope, DateRange, Direction } from '@layerfi/components/types';
|
|
2862
|
+
import { AccountItem, NumericRangeFilter } from '@layerfi/components/hooks/useBankTransactions/types';
|
|
2863
|
+
export const collectAccounts: (transactions?: BankTransaction[]) => AccountItem[];
|
|
2864
|
+
export const applyAmountFilter: (data?: BankTransaction[], filter?: NumericRangeFilter) => BankTransaction[] | undefined;
|
|
2865
|
+
export const applyAccountFilter: (data?: BankTransaction[], filter?: string[]) => BankTransaction[] | undefined;
|
|
2866
|
+
export const applyDirectionFilter: (data?: BankTransaction[], filter?: Direction[]) => BankTransaction[] | undefined;
|
|
2867
|
+
export const applyCategorizationStatusFilter: (data?: BankTransaction[], filter?: CategorizationScope) => BankTransaction[] | undefined;
|
|
2868
|
+
export const appplyDateRangeFilter: (data?: BankTransaction[], filter?: Partial<DateRange>) => BankTransaction[] | undefined;
|
|
2778
2869
|
|
|
2779
2870
|
}
|
|
2780
2871
|
declare module '@layerfi/components/hooks/useChartOfAccounts/index' {
|
|
@@ -2903,16 +2994,6 @@ declare module '@layerfi/components/hooks/useJournal/useJournal' {
|
|
|
2903
2994
|
export const useJournal: UseJournal;
|
|
2904
2995
|
export {};
|
|
2905
2996
|
|
|
2906
|
-
}
|
|
2907
|
-
declare module '@layerfi/components/hooks/useLayerContext/index' {
|
|
2908
|
-
export { useLayerContext } from '@layerfi/components/hooks/useLayerContext/useLayerContext';
|
|
2909
|
-
|
|
2910
|
-
}
|
|
2911
|
-
declare module '@layerfi/components/hooks/useLayerContext/useLayerContext' {
|
|
2912
|
-
export const useLayerContext: () => import("@layerfi/components/types").LayerContextValues & import("../../types").LayerContextHelpers & {
|
|
2913
|
-
setTheme: (theme: import("@layerfi/components/types/layer_context").LayerThemeConfig) => void;
|
|
2914
|
-
};
|
|
2915
|
-
|
|
2916
2997
|
}
|
|
2917
2998
|
declare module '@layerfi/components/hooks/useLedgerAccounts/index' {
|
|
2918
2999
|
export { useLedgerAccounts } from '@layerfi/components/hooks/useLedgerAccounts/useLedgerAccounts';
|
|
@@ -3383,6 +3464,7 @@ declare module '@layerfi/components/icons/types' {
|
|
|
3383
3464
|
|
|
3384
3465
|
}
|
|
3385
3466
|
declare module '@layerfi/components/index' {
|
|
3467
|
+
export { LayerProvider } from '@layerfi/components/providers/LayerProvider/index';
|
|
3386
3468
|
export { BalanceSheet } from '@layerfi/components/components/BalanceSheet/index';
|
|
3387
3469
|
export { BankTransactions } from '@layerfi/components/components/BankTransactions/index';
|
|
3388
3470
|
export { Hello } from '@layerfi/components/components/Hello/index';
|
|
@@ -3390,8 +3472,6 @@ declare module '@layerfi/components/index' {
|
|
|
3390
3472
|
export { ProfitAndLoss } from '@layerfi/components/components/ProfitAndLoss/index';
|
|
3391
3473
|
export { ProfitAndLossView } from '@layerfi/components/components/ProfitAndLossView/index';
|
|
3392
3474
|
export { ChartOfAccounts } from '@layerfi/components/components/ChartOfAccounts/index';
|
|
3393
|
-
export { LayerProvider } from '@layerfi/components/providers/LayerProvider/index';
|
|
3394
|
-
export { useLayerContext } from '@layerfi/components/hooks/useLayerContext/index';
|
|
3395
3475
|
export { Journal } from '@layerfi/components/components/Journal/index';
|
|
3396
3476
|
export { Onboarding } from '@layerfi/components/components/Onboarding/index';
|
|
3397
3477
|
export { Tasks } from '@layerfi/components/components/Tasks/index';
|
|
@@ -3399,6 +3479,8 @@ declare module '@layerfi/components/index' {
|
|
|
3399
3479
|
export { BankTransactionsWithLinkedAccounts } from '@layerfi/components/views/BankTransactionsWithLinkedAccounts/index';
|
|
3400
3480
|
export { Reports } from '@layerfi/components/views/Reports/index';
|
|
3401
3481
|
export { GeneralLedgerView } from '@layerfi/components/views/GeneralLedger/index';
|
|
3482
|
+
export { useLayerContext } from '@layerfi/components/contexts/LayerContext/index';
|
|
3483
|
+
export { useBankTransactionsContext } from '@layerfi/components/contexts/BankTransactionsContext/index';
|
|
3402
3484
|
|
|
3403
3485
|
}
|
|
3404
3486
|
declare module '@layerfi/components/models/APIError' {
|
|
@@ -3425,6 +3507,19 @@ declare module '@layerfi/components/models/Money' {
|
|
|
3425
3507
|
};
|
|
3426
3508
|
export default _default;
|
|
3427
3509
|
|
|
3510
|
+
}
|
|
3511
|
+
declare module '@layerfi/components/providers/BankTransactionsProvider/BankTransactionsProvider' {
|
|
3512
|
+
import React, { ReactNode } from 'react';
|
|
3513
|
+
interface BankTransactionsProviderProps {
|
|
3514
|
+
children: ReactNode;
|
|
3515
|
+
}
|
|
3516
|
+
export const BankTransactionsProvider: ({ children, }: BankTransactionsProviderProps) => React.JSX.Element;
|
|
3517
|
+
export {};
|
|
3518
|
+
|
|
3519
|
+
}
|
|
3520
|
+
declare module '@layerfi/components/providers/BankTransactionsProvider/index' {
|
|
3521
|
+
export { BankTransactionsProvider } from '@layerfi/components/providers/BankTransactionsProvider/BankTransactionsProvider';
|
|
3522
|
+
|
|
3428
3523
|
}
|
|
3429
3524
|
declare module '@layerfi/components/providers/LayerProvider/LayerProvider' {
|
|
3430
3525
|
import React, { PropsWithChildren } from 'react';
|
|
@@ -3589,6 +3684,10 @@ declare module '@layerfi/components/types/categories' {
|
|
|
3589
3684
|
JOURNALING = "JOURNALING",
|
|
3590
3685
|
MATCHED = "MATCHED"
|
|
3591
3686
|
}
|
|
3687
|
+
export enum CategorizationScope {
|
|
3688
|
+
TO_REVIEW = "TO_REVIEW",
|
|
3689
|
+
CATEGORIZED = "CATEGORIZED"
|
|
3690
|
+
}
|
|
3592
3691
|
export interface CategoryEntry {
|
|
3593
3692
|
amount?: number;
|
|
3594
3693
|
category: Category;
|
|
@@ -3617,17 +3716,21 @@ declare module '@layerfi/components/types/categories' {
|
|
|
3617
3716
|
suggestions: Category[];
|
|
3618
3717
|
}
|
|
3619
3718
|
export type Categorization = AutoCategorization | SuggestedCategorization;
|
|
3719
|
+
export type CategoryPayloadObject = {
|
|
3720
|
+
type: 'StableName';
|
|
3721
|
+
stable_name: string;
|
|
3722
|
+
} | {
|
|
3723
|
+
type: 'AccountId';
|
|
3724
|
+
id: string;
|
|
3725
|
+
};
|
|
3620
3726
|
export type SingleCategoryUpdate = {
|
|
3621
3727
|
type: 'Category';
|
|
3622
|
-
category:
|
|
3623
|
-
type: 'StableName';
|
|
3624
|
-
stable_name: string;
|
|
3625
|
-
};
|
|
3728
|
+
category: CategoryPayloadObject;
|
|
3626
3729
|
};
|
|
3627
3730
|
export type SplitCategoryUpdate = {
|
|
3628
3731
|
type: 'Split';
|
|
3629
3732
|
entries: {
|
|
3630
|
-
category: string;
|
|
3733
|
+
category: string | CategoryPayloadObject;
|
|
3631
3734
|
amount: number;
|
|
3632
3735
|
}[];
|
|
3633
3736
|
};
|
|
@@ -3795,6 +3898,7 @@ declare module '@layerfi/components/types/layer_context' {
|
|
|
3795
3898
|
getColor: (shade: number) => ColorsPaletteOption | undefined;
|
|
3796
3899
|
setLightColor: (color?: ColorConfig) => void;
|
|
3797
3900
|
setDarkColor: (color?: ColorConfig) => void;
|
|
3901
|
+
setTextColor: (color?: ColorConfig) => void;
|
|
3798
3902
|
setColors: (colors?: LayerThemeConfigColors) => void;
|
|
3799
3903
|
setOnboardingStep: (value: OnboardingStep) => void;
|
|
3800
3904
|
addToast: (toast: ToastProps) => void;
|
|
@@ -3833,6 +3937,7 @@ declare module '@layerfi/components/types/layer_context' {
|
|
|
3833
3937
|
export interface LayerThemeConfigColors {
|
|
3834
3938
|
dark?: ColorConfig;
|
|
3835
3939
|
light?: ColorConfig;
|
|
3940
|
+
text?: ColorConfig;
|
|
3836
3941
|
}
|
|
3837
3942
|
export interface LayerThemeConfig {
|
|
3838
3943
|
colors?: LayerThemeConfigColors;
|
|
@@ -4107,7 +4212,7 @@ declare module '@layerfi/components/types' {
|
|
|
4107
4212
|
export { LineItem } from '@layerfi/components/types/line_item';
|
|
4108
4213
|
export { BalanceSheet } from '@layerfi/components/types/balance_sheet';
|
|
4109
4214
|
export { Direction, BankTransaction } from '@layerfi/components/types/bank_transactions';
|
|
4110
|
-
export { CategorizationStatus, Category, CategorizationType, AutoCategorization, SuggestedCategorization, SingleCategoryUpdate, SplitCategoryUpdate, CategoryUpdate, } from '@layerfi/components/types/categories';
|
|
4215
|
+
export { CategorizationStatus, CategorizationScope, Category, CategorizationType, AutoCategorization, SuggestedCategorization, SingleCategoryUpdate, SplitCategoryUpdate, CategoryUpdate, } from '@layerfi/components/types/categories';
|
|
4111
4216
|
export { ChartOfAccounts, Account, NewAccount, EditAccount, } from '@layerfi/components/types/chart_of_accounts';
|
|
4112
4217
|
export { LedgerAccountLineItems as LedgerAccounts, LedgerAccountLineItem, LedgerAccountsAccount, LedgerAccountsEntry, } from '@layerfi/components/types/ledger_accounts';
|
|
4113
4218
|
export { SortDirection } from '@layerfi/components/types/general';
|
|
@@ -4128,10 +4233,24 @@ declare module '@layerfi/components/types' {
|
|
|
4128
4233
|
|
|
4129
4234
|
}
|
|
4130
4235
|
declare module '@layerfi/components/utils/bankTransactions' {
|
|
4236
|
+
import { CategoryOption } from '@layerfi/components/components/CategorySelect/CategorySelect';
|
|
4131
4237
|
import { BankTransaction } from '@layerfi/components/types';
|
|
4132
4238
|
export const hasMatch: (bankTransaction?: BankTransaction) => boolean;
|
|
4133
4239
|
export const isCredit: ({ direction }: Pick<BankTransaction, 'direction'>) => boolean;
|
|
4134
4240
|
export const isAlreadyMatched: (bankTransaction?: BankTransaction) => string | undefined;
|
|
4241
|
+
export const countTransactionsToReview: ({ transactions, currentMonthOnly, }: {
|
|
4242
|
+
transactions?: BankTransaction[] | undefined;
|
|
4243
|
+
currentMonthOnly?: boolean | undefined;
|
|
4244
|
+
}) => number;
|
|
4245
|
+
export const getCategorizePayload: (category: CategoryOption) => {
|
|
4246
|
+
type: "AccountId";
|
|
4247
|
+
id: string;
|
|
4248
|
+
stable_name?: undefined;
|
|
4249
|
+
} | {
|
|
4250
|
+
type: "StableName";
|
|
4251
|
+
stable_name: string;
|
|
4252
|
+
id?: undefined;
|
|
4253
|
+
};
|
|
4135
4254
|
|
|
4136
4255
|
}
|
|
4137
4256
|
declare module '@layerfi/components/utils/business' {
|
|
@@ -4214,14 +4333,16 @@ declare module '@layerfi/components/views/AccountingOverview/index' {
|
|
|
4214
4333
|
}
|
|
4215
4334
|
declare module '@layerfi/components/views/BankTransactionsWithLinkedAccounts/BankTransactionsWithLinkedAccounts' {
|
|
4216
4335
|
import React from 'react';
|
|
4336
|
+
import { MobileComponentType } from "@layerfi/components/components/BankTransactions/constants";
|
|
4217
4337
|
export interface BankTransactionsWithLinkedAccountsProps {
|
|
4218
4338
|
title?: string;
|
|
4219
4339
|
elevatedLinkedAccounts?: boolean;
|
|
4220
4340
|
showLedgerBalance?: boolean;
|
|
4221
4341
|
showDescriptions?: boolean;
|
|
4222
4342
|
showReceiptUploads?: boolean;
|
|
4343
|
+
mobileComponent?: MobileComponentType;
|
|
4223
4344
|
}
|
|
4224
|
-
export const BankTransactionsWithLinkedAccounts: ({ title, elevatedLinkedAccounts, showLedgerBalance, showDescriptions, showReceiptUploads, }: BankTransactionsWithLinkedAccountsProps) => React.JSX.Element;
|
|
4345
|
+
export const BankTransactionsWithLinkedAccounts: ({ title, elevatedLinkedAccounts, showLedgerBalance, showDescriptions, showReceiptUploads, mobileComponent, }: BankTransactionsWithLinkedAccountsProps) => React.JSX.Element;
|
|
4225
4346
|
|
|
4226
4347
|
}
|
|
4227
4348
|
declare module '@layerfi/components/views/BankTransactionsWithLinkedAccounts/index' {
|