braid-ui 1.0.148 → 1.0.150
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/css/braid-ui.css +4 -4
- package/dist/css/braid-ui.min.css +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +46 -3
- package/dist/index.d.ts +46 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -204,12 +204,44 @@ interface VelocityLimitFilters {
|
|
|
204
204
|
interface VelocityLimitsViewProps {
|
|
205
205
|
table: React.ReactNode;
|
|
206
206
|
filters: VelocityLimitFilters;
|
|
207
|
+
productIdOptions: {
|
|
208
|
+
value: string;
|
|
209
|
+
label: string;
|
|
210
|
+
}[];
|
|
211
|
+
programIdOptions: {
|
|
212
|
+
value: string;
|
|
213
|
+
label: string;
|
|
214
|
+
}[];
|
|
215
|
+
limitTypeOptions: {
|
|
216
|
+
value: string;
|
|
217
|
+
label: string;
|
|
218
|
+
}[];
|
|
219
|
+
statusOptions: {
|
|
220
|
+
value: string;
|
|
221
|
+
label: string;
|
|
222
|
+
}[];
|
|
223
|
+
aggregationLevelOptions: {
|
|
224
|
+
value: string;
|
|
225
|
+
label: string;
|
|
226
|
+
}[];
|
|
227
|
+
actionOptions: {
|
|
228
|
+
value: string;
|
|
229
|
+
label: string;
|
|
230
|
+
}[];
|
|
231
|
+
transactionTypeOptions: {
|
|
232
|
+
value: string;
|
|
233
|
+
label: string;
|
|
234
|
+
}[];
|
|
235
|
+
transactionGroupOptions: {
|
|
236
|
+
value: string;
|
|
237
|
+
label: string;
|
|
238
|
+
}[];
|
|
207
239
|
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
208
240
|
onResetFilters: () => void;
|
|
209
241
|
onApplyFilters: () => void;
|
|
210
242
|
onCreate: () => void;
|
|
211
243
|
}
|
|
212
|
-
declare function VelocityLimitsView({ table, filters, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
244
|
+
declare function VelocityLimitsView({ table, filters, productIdOptions, programIdOptions, limitTypeOptions, statusOptions, aggregationLevelOptions, actionOptions, transactionTypeOptions, transactionGroupOptions, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
213
245
|
|
|
214
246
|
interface VelocityLimit {
|
|
215
247
|
id: string;
|
|
@@ -249,6 +281,10 @@ interface SelectOption$7 {
|
|
|
249
281
|
value: string;
|
|
250
282
|
label: string;
|
|
251
283
|
}
|
|
284
|
+
interface RestrictedEntity {
|
|
285
|
+
entityName: string;
|
|
286
|
+
entityType: string;
|
|
287
|
+
}
|
|
252
288
|
interface CreateVelocityLimitFormData {
|
|
253
289
|
limitName: string;
|
|
254
290
|
action: string;
|
|
@@ -263,6 +299,7 @@ interface CreateVelocityLimitFormData {
|
|
|
263
299
|
interface CreateVelocityLimitViewProps {
|
|
264
300
|
limitType: LimitType;
|
|
265
301
|
formData: CreateVelocityLimitFormData;
|
|
302
|
+
isLoading?: boolean;
|
|
266
303
|
onLimitTypeChange: (value: LimitType) => void;
|
|
267
304
|
onFieldChange: (field: string, value: string) => void;
|
|
268
305
|
onSubmit: (e: React.FormEvent) => void;
|
|
@@ -275,8 +312,14 @@ interface CreateVelocityLimitViewProps {
|
|
|
275
312
|
aggregationLevelOptions: SelectOption$7[];
|
|
276
313
|
timePeriodOptions: SelectOption$7[];
|
|
277
314
|
prohibitedEntityTypeOptions: SelectOption$7[];
|
|
315
|
+
productIdOptions: SelectOption$7[];
|
|
316
|
+
programIdOptions: SelectOption$7[];
|
|
317
|
+
restrictedEntities: RestrictedEntity[];
|
|
318
|
+
onAddRestrictedEntity: () => void;
|
|
319
|
+
onRemoveRestrictedEntity: (index: number) => void;
|
|
320
|
+
onRestrictedEntityChange: (index: number, field: keyof RestrictedEntity, value: string) => void;
|
|
278
321
|
}
|
|
279
|
-
declare function CreateVelocityLimitView({ limitType, formData, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
|
|
322
|
+
declare function CreateVelocityLimitView({ limitType, formData, isLoading, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, productIdOptions, programIdOptions, restrictedEntities, onAddRestrictedEntity, onRemoveRestrictedEntity, onRestrictedEntityChange, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
|
|
280
323
|
|
|
281
324
|
interface BusinessFilters$1 {
|
|
282
325
|
businessId: string;
|
|
@@ -2507,4 +2550,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2507
2550
|
*/
|
|
2508
2551
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2509
2552
|
|
|
2510
|
-
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 };
|
|
2553
|
+
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, type RestrictedEntity, 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
|
@@ -204,12 +204,44 @@ interface VelocityLimitFilters {
|
|
|
204
204
|
interface VelocityLimitsViewProps {
|
|
205
205
|
table: React.ReactNode;
|
|
206
206
|
filters: VelocityLimitFilters;
|
|
207
|
+
productIdOptions: {
|
|
208
|
+
value: string;
|
|
209
|
+
label: string;
|
|
210
|
+
}[];
|
|
211
|
+
programIdOptions: {
|
|
212
|
+
value: string;
|
|
213
|
+
label: string;
|
|
214
|
+
}[];
|
|
215
|
+
limitTypeOptions: {
|
|
216
|
+
value: string;
|
|
217
|
+
label: string;
|
|
218
|
+
}[];
|
|
219
|
+
statusOptions: {
|
|
220
|
+
value: string;
|
|
221
|
+
label: string;
|
|
222
|
+
}[];
|
|
223
|
+
aggregationLevelOptions: {
|
|
224
|
+
value: string;
|
|
225
|
+
label: string;
|
|
226
|
+
}[];
|
|
227
|
+
actionOptions: {
|
|
228
|
+
value: string;
|
|
229
|
+
label: string;
|
|
230
|
+
}[];
|
|
231
|
+
transactionTypeOptions: {
|
|
232
|
+
value: string;
|
|
233
|
+
label: string;
|
|
234
|
+
}[];
|
|
235
|
+
transactionGroupOptions: {
|
|
236
|
+
value: string;
|
|
237
|
+
label: string;
|
|
238
|
+
}[];
|
|
207
239
|
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
208
240
|
onResetFilters: () => void;
|
|
209
241
|
onApplyFilters: () => void;
|
|
210
242
|
onCreate: () => void;
|
|
211
243
|
}
|
|
212
|
-
declare function VelocityLimitsView({ table, filters, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
244
|
+
declare function VelocityLimitsView({ table, filters, productIdOptions, programIdOptions, limitTypeOptions, statusOptions, aggregationLevelOptions, actionOptions, transactionTypeOptions, transactionGroupOptions, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
213
245
|
|
|
214
246
|
interface VelocityLimit {
|
|
215
247
|
id: string;
|
|
@@ -249,6 +281,10 @@ interface SelectOption$7 {
|
|
|
249
281
|
value: string;
|
|
250
282
|
label: string;
|
|
251
283
|
}
|
|
284
|
+
interface RestrictedEntity {
|
|
285
|
+
entityName: string;
|
|
286
|
+
entityType: string;
|
|
287
|
+
}
|
|
252
288
|
interface CreateVelocityLimitFormData {
|
|
253
289
|
limitName: string;
|
|
254
290
|
action: string;
|
|
@@ -263,6 +299,7 @@ interface CreateVelocityLimitFormData {
|
|
|
263
299
|
interface CreateVelocityLimitViewProps {
|
|
264
300
|
limitType: LimitType;
|
|
265
301
|
formData: CreateVelocityLimitFormData;
|
|
302
|
+
isLoading?: boolean;
|
|
266
303
|
onLimitTypeChange: (value: LimitType) => void;
|
|
267
304
|
onFieldChange: (field: string, value: string) => void;
|
|
268
305
|
onSubmit: (e: React.FormEvent) => void;
|
|
@@ -275,8 +312,14 @@ interface CreateVelocityLimitViewProps {
|
|
|
275
312
|
aggregationLevelOptions: SelectOption$7[];
|
|
276
313
|
timePeriodOptions: SelectOption$7[];
|
|
277
314
|
prohibitedEntityTypeOptions: SelectOption$7[];
|
|
315
|
+
productIdOptions: SelectOption$7[];
|
|
316
|
+
programIdOptions: SelectOption$7[];
|
|
317
|
+
restrictedEntities: RestrictedEntity[];
|
|
318
|
+
onAddRestrictedEntity: () => void;
|
|
319
|
+
onRemoveRestrictedEntity: (index: number) => void;
|
|
320
|
+
onRestrictedEntityChange: (index: number, field: keyof RestrictedEntity, value: string) => void;
|
|
278
321
|
}
|
|
279
|
-
declare function CreateVelocityLimitView({ limitType, formData, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
|
|
322
|
+
declare function CreateVelocityLimitView({ limitType, formData, isLoading, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, productIdOptions, programIdOptions, restrictedEntities, onAddRestrictedEntity, onRemoveRestrictedEntity, onRestrictedEntityChange, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
|
|
280
323
|
|
|
281
324
|
interface BusinessFilters$1 {
|
|
282
325
|
businessId: string;
|
|
@@ -2507,4 +2550,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2507
2550
|
*/
|
|
2508
2551
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2509
2552
|
|
|
2510
|
-
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 };
|
|
2553
|
+
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, type RestrictedEntity, 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 };
|