braid-ui 1.0.77 → 1.0.79
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -409,6 +409,7 @@ interface BusinessDetailViewProps {
|
|
|
409
409
|
onNavigateToAccounts: () => void;
|
|
410
410
|
onNavigateToCounterparty: () => void;
|
|
411
411
|
onAddAccount?: (data: AccountFormData) => Promise<void | boolean> | void | boolean;
|
|
412
|
+
onDeleteAccount?: (accountId: string) => Promise<void | boolean> | void | boolean;
|
|
412
413
|
onUBOClick: (customerId: string) => void;
|
|
413
414
|
onAddUBO?: (data: UBOFormData) => Promise<void | boolean> | void | boolean;
|
|
414
415
|
onRemoveUBO?: (uboId: string) => void;
|
|
@@ -426,7 +427,7 @@ interface BusinessDetailViewProps {
|
|
|
426
427
|
revealedIdNumber?: string | null;
|
|
427
428
|
onProductIdClick?: (productId: number) => void;
|
|
428
429
|
}
|
|
429
|
-
declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onAddAccount, onUBOClick, onAddUBO, onRemoveUBO, onDocumentUpload, onDocumentDelete, renderDocumentViewer, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, onProductIdClick, }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
430
|
+
declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onAddAccount, onDeleteAccount, onUBOClick, onAddUBO, onRemoveUBO, onDocumentUpload, onDocumentDelete, renderDocumentViewer, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, onProductIdClick, }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
430
431
|
|
|
431
432
|
interface BusinessFilters {
|
|
432
433
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -409,6 +409,7 @@ interface BusinessDetailViewProps {
|
|
|
409
409
|
onNavigateToAccounts: () => void;
|
|
410
410
|
onNavigateToCounterparty: () => void;
|
|
411
411
|
onAddAccount?: (data: AccountFormData) => Promise<void | boolean> | void | boolean;
|
|
412
|
+
onDeleteAccount?: (accountId: string) => Promise<void | boolean> | void | boolean;
|
|
412
413
|
onUBOClick: (customerId: string) => void;
|
|
413
414
|
onAddUBO?: (data: UBOFormData) => Promise<void | boolean> | void | boolean;
|
|
414
415
|
onRemoveUBO?: (uboId: string) => void;
|
|
@@ -426,7 +427,7 @@ interface BusinessDetailViewProps {
|
|
|
426
427
|
revealedIdNumber?: string | null;
|
|
427
428
|
onProductIdClick?: (productId: number) => void;
|
|
428
429
|
}
|
|
429
|
-
declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onAddAccount, onUBOClick, onAddUBO, onRemoveUBO, onDocumentUpload, onDocumentDelete, renderDocumentViewer, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, onProductIdClick, }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
430
|
+
declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onAddAccount, onDeleteAccount, onUBOClick, onAddUBO, onRemoveUBO, onDocumentUpload, onDocumentDelete, renderDocumentViewer, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, onProductIdClick, }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
430
431
|
|
|
431
432
|
interface BusinessFilters {
|
|
432
433
|
name: string;
|