braid-ui 1.0.112 → 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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +49 -38
- package/dist/index.d.ts +49 -38
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -461,6 +461,51 @@ interface CounterpartyDetailViewProps {
|
|
|
461
461
|
}
|
|
462
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;
|
|
463
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
|
+
|
|
464
509
|
interface CreateCounterpartyViewProps {
|
|
465
510
|
counterpartyData: any;
|
|
466
511
|
onBasicInfoChange: (data: any) => void;
|
|
@@ -474,8 +519,10 @@ interface CreateCounterpartyViewProps {
|
|
|
474
519
|
onWireSave: (data: PaymentMethodCardProps) => void;
|
|
475
520
|
onWireDelete: () => void;
|
|
476
521
|
onCountryCodeChange?: (value: string) => void;
|
|
522
|
+
address?: AddressData;
|
|
523
|
+
onAddressChange?: (address: AddressData) => void;
|
|
477
524
|
}
|
|
478
|
-
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;
|
|
479
526
|
|
|
480
527
|
interface BusinessAccount {
|
|
481
528
|
id: string;
|
|
@@ -715,42 +762,6 @@ interface ACHTransferSectionProps {
|
|
|
715
762
|
}
|
|
716
763
|
declare const ACHTransferSection: ({ isEditing, onToggleEdit, className, hideActions }: ACHTransferSectionProps) => react_jsx_runtime.JSX.Element;
|
|
717
764
|
|
|
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
765
|
interface BankAddressCardProps {
|
|
755
766
|
data?: Partial<Address>;
|
|
756
767
|
onDataChange?: (data: Address) => void;
|
|
@@ -2165,4 +2176,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2165
2176
|
*/
|
|
2166
2177
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2167
2178
|
|
|
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 };
|
|
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
|
@@ -461,6 +461,51 @@ interface CounterpartyDetailViewProps {
|
|
|
461
461
|
}
|
|
462
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;
|
|
463
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
|
+
|
|
464
509
|
interface CreateCounterpartyViewProps {
|
|
465
510
|
counterpartyData: any;
|
|
466
511
|
onBasicInfoChange: (data: any) => void;
|
|
@@ -474,8 +519,10 @@ interface CreateCounterpartyViewProps {
|
|
|
474
519
|
onWireSave: (data: PaymentMethodCardProps) => void;
|
|
475
520
|
onWireDelete: () => void;
|
|
476
521
|
onCountryCodeChange?: (value: string) => void;
|
|
522
|
+
address?: AddressData;
|
|
523
|
+
onAddressChange?: (address: AddressData) => void;
|
|
477
524
|
}
|
|
478
|
-
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;
|
|
479
526
|
|
|
480
527
|
interface BusinessAccount {
|
|
481
528
|
id: string;
|
|
@@ -715,42 +762,6 @@ interface ACHTransferSectionProps {
|
|
|
715
762
|
}
|
|
716
763
|
declare const ACHTransferSection: ({ isEditing, onToggleEdit, className, hideActions }: ACHTransferSectionProps) => react_jsx_runtime.JSX.Element;
|
|
717
764
|
|
|
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
765
|
interface BankAddressCardProps {
|
|
755
766
|
data?: Partial<Address>;
|
|
756
767
|
onDataChange?: (data: Address) => void;
|
|
@@ -2165,4 +2176,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2165
2176
|
*/
|
|
2166
2177
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2167
2178
|
|
|
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 };
|
|
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 };
|