braid-ui 1.0.91 → 1.0.95
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/css/braid-ui.css +66 -0
- package/dist/css/braid-ui.min.css +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +87 -7
- package/dist/index.d.ts +87 -7
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -379,14 +379,14 @@ interface Business {
|
|
|
379
379
|
type: "Business" | "Individual";
|
|
380
380
|
subType: "Customer" | "UBO";
|
|
381
381
|
}
|
|
382
|
-
interface BusinessAccount {
|
|
382
|
+
interface BusinessAccount$1 {
|
|
383
383
|
id: string;
|
|
384
384
|
accountNumber: string;
|
|
385
385
|
routingNumber: string;
|
|
386
386
|
bankName: string;
|
|
387
387
|
bankAccountType: string;
|
|
388
388
|
}
|
|
389
|
-
interface SelectOption$
|
|
389
|
+
interface SelectOption$4 {
|
|
390
390
|
value: string;
|
|
391
391
|
label: string;
|
|
392
392
|
}
|
|
@@ -399,11 +399,11 @@ interface BusinessDetailViewProps {
|
|
|
399
399
|
showTimeline?: boolean;
|
|
400
400
|
businessUBOs: UBO[];
|
|
401
401
|
businessDocuments: BusinessDocument[];
|
|
402
|
-
businessAccounts: BusinessAccount[];
|
|
402
|
+
businessAccounts: BusinessAccount$1[];
|
|
403
403
|
currentStatus: string;
|
|
404
404
|
isEditingProfile: boolean;
|
|
405
|
-
statusOptions: SelectOption$
|
|
406
|
-
businessEntityTypeOptions: SelectOption$
|
|
405
|
+
statusOptions: SelectOption$4[];
|
|
406
|
+
businessEntityTypeOptions: SelectOption$4[];
|
|
407
407
|
onStatusChange: (newStatus: string) => void;
|
|
408
408
|
onProfileDataChange: (profile: BusinessProfile) => void;
|
|
409
409
|
onToggleProfileEdit: () => void;
|
|
@@ -713,6 +713,85 @@ interface CreateCounterpartyViewProps {
|
|
|
713
713
|
}
|
|
714
714
|
declare const CreateCounterpartyView: ({ counterpartyData, paymentMethods, onPaymentMethodsChange, onBasicInfoChange, onCancel, onSubmit }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
715
715
|
|
|
716
|
+
interface BusinessAccount {
|
|
717
|
+
id: string;
|
|
718
|
+
name: string;
|
|
719
|
+
number: string;
|
|
720
|
+
type: "checking" | "savings" | "zero-balance" | "funding";
|
|
721
|
+
status: "active" | "inactive";
|
|
722
|
+
settledBalance: number;
|
|
723
|
+
pendingCredits: number;
|
|
724
|
+
pendingDebits: number;
|
|
725
|
+
fundsOnHold: number;
|
|
726
|
+
accountBalance: number;
|
|
727
|
+
availableBalance: number;
|
|
728
|
+
currency: string;
|
|
729
|
+
institution: string;
|
|
730
|
+
routingNumber: string;
|
|
731
|
+
country: string;
|
|
732
|
+
customerName: string;
|
|
733
|
+
customerId: string;
|
|
734
|
+
customerType: "business" | "individual";
|
|
735
|
+
created: string;
|
|
736
|
+
modified: string;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
interface AccountFormValues {
|
|
740
|
+
accountName: string;
|
|
741
|
+
canAcceptSweep: "Yes" | "No";
|
|
742
|
+
fundingAccountNumber?: string;
|
|
743
|
+
sweepAccountNumber?: string;
|
|
744
|
+
}
|
|
745
|
+
interface SelectOption$3 {
|
|
746
|
+
value: string;
|
|
747
|
+
label: string;
|
|
748
|
+
}
|
|
749
|
+
interface AccountDetailViewProps {
|
|
750
|
+
account: BusinessAccount;
|
|
751
|
+
currentStatus: string;
|
|
752
|
+
onStatusChange: (status: string) => void;
|
|
753
|
+
statusOptions: SelectOption$3[];
|
|
754
|
+
canAcceptSweepOptions: SelectOption$3[];
|
|
755
|
+
form: UseFormReturn<AccountFormValues> & {
|
|
756
|
+
isEditing: boolean;
|
|
757
|
+
handleToggleEdit: () => void;
|
|
758
|
+
handleSave: () => void;
|
|
759
|
+
handleCancel: () => void;
|
|
760
|
+
};
|
|
761
|
+
customerPath: string;
|
|
762
|
+
onNavigateCounterparty: () => void;
|
|
763
|
+
onNavigateLimits: () => void;
|
|
764
|
+
onNavigateTransactions: () => void;
|
|
765
|
+
onNavigateProduct?: () => void;
|
|
766
|
+
hideTransactionAction?: boolean;
|
|
767
|
+
hideTimeline?: boolean;
|
|
768
|
+
isLoading?: boolean;
|
|
769
|
+
error?: string | null;
|
|
770
|
+
onRetry?: () => void;
|
|
771
|
+
feesTable?: ReactNode;
|
|
772
|
+
feeCount?: number;
|
|
773
|
+
onScrollToFees?: () => void;
|
|
774
|
+
}
|
|
775
|
+
declare const AccountDetailView: ({ account, currentStatus, onStatusChange, statusOptions, canAcceptSweepOptions, form, customerPath, onNavigateCounterparty, onNavigateLimits, onNavigateTransactions, onNavigateProduct, hideTransactionAction, hideTimeline, isLoading, error, onRetry, feesTable, feeCount, onScrollToFees }: AccountDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
776
|
+
|
|
777
|
+
interface AccountFilters {
|
|
778
|
+
accountNumber: string;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
interface AccountsViewProps {
|
|
782
|
+
table: React.ReactNode;
|
|
783
|
+
filters: AccountFilters;
|
|
784
|
+
onFilterChange: (field: keyof AccountFilters, value: string) => void;
|
|
785
|
+
onResetFilters: () => void;
|
|
786
|
+
onApplyFilters: () => void;
|
|
787
|
+
isLoading?: boolean;
|
|
788
|
+
error?: string | null;
|
|
789
|
+
onRetry?: () => void;
|
|
790
|
+
isEmpty?: boolean;
|
|
791
|
+
hasActiveFilters?: boolean;
|
|
792
|
+
}
|
|
793
|
+
declare const AccountsView: ({ table, filters, onFilterChange, onResetFilters, onApplyFilters, isLoading, error, onRetry, isEmpty, hasActiveFilters }: AccountsViewProps) => react_jsx_runtime.JSX.Element;
|
|
794
|
+
|
|
716
795
|
interface IndividualsFilters {
|
|
717
796
|
name: string;
|
|
718
797
|
productName: string;
|
|
@@ -849,8 +928,9 @@ interface IndividualDetailViewProps {
|
|
|
849
928
|
type: string;
|
|
850
929
|
}) => Promise<void>;
|
|
851
930
|
onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
|
|
931
|
+
renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
|
|
852
932
|
}
|
|
853
|
-
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, showTimeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, documents, onDocumentUpload, onDocumentDelete, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
933
|
+
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, showTimeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
854
934
|
|
|
855
935
|
type CreateIndividualViewForm = {
|
|
856
936
|
handleSubmit: (onValid: any) => (e?: any) => void;
|
|
@@ -2336,4 +2416,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2336
2416
|
*/
|
|
2337
2417
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2338
2418
|
|
|
2339
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, Accounts, 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, BusinessStatusCard, BusinessTypeBadge, Businesses, 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, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
2419
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, Accounts, AccountsView, 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, BusinessStatusCard, BusinessTypeBadge, Businesses, 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, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -379,14 +379,14 @@ interface Business {
|
|
|
379
379
|
type: "Business" | "Individual";
|
|
380
380
|
subType: "Customer" | "UBO";
|
|
381
381
|
}
|
|
382
|
-
interface BusinessAccount {
|
|
382
|
+
interface BusinessAccount$1 {
|
|
383
383
|
id: string;
|
|
384
384
|
accountNumber: string;
|
|
385
385
|
routingNumber: string;
|
|
386
386
|
bankName: string;
|
|
387
387
|
bankAccountType: string;
|
|
388
388
|
}
|
|
389
|
-
interface SelectOption$
|
|
389
|
+
interface SelectOption$4 {
|
|
390
390
|
value: string;
|
|
391
391
|
label: string;
|
|
392
392
|
}
|
|
@@ -399,11 +399,11 @@ interface BusinessDetailViewProps {
|
|
|
399
399
|
showTimeline?: boolean;
|
|
400
400
|
businessUBOs: UBO[];
|
|
401
401
|
businessDocuments: BusinessDocument[];
|
|
402
|
-
businessAccounts: BusinessAccount[];
|
|
402
|
+
businessAccounts: BusinessAccount$1[];
|
|
403
403
|
currentStatus: string;
|
|
404
404
|
isEditingProfile: boolean;
|
|
405
|
-
statusOptions: SelectOption$
|
|
406
|
-
businessEntityTypeOptions: SelectOption$
|
|
405
|
+
statusOptions: SelectOption$4[];
|
|
406
|
+
businessEntityTypeOptions: SelectOption$4[];
|
|
407
407
|
onStatusChange: (newStatus: string) => void;
|
|
408
408
|
onProfileDataChange: (profile: BusinessProfile) => void;
|
|
409
409
|
onToggleProfileEdit: () => void;
|
|
@@ -713,6 +713,85 @@ interface CreateCounterpartyViewProps {
|
|
|
713
713
|
}
|
|
714
714
|
declare const CreateCounterpartyView: ({ counterpartyData, paymentMethods, onPaymentMethodsChange, onBasicInfoChange, onCancel, onSubmit }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
715
715
|
|
|
716
|
+
interface BusinessAccount {
|
|
717
|
+
id: string;
|
|
718
|
+
name: string;
|
|
719
|
+
number: string;
|
|
720
|
+
type: "checking" | "savings" | "zero-balance" | "funding";
|
|
721
|
+
status: "active" | "inactive";
|
|
722
|
+
settledBalance: number;
|
|
723
|
+
pendingCredits: number;
|
|
724
|
+
pendingDebits: number;
|
|
725
|
+
fundsOnHold: number;
|
|
726
|
+
accountBalance: number;
|
|
727
|
+
availableBalance: number;
|
|
728
|
+
currency: string;
|
|
729
|
+
institution: string;
|
|
730
|
+
routingNumber: string;
|
|
731
|
+
country: string;
|
|
732
|
+
customerName: string;
|
|
733
|
+
customerId: string;
|
|
734
|
+
customerType: "business" | "individual";
|
|
735
|
+
created: string;
|
|
736
|
+
modified: string;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
interface AccountFormValues {
|
|
740
|
+
accountName: string;
|
|
741
|
+
canAcceptSweep: "Yes" | "No";
|
|
742
|
+
fundingAccountNumber?: string;
|
|
743
|
+
sweepAccountNumber?: string;
|
|
744
|
+
}
|
|
745
|
+
interface SelectOption$3 {
|
|
746
|
+
value: string;
|
|
747
|
+
label: string;
|
|
748
|
+
}
|
|
749
|
+
interface AccountDetailViewProps {
|
|
750
|
+
account: BusinessAccount;
|
|
751
|
+
currentStatus: string;
|
|
752
|
+
onStatusChange: (status: string) => void;
|
|
753
|
+
statusOptions: SelectOption$3[];
|
|
754
|
+
canAcceptSweepOptions: SelectOption$3[];
|
|
755
|
+
form: UseFormReturn<AccountFormValues> & {
|
|
756
|
+
isEditing: boolean;
|
|
757
|
+
handleToggleEdit: () => void;
|
|
758
|
+
handleSave: () => void;
|
|
759
|
+
handleCancel: () => void;
|
|
760
|
+
};
|
|
761
|
+
customerPath: string;
|
|
762
|
+
onNavigateCounterparty: () => void;
|
|
763
|
+
onNavigateLimits: () => void;
|
|
764
|
+
onNavigateTransactions: () => void;
|
|
765
|
+
onNavigateProduct?: () => void;
|
|
766
|
+
hideTransactionAction?: boolean;
|
|
767
|
+
hideTimeline?: boolean;
|
|
768
|
+
isLoading?: boolean;
|
|
769
|
+
error?: string | null;
|
|
770
|
+
onRetry?: () => void;
|
|
771
|
+
feesTable?: ReactNode;
|
|
772
|
+
feeCount?: number;
|
|
773
|
+
onScrollToFees?: () => void;
|
|
774
|
+
}
|
|
775
|
+
declare const AccountDetailView: ({ account, currentStatus, onStatusChange, statusOptions, canAcceptSweepOptions, form, customerPath, onNavigateCounterparty, onNavigateLimits, onNavigateTransactions, onNavigateProduct, hideTransactionAction, hideTimeline, isLoading, error, onRetry, feesTable, feeCount, onScrollToFees }: AccountDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
776
|
+
|
|
777
|
+
interface AccountFilters {
|
|
778
|
+
accountNumber: string;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
interface AccountsViewProps {
|
|
782
|
+
table: React.ReactNode;
|
|
783
|
+
filters: AccountFilters;
|
|
784
|
+
onFilterChange: (field: keyof AccountFilters, value: string) => void;
|
|
785
|
+
onResetFilters: () => void;
|
|
786
|
+
onApplyFilters: () => void;
|
|
787
|
+
isLoading?: boolean;
|
|
788
|
+
error?: string | null;
|
|
789
|
+
onRetry?: () => void;
|
|
790
|
+
isEmpty?: boolean;
|
|
791
|
+
hasActiveFilters?: boolean;
|
|
792
|
+
}
|
|
793
|
+
declare const AccountsView: ({ table, filters, onFilterChange, onResetFilters, onApplyFilters, isLoading, error, onRetry, isEmpty, hasActiveFilters }: AccountsViewProps) => react_jsx_runtime.JSX.Element;
|
|
794
|
+
|
|
716
795
|
interface IndividualsFilters {
|
|
717
796
|
name: string;
|
|
718
797
|
productName: string;
|
|
@@ -849,8 +928,9 @@ interface IndividualDetailViewProps {
|
|
|
849
928
|
type: string;
|
|
850
929
|
}) => Promise<void>;
|
|
851
930
|
onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
|
|
931
|
+
renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
|
|
852
932
|
}
|
|
853
|
-
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, showTimeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, documents, onDocumentUpload, onDocumentDelete, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
933
|
+
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, showTimeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
854
934
|
|
|
855
935
|
type CreateIndividualViewForm = {
|
|
856
936
|
handleSubmit: (onValid: any) => (e?: any) => void;
|
|
@@ -2336,4 +2416,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2336
2416
|
*/
|
|
2337
2417
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2338
2418
|
|
|
2339
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, Accounts, 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, BusinessStatusCard, BusinessTypeBadge, Businesses, 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, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
2419
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, Accounts, AccountsView, 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, BusinessStatusCard, BusinessTypeBadge, Businesses, 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, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|