braid-ui 1.0.142 → 1.0.143
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +125 -1
- package/dist/index.d.ts +125 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -173,6 +173,130 @@ interface OFACDetailViewProps {
|
|
|
173
173
|
}
|
|
174
174
|
declare function OFACDetailView({ ofacCheck, entityUrl, results, onBack }: OFACDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
175
175
|
|
|
176
|
+
interface FileUpload314A {
|
|
177
|
+
id: string;
|
|
178
|
+
fileUploadedAt: string;
|
|
179
|
+
filename: string;
|
|
180
|
+
uploadBy: string;
|
|
181
|
+
recordUploaded: number;
|
|
182
|
+
businessChecked: number;
|
|
183
|
+
individualChecked: number;
|
|
184
|
+
alertsCreated: number;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
interface A314AFiltersState {
|
|
188
|
+
fromDate: Date | undefined;
|
|
189
|
+
toDate: Date | undefined;
|
|
190
|
+
}
|
|
191
|
+
interface A314AViewProps {
|
|
192
|
+
uploads: FileUpload314A[];
|
|
193
|
+
sortField: keyof FileUpload314A;
|
|
194
|
+
sortDirection: "asc" | "desc";
|
|
195
|
+
onSort: (field: keyof FileUpload314A) => void;
|
|
196
|
+
filters: A314AFiltersState;
|
|
197
|
+
onFilterChange: (field: keyof A314AFiltersState, value: Date | undefined) => void;
|
|
198
|
+
onResetFilters: () => void;
|
|
199
|
+
onApplyFilters: () => void;
|
|
200
|
+
uploadDialogOpen: boolean;
|
|
201
|
+
onUploadDialogOpenChange: (open: boolean) => void;
|
|
202
|
+
}
|
|
203
|
+
declare function A314AView({ uploads, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onApplyFilters, uploadDialogOpen, onUploadDialogOpenChange, }: A314AViewProps): react_jsx_runtime.JSX.Element;
|
|
204
|
+
|
|
205
|
+
interface VelocityLimit {
|
|
206
|
+
id: string;
|
|
207
|
+
created: string;
|
|
208
|
+
limitName: string;
|
|
209
|
+
limitType: "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
210
|
+
action: "DECLINE" | "FLAG" | "MONITOR";
|
|
211
|
+
status: "ACTIVE" | "INACTIVE" | "DELETED";
|
|
212
|
+
associatedEntity: "Account" | "Global" | "Program" | "Product";
|
|
213
|
+
associatedEntityId?: string;
|
|
214
|
+
transactionType?: string[];
|
|
215
|
+
transactionGroup?: string[];
|
|
216
|
+
aggregationLevel?: string;
|
|
217
|
+
timePeriod?: string;
|
|
218
|
+
maxAmount?: string;
|
|
219
|
+
maxCount?: string;
|
|
220
|
+
mismatchThreshold?: string;
|
|
221
|
+
comparisonMethod?: string;
|
|
222
|
+
amountThreshold?: string;
|
|
223
|
+
roundPattern?: string;
|
|
224
|
+
entityListName?: string;
|
|
225
|
+
entityType?: string;
|
|
226
|
+
prohibitedEntities?: string;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
interface VelocityLimitFilters {
|
|
230
|
+
accountNumber: string;
|
|
231
|
+
counterpartyId: string;
|
|
232
|
+
productId: string;
|
|
233
|
+
programId: string;
|
|
234
|
+
limitName: string;
|
|
235
|
+
limitType: string;
|
|
236
|
+
status: string;
|
|
237
|
+
aggregationLevel: string;
|
|
238
|
+
action: string;
|
|
239
|
+
transactionType: string;
|
|
240
|
+
transactionGroup: string;
|
|
241
|
+
}
|
|
242
|
+
interface VelocityLimitsViewProps {
|
|
243
|
+
limits: VelocityLimit[];
|
|
244
|
+
sortField: keyof VelocityLimit;
|
|
245
|
+
sortDirection: "asc" | "desc";
|
|
246
|
+
onSort: (field: keyof VelocityLimit) => void;
|
|
247
|
+
filters: VelocityLimitFilters;
|
|
248
|
+
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
249
|
+
onResetFilters: () => void;
|
|
250
|
+
onCreate: () => void;
|
|
251
|
+
onRowClick: (limit: VelocityLimit) => void;
|
|
252
|
+
getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
|
|
253
|
+
getActionVariant: (action: VelocityLimit["action"]) => "secondary";
|
|
254
|
+
}
|
|
255
|
+
declare function VelocityLimitsView({ limits, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onCreate, onRowClick, getStatusVariant, getActionVariant, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
256
|
+
|
|
257
|
+
interface VelocityLimitDetailViewProps {
|
|
258
|
+
limit: VelocityLimit | undefined;
|
|
259
|
+
onBack: () => void;
|
|
260
|
+
onDeactivate: () => void;
|
|
261
|
+
getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
|
|
262
|
+
getActionVariant: (action: VelocityLimit["action"]) => "secondary";
|
|
263
|
+
}
|
|
264
|
+
declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
265
|
+
|
|
266
|
+
type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
267
|
+
interface SelectOption$7 {
|
|
268
|
+
value: string;
|
|
269
|
+
label: string;
|
|
270
|
+
}
|
|
271
|
+
interface CreateVelocityLimitFormData {
|
|
272
|
+
limitName: string;
|
|
273
|
+
action: string;
|
|
274
|
+
associatedEntityType: string;
|
|
275
|
+
associatedEntityId: string;
|
|
276
|
+
transactionFilterType: string;
|
|
277
|
+
transactionType: string;
|
|
278
|
+
transactionGroup: string;
|
|
279
|
+
aggregationLevel: string;
|
|
280
|
+
[key: string]: string;
|
|
281
|
+
}
|
|
282
|
+
interface CreateVelocityLimitViewProps {
|
|
283
|
+
limitType: LimitType;
|
|
284
|
+
formData: CreateVelocityLimitFormData;
|
|
285
|
+
onLimitTypeChange: (value: LimitType) => void;
|
|
286
|
+
onFieldChange: (field: string, value: string) => void;
|
|
287
|
+
onSubmit: (e: React.FormEvent) => void;
|
|
288
|
+
onCancel: () => void;
|
|
289
|
+
limitTypeOptions: SelectOption$7[];
|
|
290
|
+
actionOptions: SelectOption$7[];
|
|
291
|
+
associatedEntityTypeOptions: SelectOption$7[];
|
|
292
|
+
transactionTypeOptions: SelectOption$7[];
|
|
293
|
+
transactionGroupOptions: SelectOption$7[];
|
|
294
|
+
aggregationLevelOptions: SelectOption$7[];
|
|
295
|
+
timePeriodOptions: SelectOption$7[];
|
|
296
|
+
prohibitedEntityTypeOptions: SelectOption$7[];
|
|
297
|
+
}
|
|
298
|
+
declare function CreateVelocityLimitView({ limitType, formData, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
|
|
299
|
+
|
|
176
300
|
interface BusinessFilters$1 {
|
|
177
301
|
businessId: string;
|
|
178
302
|
name: string;
|
|
@@ -2402,4 +2526,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2402
2526
|
*/
|
|
2403
2527
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2404
2528
|
|
|
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 };
|
|
2529
|
+
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
|
@@ -173,6 +173,130 @@ interface OFACDetailViewProps {
|
|
|
173
173
|
}
|
|
174
174
|
declare function OFACDetailView({ ofacCheck, entityUrl, results, onBack }: OFACDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
175
175
|
|
|
176
|
+
interface FileUpload314A {
|
|
177
|
+
id: string;
|
|
178
|
+
fileUploadedAt: string;
|
|
179
|
+
filename: string;
|
|
180
|
+
uploadBy: string;
|
|
181
|
+
recordUploaded: number;
|
|
182
|
+
businessChecked: number;
|
|
183
|
+
individualChecked: number;
|
|
184
|
+
alertsCreated: number;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
interface A314AFiltersState {
|
|
188
|
+
fromDate: Date | undefined;
|
|
189
|
+
toDate: Date | undefined;
|
|
190
|
+
}
|
|
191
|
+
interface A314AViewProps {
|
|
192
|
+
uploads: FileUpload314A[];
|
|
193
|
+
sortField: keyof FileUpload314A;
|
|
194
|
+
sortDirection: "asc" | "desc";
|
|
195
|
+
onSort: (field: keyof FileUpload314A) => void;
|
|
196
|
+
filters: A314AFiltersState;
|
|
197
|
+
onFilterChange: (field: keyof A314AFiltersState, value: Date | undefined) => void;
|
|
198
|
+
onResetFilters: () => void;
|
|
199
|
+
onApplyFilters: () => void;
|
|
200
|
+
uploadDialogOpen: boolean;
|
|
201
|
+
onUploadDialogOpenChange: (open: boolean) => void;
|
|
202
|
+
}
|
|
203
|
+
declare function A314AView({ uploads, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onApplyFilters, uploadDialogOpen, onUploadDialogOpenChange, }: A314AViewProps): react_jsx_runtime.JSX.Element;
|
|
204
|
+
|
|
205
|
+
interface VelocityLimit {
|
|
206
|
+
id: string;
|
|
207
|
+
created: string;
|
|
208
|
+
limitName: string;
|
|
209
|
+
limitType: "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
210
|
+
action: "DECLINE" | "FLAG" | "MONITOR";
|
|
211
|
+
status: "ACTIVE" | "INACTIVE" | "DELETED";
|
|
212
|
+
associatedEntity: "Account" | "Global" | "Program" | "Product";
|
|
213
|
+
associatedEntityId?: string;
|
|
214
|
+
transactionType?: string[];
|
|
215
|
+
transactionGroup?: string[];
|
|
216
|
+
aggregationLevel?: string;
|
|
217
|
+
timePeriod?: string;
|
|
218
|
+
maxAmount?: string;
|
|
219
|
+
maxCount?: string;
|
|
220
|
+
mismatchThreshold?: string;
|
|
221
|
+
comparisonMethod?: string;
|
|
222
|
+
amountThreshold?: string;
|
|
223
|
+
roundPattern?: string;
|
|
224
|
+
entityListName?: string;
|
|
225
|
+
entityType?: string;
|
|
226
|
+
prohibitedEntities?: string;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
interface VelocityLimitFilters {
|
|
230
|
+
accountNumber: string;
|
|
231
|
+
counterpartyId: string;
|
|
232
|
+
productId: string;
|
|
233
|
+
programId: string;
|
|
234
|
+
limitName: string;
|
|
235
|
+
limitType: string;
|
|
236
|
+
status: string;
|
|
237
|
+
aggregationLevel: string;
|
|
238
|
+
action: string;
|
|
239
|
+
transactionType: string;
|
|
240
|
+
transactionGroup: string;
|
|
241
|
+
}
|
|
242
|
+
interface VelocityLimitsViewProps {
|
|
243
|
+
limits: VelocityLimit[];
|
|
244
|
+
sortField: keyof VelocityLimit;
|
|
245
|
+
sortDirection: "asc" | "desc";
|
|
246
|
+
onSort: (field: keyof VelocityLimit) => void;
|
|
247
|
+
filters: VelocityLimitFilters;
|
|
248
|
+
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
249
|
+
onResetFilters: () => void;
|
|
250
|
+
onCreate: () => void;
|
|
251
|
+
onRowClick: (limit: VelocityLimit) => void;
|
|
252
|
+
getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
|
|
253
|
+
getActionVariant: (action: VelocityLimit["action"]) => "secondary";
|
|
254
|
+
}
|
|
255
|
+
declare function VelocityLimitsView({ limits, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onCreate, onRowClick, getStatusVariant, getActionVariant, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
256
|
+
|
|
257
|
+
interface VelocityLimitDetailViewProps {
|
|
258
|
+
limit: VelocityLimit | undefined;
|
|
259
|
+
onBack: () => void;
|
|
260
|
+
onDeactivate: () => void;
|
|
261
|
+
getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
|
|
262
|
+
getActionVariant: (action: VelocityLimit["action"]) => "secondary";
|
|
263
|
+
}
|
|
264
|
+
declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
265
|
+
|
|
266
|
+
type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
267
|
+
interface SelectOption$7 {
|
|
268
|
+
value: string;
|
|
269
|
+
label: string;
|
|
270
|
+
}
|
|
271
|
+
interface CreateVelocityLimitFormData {
|
|
272
|
+
limitName: string;
|
|
273
|
+
action: string;
|
|
274
|
+
associatedEntityType: string;
|
|
275
|
+
associatedEntityId: string;
|
|
276
|
+
transactionFilterType: string;
|
|
277
|
+
transactionType: string;
|
|
278
|
+
transactionGroup: string;
|
|
279
|
+
aggregationLevel: string;
|
|
280
|
+
[key: string]: string;
|
|
281
|
+
}
|
|
282
|
+
interface CreateVelocityLimitViewProps {
|
|
283
|
+
limitType: LimitType;
|
|
284
|
+
formData: CreateVelocityLimitFormData;
|
|
285
|
+
onLimitTypeChange: (value: LimitType) => void;
|
|
286
|
+
onFieldChange: (field: string, value: string) => void;
|
|
287
|
+
onSubmit: (e: React.FormEvent) => void;
|
|
288
|
+
onCancel: () => void;
|
|
289
|
+
limitTypeOptions: SelectOption$7[];
|
|
290
|
+
actionOptions: SelectOption$7[];
|
|
291
|
+
associatedEntityTypeOptions: SelectOption$7[];
|
|
292
|
+
transactionTypeOptions: SelectOption$7[];
|
|
293
|
+
transactionGroupOptions: SelectOption$7[];
|
|
294
|
+
aggregationLevelOptions: SelectOption$7[];
|
|
295
|
+
timePeriodOptions: SelectOption$7[];
|
|
296
|
+
prohibitedEntityTypeOptions: SelectOption$7[];
|
|
297
|
+
}
|
|
298
|
+
declare function CreateVelocityLimitView({ limitType, formData, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
|
|
299
|
+
|
|
176
300
|
interface BusinessFilters$1 {
|
|
177
301
|
businessId: string;
|
|
178
302
|
name: string;
|
|
@@ -2402,4 +2526,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2402
2526
|
*/
|
|
2403
2527
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2404
2528
|
|
|
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 };
|
|
2529
|
+
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 };
|