braid-ui 1.0.158 → 1.0.159
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 +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +16 -1
- package/dist/index.d.ts +16 -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
|
@@ -1821,6 +1821,17 @@ interface ACHReturnViewProps {
|
|
|
1821
1821
|
}
|
|
1822
1822
|
declare function ACHReturnView({ title, returnRateSectionTitle, unauthorizedSectionTitle, returnRateTable, unauthorizedTable, returnRateFilters, onReturnRateFilterChange, onReturnRateResetFilters, onReturnRateApplyFilters, productOptions, methodOptions, returnRateFiltersTitle, }: ACHReturnViewProps): react_jsx_runtime.JSX.Element;
|
|
1823
1823
|
|
|
1824
|
+
interface IncomingWireTransactionValues {
|
|
1825
|
+
originatorBankName: string;
|
|
1826
|
+
originatorAccountNumber: string;
|
|
1827
|
+
originatorRoutingNumber: string;
|
|
1828
|
+
originatorToBeneficiaryInfo: string;
|
|
1829
|
+
beneficiaryAccountNumber: string;
|
|
1830
|
+
amount: string;
|
|
1831
|
+
imad: string;
|
|
1832
|
+
omad: string;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1824
1835
|
interface WireProcessingViewProps {
|
|
1825
1836
|
title: string;
|
|
1826
1837
|
cardTitle: string;
|
|
@@ -1828,9 +1839,13 @@ interface WireProcessingViewProps {
|
|
|
1828
1839
|
table: ReactNode;
|
|
1829
1840
|
uploadDialog: ReactNode;
|
|
1830
1841
|
onOpenUploadDialog: () => void;
|
|
1842
|
+
incomingTransactionOpen: boolean;
|
|
1843
|
+
onIncomingTransactionOpenChange: (open: boolean) => void;
|
|
1844
|
+
isProcessingIncoming: boolean;
|
|
1845
|
+
onProcessIncoming: (values: IncomingWireTransactionValues) => void;
|
|
1831
1846
|
headerActions?: ReactNode;
|
|
1832
1847
|
}
|
|
1833
|
-
declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialog, onOpenUploadDialog, headerActions, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
|
|
1848
|
+
declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialog, onOpenUploadDialog, incomingTransactionOpen, onIncomingTransactionOpenChange, isProcessingIncoming, onProcessIncoming, headerActions, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
|
|
1834
1849
|
|
|
1835
1850
|
interface WireProcessingDetailItem {
|
|
1836
1851
|
id: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1821,6 +1821,17 @@ interface ACHReturnViewProps {
|
|
|
1821
1821
|
}
|
|
1822
1822
|
declare function ACHReturnView({ title, returnRateSectionTitle, unauthorizedSectionTitle, returnRateTable, unauthorizedTable, returnRateFilters, onReturnRateFilterChange, onReturnRateResetFilters, onReturnRateApplyFilters, productOptions, methodOptions, returnRateFiltersTitle, }: ACHReturnViewProps): react_jsx_runtime.JSX.Element;
|
|
1823
1823
|
|
|
1824
|
+
interface IncomingWireTransactionValues {
|
|
1825
|
+
originatorBankName: string;
|
|
1826
|
+
originatorAccountNumber: string;
|
|
1827
|
+
originatorRoutingNumber: string;
|
|
1828
|
+
originatorToBeneficiaryInfo: string;
|
|
1829
|
+
beneficiaryAccountNumber: string;
|
|
1830
|
+
amount: string;
|
|
1831
|
+
imad: string;
|
|
1832
|
+
omad: string;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1824
1835
|
interface WireProcessingViewProps {
|
|
1825
1836
|
title: string;
|
|
1826
1837
|
cardTitle: string;
|
|
@@ -1828,9 +1839,13 @@ interface WireProcessingViewProps {
|
|
|
1828
1839
|
table: ReactNode;
|
|
1829
1840
|
uploadDialog: ReactNode;
|
|
1830
1841
|
onOpenUploadDialog: () => void;
|
|
1842
|
+
incomingTransactionOpen: boolean;
|
|
1843
|
+
onIncomingTransactionOpenChange: (open: boolean) => void;
|
|
1844
|
+
isProcessingIncoming: boolean;
|
|
1845
|
+
onProcessIncoming: (values: IncomingWireTransactionValues) => void;
|
|
1831
1846
|
headerActions?: ReactNode;
|
|
1832
1847
|
}
|
|
1833
|
-
declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialog, onOpenUploadDialog, headerActions, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
|
|
1848
|
+
declare function WireProcessingView({ title, cardTitle, uploadButtonLabel, table, uploadDialog, onOpenUploadDialog, incomingTransactionOpen, onIncomingTransactionOpenChange, isProcessingIncoming, onProcessIncoming, headerActions, }: WireProcessingViewProps): react_jsx_runtime.JSX.Element;
|
|
1834
1849
|
|
|
1835
1850
|
interface WireProcessingDetailItem {
|
|
1836
1851
|
id: number;
|