braid-ui 1.0.160 → 1.0.162
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 +57 -4
- package/dist/index.d.ts +57 -4
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1844,6 +1844,38 @@ interface ACHReturnViewProps {
|
|
|
1844
1844
|
}
|
|
1845
1845
|
declare function ACHReturnView({ title, returnRateSectionTitle, unauthorizedSectionTitle, returnRateTable, unauthorizedTable, returnRateFilters, onReturnRateFilterChange, onReturnRateResetFilters, onReturnRateApplyFilters, productOptions, methodOptions, returnRateFiltersTitle, }: ACHReturnViewProps): react_jsx_runtime.JSX.Element;
|
|
1846
1846
|
|
|
1847
|
+
interface ACHNOCChangeFieldsConfig {
|
|
1848
|
+
showAccountNumber?: boolean;
|
|
1849
|
+
showRoutingNumber?: boolean;
|
|
1850
|
+
showTransactionType?: boolean;
|
|
1851
|
+
}
|
|
1852
|
+
interface ACHNOCChangeData {
|
|
1853
|
+
current: {
|
|
1854
|
+
accountNumber: string;
|
|
1855
|
+
routingNumber: string;
|
|
1856
|
+
accountType: string;
|
|
1857
|
+
};
|
|
1858
|
+
corrected: {
|
|
1859
|
+
accountNumber: string;
|
|
1860
|
+
routingNumber: string;
|
|
1861
|
+
transactionType: string;
|
|
1862
|
+
};
|
|
1863
|
+
}
|
|
1864
|
+
interface ACHNOCViewProps {
|
|
1865
|
+
title: string;
|
|
1866
|
+
table: ReactNode;
|
|
1867
|
+
jsonOpen: boolean;
|
|
1868
|
+
onJsonOpenChange: (open: boolean) => void;
|
|
1869
|
+
jsonData: unknown;
|
|
1870
|
+
changeOpen: boolean;
|
|
1871
|
+
onChangeOpenChange: (open: boolean) => void;
|
|
1872
|
+
changeData: ACHNOCChangeData | null;
|
|
1873
|
+
changeFields: ACHNOCChangeFieldsConfig;
|
|
1874
|
+
isChanging: boolean;
|
|
1875
|
+
onChangeSubmit: () => void;
|
|
1876
|
+
}
|
|
1877
|
+
declare function ACHNOCView({ title, table, jsonOpen, onJsonOpenChange, jsonData, changeOpen, onChangeOpenChange, changeData, changeFields, isChanging, onChangeSubmit, }: ACHNOCViewProps): react_jsx_runtime.JSX.Element;
|
|
1878
|
+
|
|
1847
1879
|
interface IncomingWireTransactionValues {
|
|
1848
1880
|
originatorBankName: string;
|
|
1849
1881
|
originatorAccountNumber: string;
|
|
@@ -1855,6 +1887,16 @@ interface IncomingWireTransactionValues {
|
|
|
1855
1887
|
omad: string;
|
|
1856
1888
|
}
|
|
1857
1889
|
|
|
1890
|
+
interface WireFileTypeOption {
|
|
1891
|
+
value: string;
|
|
1892
|
+
label: string;
|
|
1893
|
+
description: string;
|
|
1894
|
+
icon: React.ComponentType<{
|
|
1895
|
+
className?: string;
|
|
1896
|
+
}>;
|
|
1897
|
+
disabled?: boolean;
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1858
1900
|
interface WireProcessingViewProps {
|
|
1859
1901
|
title: string;
|
|
1860
1902
|
cardTitle: string;
|
|
@@ -1862,14 +1904,25 @@ interface WireProcessingViewProps {
|
|
|
1862
1904
|
table: ReactNode;
|
|
1863
1905
|
uploadDialogOpen: boolean;
|
|
1864
1906
|
onUploadDialogOpenChange: (open: boolean) => void;
|
|
1865
|
-
uploadDialogMessage?: string;
|
|
1866
1907
|
incomingTransactionOpen: boolean;
|
|
1867
1908
|
onIncomingTransactionOpenChange: (open: boolean) => void;
|
|
1868
1909
|
isProcessingIncoming: boolean;
|
|
1869
1910
|
onProcessIncoming: (values: IncomingWireTransactionValues) => void;
|
|
1870
|
-
|
|
1911
|
+
fileType: string | null;
|
|
1912
|
+
selectedFile: File | null;
|
|
1913
|
+
isUploading: boolean;
|
|
1914
|
+
fileTypeOptions: WireFileTypeOption[];
|
|
1915
|
+
acceptedFileTypes: string;
|
|
1916
|
+
acceptedFileTypesLabel: string;
|
|
1917
|
+
fileInputRef: RefObject<HTMLInputElement>;
|
|
1918
|
+
onFileTypeChange: (value: string) => void;
|
|
1919
|
+
onFileChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
1920
|
+
onRemoveFile: () => void;
|
|
1921
|
+
onSelectFileClick: () => void;
|
|
1922
|
+
onUpload: () => void;
|
|
1923
|
+
onCancelUpload: () => void;
|
|
1871
1924
|
}
|
|
1872
|
-
declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialogOpen, onUploadDialogOpenChange,
|
|
1925
|
+
declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialogOpen, onUploadDialogOpenChange, incomingTransactionOpen, onIncomingTransactionOpenChange, isProcessingIncoming, onProcessIncoming, fileType, selectedFile, isUploading, fileTypeOptions, acceptedFileTypes, acceptedFileTypesLabel, fileInputRef, onFileTypeChange, onFileChange, onRemoveFile, onSelectFileClick, onUpload, onCancelUpload, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
|
|
1873
1926
|
|
|
1874
1927
|
interface WireProcessingDetailItem {
|
|
1875
1928
|
id: number;
|
|
@@ -2703,4 +2756,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2703
2756
|
*/
|
|
2704
2757
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2705
2758
|
|
|
2706
|
-
export { type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, 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, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$7 as 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, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
2759
|
+
export { type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, 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, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$7 as 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, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -1844,6 +1844,38 @@ interface ACHReturnViewProps {
|
|
|
1844
1844
|
}
|
|
1845
1845
|
declare function ACHReturnView({ title, returnRateSectionTitle, unauthorizedSectionTitle, returnRateTable, unauthorizedTable, returnRateFilters, onReturnRateFilterChange, onReturnRateResetFilters, onReturnRateApplyFilters, productOptions, methodOptions, returnRateFiltersTitle, }: ACHReturnViewProps): react_jsx_runtime.JSX.Element;
|
|
1846
1846
|
|
|
1847
|
+
interface ACHNOCChangeFieldsConfig {
|
|
1848
|
+
showAccountNumber?: boolean;
|
|
1849
|
+
showRoutingNumber?: boolean;
|
|
1850
|
+
showTransactionType?: boolean;
|
|
1851
|
+
}
|
|
1852
|
+
interface ACHNOCChangeData {
|
|
1853
|
+
current: {
|
|
1854
|
+
accountNumber: string;
|
|
1855
|
+
routingNumber: string;
|
|
1856
|
+
accountType: string;
|
|
1857
|
+
};
|
|
1858
|
+
corrected: {
|
|
1859
|
+
accountNumber: string;
|
|
1860
|
+
routingNumber: string;
|
|
1861
|
+
transactionType: string;
|
|
1862
|
+
};
|
|
1863
|
+
}
|
|
1864
|
+
interface ACHNOCViewProps {
|
|
1865
|
+
title: string;
|
|
1866
|
+
table: ReactNode;
|
|
1867
|
+
jsonOpen: boolean;
|
|
1868
|
+
onJsonOpenChange: (open: boolean) => void;
|
|
1869
|
+
jsonData: unknown;
|
|
1870
|
+
changeOpen: boolean;
|
|
1871
|
+
onChangeOpenChange: (open: boolean) => void;
|
|
1872
|
+
changeData: ACHNOCChangeData | null;
|
|
1873
|
+
changeFields: ACHNOCChangeFieldsConfig;
|
|
1874
|
+
isChanging: boolean;
|
|
1875
|
+
onChangeSubmit: () => void;
|
|
1876
|
+
}
|
|
1877
|
+
declare function ACHNOCView({ title, table, jsonOpen, onJsonOpenChange, jsonData, changeOpen, onChangeOpenChange, changeData, changeFields, isChanging, onChangeSubmit, }: ACHNOCViewProps): react_jsx_runtime.JSX.Element;
|
|
1878
|
+
|
|
1847
1879
|
interface IncomingWireTransactionValues {
|
|
1848
1880
|
originatorBankName: string;
|
|
1849
1881
|
originatorAccountNumber: string;
|
|
@@ -1855,6 +1887,16 @@ interface IncomingWireTransactionValues {
|
|
|
1855
1887
|
omad: string;
|
|
1856
1888
|
}
|
|
1857
1889
|
|
|
1890
|
+
interface WireFileTypeOption {
|
|
1891
|
+
value: string;
|
|
1892
|
+
label: string;
|
|
1893
|
+
description: string;
|
|
1894
|
+
icon: React.ComponentType<{
|
|
1895
|
+
className?: string;
|
|
1896
|
+
}>;
|
|
1897
|
+
disabled?: boolean;
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1858
1900
|
interface WireProcessingViewProps {
|
|
1859
1901
|
title: string;
|
|
1860
1902
|
cardTitle: string;
|
|
@@ -1862,14 +1904,25 @@ interface WireProcessingViewProps {
|
|
|
1862
1904
|
table: ReactNode;
|
|
1863
1905
|
uploadDialogOpen: boolean;
|
|
1864
1906
|
onUploadDialogOpenChange: (open: boolean) => void;
|
|
1865
|
-
uploadDialogMessage?: string;
|
|
1866
1907
|
incomingTransactionOpen: boolean;
|
|
1867
1908
|
onIncomingTransactionOpenChange: (open: boolean) => void;
|
|
1868
1909
|
isProcessingIncoming: boolean;
|
|
1869
1910
|
onProcessIncoming: (values: IncomingWireTransactionValues) => void;
|
|
1870
|
-
|
|
1911
|
+
fileType: string | null;
|
|
1912
|
+
selectedFile: File | null;
|
|
1913
|
+
isUploading: boolean;
|
|
1914
|
+
fileTypeOptions: WireFileTypeOption[];
|
|
1915
|
+
acceptedFileTypes: string;
|
|
1916
|
+
acceptedFileTypesLabel: string;
|
|
1917
|
+
fileInputRef: RefObject<HTMLInputElement>;
|
|
1918
|
+
onFileTypeChange: (value: string) => void;
|
|
1919
|
+
onFileChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
1920
|
+
onRemoveFile: () => void;
|
|
1921
|
+
onSelectFileClick: () => void;
|
|
1922
|
+
onUpload: () => void;
|
|
1923
|
+
onCancelUpload: () => void;
|
|
1871
1924
|
}
|
|
1872
|
-
declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialogOpen, onUploadDialogOpenChange,
|
|
1925
|
+
declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialogOpen, onUploadDialogOpenChange, incomingTransactionOpen, onIncomingTransactionOpenChange, isProcessingIncoming, onProcessIncoming, fileType, selectedFile, isUploading, fileTypeOptions, acceptedFileTypes, acceptedFileTypesLabel, fileInputRef, onFileTypeChange, onFileChange, onRemoveFile, onSelectFileClick, onUpload, onCancelUpload, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
|
|
1873
1926
|
|
|
1874
1927
|
interface WireProcessingDetailItem {
|
|
1875
1928
|
id: number;
|
|
@@ -2703,4 +2756,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2703
2756
|
*/
|
|
2704
2757
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2705
2758
|
|
|
2706
|
-
export { type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, 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, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$7 as 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, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
2759
|
+
export { type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, 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, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$7 as 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, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|