braid-ui 1.0.92 → 1.0.96
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 +93 -6
- package/dist/index.d.ts +93 -6
- 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,86 @@ 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
|
+
onNavigateCustomer: () => void;
|
|
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, onNavigateCustomer, 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
|
+
hideBalanceColumns?: boolean;
|
|
793
|
+
}
|
|
794
|
+
declare const AccountsView: ({ table, filters, onFilterChange, onResetFilters, onApplyFilters, isLoading, error, onRetry, isEmpty, hasActiveFilters, hideBalanceColumns }: AccountsViewProps) => react_jsx_runtime.JSX.Element;
|
|
795
|
+
|
|
716
796
|
interface IndividualsFilters {
|
|
717
797
|
name: string;
|
|
718
798
|
productName: string;
|
|
@@ -1501,6 +1581,13 @@ interface AccountCardProps {
|
|
|
1501
1581
|
}
|
|
1502
1582
|
declare const AccountCard: React$1.ForwardRefExoticComponent<AccountCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1503
1583
|
|
|
1584
|
+
type AccountType = "checking" | "savings" | "zero-balance" | "funding";
|
|
1585
|
+
interface AccountTypeBadgeProps {
|
|
1586
|
+
type: AccountType;
|
|
1587
|
+
className?: string;
|
|
1588
|
+
}
|
|
1589
|
+
declare const AccountTypeBadge: ({ type, className }: AccountTypeBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
1590
|
+
|
|
1504
1591
|
declare const badgeVariants: (props?: {
|
|
1505
1592
|
variant?: "default" | "secondary" | "destructive" | "outline" | "success" | "warning" | "blocked" | "inbound" | "outbound" | "business" | "individual" | "government" | "nonprofit" | "corporation" | "llc" | "partnership" | "sole_proprietorship" | "active" | "inactive" | "pending" | "suspended" | "cip-active" | "cip-inactive" | "cip-pending" | "cip-secondary" | "alert-ofac" | "alert-dual" | "alert-monitoring" | "alert-error" | "ofac_no_match" | "ofac_review" | "ofac_cleared" | "ofac_confirmed" | "ofac_blocked" | "checking" | "savings" | "zero-balance" | "funding";
|
|
1506
1593
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
@@ -2337,4 +2424,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2337
2424
|
*/
|
|
2338
2425
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2339
2426
|
|
|
2340
|
-
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 };
|
|
2427
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, 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,86 @@ 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
|
+
onNavigateCustomer: () => void;
|
|
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, onNavigateCustomer, 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
|
+
hideBalanceColumns?: boolean;
|
|
793
|
+
}
|
|
794
|
+
declare const AccountsView: ({ table, filters, onFilterChange, onResetFilters, onApplyFilters, isLoading, error, onRetry, isEmpty, hasActiveFilters, hideBalanceColumns }: AccountsViewProps) => react_jsx_runtime.JSX.Element;
|
|
795
|
+
|
|
716
796
|
interface IndividualsFilters {
|
|
717
797
|
name: string;
|
|
718
798
|
productName: string;
|
|
@@ -1501,6 +1581,13 @@ interface AccountCardProps {
|
|
|
1501
1581
|
}
|
|
1502
1582
|
declare const AccountCard: React$1.ForwardRefExoticComponent<AccountCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1503
1583
|
|
|
1584
|
+
type AccountType = "checking" | "savings" | "zero-balance" | "funding";
|
|
1585
|
+
interface AccountTypeBadgeProps {
|
|
1586
|
+
type: AccountType;
|
|
1587
|
+
className?: string;
|
|
1588
|
+
}
|
|
1589
|
+
declare const AccountTypeBadge: ({ type, className }: AccountTypeBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
1590
|
+
|
|
1504
1591
|
declare const badgeVariants: (props?: {
|
|
1505
1592
|
variant?: "default" | "secondary" | "destructive" | "outline" | "success" | "warning" | "blocked" | "inbound" | "outbound" | "business" | "individual" | "government" | "nonprofit" | "corporation" | "llc" | "partnership" | "sole_proprietorship" | "active" | "inactive" | "pending" | "suspended" | "cip-active" | "cip-inactive" | "cip-pending" | "cip-secondary" | "alert-ofac" | "alert-dual" | "alert-monitoring" | "alert-error" | "ofac_no_match" | "ofac_review" | "ofac_cleared" | "ofac_confirmed" | "ofac_blocked" | "checking" | "savings" | "zero-balance" | "funding";
|
|
1506
1593
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
@@ -2337,4 +2424,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2337
2424
|
*/
|
|
2338
2425
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2339
2426
|
|
|
2340
|
-
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 };
|
|
2427
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, 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 };
|