braid-ui 1.0.113 → 1.0.114
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -362,6 +362,12 @@ interface CounterpartiesViewProps {
|
|
|
362
362
|
}
|
|
363
363
|
declare const CounterpartiesView: ({ table, filters, onFilterChange, onResetFilters, onCreateCounterparty }: CounterpartiesViewProps) => react_jsx_runtime.JSX.Element;
|
|
364
364
|
|
|
365
|
+
interface CounterpartyTimelineEvent {
|
|
366
|
+
id: string;
|
|
367
|
+
action: string;
|
|
368
|
+
timestamp: string;
|
|
369
|
+
}
|
|
370
|
+
|
|
365
371
|
interface PaymentMethodCardProps {
|
|
366
372
|
type: "ACH" | "Wire";
|
|
367
373
|
fiId: string;
|
|
@@ -458,8 +464,9 @@ interface CounterpartyDetailViewProps {
|
|
|
458
464
|
onNavigateToTransactions?: () => void;
|
|
459
465
|
latestOFAC?: OFACCheck;
|
|
460
466
|
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
467
|
+
timeline: CounterpartyTimelineEvent[];
|
|
461
468
|
}
|
|
462
|
-
declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
469
|
+
declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, timeline, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
463
470
|
|
|
464
471
|
declare const inputVariants: (props?: {
|
|
465
472
|
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|
package/dist/index.d.ts
CHANGED
|
@@ -362,6 +362,12 @@ interface CounterpartiesViewProps {
|
|
|
362
362
|
}
|
|
363
363
|
declare const CounterpartiesView: ({ table, filters, onFilterChange, onResetFilters, onCreateCounterparty }: CounterpartiesViewProps) => react_jsx_runtime.JSX.Element;
|
|
364
364
|
|
|
365
|
+
interface CounterpartyTimelineEvent {
|
|
366
|
+
id: string;
|
|
367
|
+
action: string;
|
|
368
|
+
timestamp: string;
|
|
369
|
+
}
|
|
370
|
+
|
|
365
371
|
interface PaymentMethodCardProps {
|
|
366
372
|
type: "ACH" | "Wire";
|
|
367
373
|
fiId: string;
|
|
@@ -458,8 +464,9 @@ interface CounterpartyDetailViewProps {
|
|
|
458
464
|
onNavigateToTransactions?: () => void;
|
|
459
465
|
latestOFAC?: OFACCheck;
|
|
460
466
|
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
467
|
+
timeline: CounterpartyTimelineEvent[];
|
|
461
468
|
}
|
|
462
|
-
declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
469
|
+
declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onACHSave, onACHDelete, onWireSave, onWireDelete, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, timeline, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
463
470
|
|
|
464
471
|
declare const inputVariants: (props?: {
|
|
465
472
|
variant?: "default" | "success" | "disabled" | "error" | "readonly";
|