warqadui 0.0.280 → 0.0.281
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.js +2 -8
- package/dist/index.mjs +2 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -44934,10 +44934,7 @@ function Payments3({ url }) {
|
|
|
44934
44934
|
{
|
|
44935
44935
|
accessorKey: "account",
|
|
44936
44936
|
header: "Account",
|
|
44937
|
-
|
|
44938
|
-
const payment = row.original;
|
|
44939
|
-
return /* @__PURE__ */ (0, import_jsx_runtime249.jsx)("span", { children: payment?.accountData?.name || "N/A" });
|
|
44940
|
-
}
|
|
44937
|
+
accessorFn: (data2) => data2?.accountData?.name || "N/A"
|
|
44941
44938
|
},
|
|
44942
44939
|
{
|
|
44943
44940
|
accessorKey: "wallet",
|
|
@@ -45377,10 +45374,7 @@ function Journals3({ url }) {
|
|
|
45377
45374
|
{
|
|
45378
45375
|
accessorKey: "account",
|
|
45379
45376
|
header: "Account",
|
|
45380
|
-
|
|
45381
|
-
const journal = row.original;
|
|
45382
|
-
return /* @__PURE__ */ (0, import_jsx_runtime251.jsx)("span", { children: journal?.accountData?.name || "N/A" });
|
|
45383
|
-
}
|
|
45377
|
+
accessorFn: (data2) => data2?.accountData?.name || "N/A"
|
|
45384
45378
|
},
|
|
45385
45379
|
{
|
|
45386
45380
|
accessorKey: "amount",
|
package/dist/index.mjs
CHANGED
|
@@ -45136,10 +45136,7 @@ function Payments3({ url }) {
|
|
|
45136
45136
|
{
|
|
45137
45137
|
accessorKey: "account",
|
|
45138
45138
|
header: "Account",
|
|
45139
|
-
|
|
45140
|
-
const payment = row.original;
|
|
45141
|
-
return /* @__PURE__ */ jsx249("span", { children: payment?.accountData?.name || "N/A" });
|
|
45142
|
-
}
|
|
45139
|
+
accessorFn: (data2) => data2?.accountData?.name || "N/A"
|
|
45143
45140
|
},
|
|
45144
45141
|
{
|
|
45145
45142
|
accessorKey: "wallet",
|
|
@@ -45579,10 +45576,7 @@ function Journals3({ url }) {
|
|
|
45579
45576
|
{
|
|
45580
45577
|
accessorKey: "account",
|
|
45581
45578
|
header: "Account",
|
|
45582
|
-
|
|
45583
|
-
const journal = row.original;
|
|
45584
|
-
return /* @__PURE__ */ jsx251("span", { children: journal?.accountData?.name || "N/A" });
|
|
45585
|
-
}
|
|
45579
|
+
accessorFn: (data2) => data2?.accountData?.name || "N/A"
|
|
45586
45580
|
},
|
|
45587
45581
|
{
|
|
45588
45582
|
accessorKey: "amount",
|