braid-ui 1.0.3 → 1.0.5
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 +28 -1
- package/dist/index.cjs +980 -977
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +55 -20
- package/dist/index.d.ts +55 -20
- package/dist/index.js +979 -979
- package/dist/index.js.map +1 -1
- package/package.json +12 -8
- package/src/styles.css +124 -0
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;
|
|
@@ -569,6 +578,22 @@ interface ListPageProps {
|
|
|
569
578
|
}
|
|
570
579
|
declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
571
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
|
+
|
|
572
597
|
interface ACHDetails {
|
|
573
598
|
type: string;
|
|
574
599
|
originatorName: string;
|
|
@@ -646,7 +671,7 @@ interface BusinessTypeBadgeProps {
|
|
|
646
671
|
declare const BusinessTypeBadge: ({ type, className }: BusinessTypeBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
647
672
|
|
|
648
673
|
declare const buttonVariants: (props?: {
|
|
649
|
-
variant?: "default" | "
|
|
674
|
+
variant?: "default" | "ghost" | "link" | "destructive" | "outline" | "secondary";
|
|
650
675
|
size?: "default" | "sm" | "lg" | "icon";
|
|
651
676
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
652
677
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -661,8 +686,8 @@ declare namespace Calendar {
|
|
|
661
686
|
}
|
|
662
687
|
|
|
663
688
|
declare const cardVariants: (props?: {
|
|
664
|
-
variant?: "default" | "
|
|
665
|
-
size?: "sm" | "
|
|
689
|
+
variant?: "default" | "elevated" | "outlined" | "ghost" | "subtle";
|
|
690
|
+
size?: "sm" | "md" | "lg" | "none";
|
|
666
691
|
fullHeight?: boolean;
|
|
667
692
|
interactive?: boolean;
|
|
668
693
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
@@ -670,30 +695,30 @@ interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps
|
|
|
670
695
|
}
|
|
671
696
|
declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
672
697
|
declare const cardHeaderVariants: (props?: {
|
|
673
|
-
size?: "sm" | "
|
|
674
|
-
align?: "
|
|
698
|
+
size?: "sm" | "md" | "lg";
|
|
699
|
+
align?: "start" | "center" | "end";
|
|
675
700
|
direction?: "row" | "column";
|
|
676
701
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
677
702
|
interface CardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardHeaderVariants> {
|
|
678
703
|
}
|
|
679
704
|
declare const CardHeader: React$1.ForwardRefExoticComponent<CardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
680
705
|
declare const cardTitleVariants: (props?: {
|
|
681
|
-
size?: "sm" | "
|
|
706
|
+
size?: "sm" | "md" | "lg";
|
|
682
707
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
683
708
|
interface CardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof cardTitleVariants> {
|
|
684
709
|
}
|
|
685
710
|
declare const CardTitle: React$1.ForwardRefExoticComponent<CardTitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
686
711
|
declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
687
712
|
declare const cardContentVariants: (props?: {
|
|
688
|
-
size?: "sm" | "
|
|
713
|
+
size?: "sm" | "md" | "lg";
|
|
689
714
|
fullHeight?: boolean;
|
|
690
715
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
691
716
|
interface CardContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardContentVariants> {
|
|
692
717
|
}
|
|
693
718
|
declare const CardContent: React$1.ForwardRefExoticComponent<CardContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
694
719
|
declare const cardFooterVariants: (props?: {
|
|
695
|
-
size?: "sm" | "
|
|
696
|
-
justify?: "
|
|
720
|
+
size?: "sm" | "md" | "lg";
|
|
721
|
+
justify?: "start" | "center" | "end" | "between";
|
|
697
722
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
698
723
|
interface CardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardFooterVariants> {
|
|
699
724
|
}
|
|
@@ -846,7 +871,7 @@ interface EditableInfoFieldProps {
|
|
|
846
871
|
declare const EditableInfoField: ({ label, value, options, onChange, placeholder, renderValue, className }: EditableInfoFieldProps) => react_jsx_runtime.JSX.Element;
|
|
847
872
|
|
|
848
873
|
declare const selectVariants: (props?: {
|
|
849
|
-
variant?: "default" | "disabled" | "
|
|
874
|
+
variant?: "default" | "disabled" | "success" | "error";
|
|
850
875
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
851
876
|
interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
852
877
|
label?: string;
|
|
@@ -866,7 +891,7 @@ interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
|
866
891
|
declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
867
892
|
|
|
868
893
|
declare const textareaVariants: (props?: {
|
|
869
|
-
variant?: "default" | "disabled" | "
|
|
894
|
+
variant?: "default" | "disabled" | "success" | "error" | "readonly";
|
|
870
895
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
871
896
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
|
|
872
897
|
label?: string;
|
|
@@ -1201,6 +1226,16 @@ declare function useToast(): {
|
|
|
1201
1226
|
toasts: ToasterToast[];
|
|
1202
1227
|
};
|
|
1203
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
|
+
|
|
1204
1239
|
interface UseEditStateProps {
|
|
1205
1240
|
initialEditing?: boolean;
|
|
1206
1241
|
onToggleEdit?: () => void;
|
|
@@ -1266,4 +1301,4 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1266
1301
|
|
|
1267
1302
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1268
1303
|
|
|
1269
|
-
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 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, 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;
|
|
@@ -569,6 +578,22 @@ interface ListPageProps {
|
|
|
569
578
|
}
|
|
570
579
|
declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
571
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
|
+
|
|
572
597
|
interface ACHDetails {
|
|
573
598
|
type: string;
|
|
574
599
|
originatorName: string;
|
|
@@ -646,7 +671,7 @@ interface BusinessTypeBadgeProps {
|
|
|
646
671
|
declare const BusinessTypeBadge: ({ type, className }: BusinessTypeBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
647
672
|
|
|
648
673
|
declare const buttonVariants: (props?: {
|
|
649
|
-
variant?: "default" | "
|
|
674
|
+
variant?: "default" | "ghost" | "link" | "destructive" | "outline" | "secondary";
|
|
650
675
|
size?: "default" | "sm" | "lg" | "icon";
|
|
651
676
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
652
677
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -661,8 +686,8 @@ declare namespace Calendar {
|
|
|
661
686
|
}
|
|
662
687
|
|
|
663
688
|
declare const cardVariants: (props?: {
|
|
664
|
-
variant?: "default" | "
|
|
665
|
-
size?: "sm" | "
|
|
689
|
+
variant?: "default" | "elevated" | "outlined" | "ghost" | "subtle";
|
|
690
|
+
size?: "sm" | "md" | "lg" | "none";
|
|
666
691
|
fullHeight?: boolean;
|
|
667
692
|
interactive?: boolean;
|
|
668
693
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
@@ -670,30 +695,30 @@ interface CardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps
|
|
|
670
695
|
}
|
|
671
696
|
declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
672
697
|
declare const cardHeaderVariants: (props?: {
|
|
673
|
-
size?: "sm" | "
|
|
674
|
-
align?: "
|
|
698
|
+
size?: "sm" | "md" | "lg";
|
|
699
|
+
align?: "start" | "center" | "end";
|
|
675
700
|
direction?: "row" | "column";
|
|
676
701
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
677
702
|
interface CardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardHeaderVariants> {
|
|
678
703
|
}
|
|
679
704
|
declare const CardHeader: React$1.ForwardRefExoticComponent<CardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
680
705
|
declare const cardTitleVariants: (props?: {
|
|
681
|
-
size?: "sm" | "
|
|
706
|
+
size?: "sm" | "md" | "lg";
|
|
682
707
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
683
708
|
interface CardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof cardTitleVariants> {
|
|
684
709
|
}
|
|
685
710
|
declare const CardTitle: React$1.ForwardRefExoticComponent<CardTitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
686
711
|
declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
687
712
|
declare const cardContentVariants: (props?: {
|
|
688
|
-
size?: "sm" | "
|
|
713
|
+
size?: "sm" | "md" | "lg";
|
|
689
714
|
fullHeight?: boolean;
|
|
690
715
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
691
716
|
interface CardContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardContentVariants> {
|
|
692
717
|
}
|
|
693
718
|
declare const CardContent: React$1.ForwardRefExoticComponent<CardContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
694
719
|
declare const cardFooterVariants: (props?: {
|
|
695
|
-
size?: "sm" | "
|
|
696
|
-
justify?: "
|
|
720
|
+
size?: "sm" | "md" | "lg";
|
|
721
|
+
justify?: "start" | "center" | "end" | "between";
|
|
697
722
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
698
723
|
interface CardFooterProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardFooterVariants> {
|
|
699
724
|
}
|
|
@@ -846,7 +871,7 @@ interface EditableInfoFieldProps {
|
|
|
846
871
|
declare const EditableInfoField: ({ label, value, options, onChange, placeholder, renderValue, className }: EditableInfoFieldProps) => react_jsx_runtime.JSX.Element;
|
|
847
872
|
|
|
848
873
|
declare const selectVariants: (props?: {
|
|
849
|
-
variant?: "default" | "disabled" | "
|
|
874
|
+
variant?: "default" | "disabled" | "success" | "error";
|
|
850
875
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
851
876
|
interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
852
877
|
label?: string;
|
|
@@ -866,7 +891,7 @@ interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
|
866
891
|
declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
867
892
|
|
|
868
893
|
declare const textareaVariants: (props?: {
|
|
869
|
-
variant?: "default" | "disabled" | "
|
|
894
|
+
variant?: "default" | "disabled" | "success" | "error" | "readonly";
|
|
870
895
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
871
896
|
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
|
|
872
897
|
label?: string;
|
|
@@ -1201,6 +1226,16 @@ declare function useToast(): {
|
|
|
1201
1226
|
toasts: ToasterToast[];
|
|
1202
1227
|
};
|
|
1203
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
|
+
|
|
1204
1239
|
interface UseEditStateProps {
|
|
1205
1240
|
initialEditing?: boolean;
|
|
1206
1241
|
onToggleEdit?: () => void;
|
|
@@ -1266,4 +1301,4 @@ declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
|
1266
1301
|
|
|
1267
1302
|
declare function UIKit(): react_jsx_runtime.JSX.Element;
|
|
1268
1303
|
|
|
1269
|
-
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 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, 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 };
|