braid-ui 1.0.4 → 1.0.6
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/README.md +78 -1
- package/dist/index.cjs +1964 -1395
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +136 -25
- package/dist/index.d.ts +136 -25
- package/dist/index.js +1883 -1332
- package/dist/index.js.map +1 -1
- package/package.json +12 -8
- package/src/styles.css +125 -0
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
|
|
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
|
|
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" | "
|
|
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,38 @@ 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
|
+
}
|
|
681
|
+
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 }: StatementViewProps) => react_jsx_runtime.JSX.Element;
|
|
682
|
+
|
|
597
683
|
interface ACHDetails {
|
|
598
684
|
type: string;
|
|
599
685
|
originatorName: string;
|
|
@@ -658,7 +744,7 @@ interface AccountCardProps {
|
|
|
658
744
|
declare const AccountCard: React$1.ForwardRefExoticComponent<AccountCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
659
745
|
|
|
660
746
|
declare const badgeVariants: (props?: {
|
|
661
|
-
variant?: "default" | "
|
|
747
|
+
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
748
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
663
749
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
664
750
|
}
|
|
@@ -671,7 +757,7 @@ interface BusinessTypeBadgeProps {
|
|
|
671
757
|
declare const BusinessTypeBadge: ({ type, className }: BusinessTypeBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
672
758
|
|
|
673
759
|
declare const buttonVariants: (props?: {
|
|
674
|
-
variant?: "default" | "ghost" | "link" | "
|
|
760
|
+
variant?: "default" | "ghost" | "link" | "secondary" | "destructive" | "outline";
|
|
675
761
|
size?: "default" | "sm" | "lg" | "icon";
|
|
676
762
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
677
763
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -724,6 +810,8 @@ interface CardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, Varian
|
|
|
724
810
|
}
|
|
725
811
|
declare const CardFooter: React$1.ForwardRefExoticComponent<CardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
726
812
|
|
|
813
|
+
declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
814
|
+
|
|
727
815
|
interface ContainerProps {
|
|
728
816
|
children: React$1.ReactNode;
|
|
729
817
|
size?: "sm" | "md" | "lg" | "xl" | "full";
|
|
@@ -871,7 +959,7 @@ interface EditableInfoFieldProps {
|
|
|
871
959
|
declare const EditableInfoField: ({ label, value, options, onChange, placeholder, renderValue, className }: EditableInfoFieldProps) => react_jsx_runtime.JSX.Element;
|
|
872
960
|
|
|
873
961
|
declare const selectVariants: (props?: {
|
|
874
|
-
variant?: "default" | "
|
|
962
|
+
variant?: "default" | "success" | "disabled" | "error";
|
|
875
963
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
876
964
|
interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
877
965
|
label?: string;
|
|
@@ -887,11 +975,12 @@ interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
|
887
975
|
value?: string;
|
|
888
976
|
onValueChange?: (value: string) => void;
|
|
889
977
|
disabled?: boolean;
|
|
978
|
+
className?: string;
|
|
890
979
|
}
|
|
891
980
|
declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
892
981
|
|
|
893
982
|
declare const textareaVariants: (props?: {
|
|
894
|
-
variant?: "default" | "
|
|
983
|
+
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
|
895
984
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
896
985
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
|
|
897
986
|
label?: string;
|
|
@@ -970,6 +1059,7 @@ interface FormSelectProps<T extends FieldValues = FieldValues> {
|
|
|
970
1059
|
disabled?: boolean;
|
|
971
1060
|
}[];
|
|
972
1061
|
disabled?: boolean;
|
|
1062
|
+
className?: string;
|
|
973
1063
|
}
|
|
974
1064
|
declare const FormSelect: <T extends FieldValues = FieldValues>({ name, ...props }: FormSelectProps<T>) => react_jsx_runtime.JSX.Element;
|
|
975
1065
|
|
|
@@ -1022,7 +1112,7 @@ interface PageCard {
|
|
|
1022
1112
|
props?: Record<string, any>;
|
|
1023
1113
|
}
|
|
1024
1114
|
interface PageLayoutProps {
|
|
1025
|
-
title: string;
|
|
1115
|
+
title: string | React$1.ReactNode;
|
|
1026
1116
|
description?: string;
|
|
1027
1117
|
children?: React$1.ReactNode;
|
|
1028
1118
|
actions?: PageAction[];
|
|
@@ -1032,6 +1122,7 @@ interface PageLayoutProps {
|
|
|
1032
1122
|
gridCols?: 1 | 2 | 3 | 4;
|
|
1033
1123
|
responsive?: boolean;
|
|
1034
1124
|
className?: string;
|
|
1125
|
+
headerContent?: React$1.ReactNode;
|
|
1035
1126
|
}
|
|
1036
1127
|
declare const PageLayout: React$1.ForwardRefExoticComponent<PageLayoutProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1037
1128
|
|
|
@@ -1048,6 +1139,9 @@ interface ResponsiveGridProps {
|
|
|
1048
1139
|
}
|
|
1049
1140
|
declare const ResponsiveGrid: React$1.ForwardRefExoticComponent<ResponsiveGridProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1050
1141
|
|
|
1142
|
+
declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1143
|
+
declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1144
|
+
|
|
1051
1145
|
declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1052
1146
|
|
|
1053
1147
|
declare const Sheet: React$1.FC<DialogPrimitive.DialogProps>;
|
|
@@ -1056,7 +1150,7 @@ declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.Dial
|
|
|
1056
1150
|
declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
1057
1151
|
declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1058
1152
|
declare const sheetVariants: (props?: {
|
|
1059
|
-
side?: "
|
|
1153
|
+
side?: "left" | "right" | "top" | "bottom";
|
|
1060
1154
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
1061
1155
|
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
1062
1156
|
}
|
|
@@ -1159,6 +1253,15 @@ interface StatusBadgeProps {
|
|
|
1159
1253
|
}
|
|
1160
1254
|
declare const StatusBadge: ({ status, className }: StatusBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
1161
1255
|
|
|
1256
|
+
declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & React$1.RefAttributes<HTMLTableElement>>;
|
|
1257
|
+
declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1258
|
+
declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1259
|
+
declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1260
|
+
declare const TableRow: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableRowElement> & React$1.RefAttributes<HTMLTableRowElement>>;
|
|
1261
|
+
declare const TableHead: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
1262
|
+
declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
1263
|
+
declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
|
|
1264
|
+
|
|
1162
1265
|
declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1163
1266
|
declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1164
1267
|
declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1176,6 +1279,13 @@ declare const ToastDescription: React$1.ForwardRefExoticComponent<Omit<ToastPrim
|
|
|
1176
1279
|
type ToastProps = React$1.ComponentPropsWithoutRef<typeof Toast$1>;
|
|
1177
1280
|
type ToastActionElement = React$1.ReactElement<typeof ToastAction>;
|
|
1178
1281
|
|
|
1282
|
+
interface TransactionTypeBadgeProps {
|
|
1283
|
+
transactionType: string;
|
|
1284
|
+
isInbound: boolean;
|
|
1285
|
+
className?: string;
|
|
1286
|
+
}
|
|
1287
|
+
declare const TransactionTypeBadge: ({ transactionType, isInbound, className }: TransactionTypeBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
1288
|
+
|
|
1179
1289
|
declare function DashboardDemo(): react_jsx_runtime.JSX.Element;
|
|
1180
1290
|
|
|
1181
1291
|
declare function PatternLibrary(): react_jsx_runtime.JSX.Element;
|
|
@@ -1233,6 +1343,7 @@ interface UseAlertDetailReturn {
|
|
|
1233
1343
|
assignee: string;
|
|
1234
1344
|
handleRfiStatusChange: (status: string) => void;
|
|
1235
1345
|
handleAssigneeChange: (assignee: string) => void;
|
|
1346
|
+
handleResolveAlert: (data: ResolveAlertFormData) => Promise<void>;
|
|
1236
1347
|
}
|
|
1237
1348
|
declare const useAlertDetail: (id: string | undefined) => UseAlertDetailReturn;
|
|
1238
1349
|
|
|
@@ -1301,4 +1412,4 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1301
1412
|
|
|
1302
1413
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1303
1414
|
|
|
1304
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail,
|
|
1415
|
+
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 };
|