braid-ui 1.0.126 → 1.0.128
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/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +86 -3
- package/dist/index.d.ts +86 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1213,7 +1213,7 @@ interface NewTransactionFormValues {
|
|
|
1213
1213
|
adjustmentType?: string;
|
|
1214
1214
|
receiverAccountNumber?: string;
|
|
1215
1215
|
}
|
|
1216
|
-
interface TransactionTypeOption {
|
|
1216
|
+
interface TransactionTypeOption$1 {
|
|
1217
1217
|
value: string;
|
|
1218
1218
|
label: string;
|
|
1219
1219
|
icon: React__default.ComponentType<{
|
|
@@ -1267,7 +1267,7 @@ interface NewTransactionViewProps {
|
|
|
1267
1267
|
onEditReceiverAccount: () => void;
|
|
1268
1268
|
isReviewReady: boolean;
|
|
1269
1269
|
adjustmentTypeOptions: AdjustmentTypeOption[];
|
|
1270
|
-
transactionTypeOptions: TransactionTypeOption[];
|
|
1270
|
+
transactionTypeOptions: TransactionTypeOption$1[];
|
|
1271
1271
|
showSuccessInfoBox?: boolean;
|
|
1272
1272
|
successInfoMessage?: string;
|
|
1273
1273
|
}
|
|
@@ -1414,6 +1414,89 @@ interface ReturnTransactionDialogProps {
|
|
|
1414
1414
|
}
|
|
1415
1415
|
declare function ReturnTransactionDialog({ transactionId, open, onOpenChange, onReturn, reasonCodes, }: ReturnTransactionDialogProps): react_jsx_runtime.JSX.Element;
|
|
1416
1416
|
|
|
1417
|
+
interface BraidTransaction {
|
|
1418
|
+
id: string;
|
|
1419
|
+
amount: number;
|
|
1420
|
+
postDate: string;
|
|
1421
|
+
senderAccount: string;
|
|
1422
|
+
receiverAccount: string;
|
|
1423
|
+
type: "ACH" | "Wire";
|
|
1424
|
+
}
|
|
1425
|
+
interface FedSettlement {
|
|
1426
|
+
id: string;
|
|
1427
|
+
amount: number;
|
|
1428
|
+
settlementDate: string;
|
|
1429
|
+
receiverAccount: string;
|
|
1430
|
+
type: "ACH" | "Wire";
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
interface TransactionTypeOption {
|
|
1434
|
+
label: string;
|
|
1435
|
+
value: string;
|
|
1436
|
+
}
|
|
1437
|
+
interface RowsPerPageOption {
|
|
1438
|
+
label: string;
|
|
1439
|
+
value: number;
|
|
1440
|
+
}
|
|
1441
|
+
interface ReconExceptionsViewProps {
|
|
1442
|
+
fromDate?: Date;
|
|
1443
|
+
toDate?: Date;
|
|
1444
|
+
transactionType: string;
|
|
1445
|
+
transactionTypeOptions: TransactionTypeOption[];
|
|
1446
|
+
rowsPerPageOptions: RowsPerPageOption[];
|
|
1447
|
+
braidData: BraidTransaction[];
|
|
1448
|
+
fedData: FedSettlement[];
|
|
1449
|
+
braidPaginatedData: BraidTransaction[];
|
|
1450
|
+
fedPaginatedData: FedSettlement[];
|
|
1451
|
+
selectedBraid: string | null;
|
|
1452
|
+
selectedFed: string | null;
|
|
1453
|
+
dataLoaded: boolean;
|
|
1454
|
+
braidPage: number;
|
|
1455
|
+
braidRowsPerPage: number;
|
|
1456
|
+
braidTotalPages: number;
|
|
1457
|
+
fedPage: number;
|
|
1458
|
+
fedRowsPerPage: number;
|
|
1459
|
+
fedTotalPages: number;
|
|
1460
|
+
canMatch: boolean;
|
|
1461
|
+
onFromDateChange: (date?: Date) => void;
|
|
1462
|
+
onToDateChange: (date?: Date) => void;
|
|
1463
|
+
onTransactionTypeChange: (value: string) => void;
|
|
1464
|
+
onSearch: () => void;
|
|
1465
|
+
onMatch: () => void;
|
|
1466
|
+
onSelectBraid: (id: string) => void;
|
|
1467
|
+
onSelectFed: (id: string) => void;
|
|
1468
|
+
onBraidPageChange: (page: number) => void;
|
|
1469
|
+
onFedPageChange: (page: number) => void;
|
|
1470
|
+
onBraidRowsPerPageChange: (rows: number) => void;
|
|
1471
|
+
onFedRowsPerPageChange: (rows: number) => void;
|
|
1472
|
+
}
|
|
1473
|
+
declare function ReconExceptionsView({ fromDate, toDate, transactionType, transactionTypeOptions, rowsPerPageOptions, braidData, fedData, braidPaginatedData, fedPaginatedData, selectedBraid, selectedFed, dataLoaded, braidPage, braidRowsPerPage, braidTotalPages, fedPage, fedRowsPerPage, fedTotalPages, canMatch, onFromDateChange, onToDateChange, onTransactionTypeChange, onSearch, onMatch, onSelectBraid, onSelectFed, onBraidPageChange, onFedPageChange, onBraidRowsPerPageChange, onFedRowsPerPageChange, }: ReconExceptionsViewProps): react_jsx_runtime.JSX.Element;
|
|
1474
|
+
|
|
1475
|
+
interface ReconUpload$1 {
|
|
1476
|
+
id: string;
|
|
1477
|
+
uploaded: string;
|
|
1478
|
+
fileName: string;
|
|
1479
|
+
type: string;
|
|
1480
|
+
status: "Processed" | "Failed";
|
|
1481
|
+
requester: string;
|
|
1482
|
+
totalRecords: number;
|
|
1483
|
+
matchedRecords: number;
|
|
1484
|
+
exceptionRecords: number;
|
|
1485
|
+
skippedRecords: number;
|
|
1486
|
+
invalidRecords: number;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
interface ReconUploadViewProps {
|
|
1490
|
+
uploads: ReconUpload$1[];
|
|
1491
|
+
sortField: keyof ReconUpload$1;
|
|
1492
|
+
sortDirection: "asc" | "desc";
|
|
1493
|
+
uploadDialogOpen: boolean;
|
|
1494
|
+
onSort: (field: keyof ReconUpload$1) => void;
|
|
1495
|
+
onUploadDialogOpenChange: (open: boolean) => void;
|
|
1496
|
+
onOpenUploadDialog: () => void;
|
|
1497
|
+
}
|
|
1498
|
+
declare function ReconUploadView({ uploads, sortField, sortDirection, uploadDialogOpen, onSort, onUploadDialogOpenChange, onOpenUploadDialog, }: ReconUploadViewProps): react_jsx_runtime.JSX.Element;
|
|
1499
|
+
|
|
1417
1500
|
interface AccountCardProps {
|
|
1418
1501
|
account: {
|
|
1419
1502
|
id: string;
|
|
@@ -2204,4 +2287,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2204
2287
|
*/
|
|
2205
2288
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2206
2289
|
|
|
2207
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, 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, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, 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, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, 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, FeeDetailView, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, 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, ReturnTransactionDialog, ScrollArea, ScrollBar, type SelectOption, 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, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption, 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 };
|
|
2290
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, 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, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, 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, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, 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, FeeDetailView, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, 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, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption, 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, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption$1 as TransactionTypeOption, 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
|
@@ -1213,7 +1213,7 @@ interface NewTransactionFormValues {
|
|
|
1213
1213
|
adjustmentType?: string;
|
|
1214
1214
|
receiverAccountNumber?: string;
|
|
1215
1215
|
}
|
|
1216
|
-
interface TransactionTypeOption {
|
|
1216
|
+
interface TransactionTypeOption$1 {
|
|
1217
1217
|
value: string;
|
|
1218
1218
|
label: string;
|
|
1219
1219
|
icon: React__default.ComponentType<{
|
|
@@ -1267,7 +1267,7 @@ interface NewTransactionViewProps {
|
|
|
1267
1267
|
onEditReceiverAccount: () => void;
|
|
1268
1268
|
isReviewReady: boolean;
|
|
1269
1269
|
adjustmentTypeOptions: AdjustmentTypeOption[];
|
|
1270
|
-
transactionTypeOptions: TransactionTypeOption[];
|
|
1270
|
+
transactionTypeOptions: TransactionTypeOption$1[];
|
|
1271
1271
|
showSuccessInfoBox?: boolean;
|
|
1272
1272
|
successInfoMessage?: string;
|
|
1273
1273
|
}
|
|
@@ -1414,6 +1414,89 @@ interface ReturnTransactionDialogProps {
|
|
|
1414
1414
|
}
|
|
1415
1415
|
declare function ReturnTransactionDialog({ transactionId, open, onOpenChange, onReturn, reasonCodes, }: ReturnTransactionDialogProps): react_jsx_runtime.JSX.Element;
|
|
1416
1416
|
|
|
1417
|
+
interface BraidTransaction {
|
|
1418
|
+
id: string;
|
|
1419
|
+
amount: number;
|
|
1420
|
+
postDate: string;
|
|
1421
|
+
senderAccount: string;
|
|
1422
|
+
receiverAccount: string;
|
|
1423
|
+
type: "ACH" | "Wire";
|
|
1424
|
+
}
|
|
1425
|
+
interface FedSettlement {
|
|
1426
|
+
id: string;
|
|
1427
|
+
amount: number;
|
|
1428
|
+
settlementDate: string;
|
|
1429
|
+
receiverAccount: string;
|
|
1430
|
+
type: "ACH" | "Wire";
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
interface TransactionTypeOption {
|
|
1434
|
+
label: string;
|
|
1435
|
+
value: string;
|
|
1436
|
+
}
|
|
1437
|
+
interface RowsPerPageOption {
|
|
1438
|
+
label: string;
|
|
1439
|
+
value: number;
|
|
1440
|
+
}
|
|
1441
|
+
interface ReconExceptionsViewProps {
|
|
1442
|
+
fromDate?: Date;
|
|
1443
|
+
toDate?: Date;
|
|
1444
|
+
transactionType: string;
|
|
1445
|
+
transactionTypeOptions: TransactionTypeOption[];
|
|
1446
|
+
rowsPerPageOptions: RowsPerPageOption[];
|
|
1447
|
+
braidData: BraidTransaction[];
|
|
1448
|
+
fedData: FedSettlement[];
|
|
1449
|
+
braidPaginatedData: BraidTransaction[];
|
|
1450
|
+
fedPaginatedData: FedSettlement[];
|
|
1451
|
+
selectedBraid: string | null;
|
|
1452
|
+
selectedFed: string | null;
|
|
1453
|
+
dataLoaded: boolean;
|
|
1454
|
+
braidPage: number;
|
|
1455
|
+
braidRowsPerPage: number;
|
|
1456
|
+
braidTotalPages: number;
|
|
1457
|
+
fedPage: number;
|
|
1458
|
+
fedRowsPerPage: number;
|
|
1459
|
+
fedTotalPages: number;
|
|
1460
|
+
canMatch: boolean;
|
|
1461
|
+
onFromDateChange: (date?: Date) => void;
|
|
1462
|
+
onToDateChange: (date?: Date) => void;
|
|
1463
|
+
onTransactionTypeChange: (value: string) => void;
|
|
1464
|
+
onSearch: () => void;
|
|
1465
|
+
onMatch: () => void;
|
|
1466
|
+
onSelectBraid: (id: string) => void;
|
|
1467
|
+
onSelectFed: (id: string) => void;
|
|
1468
|
+
onBraidPageChange: (page: number) => void;
|
|
1469
|
+
onFedPageChange: (page: number) => void;
|
|
1470
|
+
onBraidRowsPerPageChange: (rows: number) => void;
|
|
1471
|
+
onFedRowsPerPageChange: (rows: number) => void;
|
|
1472
|
+
}
|
|
1473
|
+
declare function ReconExceptionsView({ fromDate, toDate, transactionType, transactionTypeOptions, rowsPerPageOptions, braidData, fedData, braidPaginatedData, fedPaginatedData, selectedBraid, selectedFed, dataLoaded, braidPage, braidRowsPerPage, braidTotalPages, fedPage, fedRowsPerPage, fedTotalPages, canMatch, onFromDateChange, onToDateChange, onTransactionTypeChange, onSearch, onMatch, onSelectBraid, onSelectFed, onBraidPageChange, onFedPageChange, onBraidRowsPerPageChange, onFedRowsPerPageChange, }: ReconExceptionsViewProps): react_jsx_runtime.JSX.Element;
|
|
1474
|
+
|
|
1475
|
+
interface ReconUpload$1 {
|
|
1476
|
+
id: string;
|
|
1477
|
+
uploaded: string;
|
|
1478
|
+
fileName: string;
|
|
1479
|
+
type: string;
|
|
1480
|
+
status: "Processed" | "Failed";
|
|
1481
|
+
requester: string;
|
|
1482
|
+
totalRecords: number;
|
|
1483
|
+
matchedRecords: number;
|
|
1484
|
+
exceptionRecords: number;
|
|
1485
|
+
skippedRecords: number;
|
|
1486
|
+
invalidRecords: number;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
interface ReconUploadViewProps {
|
|
1490
|
+
uploads: ReconUpload$1[];
|
|
1491
|
+
sortField: keyof ReconUpload$1;
|
|
1492
|
+
sortDirection: "asc" | "desc";
|
|
1493
|
+
uploadDialogOpen: boolean;
|
|
1494
|
+
onSort: (field: keyof ReconUpload$1) => void;
|
|
1495
|
+
onUploadDialogOpenChange: (open: boolean) => void;
|
|
1496
|
+
onOpenUploadDialog: () => void;
|
|
1497
|
+
}
|
|
1498
|
+
declare function ReconUploadView({ uploads, sortField, sortDirection, uploadDialogOpen, onSort, onUploadDialogOpenChange, onOpenUploadDialog, }: ReconUploadViewProps): react_jsx_runtime.JSX.Element;
|
|
1499
|
+
|
|
1417
1500
|
interface AccountCardProps {
|
|
1418
1501
|
account: {
|
|
1419
1502
|
id: string;
|
|
@@ -2204,4 +2287,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2204
2287
|
*/
|
|
2205
2288
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2206
2289
|
|
|
2207
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, 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, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, 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, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, 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, FeeDetailView, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, 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, ReturnTransactionDialog, ScrollArea, ScrollBar, type SelectOption, 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, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption, 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 };
|
|
2290
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, 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, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, 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, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, 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, FeeDetailView, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, 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, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption, 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, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption$1 as TransactionTypeOption, 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 };
|