@bookmypuja-tech/bmp-pdf 0.3.16 → 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 +2 -0
- package/dist/index.js +31 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -215,11 +215,13 @@ interface IInvoiceData {
|
|
|
215
215
|
basePujPrice: string;
|
|
216
216
|
repeatStartDate?: string;
|
|
217
217
|
repeatEndDate?: string;
|
|
218
|
+
pujaDate?: string;
|
|
218
219
|
}[];
|
|
219
220
|
platformCharges?: string;
|
|
220
221
|
gst?: string;
|
|
221
222
|
paymentGatewayCharges: string;
|
|
222
223
|
totalAmount: string;
|
|
224
|
+
postalCharges?: string;
|
|
223
225
|
subTotal: string;
|
|
224
226
|
paymentMethod: string;
|
|
225
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