braid-ui 1.0.162 → 1.0.164

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
@@ -188,6 +188,37 @@ interface A314AViewProps {
188
188
  }
189
189
  declare function A314AView({ table, filters, onFilterChange, onResetFilters, onApplyFilters, uploadDialogOpen, onUploadDialogOpenChange, uploadSelectedFile, onUploadFileChange, isUploading, onUpload, }: A314AViewProps): react_jsx_runtime.JSX.Element;
190
190
 
191
+ interface Check314A {
192
+ id: string;
193
+ list314aId: number;
194
+ list314aFileId: string;
195
+ counterpartyName: string | null;
196
+ counterpartyId: number | null;
197
+ businessName: string | null;
198
+ businessId: number | null;
199
+ individualName: string | null;
200
+ individualId: number | null;
201
+ uboId: number | null;
202
+ transactionPaymentId: string | null;
203
+ alertId: string | null;
204
+ note: string | null;
205
+ status: string;
206
+ createdAt: number;
207
+ updatedAt: number;
208
+ updatedBy: string | null;
209
+ rawResults: string;
210
+ }
211
+
212
+ interface A314ADetailViewProps {
213
+ check: Check314A | undefined;
214
+ rawResults: unknown;
215
+ onBack: () => void;
216
+ onEntityClick?: (entityType: string, entityId: string | number) => void;
217
+ onTransactionClick?: (transactionPaymentId: string) => void;
218
+ onAlertClick?: (alertId: string) => void;
219
+ }
220
+ declare function A314ADetailView({ check, rawResults, onBack, onEntityClick, onTransactionClick, onAlertClick, }: A314ADetailViewProps): react_jsx_runtime.JSX.Element;
221
+
191
222
  interface VelocityLimitFilters {
192
223
  accountNumber: string;
193
224
  counterpartyId: string;
@@ -273,8 +304,9 @@ interface VelocityLimitDetailViewProps {
273
304
  onDeactivate: () => void;
274
305
  getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
275
306
  getActionVariant: (action: VelocityLimit["action"]) => "secondary";
307
+ onAssociatedEntityClick?: (entityType: string, entityId: string) => void;
276
308
  }
277
- declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
309
+ declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, onAssociatedEntityClick, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
278
310
 
279
311
  type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
280
312
  interface SelectOption$7 {
@@ -1876,17 +1908,6 @@ interface ACHNOCViewProps {
1876
1908
  }
1877
1909
  declare function ACHNOCView({ title, table, jsonOpen, onJsonOpenChange, jsonData, changeOpen, onChangeOpenChange, changeData, changeFields, isChanging, onChangeSubmit, }: ACHNOCViewProps): react_jsx_runtime.JSX.Element;
1878
1910
 
1879
- interface IncomingWireTransactionValues {
1880
- originatorBankName: string;
1881
- originatorAccountNumber: string;
1882
- originatorRoutingNumber: string;
1883
- originatorToBeneficiaryInfo: string;
1884
- beneficiaryAccountNumber: string;
1885
- amount: string;
1886
- imad: string;
1887
- omad: string;
1888
- }
1889
-
1890
1911
  interface WireFileTypeOption {
1891
1912
  value: string;
1892
1913
  label: string;
@@ -1904,10 +1925,6 @@ interface WireProcessingViewProps {
1904
1925
  table: ReactNode;
1905
1926
  uploadDialogOpen: boolean;
1906
1927
  onUploadDialogOpenChange: (open: boolean) => void;
1907
- incomingTransactionOpen: boolean;
1908
- onIncomingTransactionOpenChange: (open: boolean) => void;
1909
- isProcessingIncoming: boolean;
1910
- onProcessIncoming: (values: IncomingWireTransactionValues) => void;
1911
1928
  fileType: string | null;
1912
1929
  selectedFile: File | null;
1913
1930
  isUploading: boolean;
@@ -1922,7 +1939,7 @@ interface WireProcessingViewProps {
1922
1939
  onUpload: () => void;
1923
1940
  onCancelUpload: () => void;
1924
1941
  }
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;
1942
+ declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialogOpen, onUploadDialogOpenChange, fileType, selectedFile, isUploading, fileTypeOptions, acceptedFileTypes, acceptedFileTypesLabel, fileInputRef, onFileTypeChange, onFileChange, onRemoveFile, onSelectFileClick, onUpload, onCancelUpload, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
1926
1943
 
1927
1944
  interface WireProcessingDetailItem {
1928
1945
  id: number;
@@ -2142,8 +2159,9 @@ interface DetailPageLayoutProps {
2142
2159
  actions?: DetailPageAction[];
2143
2160
  initialEditingState?: Record<string, boolean>;
2144
2161
  headerContent?: ReactNode;
2162
+ maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "full";
2145
2163
  }
2146
- declare const DetailPageLayout: ({ title, description, cards, actions, initialEditingState, headerContent }: DetailPageLayoutProps) => react_jsx_runtime.JSX.Element;
2164
+ declare const DetailPageLayout: ({ title, description, cards, actions, initialEditingState, headerContent, maxWidth, }: DetailPageLayoutProps) => react_jsx_runtime.JSX.Element;
2147
2165
 
2148
2166
  declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
2149
2167
  declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
@@ -2756,4 +2774,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2756
2774
  */
2757
2775
  declare function downloadCSV(content: string, filename: string): void;
2758
2776
 
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 };
2777
+ export { A314ADetailView, type A314ADetailViewProps, 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
@@ -188,6 +188,37 @@ interface A314AViewProps {
188
188
  }
189
189
  declare function A314AView({ table, filters, onFilterChange, onResetFilters, onApplyFilters, uploadDialogOpen, onUploadDialogOpenChange, uploadSelectedFile, onUploadFileChange, isUploading, onUpload, }: A314AViewProps): react_jsx_runtime.JSX.Element;
190
190
 
191
+ interface Check314A {
192
+ id: string;
193
+ list314aId: number;
194
+ list314aFileId: string;
195
+ counterpartyName: string | null;
196
+ counterpartyId: number | null;
197
+ businessName: string | null;
198
+ businessId: number | null;
199
+ individualName: string | null;
200
+ individualId: number | null;
201
+ uboId: number | null;
202
+ transactionPaymentId: string | null;
203
+ alertId: string | null;
204
+ note: string | null;
205
+ status: string;
206
+ createdAt: number;
207
+ updatedAt: number;
208
+ updatedBy: string | null;
209
+ rawResults: string;
210
+ }
211
+
212
+ interface A314ADetailViewProps {
213
+ check: Check314A | undefined;
214
+ rawResults: unknown;
215
+ onBack: () => void;
216
+ onEntityClick?: (entityType: string, entityId: string | number) => void;
217
+ onTransactionClick?: (transactionPaymentId: string) => void;
218
+ onAlertClick?: (alertId: string) => void;
219
+ }
220
+ declare function A314ADetailView({ check, rawResults, onBack, onEntityClick, onTransactionClick, onAlertClick, }: A314ADetailViewProps): react_jsx_runtime.JSX.Element;
221
+
191
222
  interface VelocityLimitFilters {
192
223
  accountNumber: string;
193
224
  counterpartyId: string;
@@ -273,8 +304,9 @@ interface VelocityLimitDetailViewProps {
273
304
  onDeactivate: () => void;
274
305
  getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
275
306
  getActionVariant: (action: VelocityLimit["action"]) => "secondary";
307
+ onAssociatedEntityClick?: (entityType: string, entityId: string) => void;
276
308
  }
277
- declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
309
+ declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, onAssociatedEntityClick, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
278
310
 
279
311
  type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
280
312
  interface SelectOption$7 {
@@ -1876,17 +1908,6 @@ interface ACHNOCViewProps {
1876
1908
  }
1877
1909
  declare function ACHNOCView({ title, table, jsonOpen, onJsonOpenChange, jsonData, changeOpen, onChangeOpenChange, changeData, changeFields, isChanging, onChangeSubmit, }: ACHNOCViewProps): react_jsx_runtime.JSX.Element;
1878
1910
 
1879
- interface IncomingWireTransactionValues {
1880
- originatorBankName: string;
1881
- originatorAccountNumber: string;
1882
- originatorRoutingNumber: string;
1883
- originatorToBeneficiaryInfo: string;
1884
- beneficiaryAccountNumber: string;
1885
- amount: string;
1886
- imad: string;
1887
- omad: string;
1888
- }
1889
-
1890
1911
  interface WireFileTypeOption {
1891
1912
  value: string;
1892
1913
  label: string;
@@ -1904,10 +1925,6 @@ interface WireProcessingViewProps {
1904
1925
  table: ReactNode;
1905
1926
  uploadDialogOpen: boolean;
1906
1927
  onUploadDialogOpenChange: (open: boolean) => void;
1907
- incomingTransactionOpen: boolean;
1908
- onIncomingTransactionOpenChange: (open: boolean) => void;
1909
- isProcessingIncoming: boolean;
1910
- onProcessIncoming: (values: IncomingWireTransactionValues) => void;
1911
1928
  fileType: string | null;
1912
1929
  selectedFile: File | null;
1913
1930
  isUploading: boolean;
@@ -1922,7 +1939,7 @@ interface WireProcessingViewProps {
1922
1939
  onUpload: () => void;
1923
1940
  onCancelUpload: () => void;
1924
1941
  }
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;
1942
+ declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialogOpen, onUploadDialogOpenChange, fileType, selectedFile, isUploading, fileTypeOptions, acceptedFileTypes, acceptedFileTypesLabel, fileInputRef, onFileTypeChange, onFileChange, onRemoveFile, onSelectFileClick, onUpload, onCancelUpload, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
1926
1943
 
1927
1944
  interface WireProcessingDetailItem {
1928
1945
  id: number;
@@ -2142,8 +2159,9 @@ interface DetailPageLayoutProps {
2142
2159
  actions?: DetailPageAction[];
2143
2160
  initialEditingState?: Record<string, boolean>;
2144
2161
  headerContent?: ReactNode;
2162
+ maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "full";
2145
2163
  }
2146
- declare const DetailPageLayout: ({ title, description, cards, actions, initialEditingState, headerContent }: DetailPageLayoutProps) => react_jsx_runtime.JSX.Element;
2164
+ declare const DetailPageLayout: ({ title, description, cards, actions, initialEditingState, headerContent, maxWidth, }: DetailPageLayoutProps) => react_jsx_runtime.JSX.Element;
2147
2165
 
2148
2166
  declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
2149
2167
  declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
@@ -2756,4 +2774,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2756
2774
  */
2757
2775
  declare function downloadCSV(content: string, filename: string): void;
2758
2776
 
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 };
2777
+ export { A314ADetailView, type A314ADetailViewProps, 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 };