@bookmypuja-tech/bmp-pdf 0.3.29 → 0.3.31
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 +13 -3
- package/dist/index.js +1 -27
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -228,9 +228,19 @@ interface IInvoiceData {
|
|
|
228
228
|
subTotal: string;
|
|
229
229
|
paymentMethod: string;
|
|
230
230
|
prasads?: {
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
231
|
+
morning: {
|
|
232
|
+
name: string;
|
|
233
|
+
timings: string;
|
|
234
|
+
}[];
|
|
235
|
+
afternoon: {
|
|
236
|
+
name: string;
|
|
237
|
+
timings: string;
|
|
238
|
+
}[];
|
|
239
|
+
evening: {
|
|
240
|
+
name: string;
|
|
241
|
+
timings: string;
|
|
242
|
+
}[];
|
|
243
|
+
};
|
|
234
244
|
}
|
|
235
245
|
interface IInvoiceProps {
|
|
236
246
|
data: IInvoiceData;
|
package/dist/index.js
CHANGED
|
@@ -2556,33 +2556,7 @@ var A4CombinedReport = ({
|
|
|
2556
2556
|
flexDirection: "row"
|
|
2557
2557
|
}
|
|
2558
2558
|
},
|
|
2559
|
-
/* @__PURE__ */ React14.createElement(
|
|
2560
|
-
View9,
|
|
2561
|
-
{
|
|
2562
|
-
style: {
|
|
2563
|
-
width: "40%"
|
|
2564
|
-
}
|
|
2565
|
-
},
|
|
2566
|
-
/* @__PURE__ */ React14.createElement(Text_default, null, booking.devoteeName)
|
|
2567
|
-
),
|
|
2568
|
-
/* @__PURE__ */ React14.createElement(
|
|
2569
|
-
View9,
|
|
2570
|
-
{
|
|
2571
|
-
style: {
|
|
2572
|
-
width: "30%"
|
|
2573
|
-
}
|
|
2574
|
-
},
|
|
2575
|
-
/* @__PURE__ */ React14.createElement(Text_default, null, booking.nakshatra)
|
|
2576
|
-
),
|
|
2577
|
-
/* @__PURE__ */ React14.createElement(
|
|
2578
|
-
View9,
|
|
2579
|
-
{
|
|
2580
|
-
style: {
|
|
2581
|
-
width: "30%"
|
|
2582
|
-
}
|
|
2583
|
-
},
|
|
2584
|
-
/* @__PURE__ */ React14.createElement(Text_default, null, puja.name)
|
|
2585
|
-
)
|
|
2559
|
+
/* @__PURE__ */ React14.createElement(Text_default, null, `${booking.devoteeName} ----- ${booking.nakshatra} ----- ${puja.name}`)
|
|
2586
2560
|
)
|
|
2587
2561
|
);
|
|
2588
2562
|
});
|
package/package.json
CHANGED