braid-ui 1.0.156 → 1.0.158

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
@@ -1767,26 +1767,112 @@ interface ACHProcessingDetailViewProps {
1767
1767
  }
1768
1768
  declare function ACHProcessingDetailView({ title, item, notFoundTitle, notFoundActionLabel, onNotFoundAction, dialogOpen, onDialogOpenChange, dialogTitle, dialogItems, onViewList, }: ACHProcessingDetailViewProps): react_jsx_runtime.JSX.Element;
1769
1769
 
1770
+ interface ACHSettlementFilters {
1771
+ startDate?: string;
1772
+ endDate?: string;
1773
+ }
1774
+
1770
1775
  interface ACHSettlementViewProps {
1771
1776
  title: string;
1772
1777
  settlementSectionTitle: string;
1773
1778
  returnSettlementSectionTitle: string;
1774
- settlementFiltersSheet: ReactNode;
1775
- returnSettlementFiltersSheet: ReactNode;
1776
1779
  settlementTable: ReactNode;
1777
1780
  returnSettlementTable: ReactNode;
1781
+ settlementFilters: ACHSettlementFilters;
1782
+ onSettlementFilterChange: (field: keyof ACHSettlementFilters, value: string | undefined) => void;
1783
+ onSettlementResetFilters: () => void;
1784
+ onSettlementApplyFilters: () => void;
1785
+ settlementFiltersTitle?: string;
1786
+ returnSettlementFilters: ACHSettlementFilters;
1787
+ onReturnSettlementFilterChange: (field: keyof ACHSettlementFilters, value: string | undefined) => void;
1788
+ onReturnSettlementResetFilters: () => void;
1789
+ onReturnSettlementApplyFilters: () => void;
1790
+ returnSettlementFiltersTitle?: string;
1791
+ headerActions?: ReactNode;
1792
+ }
1793
+ declare function ACHSettlementView({ title, settlementSectionTitle, returnSettlementSectionTitle, settlementTable, returnSettlementTable, settlementFilters, onSettlementFilterChange, onSettlementResetFilters, onSettlementApplyFilters, settlementFiltersTitle, returnSettlementFilters, onReturnSettlementFilterChange, onReturnSettlementResetFilters, onReturnSettlementApplyFilters, returnSettlementFiltersTitle, headerActions, }: ACHSettlementViewProps): react_jsx_runtime.JSX.Element;
1794
+
1795
+ interface ACHReturnRateFilters {
1796
+ startDate?: string;
1797
+ endDate?: string;
1798
+ product?: string;
1799
+ method?: string;
1778
1800
  }
1779
- declare function ACHSettlementView({ title, settlementSectionTitle, returnSettlementSectionTitle, settlementFiltersSheet, returnSettlementFiltersSheet, settlementTable, returnSettlementTable, }: ACHSettlementViewProps): react_jsx_runtime.JSX.Element;
1780
1801
 
1781
1802
  interface ACHReturnViewProps {
1782
1803
  title: string;
1783
1804
  returnRateSectionTitle: string;
1784
1805
  unauthorizedSectionTitle: string;
1785
- returnRateFiltersSheet: ReactNode;
1786
1806
  returnRateTable: ReactNode;
1787
1807
  unauthorizedTable: ReactNode;
1808
+ returnRateFilters: ACHReturnRateFilters;
1809
+ onReturnRateFilterChange: (field: keyof ACHReturnRateFilters, value: string | undefined) => void;
1810
+ onReturnRateResetFilters: () => void;
1811
+ onReturnRateApplyFilters: () => void;
1812
+ productOptions: {
1813
+ value: string;
1814
+ label: string;
1815
+ }[];
1816
+ methodOptions: {
1817
+ value: string;
1818
+ label: string;
1819
+ }[];
1820
+ returnRateFiltersTitle?: string;
1821
+ }
1822
+ declare function ACHReturnView({ title, returnRateSectionTitle, unauthorizedSectionTitle, returnRateTable, unauthorizedTable, returnRateFilters, onReturnRateFilterChange, onReturnRateResetFilters, onReturnRateApplyFilters, productOptions, methodOptions, returnRateFiltersTitle, }: ACHReturnViewProps): react_jsx_runtime.JSX.Element;
1823
+
1824
+ interface WireProcessingViewProps {
1825
+ title: string;
1826
+ cardTitle: string;
1827
+ uploadButtonLabel: string;
1828
+ table: ReactNode;
1829
+ uploadDialog: ReactNode;
1830
+ onOpenUploadDialog: () => void;
1831
+ headerActions?: ReactNode;
1832
+ }
1833
+ declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialog, onOpenUploadDialog, headerActions, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
1834
+
1835
+ interface WireProcessingDetailItem {
1836
+ id: number;
1837
+ type: string;
1838
+ filename: string;
1839
+ originalFileName: string | null;
1840
+ direction: string;
1841
+ processingDate?: string;
1842
+ status?: string;
1843
+ requesterUsername: string | null;
1844
+ requesterIpAddress: string | null;
1845
+ totalRecords: number;
1846
+ postedCount: number;
1847
+ pendingCount: number;
1848
+ errorCount: number;
1849
+ manualReviewCount: number;
1850
+ rejectCount: number;
1851
+ returnedCount: number;
1852
+ skippedLinesCount: number;
1853
+ fileHash: string;
1854
+ errors: any[];
1855
+ rejected: any[];
1856
+ returned: any[];
1857
+ }
1858
+ interface ErrorDetailAction {
1859
+ label: string;
1860
+ count: number;
1861
+ onClick: () => void;
1862
+ }
1863
+ interface WireProcessingDetailViewProps {
1864
+ title: string;
1865
+ item: WireProcessingDetailItem | undefined;
1866
+ notFoundTitle: string;
1867
+ notFoundDescription: string;
1868
+ errorActions: ErrorDetailAction[];
1869
+ dialogOpen: boolean;
1870
+ onDialogOpenChange: (open: boolean) => void;
1871
+ dialogTitle: string;
1872
+ dialogData: any[];
1873
+ emptyDialogText: string;
1788
1874
  }
1789
- declare function ACHReturnView({ title, returnRateSectionTitle, unauthorizedSectionTitle, returnRateFiltersSheet, returnRateTable, unauthorizedTable, }: ACHReturnViewProps): react_jsx_runtime.JSX.Element;
1875
+ declare function WireProcessingDetailView({ title, item, notFoundTitle, notFoundDescription, errorActions, dialogOpen, onDialogOpenChange, dialogTitle, dialogData, emptyDialogText, }: WireProcessingDetailViewProps): react_jsx_runtime.JSX.Element;
1790
1876
 
1791
1877
  interface AccountCardProps {
1792
1878
  account: {
@@ -2578,4 +2664,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2578
2664
  */
2579
2665
  declare function downloadCSV(content: string, filename: string): void;
2580
2666
 
2581
- 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, 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, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
2667
+ 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 };
package/dist/index.d.ts CHANGED
@@ -1767,26 +1767,112 @@ interface ACHProcessingDetailViewProps {
1767
1767
  }
1768
1768
  declare function ACHProcessingDetailView({ title, item, notFoundTitle, notFoundActionLabel, onNotFoundAction, dialogOpen, onDialogOpenChange, dialogTitle, dialogItems, onViewList, }: ACHProcessingDetailViewProps): react_jsx_runtime.JSX.Element;
1769
1769
 
1770
+ interface ACHSettlementFilters {
1771
+ startDate?: string;
1772
+ endDate?: string;
1773
+ }
1774
+
1770
1775
  interface ACHSettlementViewProps {
1771
1776
  title: string;
1772
1777
  settlementSectionTitle: string;
1773
1778
  returnSettlementSectionTitle: string;
1774
- settlementFiltersSheet: ReactNode;
1775
- returnSettlementFiltersSheet: ReactNode;
1776
1779
  settlementTable: ReactNode;
1777
1780
  returnSettlementTable: ReactNode;
1781
+ settlementFilters: ACHSettlementFilters;
1782
+ onSettlementFilterChange: (field: keyof ACHSettlementFilters, value: string | undefined) => void;
1783
+ onSettlementResetFilters: () => void;
1784
+ onSettlementApplyFilters: () => void;
1785
+ settlementFiltersTitle?: string;
1786
+ returnSettlementFilters: ACHSettlementFilters;
1787
+ onReturnSettlementFilterChange: (field: keyof ACHSettlementFilters, value: string | undefined) => void;
1788
+ onReturnSettlementResetFilters: () => void;
1789
+ onReturnSettlementApplyFilters: () => void;
1790
+ returnSettlementFiltersTitle?: string;
1791
+ headerActions?: ReactNode;
1792
+ }
1793
+ declare function ACHSettlementView({ title, settlementSectionTitle, returnSettlementSectionTitle, settlementTable, returnSettlementTable, settlementFilters, onSettlementFilterChange, onSettlementResetFilters, onSettlementApplyFilters, settlementFiltersTitle, returnSettlementFilters, onReturnSettlementFilterChange, onReturnSettlementResetFilters, onReturnSettlementApplyFilters, returnSettlementFiltersTitle, headerActions, }: ACHSettlementViewProps): react_jsx_runtime.JSX.Element;
1794
+
1795
+ interface ACHReturnRateFilters {
1796
+ startDate?: string;
1797
+ endDate?: string;
1798
+ product?: string;
1799
+ method?: string;
1778
1800
  }
1779
- declare function ACHSettlementView({ title, settlementSectionTitle, returnSettlementSectionTitle, settlementFiltersSheet, returnSettlementFiltersSheet, settlementTable, returnSettlementTable, }: ACHSettlementViewProps): react_jsx_runtime.JSX.Element;
1780
1801
 
1781
1802
  interface ACHReturnViewProps {
1782
1803
  title: string;
1783
1804
  returnRateSectionTitle: string;
1784
1805
  unauthorizedSectionTitle: string;
1785
- returnRateFiltersSheet: ReactNode;
1786
1806
  returnRateTable: ReactNode;
1787
1807
  unauthorizedTable: ReactNode;
1808
+ returnRateFilters: ACHReturnRateFilters;
1809
+ onReturnRateFilterChange: (field: keyof ACHReturnRateFilters, value: string | undefined) => void;
1810
+ onReturnRateResetFilters: () => void;
1811
+ onReturnRateApplyFilters: () => void;
1812
+ productOptions: {
1813
+ value: string;
1814
+ label: string;
1815
+ }[];
1816
+ methodOptions: {
1817
+ value: string;
1818
+ label: string;
1819
+ }[];
1820
+ returnRateFiltersTitle?: string;
1821
+ }
1822
+ declare function ACHReturnView({ title, returnRateSectionTitle, unauthorizedSectionTitle, returnRateTable, unauthorizedTable, returnRateFilters, onReturnRateFilterChange, onReturnRateResetFilters, onReturnRateApplyFilters, productOptions, methodOptions, returnRateFiltersTitle, }: ACHReturnViewProps): react_jsx_runtime.JSX.Element;
1823
+
1824
+ interface WireProcessingViewProps {
1825
+ title: string;
1826
+ cardTitle: string;
1827
+ uploadButtonLabel: string;
1828
+ table: ReactNode;
1829
+ uploadDialog: ReactNode;
1830
+ onOpenUploadDialog: () => void;
1831
+ headerActions?: ReactNode;
1832
+ }
1833
+ declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialog, onOpenUploadDialog, headerActions, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
1834
+
1835
+ interface WireProcessingDetailItem {
1836
+ id: number;
1837
+ type: string;
1838
+ filename: string;
1839
+ originalFileName: string | null;
1840
+ direction: string;
1841
+ processingDate?: string;
1842
+ status?: string;
1843
+ requesterUsername: string | null;
1844
+ requesterIpAddress: string | null;
1845
+ totalRecords: number;
1846
+ postedCount: number;
1847
+ pendingCount: number;
1848
+ errorCount: number;
1849
+ manualReviewCount: number;
1850
+ rejectCount: number;
1851
+ returnedCount: number;
1852
+ skippedLinesCount: number;
1853
+ fileHash: string;
1854
+ errors: any[];
1855
+ rejected: any[];
1856
+ returned: any[];
1857
+ }
1858
+ interface ErrorDetailAction {
1859
+ label: string;
1860
+ count: number;
1861
+ onClick: () => void;
1862
+ }
1863
+ interface WireProcessingDetailViewProps {
1864
+ title: string;
1865
+ item: WireProcessingDetailItem | undefined;
1866
+ notFoundTitle: string;
1867
+ notFoundDescription: string;
1868
+ errorActions: ErrorDetailAction[];
1869
+ dialogOpen: boolean;
1870
+ onDialogOpenChange: (open: boolean) => void;
1871
+ dialogTitle: string;
1872
+ dialogData: any[];
1873
+ emptyDialogText: string;
1788
1874
  }
1789
- declare function ACHReturnView({ title, returnRateSectionTitle, unauthorizedSectionTitle, returnRateFiltersSheet, returnRateTable, unauthorizedTable, }: ACHReturnViewProps): react_jsx_runtime.JSX.Element;
1875
+ declare function WireProcessingDetailView({ title, item, notFoundTitle, notFoundDescription, errorActions, dialogOpen, onDialogOpenChange, dialogTitle, dialogData, emptyDialogText, }: WireProcessingDetailViewProps): react_jsx_runtime.JSX.Element;
1790
1876
 
1791
1877
  interface AccountCardProps {
1792
1878
  account: {
@@ -2578,4 +2664,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2578
2664
  */
2579
2665
  declare function downloadCSV(content: string, filename: string): void;
2580
2666
 
2581
- 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, 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, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
2667
+ 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 };