@bookmypuja-tech/bmp-pdf 0.3.17 → 0.3.18

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
@@ -221,6 +221,7 @@ interface IInvoiceData {
221
221
  gst?: string;
222
222
  paymentGatewayCharges: string;
223
223
  totalAmount: string;
224
+ postalCharges?: string;
224
225
  subTotal: string;
225
226
  paymentMethod: string;
226
227
  prasads?: {
package/dist/index.js CHANGED
@@ -3363,6 +3363,37 @@ var A4Invoice = ({ data }) => {
3363
3363
  /* @__PURE__ */ React17.createElement(Text_default, null, data.subTotal)
3364
3364
  )
3365
3365
  ),
3366
+ /* @__PURE__ */ React17.createElement(
3367
+ View12,
3368
+ {
3369
+ style: {
3370
+ display: "flex",
3371
+ flexDirection: "row",
3372
+ gap: 10,
3373
+ fontSize: 10
3374
+ }
3375
+ },
3376
+ /* @__PURE__ */ React17.createElement(
3377
+ View12,
3378
+ {
3379
+ style: {
3380
+ width: "70%",
3381
+ textAlign: "right"
3382
+ }
3383
+ },
3384
+ /* @__PURE__ */ React17.createElement(Text_default, null, "Postal Charges: ")
3385
+ ),
3386
+ /* @__PURE__ */ React17.createElement(
3387
+ View12,
3388
+ {
3389
+ style: {
3390
+ width: "30%",
3391
+ textAlign: "right"
3392
+ }
3393
+ },
3394
+ /* @__PURE__ */ React17.createElement(Text_default, null, data.postalCharges)
3395
+ )
3396
+ ),
3366
3397
  /* @__PURE__ */ React17.createElement(
3367
3398
  View12,
3368
3399
  {
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.17",
4
+ "version": "0.3.18",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",