braid-ui 1.0.116 → 1.0.117
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 +12 -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 +4 -1
- package/dist/index.d.ts +4 -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
|
@@ -690,6 +690,8 @@ interface IndividualDetailViewProps {
|
|
|
690
690
|
lastName: string;
|
|
691
691
|
cipStatus: any;
|
|
692
692
|
subType?: "UBO" | "Customer";
|
|
693
|
+
associatedBusinessId?: string;
|
|
694
|
+
associatedBusinessName?: string;
|
|
693
695
|
};
|
|
694
696
|
profile: IndividualProfileEdit;
|
|
695
697
|
onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
|
|
@@ -702,6 +704,7 @@ interface IndividualDetailViewProps {
|
|
|
702
704
|
onNavigateToCounterparty: () => void;
|
|
703
705
|
onCreateCounterparty: () => void;
|
|
704
706
|
onNavigateToTransactions: () => void;
|
|
707
|
+
onNavigateToBusiness?: (businessId: string) => void;
|
|
705
708
|
showTimeline?: boolean;
|
|
706
709
|
timeline?: IndividualTimelineEvent[];
|
|
707
710
|
profileIsEditing: boolean;
|
|
@@ -726,7 +729,7 @@ interface IndividualDetailViewProps {
|
|
|
726
729
|
onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
|
|
727
730
|
renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
|
|
728
731
|
}
|
|
729
|
-
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
732
|
+
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onNavigateToBusiness, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
730
733
|
|
|
731
734
|
type CreateIndividualViewForm = {
|
|
732
735
|
handleSubmit: (onValid: any) => (e?: any) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -690,6 +690,8 @@ interface IndividualDetailViewProps {
|
|
|
690
690
|
lastName: string;
|
|
691
691
|
cipStatus: any;
|
|
692
692
|
subType?: "UBO" | "Customer";
|
|
693
|
+
associatedBusinessId?: string;
|
|
694
|
+
associatedBusinessName?: string;
|
|
693
695
|
};
|
|
694
696
|
profile: IndividualProfileEdit;
|
|
695
697
|
onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
|
|
@@ -702,6 +704,7 @@ interface IndividualDetailViewProps {
|
|
|
702
704
|
onNavigateToCounterparty: () => void;
|
|
703
705
|
onCreateCounterparty: () => void;
|
|
704
706
|
onNavigateToTransactions: () => void;
|
|
707
|
+
onNavigateToBusiness?: (businessId: string) => void;
|
|
705
708
|
showTimeline?: boolean;
|
|
706
709
|
timeline?: IndividualTimelineEvent[];
|
|
707
710
|
profileIsEditing: boolean;
|
|
@@ -726,7 +729,7 @@ interface IndividualDetailViewProps {
|
|
|
726
729
|
onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
|
|
727
730
|
renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
|
|
728
731
|
}
|
|
729
|
-
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
732
|
+
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onNavigateToBusiness, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
730
733
|
|
|
731
734
|
type CreateIndividualViewForm = {
|
|
732
735
|
handleSubmit: (onValid: any) => (e?: any) => void;
|