braid-ui 1.0.103 → 1.0.105

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.d.cts CHANGED
@@ -900,6 +900,103 @@ interface ListPageProps {
900
900
  }
901
901
  declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
902
902
 
903
+ interface OptionItem {
904
+ value: string;
905
+ label: string;
906
+ }
907
+ interface TierData {
908
+ amount: string;
909
+ startCount: string;
910
+ endCount: string;
911
+ }
912
+ interface FeeFormData {
913
+ type: string;
914
+ amount: string;
915
+ settlementAccountNumber: string;
916
+ feeChargingAccountNumber: string;
917
+ associatedEntityType: string;
918
+ associatedEntityId: string;
919
+ dayOfMonth: string;
920
+ sameDay: boolean;
921
+ }
922
+ interface CreateFeeViewProps {
923
+ formData: FeeFormData;
924
+ onFieldChange: (field: string, value: string) => void;
925
+ onSameDayChange: (value: boolean) => void;
926
+ transactionScope: "group" | "type";
927
+ onTransactionScopeChange: (scope: "group" | "type") => void;
928
+ transactionGroups: string[];
929
+ onTransactionGroupsChange: (groups: string[]) => void;
930
+ transactionTypes: string[];
931
+ onTransactionTypesChange: (types: string[]) => void;
932
+ tiers: TierData[];
933
+ newTier: TierData;
934
+ onNewTierChange: (tier: TierData) => void;
935
+ onAddTier: () => void;
936
+ onRemoveTier: (index: number) => void;
937
+ nextStartCount: string;
938
+ onSubmit: (e: React.FormEvent) => void;
939
+ onCancel: () => void;
940
+ feeTypeOptions: OptionItem[];
941
+ transactionGroupOptions: OptionItem[];
942
+ transactionTypeOptions: OptionItem[];
943
+ associatedEntityTypeOptions: OptionItem[];
944
+ }
945
+ declare const CreateFeeView: ({ formData, onFieldChange, onSameDayChange, transactionScope, onTransactionScopeChange, transactionGroups, onTransactionGroupsChange, transactionTypes, onTransactionTypesChange, tiers, newTier, onNewTierChange, onAddTier, onRemoveTier, nextStartCount, onSubmit, onCancel, feeTypeOptions, transactionGroupOptions, transactionTypeOptions, associatedEntityTypeOptions, }: CreateFeeViewProps) => react_jsx_runtime.JSX.Element;
946
+
947
+ interface TieredFee {
948
+ amount: number;
949
+ startCount: number;
950
+ endCount: number | null;
951
+ }
952
+ interface AccountFee {
953
+ id: string;
954
+ feeType: string;
955
+ transactionTypes: string[];
956
+ transactionGroups: string[];
957
+ feeAmount: number;
958
+ chargingAccount: string;
959
+ settlementAccount: string;
960
+ sameDay: boolean;
961
+ tieredFee: TieredFee[];
962
+ associatedEntityType: string;
963
+ associatedEntityId: string;
964
+ dayOfMonth?: number;
965
+ createdAt: string;
966
+ updatedAt: string;
967
+ }
968
+
969
+ interface FeeDetailViewProps {
970
+ fee: AccountFee;
971
+ onDelete: () => void;
972
+ onNavigateBack: () => void;
973
+ onNavigateToAccount: (accountNumber: string) => void;
974
+ }
975
+ declare const FeeDetailView: ({ fee, onDelete, onNavigateBack, onNavigateToAccount }: FeeDetailViewProps) => react_jsx_runtime.JSX.Element;
976
+
977
+ interface FeeFilters {
978
+ accountNumber: string;
979
+ productId: string;
980
+ programId: string;
981
+ type: string;
982
+ transactionGroups: string[];
983
+ transactionTypes: string[];
984
+ }
985
+
986
+ interface FeesViewProps {
987
+ sortedData: AccountFee[];
988
+ sortBy: string;
989
+ sortDirection: "asc" | "desc";
990
+ onSort: (key: string) => void;
991
+ filters: FeeFilters;
992
+ onFilterChange: (field: keyof FeeFilters, value: string | string[]) => void;
993
+ onResetFilters: () => void;
994
+ onApplyFilters: () => void;
995
+ onRowClick: (fee: AccountFee) => void;
996
+ onCreateFee: () => void;
997
+ }
998
+ declare const FeesView: ({ sortedData, sortBy, sortDirection, onSort, filters, onFilterChange, onResetFilters, onApplyFilters, onRowClick, onCreateFee, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
999
+
903
1000
  interface StatementHeader {
904
1001
  account?: string;
905
1002
  productId?: string;
@@ -2033,4 +2130,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2033
2130
  */
2034
2131
  declare function downloadCSV(content: string, filename: string): void;
2035
2132
 
2036
- export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, Fees, 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 };
2133
+ export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, 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, 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
@@ -900,6 +900,103 @@ interface ListPageProps {
900
900
  }
901
901
  declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
902
902
 
903
+ interface OptionItem {
904
+ value: string;
905
+ label: string;
906
+ }
907
+ interface TierData {
908
+ amount: string;
909
+ startCount: string;
910
+ endCount: string;
911
+ }
912
+ interface FeeFormData {
913
+ type: string;
914
+ amount: string;
915
+ settlementAccountNumber: string;
916
+ feeChargingAccountNumber: string;
917
+ associatedEntityType: string;
918
+ associatedEntityId: string;
919
+ dayOfMonth: string;
920
+ sameDay: boolean;
921
+ }
922
+ interface CreateFeeViewProps {
923
+ formData: FeeFormData;
924
+ onFieldChange: (field: string, value: string) => void;
925
+ onSameDayChange: (value: boolean) => void;
926
+ transactionScope: "group" | "type";
927
+ onTransactionScopeChange: (scope: "group" | "type") => void;
928
+ transactionGroups: string[];
929
+ onTransactionGroupsChange: (groups: string[]) => void;
930
+ transactionTypes: string[];
931
+ onTransactionTypesChange: (types: string[]) => void;
932
+ tiers: TierData[];
933
+ newTier: TierData;
934
+ onNewTierChange: (tier: TierData) => void;
935
+ onAddTier: () => void;
936
+ onRemoveTier: (index: number) => void;
937
+ nextStartCount: string;
938
+ onSubmit: (e: React.FormEvent) => void;
939
+ onCancel: () => void;
940
+ feeTypeOptions: OptionItem[];
941
+ transactionGroupOptions: OptionItem[];
942
+ transactionTypeOptions: OptionItem[];
943
+ associatedEntityTypeOptions: OptionItem[];
944
+ }
945
+ declare const CreateFeeView: ({ formData, onFieldChange, onSameDayChange, transactionScope, onTransactionScopeChange, transactionGroups, onTransactionGroupsChange, transactionTypes, onTransactionTypesChange, tiers, newTier, onNewTierChange, onAddTier, onRemoveTier, nextStartCount, onSubmit, onCancel, feeTypeOptions, transactionGroupOptions, transactionTypeOptions, associatedEntityTypeOptions, }: CreateFeeViewProps) => react_jsx_runtime.JSX.Element;
946
+
947
+ interface TieredFee {
948
+ amount: number;
949
+ startCount: number;
950
+ endCount: number | null;
951
+ }
952
+ interface AccountFee {
953
+ id: string;
954
+ feeType: string;
955
+ transactionTypes: string[];
956
+ transactionGroups: string[];
957
+ feeAmount: number;
958
+ chargingAccount: string;
959
+ settlementAccount: string;
960
+ sameDay: boolean;
961
+ tieredFee: TieredFee[];
962
+ associatedEntityType: string;
963
+ associatedEntityId: string;
964
+ dayOfMonth?: number;
965
+ createdAt: string;
966
+ updatedAt: string;
967
+ }
968
+
969
+ interface FeeDetailViewProps {
970
+ fee: AccountFee;
971
+ onDelete: () => void;
972
+ onNavigateBack: () => void;
973
+ onNavigateToAccount: (accountNumber: string) => void;
974
+ }
975
+ declare const FeeDetailView: ({ fee, onDelete, onNavigateBack, onNavigateToAccount }: FeeDetailViewProps) => react_jsx_runtime.JSX.Element;
976
+
977
+ interface FeeFilters {
978
+ accountNumber: string;
979
+ productId: string;
980
+ programId: string;
981
+ type: string;
982
+ transactionGroups: string[];
983
+ transactionTypes: string[];
984
+ }
985
+
986
+ interface FeesViewProps {
987
+ sortedData: AccountFee[];
988
+ sortBy: string;
989
+ sortDirection: "asc" | "desc";
990
+ onSort: (key: string) => void;
991
+ filters: FeeFilters;
992
+ onFilterChange: (field: keyof FeeFilters, value: string | string[]) => void;
993
+ onResetFilters: () => void;
994
+ onApplyFilters: () => void;
995
+ onRowClick: (fee: AccountFee) => void;
996
+ onCreateFee: () => void;
997
+ }
998
+ declare const FeesView: ({ sortedData, sortBy, sortDirection, onSort, filters, onFilterChange, onResetFilters, onApplyFilters, onRowClick, onCreateFee, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
999
+
903
1000
  interface StatementHeader {
904
1001
  account?: string;
905
1002
  productId?: string;
@@ -2033,4 +2130,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2033
2130
  */
2034
2131
  declare function downloadCSV(content: string, filename: string): void;
2035
2132
 
2036
- export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, Fees, 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 };
2133
+ export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, 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, 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 };