braid-ui 1.0.159 → 1.0.161

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.d.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { z } from 'zod';
3
3
  import * as React$1 from 'react';
4
- import React__default, { ReactNode } from 'react';
4
+ import React__default, { ReactNode, RefObject } from 'react';
5
5
  import { UseFormReturn, FieldValues, FieldPath, UseFormProps, Path } from 'react-hook-form';
6
6
  import * as class_variance_authority_types from 'class-variance-authority/types';
7
7
  import { VariantProps } from 'class-variance-authority';
@@ -1712,14 +1712,37 @@ interface ReconUploadViewProps {
1712
1712
  }
1713
1713
  declare function ReconUploadView({ table, uploadDialog, onOpenUploadDialog }: ReconUploadViewProps): react_jsx_runtime.JSX.Element;
1714
1714
 
1715
+ interface FileTypeOption {
1716
+ value: string;
1717
+ label: string;
1718
+ description: string;
1719
+ icon: React.ComponentType<{
1720
+ className?: string;
1721
+ }>;
1722
+ }
1723
+
1715
1724
  interface ACHProcessingViewProps {
1716
1725
  title: string;
1717
1726
  cardTitle: string;
1718
1727
  table: ReactNode;
1719
- uploadDialog: ReactNode;
1720
- onOpenUploadDialog: () => void;
1728
+ uploadButtonLabel?: string;
1729
+ uploadDialogOpen: boolean;
1730
+ onUploadDialogOpenChange: (open: boolean) => void;
1731
+ fileType: string | null;
1732
+ selectedFile: File | null;
1733
+ isUploading: boolean;
1734
+ fileTypeOptions: FileTypeOption[];
1735
+ acceptedFileTypes: string;
1736
+ acceptedFileTypesLabel: string;
1737
+ fileInputRef: RefObject<HTMLInputElement>;
1738
+ onFileTypeChange: (value: string) => void;
1739
+ onFileChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
1740
+ onRemoveFile: () => void;
1741
+ onSelectFileClick: () => void;
1742
+ onUpload: () => void;
1743
+ onCancelUpload: () => void;
1721
1744
  }
1722
- declare function ACHProcessingView({ title, cardTitle, table, uploadDialog, onOpenUploadDialog, }: ACHProcessingViewProps): react_jsx_runtime.JSX.Element;
1745
+ declare function ACHProcessingView({ title, cardTitle, table, uploadButtonLabel, uploadDialogOpen, onUploadDialogOpenChange, fileType, selectedFile, isUploading, fileTypeOptions, acceptedFileTypes, acceptedFileTypesLabel, fileInputRef, onFileTypeChange, onFileChange, onRemoveFile, onSelectFileClick, onUpload, onCancelUpload, }: ACHProcessingViewProps): react_jsx_runtime.JSX.Element;
1723
1746
 
1724
1747
  interface ACHProcessingDetailItem {
1725
1748
  id: string;
@@ -1821,6 +1844,38 @@ interface ACHReturnViewProps {
1821
1844
  }
1822
1845
  declare function ACHReturnView({ title, returnRateSectionTitle, unauthorizedSectionTitle, returnRateTable, unauthorizedTable, returnRateFilters, onReturnRateFilterChange, onReturnRateResetFilters, onReturnRateApplyFilters, productOptions, methodOptions, returnRateFiltersTitle, }: ACHReturnViewProps): react_jsx_runtime.JSX.Element;
1823
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
+
1824
1879
  interface IncomingWireTransactionValues {
1825
1880
  originatorBankName: string;
1826
1881
  originatorAccountNumber: string;
@@ -1837,15 +1892,16 @@ interface WireProcessingViewProps {
1837
1892
  cardTitle: string;
1838
1893
  uploadButtonLabel: string;
1839
1894
  table: ReactNode;
1840
- uploadDialog: ReactNode;
1841
- onOpenUploadDialog: () => void;
1895
+ uploadDialogOpen: boolean;
1896
+ onUploadDialogOpenChange: (open: boolean) => void;
1897
+ uploadDialogMessage?: string;
1842
1898
  incomingTransactionOpen: boolean;
1843
1899
  onIncomingTransactionOpenChange: (open: boolean) => void;
1844
1900
  isProcessingIncoming: boolean;
1845
1901
  onProcessIncoming: (values: IncomingWireTransactionValues) => void;
1846
1902
  headerActions?: ReactNode;
1847
1903
  }
1848
- declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialog, onOpenUploadDialog, incomingTransactionOpen, onIncomingTransactionOpenChange, isProcessingIncoming, onProcessIncoming, headerActions, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
1904
+ declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialogOpen, onUploadDialogOpenChange, uploadDialogMessage, incomingTransactionOpen, onIncomingTransactionOpenChange, isProcessingIncoming, onProcessIncoming, headerActions, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
1849
1905
 
1850
1906
  interface WireProcessingDetailItem {
1851
1907
  id: number;
@@ -2679,4 +2735,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2679
2735
  */
2680
2736
  declare function downloadCSV(content: string, filename: string): void;
2681
2737
 
2682
- 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 };
2738
+ 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
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { z } from 'zod';
3
3
  import * as React$1 from 'react';
4
- import React__default, { ReactNode } from 'react';
4
+ import React__default, { ReactNode, RefObject } from 'react';
5
5
  import { UseFormReturn, FieldValues, FieldPath, UseFormProps, Path } from 'react-hook-form';
6
6
  import * as class_variance_authority_types from 'class-variance-authority/types';
7
7
  import { VariantProps } from 'class-variance-authority';
@@ -1712,14 +1712,37 @@ interface ReconUploadViewProps {
1712
1712
  }
1713
1713
  declare function ReconUploadView({ table, uploadDialog, onOpenUploadDialog }: ReconUploadViewProps): react_jsx_runtime.JSX.Element;
1714
1714
 
1715
+ interface FileTypeOption {
1716
+ value: string;
1717
+ label: string;
1718
+ description: string;
1719
+ icon: React.ComponentType<{
1720
+ className?: string;
1721
+ }>;
1722
+ }
1723
+
1715
1724
  interface ACHProcessingViewProps {
1716
1725
  title: string;
1717
1726
  cardTitle: string;
1718
1727
  table: ReactNode;
1719
- uploadDialog: ReactNode;
1720
- onOpenUploadDialog: () => void;
1728
+ uploadButtonLabel?: string;
1729
+ uploadDialogOpen: boolean;
1730
+ onUploadDialogOpenChange: (open: boolean) => void;
1731
+ fileType: string | null;
1732
+ selectedFile: File | null;
1733
+ isUploading: boolean;
1734
+ fileTypeOptions: FileTypeOption[];
1735
+ acceptedFileTypes: string;
1736
+ acceptedFileTypesLabel: string;
1737
+ fileInputRef: RefObject<HTMLInputElement>;
1738
+ onFileTypeChange: (value: string) => void;
1739
+ onFileChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
1740
+ onRemoveFile: () => void;
1741
+ onSelectFileClick: () => void;
1742
+ onUpload: () => void;
1743
+ onCancelUpload: () => void;
1721
1744
  }
1722
- declare function ACHProcessingView({ title, cardTitle, table, uploadDialog, onOpenUploadDialog, }: ACHProcessingViewProps): react_jsx_runtime.JSX.Element;
1745
+ declare function ACHProcessingView({ title, cardTitle, table, uploadButtonLabel, uploadDialogOpen, onUploadDialogOpenChange, fileType, selectedFile, isUploading, fileTypeOptions, acceptedFileTypes, acceptedFileTypesLabel, fileInputRef, onFileTypeChange, onFileChange, onRemoveFile, onSelectFileClick, onUpload, onCancelUpload, }: ACHProcessingViewProps): react_jsx_runtime.JSX.Element;
1723
1746
 
1724
1747
  interface ACHProcessingDetailItem {
1725
1748
  id: string;
@@ -1821,6 +1844,38 @@ interface ACHReturnViewProps {
1821
1844
  }
1822
1845
  declare function ACHReturnView({ title, returnRateSectionTitle, unauthorizedSectionTitle, returnRateTable, unauthorizedTable, returnRateFilters, onReturnRateFilterChange, onReturnRateResetFilters, onReturnRateApplyFilters, productOptions, methodOptions, returnRateFiltersTitle, }: ACHReturnViewProps): react_jsx_runtime.JSX.Element;
1823
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
+
1824
1879
  interface IncomingWireTransactionValues {
1825
1880
  originatorBankName: string;
1826
1881
  originatorAccountNumber: string;
@@ -1837,15 +1892,16 @@ interface WireProcessingViewProps {
1837
1892
  cardTitle: string;
1838
1893
  uploadButtonLabel: string;
1839
1894
  table: ReactNode;
1840
- uploadDialog: ReactNode;
1841
- onOpenUploadDialog: () => void;
1895
+ uploadDialogOpen: boolean;
1896
+ onUploadDialogOpenChange: (open: boolean) => void;
1897
+ uploadDialogMessage?: string;
1842
1898
  incomingTransactionOpen: boolean;
1843
1899
  onIncomingTransactionOpenChange: (open: boolean) => void;
1844
1900
  isProcessingIncoming: boolean;
1845
1901
  onProcessIncoming: (values: IncomingWireTransactionValues) => void;
1846
1902
  headerActions?: ReactNode;
1847
1903
  }
1848
- declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialog, onOpenUploadDialog, incomingTransactionOpen, onIncomingTransactionOpenChange, isProcessingIncoming, onProcessIncoming, headerActions, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
1904
+ declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialogOpen, onUploadDialogOpenChange, uploadDialogMessage, incomingTransactionOpen, onIncomingTransactionOpenChange, isProcessingIncoming, onProcessIncoming, headerActions, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
1849
1905
 
1850
1906
  interface WireProcessingDetailItem {
1851
1907
  id: number;
@@ -2679,4 +2735,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2679
2735
  */
2680
2736
  declare function downloadCSV(content: string, filename: string): void;
2681
2737
 
2682
- 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 };
2738
+ 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 };