braid-ui 1.0.66 → 1.0.67
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 +4 -0
- package/dist/css/braid-ui.min.css +1 -1
- package/dist/index.cjs +333 -202
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -7
- package/dist/index.d.ts +4 -7
- package/dist/index.js +333 -202
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -951,19 +951,14 @@ interface WireDetails {
|
|
|
951
951
|
type: string;
|
|
952
952
|
originatorName: string;
|
|
953
953
|
originatorAccountNumber: string;
|
|
954
|
-
originatorAddress: string;
|
|
955
954
|
beneficiaryName: string;
|
|
956
955
|
beneficiaryAccountNumber: string;
|
|
957
|
-
beneficiaryAddress: string;
|
|
958
956
|
beneficiaryFIName: string;
|
|
959
957
|
beneficiaryFIRoutingNumber: string;
|
|
960
|
-
beneficiaryFIAddress: string;
|
|
961
958
|
originatorFIName: string;
|
|
962
959
|
originatorFIRoutingNumber: string;
|
|
963
|
-
originatorFIAddress: string;
|
|
964
960
|
intermediaryFIName?: string;
|
|
965
961
|
intermediaryFIRoutingNumber?: string;
|
|
966
|
-
intermediaryFIAddress?: string;
|
|
967
962
|
imad?: string;
|
|
968
963
|
originatorToBeneficiaryInfo?: string;
|
|
969
964
|
fileHandle?: string;
|
|
@@ -1177,12 +1172,13 @@ interface TransactionDetailViewProps {
|
|
|
1177
1172
|
onCounterpartyClick: (counterparty: string) => void;
|
|
1178
1173
|
onOFACClick: (ofacId: string) => void;
|
|
1179
1174
|
onProductClick: (productId: string) => void;
|
|
1175
|
+
onAlertClick?: (alertId: string) => void;
|
|
1180
1176
|
onIMADChange?: (newImad: string) => void;
|
|
1181
1177
|
isLoading?: boolean;
|
|
1182
1178
|
error?: string | null;
|
|
1183
1179
|
onRetry?: () => void;
|
|
1184
1180
|
}
|
|
1185
|
-
declare const TransactionDetailView: ({ transaction, timelineEvents, isWireTransfer, isACHTransfer, showCancelButton, showReturnButton, onReturnClick, onCancelClick, onAccountClick, onCustomerClick, onCounterpartyClick, onOFACClick, onProductClick, onIMADChange, isLoading, error, onRetry, }: TransactionDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1181
|
+
declare const TransactionDetailView: ({ transaction, timelineEvents, isWireTransfer, isACHTransfer, showCancelButton, showReturnButton, onReturnClick, onCancelClick, onAccountClick, onCustomerClick, onCounterpartyClick, onOFACClick, onProductClick, onAlertClick, onIMADChange, isLoading, error, onRetry, }: TransactionDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1186
1182
|
|
|
1187
1183
|
declare const cancelTransactionSchema: z.ZodObject<{
|
|
1188
1184
|
reason: z.ZodString;
|
|
@@ -1584,8 +1580,9 @@ interface JsonViewerProps {
|
|
|
1584
1580
|
className?: string;
|
|
1585
1581
|
compact?: boolean;
|
|
1586
1582
|
maxHeight?: string;
|
|
1583
|
+
expandFully?: boolean;
|
|
1587
1584
|
}
|
|
1588
|
-
declare const JsonViewer: ({ data, className, compact, maxHeight }: JsonViewerProps) => react_jsx_runtime.JSX.Element;
|
|
1585
|
+
declare const JsonViewer: ({ data, className, compact, maxHeight, expandFully }: JsonViewerProps) => react_jsx_runtime.JSX.Element;
|
|
1589
1586
|
|
|
1590
1587
|
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
1591
1588
|
|
package/dist/index.d.ts
CHANGED
|
@@ -951,19 +951,14 @@ interface WireDetails {
|
|
|
951
951
|
type: string;
|
|
952
952
|
originatorName: string;
|
|
953
953
|
originatorAccountNumber: string;
|
|
954
|
-
originatorAddress: string;
|
|
955
954
|
beneficiaryName: string;
|
|
956
955
|
beneficiaryAccountNumber: string;
|
|
957
|
-
beneficiaryAddress: string;
|
|
958
956
|
beneficiaryFIName: string;
|
|
959
957
|
beneficiaryFIRoutingNumber: string;
|
|
960
|
-
beneficiaryFIAddress: string;
|
|
961
958
|
originatorFIName: string;
|
|
962
959
|
originatorFIRoutingNumber: string;
|
|
963
|
-
originatorFIAddress: string;
|
|
964
960
|
intermediaryFIName?: string;
|
|
965
961
|
intermediaryFIRoutingNumber?: string;
|
|
966
|
-
intermediaryFIAddress?: string;
|
|
967
962
|
imad?: string;
|
|
968
963
|
originatorToBeneficiaryInfo?: string;
|
|
969
964
|
fileHandle?: string;
|
|
@@ -1177,12 +1172,13 @@ interface TransactionDetailViewProps {
|
|
|
1177
1172
|
onCounterpartyClick: (counterparty: string) => void;
|
|
1178
1173
|
onOFACClick: (ofacId: string) => void;
|
|
1179
1174
|
onProductClick: (productId: string) => void;
|
|
1175
|
+
onAlertClick?: (alertId: string) => void;
|
|
1180
1176
|
onIMADChange?: (newImad: string) => void;
|
|
1181
1177
|
isLoading?: boolean;
|
|
1182
1178
|
error?: string | null;
|
|
1183
1179
|
onRetry?: () => void;
|
|
1184
1180
|
}
|
|
1185
|
-
declare const TransactionDetailView: ({ transaction, timelineEvents, isWireTransfer, isACHTransfer, showCancelButton, showReturnButton, onReturnClick, onCancelClick, onAccountClick, onCustomerClick, onCounterpartyClick, onOFACClick, onProductClick, onIMADChange, isLoading, error, onRetry, }: TransactionDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1181
|
+
declare const TransactionDetailView: ({ transaction, timelineEvents, isWireTransfer, isACHTransfer, showCancelButton, showReturnButton, onReturnClick, onCancelClick, onAccountClick, onCustomerClick, onCounterpartyClick, onOFACClick, onProductClick, onAlertClick, onIMADChange, isLoading, error, onRetry, }: TransactionDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1186
1182
|
|
|
1187
1183
|
declare const cancelTransactionSchema: z.ZodObject<{
|
|
1188
1184
|
reason: z.ZodString;
|
|
@@ -1584,8 +1580,9 @@ interface JsonViewerProps {
|
|
|
1584
1580
|
className?: string;
|
|
1585
1581
|
compact?: boolean;
|
|
1586
1582
|
maxHeight?: string;
|
|
1583
|
+
expandFully?: boolean;
|
|
1587
1584
|
}
|
|
1588
|
-
declare const JsonViewer: ({ data, className, compact, maxHeight }: JsonViewerProps) => react_jsx_runtime.JSX.Element;
|
|
1585
|
+
declare const JsonViewer: ({ data, className, compact, maxHeight, expandFully }: JsonViewerProps) => react_jsx_runtime.JSX.Element;
|
|
1589
1586
|
|
|
1590
1587
|
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
1591
1588
|
|