braid-ui 1.0.48 → 1.0.49
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 +387 -401
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +86 -1
- package/dist/index.d.ts +86 -1
- package/dist/index.js +385 -403
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5,6 +5,7 @@ import React__default, { ReactNode } from 'react';
|
|
|
5
5
|
import { UseFormReturn, FieldValues, FieldPath, UseFormProps, Path } from 'react-hook-form';
|
|
6
6
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
7
7
|
import { VariantProps } from 'class-variance-authority';
|
|
8
|
+
import * as lucide_react from 'lucide-react';
|
|
8
9
|
import { DayPicker } from 'react-day-picker';
|
|
9
10
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
10
11
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
@@ -971,6 +972,65 @@ interface WireDetailsSectionProps {
|
|
|
971
972
|
}
|
|
972
973
|
declare const WireDetailsSection: ({ data }: WireDetailsSectionProps) => react_jsx_runtime.JSX.Element;
|
|
973
974
|
|
|
975
|
+
interface AccountData {
|
|
976
|
+
accountNumber: string;
|
|
977
|
+
accountName: string;
|
|
978
|
+
accountType: string;
|
|
979
|
+
balance: string;
|
|
980
|
+
customerName: string;
|
|
981
|
+
customerId: string;
|
|
982
|
+
customerType: string;
|
|
983
|
+
}
|
|
984
|
+
interface CounterpartyData {
|
|
985
|
+
counterpartyName: string;
|
|
986
|
+
counterpartyId: string;
|
|
987
|
+
counterpartyType: string;
|
|
988
|
+
status: string;
|
|
989
|
+
taxId: string;
|
|
990
|
+
primaryContact: string;
|
|
991
|
+
contactEmail: string;
|
|
992
|
+
contactPhone: string;
|
|
993
|
+
address: string;
|
|
994
|
+
}
|
|
995
|
+
interface NewTransactionFormValues {
|
|
996
|
+
transactionType: string;
|
|
997
|
+
accountNumber: string;
|
|
998
|
+
counterpartyName: string;
|
|
999
|
+
amount: string;
|
|
1000
|
+
currency: string;
|
|
1001
|
+
description?: string;
|
|
1002
|
+
certifyInformation: boolean;
|
|
1003
|
+
}
|
|
1004
|
+
declare const TRANSACTION_TYPES: {
|
|
1005
|
+
value: string;
|
|
1006
|
+
label: string;
|
|
1007
|
+
icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1008
|
+
}[];
|
|
1009
|
+
declare const CURRENCY_OPTIONS: {
|
|
1010
|
+
value: string;
|
|
1011
|
+
label: string;
|
|
1012
|
+
}[];
|
|
1013
|
+
interface NewTransactionViewProps {
|
|
1014
|
+
form: UseFormReturn<NewTransactionFormValues>;
|
|
1015
|
+
accountLookedUp: boolean;
|
|
1016
|
+
accountData: AccountData | null;
|
|
1017
|
+
counterpartyLookedUp: boolean;
|
|
1018
|
+
counterpartyData: CounterpartyData | null;
|
|
1019
|
+
confirmationOpen: boolean;
|
|
1020
|
+
submissionStatus: "success" | "error" | null;
|
|
1021
|
+
errorMessage: string;
|
|
1022
|
+
transactionId: string;
|
|
1023
|
+
onAccountLookup: () => void;
|
|
1024
|
+
onCounterpartyLookup: () => void;
|
|
1025
|
+
onEditAccount: () => void;
|
|
1026
|
+
onEditCounterparty: () => void;
|
|
1027
|
+
onSubmit: () => void;
|
|
1028
|
+
onCancel: () => void;
|
|
1029
|
+
onConfirmationClose: () => void;
|
|
1030
|
+
onConfirmationOpenChange: (open: boolean) => void;
|
|
1031
|
+
}
|
|
1032
|
+
declare const NewTransactionView: ({ form, accountLookedUp, accountData, counterpartyLookedUp, counterpartyData, confirmationOpen, submissionStatus, errorMessage, transactionId, onAccountLookup, onCounterpartyLookup, onEditAccount, onEditCounterparty, onSubmit, onCancel, onConfirmationClose, onConfirmationOpenChange, }: NewTransactionViewProps) => react_jsx_runtime.JSX.Element;
|
|
1033
|
+
|
|
974
1034
|
interface AccountCardProps {
|
|
975
1035
|
account: {
|
|
976
1036
|
id: string;
|
|
@@ -1699,6 +1759,31 @@ declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
|
1699
1759
|
|
|
1700
1760
|
declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
|
|
1701
1761
|
|
|
1762
|
+
declare const newTransactionSchema: z.ZodObject<{
|
|
1763
|
+
transactionType: z.ZodString;
|
|
1764
|
+
accountNumber: z.ZodString;
|
|
1765
|
+
counterpartyName: z.ZodString;
|
|
1766
|
+
amount: z.ZodString;
|
|
1767
|
+
currency: z.ZodString;
|
|
1768
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1769
|
+
certifyInformation: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
|
|
1770
|
+
}, "strip", z.ZodTypeAny, {
|
|
1771
|
+
description?: string;
|
|
1772
|
+
counterpartyName?: string;
|
|
1773
|
+
accountNumber?: string;
|
|
1774
|
+
transactionType?: string;
|
|
1775
|
+
amount?: string;
|
|
1776
|
+
currency?: string;
|
|
1777
|
+
certifyInformation?: boolean;
|
|
1778
|
+
}, {
|
|
1779
|
+
description?: string;
|
|
1780
|
+
counterpartyName?: string;
|
|
1781
|
+
accountNumber?: string;
|
|
1782
|
+
transactionType?: string;
|
|
1783
|
+
amount?: string;
|
|
1784
|
+
currency?: string;
|
|
1785
|
+
certifyInformation?: boolean;
|
|
1786
|
+
}>;
|
|
1702
1787
|
declare function NewTransaction(): react_jsx_runtime.JSX.Element;
|
|
1703
1788
|
|
|
1704
1789
|
declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
@@ -1724,4 +1809,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
1724
1809
|
*/
|
|
1725
1810
|
declare function downloadCSV(content: string, filename: string): void;
|
|
1726
1811
|
|
|
1727
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AccountDetail, Accounts, AddressForm, 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, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, 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, ReconExceptions, ReconUpload, 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, 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, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
1812
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, type AccountData, AccountDetail, Accounts, AddressForm, 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, CURRENCY_OPTIONS, 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, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, 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, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, TRANSACTION_TYPES, 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, 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
|
@@ -5,6 +5,7 @@ import React__default, { ReactNode } from 'react';
|
|
|
5
5
|
import { UseFormReturn, FieldValues, FieldPath, UseFormProps, Path } from 'react-hook-form';
|
|
6
6
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
7
7
|
import { VariantProps } from 'class-variance-authority';
|
|
8
|
+
import * as lucide_react from 'lucide-react';
|
|
8
9
|
import { DayPicker } from 'react-day-picker';
|
|
9
10
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
10
11
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
@@ -971,6 +972,65 @@ interface WireDetailsSectionProps {
|
|
|
971
972
|
}
|
|
972
973
|
declare const WireDetailsSection: ({ data }: WireDetailsSectionProps) => react_jsx_runtime.JSX.Element;
|
|
973
974
|
|
|
975
|
+
interface AccountData {
|
|
976
|
+
accountNumber: string;
|
|
977
|
+
accountName: string;
|
|
978
|
+
accountType: string;
|
|
979
|
+
balance: string;
|
|
980
|
+
customerName: string;
|
|
981
|
+
customerId: string;
|
|
982
|
+
customerType: string;
|
|
983
|
+
}
|
|
984
|
+
interface CounterpartyData {
|
|
985
|
+
counterpartyName: string;
|
|
986
|
+
counterpartyId: string;
|
|
987
|
+
counterpartyType: string;
|
|
988
|
+
status: string;
|
|
989
|
+
taxId: string;
|
|
990
|
+
primaryContact: string;
|
|
991
|
+
contactEmail: string;
|
|
992
|
+
contactPhone: string;
|
|
993
|
+
address: string;
|
|
994
|
+
}
|
|
995
|
+
interface NewTransactionFormValues {
|
|
996
|
+
transactionType: string;
|
|
997
|
+
accountNumber: string;
|
|
998
|
+
counterpartyName: string;
|
|
999
|
+
amount: string;
|
|
1000
|
+
currency: string;
|
|
1001
|
+
description?: string;
|
|
1002
|
+
certifyInformation: boolean;
|
|
1003
|
+
}
|
|
1004
|
+
declare const TRANSACTION_TYPES: {
|
|
1005
|
+
value: string;
|
|
1006
|
+
label: string;
|
|
1007
|
+
icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
1008
|
+
}[];
|
|
1009
|
+
declare const CURRENCY_OPTIONS: {
|
|
1010
|
+
value: string;
|
|
1011
|
+
label: string;
|
|
1012
|
+
}[];
|
|
1013
|
+
interface NewTransactionViewProps {
|
|
1014
|
+
form: UseFormReturn<NewTransactionFormValues>;
|
|
1015
|
+
accountLookedUp: boolean;
|
|
1016
|
+
accountData: AccountData | null;
|
|
1017
|
+
counterpartyLookedUp: boolean;
|
|
1018
|
+
counterpartyData: CounterpartyData | null;
|
|
1019
|
+
confirmationOpen: boolean;
|
|
1020
|
+
submissionStatus: "success" | "error" | null;
|
|
1021
|
+
errorMessage: string;
|
|
1022
|
+
transactionId: string;
|
|
1023
|
+
onAccountLookup: () => void;
|
|
1024
|
+
onCounterpartyLookup: () => void;
|
|
1025
|
+
onEditAccount: () => void;
|
|
1026
|
+
onEditCounterparty: () => void;
|
|
1027
|
+
onSubmit: () => void;
|
|
1028
|
+
onCancel: () => void;
|
|
1029
|
+
onConfirmationClose: () => void;
|
|
1030
|
+
onConfirmationOpenChange: (open: boolean) => void;
|
|
1031
|
+
}
|
|
1032
|
+
declare const NewTransactionView: ({ form, accountLookedUp, accountData, counterpartyLookedUp, counterpartyData, confirmationOpen, submissionStatus, errorMessage, transactionId, onAccountLookup, onCounterpartyLookup, onEditAccount, onEditCounterparty, onSubmit, onCancel, onConfirmationClose, onConfirmationOpenChange, }: NewTransactionViewProps) => react_jsx_runtime.JSX.Element;
|
|
1033
|
+
|
|
974
1034
|
interface AccountCardProps {
|
|
975
1035
|
account: {
|
|
976
1036
|
id: string;
|
|
@@ -1699,6 +1759,31 @@ declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
|
1699
1759
|
|
|
1700
1760
|
declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
|
|
1701
1761
|
|
|
1762
|
+
declare const newTransactionSchema: z.ZodObject<{
|
|
1763
|
+
transactionType: z.ZodString;
|
|
1764
|
+
accountNumber: z.ZodString;
|
|
1765
|
+
counterpartyName: z.ZodString;
|
|
1766
|
+
amount: z.ZodString;
|
|
1767
|
+
currency: z.ZodString;
|
|
1768
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1769
|
+
certifyInformation: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
|
|
1770
|
+
}, "strip", z.ZodTypeAny, {
|
|
1771
|
+
description?: string;
|
|
1772
|
+
counterpartyName?: string;
|
|
1773
|
+
accountNumber?: string;
|
|
1774
|
+
transactionType?: string;
|
|
1775
|
+
amount?: string;
|
|
1776
|
+
currency?: string;
|
|
1777
|
+
certifyInformation?: boolean;
|
|
1778
|
+
}, {
|
|
1779
|
+
description?: string;
|
|
1780
|
+
counterpartyName?: string;
|
|
1781
|
+
accountNumber?: string;
|
|
1782
|
+
transactionType?: string;
|
|
1783
|
+
amount?: string;
|
|
1784
|
+
currency?: string;
|
|
1785
|
+
certifyInformation?: boolean;
|
|
1786
|
+
}>;
|
|
1702
1787
|
declare function NewTransaction(): react_jsx_runtime.JSX.Element;
|
|
1703
1788
|
|
|
1704
1789
|
declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
@@ -1724,4 +1809,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
1724
1809
|
*/
|
|
1725
1810
|
declare function downloadCSV(content: string, filename: string): void;
|
|
1726
1811
|
|
|
1727
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AccountDetail, Accounts, AddressForm, 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, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, 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, ReconExceptions, ReconUpload, 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, 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, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
1812
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, type AccountData, AccountDetail, Accounts, AddressForm, 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, CURRENCY_OPTIONS, 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, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateIndividual, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconUpload, ResolveAlertDialog, ResponsiveGrid, 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, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, TRANSACTION_TYPES, 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, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|