@bookmypuja-tech/bmp-pdf 0.3.34 → 0.3.36
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 +1 -0
- package/dist/index.js +21 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1864,7 +1864,8 @@ var A4PujaList = ({
|
|
|
1864
1864
|
marginBottom: 10,
|
|
1865
1865
|
fontSize: 18,
|
|
1866
1866
|
padding: 10,
|
|
1867
|
-
border: "1px dotted black"
|
|
1867
|
+
border: "1px dotted black",
|
|
1868
|
+
position: "relative"
|
|
1868
1869
|
},
|
|
1869
1870
|
wrap: false
|
|
1870
1871
|
},
|
|
@@ -1906,7 +1907,19 @@ var A4PujaList = ({
|
|
|
1906
1907
|
},
|
|
1907
1908
|
/* @__PURE__ */ React12.createElement(Text_default, null, `${booking.devoteeName} ----- ${booking.nakshatra} ----- ${booking.pujaName}`)
|
|
1908
1909
|
)
|
|
1909
|
-
)
|
|
1910
|
+
),
|
|
1911
|
+
/* @__PURE__ */ React12.createElement(View7, null, /* @__PURE__ */ React12.createElement(
|
|
1912
|
+
Text_default,
|
|
1913
|
+
{
|
|
1914
|
+
style: {
|
|
1915
|
+
textAlign: "center",
|
|
1916
|
+
marginTop: 10,
|
|
1917
|
+
fontSize: 10,
|
|
1918
|
+
opacity: 0.5
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1921
|
+
`~~~ bookmypuja.app - Your Puja, Our Commitment ~~~`
|
|
1922
|
+
))
|
|
1910
1923
|
);
|
|
1911
1924
|
}
|
|
1912
1925
|
);
|
|
@@ -3348,7 +3361,9 @@ var A4Invoice = ({ data }) => {
|
|
|
3348
3361
|
color: "#333333"
|
|
3349
3362
|
}
|
|
3350
3363
|
},
|
|
3351
|
-
item.pujaDate
|
|
3364
|
+
item.pujaDate,
|
|
3365
|
+
" ",
|
|
3366
|
+
item.timing ? `- ${item.timing}` : null
|
|
3352
3367
|
) : null,
|
|
3353
3368
|
item.repeatEndDate && item.repeatStartDate ? /* @__PURE__ */ React17.createElement(
|
|
3354
3369
|
Text_default,
|
|
@@ -3360,7 +3375,9 @@ var A4Invoice = ({ data }) => {
|
|
|
3360
3375
|
},
|
|
3361
3376
|
item.repeatStartDate,
|
|
3362
3377
|
" to ",
|
|
3363
|
-
item.repeatEndDate
|
|
3378
|
+
item.repeatEndDate,
|
|
3379
|
+
" ",
|
|
3380
|
+
item.timing ? `- ${item.timing}` : null
|
|
3364
3381
|
) : null
|
|
3365
3382
|
),
|
|
3366
3383
|
/* @__PURE__ */ React17.createElement(
|
package/package.json
CHANGED