warqadui 0.0.280 → 0.0.282
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 +4 -10
- package/dist/index.mjs +4 -10
- 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",
|
|
@@ -48480,8 +48474,8 @@ var Expenses3Reports = () => {
|
|
|
48480
48474
|
className: "text-xs whitespace-nowrap ",
|
|
48481
48475
|
render: (row) => {
|
|
48482
48476
|
return /* @__PURE__ */ (0, import_jsx_runtime265.jsxs)("div", { className: "", children: [
|
|
48483
|
-
/* @__PURE__ */ (0, import_jsx_runtime265.jsx)("
|
|
48484
|
-
row.note && /* @__PURE__ */ (0, import_jsx_runtime265.jsx)("
|
|
48477
|
+
/* @__PURE__ */ (0, import_jsx_runtime265.jsx)("p", { className: "font-bold capitalize text-black dark:text-white print:text-black", children: row.description }),
|
|
48478
|
+
row.note && /* @__PURE__ */ (0, import_jsx_runtime265.jsx)("p", { className: "font-bold capitalize text-black dark:text-white print:text-black", children: row.note })
|
|
48485
48479
|
] });
|
|
48486
48480
|
}
|
|
48487
48481
|
},
|
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",
|
|
@@ -48692,8 +48686,8 @@ var Expenses3Reports = () => {
|
|
|
48692
48686
|
className: "text-xs whitespace-nowrap ",
|
|
48693
48687
|
render: (row) => {
|
|
48694
48688
|
return /* @__PURE__ */ jsxs234("div", { className: "", children: [
|
|
48695
|
-
/* @__PURE__ */ jsx265("
|
|
48696
|
-
row.note && /* @__PURE__ */ jsx265("
|
|
48689
|
+
/* @__PURE__ */ jsx265("p", { className: "font-bold capitalize text-black dark:text-white print:text-black", children: row.description }),
|
|
48690
|
+
row.note && /* @__PURE__ */ jsx265("p", { className: "font-bold capitalize text-black dark:text-white print:text-black", children: row.note })
|
|
48697
48691
|
] });
|
|
48698
48692
|
}
|
|
48699
48693
|
},
|