braid-ui 1.0.176 → 1.0.177
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 +160 -39
- package/dist/index.d.ts +160 -39
- 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$c {
|
|
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$c[];
|
|
341
|
+
actionOptions: SelectOption$c[];
|
|
342
|
+
associatedEntityTypeOptions: SelectOption$c[];
|
|
343
|
+
transactionTypeOptions: SelectOption$c[];
|
|
344
|
+
transactionGroupOptions: SelectOption$c[];
|
|
345
|
+
aggregationLevelOptions: SelectOption$c[];
|
|
346
|
+
timePeriodOptions: SelectOption$c[];
|
|
347
|
+
prohibitedEntityTypeOptions: SelectOption$c[];
|
|
348
|
+
productIdOptions: SelectOption$c[];
|
|
349
|
+
programIdOptions: SelectOption$c[];
|
|
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$b {
|
|
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$b[];
|
|
538
|
+
businessEntityTypeOptions: SelectOption$b[];
|
|
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$a {
|
|
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$a[];
|
|
825
|
+
canAcceptSweepOptions: SelectOption$a[];
|
|
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$9 {
|
|
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$9[];
|
|
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$8 = {
|
|
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$8[];
|
|
1027
|
+
productOptions: SelectOption$8[];
|
|
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$7 {
|
|
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$7[];
|
|
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
|
|
|
@@ -1336,7 +1336,7 @@ interface FeeFilters {
|
|
|
1336
1336
|
transactionTypes: string[];
|
|
1337
1337
|
}
|
|
1338
1338
|
|
|
1339
|
-
interface SelectOption$
|
|
1339
|
+
interface SelectOption$6 {
|
|
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$6[];
|
|
1351
|
+
programOptions: SelectOption$6[];
|
|
1352
1352
|
}
|
|
1353
1353
|
declare const FeesView: ({ filters, onFilterChange, onResetFilters, onApplyFilters, onCreateFee, table, productOptions, programOptions, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
|
|
1354
1354
|
|
|
@@ -1457,7 +1457,7 @@ type ProductTimelineEvent = {
|
|
|
1457
1457
|
changes: FieldChange$1[];
|
|
1458
1458
|
};
|
|
1459
1459
|
|
|
1460
|
-
interface SelectOption$
|
|
1460
|
+
interface SelectOption$5 {
|
|
1461
1461
|
value: string;
|
|
1462
1462
|
label: string;
|
|
1463
1463
|
}
|
|
@@ -1484,13 +1484,13 @@ interface FundsAvailabilityFormData {
|
|
|
1484
1484
|
interface ProductDetailViewProps {
|
|
1485
1485
|
product: Product;
|
|
1486
1486
|
timeline: ProductTimelineEvent[];
|
|
1487
|
-
operatingModelOptions: SelectOption$
|
|
1488
|
-
cipConfigOptions: SelectOption$
|
|
1489
|
-
accountTypeOptions: SelectOption$
|
|
1490
|
-
customerAccountTypeOptions: SelectOption$
|
|
1491
|
-
activeOptions: SelectOption$
|
|
1492
|
-
ofacOptionOptions: SelectOption$
|
|
1493
|
-
enablePresetOptions: SelectOption$
|
|
1487
|
+
operatingModelOptions: SelectOption$5[];
|
|
1488
|
+
cipConfigOptions: SelectOption$5[];
|
|
1489
|
+
accountTypeOptions: SelectOption$5[];
|
|
1490
|
+
customerAccountTypeOptions: SelectOption$5[];
|
|
1491
|
+
activeOptions: SelectOption$5[];
|
|
1492
|
+
ofacOptionOptions: SelectOption$5[];
|
|
1493
|
+
enablePresetOptions: SelectOption$5[];
|
|
1494
1494
|
onSaveDetails: (data: ProductDetailsFormData) => void | Promise<void>;
|
|
1495
1495
|
onSaveFundsAvailability: (data: FundsAvailabilityFormData) => void | Promise<void>;
|
|
1496
1496
|
onProgramClick: (programId: string) => void;
|
|
@@ -1566,14 +1566,14 @@ interface Program {
|
|
|
1566
1566
|
updatedAt: string;
|
|
1567
1567
|
}
|
|
1568
1568
|
|
|
1569
|
-
interface SelectOption$
|
|
1569
|
+
interface SelectOption$4 {
|
|
1570
1570
|
value: string;
|
|
1571
1571
|
label: string;
|
|
1572
1572
|
}
|
|
1573
1573
|
interface ProgramDetailViewProps {
|
|
1574
1574
|
program: Program;
|
|
1575
|
-
programTypeOptions: SelectOption$
|
|
1576
|
-
operatingModelOptions: SelectOption$
|
|
1575
|
+
programTypeOptions: SelectOption$4[];
|
|
1576
|
+
operatingModelOptions: SelectOption$4[];
|
|
1577
1577
|
onSave?: (data: Program) => void | Promise<void>;
|
|
1578
1578
|
onNavigateFees?: () => void;
|
|
1579
1579
|
onCreateFee?: () => void;
|
|
@@ -1603,6 +1603,127 @@ interface CreateProgramViewProps {
|
|
|
1603
1603
|
}
|
|
1604
1604
|
declare const CreateProgramView: ({ formData, onFieldChange, onSubmit, onCancel, isSubmitting, programTypeOptions, operatingModelOptions, }: CreateProgramViewProps) => react_jsx_runtime.JSX.Element;
|
|
1605
1605
|
|
|
1606
|
+
interface UsersFilters {
|
|
1607
|
+
username: string;
|
|
1608
|
+
status: string;
|
|
1609
|
+
group: string;
|
|
1610
|
+
enabled: string;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
interface UserAuditFilters {
|
|
1614
|
+
action: string;
|
|
1615
|
+
actor: string;
|
|
1616
|
+
targetUser: string;
|
|
1617
|
+
beginDate: string;
|
|
1618
|
+
endDate: string;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
interface SelectOption$3 {
|
|
1622
|
+
value: string;
|
|
1623
|
+
label: string;
|
|
1624
|
+
}
|
|
1625
|
+
interface UsersViewProps {
|
|
1626
|
+
activeTab: "users" | "audit";
|
|
1627
|
+
onTabChange: (tab: "users" | "audit") => void;
|
|
1628
|
+
usersTable: React.ReactNode;
|
|
1629
|
+
auditTable: React.ReactNode;
|
|
1630
|
+
usersFilters: UsersFilters;
|
|
1631
|
+
auditFilters: UserAuditFilters;
|
|
1632
|
+
statusOptions: SelectOption$3[];
|
|
1633
|
+
groupOptions: SelectOption$3[];
|
|
1634
|
+
enabledOptions: SelectOption$3[];
|
|
1635
|
+
actionOptions: SelectOption$3[];
|
|
1636
|
+
showDeleted: boolean;
|
|
1637
|
+
onShowDeletedChange: (value: boolean) => void;
|
|
1638
|
+
onCreateUser: () => void;
|
|
1639
|
+
onUsersFilterChange: (field: keyof UsersFilters, value: string) => void;
|
|
1640
|
+
onUsersResetFilters: () => void;
|
|
1641
|
+
onUsersApplyFilters: () => void;
|
|
1642
|
+
onAuditFilterChange: (field: keyof UserAuditFilters, value: string) => void;
|
|
1643
|
+
onAuditResetFilters: () => void;
|
|
1644
|
+
onAuditApplyFilters: () => void;
|
|
1645
|
+
}
|
|
1646
|
+
declare const UsersView: ({ activeTab, onTabChange, usersTable, auditTable, usersFilters, auditFilters, statusOptions, groupOptions, enabledOptions, actionOptions, showDeleted, onShowDeletedChange, onCreateUser, onUsersFilterChange, onUsersResetFilters, onUsersApplyFilters, onAuditFilterChange, onAuditResetFilters, onAuditApplyFilters, }: UsersViewProps) => react_jsx_runtime.JSX.Element;
|
|
1647
|
+
|
|
1648
|
+
interface UserRecord {
|
|
1649
|
+
id: string;
|
|
1650
|
+
username: string;
|
|
1651
|
+
email: string;
|
|
1652
|
+
tenant: string;
|
|
1653
|
+
enabled: boolean;
|
|
1654
|
+
groups: string[];
|
|
1655
|
+
status: string;
|
|
1656
|
+
deleted: boolean;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
interface AuditEvent {
|
|
1660
|
+
id: string;
|
|
1661
|
+
timestamp: string;
|
|
1662
|
+
actor: string;
|
|
1663
|
+
targetUser: string;
|
|
1664
|
+
action: string;
|
|
1665
|
+
details: string;
|
|
1666
|
+
ipAddress: string;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
interface ApiKey {
|
|
1670
|
+
id: string;
|
|
1671
|
+
name: string;
|
|
1672
|
+
value: string;
|
|
1673
|
+
createdAt: string;
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
interface SelectOption$2 {
|
|
1677
|
+
value: string;
|
|
1678
|
+
label: string;
|
|
1679
|
+
}
|
|
1680
|
+
interface UserDetailViewProps {
|
|
1681
|
+
user: UserRecord;
|
|
1682
|
+
statusLabel: string;
|
|
1683
|
+
activeTab: "groups" | "audit" | "api";
|
|
1684
|
+
onTabChange: (tab: "groups" | "audit" | "api") => void;
|
|
1685
|
+
adminGroupOptions: SelectOption$2[];
|
|
1686
|
+
developerGroupOptions: SelectOption$2[];
|
|
1687
|
+
selectedAdminGroups: string[];
|
|
1688
|
+
selectedDeveloperGroups: string[];
|
|
1689
|
+
onToggleAdminGroup: (value: string) => void;
|
|
1690
|
+
onToggleDeveloperGroup: (value: string) => void;
|
|
1691
|
+
auditEvents: AuditEvent[];
|
|
1692
|
+
actionLabelMap: Record<string, string>;
|
|
1693
|
+
apiKeys: ApiKey[];
|
|
1694
|
+
onDeleteApiKey: (id: string) => void;
|
|
1695
|
+
createdKeyDialogOpen: boolean;
|
|
1696
|
+
onCreatedKeyDialogOpenChange: (open: boolean) => void;
|
|
1697
|
+
createdKey: ApiKey | null;
|
|
1698
|
+
onCreateKey: () => void;
|
|
1699
|
+
onCopyKey: (value: string) => void;
|
|
1700
|
+
onResetPassword: () => void;
|
|
1701
|
+
onDisable: () => void;
|
|
1702
|
+
onDelete: () => void;
|
|
1703
|
+
}
|
|
1704
|
+
declare const UserDetailView: ({ user, statusLabel, activeTab, onTabChange, adminGroupOptions, developerGroupOptions, selectedAdminGroups, selectedDeveloperGroups, onToggleAdminGroup, onToggleDeveloperGroup, auditEvents, actionLabelMap, apiKeys, onDeleteApiKey, createdKeyDialogOpen, onCreatedKeyDialogOpenChange, createdKey, onCreateKey, onCopyKey, onResetPassword, onDisable, onDelete, }: UserDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1705
|
+
|
|
1706
|
+
interface SelectOption$1 {
|
|
1707
|
+
value: string;
|
|
1708
|
+
label: string;
|
|
1709
|
+
}
|
|
1710
|
+
interface CreateUserFormValues {
|
|
1711
|
+
username: string;
|
|
1712
|
+
email: string;
|
|
1713
|
+
tenant: string;
|
|
1714
|
+
group: string;
|
|
1715
|
+
}
|
|
1716
|
+
interface CreateUserViewProps {
|
|
1717
|
+
values: CreateUserFormValues;
|
|
1718
|
+
onChange: (field: keyof CreateUserFormValues, value: string) => void;
|
|
1719
|
+
adminGroupOptions: SelectOption$1[];
|
|
1720
|
+
developerGroupOptions: SelectOption$1[];
|
|
1721
|
+
onCancel: () => void;
|
|
1722
|
+
onSubmit: () => void;
|
|
1723
|
+
isSubmitting: boolean;
|
|
1724
|
+
}
|
|
1725
|
+
declare const CreateUserView: ({ values, onChange, adminGroupOptions, developerGroupOptions, onCancel, onSubmit, isSubmitting, }: CreateUserViewProps) => react_jsx_runtime.JSX.Element;
|
|
1726
|
+
|
|
1606
1727
|
interface StatementHeader {
|
|
1607
1728
|
account?: string;
|
|
1608
1729
|
productId?: string;
|
|
@@ -3049,4 +3170,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
3049
3170
|
*/
|
|
3050
3171
|
declare function downloadCSV(content: string, filename: string): void;
|
|
3051
3172
|
|
|
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$
|
|
3173
|
+
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, type CreateUserFormValues, CreateUserView, type CreateUserViewProps, 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$c 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, UserDetailView, type UserDetailViewProps, UsersView, 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 };
|