braid-ui 1.0.49 → 1.0.51
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 +743 -329
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +112 -14
- package/dist/index.d.ts +112 -14
- package/dist/index.js +743 -330
- 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
|
-
icon:
|
|
1016
|
+
icon: React__default.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>;
|
|
1017
|
+
}[];
|
|
1018
|
+
declare const ADJUSTMENT_DIRECTION_OPTIONS: {
|
|
1019
|
+
value: string;
|
|
1020
|
+
label: string;
|
|
1008
1021
|
}[];
|
|
1009
|
-
declare const
|
|
1022
|
+
declare const ADJUSTMENT_TYPE_OPTIONS: {
|
|
1010
1023
|
value: string;
|
|
1011
1024
|
label: string;
|
|
1012
1025
|
}[];
|
|
@@ -1020,16 +1033,32 @@ 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;
|
|
1031
|
-
|
|
1032
|
-
|
|
1050
|
+
onNewTransaction: () => void;
|
|
1051
|
+
onCounterpartySearchChange: (value: string) => void;
|
|
1052
|
+
onCounterpartySelect: (result: CounterpartySearchResult) => void;
|
|
1053
|
+
onCounterpartyDropdownClose: () => void;
|
|
1054
|
+
receiverAccountLookedUp: boolean;
|
|
1055
|
+
receiverAccountData: AccountData | null;
|
|
1056
|
+
isReceiverAccountLoading: boolean;
|
|
1057
|
+
onReceiverAccountLookup: () => void;
|
|
1058
|
+
onEditReceiverAccount: () => void;
|
|
1059
|
+
isReviewReady: boolean;
|
|
1060
|
+
}
|
|
1061
|
+
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, onNewTransaction, onCounterpartySearchChange, onCounterpartySelect, onCounterpartyDropdownClose, receiverAccountLookedUp, receiverAccountData, isReceiverAccountLoading, onReceiverAccountLookup, onEditReceiverAccount, isReviewReady, }: NewTransactionViewProps) => react_jsx_runtime.JSX.Element;
|
|
1033
1062
|
|
|
1034
1063
|
interface AccountCardProps {
|
|
1035
1064
|
account: {
|
|
@@ -1208,7 +1237,10 @@ declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.D
|
|
|
1208
1237
|
declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
1209
1238
|
declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1210
1239
|
declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1211
|
-
|
|
1240
|
+
interface DialogContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> {
|
|
1241
|
+
hideCloseButton?: boolean;
|
|
1242
|
+
}
|
|
1243
|
+
declare const DialogContent: React$1.ForwardRefExoticComponent<DialogContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1212
1244
|
declare const DialogHeader: {
|
|
1213
1245
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1214
1246
|
displayName: string;
|
|
@@ -1759,30 +1791,96 @@ declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
|
1759
1791
|
|
|
1760
1792
|
declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
|
|
1761
1793
|
|
|
1762
|
-
declare const newTransactionSchema: z.ZodObject<{
|
|
1794
|
+
declare const newTransactionSchema: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
1763
1795
|
transactionType: z.ZodString;
|
|
1764
1796
|
accountNumber: z.ZodString;
|
|
1765
|
-
counterpartyName: z.ZodString
|
|
1797
|
+
counterpartyName: z.ZodOptional<z.ZodString>;
|
|
1766
1798
|
amount: z.ZodString;
|
|
1767
|
-
currency: z.ZodString;
|
|
1768
1799
|
description: z.ZodOptional<z.ZodString>;
|
|
1769
1800
|
certifyInformation: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
|
|
1801
|
+
adjustmentDirection: z.ZodOptional<z.ZodString>;
|
|
1802
|
+
adjustmentType: z.ZodOptional<z.ZodString>;
|
|
1803
|
+
receiverAccountNumber: z.ZodOptional<z.ZodString>;
|
|
1770
1804
|
}, "strip", z.ZodTypeAny, {
|
|
1771
1805
|
description?: string;
|
|
1772
1806
|
counterpartyName?: string;
|
|
1773
1807
|
accountNumber?: string;
|
|
1774
1808
|
transactionType?: string;
|
|
1775
1809
|
amount?: string;
|
|
1776
|
-
currency?: string;
|
|
1777
1810
|
certifyInformation?: boolean;
|
|
1811
|
+
adjustmentDirection?: string;
|
|
1812
|
+
adjustmentType?: string;
|
|
1813
|
+
receiverAccountNumber?: string;
|
|
1814
|
+
}, {
|
|
1815
|
+
description?: string;
|
|
1816
|
+
counterpartyName?: string;
|
|
1817
|
+
accountNumber?: string;
|
|
1818
|
+
transactionType?: string;
|
|
1819
|
+
amount?: string;
|
|
1820
|
+
certifyInformation?: boolean;
|
|
1821
|
+
adjustmentDirection?: string;
|
|
1822
|
+
adjustmentType?: string;
|
|
1823
|
+
receiverAccountNumber?: string;
|
|
1824
|
+
}>, {
|
|
1825
|
+
description?: string;
|
|
1826
|
+
counterpartyName?: string;
|
|
1827
|
+
accountNumber?: string;
|
|
1828
|
+
transactionType?: string;
|
|
1829
|
+
amount?: string;
|
|
1830
|
+
certifyInformation?: boolean;
|
|
1831
|
+
adjustmentDirection?: string;
|
|
1832
|
+
adjustmentType?: string;
|
|
1833
|
+
receiverAccountNumber?: string;
|
|
1834
|
+
}, {
|
|
1835
|
+
description?: string;
|
|
1836
|
+
counterpartyName?: string;
|
|
1837
|
+
accountNumber?: string;
|
|
1838
|
+
transactionType?: string;
|
|
1839
|
+
amount?: string;
|
|
1840
|
+
certifyInformation?: boolean;
|
|
1841
|
+
adjustmentDirection?: string;
|
|
1842
|
+
adjustmentType?: string;
|
|
1843
|
+
receiverAccountNumber?: string;
|
|
1844
|
+
}>, {
|
|
1845
|
+
description?: string;
|
|
1846
|
+
counterpartyName?: string;
|
|
1847
|
+
accountNumber?: string;
|
|
1848
|
+
transactionType?: string;
|
|
1849
|
+
amount?: string;
|
|
1850
|
+
certifyInformation?: boolean;
|
|
1851
|
+
adjustmentDirection?: string;
|
|
1852
|
+
adjustmentType?: string;
|
|
1853
|
+
receiverAccountNumber?: string;
|
|
1854
|
+
}, {
|
|
1855
|
+
description?: string;
|
|
1856
|
+
counterpartyName?: string;
|
|
1857
|
+
accountNumber?: string;
|
|
1858
|
+
transactionType?: string;
|
|
1859
|
+
amount?: string;
|
|
1860
|
+
certifyInformation?: boolean;
|
|
1861
|
+
adjustmentDirection?: string;
|
|
1862
|
+
adjustmentType?: string;
|
|
1863
|
+
receiverAccountNumber?: string;
|
|
1864
|
+
}>, {
|
|
1865
|
+
description?: string;
|
|
1866
|
+
counterpartyName?: string;
|
|
1867
|
+
accountNumber?: string;
|
|
1868
|
+
transactionType?: string;
|
|
1869
|
+
amount?: string;
|
|
1870
|
+
certifyInformation?: boolean;
|
|
1871
|
+
adjustmentDirection?: string;
|
|
1872
|
+
adjustmentType?: string;
|
|
1873
|
+
receiverAccountNumber?: string;
|
|
1778
1874
|
}, {
|
|
1779
1875
|
description?: string;
|
|
1780
1876
|
counterpartyName?: string;
|
|
1781
1877
|
accountNumber?: string;
|
|
1782
1878
|
transactionType?: string;
|
|
1783
1879
|
amount?: string;
|
|
1784
|
-
currency?: string;
|
|
1785
1880
|
certifyInformation?: boolean;
|
|
1881
|
+
adjustmentDirection?: string;
|
|
1882
|
+
adjustmentType?: string;
|
|
1883
|
+
receiverAccountNumber?: string;
|
|
1786
1884
|
}>;
|
|
1787
1885
|
declare function NewTransaction(): react_jsx_runtime.JSX.Element;
|
|
1788
1886
|
|
|
@@ -1809,4 +1907,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
1809
1907
|
*/
|
|
1810
1908
|
declare function downloadCSV(content: string, filename: string): void;
|
|
1811
1909
|
|
|
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,
|
|
1910
|
+
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
|
-
icon:
|
|
1016
|
+
icon: React__default.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>;
|
|
1017
|
+
}[];
|
|
1018
|
+
declare const ADJUSTMENT_DIRECTION_OPTIONS: {
|
|
1019
|
+
value: string;
|
|
1020
|
+
label: string;
|
|
1008
1021
|
}[];
|
|
1009
|
-
declare const
|
|
1022
|
+
declare const ADJUSTMENT_TYPE_OPTIONS: {
|
|
1010
1023
|
value: string;
|
|
1011
1024
|
label: string;
|
|
1012
1025
|
}[];
|
|
@@ -1020,16 +1033,32 @@ 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;
|
|
1031
|
-
|
|
1032
|
-
|
|
1050
|
+
onNewTransaction: () => void;
|
|
1051
|
+
onCounterpartySearchChange: (value: string) => void;
|
|
1052
|
+
onCounterpartySelect: (result: CounterpartySearchResult) => void;
|
|
1053
|
+
onCounterpartyDropdownClose: () => void;
|
|
1054
|
+
receiverAccountLookedUp: boolean;
|
|
1055
|
+
receiverAccountData: AccountData | null;
|
|
1056
|
+
isReceiverAccountLoading: boolean;
|
|
1057
|
+
onReceiverAccountLookup: () => void;
|
|
1058
|
+
onEditReceiverAccount: () => void;
|
|
1059
|
+
isReviewReady: boolean;
|
|
1060
|
+
}
|
|
1061
|
+
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, onNewTransaction, onCounterpartySearchChange, onCounterpartySelect, onCounterpartyDropdownClose, receiverAccountLookedUp, receiverAccountData, isReceiverAccountLoading, onReceiverAccountLookup, onEditReceiverAccount, isReviewReady, }: NewTransactionViewProps) => react_jsx_runtime.JSX.Element;
|
|
1033
1062
|
|
|
1034
1063
|
interface AccountCardProps {
|
|
1035
1064
|
account: {
|
|
@@ -1208,7 +1237,10 @@ declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.D
|
|
|
1208
1237
|
declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
1209
1238
|
declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1210
1239
|
declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1211
|
-
|
|
1240
|
+
interface DialogContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> {
|
|
1241
|
+
hideCloseButton?: boolean;
|
|
1242
|
+
}
|
|
1243
|
+
declare const DialogContent: React$1.ForwardRefExoticComponent<DialogContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1212
1244
|
declare const DialogHeader: {
|
|
1213
1245
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1214
1246
|
displayName: string;
|
|
@@ -1759,30 +1791,96 @@ declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
|
1759
1791
|
|
|
1760
1792
|
declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
|
|
1761
1793
|
|
|
1762
|
-
declare const newTransactionSchema: z.ZodObject<{
|
|
1794
|
+
declare const newTransactionSchema: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
1763
1795
|
transactionType: z.ZodString;
|
|
1764
1796
|
accountNumber: z.ZodString;
|
|
1765
|
-
counterpartyName: z.ZodString
|
|
1797
|
+
counterpartyName: z.ZodOptional<z.ZodString>;
|
|
1766
1798
|
amount: z.ZodString;
|
|
1767
|
-
currency: z.ZodString;
|
|
1768
1799
|
description: z.ZodOptional<z.ZodString>;
|
|
1769
1800
|
certifyInformation: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
|
|
1801
|
+
adjustmentDirection: z.ZodOptional<z.ZodString>;
|
|
1802
|
+
adjustmentType: z.ZodOptional<z.ZodString>;
|
|
1803
|
+
receiverAccountNumber: z.ZodOptional<z.ZodString>;
|
|
1770
1804
|
}, "strip", z.ZodTypeAny, {
|
|
1771
1805
|
description?: string;
|
|
1772
1806
|
counterpartyName?: string;
|
|
1773
1807
|
accountNumber?: string;
|
|
1774
1808
|
transactionType?: string;
|
|
1775
1809
|
amount?: string;
|
|
1776
|
-
currency?: string;
|
|
1777
1810
|
certifyInformation?: boolean;
|
|
1811
|
+
adjustmentDirection?: string;
|
|
1812
|
+
adjustmentType?: string;
|
|
1813
|
+
receiverAccountNumber?: string;
|
|
1814
|
+
}, {
|
|
1815
|
+
description?: string;
|
|
1816
|
+
counterpartyName?: string;
|
|
1817
|
+
accountNumber?: string;
|
|
1818
|
+
transactionType?: string;
|
|
1819
|
+
amount?: string;
|
|
1820
|
+
certifyInformation?: boolean;
|
|
1821
|
+
adjustmentDirection?: string;
|
|
1822
|
+
adjustmentType?: string;
|
|
1823
|
+
receiverAccountNumber?: string;
|
|
1824
|
+
}>, {
|
|
1825
|
+
description?: string;
|
|
1826
|
+
counterpartyName?: string;
|
|
1827
|
+
accountNumber?: string;
|
|
1828
|
+
transactionType?: string;
|
|
1829
|
+
amount?: string;
|
|
1830
|
+
certifyInformation?: boolean;
|
|
1831
|
+
adjustmentDirection?: string;
|
|
1832
|
+
adjustmentType?: string;
|
|
1833
|
+
receiverAccountNumber?: string;
|
|
1834
|
+
}, {
|
|
1835
|
+
description?: string;
|
|
1836
|
+
counterpartyName?: string;
|
|
1837
|
+
accountNumber?: string;
|
|
1838
|
+
transactionType?: string;
|
|
1839
|
+
amount?: string;
|
|
1840
|
+
certifyInformation?: boolean;
|
|
1841
|
+
adjustmentDirection?: string;
|
|
1842
|
+
adjustmentType?: string;
|
|
1843
|
+
receiverAccountNumber?: string;
|
|
1844
|
+
}>, {
|
|
1845
|
+
description?: string;
|
|
1846
|
+
counterpartyName?: string;
|
|
1847
|
+
accountNumber?: string;
|
|
1848
|
+
transactionType?: string;
|
|
1849
|
+
amount?: string;
|
|
1850
|
+
certifyInformation?: boolean;
|
|
1851
|
+
adjustmentDirection?: string;
|
|
1852
|
+
adjustmentType?: string;
|
|
1853
|
+
receiverAccountNumber?: string;
|
|
1854
|
+
}, {
|
|
1855
|
+
description?: string;
|
|
1856
|
+
counterpartyName?: string;
|
|
1857
|
+
accountNumber?: string;
|
|
1858
|
+
transactionType?: string;
|
|
1859
|
+
amount?: string;
|
|
1860
|
+
certifyInformation?: boolean;
|
|
1861
|
+
adjustmentDirection?: string;
|
|
1862
|
+
adjustmentType?: string;
|
|
1863
|
+
receiverAccountNumber?: string;
|
|
1864
|
+
}>, {
|
|
1865
|
+
description?: string;
|
|
1866
|
+
counterpartyName?: string;
|
|
1867
|
+
accountNumber?: string;
|
|
1868
|
+
transactionType?: string;
|
|
1869
|
+
amount?: string;
|
|
1870
|
+
certifyInformation?: boolean;
|
|
1871
|
+
adjustmentDirection?: string;
|
|
1872
|
+
adjustmentType?: string;
|
|
1873
|
+
receiverAccountNumber?: string;
|
|
1778
1874
|
}, {
|
|
1779
1875
|
description?: string;
|
|
1780
1876
|
counterpartyName?: string;
|
|
1781
1877
|
accountNumber?: string;
|
|
1782
1878
|
transactionType?: string;
|
|
1783
1879
|
amount?: string;
|
|
1784
|
-
currency?: string;
|
|
1785
1880
|
certifyInformation?: boolean;
|
|
1881
|
+
adjustmentDirection?: string;
|
|
1882
|
+
adjustmentType?: string;
|
|
1883
|
+
receiverAccountNumber?: string;
|
|
1786
1884
|
}>;
|
|
1787
1885
|
declare function NewTransaction(): react_jsx_runtime.JSX.Element;
|
|
1788
1886
|
|
|
@@ -1809,4 +1907,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
1809
1907
|
*/
|
|
1810
1908
|
declare function downloadCSV(content: string, filename: string): void;
|
|
1811
1909
|
|
|
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,
|
|
1910
|
+
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 };
|