braid-ui 1.0.111 → 1.0.113
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 +4 -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 +75 -72
- package/dist/index.d.ts +75 -72
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -124,21 +124,6 @@ interface MainLayoutProps {
|
|
|
124
124
|
}
|
|
125
125
|
declare const MainLayout: ({ children }: MainLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
126
126
|
|
|
127
|
-
interface BusinessListItem {
|
|
128
|
-
id: string;
|
|
129
|
-
businessName: string;
|
|
130
|
-
productName: string;
|
|
131
|
-
cipStatus: "NOT_START" | "PASS" | "FAIL" | "IN_REVIEW";
|
|
132
|
-
status: "ACTIVE" | "INACTIVE" | "BLOCKED" | "PENDING_APPROVAL";
|
|
133
|
-
type: "Individual" | "Business";
|
|
134
|
-
subType: "UBO" | "Customer";
|
|
135
|
-
isDeveloperInitiated: boolean;
|
|
136
|
-
provider: string;
|
|
137
|
-
result: string;
|
|
138
|
-
created: string;
|
|
139
|
-
modified: string;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
127
|
interface BusinessFilters$1 {
|
|
143
128
|
businessId: string;
|
|
144
129
|
name: string;
|
|
@@ -149,17 +134,13 @@ interface BusinessFilters$1 {
|
|
|
149
134
|
}
|
|
150
135
|
interface BusinessesViewProps {
|
|
151
136
|
filters: BusinessFilters$1;
|
|
152
|
-
sortedData: BusinessListItem[];
|
|
153
|
-
sortBy: string;
|
|
154
|
-
sortDirection: "asc" | "desc";
|
|
155
137
|
isLoading?: boolean;
|
|
138
|
+
table: ReactNode;
|
|
156
139
|
onFilterChange: (field: keyof BusinessFilters$1, value: string | Date | undefined) => void;
|
|
157
140
|
onResetFilters: () => void;
|
|
158
|
-
onSort: (key: string) => void;
|
|
159
|
-
onRowClick: (business: BusinessListItem) => void;
|
|
160
141
|
onCreateBusiness: () => void;
|
|
161
142
|
}
|
|
162
|
-
declare const BusinessesView: ({ filters,
|
|
143
|
+
declare const BusinessesView: ({ filters, isLoading, table, onFilterChange, onResetFilters, onCreateBusiness }: BusinessesViewProps) => react_jsx_runtime.JSX.Element;
|
|
163
144
|
|
|
164
145
|
interface TimelineEvent {
|
|
165
146
|
id: string;
|
|
@@ -172,6 +153,21 @@ interface BusinessTimelineCardProps {
|
|
|
172
153
|
}
|
|
173
154
|
declare const BusinessTimelineCard: ({ timeline, className }: BusinessTimelineCardProps) => react_jsx_runtime.JSX.Element;
|
|
174
155
|
|
|
156
|
+
declare const accountSchema: z.ZodObject<{
|
|
157
|
+
accountName: z.ZodOptional<z.ZodString>;
|
|
158
|
+
accountType: z.ZodOptional<z.ZodString>;
|
|
159
|
+
fundingAccountNumber: z.ZodOptional<z.ZodString>;
|
|
160
|
+
}, z.core.$strip>;
|
|
161
|
+
type AccountFormData = z.infer<typeof accountSchema>;
|
|
162
|
+
|
|
163
|
+
declare const externalAccountSchema$1: z.ZodObject<{
|
|
164
|
+
accountNumber: z.ZodOptional<z.ZodString>;
|
|
165
|
+
bankAccountType: z.ZodOptional<z.ZodString>;
|
|
166
|
+
bankName: z.ZodOptional<z.ZodString>;
|
|
167
|
+
routingNumber: z.ZodOptional<z.ZodString>;
|
|
168
|
+
}, z.core.$strip>;
|
|
169
|
+
type ExternalAccountFormData$1 = z.infer<typeof externalAccountSchema$1>;
|
|
170
|
+
|
|
175
171
|
interface UBO {
|
|
176
172
|
id: string;
|
|
177
173
|
name: string;
|
|
@@ -263,13 +259,6 @@ declare const uboSchema: z.ZodObject<{
|
|
|
263
259
|
}, z.core.$strip>;
|
|
264
260
|
type UBOFormData = z.infer<typeof uboSchema>;
|
|
265
261
|
|
|
266
|
-
declare const accountSchema: z.ZodObject<{
|
|
267
|
-
accountName: z.ZodOptional<z.ZodString>;
|
|
268
|
-
accountType: z.ZodOptional<z.ZodString>;
|
|
269
|
-
fundingAccountNumber: z.ZodOptional<z.ZodString>;
|
|
270
|
-
}, z.core.$strip>;
|
|
271
|
-
type AccountFormData = z.infer<typeof accountSchema>;
|
|
272
|
-
|
|
273
262
|
interface Business {
|
|
274
263
|
id: string;
|
|
275
264
|
businessName: string;
|
|
@@ -311,8 +300,9 @@ interface BusinessDetailViewProps {
|
|
|
311
300
|
onNavigateToCounterparty: () => void;
|
|
312
301
|
onCreateCounterparty?: () => void;
|
|
313
302
|
onNavigateToTransactions?: () => void;
|
|
303
|
+
onAddExternalAccount?: (data: ExternalAccountFormData$1) => Promise<void | boolean> | void | boolean;
|
|
304
|
+
onDeleteExternalAccount?: (accountId: string) => Promise<void | boolean> | void | boolean;
|
|
314
305
|
onAddAccount?: (data: AccountFormData) => Promise<void | boolean> | void | boolean;
|
|
315
|
-
onDeleteAccount?: (accountId: string) => Promise<void | boolean> | void | boolean;
|
|
316
306
|
onUBOClick: (customerId: string) => void;
|
|
317
307
|
onAddUBO?: (data: UBOFormData) => Promise<void | boolean> | void | boolean;
|
|
318
308
|
onRemoveUBO?: (uboId: string) => void;
|
|
@@ -330,7 +320,7 @@ interface BusinessDetailViewProps {
|
|
|
330
320
|
revealedIdNumber?: string | null;
|
|
331
321
|
onProductIdClick?: (productId: number) => void;
|
|
332
322
|
}
|
|
333
|
-
declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, timeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions,
|
|
323
|
+
declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, timeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, onUBOClick, onAddUBO, onRemoveUBO, onDocumentUpload, onDocumentDelete, renderDocumentViewer, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, onProductIdClick, }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
334
324
|
|
|
335
325
|
interface BusinessFilters {
|
|
336
326
|
businessId: string;
|
|
@@ -471,6 +461,51 @@ interface CounterpartyDetailViewProps {
|
|
|
471
461
|
}
|
|
472
462
|
declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
473
463
|
|
|
464
|
+
declare const inputVariants: (props?: {
|
|
465
|
+
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
466
|
+
size?: "default" | "sm" | "lg";
|
|
467
|
+
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
468
|
+
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
469
|
+
label?: string;
|
|
470
|
+
hint?: string;
|
|
471
|
+
error?: string;
|
|
472
|
+
success?: string;
|
|
473
|
+
isLoading?: boolean;
|
|
474
|
+
}
|
|
475
|
+
declare const EnhancedInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
476
|
+
|
|
477
|
+
interface AddressData {
|
|
478
|
+
line1?: string;
|
|
479
|
+
line2?: string;
|
|
480
|
+
city?: string;
|
|
481
|
+
state?: string;
|
|
482
|
+
postalCode?: string;
|
|
483
|
+
}
|
|
484
|
+
interface AddressFormProps {
|
|
485
|
+
title: string;
|
|
486
|
+
description: string;
|
|
487
|
+
fieldPrefix?: string;
|
|
488
|
+
showAddressType?: boolean;
|
|
489
|
+
addressTypeOptions?: Array<{
|
|
490
|
+
value: string;
|
|
491
|
+
label: string;
|
|
492
|
+
}>;
|
|
493
|
+
fieldOverrides?: {
|
|
494
|
+
state?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
495
|
+
city?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
496
|
+
streetAddress?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
497
|
+
postalCode?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
498
|
+
apartment?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
499
|
+
};
|
|
500
|
+
showApartment?: boolean;
|
|
501
|
+
countryCode?: string;
|
|
502
|
+
onCountryCodeChange?: (value: string) => void;
|
|
503
|
+
countryCodeError?: boolean;
|
|
504
|
+
address?: AddressData;
|
|
505
|
+
onAddressChange?: (address: AddressData) => void;
|
|
506
|
+
}
|
|
507
|
+
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, address, onAddressChange, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
508
|
+
|
|
474
509
|
interface CreateCounterpartyViewProps {
|
|
475
510
|
counterpartyData: any;
|
|
476
511
|
onBasicInfoChange: (data: any) => void;
|
|
@@ -484,8 +519,10 @@ interface CreateCounterpartyViewProps {
|
|
|
484
519
|
onWireSave: (data: PaymentMethodCardProps) => void;
|
|
485
520
|
onWireDelete: () => void;
|
|
486
521
|
onCountryCodeChange?: (value: string) => void;
|
|
522
|
+
address?: AddressData;
|
|
523
|
+
onAddressChange?: (address: AddressData) => void;
|
|
487
524
|
}
|
|
488
|
-
declare const CreateCounterpartyView: ({ counterpartyData, onBasicInfoChange, onCancel, onSubmit, achPaymentMethod, wirePaymentMethod, hasWire, onACHSave, onACHDelete, onWireSave, onWireDelete, onCountryCodeChange, }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
525
|
+
declare const CreateCounterpartyView: ({ counterpartyData, onBasicInfoChange, onCancel, onSubmit, achPaymentMethod, wirePaymentMethod, hasWire, onACHSave, onACHDelete, onWireSave, onWireDelete, onCountryCodeChange, address, onAddressChange, }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
489
526
|
|
|
490
527
|
interface BusinessAccount {
|
|
491
528
|
id: string;
|
|
@@ -628,9 +665,10 @@ interface IndividualTimelineEvent {
|
|
|
628
665
|
}
|
|
629
666
|
|
|
630
667
|
declare const externalAccountSchema: z.ZodObject<{
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
668
|
+
accountNumber: z.ZodOptional<z.ZodString>;
|
|
669
|
+
bankAccountType: z.ZodOptional<z.ZodString>;
|
|
670
|
+
bankName: z.ZodOptional<z.ZodString>;
|
|
671
|
+
routingNumber: z.ZodOptional<z.ZodString>;
|
|
634
672
|
}, z.core.$strip>;
|
|
635
673
|
type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
|
|
636
674
|
|
|
@@ -671,6 +709,7 @@ interface IndividualDetailViewProps {
|
|
|
671
709
|
}>;
|
|
672
710
|
onAddExternalAccount: (data: ExternalAccountFormData) => Promise<void | boolean> | void | boolean;
|
|
673
711
|
onDeleteExternalAccount: (accountId: string) => Promise<void | boolean> | void | boolean;
|
|
712
|
+
onAddAccount?: (data: AccountFormData) => Promise<void | boolean> | void | boolean;
|
|
674
713
|
documents: BusinessDocument[];
|
|
675
714
|
onDocumentUpload: (file: File, metadata: {
|
|
676
715
|
name: string;
|
|
@@ -680,7 +719,7 @@ interface IndividualDetailViewProps {
|
|
|
680
719
|
onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
|
|
681
720
|
renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
|
|
682
721
|
}
|
|
683
|
-
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
722
|
+
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
684
723
|
|
|
685
724
|
type CreateIndividualViewForm = {
|
|
686
725
|
handleSubmit: (onValid: any) => (e?: any) => void;
|
|
@@ -723,42 +762,6 @@ interface ACHTransferSectionProps {
|
|
|
723
762
|
}
|
|
724
763
|
declare const ACHTransferSection: ({ isEditing, onToggleEdit, className, hideActions }: ACHTransferSectionProps) => react_jsx_runtime.JSX.Element;
|
|
725
764
|
|
|
726
|
-
declare const inputVariants: (props?: {
|
|
727
|
-
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
728
|
-
size?: "default" | "sm" | "lg";
|
|
729
|
-
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
730
|
-
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
731
|
-
label?: string;
|
|
732
|
-
hint?: string;
|
|
733
|
-
error?: string;
|
|
734
|
-
success?: string;
|
|
735
|
-
isLoading?: boolean;
|
|
736
|
-
}
|
|
737
|
-
declare const EnhancedInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
738
|
-
|
|
739
|
-
interface AddressFormProps {
|
|
740
|
-
title: string;
|
|
741
|
-
description: string;
|
|
742
|
-
fieldPrefix?: string;
|
|
743
|
-
showAddressType?: boolean;
|
|
744
|
-
addressTypeOptions?: Array<{
|
|
745
|
-
value: string;
|
|
746
|
-
label: string;
|
|
747
|
-
}>;
|
|
748
|
-
fieldOverrides?: {
|
|
749
|
-
state?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
750
|
-
city?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
751
|
-
streetAddress?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
752
|
-
postalCode?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
753
|
-
apartment?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
754
|
-
};
|
|
755
|
-
showApartment?: boolean;
|
|
756
|
-
countryCode?: string;
|
|
757
|
-
onCountryCodeChange?: (value: string) => void;
|
|
758
|
-
countryCodeError?: boolean;
|
|
759
|
-
}
|
|
760
|
-
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
761
|
-
|
|
762
765
|
interface BankAddressCardProps {
|
|
763
766
|
data?: Partial<Address>;
|
|
764
767
|
onDataChange?: (data: Address) => void;
|
|
@@ -2173,4 +2176,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2173
2176
|
*/
|
|
2174
2177
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2175
2178
|
|
|
2176
|
-
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, 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, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FeeDetailView, Fees, FeesView, 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, 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, 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 };
|
|
2179
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, 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, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FeeDetailView, Fees, FeesView, 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, 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, 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
|
@@ -124,21 +124,6 @@ interface MainLayoutProps {
|
|
|
124
124
|
}
|
|
125
125
|
declare const MainLayout: ({ children }: MainLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
126
126
|
|
|
127
|
-
interface BusinessListItem {
|
|
128
|
-
id: string;
|
|
129
|
-
businessName: string;
|
|
130
|
-
productName: string;
|
|
131
|
-
cipStatus: "NOT_START" | "PASS" | "FAIL" | "IN_REVIEW";
|
|
132
|
-
status: "ACTIVE" | "INACTIVE" | "BLOCKED" | "PENDING_APPROVAL";
|
|
133
|
-
type: "Individual" | "Business";
|
|
134
|
-
subType: "UBO" | "Customer";
|
|
135
|
-
isDeveloperInitiated: boolean;
|
|
136
|
-
provider: string;
|
|
137
|
-
result: string;
|
|
138
|
-
created: string;
|
|
139
|
-
modified: string;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
127
|
interface BusinessFilters$1 {
|
|
143
128
|
businessId: string;
|
|
144
129
|
name: string;
|
|
@@ -149,17 +134,13 @@ interface BusinessFilters$1 {
|
|
|
149
134
|
}
|
|
150
135
|
interface BusinessesViewProps {
|
|
151
136
|
filters: BusinessFilters$1;
|
|
152
|
-
sortedData: BusinessListItem[];
|
|
153
|
-
sortBy: string;
|
|
154
|
-
sortDirection: "asc" | "desc";
|
|
155
137
|
isLoading?: boolean;
|
|
138
|
+
table: ReactNode;
|
|
156
139
|
onFilterChange: (field: keyof BusinessFilters$1, value: string | Date | undefined) => void;
|
|
157
140
|
onResetFilters: () => void;
|
|
158
|
-
onSort: (key: string) => void;
|
|
159
|
-
onRowClick: (business: BusinessListItem) => void;
|
|
160
141
|
onCreateBusiness: () => void;
|
|
161
142
|
}
|
|
162
|
-
declare const BusinessesView: ({ filters,
|
|
143
|
+
declare const BusinessesView: ({ filters, isLoading, table, onFilterChange, onResetFilters, onCreateBusiness }: BusinessesViewProps) => react_jsx_runtime.JSX.Element;
|
|
163
144
|
|
|
164
145
|
interface TimelineEvent {
|
|
165
146
|
id: string;
|
|
@@ -172,6 +153,21 @@ interface BusinessTimelineCardProps {
|
|
|
172
153
|
}
|
|
173
154
|
declare const BusinessTimelineCard: ({ timeline, className }: BusinessTimelineCardProps) => react_jsx_runtime.JSX.Element;
|
|
174
155
|
|
|
156
|
+
declare const accountSchema: z.ZodObject<{
|
|
157
|
+
accountName: z.ZodOptional<z.ZodString>;
|
|
158
|
+
accountType: z.ZodOptional<z.ZodString>;
|
|
159
|
+
fundingAccountNumber: z.ZodOptional<z.ZodString>;
|
|
160
|
+
}, z.core.$strip>;
|
|
161
|
+
type AccountFormData = z.infer<typeof accountSchema>;
|
|
162
|
+
|
|
163
|
+
declare const externalAccountSchema$1: z.ZodObject<{
|
|
164
|
+
accountNumber: z.ZodOptional<z.ZodString>;
|
|
165
|
+
bankAccountType: z.ZodOptional<z.ZodString>;
|
|
166
|
+
bankName: z.ZodOptional<z.ZodString>;
|
|
167
|
+
routingNumber: z.ZodOptional<z.ZodString>;
|
|
168
|
+
}, z.core.$strip>;
|
|
169
|
+
type ExternalAccountFormData$1 = z.infer<typeof externalAccountSchema$1>;
|
|
170
|
+
|
|
175
171
|
interface UBO {
|
|
176
172
|
id: string;
|
|
177
173
|
name: string;
|
|
@@ -263,13 +259,6 @@ declare const uboSchema: z.ZodObject<{
|
|
|
263
259
|
}, z.core.$strip>;
|
|
264
260
|
type UBOFormData = z.infer<typeof uboSchema>;
|
|
265
261
|
|
|
266
|
-
declare const accountSchema: z.ZodObject<{
|
|
267
|
-
accountName: z.ZodOptional<z.ZodString>;
|
|
268
|
-
accountType: z.ZodOptional<z.ZodString>;
|
|
269
|
-
fundingAccountNumber: z.ZodOptional<z.ZodString>;
|
|
270
|
-
}, z.core.$strip>;
|
|
271
|
-
type AccountFormData = z.infer<typeof accountSchema>;
|
|
272
|
-
|
|
273
262
|
interface Business {
|
|
274
263
|
id: string;
|
|
275
264
|
businessName: string;
|
|
@@ -311,8 +300,9 @@ interface BusinessDetailViewProps {
|
|
|
311
300
|
onNavigateToCounterparty: () => void;
|
|
312
301
|
onCreateCounterparty?: () => void;
|
|
313
302
|
onNavigateToTransactions?: () => void;
|
|
303
|
+
onAddExternalAccount?: (data: ExternalAccountFormData$1) => Promise<void | boolean> | void | boolean;
|
|
304
|
+
onDeleteExternalAccount?: (accountId: string) => Promise<void | boolean> | void | boolean;
|
|
314
305
|
onAddAccount?: (data: AccountFormData) => Promise<void | boolean> | void | boolean;
|
|
315
|
-
onDeleteAccount?: (accountId: string) => Promise<void | boolean> | void | boolean;
|
|
316
306
|
onUBOClick: (customerId: string) => void;
|
|
317
307
|
onAddUBO?: (data: UBOFormData) => Promise<void | boolean> | void | boolean;
|
|
318
308
|
onRemoveUBO?: (uboId: string) => void;
|
|
@@ -330,7 +320,7 @@ interface BusinessDetailViewProps {
|
|
|
330
320
|
revealedIdNumber?: string | null;
|
|
331
321
|
onProductIdClick?: (productId: number) => void;
|
|
332
322
|
}
|
|
333
|
-
declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, timeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions,
|
|
323
|
+
declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, timeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, onUBOClick, onAddUBO, onRemoveUBO, onDocumentUpload, onDocumentDelete, renderDocumentViewer, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, onProductIdClick, }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
334
324
|
|
|
335
325
|
interface BusinessFilters {
|
|
336
326
|
businessId: string;
|
|
@@ -471,6 +461,51 @@ interface CounterpartyDetailViewProps {
|
|
|
471
461
|
}
|
|
472
462
|
declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
473
463
|
|
|
464
|
+
declare const inputVariants: (props?: {
|
|
465
|
+
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
466
|
+
size?: "default" | "sm" | "lg";
|
|
467
|
+
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
468
|
+
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
469
|
+
label?: string;
|
|
470
|
+
hint?: string;
|
|
471
|
+
error?: string;
|
|
472
|
+
success?: string;
|
|
473
|
+
isLoading?: boolean;
|
|
474
|
+
}
|
|
475
|
+
declare const EnhancedInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
476
|
+
|
|
477
|
+
interface AddressData {
|
|
478
|
+
line1?: string;
|
|
479
|
+
line2?: string;
|
|
480
|
+
city?: string;
|
|
481
|
+
state?: string;
|
|
482
|
+
postalCode?: string;
|
|
483
|
+
}
|
|
484
|
+
interface AddressFormProps {
|
|
485
|
+
title: string;
|
|
486
|
+
description: string;
|
|
487
|
+
fieldPrefix?: string;
|
|
488
|
+
showAddressType?: boolean;
|
|
489
|
+
addressTypeOptions?: Array<{
|
|
490
|
+
value: string;
|
|
491
|
+
label: string;
|
|
492
|
+
}>;
|
|
493
|
+
fieldOverrides?: {
|
|
494
|
+
state?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
495
|
+
city?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
496
|
+
streetAddress?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
497
|
+
postalCode?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
498
|
+
apartment?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
499
|
+
};
|
|
500
|
+
showApartment?: boolean;
|
|
501
|
+
countryCode?: string;
|
|
502
|
+
onCountryCodeChange?: (value: string) => void;
|
|
503
|
+
countryCodeError?: boolean;
|
|
504
|
+
address?: AddressData;
|
|
505
|
+
onAddressChange?: (address: AddressData) => void;
|
|
506
|
+
}
|
|
507
|
+
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, address, onAddressChange, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
508
|
+
|
|
474
509
|
interface CreateCounterpartyViewProps {
|
|
475
510
|
counterpartyData: any;
|
|
476
511
|
onBasicInfoChange: (data: any) => void;
|
|
@@ -484,8 +519,10 @@ interface CreateCounterpartyViewProps {
|
|
|
484
519
|
onWireSave: (data: PaymentMethodCardProps) => void;
|
|
485
520
|
onWireDelete: () => void;
|
|
486
521
|
onCountryCodeChange?: (value: string) => void;
|
|
522
|
+
address?: AddressData;
|
|
523
|
+
onAddressChange?: (address: AddressData) => void;
|
|
487
524
|
}
|
|
488
|
-
declare const CreateCounterpartyView: ({ counterpartyData, onBasicInfoChange, onCancel, onSubmit, achPaymentMethod, wirePaymentMethod, hasWire, onACHSave, onACHDelete, onWireSave, onWireDelete, onCountryCodeChange, }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
525
|
+
declare const CreateCounterpartyView: ({ counterpartyData, onBasicInfoChange, onCancel, onSubmit, achPaymentMethod, wirePaymentMethod, hasWire, onACHSave, onACHDelete, onWireSave, onWireDelete, onCountryCodeChange, address, onAddressChange, }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
489
526
|
|
|
490
527
|
interface BusinessAccount {
|
|
491
528
|
id: string;
|
|
@@ -628,9 +665,10 @@ interface IndividualTimelineEvent {
|
|
|
628
665
|
}
|
|
629
666
|
|
|
630
667
|
declare const externalAccountSchema: z.ZodObject<{
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
668
|
+
accountNumber: z.ZodOptional<z.ZodString>;
|
|
669
|
+
bankAccountType: z.ZodOptional<z.ZodString>;
|
|
670
|
+
bankName: z.ZodOptional<z.ZodString>;
|
|
671
|
+
routingNumber: z.ZodOptional<z.ZodString>;
|
|
634
672
|
}, z.core.$strip>;
|
|
635
673
|
type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
|
|
636
674
|
|
|
@@ -671,6 +709,7 @@ interface IndividualDetailViewProps {
|
|
|
671
709
|
}>;
|
|
672
710
|
onAddExternalAccount: (data: ExternalAccountFormData) => Promise<void | boolean> | void | boolean;
|
|
673
711
|
onDeleteExternalAccount: (accountId: string) => Promise<void | boolean> | void | boolean;
|
|
712
|
+
onAddAccount?: (data: AccountFormData) => Promise<void | boolean> | void | boolean;
|
|
674
713
|
documents: BusinessDocument[];
|
|
675
714
|
onDocumentUpload: (file: File, metadata: {
|
|
676
715
|
name: string;
|
|
@@ -680,7 +719,7 @@ interface IndividualDetailViewProps {
|
|
|
680
719
|
onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
|
|
681
720
|
renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
|
|
682
721
|
}
|
|
683
|
-
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
722
|
+
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
684
723
|
|
|
685
724
|
type CreateIndividualViewForm = {
|
|
686
725
|
handleSubmit: (onValid: any) => (e?: any) => void;
|
|
@@ -723,42 +762,6 @@ interface ACHTransferSectionProps {
|
|
|
723
762
|
}
|
|
724
763
|
declare const ACHTransferSection: ({ isEditing, onToggleEdit, className, hideActions }: ACHTransferSectionProps) => react_jsx_runtime.JSX.Element;
|
|
725
764
|
|
|
726
|
-
declare const inputVariants: (props?: {
|
|
727
|
-
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
728
|
-
size?: "default" | "sm" | "lg";
|
|
729
|
-
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
730
|
-
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
731
|
-
label?: string;
|
|
732
|
-
hint?: string;
|
|
733
|
-
error?: string;
|
|
734
|
-
success?: string;
|
|
735
|
-
isLoading?: boolean;
|
|
736
|
-
}
|
|
737
|
-
declare const EnhancedInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
738
|
-
|
|
739
|
-
interface AddressFormProps {
|
|
740
|
-
title: string;
|
|
741
|
-
description: string;
|
|
742
|
-
fieldPrefix?: string;
|
|
743
|
-
showAddressType?: boolean;
|
|
744
|
-
addressTypeOptions?: Array<{
|
|
745
|
-
value: string;
|
|
746
|
-
label: string;
|
|
747
|
-
}>;
|
|
748
|
-
fieldOverrides?: {
|
|
749
|
-
state?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
750
|
-
city?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
751
|
-
streetAddress?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
752
|
-
postalCode?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
753
|
-
apartment?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
754
|
-
};
|
|
755
|
-
showApartment?: boolean;
|
|
756
|
-
countryCode?: string;
|
|
757
|
-
onCountryCodeChange?: (value: string) => void;
|
|
758
|
-
countryCodeError?: boolean;
|
|
759
|
-
}
|
|
760
|
-
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
761
|
-
|
|
762
765
|
interface BankAddressCardProps {
|
|
763
766
|
data?: Partial<Address>;
|
|
764
767
|
onDataChange?: (data: Address) => void;
|
|
@@ -2173,4 +2176,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2173
2176
|
*/
|
|
2174
2177
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2175
2178
|
|
|
2176
|
-
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, 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, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FeeDetailView, Fees, FeesView, 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, 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, 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 };
|
|
2179
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, 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, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FeeDetailView, Fees, FeesView, 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, 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, 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 };
|