braid-ui 1.0.142 → 1.0.144

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
@@ -124,18 +124,6 @@ interface MainLayoutProps {
124
124
  }
125
125
  declare const MainLayout: ({ children }: MainLayoutProps) => react_jsx_runtime.JSX.Element;
126
126
 
127
- interface OFACCheck {
128
- id: string;
129
- created: string;
130
- entityId: string;
131
- entityName: string;
132
- entityType: "Individual" | "Business" | "Counterparty";
133
- alertId: string | null;
134
- status: "NO MATCH" | "REVIEW" | "CLEARED" | "CONFIRMED";
135
- updatedBy: string;
136
- note: string | null;
137
- }
138
-
139
127
  interface OFACFilters {
140
128
  status: string;
141
129
  entityType: string;
@@ -147,20 +135,26 @@ interface OFACOption {
147
135
  label: string;
148
136
  }
149
137
  interface OFACViewProps {
150
- checks: OFACCheck[];
151
- sortField: keyof OFACCheck;
152
- sortDirection: "asc" | "desc";
138
+ table: React.ReactNode;
153
139
  filters: OFACFilters;
154
140
  statusOptions: OFACOption[];
155
141
  entityTypeOptions: OFACOption[];
156
- onSort: (field: keyof OFACCheck) => void;
157
142
  onFilterChange: (field: keyof OFACFilters, value: string | Date | undefined) => void;
158
143
  onResetFilters: () => void;
159
- onRowClick: (check: OFACCheck) => void;
160
- onEntityClick: (check: OFACCheck) => void;
161
- onAlertClick: (alertId: string) => void;
162
144
  }
163
- declare function OFACView({ checks, sortField, sortDirection, filters, statusOptions, entityTypeOptions, onSort, onFilterChange, onResetFilters, onRowClick, onEntityClick, onAlertClick, }: OFACViewProps): react_jsx_runtime.JSX.Element;
145
+ declare function OFACView({ table, filters, statusOptions, entityTypeOptions, onFilterChange, onResetFilters, }: OFACViewProps): react_jsx_runtime.JSX.Element;
146
+
147
+ interface OFACCheck {
148
+ id: string;
149
+ created: string;
150
+ entityId: string;
151
+ entityName: string;
152
+ entityType: "Individual" | "Business" | "Counterparty";
153
+ alertId: string | null;
154
+ status: "NO MATCH" | "REVIEW" | "CLEARED" | "CONFIRMED";
155
+ updatedBy: string;
156
+ note: string | null;
157
+ }
164
158
 
165
159
  interface OFACDetailViewProps {
166
160
  ofacCheck: OFACCheck | undefined;
@@ -173,6 +167,130 @@ interface OFACDetailViewProps {
173
167
  }
174
168
  declare function OFACDetailView({ ofacCheck, entityUrl, results, onBack }: OFACDetailViewProps): react_jsx_runtime.JSX.Element;
175
169
 
170
+ interface FileUpload314A {
171
+ id: string;
172
+ fileUploadedAt: string;
173
+ filename: string;
174
+ uploadBy: string;
175
+ recordUploaded: number;
176
+ businessChecked: number;
177
+ individualChecked: number;
178
+ alertsCreated: number;
179
+ }
180
+
181
+ interface A314AFiltersState {
182
+ fromDate: Date | undefined;
183
+ toDate: Date | undefined;
184
+ }
185
+ interface A314AViewProps {
186
+ uploads: FileUpload314A[];
187
+ sortField: keyof FileUpload314A;
188
+ sortDirection: "asc" | "desc";
189
+ onSort: (field: keyof FileUpload314A) => void;
190
+ filters: A314AFiltersState;
191
+ onFilterChange: (field: keyof A314AFiltersState, value: Date | undefined) => void;
192
+ onResetFilters: () => void;
193
+ onApplyFilters: () => void;
194
+ uploadDialogOpen: boolean;
195
+ onUploadDialogOpenChange: (open: boolean) => void;
196
+ }
197
+ declare function A314AView({ uploads, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onApplyFilters, uploadDialogOpen, onUploadDialogOpenChange, }: A314AViewProps): react_jsx_runtime.JSX.Element;
198
+
199
+ interface VelocityLimit {
200
+ id: string;
201
+ created: string;
202
+ limitName: string;
203
+ limitType: "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
204
+ action: "DECLINE" | "FLAG" | "MONITOR";
205
+ status: "ACTIVE" | "INACTIVE" | "DELETED";
206
+ associatedEntity: "Account" | "Global" | "Program" | "Product";
207
+ associatedEntityId?: string;
208
+ transactionType?: string[];
209
+ transactionGroup?: string[];
210
+ aggregationLevel?: string;
211
+ timePeriod?: string;
212
+ maxAmount?: string;
213
+ maxCount?: string;
214
+ mismatchThreshold?: string;
215
+ comparisonMethod?: string;
216
+ amountThreshold?: string;
217
+ roundPattern?: string;
218
+ entityListName?: string;
219
+ entityType?: string;
220
+ prohibitedEntities?: string;
221
+ }
222
+
223
+ interface VelocityLimitFilters {
224
+ accountNumber: string;
225
+ counterpartyId: string;
226
+ productId: string;
227
+ programId: string;
228
+ limitName: string;
229
+ limitType: string;
230
+ status: string;
231
+ aggregationLevel: string;
232
+ action: string;
233
+ transactionType: string;
234
+ transactionGroup: string;
235
+ }
236
+ interface VelocityLimitsViewProps {
237
+ limits: VelocityLimit[];
238
+ sortField: keyof VelocityLimit;
239
+ sortDirection: "asc" | "desc";
240
+ onSort: (field: keyof VelocityLimit) => void;
241
+ filters: VelocityLimitFilters;
242
+ onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
243
+ onResetFilters: () => void;
244
+ onCreate: () => void;
245
+ onRowClick: (limit: VelocityLimit) => void;
246
+ getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
247
+ getActionVariant: (action: VelocityLimit["action"]) => "secondary";
248
+ }
249
+ declare function VelocityLimitsView({ limits, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onCreate, onRowClick, getStatusVariant, getActionVariant, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
250
+
251
+ interface VelocityLimitDetailViewProps {
252
+ limit: VelocityLimit | undefined;
253
+ onBack: () => void;
254
+ onDeactivate: () => void;
255
+ getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
256
+ getActionVariant: (action: VelocityLimit["action"]) => "secondary";
257
+ }
258
+ declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
259
+
260
+ type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
261
+ interface SelectOption$7 {
262
+ value: string;
263
+ label: string;
264
+ }
265
+ interface CreateVelocityLimitFormData {
266
+ limitName: string;
267
+ action: string;
268
+ associatedEntityType: string;
269
+ associatedEntityId: string;
270
+ transactionFilterType: string;
271
+ transactionType: string;
272
+ transactionGroup: string;
273
+ aggregationLevel: string;
274
+ [key: string]: string;
275
+ }
276
+ interface CreateVelocityLimitViewProps {
277
+ limitType: LimitType;
278
+ formData: CreateVelocityLimitFormData;
279
+ onLimitTypeChange: (value: LimitType) => void;
280
+ onFieldChange: (field: string, value: string) => void;
281
+ onSubmit: (e: React.FormEvent) => void;
282
+ onCancel: () => void;
283
+ limitTypeOptions: SelectOption$7[];
284
+ actionOptions: SelectOption$7[];
285
+ associatedEntityTypeOptions: SelectOption$7[];
286
+ transactionTypeOptions: SelectOption$7[];
287
+ transactionGroupOptions: SelectOption$7[];
288
+ aggregationLevelOptions: SelectOption$7[];
289
+ timePeriodOptions: SelectOption$7[];
290
+ prohibitedEntityTypeOptions: SelectOption$7[];
291
+ }
292
+ declare function CreateVelocityLimitView({ limitType, formData, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
293
+
176
294
  interface BusinessFilters$1 {
177
295
  businessId: string;
178
296
  name: string;
@@ -2402,4 +2520,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2402
2520
  */
2403
2521
  declare function downloadCSV(content: string, filename: string): void;
2404
2522
 
2405
- export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
2523
+ export { type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, 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, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$7 as SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
package/dist/index.d.ts CHANGED
@@ -124,18 +124,6 @@ interface MainLayoutProps {
124
124
  }
125
125
  declare const MainLayout: ({ children }: MainLayoutProps) => react_jsx_runtime.JSX.Element;
126
126
 
127
- interface OFACCheck {
128
- id: string;
129
- created: string;
130
- entityId: string;
131
- entityName: string;
132
- entityType: "Individual" | "Business" | "Counterparty";
133
- alertId: string | null;
134
- status: "NO MATCH" | "REVIEW" | "CLEARED" | "CONFIRMED";
135
- updatedBy: string;
136
- note: string | null;
137
- }
138
-
139
127
  interface OFACFilters {
140
128
  status: string;
141
129
  entityType: string;
@@ -147,20 +135,26 @@ interface OFACOption {
147
135
  label: string;
148
136
  }
149
137
  interface OFACViewProps {
150
- checks: OFACCheck[];
151
- sortField: keyof OFACCheck;
152
- sortDirection: "asc" | "desc";
138
+ table: React.ReactNode;
153
139
  filters: OFACFilters;
154
140
  statusOptions: OFACOption[];
155
141
  entityTypeOptions: OFACOption[];
156
- onSort: (field: keyof OFACCheck) => void;
157
142
  onFilterChange: (field: keyof OFACFilters, value: string | Date | undefined) => void;
158
143
  onResetFilters: () => void;
159
- onRowClick: (check: OFACCheck) => void;
160
- onEntityClick: (check: OFACCheck) => void;
161
- onAlertClick: (alertId: string) => void;
162
144
  }
163
- declare function OFACView({ checks, sortField, sortDirection, filters, statusOptions, entityTypeOptions, onSort, onFilterChange, onResetFilters, onRowClick, onEntityClick, onAlertClick, }: OFACViewProps): react_jsx_runtime.JSX.Element;
145
+ declare function OFACView({ table, filters, statusOptions, entityTypeOptions, onFilterChange, onResetFilters, }: OFACViewProps): react_jsx_runtime.JSX.Element;
146
+
147
+ interface OFACCheck {
148
+ id: string;
149
+ created: string;
150
+ entityId: string;
151
+ entityName: string;
152
+ entityType: "Individual" | "Business" | "Counterparty";
153
+ alertId: string | null;
154
+ status: "NO MATCH" | "REVIEW" | "CLEARED" | "CONFIRMED";
155
+ updatedBy: string;
156
+ note: string | null;
157
+ }
164
158
 
165
159
  interface OFACDetailViewProps {
166
160
  ofacCheck: OFACCheck | undefined;
@@ -173,6 +167,130 @@ interface OFACDetailViewProps {
173
167
  }
174
168
  declare function OFACDetailView({ ofacCheck, entityUrl, results, onBack }: OFACDetailViewProps): react_jsx_runtime.JSX.Element;
175
169
 
170
+ interface FileUpload314A {
171
+ id: string;
172
+ fileUploadedAt: string;
173
+ filename: string;
174
+ uploadBy: string;
175
+ recordUploaded: number;
176
+ businessChecked: number;
177
+ individualChecked: number;
178
+ alertsCreated: number;
179
+ }
180
+
181
+ interface A314AFiltersState {
182
+ fromDate: Date | undefined;
183
+ toDate: Date | undefined;
184
+ }
185
+ interface A314AViewProps {
186
+ uploads: FileUpload314A[];
187
+ sortField: keyof FileUpload314A;
188
+ sortDirection: "asc" | "desc";
189
+ onSort: (field: keyof FileUpload314A) => void;
190
+ filters: A314AFiltersState;
191
+ onFilterChange: (field: keyof A314AFiltersState, value: Date | undefined) => void;
192
+ onResetFilters: () => void;
193
+ onApplyFilters: () => void;
194
+ uploadDialogOpen: boolean;
195
+ onUploadDialogOpenChange: (open: boolean) => void;
196
+ }
197
+ declare function A314AView({ uploads, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onApplyFilters, uploadDialogOpen, onUploadDialogOpenChange, }: A314AViewProps): react_jsx_runtime.JSX.Element;
198
+
199
+ interface VelocityLimit {
200
+ id: string;
201
+ created: string;
202
+ limitName: string;
203
+ limitType: "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
204
+ action: "DECLINE" | "FLAG" | "MONITOR";
205
+ status: "ACTIVE" | "INACTIVE" | "DELETED";
206
+ associatedEntity: "Account" | "Global" | "Program" | "Product";
207
+ associatedEntityId?: string;
208
+ transactionType?: string[];
209
+ transactionGroup?: string[];
210
+ aggregationLevel?: string;
211
+ timePeriod?: string;
212
+ maxAmount?: string;
213
+ maxCount?: string;
214
+ mismatchThreshold?: string;
215
+ comparisonMethod?: string;
216
+ amountThreshold?: string;
217
+ roundPattern?: string;
218
+ entityListName?: string;
219
+ entityType?: string;
220
+ prohibitedEntities?: string;
221
+ }
222
+
223
+ interface VelocityLimitFilters {
224
+ accountNumber: string;
225
+ counterpartyId: string;
226
+ productId: string;
227
+ programId: string;
228
+ limitName: string;
229
+ limitType: string;
230
+ status: string;
231
+ aggregationLevel: string;
232
+ action: string;
233
+ transactionType: string;
234
+ transactionGroup: string;
235
+ }
236
+ interface VelocityLimitsViewProps {
237
+ limits: VelocityLimit[];
238
+ sortField: keyof VelocityLimit;
239
+ sortDirection: "asc" | "desc";
240
+ onSort: (field: keyof VelocityLimit) => void;
241
+ filters: VelocityLimitFilters;
242
+ onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
243
+ onResetFilters: () => void;
244
+ onCreate: () => void;
245
+ onRowClick: (limit: VelocityLimit) => void;
246
+ getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
247
+ getActionVariant: (action: VelocityLimit["action"]) => "secondary";
248
+ }
249
+ declare function VelocityLimitsView({ limits, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onCreate, onRowClick, getStatusVariant, getActionVariant, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
250
+
251
+ interface VelocityLimitDetailViewProps {
252
+ limit: VelocityLimit | undefined;
253
+ onBack: () => void;
254
+ onDeactivate: () => void;
255
+ getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
256
+ getActionVariant: (action: VelocityLimit["action"]) => "secondary";
257
+ }
258
+ declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
259
+
260
+ type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
261
+ interface SelectOption$7 {
262
+ value: string;
263
+ label: string;
264
+ }
265
+ interface CreateVelocityLimitFormData {
266
+ limitName: string;
267
+ action: string;
268
+ associatedEntityType: string;
269
+ associatedEntityId: string;
270
+ transactionFilterType: string;
271
+ transactionType: string;
272
+ transactionGroup: string;
273
+ aggregationLevel: string;
274
+ [key: string]: string;
275
+ }
276
+ interface CreateVelocityLimitViewProps {
277
+ limitType: LimitType;
278
+ formData: CreateVelocityLimitFormData;
279
+ onLimitTypeChange: (value: LimitType) => void;
280
+ onFieldChange: (field: string, value: string) => void;
281
+ onSubmit: (e: React.FormEvent) => void;
282
+ onCancel: () => void;
283
+ limitTypeOptions: SelectOption$7[];
284
+ actionOptions: SelectOption$7[];
285
+ associatedEntityTypeOptions: SelectOption$7[];
286
+ transactionTypeOptions: SelectOption$7[];
287
+ transactionGroupOptions: SelectOption$7[];
288
+ aggregationLevelOptions: SelectOption$7[];
289
+ timePeriodOptions: SelectOption$7[];
290
+ prohibitedEntityTypeOptions: SelectOption$7[];
291
+ }
292
+ declare function CreateVelocityLimitView({ limitType, formData, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
293
+
176
294
  interface BusinessFilters$1 {
177
295
  businessId: string;
178
296
  name: string;
@@ -2402,4 +2520,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2402
2520
  */
2403
2521
  declare function downloadCSV(content: string, filename: string): void;
2404
2522
 
2405
- export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
2523
+ export { type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, 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, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$7 as SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };