braid-ui 1.0.112 → 1.0.114
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +57 -39
- package/dist/index.d.ts +57 -39
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -362,6 +362,12 @@ interface CounterpartiesViewProps {
|
|
|
362
362
|
}
|
|
363
363
|
declare const CounterpartiesView: ({ table, filters, onFilterChange, onResetFilters, onCreateCounterparty }: CounterpartiesViewProps) => react_jsx_runtime.JSX.Element;
|
|
364
364
|
|
|
365
|
+
interface CounterpartyTimelineEvent {
|
|
366
|
+
id: string;
|
|
367
|
+
action: string;
|
|
368
|
+
timestamp: string;
|
|
369
|
+
}
|
|
370
|
+
|
|
365
371
|
interface PaymentMethodCardProps {
|
|
366
372
|
type: "ACH" | "Wire";
|
|
367
373
|
fiId: string;
|
|
@@ -458,8 +464,54 @@ interface CounterpartyDetailViewProps {
|
|
|
458
464
|
onNavigateToTransactions?: () => void;
|
|
459
465
|
latestOFAC?: OFACCheck;
|
|
460
466
|
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
467
|
+
timeline: CounterpartyTimelineEvent[];
|
|
468
|
+
}
|
|
469
|
+
declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, timeline, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
470
|
+
|
|
471
|
+
declare const inputVariants: (props?: {
|
|
472
|
+
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
473
|
+
size?: "default" | "sm" | "lg";
|
|
474
|
+
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
475
|
+
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
476
|
+
label?: string;
|
|
477
|
+
hint?: string;
|
|
478
|
+
error?: string;
|
|
479
|
+
success?: string;
|
|
480
|
+
isLoading?: boolean;
|
|
481
|
+
}
|
|
482
|
+
declare const EnhancedInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
483
|
+
|
|
484
|
+
interface AddressData {
|
|
485
|
+
line1?: string;
|
|
486
|
+
line2?: string;
|
|
487
|
+
city?: string;
|
|
488
|
+
state?: string;
|
|
489
|
+
postalCode?: string;
|
|
490
|
+
}
|
|
491
|
+
interface AddressFormProps {
|
|
492
|
+
title: string;
|
|
493
|
+
description: string;
|
|
494
|
+
fieldPrefix?: string;
|
|
495
|
+
showAddressType?: boolean;
|
|
496
|
+
addressTypeOptions?: Array<{
|
|
497
|
+
value: string;
|
|
498
|
+
label: string;
|
|
499
|
+
}>;
|
|
500
|
+
fieldOverrides?: {
|
|
501
|
+
state?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
502
|
+
city?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
503
|
+
streetAddress?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
504
|
+
postalCode?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
505
|
+
apartment?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
506
|
+
};
|
|
507
|
+
showApartment?: boolean;
|
|
508
|
+
countryCode?: string;
|
|
509
|
+
onCountryCodeChange?: (value: string) => void;
|
|
510
|
+
countryCodeError?: boolean;
|
|
511
|
+
address?: AddressData;
|
|
512
|
+
onAddressChange?: (address: AddressData) => void;
|
|
461
513
|
}
|
|
462
|
-
declare const
|
|
514
|
+
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, address, onAddressChange, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
463
515
|
|
|
464
516
|
interface CreateCounterpartyViewProps {
|
|
465
517
|
counterpartyData: any;
|
|
@@ -474,8 +526,10 @@ interface CreateCounterpartyViewProps {
|
|
|
474
526
|
onWireSave: (data: PaymentMethodCardProps) => void;
|
|
475
527
|
onWireDelete: () => void;
|
|
476
528
|
onCountryCodeChange?: (value: string) => void;
|
|
529
|
+
address?: AddressData;
|
|
530
|
+
onAddressChange?: (address: AddressData) => void;
|
|
477
531
|
}
|
|
478
|
-
declare const CreateCounterpartyView: ({ counterpartyData, onBasicInfoChange, onCancel, onSubmit, achPaymentMethod, wirePaymentMethod, hasWire, onACHSave, onACHDelete, onWireSave, onWireDelete, onCountryCodeChange, }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
532
|
+
declare const CreateCounterpartyView: ({ counterpartyData, onBasicInfoChange, onCancel, onSubmit, achPaymentMethod, wirePaymentMethod, hasWire, onACHSave, onACHDelete, onWireSave, onWireDelete, onCountryCodeChange, address, onAddressChange, }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
479
533
|
|
|
480
534
|
interface BusinessAccount {
|
|
481
535
|
id: string;
|
|
@@ -715,42 +769,6 @@ interface ACHTransferSectionProps {
|
|
|
715
769
|
}
|
|
716
770
|
declare const ACHTransferSection: ({ isEditing, onToggleEdit, className, hideActions }: ACHTransferSectionProps) => react_jsx_runtime.JSX.Element;
|
|
717
771
|
|
|
718
|
-
declare const inputVariants: (props?: {
|
|
719
|
-
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
720
|
-
size?: "default" | "sm" | "lg";
|
|
721
|
-
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
722
|
-
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
723
|
-
label?: string;
|
|
724
|
-
hint?: string;
|
|
725
|
-
error?: string;
|
|
726
|
-
success?: string;
|
|
727
|
-
isLoading?: boolean;
|
|
728
|
-
}
|
|
729
|
-
declare const EnhancedInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
730
|
-
|
|
731
|
-
interface AddressFormProps {
|
|
732
|
-
title: string;
|
|
733
|
-
description: string;
|
|
734
|
-
fieldPrefix?: string;
|
|
735
|
-
showAddressType?: boolean;
|
|
736
|
-
addressTypeOptions?: Array<{
|
|
737
|
-
value: string;
|
|
738
|
-
label: string;
|
|
739
|
-
}>;
|
|
740
|
-
fieldOverrides?: {
|
|
741
|
-
state?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
742
|
-
city?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
743
|
-
streetAddress?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
744
|
-
postalCode?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
745
|
-
apartment?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
746
|
-
};
|
|
747
|
-
showApartment?: boolean;
|
|
748
|
-
countryCode?: string;
|
|
749
|
-
onCountryCodeChange?: (value: string) => void;
|
|
750
|
-
countryCodeError?: boolean;
|
|
751
|
-
}
|
|
752
|
-
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
753
|
-
|
|
754
772
|
interface BankAddressCardProps {
|
|
755
773
|
data?: Partial<Address>;
|
|
756
774
|
onDataChange?: (data: Address) => void;
|
|
@@ -2165,4 +2183,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2165
2183
|
*/
|
|
2166
2184
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2167
2185
|
|
|
2168
|
-
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 };
|
|
2186
|
+
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
|
@@ -362,6 +362,12 @@ interface CounterpartiesViewProps {
|
|
|
362
362
|
}
|
|
363
363
|
declare const CounterpartiesView: ({ table, filters, onFilterChange, onResetFilters, onCreateCounterparty }: CounterpartiesViewProps) => react_jsx_runtime.JSX.Element;
|
|
364
364
|
|
|
365
|
+
interface CounterpartyTimelineEvent {
|
|
366
|
+
id: string;
|
|
367
|
+
action: string;
|
|
368
|
+
timestamp: string;
|
|
369
|
+
}
|
|
370
|
+
|
|
365
371
|
interface PaymentMethodCardProps {
|
|
366
372
|
type: "ACH" | "Wire";
|
|
367
373
|
fiId: string;
|
|
@@ -458,8 +464,54 @@ interface CounterpartyDetailViewProps {
|
|
|
458
464
|
onNavigateToTransactions?: () => void;
|
|
459
465
|
latestOFAC?: OFACCheck;
|
|
460
466
|
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
467
|
+
timeline: CounterpartyTimelineEvent[];
|
|
468
|
+
}
|
|
469
|
+
declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, timeline, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
470
|
+
|
|
471
|
+
declare const inputVariants: (props?: {
|
|
472
|
+
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
473
|
+
size?: "default" | "sm" | "lg";
|
|
474
|
+
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
475
|
+
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
476
|
+
label?: string;
|
|
477
|
+
hint?: string;
|
|
478
|
+
error?: string;
|
|
479
|
+
success?: string;
|
|
480
|
+
isLoading?: boolean;
|
|
481
|
+
}
|
|
482
|
+
declare const EnhancedInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
483
|
+
|
|
484
|
+
interface AddressData {
|
|
485
|
+
line1?: string;
|
|
486
|
+
line2?: string;
|
|
487
|
+
city?: string;
|
|
488
|
+
state?: string;
|
|
489
|
+
postalCode?: string;
|
|
490
|
+
}
|
|
491
|
+
interface AddressFormProps {
|
|
492
|
+
title: string;
|
|
493
|
+
description: string;
|
|
494
|
+
fieldPrefix?: string;
|
|
495
|
+
showAddressType?: boolean;
|
|
496
|
+
addressTypeOptions?: Array<{
|
|
497
|
+
value: string;
|
|
498
|
+
label: string;
|
|
499
|
+
}>;
|
|
500
|
+
fieldOverrides?: {
|
|
501
|
+
state?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
502
|
+
city?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
503
|
+
streetAddress?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
504
|
+
postalCode?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
505
|
+
apartment?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
506
|
+
};
|
|
507
|
+
showApartment?: boolean;
|
|
508
|
+
countryCode?: string;
|
|
509
|
+
onCountryCodeChange?: (value: string) => void;
|
|
510
|
+
countryCodeError?: boolean;
|
|
511
|
+
address?: AddressData;
|
|
512
|
+
onAddressChange?: (address: AddressData) => void;
|
|
461
513
|
}
|
|
462
|
-
declare const
|
|
514
|
+
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, address, onAddressChange, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
463
515
|
|
|
464
516
|
interface CreateCounterpartyViewProps {
|
|
465
517
|
counterpartyData: any;
|
|
@@ -474,8 +526,10 @@ interface CreateCounterpartyViewProps {
|
|
|
474
526
|
onWireSave: (data: PaymentMethodCardProps) => void;
|
|
475
527
|
onWireDelete: () => void;
|
|
476
528
|
onCountryCodeChange?: (value: string) => void;
|
|
529
|
+
address?: AddressData;
|
|
530
|
+
onAddressChange?: (address: AddressData) => void;
|
|
477
531
|
}
|
|
478
|
-
declare const CreateCounterpartyView: ({ counterpartyData, onBasicInfoChange, onCancel, onSubmit, achPaymentMethod, wirePaymentMethod, hasWire, onACHSave, onACHDelete, onWireSave, onWireDelete, onCountryCodeChange, }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
532
|
+
declare const CreateCounterpartyView: ({ counterpartyData, onBasicInfoChange, onCancel, onSubmit, achPaymentMethod, wirePaymentMethod, hasWire, onACHSave, onACHDelete, onWireSave, onWireDelete, onCountryCodeChange, address, onAddressChange, }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
479
533
|
|
|
480
534
|
interface BusinessAccount {
|
|
481
535
|
id: string;
|
|
@@ -715,42 +769,6 @@ interface ACHTransferSectionProps {
|
|
|
715
769
|
}
|
|
716
770
|
declare const ACHTransferSection: ({ isEditing, onToggleEdit, className, hideActions }: ACHTransferSectionProps) => react_jsx_runtime.JSX.Element;
|
|
717
771
|
|
|
718
|
-
declare const inputVariants: (props?: {
|
|
719
|
-
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
720
|
-
size?: "default" | "sm" | "lg";
|
|
721
|
-
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
722
|
-
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
723
|
-
label?: string;
|
|
724
|
-
hint?: string;
|
|
725
|
-
error?: string;
|
|
726
|
-
success?: string;
|
|
727
|
-
isLoading?: boolean;
|
|
728
|
-
}
|
|
729
|
-
declare const EnhancedInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
730
|
-
|
|
731
|
-
interface AddressFormProps {
|
|
732
|
-
title: string;
|
|
733
|
-
description: string;
|
|
734
|
-
fieldPrefix?: string;
|
|
735
|
-
showAddressType?: boolean;
|
|
736
|
-
addressTypeOptions?: Array<{
|
|
737
|
-
value: string;
|
|
738
|
-
label: string;
|
|
739
|
-
}>;
|
|
740
|
-
fieldOverrides?: {
|
|
741
|
-
state?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
742
|
-
city?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
743
|
-
streetAddress?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
744
|
-
postalCode?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
745
|
-
apartment?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
746
|
-
};
|
|
747
|
-
showApartment?: boolean;
|
|
748
|
-
countryCode?: string;
|
|
749
|
-
onCountryCodeChange?: (value: string) => void;
|
|
750
|
-
countryCodeError?: boolean;
|
|
751
|
-
}
|
|
752
|
-
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
753
|
-
|
|
754
772
|
interface BankAddressCardProps {
|
|
755
773
|
data?: Partial<Address>;
|
|
756
774
|
onDataChange?: (data: Address) => void;
|
|
@@ -2165,4 +2183,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2165
2183
|
*/
|
|
2166
2184
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2167
2185
|
|
|
2168
|
-
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 };
|
|
2186
|
+
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 };
|