braid-ui 1.0.2 → 1.0.4
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 +2128 -1149
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +82 -27
- package/dist/index.d.ts +82 -27
- package/dist/index.js +2125 -1151
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -57,6 +57,15 @@ interface Alert {
|
|
|
57
57
|
contextData?: any;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
interface AlertDetailViewProps {
|
|
61
|
+
alert: Alert;
|
|
62
|
+
rfiStatus: string;
|
|
63
|
+
assignee: string;
|
|
64
|
+
onRfiStatusChange: (status: string) => void;
|
|
65
|
+
onAssigneeChange: (assignee: string) => void;
|
|
66
|
+
}
|
|
67
|
+
declare const AlertDetailView: ({ alert, rfiStatus, assignee, onRfiStatusChange, onAssigneeChange }: AlertDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
68
|
+
|
|
60
69
|
interface AlertDocumentsProps {
|
|
61
70
|
alertId: string;
|
|
62
71
|
documents: AlertDocument[];
|
|
@@ -93,13 +102,13 @@ declare const achTransferSchema: z.ZodObject<{
|
|
|
93
102
|
type: z.ZodString;
|
|
94
103
|
description: z.ZodOptional<z.ZodString>;
|
|
95
104
|
}, "strip", z.ZodTypeAny, {
|
|
96
|
-
type?: string;
|
|
97
105
|
description?: string;
|
|
106
|
+
type?: string;
|
|
98
107
|
counterpartyName?: string;
|
|
99
108
|
shortName?: string;
|
|
100
109
|
}, {
|
|
101
|
-
type?: string;
|
|
102
110
|
description?: string;
|
|
111
|
+
type?: string;
|
|
103
112
|
counterpartyName?: string;
|
|
104
113
|
shortName?: string;
|
|
105
114
|
}>;
|
|
@@ -115,8 +124,8 @@ declare const achTransferSchema: z.ZodObject<{
|
|
|
115
124
|
}>;
|
|
116
125
|
}, "strip", z.ZodTypeAny, {
|
|
117
126
|
basicInfo?: {
|
|
118
|
-
type?: string;
|
|
119
127
|
description?: string;
|
|
128
|
+
type?: string;
|
|
120
129
|
counterpartyName?: string;
|
|
121
130
|
shortName?: string;
|
|
122
131
|
};
|
|
@@ -126,8 +135,8 @@ declare const achTransferSchema: z.ZodObject<{
|
|
|
126
135
|
};
|
|
127
136
|
}, {
|
|
128
137
|
basicInfo?: {
|
|
129
|
-
type?: string;
|
|
130
138
|
description?: string;
|
|
139
|
+
type?: string;
|
|
131
140
|
counterpartyName?: string;
|
|
132
141
|
shortName?: string;
|
|
133
142
|
};
|
|
@@ -167,7 +176,7 @@ interface ACHTransferSectionProps {
|
|
|
167
176
|
declare const ACHTransferSection: ({ isEditing, onToggleEdit, className, hideActions }: ACHTransferSectionProps) => react_jsx_runtime.JSX.Element;
|
|
168
177
|
|
|
169
178
|
declare const inputVariants: (props?: {
|
|
170
|
-
variant?: "default" | "disabled" | "
|
|
179
|
+
variant?: "default" | "disabled" | "success" | "error" | "readonly";
|
|
171
180
|
size?: "default" | "sm" | "lg";
|
|
172
181
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
173
182
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
@@ -205,15 +214,15 @@ declare const counterpartyBasicInfoSchema: z.ZodObject<{
|
|
|
205
214
|
status: z.ZodString;
|
|
206
215
|
description: z.ZodOptional<z.ZodString>;
|
|
207
216
|
}, "strip", z.ZodTypeAny, {
|
|
208
|
-
name?: string;
|
|
209
|
-
type?: string;
|
|
210
217
|
status?: string;
|
|
211
218
|
description?: string;
|
|
212
|
-
}, {
|
|
213
219
|
name?: string;
|
|
214
220
|
type?: string;
|
|
221
|
+
}, {
|
|
215
222
|
status?: string;
|
|
216
223
|
description?: string;
|
|
224
|
+
name?: string;
|
|
225
|
+
type?: string;
|
|
217
226
|
}>;
|
|
218
227
|
declare const addressSchema: z.ZodObject<{
|
|
219
228
|
streetAddress: z.ZodString;
|
|
@@ -309,9 +318,14 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
309
318
|
dbaName: z.ZodOptional<z.ZodString>;
|
|
310
319
|
businessType: z.ZodString;
|
|
311
320
|
taxId: z.ZodString;
|
|
312
|
-
|
|
313
|
-
|
|
321
|
+
formationDate: z.ZodOptional<z.ZodString>;
|
|
322
|
+
idType: z.ZodOptional<z.ZodString>;
|
|
323
|
+
incorporationState: z.ZodOptional<z.ZodString>;
|
|
314
324
|
website: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
325
|
+
contactFirstName: z.ZodOptional<z.ZodString>;
|
|
326
|
+
contactLastName: z.ZodOptional<z.ZodString>;
|
|
327
|
+
contactEmail: z.ZodOptional<z.ZodString>;
|
|
328
|
+
contactPhone: z.ZodOptional<z.ZodString>;
|
|
315
329
|
address: z.ZodObject<{
|
|
316
330
|
streetAddress: z.ZodString;
|
|
317
331
|
apartment: z.ZodOptional<z.ZodString>;
|
|
@@ -351,9 +365,14 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
351
365
|
dbaName?: string;
|
|
352
366
|
businessType?: string;
|
|
353
367
|
taxId?: string;
|
|
354
|
-
businessPhone?: string;
|
|
355
|
-
businessEmail?: string;
|
|
356
368
|
website?: string;
|
|
369
|
+
idType?: string;
|
|
370
|
+
formationDate?: string;
|
|
371
|
+
incorporationState?: string;
|
|
372
|
+
contactFirstName?: string;
|
|
373
|
+
contactLastName?: string;
|
|
374
|
+
contactEmail?: string;
|
|
375
|
+
contactPhone?: string;
|
|
357
376
|
}, {
|
|
358
377
|
address?: {
|
|
359
378
|
postalCode?: string;
|
|
@@ -368,9 +387,14 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
368
387
|
dbaName?: string;
|
|
369
388
|
businessType?: string;
|
|
370
389
|
taxId?: string;
|
|
371
|
-
businessPhone?: string;
|
|
372
|
-
businessEmail?: string;
|
|
373
390
|
website?: string;
|
|
391
|
+
idType?: string;
|
|
392
|
+
formationDate?: string;
|
|
393
|
+
incorporationState?: string;
|
|
394
|
+
contactFirstName?: string;
|
|
395
|
+
contactLastName?: string;
|
|
396
|
+
contactEmail?: string;
|
|
397
|
+
contactPhone?: string;
|
|
374
398
|
}>;
|
|
375
399
|
type BusinessProfile = z.infer<typeof businessProfileSchema>;
|
|
376
400
|
|
|
@@ -554,6 +578,22 @@ interface ListPageProps {
|
|
|
554
578
|
}
|
|
555
579
|
declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
556
580
|
|
|
581
|
+
interface StatementHeader$1 {
|
|
582
|
+
account: string;
|
|
583
|
+
productId: string;
|
|
584
|
+
programId: string;
|
|
585
|
+
startDate: string;
|
|
586
|
+
endDate: string;
|
|
587
|
+
startingBalance: string;
|
|
588
|
+
endingBalance: string;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
interface StatementHeaderProps {
|
|
592
|
+
data: StatementHeader$1;
|
|
593
|
+
onEdit: () => void;
|
|
594
|
+
}
|
|
595
|
+
declare const StatementHeader: ({ data, onEdit }: StatementHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
596
|
+
|
|
557
597
|
interface ACHDetails {
|
|
558
598
|
type: string;
|
|
559
599
|
originatorName: string;
|
|
@@ -631,7 +671,7 @@ interface BusinessTypeBadgeProps {
|
|
|
631
671
|
declare const BusinessTypeBadge: ({ type, className }: BusinessTypeBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
632
672
|
|
|
633
673
|
declare const buttonVariants: (props?: {
|
|
634
|
-
variant?: "default" | "
|
|
674
|
+
variant?: "default" | "ghost" | "link" | "destructive" | "outline" | "secondary";
|
|
635
675
|
size?: "default" | "sm" | "lg" | "icon";
|
|
636
676
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
637
677
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -646,8 +686,8 @@ declare namespace Calendar {
|
|
|
646
686
|
}
|
|
647
687
|
|
|
648
688
|
declare const cardVariants: (props?: {
|
|
649
|
-
variant?: "default" | "
|
|
650
|
-
size?: "sm" | "
|
|
689
|
+
variant?: "default" | "elevated" | "outlined" | "ghost" | "subtle";
|
|
690
|
+
size?: "sm" | "md" | "lg" | "none";
|
|
651
691
|
fullHeight?: boolean;
|
|
652
692
|
interactive?: boolean;
|
|
653
693
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
@@ -655,30 +695,30 @@ interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps
|
|
|
655
695
|
}
|
|
656
696
|
declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
657
697
|
declare const cardHeaderVariants: (props?: {
|
|
658
|
-
size?: "sm" | "
|
|
659
|
-
align?: "
|
|
698
|
+
size?: "sm" | "md" | "lg";
|
|
699
|
+
align?: "start" | "center" | "end";
|
|
660
700
|
direction?: "row" | "column";
|
|
661
701
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
662
702
|
interface CardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardHeaderVariants> {
|
|
663
703
|
}
|
|
664
704
|
declare const CardHeader: React$1.ForwardRefExoticComponent<CardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
665
705
|
declare const cardTitleVariants: (props?: {
|
|
666
|
-
size?: "sm" | "
|
|
706
|
+
size?: "sm" | "md" | "lg";
|
|
667
707
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
668
708
|
interface CardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof cardTitleVariants> {
|
|
669
709
|
}
|
|
670
710
|
declare const CardTitle: React$1.ForwardRefExoticComponent<CardTitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
671
711
|
declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
672
712
|
declare const cardContentVariants: (props?: {
|
|
673
|
-
size?: "sm" | "
|
|
713
|
+
size?: "sm" | "md" | "lg";
|
|
674
714
|
fullHeight?: boolean;
|
|
675
715
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
676
716
|
interface CardContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardContentVariants> {
|
|
677
717
|
}
|
|
678
718
|
declare const CardContent: React$1.ForwardRefExoticComponent<CardContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
679
719
|
declare const cardFooterVariants: (props?: {
|
|
680
|
-
size?: "sm" | "
|
|
681
|
-
justify?: "
|
|
720
|
+
size?: "sm" | "md" | "lg";
|
|
721
|
+
justify?: "start" | "center" | "end" | "between";
|
|
682
722
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
683
723
|
interface CardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardFooterVariants> {
|
|
684
724
|
}
|
|
@@ -731,11 +771,12 @@ interface DataTableProps<T = any> {
|
|
|
731
771
|
sortBy?: string;
|
|
732
772
|
sortDirection?: "asc" | "desc";
|
|
733
773
|
onSort?: (key: string) => void;
|
|
774
|
+
onRowClick?: (row: T) => void;
|
|
734
775
|
loading?: boolean;
|
|
735
776
|
emptyMessage?: string;
|
|
736
777
|
className?: string;
|
|
737
778
|
}
|
|
738
|
-
declare function DataTable<T extends Record<string, any>>({ columns, data, sortBy, sortDirection, onSort, loading, emptyMessage, className }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
|
|
779
|
+
declare function DataTable<T extends Record<string, any>>({ columns, data, sortBy, sortDirection, onSort, onRowClick, loading, emptyMessage, className }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
|
|
739
780
|
|
|
740
781
|
interface DetailPageCard {
|
|
741
782
|
key: string;
|
|
@@ -830,7 +871,7 @@ interface EditableInfoFieldProps {
|
|
|
830
871
|
declare const EditableInfoField: ({ label, value, options, onChange, placeholder, renderValue, className }: EditableInfoFieldProps) => react_jsx_runtime.JSX.Element;
|
|
831
872
|
|
|
832
873
|
declare const selectVariants: (props?: {
|
|
833
|
-
variant?: "default" | "disabled" | "
|
|
874
|
+
variant?: "default" | "disabled" | "success" | "error";
|
|
834
875
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
835
876
|
interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
836
877
|
label?: string;
|
|
@@ -850,7 +891,7 @@ interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
|
850
891
|
declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
851
892
|
|
|
852
893
|
declare const textareaVariants: (props?: {
|
|
853
|
-
variant?: "default" | "disabled" | "
|
|
894
|
+
variant?: "default" | "disabled" | "success" | "error" | "readonly";
|
|
854
895
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
855
896
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
|
|
856
897
|
label?: string;
|
|
@@ -1185,6 +1226,16 @@ declare function useToast(): {
|
|
|
1185
1226
|
toasts: ToasterToast[];
|
|
1186
1227
|
};
|
|
1187
1228
|
|
|
1229
|
+
interface UseAlertDetailReturn {
|
|
1230
|
+
alert: Alert | undefined;
|
|
1231
|
+
isLoading: boolean;
|
|
1232
|
+
rfiStatus: string;
|
|
1233
|
+
assignee: string;
|
|
1234
|
+
handleRfiStatusChange: (status: string) => void;
|
|
1235
|
+
handleAssigneeChange: (assignee: string) => void;
|
|
1236
|
+
}
|
|
1237
|
+
declare const useAlertDetail: (id: string | undefined) => UseAlertDetailReturn;
|
|
1238
|
+
|
|
1188
1239
|
interface UseEditStateProps {
|
|
1189
1240
|
initialEditing?: boolean;
|
|
1190
1241
|
onToggleEdit?: () => void;
|
|
@@ -1222,6 +1273,8 @@ declare const AlertDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1222
1273
|
|
|
1223
1274
|
declare const Alerts: () => react_jsx_runtime.JSX.Element;
|
|
1224
1275
|
|
|
1276
|
+
declare const Businesses: () => react_jsx_runtime.JSX.Element;
|
|
1277
|
+
|
|
1225
1278
|
declare const Business: () => react_jsx_runtime.JSX.Element;
|
|
1226
1279
|
|
|
1227
1280
|
declare const CreateBusiness: () => react_jsx_runtime.JSX.Element;
|
|
@@ -1238,6 +1291,8 @@ declare const Dashboard: () => react_jsx_runtime.JSX.Element;
|
|
|
1238
1291
|
|
|
1239
1292
|
declare const NotFound: () => react_jsx_runtime.JSX.Element;
|
|
1240
1293
|
|
|
1294
|
+
declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
1295
|
+
|
|
1241
1296
|
declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
|
|
1242
1297
|
|
|
1243
1298
|
declare function NewTransaction(): react_jsx_runtime.JSX.Element;
|
|
@@ -1246,4 +1301,4 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1246
1301
|
|
|
1247
1302
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1248
1303
|
|
|
1249
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDocuments, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, Business, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, ContactInfoCard, Container, ContextSection, CounterpartyBasicInfo, CounterpartyDomesticWire, CounterpartyManage, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, CreateBusiness, CreateCounterparty, 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, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ResponsiveGrid, 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, StatusBadge, 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, UIKit, UIKitShowcase, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, inputVariants, reducer, textareaVariants, toast, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
1304
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDetailView, type AlertDetailViewProps, AlertDocuments, 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, ContactInfoCard, Container, ContextSection, CounterpartyBasicInfo, CounterpartyDomesticWire, CounterpartyManage, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, CreateBusiness, CreateCounterparty, 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, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ResponsiveGrid, 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, StatusBadge, 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, 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
|
@@ -57,6 +57,15 @@ interface Alert {
|
|
|
57
57
|
contextData?: any;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
interface AlertDetailViewProps {
|
|
61
|
+
alert: Alert;
|
|
62
|
+
rfiStatus: string;
|
|
63
|
+
assignee: string;
|
|
64
|
+
onRfiStatusChange: (status: string) => void;
|
|
65
|
+
onAssigneeChange: (assignee: string) => void;
|
|
66
|
+
}
|
|
67
|
+
declare const AlertDetailView: ({ alert, rfiStatus, assignee, onRfiStatusChange, onAssigneeChange }: AlertDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
68
|
+
|
|
60
69
|
interface AlertDocumentsProps {
|
|
61
70
|
alertId: string;
|
|
62
71
|
documents: AlertDocument[];
|
|
@@ -93,13 +102,13 @@ declare const achTransferSchema: z.ZodObject<{
|
|
|
93
102
|
type: z.ZodString;
|
|
94
103
|
description: z.ZodOptional<z.ZodString>;
|
|
95
104
|
}, "strip", z.ZodTypeAny, {
|
|
96
|
-
type?: string;
|
|
97
105
|
description?: string;
|
|
106
|
+
type?: string;
|
|
98
107
|
counterpartyName?: string;
|
|
99
108
|
shortName?: string;
|
|
100
109
|
}, {
|
|
101
|
-
type?: string;
|
|
102
110
|
description?: string;
|
|
111
|
+
type?: string;
|
|
103
112
|
counterpartyName?: string;
|
|
104
113
|
shortName?: string;
|
|
105
114
|
}>;
|
|
@@ -115,8 +124,8 @@ declare const achTransferSchema: z.ZodObject<{
|
|
|
115
124
|
}>;
|
|
116
125
|
}, "strip", z.ZodTypeAny, {
|
|
117
126
|
basicInfo?: {
|
|
118
|
-
type?: string;
|
|
119
127
|
description?: string;
|
|
128
|
+
type?: string;
|
|
120
129
|
counterpartyName?: string;
|
|
121
130
|
shortName?: string;
|
|
122
131
|
};
|
|
@@ -126,8 +135,8 @@ declare const achTransferSchema: z.ZodObject<{
|
|
|
126
135
|
};
|
|
127
136
|
}, {
|
|
128
137
|
basicInfo?: {
|
|
129
|
-
type?: string;
|
|
130
138
|
description?: string;
|
|
139
|
+
type?: string;
|
|
131
140
|
counterpartyName?: string;
|
|
132
141
|
shortName?: string;
|
|
133
142
|
};
|
|
@@ -167,7 +176,7 @@ interface ACHTransferSectionProps {
|
|
|
167
176
|
declare const ACHTransferSection: ({ isEditing, onToggleEdit, className, hideActions }: ACHTransferSectionProps) => react_jsx_runtime.JSX.Element;
|
|
168
177
|
|
|
169
178
|
declare const inputVariants: (props?: {
|
|
170
|
-
variant?: "default" | "disabled" | "
|
|
179
|
+
variant?: "default" | "disabled" | "success" | "error" | "readonly";
|
|
171
180
|
size?: "default" | "sm" | "lg";
|
|
172
181
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
173
182
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
@@ -205,15 +214,15 @@ declare const counterpartyBasicInfoSchema: z.ZodObject<{
|
|
|
205
214
|
status: z.ZodString;
|
|
206
215
|
description: z.ZodOptional<z.ZodString>;
|
|
207
216
|
}, "strip", z.ZodTypeAny, {
|
|
208
|
-
name?: string;
|
|
209
|
-
type?: string;
|
|
210
217
|
status?: string;
|
|
211
218
|
description?: string;
|
|
212
|
-
}, {
|
|
213
219
|
name?: string;
|
|
214
220
|
type?: string;
|
|
221
|
+
}, {
|
|
215
222
|
status?: string;
|
|
216
223
|
description?: string;
|
|
224
|
+
name?: string;
|
|
225
|
+
type?: string;
|
|
217
226
|
}>;
|
|
218
227
|
declare const addressSchema: z.ZodObject<{
|
|
219
228
|
streetAddress: z.ZodString;
|
|
@@ -309,9 +318,14 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
309
318
|
dbaName: z.ZodOptional<z.ZodString>;
|
|
310
319
|
businessType: z.ZodString;
|
|
311
320
|
taxId: z.ZodString;
|
|
312
|
-
|
|
313
|
-
|
|
321
|
+
formationDate: z.ZodOptional<z.ZodString>;
|
|
322
|
+
idType: z.ZodOptional<z.ZodString>;
|
|
323
|
+
incorporationState: z.ZodOptional<z.ZodString>;
|
|
314
324
|
website: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
325
|
+
contactFirstName: z.ZodOptional<z.ZodString>;
|
|
326
|
+
contactLastName: z.ZodOptional<z.ZodString>;
|
|
327
|
+
contactEmail: z.ZodOptional<z.ZodString>;
|
|
328
|
+
contactPhone: z.ZodOptional<z.ZodString>;
|
|
315
329
|
address: z.ZodObject<{
|
|
316
330
|
streetAddress: z.ZodString;
|
|
317
331
|
apartment: z.ZodOptional<z.ZodString>;
|
|
@@ -351,9 +365,14 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
351
365
|
dbaName?: string;
|
|
352
366
|
businessType?: string;
|
|
353
367
|
taxId?: string;
|
|
354
|
-
businessPhone?: string;
|
|
355
|
-
businessEmail?: string;
|
|
356
368
|
website?: string;
|
|
369
|
+
idType?: string;
|
|
370
|
+
formationDate?: string;
|
|
371
|
+
incorporationState?: string;
|
|
372
|
+
contactFirstName?: string;
|
|
373
|
+
contactLastName?: string;
|
|
374
|
+
contactEmail?: string;
|
|
375
|
+
contactPhone?: string;
|
|
357
376
|
}, {
|
|
358
377
|
address?: {
|
|
359
378
|
postalCode?: string;
|
|
@@ -368,9 +387,14 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
368
387
|
dbaName?: string;
|
|
369
388
|
businessType?: string;
|
|
370
389
|
taxId?: string;
|
|
371
|
-
businessPhone?: string;
|
|
372
|
-
businessEmail?: string;
|
|
373
390
|
website?: string;
|
|
391
|
+
idType?: string;
|
|
392
|
+
formationDate?: string;
|
|
393
|
+
incorporationState?: string;
|
|
394
|
+
contactFirstName?: string;
|
|
395
|
+
contactLastName?: string;
|
|
396
|
+
contactEmail?: string;
|
|
397
|
+
contactPhone?: string;
|
|
374
398
|
}>;
|
|
375
399
|
type BusinessProfile = z.infer<typeof businessProfileSchema>;
|
|
376
400
|
|
|
@@ -554,6 +578,22 @@ interface ListPageProps {
|
|
|
554
578
|
}
|
|
555
579
|
declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
556
580
|
|
|
581
|
+
interface StatementHeader$1 {
|
|
582
|
+
account: string;
|
|
583
|
+
productId: string;
|
|
584
|
+
programId: string;
|
|
585
|
+
startDate: string;
|
|
586
|
+
endDate: string;
|
|
587
|
+
startingBalance: string;
|
|
588
|
+
endingBalance: string;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
interface StatementHeaderProps {
|
|
592
|
+
data: StatementHeader$1;
|
|
593
|
+
onEdit: () => void;
|
|
594
|
+
}
|
|
595
|
+
declare const StatementHeader: ({ data, onEdit }: StatementHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
596
|
+
|
|
557
597
|
interface ACHDetails {
|
|
558
598
|
type: string;
|
|
559
599
|
originatorName: string;
|
|
@@ -631,7 +671,7 @@ interface BusinessTypeBadgeProps {
|
|
|
631
671
|
declare const BusinessTypeBadge: ({ type, className }: BusinessTypeBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
632
672
|
|
|
633
673
|
declare const buttonVariants: (props?: {
|
|
634
|
-
variant?: "default" | "
|
|
674
|
+
variant?: "default" | "ghost" | "link" | "destructive" | "outline" | "secondary";
|
|
635
675
|
size?: "default" | "sm" | "lg" | "icon";
|
|
636
676
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
637
677
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -646,8 +686,8 @@ declare namespace Calendar {
|
|
|
646
686
|
}
|
|
647
687
|
|
|
648
688
|
declare const cardVariants: (props?: {
|
|
649
|
-
variant?: "default" | "
|
|
650
|
-
size?: "sm" | "
|
|
689
|
+
variant?: "default" | "elevated" | "outlined" | "ghost" | "subtle";
|
|
690
|
+
size?: "sm" | "md" | "lg" | "none";
|
|
651
691
|
fullHeight?: boolean;
|
|
652
692
|
interactive?: boolean;
|
|
653
693
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
@@ -655,30 +695,30 @@ interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps
|
|
|
655
695
|
}
|
|
656
696
|
declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
657
697
|
declare const cardHeaderVariants: (props?: {
|
|
658
|
-
size?: "sm" | "
|
|
659
|
-
align?: "
|
|
698
|
+
size?: "sm" | "md" | "lg";
|
|
699
|
+
align?: "start" | "center" | "end";
|
|
660
700
|
direction?: "row" | "column";
|
|
661
701
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
662
702
|
interface CardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardHeaderVariants> {
|
|
663
703
|
}
|
|
664
704
|
declare const CardHeader: React$1.ForwardRefExoticComponent<CardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
665
705
|
declare const cardTitleVariants: (props?: {
|
|
666
|
-
size?: "sm" | "
|
|
706
|
+
size?: "sm" | "md" | "lg";
|
|
667
707
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
668
708
|
interface CardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof cardTitleVariants> {
|
|
669
709
|
}
|
|
670
710
|
declare const CardTitle: React$1.ForwardRefExoticComponent<CardTitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
671
711
|
declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
672
712
|
declare const cardContentVariants: (props?: {
|
|
673
|
-
size?: "sm" | "
|
|
713
|
+
size?: "sm" | "md" | "lg";
|
|
674
714
|
fullHeight?: boolean;
|
|
675
715
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
676
716
|
interface CardContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardContentVariants> {
|
|
677
717
|
}
|
|
678
718
|
declare const CardContent: React$1.ForwardRefExoticComponent<CardContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
679
719
|
declare const cardFooterVariants: (props?: {
|
|
680
|
-
size?: "sm" | "
|
|
681
|
-
justify?: "
|
|
720
|
+
size?: "sm" | "md" | "lg";
|
|
721
|
+
justify?: "start" | "center" | "end" | "between";
|
|
682
722
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
683
723
|
interface CardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardFooterVariants> {
|
|
684
724
|
}
|
|
@@ -731,11 +771,12 @@ interface DataTableProps<T = any> {
|
|
|
731
771
|
sortBy?: string;
|
|
732
772
|
sortDirection?: "asc" | "desc";
|
|
733
773
|
onSort?: (key: string) => void;
|
|
774
|
+
onRowClick?: (row: T) => void;
|
|
734
775
|
loading?: boolean;
|
|
735
776
|
emptyMessage?: string;
|
|
736
777
|
className?: string;
|
|
737
778
|
}
|
|
738
|
-
declare function DataTable<T extends Record<string, any>>({ columns, data, sortBy, sortDirection, onSort, loading, emptyMessage, className }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
|
|
779
|
+
declare function DataTable<T extends Record<string, any>>({ columns, data, sortBy, sortDirection, onSort, onRowClick, loading, emptyMessage, className }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
|
|
739
780
|
|
|
740
781
|
interface DetailPageCard {
|
|
741
782
|
key: string;
|
|
@@ -830,7 +871,7 @@ interface EditableInfoFieldProps {
|
|
|
830
871
|
declare const EditableInfoField: ({ label, value, options, onChange, placeholder, renderValue, className }: EditableInfoFieldProps) => react_jsx_runtime.JSX.Element;
|
|
831
872
|
|
|
832
873
|
declare const selectVariants: (props?: {
|
|
833
|
-
variant?: "default" | "disabled" | "
|
|
874
|
+
variant?: "default" | "disabled" | "success" | "error";
|
|
834
875
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
835
876
|
interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
836
877
|
label?: string;
|
|
@@ -850,7 +891,7 @@ interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
|
850
891
|
declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
851
892
|
|
|
852
893
|
declare const textareaVariants: (props?: {
|
|
853
|
-
variant?: "default" | "disabled" | "
|
|
894
|
+
variant?: "default" | "disabled" | "success" | "error" | "readonly";
|
|
854
895
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
855
896
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
|
|
856
897
|
label?: string;
|
|
@@ -1185,6 +1226,16 @@ declare function useToast(): {
|
|
|
1185
1226
|
toasts: ToasterToast[];
|
|
1186
1227
|
};
|
|
1187
1228
|
|
|
1229
|
+
interface UseAlertDetailReturn {
|
|
1230
|
+
alert: Alert | undefined;
|
|
1231
|
+
isLoading: boolean;
|
|
1232
|
+
rfiStatus: string;
|
|
1233
|
+
assignee: string;
|
|
1234
|
+
handleRfiStatusChange: (status: string) => void;
|
|
1235
|
+
handleAssigneeChange: (assignee: string) => void;
|
|
1236
|
+
}
|
|
1237
|
+
declare const useAlertDetail: (id: string | undefined) => UseAlertDetailReturn;
|
|
1238
|
+
|
|
1188
1239
|
interface UseEditStateProps {
|
|
1189
1240
|
initialEditing?: boolean;
|
|
1190
1241
|
onToggleEdit?: () => void;
|
|
@@ -1222,6 +1273,8 @@ declare const AlertDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1222
1273
|
|
|
1223
1274
|
declare const Alerts: () => react_jsx_runtime.JSX.Element;
|
|
1224
1275
|
|
|
1276
|
+
declare const Businesses: () => react_jsx_runtime.JSX.Element;
|
|
1277
|
+
|
|
1225
1278
|
declare const Business: () => react_jsx_runtime.JSX.Element;
|
|
1226
1279
|
|
|
1227
1280
|
declare const CreateBusiness: () => react_jsx_runtime.JSX.Element;
|
|
@@ -1238,6 +1291,8 @@ declare const Dashboard: () => react_jsx_runtime.JSX.Element;
|
|
|
1238
1291
|
|
|
1239
1292
|
declare const NotFound: () => react_jsx_runtime.JSX.Element;
|
|
1240
1293
|
|
|
1294
|
+
declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
1295
|
+
|
|
1241
1296
|
declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
|
|
1242
1297
|
|
|
1243
1298
|
declare function NewTransaction(): react_jsx_runtime.JSX.Element;
|
|
@@ -1246,4 +1301,4 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1246
1301
|
|
|
1247
1302
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1248
1303
|
|
|
1249
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDocuments, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, Business, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, ContactInfoCard, Container, ContextSection, CounterpartyBasicInfo, CounterpartyDomesticWire, CounterpartyManage, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, CreateBusiness, CreateCounterparty, 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, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ResponsiveGrid, 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, StatusBadge, 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, UIKit, UIKitShowcase, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, inputVariants, reducer, textareaVariants, toast, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
|
1304
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDetailView, type AlertDetailViewProps, AlertDocuments, 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, ContactInfoCard, Container, ContextSection, CounterpartyBasicInfo, CounterpartyDomesticWire, CounterpartyManage, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, CreateBusiness, CreateCounterparty, 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, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ResponsiveGrid, 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, StatusBadge, 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, UIKit, UIKitShowcase, type UseAlertDetailReturn, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|