braid-ui 1.0.5 → 1.0.7

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
@@ -1,15 +1,17 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { z } from 'zod';
2
3
  import * as React$1 from 'react';
3
4
  import React__default, { ReactNode } from 'react';
4
- import { z } from 'zod';
5
5
  import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
6
6
  import { VariantProps } from 'class-variance-authority';
7
7
  import { DayPicker } from 'react-day-picker';
8
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
8
9
  import * as DialogPrimitive from '@radix-ui/react-dialog';
9
10
  import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
10
11
  import { FieldValues, FieldPath, UseFormReturn, UseFormProps, Path } from 'react-hook-form';
11
12
  import * as LabelPrimitive from '@radix-ui/react-label';
12
13
  import * as PopoverPrimitive from '@radix-ui/react-popover';
14
+ import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
13
15
  import * as SeparatorPrimitive from '@radix-ui/react-separator';
14
16
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
15
17
  import { Toaster as Toaster$1 } from 'sonner';
@@ -57,14 +59,10 @@ interface Alert {
57
59
  contextData?: any;
58
60
  }
59
61
 
60
- interface AlertDetailViewProps {
62
+ interface AlertDetailRouterProps {
61
63
  alert: Alert;
62
- rfiStatus: string;
63
- assignee: string;
64
- onRfiStatusChange: (status: string) => void;
65
- onAssigneeChange: (assignee: string) => void;
66
64
  }
67
- declare const AlertDetailView: ({ alert, rfiStatus, assignee, onRfiStatusChange, onAssigneeChange }: AlertDetailViewProps) => react_jsx_runtime.JSX.Element;
65
+ declare const AlertDetailRouter: ({ alert }: AlertDetailRouterProps) => react_jsx_runtime.JSX.Element;
68
66
 
69
67
  interface AlertDocumentsProps {
70
68
  alertId: string;
@@ -72,6 +70,15 @@ interface AlertDocumentsProps {
72
70
  }
73
71
  declare const AlertDocuments: ({ alertId, documents }: AlertDocumentsProps) => react_jsx_runtime.JSX.Element;
74
72
 
73
+ interface AlertHeaderControlsProps {
74
+ status: string;
75
+ assignee: string;
76
+ rfiStatus: string;
77
+ onAssigneeChange: (value: string) => void;
78
+ onRfiStatusChange: (value: string) => void;
79
+ }
80
+ declare const AlertHeaderControls: ({ status, assignee, rfiStatus, onAssigneeChange, onRfiStatusChange }: AlertHeaderControlsProps) => react_jsx_runtime.JSX.Element;
81
+
75
82
  interface AlertNotesProps {
76
83
  alertId: string;
77
84
  notes: AlertNote[];
@@ -88,6 +95,47 @@ interface ContextSectionProps {
88
95
  }
89
96
  declare const ContextSection: ({ alert }: ContextSectionProps) => react_jsx_runtime.JSX.Element;
90
97
 
98
+ interface OFACAlertViewProps {
99
+ alert: Alert;
100
+ }
101
+ declare const OFACAlertView: ({ alert }: OFACAlertViewProps) => react_jsx_runtime.JSX.Element;
102
+
103
+ declare const resolveAlertSchema: z.ZodEffects<z.ZodObject<{
104
+ action: z.ZodEnum<["APPROVE", "DECLINE", "CLOSE"]>;
105
+ changeToAccount: z.ZodOptional<z.ZodString>;
106
+ note: z.ZodString;
107
+ returnCode: z.ZodOptional<z.ZodString>;
108
+ }, "strip", z.ZodTypeAny, {
109
+ note?: string;
110
+ action?: "APPROVE" | "DECLINE" | "CLOSE";
111
+ changeToAccount?: string;
112
+ returnCode?: string;
113
+ }, {
114
+ note?: string;
115
+ action?: "APPROVE" | "DECLINE" | "CLOSE";
116
+ changeToAccount?: string;
117
+ returnCode?: string;
118
+ }>, {
119
+ note?: string;
120
+ action?: "APPROVE" | "DECLINE" | "CLOSE";
121
+ changeToAccount?: string;
122
+ returnCode?: string;
123
+ }, {
124
+ note?: string;
125
+ action?: "APPROVE" | "DECLINE" | "CLOSE";
126
+ changeToAccount?: string;
127
+ returnCode?: string;
128
+ }>;
129
+ type ResolveAlertFormData = z.infer<typeof resolveAlertSchema>;
130
+
131
+ interface ResolveAlertDialogProps {
132
+ alertId: string;
133
+ open: boolean;
134
+ onOpenChange: (open: boolean) => void;
135
+ onResolve: (data: ResolveAlertFormData) => Promise<void>;
136
+ }
137
+ declare const ResolveAlertDialog: ({ alertId, open, onOpenChange, onResolve }: ResolveAlertDialogProps) => react_jsx_runtime.JSX.Element;
138
+
91
139
  declare function AppSidebar(): react_jsx_runtime.JSX.Element;
92
140
 
93
141
  interface MainLayoutProps {
@@ -176,7 +224,7 @@ interface ACHTransferSectionProps {
176
224
  declare const ACHTransferSection: ({ isEditing, onToggleEdit, className, hideActions }: ACHTransferSectionProps) => react_jsx_runtime.JSX.Element;
177
225
 
178
226
  declare const inputVariants: (props?: {
179
- variant?: "default" | "disabled" | "success" | "error" | "readonly";
227
+ variant?: "default" | "success" | "disabled" | "error" | "readonly";
180
228
  size?: "default" | "sm" | "lg";
181
229
  } & class_variance_authority_dist_types.ClassProp) => string;
182
230
  interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
@@ -233,20 +281,20 @@ declare const addressSchema: z.ZodObject<{
233
281
  country: z.ZodString;
234
282
  addressType: z.ZodOptional<z.ZodString>;
235
283
  }, "strip", z.ZodTypeAny, {
236
- postalCode?: string;
237
284
  state?: string;
238
285
  country?: string;
239
286
  streetAddress?: string;
240
287
  apartment?: string;
241
288
  city?: string;
289
+ postalCode?: string;
242
290
  addressType?: string;
243
291
  }, {
244
- postalCode?: string;
245
292
  state?: string;
246
293
  country?: string;
247
294
  streetAddress?: string;
248
295
  apartment?: string;
249
296
  city?: string;
297
+ postalCode?: string;
250
298
  addressType?: string;
251
299
  }>;
252
300
  type CounterpartyBasicInfo$1 = z.infer<typeof counterpartyBasicInfoSchema>;
@@ -266,31 +314,31 @@ declare const intermediaryFISchema: z.ZodObject<{
266
314
  country: z.ZodString;
267
315
  addressType: z.ZodOptional<z.ZodString>;
268
316
  }, "strip", z.ZodTypeAny, {
269
- postalCode?: string;
270
317
  state?: string;
271
318
  country?: string;
272
319
  streetAddress?: string;
273
320
  apartment?: string;
274
321
  city?: string;
322
+ postalCode?: string;
275
323
  addressType?: string;
276
324
  }, {
277
- postalCode?: string;
278
325
  state?: string;
279
326
  country?: string;
280
327
  streetAddress?: string;
281
328
  apartment?: string;
282
329
  city?: string;
330
+ postalCode?: string;
283
331
  addressType?: string;
284
332
  }>>;
285
333
  }, "strip", z.ZodTypeAny, {
286
334
  name?: string;
287
335
  address?: {
288
- postalCode?: string;
289
336
  state?: string;
290
337
  country?: string;
291
338
  streetAddress?: string;
292
339
  apartment?: string;
293
340
  city?: string;
341
+ postalCode?: string;
294
342
  addressType?: string;
295
343
  };
296
344
  accountNumber?: string;
@@ -299,12 +347,12 @@ declare const intermediaryFISchema: z.ZodObject<{
299
347
  }, {
300
348
  name?: string;
301
349
  address?: {
302
- postalCode?: string;
303
350
  state?: string;
304
351
  country?: string;
305
352
  streetAddress?: string;
306
353
  apartment?: string;
307
354
  city?: string;
355
+ postalCode?: string;
308
356
  addressType?: string;
309
357
  };
310
358
  accountNumber?: string;
@@ -335,30 +383,30 @@ declare const businessProfileSchema: z.ZodObject<{
335
383
  country: z.ZodString;
336
384
  addressType: z.ZodOptional<z.ZodString>;
337
385
  }, "strip", z.ZodTypeAny, {
338
- postalCode?: string;
339
386
  state?: string;
340
387
  country?: string;
341
388
  streetAddress?: string;
342
389
  apartment?: string;
343
390
  city?: string;
391
+ postalCode?: string;
344
392
  addressType?: string;
345
393
  }, {
346
- postalCode?: string;
347
394
  state?: string;
348
395
  country?: string;
349
396
  streetAddress?: string;
350
397
  apartment?: string;
351
398
  city?: string;
399
+ postalCode?: string;
352
400
  addressType?: string;
353
401
  }>;
354
402
  }, "strip", z.ZodTypeAny, {
355
403
  address?: {
356
- postalCode?: string;
357
404
  state?: string;
358
405
  country?: string;
359
406
  streetAddress?: string;
360
407
  apartment?: string;
361
408
  city?: string;
409
+ postalCode?: string;
362
410
  addressType?: string;
363
411
  };
364
412
  legalName?: string;
@@ -375,12 +423,12 @@ declare const businessProfileSchema: z.ZodObject<{
375
423
  contactPhone?: string;
376
424
  }, {
377
425
  address?: {
378
- postalCode?: string;
379
426
  state?: string;
380
427
  country?: string;
381
428
  streetAddress?: string;
382
429
  apartment?: string;
383
430
  city?: string;
431
+ postalCode?: string;
384
432
  addressType?: string;
385
433
  };
386
434
  legalName?: string;
@@ -587,6 +635,12 @@ interface StatementHeader$1 {
587
635
  startingBalance: string;
588
636
  endingBalance: string;
589
637
  }
638
+ interface StatementTransaction {
639
+ transactionType: string;
640
+ direction: "CREDIT" | "DEBIT";
641
+ amount: number;
642
+ count: number;
643
+ }
590
644
 
591
645
  interface StatementHeaderProps {
592
646
  data: StatementHeader$1;
@@ -594,6 +648,39 @@ interface StatementHeaderProps {
594
648
  }
595
649
  declare const StatementHeader: ({ data, onEdit }: StatementHeaderProps) => react_jsx_runtime.JSX.Element;
596
650
 
651
+ interface StatementViewProps {
652
+ statementType: string;
653
+ selectedProgram: string;
654
+ selectedProduct: string;
655
+ accountNumber: string;
656
+ startDate: Date | undefined;
657
+ endDate: Date | undefined;
658
+ statementGenerated: boolean;
659
+ programs: Array<{
660
+ value: string;
661
+ label: string;
662
+ }>;
663
+ products: Array<{
664
+ value: string;
665
+ label: string;
666
+ }>;
667
+ statementHeader: StatementHeader$1 | null;
668
+ statementTransactions: StatementTransaction[];
669
+ onStatementTypeChange: (value: string) => void;
670
+ onProgramChange: (value: string) => void;
671
+ onProductChange: (value: string) => void;
672
+ onAccountNumberChange: (value: string) => void;
673
+ onStartDateChange: (date: Date | undefined) => void;
674
+ onEndDateChange: (date: Date | undefined) => void;
675
+ onGenerateStatement: () => void;
676
+ onEdit: () => void;
677
+ onDownloadCSV: () => void;
678
+ onPrintPDF: () => void;
679
+ isGenerateDisabled: boolean;
680
+ isLoading: boolean;
681
+ }
682
+ declare const StatementView: ({ statementType, selectedProgram, selectedProduct, accountNumber, startDate, endDate, statementGenerated, programs, products, statementHeader, statementTransactions, onStatementTypeChange, onProgramChange, onProductChange, onAccountNumberChange, onStartDateChange, onEndDateChange, onGenerateStatement, onEdit, onDownloadCSV, onPrintPDF, isGenerateDisabled, isLoading }: StatementViewProps) => react_jsx_runtime.JSX.Element;
683
+
597
684
  interface ACHDetails {
598
685
  type: string;
599
686
  originatorName: string;
@@ -658,7 +745,7 @@ interface AccountCardProps {
658
745
  declare const AccountCard: React$1.ForwardRefExoticComponent<AccountCardProps & React$1.RefAttributes<HTMLDivElement>>;
659
746
 
660
747
  declare const badgeVariants: (props?: {
661
- variant?: "default" | "destructive" | "outline" | "secondary" | "success" | "warning" | "business" | "individual" | "government" | "nonprofit" | "corporation" | "llc" | "partnership" | "sole_proprietorship" | "active" | "inactive" | "pending" | "suspended" | "alert-ofac" | "alert-dual" | "alert-monitoring" | "alert-error";
748
+ variant?: "default" | "secondary" | "destructive" | "outline" | "success" | "warning" | "inbound" | "outbound" | "business" | "individual" | "government" | "nonprofit" | "corporation" | "llc" | "partnership" | "sole_proprietorship" | "active" | "inactive" | "pending" | "suspended" | "alert-ofac" | "alert-dual" | "alert-monitoring" | "alert-error";
662
749
  } & class_variance_authority_dist_types.ClassProp) => string;
663
750
  interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
664
751
  }
@@ -671,7 +758,7 @@ interface BusinessTypeBadgeProps {
671
758
  declare const BusinessTypeBadge: ({ type, className }: BusinessTypeBadgeProps) => react_jsx_runtime.JSX.Element;
672
759
 
673
760
  declare const buttonVariants: (props?: {
674
- variant?: "default" | "ghost" | "link" | "destructive" | "outline" | "secondary";
761
+ variant?: "default" | "ghost" | "link" | "secondary" | "destructive" | "outline";
675
762
  size?: "default" | "sm" | "lg" | "icon";
676
763
  } & class_variance_authority_dist_types.ClassProp) => string;
677
764
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
@@ -724,6 +811,8 @@ interface CardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, Varian
724
811
  }
725
812
  declare const CardFooter: React$1.ForwardRefExoticComponent<CardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
726
813
 
814
+ declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
815
+
727
816
  interface ContainerProps {
728
817
  children: React$1.ReactNode;
729
818
  size?: "sm" | "md" | "lg" | "xl" | "full";
@@ -871,7 +960,7 @@ interface EditableInfoFieldProps {
871
960
  declare const EditableInfoField: ({ label, value, options, onChange, placeholder, renderValue, className }: EditableInfoFieldProps) => react_jsx_runtime.JSX.Element;
872
961
 
873
962
  declare const selectVariants: (props?: {
874
- variant?: "default" | "disabled" | "success" | "error";
963
+ variant?: "default" | "success" | "disabled" | "error";
875
964
  } & class_variance_authority_dist_types.ClassProp) => string;
876
965
  interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
877
966
  label?: string;
@@ -887,11 +976,12 @@ interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
887
976
  value?: string;
888
977
  onValueChange?: (value: string) => void;
889
978
  disabled?: boolean;
979
+ className?: string;
890
980
  }
891
981
  declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectProps & React$1.RefAttributes<HTMLButtonElement>>;
892
982
 
893
983
  declare const textareaVariants: (props?: {
894
- variant?: "default" | "disabled" | "success" | "error" | "readonly";
984
+ variant?: "default" | "success" | "disabled" | "error" | "readonly";
895
985
  } & class_variance_authority_dist_types.ClassProp) => string;
896
986
  interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
897
987
  label?: string;
@@ -970,6 +1060,7 @@ interface FormSelectProps<T extends FieldValues = FieldValues> {
970
1060
  disabled?: boolean;
971
1061
  }[];
972
1062
  disabled?: boolean;
1063
+ className?: string;
973
1064
  }
974
1065
  declare const FormSelect: <T extends FieldValues = FieldValues>({ name, ...props }: FormSelectProps<T>) => react_jsx_runtime.JSX.Element;
975
1066
 
@@ -1022,7 +1113,7 @@ interface PageCard {
1022
1113
  props?: Record<string, any>;
1023
1114
  }
1024
1115
  interface PageLayoutProps {
1025
- title: string;
1116
+ title: string | React$1.ReactNode;
1026
1117
  description?: string;
1027
1118
  children?: React$1.ReactNode;
1028
1119
  actions?: PageAction[];
@@ -1032,6 +1123,7 @@ interface PageLayoutProps {
1032
1123
  gridCols?: 1 | 2 | 3 | 4;
1033
1124
  responsive?: boolean;
1034
1125
  className?: string;
1126
+ headerContent?: React$1.ReactNode;
1035
1127
  }
1036
1128
  declare const PageLayout: React$1.ForwardRefExoticComponent<PageLayoutProps & React$1.RefAttributes<HTMLDivElement>>;
1037
1129
 
@@ -1048,6 +1140,9 @@ interface ResponsiveGridProps {
1048
1140
  }
1049
1141
  declare const ResponsiveGrid: React$1.ForwardRefExoticComponent<ResponsiveGridProps & React$1.RefAttributes<HTMLDivElement>>;
1050
1142
 
1143
+ declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1144
+ declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1145
+
1051
1146
  declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1052
1147
 
1053
1148
  declare const Sheet: React$1.FC<DialogPrimitive.DialogProps>;
@@ -1056,7 +1151,7 @@ declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.Dial
1056
1151
  declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
1057
1152
  declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1058
1153
  declare const sheetVariants: (props?: {
1059
- side?: "top" | "bottom" | "left" | "right";
1154
+ side?: "left" | "right" | "top" | "bottom";
1060
1155
  } & class_variance_authority_dist_types.ClassProp) => string;
1061
1156
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
1062
1157
  }
@@ -1159,6 +1254,15 @@ interface StatusBadgeProps {
1159
1254
  }
1160
1255
  declare const StatusBadge: ({ status, className }: StatusBadgeProps) => react_jsx_runtime.JSX.Element;
1161
1256
 
1257
+ declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & React$1.RefAttributes<HTMLTableElement>>;
1258
+ declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1259
+ declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1260
+ declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1261
+ declare const TableRow: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableRowElement> & React$1.RefAttributes<HTMLTableRowElement>>;
1262
+ declare const TableHead: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
1263
+ declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
1264
+ declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
1265
+
1162
1266
  declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
1163
1267
  declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1164
1268
  declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
@@ -1176,6 +1280,13 @@ declare const ToastDescription: React$1.ForwardRefExoticComponent<Omit<ToastPrim
1176
1280
  type ToastProps = React$1.ComponentPropsWithoutRef<typeof Toast$1>;
1177
1281
  type ToastActionElement = React$1.ReactElement<typeof ToastAction>;
1178
1282
 
1283
+ interface TransactionTypeBadgeProps {
1284
+ transactionType: string;
1285
+ isInbound: boolean;
1286
+ className?: string;
1287
+ }
1288
+ declare const TransactionTypeBadge: ({ transactionType, isInbound, className }: TransactionTypeBadgeProps) => react_jsx_runtime.JSX.Element;
1289
+
1179
1290
  declare function DashboardDemo(): react_jsx_runtime.JSX.Element;
1180
1291
 
1181
1292
  declare function PatternLibrary(): react_jsx_runtime.JSX.Element;
@@ -1233,6 +1344,7 @@ interface UseAlertDetailReturn {
1233
1344
  assignee: string;
1234
1345
  handleRfiStatusChange: (status: string) => void;
1235
1346
  handleAssigneeChange: (assignee: string) => void;
1347
+ handleResolveAlert: (data: ResolveAlertFormData) => Promise<void>;
1236
1348
  }
1237
1349
  declare const useAlertDetail: (id: string | undefined) => UseAlertDetailReturn;
1238
1350
 
@@ -1301,4 +1413,4 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
1301
1413
 
1302
1414
  declare function UIKit(): react_jsx_runtime.JSX.Element;
1303
1415
 
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 };
1416
+ 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, 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, 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 };