braid-ui 1.0.152 → 1.0.153
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 +8 -57
- package/dist/index.d.ts +8 -57
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1678,22 +1678,6 @@ interface ReturnTransactionDialogProps {
|
|
|
1678
1678
|
}
|
|
1679
1679
|
declare function ReturnTransactionDialog({ transactionId, open, onOpenChange, onReturn, reasonCodes, }: ReturnTransactionDialogProps): react_jsx_runtime.JSX.Element;
|
|
1680
1680
|
|
|
1681
|
-
interface BraidTransaction {
|
|
1682
|
-
id: string;
|
|
1683
|
-
amount: number;
|
|
1684
|
-
postDate: string;
|
|
1685
|
-
senderAccount: string;
|
|
1686
|
-
receiverAccount: string;
|
|
1687
|
-
type: "ACH" | "Wire";
|
|
1688
|
-
}
|
|
1689
|
-
interface FedSettlement {
|
|
1690
|
-
id: string;
|
|
1691
|
-
amount: number;
|
|
1692
|
-
settlementDate: string;
|
|
1693
|
-
receiverAccount: string;
|
|
1694
|
-
type: "ACH" | "Wire";
|
|
1695
|
-
}
|
|
1696
|
-
|
|
1697
1681
|
interface TransactionTypeOption {
|
|
1698
1682
|
label: string;
|
|
1699
1683
|
value: string;
|
|
@@ -1707,59 +1691,26 @@ interface ReconExceptionsViewProps {
|
|
|
1707
1691
|
toDate?: Date;
|
|
1708
1692
|
transactionType: string;
|
|
1709
1693
|
transactionTypeOptions: TransactionTypeOption[];
|
|
1710
|
-
rowsPerPageOptions: RowsPerPageOption[];
|
|
1711
|
-
braidData: BraidTransaction[];
|
|
1712
|
-
fedData: FedSettlement[];
|
|
1713
|
-
braidPaginatedData: BraidTransaction[];
|
|
1714
|
-
fedPaginatedData: FedSettlement[];
|
|
1715
|
-
selectedBraid: string | null;
|
|
1716
|
-
selectedFed: string | null;
|
|
1717
1694
|
dataLoaded: boolean;
|
|
1718
|
-
braidPage: number;
|
|
1719
|
-
braidRowsPerPage: number;
|
|
1720
|
-
braidTotalPages: number;
|
|
1721
|
-
fedPage: number;
|
|
1722
|
-
fedRowsPerPage: number;
|
|
1723
|
-
fedTotalPages: number;
|
|
1724
1695
|
canMatch: boolean;
|
|
1696
|
+
braidTitle: string;
|
|
1697
|
+
fedTitle: string;
|
|
1698
|
+
braidTable: ReactNode;
|
|
1699
|
+
fedTable: ReactNode;
|
|
1725
1700
|
onFromDateChange: (date?: Date) => void;
|
|
1726
1701
|
onToDateChange: (date?: Date) => void;
|
|
1727
1702
|
onTransactionTypeChange: (value: string) => void;
|
|
1728
1703
|
onSearch: () => void;
|
|
1729
1704
|
onMatch: () => void;
|
|
1730
|
-
onSelectBraid: (id: string) => void;
|
|
1731
|
-
onSelectFed: (id: string) => void;
|
|
1732
|
-
onBraidPageChange: (page: number) => void;
|
|
1733
|
-
onFedPageChange: (page: number) => void;
|
|
1734
|
-
onBraidRowsPerPageChange: (rows: number) => void;
|
|
1735
|
-
onFedRowsPerPageChange: (rows: number) => void;
|
|
1736
|
-
}
|
|
1737
|
-
declare function ReconExceptionsView({ fromDate, toDate, transactionType, transactionTypeOptions, rowsPerPageOptions, braidData, fedData, braidPaginatedData, fedPaginatedData, selectedBraid, selectedFed, dataLoaded, braidPage, braidRowsPerPage, braidTotalPages, fedPage, fedRowsPerPage, fedTotalPages, canMatch, onFromDateChange, onToDateChange, onTransactionTypeChange, onSearch, onMatch, onSelectBraid, onSelectFed, onBraidPageChange, onFedPageChange, onBraidRowsPerPageChange, onFedRowsPerPageChange, }: ReconExceptionsViewProps): react_jsx_runtime.JSX.Element;
|
|
1738
|
-
|
|
1739
|
-
interface ReconUpload$1 {
|
|
1740
|
-
id: string;
|
|
1741
|
-
uploaded: string;
|
|
1742
|
-
fileName: string;
|
|
1743
|
-
type: string;
|
|
1744
|
-
status: "Processed" | "Failed";
|
|
1745
|
-
requester: string;
|
|
1746
|
-
totalRecords: number;
|
|
1747
|
-
matchedRecords: number;
|
|
1748
|
-
exceptionRecords: number;
|
|
1749
|
-
skippedRecords: number;
|
|
1750
|
-
invalidRecords: number;
|
|
1751
1705
|
}
|
|
1706
|
+
declare function ReconExceptionsView({ fromDate, toDate, transactionType, transactionTypeOptions, dataLoaded, canMatch, braidTitle, fedTitle, braidTable, fedTable, onFromDateChange, onToDateChange, onTransactionTypeChange, onSearch, onMatch, }: ReconExceptionsViewProps): react_jsx_runtime.JSX.Element;
|
|
1752
1707
|
|
|
1753
1708
|
interface ReconUploadViewProps {
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
sortDirection: "asc" | "desc";
|
|
1757
|
-
uploadDialogOpen: boolean;
|
|
1758
|
-
onSort: (field: keyof ReconUpload$1) => void;
|
|
1759
|
-
onUploadDialogOpenChange: (open: boolean) => void;
|
|
1709
|
+
table: ReactNode;
|
|
1710
|
+
uploadDialog: ReactNode;
|
|
1760
1711
|
onOpenUploadDialog: () => void;
|
|
1761
1712
|
}
|
|
1762
|
-
declare function ReconUploadView({
|
|
1713
|
+
declare function ReconUploadView({ table, uploadDialog, onOpenUploadDialog }: ReconUploadViewProps): react_jsx_runtime.JSX.Element;
|
|
1763
1714
|
|
|
1764
1715
|
interface AccountCardProps {
|
|
1765
1716
|
account: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1678,22 +1678,6 @@ interface ReturnTransactionDialogProps {
|
|
|
1678
1678
|
}
|
|
1679
1679
|
declare function ReturnTransactionDialog({ transactionId, open, onOpenChange, onReturn, reasonCodes, }: ReturnTransactionDialogProps): react_jsx_runtime.JSX.Element;
|
|
1680
1680
|
|
|
1681
|
-
interface BraidTransaction {
|
|
1682
|
-
id: string;
|
|
1683
|
-
amount: number;
|
|
1684
|
-
postDate: string;
|
|
1685
|
-
senderAccount: string;
|
|
1686
|
-
receiverAccount: string;
|
|
1687
|
-
type: "ACH" | "Wire";
|
|
1688
|
-
}
|
|
1689
|
-
interface FedSettlement {
|
|
1690
|
-
id: string;
|
|
1691
|
-
amount: number;
|
|
1692
|
-
settlementDate: string;
|
|
1693
|
-
receiverAccount: string;
|
|
1694
|
-
type: "ACH" | "Wire";
|
|
1695
|
-
}
|
|
1696
|
-
|
|
1697
1681
|
interface TransactionTypeOption {
|
|
1698
1682
|
label: string;
|
|
1699
1683
|
value: string;
|
|
@@ -1707,59 +1691,26 @@ interface ReconExceptionsViewProps {
|
|
|
1707
1691
|
toDate?: Date;
|
|
1708
1692
|
transactionType: string;
|
|
1709
1693
|
transactionTypeOptions: TransactionTypeOption[];
|
|
1710
|
-
rowsPerPageOptions: RowsPerPageOption[];
|
|
1711
|
-
braidData: BraidTransaction[];
|
|
1712
|
-
fedData: FedSettlement[];
|
|
1713
|
-
braidPaginatedData: BraidTransaction[];
|
|
1714
|
-
fedPaginatedData: FedSettlement[];
|
|
1715
|
-
selectedBraid: string | null;
|
|
1716
|
-
selectedFed: string | null;
|
|
1717
1694
|
dataLoaded: boolean;
|
|
1718
|
-
braidPage: number;
|
|
1719
|
-
braidRowsPerPage: number;
|
|
1720
|
-
braidTotalPages: number;
|
|
1721
|
-
fedPage: number;
|
|
1722
|
-
fedRowsPerPage: number;
|
|
1723
|
-
fedTotalPages: number;
|
|
1724
1695
|
canMatch: boolean;
|
|
1696
|
+
braidTitle: string;
|
|
1697
|
+
fedTitle: string;
|
|
1698
|
+
braidTable: ReactNode;
|
|
1699
|
+
fedTable: ReactNode;
|
|
1725
1700
|
onFromDateChange: (date?: Date) => void;
|
|
1726
1701
|
onToDateChange: (date?: Date) => void;
|
|
1727
1702
|
onTransactionTypeChange: (value: string) => void;
|
|
1728
1703
|
onSearch: () => void;
|
|
1729
1704
|
onMatch: () => void;
|
|
1730
|
-
onSelectBraid: (id: string) => void;
|
|
1731
|
-
onSelectFed: (id: string) => void;
|
|
1732
|
-
onBraidPageChange: (page: number) => void;
|
|
1733
|
-
onFedPageChange: (page: number) => void;
|
|
1734
|
-
onBraidRowsPerPageChange: (rows: number) => void;
|
|
1735
|
-
onFedRowsPerPageChange: (rows: number) => void;
|
|
1736
|
-
}
|
|
1737
|
-
declare function ReconExceptionsView({ fromDate, toDate, transactionType, transactionTypeOptions, rowsPerPageOptions, braidData, fedData, braidPaginatedData, fedPaginatedData, selectedBraid, selectedFed, dataLoaded, braidPage, braidRowsPerPage, braidTotalPages, fedPage, fedRowsPerPage, fedTotalPages, canMatch, onFromDateChange, onToDateChange, onTransactionTypeChange, onSearch, onMatch, onSelectBraid, onSelectFed, onBraidPageChange, onFedPageChange, onBraidRowsPerPageChange, onFedRowsPerPageChange, }: ReconExceptionsViewProps): react_jsx_runtime.JSX.Element;
|
|
1738
|
-
|
|
1739
|
-
interface ReconUpload$1 {
|
|
1740
|
-
id: string;
|
|
1741
|
-
uploaded: string;
|
|
1742
|
-
fileName: string;
|
|
1743
|
-
type: string;
|
|
1744
|
-
status: "Processed" | "Failed";
|
|
1745
|
-
requester: string;
|
|
1746
|
-
totalRecords: number;
|
|
1747
|
-
matchedRecords: number;
|
|
1748
|
-
exceptionRecords: number;
|
|
1749
|
-
skippedRecords: number;
|
|
1750
|
-
invalidRecords: number;
|
|
1751
1705
|
}
|
|
1706
|
+
declare function ReconExceptionsView({ fromDate, toDate, transactionType, transactionTypeOptions, dataLoaded, canMatch, braidTitle, fedTitle, braidTable, fedTable, onFromDateChange, onToDateChange, onTransactionTypeChange, onSearch, onMatch, }: ReconExceptionsViewProps): react_jsx_runtime.JSX.Element;
|
|
1752
1707
|
|
|
1753
1708
|
interface ReconUploadViewProps {
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
sortDirection: "asc" | "desc";
|
|
1757
|
-
uploadDialogOpen: boolean;
|
|
1758
|
-
onSort: (field: keyof ReconUpload$1) => void;
|
|
1759
|
-
onUploadDialogOpenChange: (open: boolean) => void;
|
|
1709
|
+
table: ReactNode;
|
|
1710
|
+
uploadDialog: ReactNode;
|
|
1760
1711
|
onOpenUploadDialog: () => void;
|
|
1761
1712
|
}
|
|
1762
|
-
declare function ReconUploadView({
|
|
1713
|
+
declare function ReconUploadView({ table, uploadDialog, onOpenUploadDialog }: ReconUploadViewProps): react_jsx_runtime.JSX.Element;
|
|
1763
1714
|
|
|
1764
1715
|
interface AccountCardProps {
|
|
1765
1716
|
account: {
|