braid-ui 1.0.9 → 1.0.11
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 +3198 -798
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +53 -6
- package/dist/index.d.ts +53 -6
- package/dist/index.js +3195 -798
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -370,6 +370,14 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
370
370
|
idType: z.ZodOptional<z.ZodString>;
|
|
371
371
|
incorporationState: z.ZodOptional<z.ZodString>;
|
|
372
372
|
website: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
373
|
+
email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
374
|
+
mobilePhone: z.ZodOptional<z.ZodString>;
|
|
375
|
+
mcc: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
376
|
+
naics: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
377
|
+
achCompanyId: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
378
|
+
achCompanyName: z.ZodOptional<z.ZodString>;
|
|
379
|
+
externalId: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
380
|
+
productId: z.ZodOptional<z.ZodNumber>;
|
|
373
381
|
contactFirstName: z.ZodOptional<z.ZodString>;
|
|
374
382
|
contactLastName: z.ZodOptional<z.ZodString>;
|
|
375
383
|
contactEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -400,6 +408,7 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
400
408
|
addressType?: string;
|
|
401
409
|
}>;
|
|
402
410
|
}, "strip", z.ZodTypeAny, {
|
|
411
|
+
email?: string;
|
|
403
412
|
address?: {
|
|
404
413
|
state?: string;
|
|
405
414
|
country?: string;
|
|
@@ -417,11 +426,19 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
417
426
|
idType?: string;
|
|
418
427
|
formationDate?: string;
|
|
419
428
|
incorporationState?: string;
|
|
429
|
+
mobilePhone?: string;
|
|
430
|
+
mcc?: string;
|
|
431
|
+
naics?: string;
|
|
432
|
+
achCompanyId?: string;
|
|
433
|
+
achCompanyName?: string;
|
|
434
|
+
externalId?: string;
|
|
435
|
+
productId?: number;
|
|
420
436
|
contactFirstName?: string;
|
|
421
437
|
contactLastName?: string;
|
|
422
438
|
contactEmail?: string;
|
|
423
439
|
contactPhone?: string;
|
|
424
440
|
}, {
|
|
441
|
+
email?: string;
|
|
425
442
|
address?: {
|
|
426
443
|
state?: string;
|
|
427
444
|
country?: string;
|
|
@@ -439,6 +456,13 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
439
456
|
idType?: string;
|
|
440
457
|
formationDate?: string;
|
|
441
458
|
incorporationState?: string;
|
|
459
|
+
mobilePhone?: string;
|
|
460
|
+
mcc?: string;
|
|
461
|
+
naics?: string;
|
|
462
|
+
achCompanyId?: string;
|
|
463
|
+
achCompanyName?: string;
|
|
464
|
+
externalId?: string;
|
|
465
|
+
productId?: number;
|
|
442
466
|
contactFirstName?: string;
|
|
443
467
|
contactLastName?: string;
|
|
444
468
|
contactEmail?: string;
|
|
@@ -491,15 +515,23 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
|
|
|
491
515
|
|
|
492
516
|
declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
|
|
493
517
|
|
|
518
|
+
interface IdentityVerification {
|
|
519
|
+
customerId: string;
|
|
520
|
+
isDeveloperInitiated: boolean;
|
|
521
|
+
provider: string;
|
|
522
|
+
result: string;
|
|
523
|
+
}
|
|
524
|
+
|
|
494
525
|
interface BusinessProfileCardProps {
|
|
495
526
|
data?: Partial<BusinessProfile>;
|
|
527
|
+
identityVerification?: IdentityVerification;
|
|
496
528
|
onDataChange?: (data: BusinessProfile) => void;
|
|
497
529
|
isEditing?: boolean;
|
|
498
530
|
onToggleEdit?: () => void;
|
|
499
531
|
className?: string;
|
|
500
532
|
hideActions?: boolean;
|
|
501
533
|
}
|
|
502
|
-
declare const BusinessProfileCard: ({ data, onDataChange, isEditing, onToggleEdit, className, hideActions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
534
|
+
declare const BusinessProfileCard: ({ data, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
503
535
|
|
|
504
536
|
interface BusinessStatusCardProps {
|
|
505
537
|
isEditing?: boolean;
|
|
@@ -563,7 +595,16 @@ declare const OriginatorFI: () => react_jsx_runtime.JSX.Element;
|
|
|
563
595
|
|
|
564
596
|
declare const OriginatorFIAddress: () => react_jsx_runtime.JSX.Element;
|
|
565
597
|
|
|
566
|
-
|
|
598
|
+
interface PaymentMethod {
|
|
599
|
+
id: string;
|
|
600
|
+
type: "ach" | "wire";
|
|
601
|
+
name: string;
|
|
602
|
+
collapsed: boolean;
|
|
603
|
+
}
|
|
604
|
+
interface PaymentInformationSectionProps {
|
|
605
|
+
onPaymentMethodsChange?: (methods: PaymentMethod[]) => void;
|
|
606
|
+
}
|
|
607
|
+
declare const PaymentInformationSection: ({ onPaymentMethodsChange }?: PaymentInformationSectionProps) => react_jsx_runtime.JSX.Element;
|
|
567
608
|
|
|
568
609
|
declare const receiverSchema: z.ZodObject<{
|
|
569
610
|
routingNumber: z.ZodString;
|
|
@@ -1399,14 +1440,20 @@ declare const CreateBusiness: () => react_jsx_runtime.JSX.Element;
|
|
|
1399
1440
|
|
|
1400
1441
|
declare const Cases: () => react_jsx_runtime.JSX.Element;
|
|
1401
1442
|
|
|
1402
|
-
declare const
|
|
1443
|
+
declare const Counterparties: () => react_jsx_runtime.JSX.Element;
|
|
1403
1444
|
|
|
1404
|
-
declare const
|
|
1445
|
+
declare const CounterpartyDetail: () => react_jsx_runtime.JSX.Element;
|
|
1405
1446
|
|
|
1406
|
-
declare const
|
|
1447
|
+
declare const CreateCounterparty: () => react_jsx_runtime.JSX.Element;
|
|
1407
1448
|
|
|
1408
1449
|
declare const Dashboard: () => react_jsx_runtime.JSX.Element;
|
|
1409
1450
|
|
|
1451
|
+
declare const Individuals: () => react_jsx_runtime.JSX.Element;
|
|
1452
|
+
|
|
1453
|
+
declare const IndividualDetail: () => react_jsx_runtime.JSX.Element;
|
|
1454
|
+
|
|
1455
|
+
declare const CreateIndividual: () => react_jsx_runtime.JSX.Element;
|
|
1456
|
+
|
|
1410
1457
|
declare const NotFound: () => react_jsx_runtime.JSX.Element;
|
|
1411
1458
|
|
|
1412
1459
|
declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
@@ -1419,4 +1466,4 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1419
1466
|
|
|
1420
1467
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1421
1468
|
|
|
1422
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, Business as BusinessDetail, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection,
|
|
1469
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, Business as BusinessDetail, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, CreateBusiness, CreateCounterparty, CreateIndividual, 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, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ResolveAlertDialog, ResponsiveGrid, ScrollArea, ScrollBar, 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, StatementHeader, 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, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -370,6 +370,14 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
370
370
|
idType: z.ZodOptional<z.ZodString>;
|
|
371
371
|
incorporationState: z.ZodOptional<z.ZodString>;
|
|
372
372
|
website: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
373
|
+
email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
374
|
+
mobilePhone: z.ZodOptional<z.ZodString>;
|
|
375
|
+
mcc: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
376
|
+
naics: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
377
|
+
achCompanyId: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
378
|
+
achCompanyName: z.ZodOptional<z.ZodString>;
|
|
379
|
+
externalId: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
380
|
+
productId: z.ZodOptional<z.ZodNumber>;
|
|
373
381
|
contactFirstName: z.ZodOptional<z.ZodString>;
|
|
374
382
|
contactLastName: z.ZodOptional<z.ZodString>;
|
|
375
383
|
contactEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -400,6 +408,7 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
400
408
|
addressType?: string;
|
|
401
409
|
}>;
|
|
402
410
|
}, "strip", z.ZodTypeAny, {
|
|
411
|
+
email?: string;
|
|
403
412
|
address?: {
|
|
404
413
|
state?: string;
|
|
405
414
|
country?: string;
|
|
@@ -417,11 +426,19 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
417
426
|
idType?: string;
|
|
418
427
|
formationDate?: string;
|
|
419
428
|
incorporationState?: string;
|
|
429
|
+
mobilePhone?: string;
|
|
430
|
+
mcc?: string;
|
|
431
|
+
naics?: string;
|
|
432
|
+
achCompanyId?: string;
|
|
433
|
+
achCompanyName?: string;
|
|
434
|
+
externalId?: string;
|
|
435
|
+
productId?: number;
|
|
420
436
|
contactFirstName?: string;
|
|
421
437
|
contactLastName?: string;
|
|
422
438
|
contactEmail?: string;
|
|
423
439
|
contactPhone?: string;
|
|
424
440
|
}, {
|
|
441
|
+
email?: string;
|
|
425
442
|
address?: {
|
|
426
443
|
state?: string;
|
|
427
444
|
country?: string;
|
|
@@ -439,6 +456,13 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
439
456
|
idType?: string;
|
|
440
457
|
formationDate?: string;
|
|
441
458
|
incorporationState?: string;
|
|
459
|
+
mobilePhone?: string;
|
|
460
|
+
mcc?: string;
|
|
461
|
+
naics?: string;
|
|
462
|
+
achCompanyId?: string;
|
|
463
|
+
achCompanyName?: string;
|
|
464
|
+
externalId?: string;
|
|
465
|
+
productId?: number;
|
|
442
466
|
contactFirstName?: string;
|
|
443
467
|
contactLastName?: string;
|
|
444
468
|
contactEmail?: string;
|
|
@@ -491,15 +515,23 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
|
|
|
491
515
|
|
|
492
516
|
declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
|
|
493
517
|
|
|
518
|
+
interface IdentityVerification {
|
|
519
|
+
customerId: string;
|
|
520
|
+
isDeveloperInitiated: boolean;
|
|
521
|
+
provider: string;
|
|
522
|
+
result: string;
|
|
523
|
+
}
|
|
524
|
+
|
|
494
525
|
interface BusinessProfileCardProps {
|
|
495
526
|
data?: Partial<BusinessProfile>;
|
|
527
|
+
identityVerification?: IdentityVerification;
|
|
496
528
|
onDataChange?: (data: BusinessProfile) => void;
|
|
497
529
|
isEditing?: boolean;
|
|
498
530
|
onToggleEdit?: () => void;
|
|
499
531
|
className?: string;
|
|
500
532
|
hideActions?: boolean;
|
|
501
533
|
}
|
|
502
|
-
declare const BusinessProfileCard: ({ data, onDataChange, isEditing, onToggleEdit, className, hideActions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
534
|
+
declare const BusinessProfileCard: ({ data, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
503
535
|
|
|
504
536
|
interface BusinessStatusCardProps {
|
|
505
537
|
isEditing?: boolean;
|
|
@@ -563,7 +595,16 @@ declare const OriginatorFI: () => react_jsx_runtime.JSX.Element;
|
|
|
563
595
|
|
|
564
596
|
declare const OriginatorFIAddress: () => react_jsx_runtime.JSX.Element;
|
|
565
597
|
|
|
566
|
-
|
|
598
|
+
interface PaymentMethod {
|
|
599
|
+
id: string;
|
|
600
|
+
type: "ach" | "wire";
|
|
601
|
+
name: string;
|
|
602
|
+
collapsed: boolean;
|
|
603
|
+
}
|
|
604
|
+
interface PaymentInformationSectionProps {
|
|
605
|
+
onPaymentMethodsChange?: (methods: PaymentMethod[]) => void;
|
|
606
|
+
}
|
|
607
|
+
declare const PaymentInformationSection: ({ onPaymentMethodsChange }?: PaymentInformationSectionProps) => react_jsx_runtime.JSX.Element;
|
|
567
608
|
|
|
568
609
|
declare const receiverSchema: z.ZodObject<{
|
|
569
610
|
routingNumber: z.ZodString;
|
|
@@ -1399,14 +1440,20 @@ declare const CreateBusiness: () => react_jsx_runtime.JSX.Element;
|
|
|
1399
1440
|
|
|
1400
1441
|
declare const Cases: () => react_jsx_runtime.JSX.Element;
|
|
1401
1442
|
|
|
1402
|
-
declare const
|
|
1443
|
+
declare const Counterparties: () => react_jsx_runtime.JSX.Element;
|
|
1403
1444
|
|
|
1404
|
-
declare const
|
|
1445
|
+
declare const CounterpartyDetail: () => react_jsx_runtime.JSX.Element;
|
|
1405
1446
|
|
|
1406
|
-
declare const
|
|
1447
|
+
declare const CreateCounterparty: () => react_jsx_runtime.JSX.Element;
|
|
1407
1448
|
|
|
1408
1449
|
declare const Dashboard: () => react_jsx_runtime.JSX.Element;
|
|
1409
1450
|
|
|
1451
|
+
declare const Individuals: () => react_jsx_runtime.JSX.Element;
|
|
1452
|
+
|
|
1453
|
+
declare const IndividualDetail: () => react_jsx_runtime.JSX.Element;
|
|
1454
|
+
|
|
1455
|
+
declare const CreateIndividual: () => react_jsx_runtime.JSX.Element;
|
|
1456
|
+
|
|
1410
1457
|
declare const NotFound: () => react_jsx_runtime.JSX.Element;
|
|
1411
1458
|
|
|
1412
1459
|
declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
@@ -1419,4 +1466,4 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1419
1466
|
|
|
1420
1467
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1421
1468
|
|
|
1422
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, Business as BusinessDetail, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection,
|
|
1469
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, Business as BusinessDetail, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, CreateBusiness, CreateCounterparty, CreateIndividual, 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, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ResolveAlertDialog, ResponsiveGrid, ScrollArea, ScrollBar, 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, StatementHeader, 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, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|