braid-ui 1.0.84 → 1.0.85
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/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +62 -4
- package/dist/index.d.ts +62 -4
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -386,7 +386,7 @@ interface BusinessAccount {
|
|
|
386
386
|
bankName: string;
|
|
387
387
|
bankAccountType: string;
|
|
388
388
|
}
|
|
389
|
-
interface SelectOption$
|
|
389
|
+
interface SelectOption$3 {
|
|
390
390
|
value: string;
|
|
391
391
|
label: string;
|
|
392
392
|
}
|
|
@@ -402,8 +402,8 @@ interface BusinessDetailViewProps {
|
|
|
402
402
|
businessAccounts: BusinessAccount[];
|
|
403
403
|
currentStatus: string;
|
|
404
404
|
isEditingProfile: boolean;
|
|
405
|
-
statusOptions: SelectOption$
|
|
406
|
-
businessEntityTypeOptions: SelectOption$
|
|
405
|
+
statusOptions: SelectOption$3[];
|
|
406
|
+
businessEntityTypeOptions: SelectOption$3[];
|
|
407
407
|
onStatusChange: (newStatus: string) => void;
|
|
408
408
|
onProfileDataChange: (profile: BusinessProfile) => void;
|
|
409
409
|
onToggleProfileEdit: () => void;
|
|
@@ -713,6 +713,64 @@ interface CreateCounterpartyViewProps {
|
|
|
713
713
|
}
|
|
714
714
|
declare const CreateCounterpartyView: ({ counterpartyData, paymentMethods, onPaymentMethodsChange, onBasicInfoChange, onCancel, onSubmit }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
715
715
|
|
|
716
|
+
interface IndividualsFilters {
|
|
717
|
+
name: string;
|
|
718
|
+
productName: string;
|
|
719
|
+
status: string;
|
|
720
|
+
createdDateStart?: Date;
|
|
721
|
+
createdDateEnd?: Date;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
interface IndividualsViewProps {
|
|
725
|
+
title?: string;
|
|
726
|
+
filters: IndividualsFilters;
|
|
727
|
+
statusOptions: {
|
|
728
|
+
value: string;
|
|
729
|
+
label: string;
|
|
730
|
+
}[];
|
|
731
|
+
onFilterChange: (field: keyof IndividualsFilters, value: string | Date | undefined) => void;
|
|
732
|
+
onResetFilters: () => void;
|
|
733
|
+
onApplyFilters: () => void;
|
|
734
|
+
onCreateIndividual: () => void;
|
|
735
|
+
table: React.ReactNode;
|
|
736
|
+
}
|
|
737
|
+
declare const IndividualsView: ({ title, filters, statusOptions, onFilterChange, onResetFilters, onApplyFilters, onCreateIndividual, table, }: IndividualsViewProps) => react_jsx_runtime.JSX.Element;
|
|
738
|
+
|
|
739
|
+
interface SelectOption$2 {
|
|
740
|
+
value: string;
|
|
741
|
+
label: string;
|
|
742
|
+
}
|
|
743
|
+
interface IndividualDetailViewProps {
|
|
744
|
+
headerName: string;
|
|
745
|
+
individualId: string;
|
|
746
|
+
status: string;
|
|
747
|
+
statusOptions: SelectOption$2[];
|
|
748
|
+
onStatusChange: (newStatus: string) => void;
|
|
749
|
+
cipStatus: any;
|
|
750
|
+
subType?: "UBO" | "Customer";
|
|
751
|
+
latestOFAC?: OFACCheck;
|
|
752
|
+
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
753
|
+
onNavigateToAccounts: () => void;
|
|
754
|
+
onNavigateToCounterparty: () => void;
|
|
755
|
+
showTimeline?: boolean;
|
|
756
|
+
leftContent: React.ReactNode;
|
|
757
|
+
rightContent: React.ReactNode;
|
|
758
|
+
}
|
|
759
|
+
declare const IndividualDetailView: ({ headerName, individualId, status, statusOptions, onStatusChange, cipStatus, subType, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, showTimeline, leftContent, rightContent, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
760
|
+
|
|
761
|
+
type CreateIndividualViewForm = {
|
|
762
|
+
handleSubmit: (onValid: any) => (e?: any) => void;
|
|
763
|
+
handleSave: (data?: any) => Promise<void> | void;
|
|
764
|
+
isFormValid: boolean;
|
|
765
|
+
isLoading: boolean;
|
|
766
|
+
};
|
|
767
|
+
interface CreateIndividualViewProps {
|
|
768
|
+
form: CreateIndividualViewForm;
|
|
769
|
+
onCancel: () => void;
|
|
770
|
+
onSubmit: () => void;
|
|
771
|
+
}
|
|
772
|
+
declare const CreateIndividualView: ({ form, onCancel, onSubmit }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
|
|
773
|
+
|
|
716
774
|
interface ACHBankCardProps {
|
|
717
775
|
data?: Partial<ACHTransfer>;
|
|
718
776
|
onDataChange?: (data: ACHTransfer) => void;
|
|
@@ -2184,4 +2242,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2184
2242
|
*/
|
|
2185
2243
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2186
2244
|
|
|
2187
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, Accounts, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
2245
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, Accounts, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -386,7 +386,7 @@ interface BusinessAccount {
|
|
|
386
386
|
bankName: string;
|
|
387
387
|
bankAccountType: string;
|
|
388
388
|
}
|
|
389
|
-
interface SelectOption$
|
|
389
|
+
interface SelectOption$3 {
|
|
390
390
|
value: string;
|
|
391
391
|
label: string;
|
|
392
392
|
}
|
|
@@ -402,8 +402,8 @@ interface BusinessDetailViewProps {
|
|
|
402
402
|
businessAccounts: BusinessAccount[];
|
|
403
403
|
currentStatus: string;
|
|
404
404
|
isEditingProfile: boolean;
|
|
405
|
-
statusOptions: SelectOption$
|
|
406
|
-
businessEntityTypeOptions: SelectOption$
|
|
405
|
+
statusOptions: SelectOption$3[];
|
|
406
|
+
businessEntityTypeOptions: SelectOption$3[];
|
|
407
407
|
onStatusChange: (newStatus: string) => void;
|
|
408
408
|
onProfileDataChange: (profile: BusinessProfile) => void;
|
|
409
409
|
onToggleProfileEdit: () => void;
|
|
@@ -713,6 +713,64 @@ interface CreateCounterpartyViewProps {
|
|
|
713
713
|
}
|
|
714
714
|
declare const CreateCounterpartyView: ({ counterpartyData, paymentMethods, onPaymentMethodsChange, onBasicInfoChange, onCancel, onSubmit }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
715
715
|
|
|
716
|
+
interface IndividualsFilters {
|
|
717
|
+
name: string;
|
|
718
|
+
productName: string;
|
|
719
|
+
status: string;
|
|
720
|
+
createdDateStart?: Date;
|
|
721
|
+
createdDateEnd?: Date;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
interface IndividualsViewProps {
|
|
725
|
+
title?: string;
|
|
726
|
+
filters: IndividualsFilters;
|
|
727
|
+
statusOptions: {
|
|
728
|
+
value: string;
|
|
729
|
+
label: string;
|
|
730
|
+
}[];
|
|
731
|
+
onFilterChange: (field: keyof IndividualsFilters, value: string | Date | undefined) => void;
|
|
732
|
+
onResetFilters: () => void;
|
|
733
|
+
onApplyFilters: () => void;
|
|
734
|
+
onCreateIndividual: () => void;
|
|
735
|
+
table: React.ReactNode;
|
|
736
|
+
}
|
|
737
|
+
declare const IndividualsView: ({ title, filters, statusOptions, onFilterChange, onResetFilters, onApplyFilters, onCreateIndividual, table, }: IndividualsViewProps) => react_jsx_runtime.JSX.Element;
|
|
738
|
+
|
|
739
|
+
interface SelectOption$2 {
|
|
740
|
+
value: string;
|
|
741
|
+
label: string;
|
|
742
|
+
}
|
|
743
|
+
interface IndividualDetailViewProps {
|
|
744
|
+
headerName: string;
|
|
745
|
+
individualId: string;
|
|
746
|
+
status: string;
|
|
747
|
+
statusOptions: SelectOption$2[];
|
|
748
|
+
onStatusChange: (newStatus: string) => void;
|
|
749
|
+
cipStatus: any;
|
|
750
|
+
subType?: "UBO" | "Customer";
|
|
751
|
+
latestOFAC?: OFACCheck;
|
|
752
|
+
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
753
|
+
onNavigateToAccounts: () => void;
|
|
754
|
+
onNavigateToCounterparty: () => void;
|
|
755
|
+
showTimeline?: boolean;
|
|
756
|
+
leftContent: React.ReactNode;
|
|
757
|
+
rightContent: React.ReactNode;
|
|
758
|
+
}
|
|
759
|
+
declare const IndividualDetailView: ({ headerName, individualId, status, statusOptions, onStatusChange, cipStatus, subType, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, showTimeline, leftContent, rightContent, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
760
|
+
|
|
761
|
+
type CreateIndividualViewForm = {
|
|
762
|
+
handleSubmit: (onValid: any) => (e?: any) => void;
|
|
763
|
+
handleSave: (data?: any) => Promise<void> | void;
|
|
764
|
+
isFormValid: boolean;
|
|
765
|
+
isLoading: boolean;
|
|
766
|
+
};
|
|
767
|
+
interface CreateIndividualViewProps {
|
|
768
|
+
form: CreateIndividualViewForm;
|
|
769
|
+
onCancel: () => void;
|
|
770
|
+
onSubmit: () => void;
|
|
771
|
+
}
|
|
772
|
+
declare const CreateIndividualView: ({ form, onCancel, onSubmit }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
|
|
773
|
+
|
|
716
774
|
interface ACHBankCardProps {
|
|
717
775
|
data?: Partial<ACHTransfer>;
|
|
718
776
|
onDataChange?: (data: ACHTransfer) => void;
|
|
@@ -2184,4 +2242,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2184
2242
|
*/
|
|
2185
2243
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2186
2244
|
|
|
2187
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, Accounts, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
2245
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, Accounts, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|