braid-ui 1.0.172 → 1.0.174
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 +0 -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 +59 -50
- package/dist/index.d.ts +59 -50
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -309,7 +309,7 @@ interface VelocityLimitDetailViewProps {
|
|
|
309
309
|
declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, onAssociatedEntityClick, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
310
310
|
|
|
311
311
|
type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
312
|
-
interface SelectOption$
|
|
312
|
+
interface SelectOption$9 {
|
|
313
313
|
value: string;
|
|
314
314
|
label: string;
|
|
315
315
|
}
|
|
@@ -337,16 +337,16 @@ interface CreateVelocityLimitViewProps {
|
|
|
337
337
|
onMultiFieldChange: (field: string, value: string[]) => void;
|
|
338
338
|
onSubmit: (e: React.FormEvent) => void;
|
|
339
339
|
onCancel: () => void;
|
|
340
|
-
limitTypeOptions: SelectOption$
|
|
341
|
-
actionOptions: SelectOption$
|
|
342
|
-
associatedEntityTypeOptions: SelectOption$
|
|
343
|
-
transactionTypeOptions: SelectOption$
|
|
344
|
-
transactionGroupOptions: SelectOption$
|
|
345
|
-
aggregationLevelOptions: SelectOption$
|
|
346
|
-
timePeriodOptions: SelectOption$
|
|
347
|
-
prohibitedEntityTypeOptions: SelectOption$
|
|
348
|
-
productIdOptions: SelectOption$
|
|
349
|
-
programIdOptions: SelectOption$
|
|
340
|
+
limitTypeOptions: SelectOption$9[];
|
|
341
|
+
actionOptions: SelectOption$9[];
|
|
342
|
+
associatedEntityTypeOptions: SelectOption$9[];
|
|
343
|
+
transactionTypeOptions: SelectOption$9[];
|
|
344
|
+
transactionGroupOptions: SelectOption$9[];
|
|
345
|
+
aggregationLevelOptions: SelectOption$9[];
|
|
346
|
+
timePeriodOptions: SelectOption$9[];
|
|
347
|
+
prohibitedEntityTypeOptions: SelectOption$9[];
|
|
348
|
+
productIdOptions: SelectOption$9[];
|
|
349
|
+
programIdOptions: SelectOption$9[];
|
|
350
350
|
restrictedEntities: RestrictedEntity[];
|
|
351
351
|
onAddRestrictedEntity: () => void;
|
|
352
352
|
onRemoveRestrictedEntity: (index: number) => void;
|
|
@@ -517,7 +517,7 @@ interface BusinessAccount$1 {
|
|
|
517
517
|
bankName: string;
|
|
518
518
|
bankAccountType: string;
|
|
519
519
|
}
|
|
520
|
-
interface SelectOption$
|
|
520
|
+
interface SelectOption$8 {
|
|
521
521
|
value: string;
|
|
522
522
|
label: string;
|
|
523
523
|
}
|
|
@@ -534,8 +534,8 @@ interface BusinessDetailViewProps {
|
|
|
534
534
|
businessAccounts: BusinessAccount$1[];
|
|
535
535
|
currentStatus: string;
|
|
536
536
|
isEditingProfile: boolean;
|
|
537
|
-
statusOptions: SelectOption$
|
|
538
|
-
businessEntityTypeOptions: SelectOption$
|
|
537
|
+
statusOptions: SelectOption$8[];
|
|
538
|
+
businessEntityTypeOptions: SelectOption$8[];
|
|
539
539
|
onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
|
|
540
540
|
onProfileDataChange: (profile: BusinessProfile) => void | Promise<void>;
|
|
541
541
|
onToggleProfileEdit: () => void;
|
|
@@ -813,7 +813,7 @@ interface AccountFormValues {
|
|
|
813
813
|
fundingAccountNumber?: string;
|
|
814
814
|
sweepAccountNumber?: string;
|
|
815
815
|
}
|
|
816
|
-
interface SelectOption$
|
|
816
|
+
interface SelectOption$7 {
|
|
817
817
|
value: string;
|
|
818
818
|
label: string;
|
|
819
819
|
}
|
|
@@ -821,8 +821,8 @@ interface AccountDetailViewProps {
|
|
|
821
821
|
account: BusinessAccount;
|
|
822
822
|
currentStatus: string;
|
|
823
823
|
onStatusChange: (status: string) => void;
|
|
824
|
-
statusOptions: SelectOption$
|
|
825
|
-
canAcceptSweepOptions: SelectOption$
|
|
824
|
+
statusOptions: SelectOption$7[];
|
|
825
|
+
canAcceptSweepOptions: SelectOption$7[];
|
|
826
826
|
form: UseFormReturn<AccountFormValues> & {
|
|
827
827
|
isEditing: boolean;
|
|
828
828
|
handleToggleEdit: () => void;
|
|
@@ -955,7 +955,7 @@ declare const externalAccountSchema: z.ZodObject<{
|
|
|
955
955
|
}, z.core.$strip>;
|
|
956
956
|
type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
|
|
957
957
|
|
|
958
|
-
interface SelectOption$
|
|
958
|
+
interface SelectOption$6 {
|
|
959
959
|
value: string;
|
|
960
960
|
label: string;
|
|
961
961
|
}
|
|
@@ -972,7 +972,7 @@ interface IndividualDetailViewProps {
|
|
|
972
972
|
profile: IndividualProfileEdit;
|
|
973
973
|
onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
|
|
974
974
|
status: string;
|
|
975
|
-
statusOptions: SelectOption$
|
|
975
|
+
statusOptions: SelectOption$6[];
|
|
976
976
|
onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
|
|
977
977
|
latestOFAC?: OFACCheck;
|
|
978
978
|
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
@@ -1008,7 +1008,7 @@ interface IndividualDetailViewProps {
|
|
|
1008
1008
|
}
|
|
1009
1009
|
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onNavigateToBusiness, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, identityVerification, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1010
1010
|
|
|
1011
|
-
type SelectOption$
|
|
1011
|
+
type SelectOption$5 = {
|
|
1012
1012
|
value: string;
|
|
1013
1013
|
label: string;
|
|
1014
1014
|
};
|
|
@@ -1023,8 +1023,8 @@ interface CreateIndividualViewProps {
|
|
|
1023
1023
|
onCancel: () => void;
|
|
1024
1024
|
onSubmit: () => void;
|
|
1025
1025
|
isSubmitting?: boolean;
|
|
1026
|
-
idTypeOptions: SelectOption$
|
|
1027
|
-
productOptions: SelectOption$
|
|
1026
|
+
idTypeOptions: SelectOption$5[];
|
|
1027
|
+
productOptions: SelectOption$5[];
|
|
1028
1028
|
}
|
|
1029
1029
|
declare const CreateIndividualView: ({ form, onCancel, onSubmit, isSubmitting, idTypeOptions, productOptions }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
|
|
1030
1030
|
|
|
@@ -1101,7 +1101,7 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
|
|
|
1101
1101
|
|
|
1102
1102
|
declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
|
|
1103
1103
|
|
|
1104
|
-
interface SelectOption$
|
|
1104
|
+
interface SelectOption$4 {
|
|
1105
1105
|
value: string;
|
|
1106
1106
|
label: string;
|
|
1107
1107
|
}
|
|
@@ -1120,7 +1120,7 @@ interface BusinessProfileCardProps {
|
|
|
1120
1120
|
onToggleIdNumberVisibility?: () => void;
|
|
1121
1121
|
isLoadingIdNumber?: boolean;
|
|
1122
1122
|
revealedIdNumber?: string | null;
|
|
1123
|
-
businessEntityTypeOptions?: SelectOption$
|
|
1123
|
+
businessEntityTypeOptions?: SelectOption$4[];
|
|
1124
1124
|
}
|
|
1125
1125
|
declare const BusinessProfileCard: ({ data, businessId, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions, onProductIdClick, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, businessEntityTypeOptions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
1126
1126
|
|
|
@@ -1251,7 +1251,7 @@ interface ListPageProps {
|
|
|
1251
1251
|
}
|
|
1252
1252
|
declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1253
1253
|
|
|
1254
|
-
interface OptionItem$
|
|
1254
|
+
interface OptionItem$3 {
|
|
1255
1255
|
value: string;
|
|
1256
1256
|
label: string;
|
|
1257
1257
|
}
|
|
@@ -1289,10 +1289,10 @@ interface CreateFeeViewProps {
|
|
|
1289
1289
|
onSubmit: (e: React.FormEvent) => void;
|
|
1290
1290
|
onCancel: () => void;
|
|
1291
1291
|
isSubmitting?: boolean;
|
|
1292
|
-
feeTypeOptions: OptionItem$
|
|
1293
|
-
transactionGroupOptions: OptionItem$
|
|
1294
|
-
transactionTypeOptions: OptionItem$
|
|
1295
|
-
associatedEntityTypeOptions: OptionItem$
|
|
1292
|
+
feeTypeOptions: OptionItem$3[];
|
|
1293
|
+
transactionGroupOptions: OptionItem$3[];
|
|
1294
|
+
transactionTypeOptions: OptionItem$3[];
|
|
1295
|
+
associatedEntityTypeOptions: OptionItem$3[];
|
|
1296
1296
|
}
|
|
1297
1297
|
declare const CreateFeeView: ({ formData, onFieldChange, onSameDayChange, transactionScope, onTransactionScopeChange, transactionGroups, onTransactionGroupsChange, transactionTypes, onTransactionTypesChange, tiers, newTier, onNewTierChange, onAddTier, onRemoveTier, nextStartCount, onSubmit, onCancel, isSubmitting, feeTypeOptions, transactionGroupOptions, transactionTypeOptions, associatedEntityTypeOptions, }: CreateFeeViewProps) => react_jsx_runtime.JSX.Element;
|
|
1298
1298
|
|
|
@@ -1336,7 +1336,7 @@ interface FeeFilters {
|
|
|
1336
1336
|
transactionTypes: string[];
|
|
1337
1337
|
}
|
|
1338
1338
|
|
|
1339
|
-
interface SelectOption$
|
|
1339
|
+
interface SelectOption$3 {
|
|
1340
1340
|
value: string;
|
|
1341
1341
|
label: string;
|
|
1342
1342
|
}
|
|
@@ -1347,8 +1347,8 @@ interface FeesViewProps {
|
|
|
1347
1347
|
onApplyFilters: () => void;
|
|
1348
1348
|
onCreateFee: () => void;
|
|
1349
1349
|
table: React.ReactNode;
|
|
1350
|
-
productOptions: SelectOption$
|
|
1351
|
-
programOptions: SelectOption$
|
|
1350
|
+
productOptions: SelectOption$3[];
|
|
1351
|
+
programOptions: SelectOption$3[];
|
|
1352
1352
|
}
|
|
1353
1353
|
declare const FeesView: ({ filters, onFilterChange, onResetFilters, onApplyFilters, onCreateFee, table, productOptions, programOptions, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
|
|
1354
1354
|
|
|
@@ -1365,14 +1365,9 @@ interface Developer {
|
|
|
1365
1365
|
whitelistedIpAddresses: string[];
|
|
1366
1366
|
}
|
|
1367
1367
|
|
|
1368
|
-
interface OptionItem$3 {
|
|
1369
|
-
value: string;
|
|
1370
|
-
label: string;
|
|
1371
|
-
}
|
|
1372
1368
|
interface DeveloperDetailViewProps {
|
|
1373
1369
|
developer: Developer;
|
|
1374
|
-
|
|
1375
|
-
onEnableIpRestrictionsChange: (value: string) => void;
|
|
1370
|
+
onSave?: (data: Developer) => void | Promise<void>;
|
|
1376
1371
|
whitelistDialogOpen: boolean;
|
|
1377
1372
|
onWhitelistDialogOpenChange: (open: boolean) => void;
|
|
1378
1373
|
newIpAddress: string;
|
|
@@ -1381,7 +1376,7 @@ interface DeveloperDetailViewProps {
|
|
|
1381
1376
|
isSubmittingWhitelist: boolean;
|
|
1382
1377
|
onRemoveIpAddress: (ip: string) => void;
|
|
1383
1378
|
}
|
|
1384
|
-
declare const DeveloperDetailView: ({ developer,
|
|
1379
|
+
declare const DeveloperDetailView: ({ developer, onSave, whitelistDialogOpen, onWhitelistDialogOpenChange, newIpAddress, onNewIpAddressChange, onWhitelistSubmit, isSubmittingWhitelist, onRemoveIpAddress, }: DeveloperDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1385
1380
|
|
|
1386
1381
|
interface OptionItem$2 {
|
|
1387
1382
|
value: string;
|
|
@@ -1462,7 +1457,7 @@ type ProductTimelineEvent = {
|
|
|
1462
1457
|
changes: FieldChange$1[];
|
|
1463
1458
|
};
|
|
1464
1459
|
|
|
1465
|
-
interface SelectOption$
|
|
1460
|
+
interface SelectOption$2 {
|
|
1466
1461
|
value: string;
|
|
1467
1462
|
label: string;
|
|
1468
1463
|
}
|
|
@@ -1489,22 +1484,25 @@ interface FundsAvailabilityFormData {
|
|
|
1489
1484
|
interface ProductDetailViewProps {
|
|
1490
1485
|
product: Product;
|
|
1491
1486
|
timeline: ProductTimelineEvent[];
|
|
1492
|
-
operatingModelOptions: SelectOption$
|
|
1493
|
-
cipConfigOptions: SelectOption$
|
|
1494
|
-
accountTypeOptions: SelectOption$
|
|
1495
|
-
customerAccountTypeOptions: SelectOption$
|
|
1496
|
-
activeOptions: SelectOption$
|
|
1497
|
-
ofacOptionOptions: SelectOption$
|
|
1498
|
-
enablePresetOptions: SelectOption$
|
|
1487
|
+
operatingModelOptions: SelectOption$2[];
|
|
1488
|
+
cipConfigOptions: SelectOption$2[];
|
|
1489
|
+
accountTypeOptions: SelectOption$2[];
|
|
1490
|
+
customerAccountTypeOptions: SelectOption$2[];
|
|
1491
|
+
activeOptions: SelectOption$2[];
|
|
1492
|
+
ofacOptionOptions: SelectOption$2[];
|
|
1493
|
+
enablePresetOptions: SelectOption$2[];
|
|
1499
1494
|
onSaveDetails: (data: ProductDetailsFormData) => void | Promise<void>;
|
|
1500
1495
|
onSaveFundsAvailability: (data: FundsAvailabilityFormData) => void | Promise<void>;
|
|
1501
1496
|
onProgramClick: (programId: string) => void;
|
|
1502
1497
|
onTenantClick: (tenantId: string) => void;
|
|
1503
1498
|
onCounterpartiesClick: () => void;
|
|
1499
|
+
onCreateCounterparty?: () => void;
|
|
1504
1500
|
onLimitsClick: () => void;
|
|
1501
|
+
onCreateLimit?: () => void;
|
|
1505
1502
|
onFeesClick: () => void;
|
|
1503
|
+
onCreateFee?: () => void;
|
|
1506
1504
|
}
|
|
1507
|
-
declare const ProductDetailView: ({ product, timeline, operatingModelOptions, cipConfigOptions, accountTypeOptions, customerAccountTypeOptions, activeOptions, ofacOptionOptions, enablePresetOptions, onSaveDetails, onSaveFundsAvailability, onProgramClick, onTenantClick, onCounterpartiesClick, onLimitsClick, onFeesClick, }: ProductDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1505
|
+
declare const ProductDetailView: ({ product, timeline, operatingModelOptions, cipConfigOptions, accountTypeOptions, customerAccountTypeOptions, activeOptions, ofacOptionOptions, enablePresetOptions, onSaveDetails, onSaveFundsAvailability, onProgramClick, onTenantClick, onCounterpartiesClick, onCreateCounterparty, onLimitsClick, onCreateLimit, onFeesClick, onCreateFee, }: ProductDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1508
1506
|
|
|
1509
1507
|
interface OptionItem$1 {
|
|
1510
1508
|
value: string;
|
|
@@ -1568,10 +1566,21 @@ interface Program {
|
|
|
1568
1566
|
updatedAt: string;
|
|
1569
1567
|
}
|
|
1570
1568
|
|
|
1569
|
+
interface SelectOption$1 {
|
|
1570
|
+
value: string;
|
|
1571
|
+
label: string;
|
|
1572
|
+
}
|
|
1571
1573
|
interface ProgramDetailViewProps {
|
|
1572
1574
|
program: Program;
|
|
1575
|
+
programTypeOptions: SelectOption$1[];
|
|
1576
|
+
operatingModelOptions: SelectOption$1[];
|
|
1577
|
+
onSave?: (data: Program) => void | Promise<void>;
|
|
1578
|
+
onNavigateFees?: () => void;
|
|
1579
|
+
onCreateFee?: () => void;
|
|
1580
|
+
onNavigateLimits?: () => void;
|
|
1581
|
+
onCreateLimit?: () => void;
|
|
1573
1582
|
}
|
|
1574
|
-
declare const ProgramDetailView: ({ program }: ProgramDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1583
|
+
declare const ProgramDetailView: ({ program, programTypeOptions, operatingModelOptions, onSave, onNavigateFees, onCreateFee, onNavigateLimits, onCreateLimit, }: ProgramDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1575
1584
|
|
|
1576
1585
|
interface OptionItem {
|
|
1577
1586
|
value: string;
|
|
@@ -3040,4 +3049,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
3040
3049
|
*/
|
|
3041
3050
|
declare function downloadCSV(content: string, filename: string): void;
|
|
3042
3051
|
|
|
3043
|
-
export { A314ADetailView, type A314ADetailViewProps, type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateDeveloperFormData, CreateDeveloperView, type CreateDeveloperViewProps, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, type CreateProductFormData, CreateProductView, type CreateProductViewProps, type CreateProgramFormData, CreateProgramView, type CreateProgramViewProps, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, DeveloperDetailView, type DeveloperDetailViewProps, Developers, DevelopersView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, type FundsAvailabilityFormData, 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, ProductDetailView, type ProductDetailsFormData, Products, ProductsView, ProgramDetailView, ProgramsView, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$
|
|
3052
|
+
export { A314ADetailView, type A314ADetailViewProps, type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateDeveloperFormData, CreateDeveloperView, type CreateDeveloperViewProps, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, type CreateProductFormData, CreateProductView, type CreateProductViewProps, type CreateProgramFormData, CreateProgramView, type CreateProgramViewProps, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, DeveloperDetailView, type DeveloperDetailViewProps, Developers, DevelopersView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, type FundsAvailabilityFormData, 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, ProductDetailView, type ProductDetailsFormData, Products, ProductsView, ProgramDetailView, ProgramsView, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$9 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, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -309,7 +309,7 @@ interface VelocityLimitDetailViewProps {
|
|
|
309
309
|
declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, onAssociatedEntityClick, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
310
310
|
|
|
311
311
|
type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
312
|
-
interface SelectOption$
|
|
312
|
+
interface SelectOption$9 {
|
|
313
313
|
value: string;
|
|
314
314
|
label: string;
|
|
315
315
|
}
|
|
@@ -337,16 +337,16 @@ interface CreateVelocityLimitViewProps {
|
|
|
337
337
|
onMultiFieldChange: (field: string, value: string[]) => void;
|
|
338
338
|
onSubmit: (e: React.FormEvent) => void;
|
|
339
339
|
onCancel: () => void;
|
|
340
|
-
limitTypeOptions: SelectOption$
|
|
341
|
-
actionOptions: SelectOption$
|
|
342
|
-
associatedEntityTypeOptions: SelectOption$
|
|
343
|
-
transactionTypeOptions: SelectOption$
|
|
344
|
-
transactionGroupOptions: SelectOption$
|
|
345
|
-
aggregationLevelOptions: SelectOption$
|
|
346
|
-
timePeriodOptions: SelectOption$
|
|
347
|
-
prohibitedEntityTypeOptions: SelectOption$
|
|
348
|
-
productIdOptions: SelectOption$
|
|
349
|
-
programIdOptions: SelectOption$
|
|
340
|
+
limitTypeOptions: SelectOption$9[];
|
|
341
|
+
actionOptions: SelectOption$9[];
|
|
342
|
+
associatedEntityTypeOptions: SelectOption$9[];
|
|
343
|
+
transactionTypeOptions: SelectOption$9[];
|
|
344
|
+
transactionGroupOptions: SelectOption$9[];
|
|
345
|
+
aggregationLevelOptions: SelectOption$9[];
|
|
346
|
+
timePeriodOptions: SelectOption$9[];
|
|
347
|
+
prohibitedEntityTypeOptions: SelectOption$9[];
|
|
348
|
+
productIdOptions: SelectOption$9[];
|
|
349
|
+
programIdOptions: SelectOption$9[];
|
|
350
350
|
restrictedEntities: RestrictedEntity[];
|
|
351
351
|
onAddRestrictedEntity: () => void;
|
|
352
352
|
onRemoveRestrictedEntity: (index: number) => void;
|
|
@@ -517,7 +517,7 @@ interface BusinessAccount$1 {
|
|
|
517
517
|
bankName: string;
|
|
518
518
|
bankAccountType: string;
|
|
519
519
|
}
|
|
520
|
-
interface SelectOption$
|
|
520
|
+
interface SelectOption$8 {
|
|
521
521
|
value: string;
|
|
522
522
|
label: string;
|
|
523
523
|
}
|
|
@@ -534,8 +534,8 @@ interface BusinessDetailViewProps {
|
|
|
534
534
|
businessAccounts: BusinessAccount$1[];
|
|
535
535
|
currentStatus: string;
|
|
536
536
|
isEditingProfile: boolean;
|
|
537
|
-
statusOptions: SelectOption$
|
|
538
|
-
businessEntityTypeOptions: SelectOption$
|
|
537
|
+
statusOptions: SelectOption$8[];
|
|
538
|
+
businessEntityTypeOptions: SelectOption$8[];
|
|
539
539
|
onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
|
|
540
540
|
onProfileDataChange: (profile: BusinessProfile) => void | Promise<void>;
|
|
541
541
|
onToggleProfileEdit: () => void;
|
|
@@ -813,7 +813,7 @@ interface AccountFormValues {
|
|
|
813
813
|
fundingAccountNumber?: string;
|
|
814
814
|
sweepAccountNumber?: string;
|
|
815
815
|
}
|
|
816
|
-
interface SelectOption$
|
|
816
|
+
interface SelectOption$7 {
|
|
817
817
|
value: string;
|
|
818
818
|
label: string;
|
|
819
819
|
}
|
|
@@ -821,8 +821,8 @@ interface AccountDetailViewProps {
|
|
|
821
821
|
account: BusinessAccount;
|
|
822
822
|
currentStatus: string;
|
|
823
823
|
onStatusChange: (status: string) => void;
|
|
824
|
-
statusOptions: SelectOption$
|
|
825
|
-
canAcceptSweepOptions: SelectOption$
|
|
824
|
+
statusOptions: SelectOption$7[];
|
|
825
|
+
canAcceptSweepOptions: SelectOption$7[];
|
|
826
826
|
form: UseFormReturn<AccountFormValues> & {
|
|
827
827
|
isEditing: boolean;
|
|
828
828
|
handleToggleEdit: () => void;
|
|
@@ -955,7 +955,7 @@ declare const externalAccountSchema: z.ZodObject<{
|
|
|
955
955
|
}, z.core.$strip>;
|
|
956
956
|
type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
|
|
957
957
|
|
|
958
|
-
interface SelectOption$
|
|
958
|
+
interface SelectOption$6 {
|
|
959
959
|
value: string;
|
|
960
960
|
label: string;
|
|
961
961
|
}
|
|
@@ -972,7 +972,7 @@ interface IndividualDetailViewProps {
|
|
|
972
972
|
profile: IndividualProfileEdit;
|
|
973
973
|
onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
|
|
974
974
|
status: string;
|
|
975
|
-
statusOptions: SelectOption$
|
|
975
|
+
statusOptions: SelectOption$6[];
|
|
976
976
|
onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
|
|
977
977
|
latestOFAC?: OFACCheck;
|
|
978
978
|
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
@@ -1008,7 +1008,7 @@ interface IndividualDetailViewProps {
|
|
|
1008
1008
|
}
|
|
1009
1009
|
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onNavigateToBusiness, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, identityVerification, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1010
1010
|
|
|
1011
|
-
type SelectOption$
|
|
1011
|
+
type SelectOption$5 = {
|
|
1012
1012
|
value: string;
|
|
1013
1013
|
label: string;
|
|
1014
1014
|
};
|
|
@@ -1023,8 +1023,8 @@ interface CreateIndividualViewProps {
|
|
|
1023
1023
|
onCancel: () => void;
|
|
1024
1024
|
onSubmit: () => void;
|
|
1025
1025
|
isSubmitting?: boolean;
|
|
1026
|
-
idTypeOptions: SelectOption$
|
|
1027
|
-
productOptions: SelectOption$
|
|
1026
|
+
idTypeOptions: SelectOption$5[];
|
|
1027
|
+
productOptions: SelectOption$5[];
|
|
1028
1028
|
}
|
|
1029
1029
|
declare const CreateIndividualView: ({ form, onCancel, onSubmit, isSubmitting, idTypeOptions, productOptions }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
|
|
1030
1030
|
|
|
@@ -1101,7 +1101,7 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
|
|
|
1101
1101
|
|
|
1102
1102
|
declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
|
|
1103
1103
|
|
|
1104
|
-
interface SelectOption$
|
|
1104
|
+
interface SelectOption$4 {
|
|
1105
1105
|
value: string;
|
|
1106
1106
|
label: string;
|
|
1107
1107
|
}
|
|
@@ -1120,7 +1120,7 @@ interface BusinessProfileCardProps {
|
|
|
1120
1120
|
onToggleIdNumberVisibility?: () => void;
|
|
1121
1121
|
isLoadingIdNumber?: boolean;
|
|
1122
1122
|
revealedIdNumber?: string | null;
|
|
1123
|
-
businessEntityTypeOptions?: SelectOption$
|
|
1123
|
+
businessEntityTypeOptions?: SelectOption$4[];
|
|
1124
1124
|
}
|
|
1125
1125
|
declare const BusinessProfileCard: ({ data, businessId, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions, onProductIdClick, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, businessEntityTypeOptions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
1126
1126
|
|
|
@@ -1251,7 +1251,7 @@ interface ListPageProps {
|
|
|
1251
1251
|
}
|
|
1252
1252
|
declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1253
1253
|
|
|
1254
|
-
interface OptionItem$
|
|
1254
|
+
interface OptionItem$3 {
|
|
1255
1255
|
value: string;
|
|
1256
1256
|
label: string;
|
|
1257
1257
|
}
|
|
@@ -1289,10 +1289,10 @@ interface CreateFeeViewProps {
|
|
|
1289
1289
|
onSubmit: (e: React.FormEvent) => void;
|
|
1290
1290
|
onCancel: () => void;
|
|
1291
1291
|
isSubmitting?: boolean;
|
|
1292
|
-
feeTypeOptions: OptionItem$
|
|
1293
|
-
transactionGroupOptions: OptionItem$
|
|
1294
|
-
transactionTypeOptions: OptionItem$
|
|
1295
|
-
associatedEntityTypeOptions: OptionItem$
|
|
1292
|
+
feeTypeOptions: OptionItem$3[];
|
|
1293
|
+
transactionGroupOptions: OptionItem$3[];
|
|
1294
|
+
transactionTypeOptions: OptionItem$3[];
|
|
1295
|
+
associatedEntityTypeOptions: OptionItem$3[];
|
|
1296
1296
|
}
|
|
1297
1297
|
declare const CreateFeeView: ({ formData, onFieldChange, onSameDayChange, transactionScope, onTransactionScopeChange, transactionGroups, onTransactionGroupsChange, transactionTypes, onTransactionTypesChange, tiers, newTier, onNewTierChange, onAddTier, onRemoveTier, nextStartCount, onSubmit, onCancel, isSubmitting, feeTypeOptions, transactionGroupOptions, transactionTypeOptions, associatedEntityTypeOptions, }: CreateFeeViewProps) => react_jsx_runtime.JSX.Element;
|
|
1298
1298
|
|
|
@@ -1336,7 +1336,7 @@ interface FeeFilters {
|
|
|
1336
1336
|
transactionTypes: string[];
|
|
1337
1337
|
}
|
|
1338
1338
|
|
|
1339
|
-
interface SelectOption$
|
|
1339
|
+
interface SelectOption$3 {
|
|
1340
1340
|
value: string;
|
|
1341
1341
|
label: string;
|
|
1342
1342
|
}
|
|
@@ -1347,8 +1347,8 @@ interface FeesViewProps {
|
|
|
1347
1347
|
onApplyFilters: () => void;
|
|
1348
1348
|
onCreateFee: () => void;
|
|
1349
1349
|
table: React.ReactNode;
|
|
1350
|
-
productOptions: SelectOption$
|
|
1351
|
-
programOptions: SelectOption$
|
|
1350
|
+
productOptions: SelectOption$3[];
|
|
1351
|
+
programOptions: SelectOption$3[];
|
|
1352
1352
|
}
|
|
1353
1353
|
declare const FeesView: ({ filters, onFilterChange, onResetFilters, onApplyFilters, onCreateFee, table, productOptions, programOptions, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
|
|
1354
1354
|
|
|
@@ -1365,14 +1365,9 @@ interface Developer {
|
|
|
1365
1365
|
whitelistedIpAddresses: string[];
|
|
1366
1366
|
}
|
|
1367
1367
|
|
|
1368
|
-
interface OptionItem$3 {
|
|
1369
|
-
value: string;
|
|
1370
|
-
label: string;
|
|
1371
|
-
}
|
|
1372
1368
|
interface DeveloperDetailViewProps {
|
|
1373
1369
|
developer: Developer;
|
|
1374
|
-
|
|
1375
|
-
onEnableIpRestrictionsChange: (value: string) => void;
|
|
1370
|
+
onSave?: (data: Developer) => void | Promise<void>;
|
|
1376
1371
|
whitelistDialogOpen: boolean;
|
|
1377
1372
|
onWhitelistDialogOpenChange: (open: boolean) => void;
|
|
1378
1373
|
newIpAddress: string;
|
|
@@ -1381,7 +1376,7 @@ interface DeveloperDetailViewProps {
|
|
|
1381
1376
|
isSubmittingWhitelist: boolean;
|
|
1382
1377
|
onRemoveIpAddress: (ip: string) => void;
|
|
1383
1378
|
}
|
|
1384
|
-
declare const DeveloperDetailView: ({ developer,
|
|
1379
|
+
declare const DeveloperDetailView: ({ developer, onSave, whitelistDialogOpen, onWhitelistDialogOpenChange, newIpAddress, onNewIpAddressChange, onWhitelistSubmit, isSubmittingWhitelist, onRemoveIpAddress, }: DeveloperDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1385
1380
|
|
|
1386
1381
|
interface OptionItem$2 {
|
|
1387
1382
|
value: string;
|
|
@@ -1462,7 +1457,7 @@ type ProductTimelineEvent = {
|
|
|
1462
1457
|
changes: FieldChange$1[];
|
|
1463
1458
|
};
|
|
1464
1459
|
|
|
1465
|
-
interface SelectOption$
|
|
1460
|
+
interface SelectOption$2 {
|
|
1466
1461
|
value: string;
|
|
1467
1462
|
label: string;
|
|
1468
1463
|
}
|
|
@@ -1489,22 +1484,25 @@ interface FundsAvailabilityFormData {
|
|
|
1489
1484
|
interface ProductDetailViewProps {
|
|
1490
1485
|
product: Product;
|
|
1491
1486
|
timeline: ProductTimelineEvent[];
|
|
1492
|
-
operatingModelOptions: SelectOption$
|
|
1493
|
-
cipConfigOptions: SelectOption$
|
|
1494
|
-
accountTypeOptions: SelectOption$
|
|
1495
|
-
customerAccountTypeOptions: SelectOption$
|
|
1496
|
-
activeOptions: SelectOption$
|
|
1497
|
-
ofacOptionOptions: SelectOption$
|
|
1498
|
-
enablePresetOptions: SelectOption$
|
|
1487
|
+
operatingModelOptions: SelectOption$2[];
|
|
1488
|
+
cipConfigOptions: SelectOption$2[];
|
|
1489
|
+
accountTypeOptions: SelectOption$2[];
|
|
1490
|
+
customerAccountTypeOptions: SelectOption$2[];
|
|
1491
|
+
activeOptions: SelectOption$2[];
|
|
1492
|
+
ofacOptionOptions: SelectOption$2[];
|
|
1493
|
+
enablePresetOptions: SelectOption$2[];
|
|
1499
1494
|
onSaveDetails: (data: ProductDetailsFormData) => void | Promise<void>;
|
|
1500
1495
|
onSaveFundsAvailability: (data: FundsAvailabilityFormData) => void | Promise<void>;
|
|
1501
1496
|
onProgramClick: (programId: string) => void;
|
|
1502
1497
|
onTenantClick: (tenantId: string) => void;
|
|
1503
1498
|
onCounterpartiesClick: () => void;
|
|
1499
|
+
onCreateCounterparty?: () => void;
|
|
1504
1500
|
onLimitsClick: () => void;
|
|
1501
|
+
onCreateLimit?: () => void;
|
|
1505
1502
|
onFeesClick: () => void;
|
|
1503
|
+
onCreateFee?: () => void;
|
|
1506
1504
|
}
|
|
1507
|
-
declare const ProductDetailView: ({ product, timeline, operatingModelOptions, cipConfigOptions, accountTypeOptions, customerAccountTypeOptions, activeOptions, ofacOptionOptions, enablePresetOptions, onSaveDetails, onSaveFundsAvailability, onProgramClick, onTenantClick, onCounterpartiesClick, onLimitsClick, onFeesClick, }: ProductDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1505
|
+
declare const ProductDetailView: ({ product, timeline, operatingModelOptions, cipConfigOptions, accountTypeOptions, customerAccountTypeOptions, activeOptions, ofacOptionOptions, enablePresetOptions, onSaveDetails, onSaveFundsAvailability, onProgramClick, onTenantClick, onCounterpartiesClick, onCreateCounterparty, onLimitsClick, onCreateLimit, onFeesClick, onCreateFee, }: ProductDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1508
1506
|
|
|
1509
1507
|
interface OptionItem$1 {
|
|
1510
1508
|
value: string;
|
|
@@ -1568,10 +1566,21 @@ interface Program {
|
|
|
1568
1566
|
updatedAt: string;
|
|
1569
1567
|
}
|
|
1570
1568
|
|
|
1569
|
+
interface SelectOption$1 {
|
|
1570
|
+
value: string;
|
|
1571
|
+
label: string;
|
|
1572
|
+
}
|
|
1571
1573
|
interface ProgramDetailViewProps {
|
|
1572
1574
|
program: Program;
|
|
1575
|
+
programTypeOptions: SelectOption$1[];
|
|
1576
|
+
operatingModelOptions: SelectOption$1[];
|
|
1577
|
+
onSave?: (data: Program) => void | Promise<void>;
|
|
1578
|
+
onNavigateFees?: () => void;
|
|
1579
|
+
onCreateFee?: () => void;
|
|
1580
|
+
onNavigateLimits?: () => void;
|
|
1581
|
+
onCreateLimit?: () => void;
|
|
1573
1582
|
}
|
|
1574
|
-
declare const ProgramDetailView: ({ program }: ProgramDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1583
|
+
declare const ProgramDetailView: ({ program, programTypeOptions, operatingModelOptions, onSave, onNavigateFees, onCreateFee, onNavigateLimits, onCreateLimit, }: ProgramDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1575
1584
|
|
|
1576
1585
|
interface OptionItem {
|
|
1577
1586
|
value: string;
|
|
@@ -3040,4 +3049,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
3040
3049
|
*/
|
|
3041
3050
|
declare function downloadCSV(content: string, filename: string): void;
|
|
3042
3051
|
|
|
3043
|
-
export { A314ADetailView, type A314ADetailViewProps, type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateDeveloperFormData, CreateDeveloperView, type CreateDeveloperViewProps, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, type CreateProductFormData, CreateProductView, type CreateProductViewProps, type CreateProgramFormData, CreateProgramView, type CreateProgramViewProps, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, DeveloperDetailView, type DeveloperDetailViewProps, Developers, DevelopersView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, type FundsAvailabilityFormData, 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, ProductDetailView, type ProductDetailsFormData, Products, ProductsView, ProgramDetailView, ProgramsView, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$
|
|
3052
|
+
export { A314ADetailView, type A314ADetailViewProps, type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateDeveloperFormData, CreateDeveloperView, type CreateDeveloperViewProps, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, type CreateProductFormData, CreateProductView, type CreateProductViewProps, type CreateProgramFormData, CreateProgramView, type CreateProgramViewProps, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, DeveloperDetailView, type DeveloperDetailViewProps, Developers, DevelopersView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, type FundsAvailabilityFormData, 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, ProductDetailView, type ProductDetailsFormData, Products, ProductsView, ProgramDetailView, ProgramsView, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$9 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, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|