@bookmypuja-tech/bmp-pdf 0.3.34 → 0.3.35
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 +6 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3348,7 +3348,9 @@ var A4Invoice = ({ data }) => {
|
|
|
3348
3348
|
color: "#333333"
|
|
3349
3349
|
}
|
|
3350
3350
|
},
|
|
3351
|
-
item.pujaDate
|
|
3351
|
+
item.pujaDate,
|
|
3352
|
+
" ",
|
|
3353
|
+
item.timing ? `- ${item.timing}` : null
|
|
3352
3354
|
) : null,
|
|
3353
3355
|
item.repeatEndDate && item.repeatStartDate ? /* @__PURE__ */ React17.createElement(
|
|
3354
3356
|
Text_default,
|
|
@@ -3360,7 +3362,9 @@ var A4Invoice = ({ data }) => {
|
|
|
3360
3362
|
},
|
|
3361
3363
|
item.repeatStartDate,
|
|
3362
3364
|
" to ",
|
|
3363
|
-
item.repeatEndDate
|
|
3365
|
+
item.repeatEndDate,
|
|
3366
|
+
" ",
|
|
3367
|
+
item.timing ? `- ${item.timing}` : null
|
|
3364
3368
|
) : null
|
|
3365
3369
|
),
|
|
3366
3370
|
/* @__PURE__ */ React17.createElement(
|
package/package.json
CHANGED