braid-ui 1.0.30 → 1.0.31
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 +22 -0
- package/dist/css/braid-ui.min.css +1 -1
- package/dist/index.cjs +6518 -5713
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +165 -76
- package/dist/index.d.ts +165 -76
- package/dist/index.js +6518 -5715
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -101,28 +101,28 @@ interface OFACAlertViewProps {
|
|
|
101
101
|
declare const OFACAlertView: ({ alert }: OFACAlertViewProps) => react_jsx_runtime.JSX.Element;
|
|
102
102
|
|
|
103
103
|
declare const resolveAlertSchema: z.ZodEffects<z.ZodObject<{
|
|
104
|
-
action: z.
|
|
104
|
+
action: z.ZodEffects<z.ZodString, string, string>;
|
|
105
105
|
changeToAccount: z.ZodOptional<z.ZodString>;
|
|
106
106
|
note: z.ZodString;
|
|
107
107
|
returnCode: z.ZodOptional<z.ZodString>;
|
|
108
108
|
}, "strip", z.ZodTypeAny, {
|
|
109
109
|
note?: string;
|
|
110
|
-
action?:
|
|
110
|
+
action?: string;
|
|
111
111
|
changeToAccount?: string;
|
|
112
112
|
returnCode?: string;
|
|
113
113
|
}, {
|
|
114
114
|
note?: string;
|
|
115
|
-
action?:
|
|
115
|
+
action?: string;
|
|
116
116
|
changeToAccount?: string;
|
|
117
117
|
returnCode?: string;
|
|
118
118
|
}>, {
|
|
119
119
|
note?: string;
|
|
120
|
-
action?:
|
|
120
|
+
action?: string;
|
|
121
121
|
changeToAccount?: string;
|
|
122
122
|
returnCode?: string;
|
|
123
123
|
}, {
|
|
124
124
|
note?: string;
|
|
125
|
-
action?:
|
|
125
|
+
action?: string;
|
|
126
126
|
changeToAccount?: string;
|
|
127
127
|
returnCode?: string;
|
|
128
128
|
}>;
|
|
@@ -143,7 +143,63 @@ interface MainLayoutProps {
|
|
|
143
143
|
}
|
|
144
144
|
declare const MainLayout: ({ children }: MainLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
145
145
|
|
|
146
|
-
interface
|
|
146
|
+
interface UBO {
|
|
147
|
+
id: string;
|
|
148
|
+
name: string;
|
|
149
|
+
title: string;
|
|
150
|
+
ownershipPercentage: number;
|
|
151
|
+
customerId: string;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
interface BusinessDocument {
|
|
155
|
+
id: string;
|
|
156
|
+
name: string;
|
|
157
|
+
type: string;
|
|
158
|
+
description?: string;
|
|
159
|
+
size: string;
|
|
160
|
+
uploadedBy: string;
|
|
161
|
+
uploadedAt: string;
|
|
162
|
+
url?: string;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
interface IdentityVerification {
|
|
166
|
+
customerId: string;
|
|
167
|
+
isDeveloperInitiated: boolean;
|
|
168
|
+
provider: string;
|
|
169
|
+
result: string;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
interface Business {
|
|
173
|
+
id: string;
|
|
174
|
+
businessName: string;
|
|
175
|
+
status: string;
|
|
176
|
+
cipStatus: "PASS" | "FAIL" | "IN_REVIEW" | "NOT_START" | "not_start" | "pending" | "rejected" | "verified";
|
|
177
|
+
type: "Business" | "Individual";
|
|
178
|
+
subType: "Customer" | "UBO";
|
|
179
|
+
}
|
|
180
|
+
interface BusinessAccount {
|
|
181
|
+
id: string;
|
|
182
|
+
number: string;
|
|
183
|
+
routingNumber: string;
|
|
184
|
+
type: string;
|
|
185
|
+
}
|
|
186
|
+
interface BusinessDetailViewProps {
|
|
187
|
+
business: Business;
|
|
188
|
+
identityVerification?: IdentityVerification;
|
|
189
|
+
businessUBOs: UBO[];
|
|
190
|
+
businessDocuments: BusinessDocument[];
|
|
191
|
+
businessAccounts: BusinessAccount[];
|
|
192
|
+
currentStatus: string;
|
|
193
|
+
isEditingProfile: boolean;
|
|
194
|
+
onStatusChange: (newStatus: string) => void;
|
|
195
|
+
onToggleProfileEdit: () => void;
|
|
196
|
+
onNavigateToAccounts: () => void;
|
|
197
|
+
onNavigateToCounterparty: () => void;
|
|
198
|
+
onAddAccount: () => void;
|
|
199
|
+
}
|
|
200
|
+
declare const BusinessDetailView: ({ business, identityVerification, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, onStatusChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onAddAccount }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
201
|
+
|
|
202
|
+
interface BusinessFilters {
|
|
147
203
|
name: string;
|
|
148
204
|
productName: string;
|
|
149
205
|
status: string;
|
|
@@ -151,8 +207,8 @@ interface BusinessFilters$1 {
|
|
|
151
207
|
createdDateEnd?: Date;
|
|
152
208
|
}
|
|
153
209
|
interface BusinessFiltersSheetProps {
|
|
154
|
-
filters: BusinessFilters
|
|
155
|
-
onFilterChange: (field: keyof BusinessFilters
|
|
210
|
+
filters: BusinessFilters;
|
|
211
|
+
onFilterChange: (field: keyof BusinessFilters, value: string | Date | undefined) => void;
|
|
156
212
|
onResetFilters: () => void;
|
|
157
213
|
}
|
|
158
214
|
declare const BusinessFiltersSheet: ({ filters, onFilterChange, onResetFilters }: BusinessFiltersSheetProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -227,10 +283,10 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
227
283
|
postalCode?: string;
|
|
228
284
|
countryCode?: string;
|
|
229
285
|
};
|
|
286
|
+
idNumber?: string;
|
|
230
287
|
website?: string;
|
|
231
288
|
productId?: number;
|
|
232
289
|
businessIdType?: string;
|
|
233
|
-
idNumber?: string;
|
|
234
290
|
dba?: string;
|
|
235
291
|
businessEntityType?: string;
|
|
236
292
|
incorporationState?: string;
|
|
@@ -260,10 +316,10 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
260
316
|
postalCode?: string;
|
|
261
317
|
countryCode?: string;
|
|
262
318
|
};
|
|
319
|
+
idNumber?: string;
|
|
263
320
|
website?: string;
|
|
264
321
|
productId?: number;
|
|
265
322
|
businessIdType?: string;
|
|
266
|
-
idNumber?: string;
|
|
267
323
|
dba?: string;
|
|
268
324
|
businessEntityType?: string;
|
|
269
325
|
incorporationState?: string;
|
|
@@ -407,22 +463,6 @@ interface AddressFormProps {
|
|
|
407
463
|
}
|
|
408
464
|
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
409
465
|
|
|
410
|
-
declare const counterpartyBasicInfoSchema: z.ZodObject<{
|
|
411
|
-
name: z.ZodString;
|
|
412
|
-
type: z.ZodString;
|
|
413
|
-
status: z.ZodString;
|
|
414
|
-
description: z.ZodOptional<z.ZodString>;
|
|
415
|
-
}, "strip", z.ZodTypeAny, {
|
|
416
|
-
status?: string;
|
|
417
|
-
description?: string;
|
|
418
|
-
name?: string;
|
|
419
|
-
type?: string;
|
|
420
|
-
}, {
|
|
421
|
-
status?: string;
|
|
422
|
-
description?: string;
|
|
423
|
-
name?: string;
|
|
424
|
-
type?: string;
|
|
425
|
-
}>;
|
|
426
466
|
declare const addressSchema: z.ZodObject<{
|
|
427
467
|
line1: z.ZodOptional<z.ZodString>;
|
|
428
468
|
line2: z.ZodOptional<z.ZodString>;
|
|
@@ -448,7 +488,72 @@ declare const addressSchema: z.ZodObject<{
|
|
|
448
488
|
postalCode?: string;
|
|
449
489
|
countryCode?: string;
|
|
450
490
|
}>;
|
|
451
|
-
|
|
491
|
+
declare const counterpartyDetailSchema: z.ZodObject<{
|
|
492
|
+
email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
493
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
494
|
+
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
495
|
+
idNumber: z.ZodOptional<z.ZodString>;
|
|
496
|
+
idType: z.ZodOptional<z.ZodString>;
|
|
497
|
+
idValue: z.ZodOptional<z.ZodString>;
|
|
498
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
499
|
+
line1: z.ZodOptional<z.ZodString>;
|
|
500
|
+
line2: z.ZodOptional<z.ZodString>;
|
|
501
|
+
city: z.ZodOptional<z.ZodString>;
|
|
502
|
+
state: z.ZodOptional<z.ZodString>;
|
|
503
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
504
|
+
countryCode: z.ZodString;
|
|
505
|
+
type: z.ZodOptional<z.ZodString>;
|
|
506
|
+
}, "strip", z.ZodTypeAny, {
|
|
507
|
+
type?: string;
|
|
508
|
+
state?: string;
|
|
509
|
+
line1?: string;
|
|
510
|
+
line2?: string;
|
|
511
|
+
city?: string;
|
|
512
|
+
postalCode?: string;
|
|
513
|
+
countryCode?: string;
|
|
514
|
+
}, {
|
|
515
|
+
type?: string;
|
|
516
|
+
state?: string;
|
|
517
|
+
line1?: string;
|
|
518
|
+
line2?: string;
|
|
519
|
+
city?: string;
|
|
520
|
+
postalCode?: string;
|
|
521
|
+
countryCode?: string;
|
|
522
|
+
}>>;
|
|
523
|
+
}, "strip", z.ZodTypeAny, {
|
|
524
|
+
email?: string;
|
|
525
|
+
address?: {
|
|
526
|
+
type?: string;
|
|
527
|
+
state?: string;
|
|
528
|
+
line1?: string;
|
|
529
|
+
line2?: string;
|
|
530
|
+
city?: string;
|
|
531
|
+
postalCode?: string;
|
|
532
|
+
countryCode?: string;
|
|
533
|
+
};
|
|
534
|
+
phone?: string;
|
|
535
|
+
dateOfBirth?: string;
|
|
536
|
+
idNumber?: string;
|
|
537
|
+
idType?: string;
|
|
538
|
+
idValue?: string;
|
|
539
|
+
}, {
|
|
540
|
+
email?: string;
|
|
541
|
+
address?: {
|
|
542
|
+
type?: string;
|
|
543
|
+
state?: string;
|
|
544
|
+
line1?: string;
|
|
545
|
+
line2?: string;
|
|
546
|
+
city?: string;
|
|
547
|
+
postalCode?: string;
|
|
548
|
+
countryCode?: string;
|
|
549
|
+
};
|
|
550
|
+
phone?: string;
|
|
551
|
+
dateOfBirth?: string;
|
|
552
|
+
idNumber?: string;
|
|
553
|
+
idType?: string;
|
|
554
|
+
idValue?: string;
|
|
555
|
+
}>;
|
|
556
|
+
type CounterpartyDetail$1 = z.infer<typeof counterpartyDetailSchema>;
|
|
452
557
|
type Address = z.infer<typeof addressSchema>;
|
|
453
558
|
|
|
454
559
|
declare const intermediaryFISchema: z.ZodObject<{
|
|
@@ -493,8 +598,8 @@ declare const intermediaryFISchema: z.ZodObject<{
|
|
|
493
598
|
countryCode?: string;
|
|
494
599
|
};
|
|
495
600
|
idNumber?: string;
|
|
496
|
-
accountNumber?: string;
|
|
497
601
|
idType?: string;
|
|
602
|
+
accountNumber?: string;
|
|
498
603
|
}, {
|
|
499
604
|
name?: string;
|
|
500
605
|
address?: {
|
|
@@ -507,8 +612,8 @@ declare const intermediaryFISchema: z.ZodObject<{
|
|
|
507
612
|
countryCode?: string;
|
|
508
613
|
};
|
|
509
614
|
idNumber?: string;
|
|
510
|
-
accountNumber?: string;
|
|
511
615
|
idType?: string;
|
|
616
|
+
accountNumber?: string;
|
|
512
617
|
}>;
|
|
513
618
|
type IntermediaryFI$1 = z.infer<typeof intermediaryFISchema>;
|
|
514
619
|
|
|
@@ -557,13 +662,6 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
|
|
|
557
662
|
|
|
558
663
|
declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
|
|
559
664
|
|
|
560
|
-
interface IdentityVerification {
|
|
561
|
-
customerId: string;
|
|
562
|
-
isDeveloperInitiated: boolean;
|
|
563
|
-
provider: string;
|
|
564
|
-
result: string;
|
|
565
|
-
}
|
|
566
|
-
|
|
567
665
|
interface BusinessProfileCardProps {
|
|
568
666
|
data?: Partial<BusinessProfile>;
|
|
569
667
|
identityVerification?: IdentityVerification;
|
|
@@ -595,8 +693,8 @@ interface CounterpartyBasicInfoProps {
|
|
|
595
693
|
declare const CounterpartyBasicInfo: ({ onDataChange }: CounterpartyBasicInfoProps) => react_jsx_runtime.JSX.Element;
|
|
596
694
|
|
|
597
695
|
interface CounterpartyProfileCardProps {
|
|
598
|
-
data?: Partial<
|
|
599
|
-
onDataChange?: (data:
|
|
696
|
+
data?: Partial<CounterpartyDetail$1>;
|
|
697
|
+
onDataChange?: (data: CounterpartyDetail$1) => void;
|
|
600
698
|
isEditing?: boolean;
|
|
601
699
|
onToggleEdit?: () => void;
|
|
602
700
|
hideActions?: boolean;
|
|
@@ -906,7 +1004,7 @@ interface ContainerProps {
|
|
|
906
1004
|
declare const Container: React$1.ForwardRefExoticComponent<ContainerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
907
1005
|
|
|
908
1006
|
interface CounterpartyTypeBadgeProps {
|
|
909
|
-
type: "BUSINESS" | "INDIVIDUAL"
|
|
1007
|
+
type: "BUSINESS" | "INDIVIDUAL";
|
|
910
1008
|
className?: string;
|
|
911
1009
|
}
|
|
912
1010
|
declare const CounterpartyTypeBadge: ({ type, className }: CounterpartyTypeBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -947,8 +1045,14 @@ interface DataTableProps<T = any> {
|
|
|
947
1045
|
loading?: boolean;
|
|
948
1046
|
emptyMessage?: string;
|
|
949
1047
|
className?: string;
|
|
1048
|
+
pagination?: {
|
|
1049
|
+
currentPage: number;
|
|
1050
|
+
pageSize: number;
|
|
1051
|
+
totalItems: number;
|
|
1052
|
+
onPageChange: (page: number) => void;
|
|
1053
|
+
};
|
|
950
1054
|
}
|
|
951
|
-
declare function DataTable<T extends Record<string, any>>({ columns, data, sortBy, sortDirection, onSort, onRowClick, loading, emptyMessage, className }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
|
|
1055
|
+
declare function DataTable<T extends Record<string, any>>({ columns, data, sortBy, sortDirection, onSort, onRowClick, loading, emptyMessage, className, pagination }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
|
|
952
1056
|
|
|
953
1057
|
interface DetailPageCard {
|
|
954
1058
|
key: string;
|
|
@@ -1470,48 +1574,33 @@ interface UseFormWithEditStateReturn<T extends FieldValues> extends UseFormRetur
|
|
|
1470
1574
|
}
|
|
1471
1575
|
declare const useFormWithEditState: <T extends FieldValues>({ schema, initialEditing, onToggleEdit, onSave, onCancel, ...formProps }: UseFormWithEditStateProps<T>) => UseFormWithEditStateReturn<T>;
|
|
1472
1576
|
|
|
1473
|
-
interface
|
|
1577
|
+
interface CounterpartyListItem {
|
|
1474
1578
|
id: string;
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1579
|
+
name: string;
|
|
1580
|
+
type: "BUSINESS" | "INDIVIDUAL";
|
|
1581
|
+
status: "ACTIVE" | "INACTIVE" | "PENDING" | "SUSPENDED";
|
|
1582
|
+
productId?: string;
|
|
1583
|
+
businessId?: string;
|
|
1584
|
+
individualId?: string;
|
|
1585
|
+
accountNumber?: string;
|
|
1586
|
+
customerId?: string;
|
|
1587
|
+
customerType?: "business" | "individual";
|
|
1484
1588
|
created: string;
|
|
1485
1589
|
modified: string;
|
|
1486
1590
|
}
|
|
1487
1591
|
|
|
1488
|
-
interface
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
status: string;
|
|
1492
|
-
createdDateStart: Date | undefined;
|
|
1493
|
-
createdDateEnd: Date | undefined;
|
|
1494
|
-
}
|
|
1495
|
-
interface UseBusinessFiltersProps {
|
|
1496
|
-
initialData: BusinessListItem[];
|
|
1592
|
+
interface CounterpartyWithEntity extends CounterpartyListItem {
|
|
1593
|
+
associatedEntity: string;
|
|
1594
|
+
entityType: "product" | "business" | "individual" | "account" | null;
|
|
1497
1595
|
}
|
|
1498
|
-
declare const
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
handleFilterChange: (field: keyof BusinessFilters, value: string | Date | undefined) => void;
|
|
1502
|
-
applyFilters: () => void;
|
|
1503
|
-
resetFilters: () => void;
|
|
1596
|
+
declare const useCounterpartyEntity: (counterparties: CounterpartyListItem[]) => {
|
|
1597
|
+
counterparties: CounterpartyWithEntity[];
|
|
1598
|
+
loading: boolean;
|
|
1504
1599
|
};
|
|
1505
1600
|
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
declare const useBusinessSort: ({ data }: UseBusinessSortProps) => {
|
|
1510
|
-
sortBy: string;
|
|
1511
|
-
sortDirection: "desc" | "asc";
|
|
1512
|
-
sortedData: BusinessListItem[];
|
|
1513
|
-
handleSort: (key: string) => void;
|
|
1514
|
-
};
|
|
1601
|
+
declare const Accounts: () => react_jsx_runtime.JSX.Element;
|
|
1602
|
+
|
|
1603
|
+
declare const AccountDetail: () => react_jsx_runtime.JSX.Element;
|
|
1515
1604
|
|
|
1516
1605
|
declare const AlertDetail: () => react_jsx_runtime.JSX.Element;
|
|
1517
1606
|
|
|
@@ -1519,7 +1608,7 @@ declare const Alerts: () => react_jsx_runtime.JSX.Element;
|
|
|
1519
1608
|
|
|
1520
1609
|
declare const Businesses: () => react_jsx_runtime.JSX.Element;
|
|
1521
1610
|
|
|
1522
|
-
declare const
|
|
1611
|
+
declare const BusinessDetail: () => react_jsx_runtime.JSX.Element;
|
|
1523
1612
|
|
|
1524
1613
|
declare const CreateBusiness: () => react_jsx_runtime.JSX.Element;
|
|
1525
1614
|
|
|
@@ -1560,4 +1649,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
1560
1649
|
*/
|
|
1561
1650
|
declare function downloadCSV(content: string, filename: string): void;
|
|
1562
1651
|
|
|
1563
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem,
|
|
1652
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AccountDetail, Accounts, AddressForm, 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, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateIndividual, 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, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ResolveAlertDialog, ResponsiveGrid, ScrollArea, ScrollBar, 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, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|