braid-ui 1.0.49 → 1.0.50
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/css/braid-ui.css +10 -2
- package/dist/css/braid-ui.min.css +1 -1
- package/dist/index.cjs +435 -112
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +104 -11
- package/dist/index.d.ts +104 -11
- package/dist/index.js +435 -113
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -991,22 +991,35 @@ interface CounterpartyData {
|
|
|
991
991
|
contactEmail: string;
|
|
992
992
|
contactPhone: string;
|
|
993
993
|
address: string;
|
|
994
|
+
paymentInstrumentType: string;
|
|
995
|
+
}
|
|
996
|
+
interface CounterpartySearchResult {
|
|
997
|
+
id: string;
|
|
998
|
+
name: string;
|
|
999
|
+
type: string;
|
|
1000
|
+
paymentInstrumentType: string;
|
|
994
1001
|
}
|
|
995
1002
|
interface NewTransactionFormValues {
|
|
996
1003
|
transactionType: string;
|
|
997
1004
|
accountNumber: string;
|
|
998
|
-
counterpartyName
|
|
1005
|
+
counterpartyName?: string;
|
|
999
1006
|
amount: string;
|
|
1000
|
-
currency: string;
|
|
1001
1007
|
description?: string;
|
|
1002
1008
|
certifyInformation: boolean;
|
|
1009
|
+
adjustmentDirection?: string;
|
|
1010
|
+
adjustmentType?: string;
|
|
1011
|
+
receiverAccountNumber?: string;
|
|
1003
1012
|
}
|
|
1004
1013
|
declare const TRANSACTION_TYPES: {
|
|
1005
1014
|
value: string;
|
|
1006
1015
|
label: string;
|
|
1007
1016
|
icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1008
1017
|
}[];
|
|
1009
|
-
declare const
|
|
1018
|
+
declare const ADJUSTMENT_DIRECTION_OPTIONS: {
|
|
1019
|
+
value: string;
|
|
1020
|
+
label: string;
|
|
1021
|
+
}[];
|
|
1022
|
+
declare const ADJUSTMENT_TYPE_OPTIONS: {
|
|
1010
1023
|
value: string;
|
|
1011
1024
|
label: string;
|
|
1012
1025
|
}[];
|
|
@@ -1020,16 +1033,30 @@ interface NewTransactionViewProps {
|
|
|
1020
1033
|
submissionStatus: "success" | "error" | null;
|
|
1021
1034
|
errorMessage: string;
|
|
1022
1035
|
transactionId: string;
|
|
1036
|
+
isAccountLoading: boolean;
|
|
1037
|
+
isCounterpartyLoading: boolean;
|
|
1038
|
+
isSubmitting: boolean;
|
|
1039
|
+
counterpartySearchResults: CounterpartySearchResult[];
|
|
1040
|
+
isCounterpartySearching: boolean;
|
|
1041
|
+
showCounterpartyDropdown: boolean;
|
|
1023
1042
|
onAccountLookup: () => void;
|
|
1024
|
-
onCounterpartyLookup: () => void;
|
|
1025
1043
|
onEditAccount: () => void;
|
|
1026
1044
|
onEditCounterparty: () => void;
|
|
1045
|
+
onTransactionTypeChange: (type: string) => void;
|
|
1027
1046
|
onSubmit: () => void;
|
|
1028
1047
|
onCancel: () => void;
|
|
1029
1048
|
onConfirmationClose: () => void;
|
|
1030
1049
|
onConfirmationOpenChange: (open: boolean) => void;
|
|
1050
|
+
onCounterpartySearchChange: (value: string) => void;
|
|
1051
|
+
onCounterpartySelect: (result: CounterpartySearchResult) => void;
|
|
1052
|
+
onCounterpartyDropdownClose: () => void;
|
|
1053
|
+
receiverAccountLookedUp: boolean;
|
|
1054
|
+
receiverAccountData: AccountData | null;
|
|
1055
|
+
isReceiverAccountLoading: boolean;
|
|
1056
|
+
onReceiverAccountLookup: () => void;
|
|
1057
|
+
onEditReceiverAccount: () => void;
|
|
1031
1058
|
}
|
|
1032
|
-
declare const NewTransactionView: ({ form, accountLookedUp, accountData, counterpartyLookedUp, counterpartyData, confirmationOpen, submissionStatus, errorMessage, transactionId,
|
|
1059
|
+
declare const NewTransactionView: ({ form, accountLookedUp, accountData, counterpartyLookedUp, counterpartyData, confirmationOpen, submissionStatus, errorMessage, transactionId, isAccountLoading, isCounterpartyLoading, isSubmitting, counterpartySearchResults, isCounterpartySearching, showCounterpartyDropdown, onAccountLookup, onEditAccount, onEditCounterparty, onTransactionTypeChange, onSubmit, onCancel, onConfirmationClose, onConfirmationOpenChange, onCounterpartySearchChange, onCounterpartySelect, onCounterpartyDropdownClose, receiverAccountLookedUp, receiverAccountData, isReceiverAccountLoading, onReceiverAccountLookup, onEditReceiverAccount, }: NewTransactionViewProps) => react_jsx_runtime.JSX.Element;
|
|
1033
1060
|
|
|
1034
1061
|
interface AccountCardProps {
|
|
1035
1062
|
account: {
|
|
@@ -1759,30 +1786,96 @@ declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
|
1759
1786
|
|
|
1760
1787
|
declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
|
|
1761
1788
|
|
|
1762
|
-
declare const newTransactionSchema: z.ZodObject<{
|
|
1789
|
+
declare const newTransactionSchema: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
1763
1790
|
transactionType: z.ZodString;
|
|
1764
1791
|
accountNumber: z.ZodString;
|
|
1765
|
-
counterpartyName: z.ZodString
|
|
1792
|
+
counterpartyName: z.ZodOptional<z.ZodString>;
|
|
1766
1793
|
amount: z.ZodString;
|
|
1767
|
-
currency: z.ZodString;
|
|
1768
1794
|
description: z.ZodOptional<z.ZodString>;
|
|
1769
1795
|
certifyInformation: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
|
|
1796
|
+
adjustmentDirection: z.ZodOptional<z.ZodString>;
|
|
1797
|
+
adjustmentType: z.ZodOptional<z.ZodString>;
|
|
1798
|
+
receiverAccountNumber: z.ZodOptional<z.ZodString>;
|
|
1770
1799
|
}, "strip", z.ZodTypeAny, {
|
|
1771
1800
|
description?: string;
|
|
1772
1801
|
counterpartyName?: string;
|
|
1773
1802
|
accountNumber?: string;
|
|
1774
1803
|
transactionType?: string;
|
|
1775
1804
|
amount?: string;
|
|
1776
|
-
currency?: string;
|
|
1777
1805
|
certifyInformation?: boolean;
|
|
1806
|
+
adjustmentDirection?: string;
|
|
1807
|
+
adjustmentType?: string;
|
|
1808
|
+
receiverAccountNumber?: string;
|
|
1809
|
+
}, {
|
|
1810
|
+
description?: string;
|
|
1811
|
+
counterpartyName?: string;
|
|
1812
|
+
accountNumber?: string;
|
|
1813
|
+
transactionType?: string;
|
|
1814
|
+
amount?: string;
|
|
1815
|
+
certifyInformation?: boolean;
|
|
1816
|
+
adjustmentDirection?: string;
|
|
1817
|
+
adjustmentType?: string;
|
|
1818
|
+
receiverAccountNumber?: string;
|
|
1819
|
+
}>, {
|
|
1820
|
+
description?: string;
|
|
1821
|
+
counterpartyName?: string;
|
|
1822
|
+
accountNumber?: string;
|
|
1823
|
+
transactionType?: string;
|
|
1824
|
+
amount?: string;
|
|
1825
|
+
certifyInformation?: boolean;
|
|
1826
|
+
adjustmentDirection?: string;
|
|
1827
|
+
adjustmentType?: string;
|
|
1828
|
+
receiverAccountNumber?: string;
|
|
1829
|
+
}, {
|
|
1830
|
+
description?: string;
|
|
1831
|
+
counterpartyName?: string;
|
|
1832
|
+
accountNumber?: string;
|
|
1833
|
+
transactionType?: string;
|
|
1834
|
+
amount?: string;
|
|
1835
|
+
certifyInformation?: boolean;
|
|
1836
|
+
adjustmentDirection?: string;
|
|
1837
|
+
adjustmentType?: string;
|
|
1838
|
+
receiverAccountNumber?: string;
|
|
1839
|
+
}>, {
|
|
1840
|
+
description?: string;
|
|
1841
|
+
counterpartyName?: string;
|
|
1842
|
+
accountNumber?: string;
|
|
1843
|
+
transactionType?: string;
|
|
1844
|
+
amount?: string;
|
|
1845
|
+
certifyInformation?: boolean;
|
|
1846
|
+
adjustmentDirection?: string;
|
|
1847
|
+
adjustmentType?: string;
|
|
1848
|
+
receiverAccountNumber?: string;
|
|
1849
|
+
}, {
|
|
1850
|
+
description?: string;
|
|
1851
|
+
counterpartyName?: string;
|
|
1852
|
+
accountNumber?: string;
|
|
1853
|
+
transactionType?: string;
|
|
1854
|
+
amount?: string;
|
|
1855
|
+
certifyInformation?: boolean;
|
|
1856
|
+
adjustmentDirection?: string;
|
|
1857
|
+
adjustmentType?: string;
|
|
1858
|
+
receiverAccountNumber?: string;
|
|
1859
|
+
}>, {
|
|
1860
|
+
description?: string;
|
|
1861
|
+
counterpartyName?: string;
|
|
1862
|
+
accountNumber?: string;
|
|
1863
|
+
transactionType?: string;
|
|
1864
|
+
amount?: string;
|
|
1865
|
+
certifyInformation?: boolean;
|
|
1866
|
+
adjustmentDirection?: string;
|
|
1867
|
+
adjustmentType?: string;
|
|
1868
|
+
receiverAccountNumber?: string;
|
|
1778
1869
|
}, {
|
|
1779
1870
|
description?: string;
|
|
1780
1871
|
counterpartyName?: string;
|
|
1781
1872
|
accountNumber?: string;
|
|
1782
1873
|
transactionType?: string;
|
|
1783
1874
|
amount?: string;
|
|
1784
|
-
currency?: string;
|
|
1785
1875
|
certifyInformation?: boolean;
|
|
1876
|
+
adjustmentDirection?: string;
|
|
1877
|
+
adjustmentType?: string;
|
|
1878
|
+
receiverAccountNumber?: string;
|
|
1786
1879
|
}>;
|
|
1787
1880
|
declare function NewTransaction(): react_jsx_runtime.JSX.Element;
|
|
1788
1881
|
|
|
@@ -1809,4 +1902,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
1809
1902
|
*/
|
|
1810
1903
|
declare function downloadCSV(content: string, filename: string): void;
|
|
1811
1904
|
|
|
1812
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, type AccountData, AccountDetail, Accounts, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge,
|
|
1905
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, ADJUSTMENT_TYPE_OPTIONS, AccountCard, type AccountData, AccountDetail, Accounts, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ScrollArea, ScrollBar, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, TRANSACTION_TYPES, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -991,22 +991,35 @@ interface CounterpartyData {
|
|
|
991
991
|
contactEmail: string;
|
|
992
992
|
contactPhone: string;
|
|
993
993
|
address: string;
|
|
994
|
+
paymentInstrumentType: string;
|
|
995
|
+
}
|
|
996
|
+
interface CounterpartySearchResult {
|
|
997
|
+
id: string;
|
|
998
|
+
name: string;
|
|
999
|
+
type: string;
|
|
1000
|
+
paymentInstrumentType: string;
|
|
994
1001
|
}
|
|
995
1002
|
interface NewTransactionFormValues {
|
|
996
1003
|
transactionType: string;
|
|
997
1004
|
accountNumber: string;
|
|
998
|
-
counterpartyName
|
|
1005
|
+
counterpartyName?: string;
|
|
999
1006
|
amount: string;
|
|
1000
|
-
currency: string;
|
|
1001
1007
|
description?: string;
|
|
1002
1008
|
certifyInformation: boolean;
|
|
1009
|
+
adjustmentDirection?: string;
|
|
1010
|
+
adjustmentType?: string;
|
|
1011
|
+
receiverAccountNumber?: string;
|
|
1003
1012
|
}
|
|
1004
1013
|
declare const TRANSACTION_TYPES: {
|
|
1005
1014
|
value: string;
|
|
1006
1015
|
label: string;
|
|
1007
1016
|
icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1008
1017
|
}[];
|
|
1009
|
-
declare const
|
|
1018
|
+
declare const ADJUSTMENT_DIRECTION_OPTIONS: {
|
|
1019
|
+
value: string;
|
|
1020
|
+
label: string;
|
|
1021
|
+
}[];
|
|
1022
|
+
declare const ADJUSTMENT_TYPE_OPTIONS: {
|
|
1010
1023
|
value: string;
|
|
1011
1024
|
label: string;
|
|
1012
1025
|
}[];
|
|
@@ -1020,16 +1033,30 @@ interface NewTransactionViewProps {
|
|
|
1020
1033
|
submissionStatus: "success" | "error" | null;
|
|
1021
1034
|
errorMessage: string;
|
|
1022
1035
|
transactionId: string;
|
|
1036
|
+
isAccountLoading: boolean;
|
|
1037
|
+
isCounterpartyLoading: boolean;
|
|
1038
|
+
isSubmitting: boolean;
|
|
1039
|
+
counterpartySearchResults: CounterpartySearchResult[];
|
|
1040
|
+
isCounterpartySearching: boolean;
|
|
1041
|
+
showCounterpartyDropdown: boolean;
|
|
1023
1042
|
onAccountLookup: () => void;
|
|
1024
|
-
onCounterpartyLookup: () => void;
|
|
1025
1043
|
onEditAccount: () => void;
|
|
1026
1044
|
onEditCounterparty: () => void;
|
|
1045
|
+
onTransactionTypeChange: (type: string) => void;
|
|
1027
1046
|
onSubmit: () => void;
|
|
1028
1047
|
onCancel: () => void;
|
|
1029
1048
|
onConfirmationClose: () => void;
|
|
1030
1049
|
onConfirmationOpenChange: (open: boolean) => void;
|
|
1050
|
+
onCounterpartySearchChange: (value: string) => void;
|
|
1051
|
+
onCounterpartySelect: (result: CounterpartySearchResult) => void;
|
|
1052
|
+
onCounterpartyDropdownClose: () => void;
|
|
1053
|
+
receiverAccountLookedUp: boolean;
|
|
1054
|
+
receiverAccountData: AccountData | null;
|
|
1055
|
+
isReceiverAccountLoading: boolean;
|
|
1056
|
+
onReceiverAccountLookup: () => void;
|
|
1057
|
+
onEditReceiverAccount: () => void;
|
|
1031
1058
|
}
|
|
1032
|
-
declare const NewTransactionView: ({ form, accountLookedUp, accountData, counterpartyLookedUp, counterpartyData, confirmationOpen, submissionStatus, errorMessage, transactionId,
|
|
1059
|
+
declare const NewTransactionView: ({ form, accountLookedUp, accountData, counterpartyLookedUp, counterpartyData, confirmationOpen, submissionStatus, errorMessage, transactionId, isAccountLoading, isCounterpartyLoading, isSubmitting, counterpartySearchResults, isCounterpartySearching, showCounterpartyDropdown, onAccountLookup, onEditAccount, onEditCounterparty, onTransactionTypeChange, onSubmit, onCancel, onConfirmationClose, onConfirmationOpenChange, onCounterpartySearchChange, onCounterpartySelect, onCounterpartyDropdownClose, receiverAccountLookedUp, receiverAccountData, isReceiverAccountLoading, onReceiverAccountLookup, onEditReceiverAccount, }: NewTransactionViewProps) => react_jsx_runtime.JSX.Element;
|
|
1033
1060
|
|
|
1034
1061
|
interface AccountCardProps {
|
|
1035
1062
|
account: {
|
|
@@ -1759,30 +1786,96 @@ declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
|
1759
1786
|
|
|
1760
1787
|
declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
|
|
1761
1788
|
|
|
1762
|
-
declare const newTransactionSchema: z.ZodObject<{
|
|
1789
|
+
declare const newTransactionSchema: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
1763
1790
|
transactionType: z.ZodString;
|
|
1764
1791
|
accountNumber: z.ZodString;
|
|
1765
|
-
counterpartyName: z.ZodString
|
|
1792
|
+
counterpartyName: z.ZodOptional<z.ZodString>;
|
|
1766
1793
|
amount: z.ZodString;
|
|
1767
|
-
currency: z.ZodString;
|
|
1768
1794
|
description: z.ZodOptional<z.ZodString>;
|
|
1769
1795
|
certifyInformation: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
|
|
1796
|
+
adjustmentDirection: z.ZodOptional<z.ZodString>;
|
|
1797
|
+
adjustmentType: z.ZodOptional<z.ZodString>;
|
|
1798
|
+
receiverAccountNumber: z.ZodOptional<z.ZodString>;
|
|
1770
1799
|
}, "strip", z.ZodTypeAny, {
|
|
1771
1800
|
description?: string;
|
|
1772
1801
|
counterpartyName?: string;
|
|
1773
1802
|
accountNumber?: string;
|
|
1774
1803
|
transactionType?: string;
|
|
1775
1804
|
amount?: string;
|
|
1776
|
-
currency?: string;
|
|
1777
1805
|
certifyInformation?: boolean;
|
|
1806
|
+
adjustmentDirection?: string;
|
|
1807
|
+
adjustmentType?: string;
|
|
1808
|
+
receiverAccountNumber?: string;
|
|
1809
|
+
}, {
|
|
1810
|
+
description?: string;
|
|
1811
|
+
counterpartyName?: string;
|
|
1812
|
+
accountNumber?: string;
|
|
1813
|
+
transactionType?: string;
|
|
1814
|
+
amount?: string;
|
|
1815
|
+
certifyInformation?: boolean;
|
|
1816
|
+
adjustmentDirection?: string;
|
|
1817
|
+
adjustmentType?: string;
|
|
1818
|
+
receiverAccountNumber?: string;
|
|
1819
|
+
}>, {
|
|
1820
|
+
description?: string;
|
|
1821
|
+
counterpartyName?: string;
|
|
1822
|
+
accountNumber?: string;
|
|
1823
|
+
transactionType?: string;
|
|
1824
|
+
amount?: string;
|
|
1825
|
+
certifyInformation?: boolean;
|
|
1826
|
+
adjustmentDirection?: string;
|
|
1827
|
+
adjustmentType?: string;
|
|
1828
|
+
receiverAccountNumber?: string;
|
|
1829
|
+
}, {
|
|
1830
|
+
description?: string;
|
|
1831
|
+
counterpartyName?: string;
|
|
1832
|
+
accountNumber?: string;
|
|
1833
|
+
transactionType?: string;
|
|
1834
|
+
amount?: string;
|
|
1835
|
+
certifyInformation?: boolean;
|
|
1836
|
+
adjustmentDirection?: string;
|
|
1837
|
+
adjustmentType?: string;
|
|
1838
|
+
receiverAccountNumber?: string;
|
|
1839
|
+
}>, {
|
|
1840
|
+
description?: string;
|
|
1841
|
+
counterpartyName?: string;
|
|
1842
|
+
accountNumber?: string;
|
|
1843
|
+
transactionType?: string;
|
|
1844
|
+
amount?: string;
|
|
1845
|
+
certifyInformation?: boolean;
|
|
1846
|
+
adjustmentDirection?: string;
|
|
1847
|
+
adjustmentType?: string;
|
|
1848
|
+
receiverAccountNumber?: string;
|
|
1849
|
+
}, {
|
|
1850
|
+
description?: string;
|
|
1851
|
+
counterpartyName?: string;
|
|
1852
|
+
accountNumber?: string;
|
|
1853
|
+
transactionType?: string;
|
|
1854
|
+
amount?: string;
|
|
1855
|
+
certifyInformation?: boolean;
|
|
1856
|
+
adjustmentDirection?: string;
|
|
1857
|
+
adjustmentType?: string;
|
|
1858
|
+
receiverAccountNumber?: string;
|
|
1859
|
+
}>, {
|
|
1860
|
+
description?: string;
|
|
1861
|
+
counterpartyName?: string;
|
|
1862
|
+
accountNumber?: string;
|
|
1863
|
+
transactionType?: string;
|
|
1864
|
+
amount?: string;
|
|
1865
|
+
certifyInformation?: boolean;
|
|
1866
|
+
adjustmentDirection?: string;
|
|
1867
|
+
adjustmentType?: string;
|
|
1868
|
+
receiverAccountNumber?: string;
|
|
1778
1869
|
}, {
|
|
1779
1870
|
description?: string;
|
|
1780
1871
|
counterpartyName?: string;
|
|
1781
1872
|
accountNumber?: string;
|
|
1782
1873
|
transactionType?: string;
|
|
1783
1874
|
amount?: string;
|
|
1784
|
-
currency?: string;
|
|
1785
1875
|
certifyInformation?: boolean;
|
|
1876
|
+
adjustmentDirection?: string;
|
|
1877
|
+
adjustmentType?: string;
|
|
1878
|
+
receiverAccountNumber?: string;
|
|
1786
1879
|
}>;
|
|
1787
1880
|
declare function NewTransaction(): react_jsx_runtime.JSX.Element;
|
|
1788
1881
|
|
|
@@ -1809,4 +1902,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
1809
1902
|
*/
|
|
1810
1903
|
declare function downloadCSV(content: string, filename: string): void;
|
|
1811
1904
|
|
|
1812
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, type AccountData, AccountDetail, Accounts, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge,
|
|
1905
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, ADJUSTMENT_TYPE_OPTIONS, AccountCard, type AccountData, AccountDetail, Accounts, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ScrollArea, ScrollBar, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, TRANSACTION_TYPES, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|