braid-ui 1.0.172 → 1.0.173

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
@@ -309,7 +309,7 @@ interface VelocityLimitDetailViewProps {
309
309
  declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, onAssociatedEntityClick, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
310
310
 
311
311
  type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
312
- interface SelectOption$8 {
312
+ interface SelectOption$9 {
313
313
  value: string;
314
314
  label: string;
315
315
  }
@@ -337,16 +337,16 @@ interface CreateVelocityLimitViewProps {
337
337
  onMultiFieldChange: (field: string, value: string[]) => void;
338
338
  onSubmit: (e: React.FormEvent) => void;
339
339
  onCancel: () => void;
340
- limitTypeOptions: SelectOption$8[];
341
- actionOptions: SelectOption$8[];
342
- associatedEntityTypeOptions: SelectOption$8[];
343
- transactionTypeOptions: SelectOption$8[];
344
- transactionGroupOptions: SelectOption$8[];
345
- aggregationLevelOptions: SelectOption$8[];
346
- timePeriodOptions: SelectOption$8[];
347
- prohibitedEntityTypeOptions: SelectOption$8[];
348
- productIdOptions: SelectOption$8[];
349
- programIdOptions: SelectOption$8[];
340
+ limitTypeOptions: SelectOption$9[];
341
+ actionOptions: SelectOption$9[];
342
+ associatedEntityTypeOptions: SelectOption$9[];
343
+ transactionTypeOptions: SelectOption$9[];
344
+ transactionGroupOptions: SelectOption$9[];
345
+ aggregationLevelOptions: SelectOption$9[];
346
+ timePeriodOptions: SelectOption$9[];
347
+ prohibitedEntityTypeOptions: SelectOption$9[];
348
+ productIdOptions: SelectOption$9[];
349
+ programIdOptions: SelectOption$9[];
350
350
  restrictedEntities: RestrictedEntity[];
351
351
  onAddRestrictedEntity: () => void;
352
352
  onRemoveRestrictedEntity: (index: number) => void;
@@ -517,7 +517,7 @@ interface BusinessAccount$1 {
517
517
  bankName: string;
518
518
  bankAccountType: string;
519
519
  }
520
- interface SelectOption$7 {
520
+ interface SelectOption$8 {
521
521
  value: string;
522
522
  label: string;
523
523
  }
@@ -534,8 +534,8 @@ interface BusinessDetailViewProps {
534
534
  businessAccounts: BusinessAccount$1[];
535
535
  currentStatus: string;
536
536
  isEditingProfile: boolean;
537
- statusOptions: SelectOption$7[];
538
- businessEntityTypeOptions: SelectOption$7[];
537
+ statusOptions: SelectOption$8[];
538
+ businessEntityTypeOptions: SelectOption$8[];
539
539
  onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
540
540
  onProfileDataChange: (profile: BusinessProfile) => void | Promise<void>;
541
541
  onToggleProfileEdit: () => void;
@@ -813,7 +813,7 @@ interface AccountFormValues {
813
813
  fundingAccountNumber?: string;
814
814
  sweepAccountNumber?: string;
815
815
  }
816
- interface SelectOption$6 {
816
+ interface SelectOption$7 {
817
817
  value: string;
818
818
  label: string;
819
819
  }
@@ -821,8 +821,8 @@ interface AccountDetailViewProps {
821
821
  account: BusinessAccount;
822
822
  currentStatus: string;
823
823
  onStatusChange: (status: string) => void;
824
- statusOptions: SelectOption$6[];
825
- canAcceptSweepOptions: SelectOption$6[];
824
+ statusOptions: SelectOption$7[];
825
+ canAcceptSweepOptions: SelectOption$7[];
826
826
  form: UseFormReturn<AccountFormValues> & {
827
827
  isEditing: boolean;
828
828
  handleToggleEdit: () => void;
@@ -955,7 +955,7 @@ declare const externalAccountSchema: z.ZodObject<{
955
955
  }, z.core.$strip>;
956
956
  type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
957
957
 
958
- interface SelectOption$5 {
958
+ interface SelectOption$6 {
959
959
  value: string;
960
960
  label: string;
961
961
  }
@@ -972,7 +972,7 @@ interface IndividualDetailViewProps {
972
972
  profile: IndividualProfileEdit;
973
973
  onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
974
974
  status: string;
975
- statusOptions: SelectOption$5[];
975
+ statusOptions: SelectOption$6[];
976
976
  onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
977
977
  latestOFAC?: OFACCheck;
978
978
  onNavigateToOFAC?: (ofacCheckId?: string) => void;
@@ -1008,7 +1008,7 @@ interface IndividualDetailViewProps {
1008
1008
  }
1009
1009
  declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onNavigateToBusiness, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, identityVerification, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
1010
1010
 
1011
- type SelectOption$4 = {
1011
+ type SelectOption$5 = {
1012
1012
  value: string;
1013
1013
  label: string;
1014
1014
  };
@@ -1023,8 +1023,8 @@ interface CreateIndividualViewProps {
1023
1023
  onCancel: () => void;
1024
1024
  onSubmit: () => void;
1025
1025
  isSubmitting?: boolean;
1026
- idTypeOptions: SelectOption$4[];
1027
- productOptions: SelectOption$4[];
1026
+ idTypeOptions: SelectOption$5[];
1027
+ productOptions: SelectOption$5[];
1028
1028
  }
1029
1029
  declare const CreateIndividualView: ({ form, onCancel, onSubmit, isSubmitting, idTypeOptions, productOptions }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
1030
1030
 
@@ -1101,7 +1101,7 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
1101
1101
 
1102
1102
  declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
1103
1103
 
1104
- interface SelectOption$3 {
1104
+ interface SelectOption$4 {
1105
1105
  value: string;
1106
1106
  label: string;
1107
1107
  }
@@ -1120,7 +1120,7 @@ interface BusinessProfileCardProps {
1120
1120
  onToggleIdNumberVisibility?: () => void;
1121
1121
  isLoadingIdNumber?: boolean;
1122
1122
  revealedIdNumber?: string | null;
1123
- businessEntityTypeOptions?: SelectOption$3[];
1123
+ businessEntityTypeOptions?: SelectOption$4[];
1124
1124
  }
1125
1125
  declare const BusinessProfileCard: ({ data, businessId, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions, onProductIdClick, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, businessEntityTypeOptions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
1126
1126
 
@@ -1336,7 +1336,7 @@ interface FeeFilters {
1336
1336
  transactionTypes: string[];
1337
1337
  }
1338
1338
 
1339
- interface SelectOption$2 {
1339
+ interface SelectOption$3 {
1340
1340
  value: string;
1341
1341
  label: string;
1342
1342
  }
@@ -1347,8 +1347,8 @@ interface FeesViewProps {
1347
1347
  onApplyFilters: () => void;
1348
1348
  onCreateFee: () => void;
1349
1349
  table: React.ReactNode;
1350
- productOptions: SelectOption$2[];
1351
- programOptions: SelectOption$2[];
1350
+ productOptions: SelectOption$3[];
1351
+ programOptions: SelectOption$3[];
1352
1352
  }
1353
1353
  declare const FeesView: ({ filters, onFilterChange, onResetFilters, onApplyFilters, onCreateFee, table, productOptions, programOptions, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
1354
1354
 
@@ -1462,7 +1462,7 @@ type ProductTimelineEvent = {
1462
1462
  changes: FieldChange$1[];
1463
1463
  };
1464
1464
 
1465
- interface SelectOption$1 {
1465
+ interface SelectOption$2 {
1466
1466
  value: string;
1467
1467
  label: string;
1468
1468
  }
@@ -1489,22 +1489,25 @@ interface FundsAvailabilityFormData {
1489
1489
  interface ProductDetailViewProps {
1490
1490
  product: Product;
1491
1491
  timeline: ProductTimelineEvent[];
1492
- operatingModelOptions: SelectOption$1[];
1493
- cipConfigOptions: SelectOption$1[];
1494
- accountTypeOptions: SelectOption$1[];
1495
- customerAccountTypeOptions: SelectOption$1[];
1496
- activeOptions: SelectOption$1[];
1497
- ofacOptionOptions: SelectOption$1[];
1498
- enablePresetOptions: SelectOption$1[];
1492
+ operatingModelOptions: SelectOption$2[];
1493
+ cipConfigOptions: SelectOption$2[];
1494
+ accountTypeOptions: SelectOption$2[];
1495
+ customerAccountTypeOptions: SelectOption$2[];
1496
+ activeOptions: SelectOption$2[];
1497
+ ofacOptionOptions: SelectOption$2[];
1498
+ enablePresetOptions: SelectOption$2[];
1499
1499
  onSaveDetails: (data: ProductDetailsFormData) => void | Promise<void>;
1500
1500
  onSaveFundsAvailability: (data: FundsAvailabilityFormData) => void | Promise<void>;
1501
1501
  onProgramClick: (programId: string) => void;
1502
1502
  onTenantClick: (tenantId: string) => void;
1503
1503
  onCounterpartiesClick: () => void;
1504
+ onCreateCounterparty?: () => void;
1504
1505
  onLimitsClick: () => void;
1506
+ onCreateLimit?: () => void;
1505
1507
  onFeesClick: () => void;
1508
+ onCreateFee?: () => void;
1506
1509
  }
1507
- declare const ProductDetailView: ({ product, timeline, operatingModelOptions, cipConfigOptions, accountTypeOptions, customerAccountTypeOptions, activeOptions, ofacOptionOptions, enablePresetOptions, onSaveDetails, onSaveFundsAvailability, onProgramClick, onTenantClick, onCounterpartiesClick, onLimitsClick, onFeesClick, }: ProductDetailViewProps) => react_jsx_runtime.JSX.Element;
1510
+ declare const ProductDetailView: ({ product, timeline, operatingModelOptions, cipConfigOptions, accountTypeOptions, customerAccountTypeOptions, activeOptions, ofacOptionOptions, enablePresetOptions, onSaveDetails, onSaveFundsAvailability, onProgramClick, onTenantClick, onCounterpartiesClick, onCreateCounterparty, onLimitsClick, onCreateLimit, onFeesClick, onCreateFee, }: ProductDetailViewProps) => react_jsx_runtime.JSX.Element;
1508
1511
 
1509
1512
  interface OptionItem$1 {
1510
1513
  value: string;
@@ -1568,10 +1571,21 @@ interface Program {
1568
1571
  updatedAt: string;
1569
1572
  }
1570
1573
 
1574
+ interface SelectOption$1 {
1575
+ value: string;
1576
+ label: string;
1577
+ }
1571
1578
  interface ProgramDetailViewProps {
1572
1579
  program: Program;
1580
+ programTypeOptions: SelectOption$1[];
1581
+ operatingModelOptions: SelectOption$1[];
1582
+ onSave?: (data: Program) => void | Promise<void>;
1583
+ onNavigateFees?: () => void;
1584
+ onCreateFee?: () => void;
1585
+ onNavigateLimits?: () => void;
1586
+ onCreateLimit?: () => void;
1573
1587
  }
1574
- declare const ProgramDetailView: ({ program }: ProgramDetailViewProps) => react_jsx_runtime.JSX.Element;
1588
+ declare const ProgramDetailView: ({ program, programTypeOptions, operatingModelOptions, onSave, onNavigateFees, onCreateFee, onNavigateLimits, onCreateLimit, }: ProgramDetailViewProps) => react_jsx_runtime.JSX.Element;
1575
1589
 
1576
1590
  interface OptionItem {
1577
1591
  value: string;
@@ -3040,4 +3054,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
3040
3054
  */
3041
3055
  declare function downloadCSV(content: string, filename: string): void;
3042
3056
 
3043
- export { A314ADetailView, type A314ADetailViewProps, type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateDeveloperFormData, CreateDeveloperView, type CreateDeveloperViewProps, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, type CreateProductFormData, CreateProductView, type CreateProductViewProps, type CreateProgramFormData, CreateProgramView, type CreateProgramViewProps, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, DeveloperDetailView, type DeveloperDetailViewProps, Developers, DevelopersView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, type FundsAvailabilityFormData, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ProductDetailView, type ProductDetailsFormData, Products, ProductsView, ProgramDetailView, ProgramsView, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$8 as 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$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
3057
+ export { A314ADetailView, type A314ADetailViewProps, type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateDeveloperFormData, CreateDeveloperView, type CreateDeveloperViewProps, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, type CreateProductFormData, CreateProductView, type CreateProductViewProps, type CreateProgramFormData, CreateProgramView, type CreateProgramViewProps, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, DeveloperDetailView, type DeveloperDetailViewProps, Developers, DevelopersView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, type FundsAvailabilityFormData, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ProductDetailView, type ProductDetailsFormData, Products, ProductsView, ProgramDetailView, ProgramsView, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$9 as 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$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
package/dist/index.d.ts CHANGED
@@ -309,7 +309,7 @@ interface VelocityLimitDetailViewProps {
309
309
  declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, onAssociatedEntityClick, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
310
310
 
311
311
  type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
312
- interface SelectOption$8 {
312
+ interface SelectOption$9 {
313
313
  value: string;
314
314
  label: string;
315
315
  }
@@ -337,16 +337,16 @@ interface CreateVelocityLimitViewProps {
337
337
  onMultiFieldChange: (field: string, value: string[]) => void;
338
338
  onSubmit: (e: React.FormEvent) => void;
339
339
  onCancel: () => void;
340
- limitTypeOptions: SelectOption$8[];
341
- actionOptions: SelectOption$8[];
342
- associatedEntityTypeOptions: SelectOption$8[];
343
- transactionTypeOptions: SelectOption$8[];
344
- transactionGroupOptions: SelectOption$8[];
345
- aggregationLevelOptions: SelectOption$8[];
346
- timePeriodOptions: SelectOption$8[];
347
- prohibitedEntityTypeOptions: SelectOption$8[];
348
- productIdOptions: SelectOption$8[];
349
- programIdOptions: SelectOption$8[];
340
+ limitTypeOptions: SelectOption$9[];
341
+ actionOptions: SelectOption$9[];
342
+ associatedEntityTypeOptions: SelectOption$9[];
343
+ transactionTypeOptions: SelectOption$9[];
344
+ transactionGroupOptions: SelectOption$9[];
345
+ aggregationLevelOptions: SelectOption$9[];
346
+ timePeriodOptions: SelectOption$9[];
347
+ prohibitedEntityTypeOptions: SelectOption$9[];
348
+ productIdOptions: SelectOption$9[];
349
+ programIdOptions: SelectOption$9[];
350
350
  restrictedEntities: RestrictedEntity[];
351
351
  onAddRestrictedEntity: () => void;
352
352
  onRemoveRestrictedEntity: (index: number) => void;
@@ -517,7 +517,7 @@ interface BusinessAccount$1 {
517
517
  bankName: string;
518
518
  bankAccountType: string;
519
519
  }
520
- interface SelectOption$7 {
520
+ interface SelectOption$8 {
521
521
  value: string;
522
522
  label: string;
523
523
  }
@@ -534,8 +534,8 @@ interface BusinessDetailViewProps {
534
534
  businessAccounts: BusinessAccount$1[];
535
535
  currentStatus: string;
536
536
  isEditingProfile: boolean;
537
- statusOptions: SelectOption$7[];
538
- businessEntityTypeOptions: SelectOption$7[];
537
+ statusOptions: SelectOption$8[];
538
+ businessEntityTypeOptions: SelectOption$8[];
539
539
  onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
540
540
  onProfileDataChange: (profile: BusinessProfile) => void | Promise<void>;
541
541
  onToggleProfileEdit: () => void;
@@ -813,7 +813,7 @@ interface AccountFormValues {
813
813
  fundingAccountNumber?: string;
814
814
  sweepAccountNumber?: string;
815
815
  }
816
- interface SelectOption$6 {
816
+ interface SelectOption$7 {
817
817
  value: string;
818
818
  label: string;
819
819
  }
@@ -821,8 +821,8 @@ interface AccountDetailViewProps {
821
821
  account: BusinessAccount;
822
822
  currentStatus: string;
823
823
  onStatusChange: (status: string) => void;
824
- statusOptions: SelectOption$6[];
825
- canAcceptSweepOptions: SelectOption$6[];
824
+ statusOptions: SelectOption$7[];
825
+ canAcceptSweepOptions: SelectOption$7[];
826
826
  form: UseFormReturn<AccountFormValues> & {
827
827
  isEditing: boolean;
828
828
  handleToggleEdit: () => void;
@@ -955,7 +955,7 @@ declare const externalAccountSchema: z.ZodObject<{
955
955
  }, z.core.$strip>;
956
956
  type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
957
957
 
958
- interface SelectOption$5 {
958
+ interface SelectOption$6 {
959
959
  value: string;
960
960
  label: string;
961
961
  }
@@ -972,7 +972,7 @@ interface IndividualDetailViewProps {
972
972
  profile: IndividualProfileEdit;
973
973
  onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
974
974
  status: string;
975
- statusOptions: SelectOption$5[];
975
+ statusOptions: SelectOption$6[];
976
976
  onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
977
977
  latestOFAC?: OFACCheck;
978
978
  onNavigateToOFAC?: (ofacCheckId?: string) => void;
@@ -1008,7 +1008,7 @@ interface IndividualDetailViewProps {
1008
1008
  }
1009
1009
  declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onNavigateToBusiness, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, identityVerification, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
1010
1010
 
1011
- type SelectOption$4 = {
1011
+ type SelectOption$5 = {
1012
1012
  value: string;
1013
1013
  label: string;
1014
1014
  };
@@ -1023,8 +1023,8 @@ interface CreateIndividualViewProps {
1023
1023
  onCancel: () => void;
1024
1024
  onSubmit: () => void;
1025
1025
  isSubmitting?: boolean;
1026
- idTypeOptions: SelectOption$4[];
1027
- productOptions: SelectOption$4[];
1026
+ idTypeOptions: SelectOption$5[];
1027
+ productOptions: SelectOption$5[];
1028
1028
  }
1029
1029
  declare const CreateIndividualView: ({ form, onCancel, onSubmit, isSubmitting, idTypeOptions, productOptions }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
1030
1030
 
@@ -1101,7 +1101,7 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
1101
1101
 
1102
1102
  declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
1103
1103
 
1104
- interface SelectOption$3 {
1104
+ interface SelectOption$4 {
1105
1105
  value: string;
1106
1106
  label: string;
1107
1107
  }
@@ -1120,7 +1120,7 @@ interface BusinessProfileCardProps {
1120
1120
  onToggleIdNumberVisibility?: () => void;
1121
1121
  isLoadingIdNumber?: boolean;
1122
1122
  revealedIdNumber?: string | null;
1123
- businessEntityTypeOptions?: SelectOption$3[];
1123
+ businessEntityTypeOptions?: SelectOption$4[];
1124
1124
  }
1125
1125
  declare const BusinessProfileCard: ({ data, businessId, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions, onProductIdClick, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, businessEntityTypeOptions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
1126
1126
 
@@ -1336,7 +1336,7 @@ interface FeeFilters {
1336
1336
  transactionTypes: string[];
1337
1337
  }
1338
1338
 
1339
- interface SelectOption$2 {
1339
+ interface SelectOption$3 {
1340
1340
  value: string;
1341
1341
  label: string;
1342
1342
  }
@@ -1347,8 +1347,8 @@ interface FeesViewProps {
1347
1347
  onApplyFilters: () => void;
1348
1348
  onCreateFee: () => void;
1349
1349
  table: React.ReactNode;
1350
- productOptions: SelectOption$2[];
1351
- programOptions: SelectOption$2[];
1350
+ productOptions: SelectOption$3[];
1351
+ programOptions: SelectOption$3[];
1352
1352
  }
1353
1353
  declare const FeesView: ({ filters, onFilterChange, onResetFilters, onApplyFilters, onCreateFee, table, productOptions, programOptions, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
1354
1354
 
@@ -1462,7 +1462,7 @@ type ProductTimelineEvent = {
1462
1462
  changes: FieldChange$1[];
1463
1463
  };
1464
1464
 
1465
- interface SelectOption$1 {
1465
+ interface SelectOption$2 {
1466
1466
  value: string;
1467
1467
  label: string;
1468
1468
  }
@@ -1489,22 +1489,25 @@ interface FundsAvailabilityFormData {
1489
1489
  interface ProductDetailViewProps {
1490
1490
  product: Product;
1491
1491
  timeline: ProductTimelineEvent[];
1492
- operatingModelOptions: SelectOption$1[];
1493
- cipConfigOptions: SelectOption$1[];
1494
- accountTypeOptions: SelectOption$1[];
1495
- customerAccountTypeOptions: SelectOption$1[];
1496
- activeOptions: SelectOption$1[];
1497
- ofacOptionOptions: SelectOption$1[];
1498
- enablePresetOptions: SelectOption$1[];
1492
+ operatingModelOptions: SelectOption$2[];
1493
+ cipConfigOptions: SelectOption$2[];
1494
+ accountTypeOptions: SelectOption$2[];
1495
+ customerAccountTypeOptions: SelectOption$2[];
1496
+ activeOptions: SelectOption$2[];
1497
+ ofacOptionOptions: SelectOption$2[];
1498
+ enablePresetOptions: SelectOption$2[];
1499
1499
  onSaveDetails: (data: ProductDetailsFormData) => void | Promise<void>;
1500
1500
  onSaveFundsAvailability: (data: FundsAvailabilityFormData) => void | Promise<void>;
1501
1501
  onProgramClick: (programId: string) => void;
1502
1502
  onTenantClick: (tenantId: string) => void;
1503
1503
  onCounterpartiesClick: () => void;
1504
+ onCreateCounterparty?: () => void;
1504
1505
  onLimitsClick: () => void;
1506
+ onCreateLimit?: () => void;
1505
1507
  onFeesClick: () => void;
1508
+ onCreateFee?: () => void;
1506
1509
  }
1507
- declare const ProductDetailView: ({ product, timeline, operatingModelOptions, cipConfigOptions, accountTypeOptions, customerAccountTypeOptions, activeOptions, ofacOptionOptions, enablePresetOptions, onSaveDetails, onSaveFundsAvailability, onProgramClick, onTenantClick, onCounterpartiesClick, onLimitsClick, onFeesClick, }: ProductDetailViewProps) => react_jsx_runtime.JSX.Element;
1510
+ declare const ProductDetailView: ({ product, timeline, operatingModelOptions, cipConfigOptions, accountTypeOptions, customerAccountTypeOptions, activeOptions, ofacOptionOptions, enablePresetOptions, onSaveDetails, onSaveFundsAvailability, onProgramClick, onTenantClick, onCounterpartiesClick, onCreateCounterparty, onLimitsClick, onCreateLimit, onFeesClick, onCreateFee, }: ProductDetailViewProps) => react_jsx_runtime.JSX.Element;
1508
1511
 
1509
1512
  interface OptionItem$1 {
1510
1513
  value: string;
@@ -1568,10 +1571,21 @@ interface Program {
1568
1571
  updatedAt: string;
1569
1572
  }
1570
1573
 
1574
+ interface SelectOption$1 {
1575
+ value: string;
1576
+ label: string;
1577
+ }
1571
1578
  interface ProgramDetailViewProps {
1572
1579
  program: Program;
1580
+ programTypeOptions: SelectOption$1[];
1581
+ operatingModelOptions: SelectOption$1[];
1582
+ onSave?: (data: Program) => void | Promise<void>;
1583
+ onNavigateFees?: () => void;
1584
+ onCreateFee?: () => void;
1585
+ onNavigateLimits?: () => void;
1586
+ onCreateLimit?: () => void;
1573
1587
  }
1574
- declare const ProgramDetailView: ({ program }: ProgramDetailViewProps) => react_jsx_runtime.JSX.Element;
1588
+ declare const ProgramDetailView: ({ program, programTypeOptions, operatingModelOptions, onSave, onNavigateFees, onCreateFee, onNavigateLimits, onCreateLimit, }: ProgramDetailViewProps) => react_jsx_runtime.JSX.Element;
1575
1589
 
1576
1590
  interface OptionItem {
1577
1591
  value: string;
@@ -3040,4 +3054,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
3040
3054
  */
3041
3055
  declare function downloadCSV(content: string, filename: string): void;
3042
3056
 
3043
- export { A314ADetailView, type A314ADetailViewProps, type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateDeveloperFormData, CreateDeveloperView, type CreateDeveloperViewProps, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, type CreateProductFormData, CreateProductView, type CreateProductViewProps, type CreateProgramFormData, CreateProgramView, type CreateProgramViewProps, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, DeveloperDetailView, type DeveloperDetailViewProps, Developers, DevelopersView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, type FundsAvailabilityFormData, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ProductDetailView, type ProductDetailsFormData, Products, ProductsView, ProgramDetailView, ProgramsView, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$8 as 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$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
3057
+ export { A314ADetailView, type A314ADetailViewProps, type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateDeveloperFormData, CreateDeveloperView, type CreateDeveloperViewProps, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, type CreateProductFormData, CreateProductView, type CreateProductViewProps, type CreateProgramFormData, CreateProgramView, type CreateProgramViewProps, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, DeveloperDetailView, type DeveloperDetailViewProps, Developers, DevelopersView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, type FundsAvailabilityFormData, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ProductDetailView, type ProductDetailsFormData, Products, ProductsView, ProgramDetailView, ProgramsView, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$9 as 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$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };