@bookmypuja-tech/bmp-pdf 0.3.22 → 0.3.23

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.d.ts CHANGED
@@ -112,6 +112,7 @@ interface IPrasadItem {
112
112
  devoteeName: string;
113
113
  prasadName: string;
114
114
  quantity: number;
115
+ collectionMode: string;
115
116
  }
116
117
  interface IPrasadReport {
117
118
  date: Date;
package/dist/index.js CHANGED
@@ -1323,7 +1323,7 @@ var A4PrasadReport = ({
1323
1323
  style: {
1324
1324
  padding: 6,
1325
1325
  borderRight: "1px solid black",
1326
- width: "30%"
1326
+ width: "23%"
1327
1327
  }
1328
1328
  },
1329
1329
  /* @__PURE__ */ React11.createElement(Text_default, null, "Devotee Name")
@@ -1344,10 +1344,21 @@ var A4PrasadReport = ({
1344
1344
  {
1345
1345
  style: {
1346
1346
  padding: 6,
1347
- width: "10%"
1347
+ width: "10%",
1348
+ borderRight: "1px solid black"
1348
1349
  }
1349
1350
  },
1350
1351
  /* @__PURE__ */ React11.createElement(Text_default, null, "Qty")
1352
+ ),
1353
+ /* @__PURE__ */ React11.createElement(
1354
+ View6,
1355
+ {
1356
+ style: {
1357
+ padding: 6,
1358
+ width: "7%"
1359
+ }
1360
+ },
1361
+ /* @__PURE__ */ React11.createElement(Text_default, null, "Mode")
1351
1362
  )
1352
1363
  ),
1353
1364
  data.map((item, index) => {
@@ -1390,7 +1401,9 @@ var A4PrasadReport = ({
1390
1401
  style: {
1391
1402
  padding: 6,
1392
1403
  borderRight: "1px solid black",
1393
- width: "30%"
1404
+ width: "23%",
1405
+ fontSize: 9,
1406
+ flexWrap: "wrap"
1394
1407
  }
1395
1408
  },
1396
1409
  /* @__PURE__ */ React11.createElement(Text_default, null, item.devoteeName)
@@ -1411,10 +1424,21 @@ var A4PrasadReport = ({
1411
1424
  {
1412
1425
  style: {
1413
1426
  padding: 6,
1414
- width: "10%"
1427
+ width: "10%",
1428
+ borderRight: "1px solid black"
1415
1429
  }
1416
1430
  },
1417
1431
  /* @__PURE__ */ React11.createElement(Text_default, null, item.quantity)
1432
+ ),
1433
+ /* @__PURE__ */ React11.createElement(
1434
+ View6,
1435
+ {
1436
+ style: {
1437
+ padding: 6,
1438
+ width: "7%"
1439
+ }
1440
+ },
1441
+ /* @__PURE__ */ React11.createElement(Text_default, null, item.collectionMode)
1418
1442
  )
1419
1443
  );
1420
1444
  })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bookmypuja-tech/bmp-pdf",
3
3
  "description": "PDF Report Generation for Temple360 and T-360 by BookMyPuja",
4
- "version": "0.3.22",
4
+ "version": "0.3.23",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",