meemup-library 1.4.56 → 1.4.58
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.
|
@@ -566,12 +566,13 @@ export default new class PreviewContentController {
|
|
|
566
566
|
if (member.id > initPointOfSaleTeamMember.id) {
|
|
567
567
|
content += SimplePreviewController.createSubTitle(`Member ID: #${member.id}`);
|
|
568
568
|
content += SimplePreviewController.createSubTitle(`Member: ${member.firstName} ${member.lastName}`);
|
|
569
|
-
content += SimplePreviewController.printSpace(
|
|
569
|
+
content += SimplePreviewController.printSpace(16);
|
|
570
570
|
}
|
|
571
|
-
content += SimplePreviewController.
|
|
572
|
-
content += SimplePreviewController.createText(`Reason: ${device.reason}`);
|
|
573
|
-
content += SimplePreviewController.printSolidLine();
|
|
571
|
+
content += SimplePreviewController.createHeader(`${title}: ${MoneyController.format(device.money, setting.currencySymbol)}`, 'left');
|
|
574
572
|
content += SimplePreviewController.createText(`Reason: ${device.reason}`);
|
|
573
|
+
// content += SimplePreviewController.printSolidLine();
|
|
574
|
+
// content += SimplePreviewController.createText(`Reason: ${device.reason}`);
|
|
575
|
+
content += SimplePreviewController.printSpace(24);
|
|
575
576
|
content += SimplePreviewController.footer();
|
|
576
577
|
return this.standardHtmlContainer(content);
|
|
577
578
|
}
|
|
@@ -606,6 +607,7 @@ export default new class PreviewContentController {
|
|
|
606
607
|
|
|
607
608
|
p,strong {
|
|
608
609
|
line-height: 1.5rem;
|
|
610
|
+
font-weight : 500;
|
|
609
611
|
}
|
|
610
612
|
|
|
611
613
|
td{
|
|
@@ -619,9 +621,9 @@ export default new class PreviewContentController {
|
|
|
619
621
|
margin: 0;
|
|
620
622
|
padding: 0;
|
|
621
623
|
background-color: #ffffff;
|
|
622
|
-
font-family:
|
|
624
|
+
font-family: 'Roboto', 'Arial', "Arial Black", "Comic Sans MS", "Georgia", "Impact", "Lucida Console", "Lucida Sans Unicode", 'Segoe UI', 'Oxygen',
|
|
623
625
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
624
|
-
sans-serif;
|
|
626
|
+
sans-serif , -apple-system, BlinkMacSystemFont;
|
|
625
627
|
-webkit-font-smoothing: antialiased;
|
|
626
628
|
-moz-osx-font-smoothing: grayscale;
|
|
627
629
|
}
|
|
@@ -639,6 +641,7 @@ export default new class PreviewContentController {
|
|
|
639
641
|
try {
|
|
640
642
|
content += SimplePreviewController.createHeader(data.title, 'center');
|
|
641
643
|
content += SimplePreviewController.createTitle(companyTitle, 'center');
|
|
644
|
+
content += SimplePreviewController.printSpace(20);
|
|
642
645
|
let infoList = data.details
|
|
643
646
|
.filter(i => i.section === EnumClosingWorkDaySection.INFORMATION)
|
|
644
647
|
.sort((a, b) => a.priority - b.priority);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meemup-library",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.58",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"remove:one": "rimraf dist",
|
|
12
12
|
"remove:two": "rimraf ./src/dist",
|
|
13
13
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
14
|
-
"commit": "git add . && git commit -m \"version.1.4.
|
|
14
|
+
"commit": "git add . && git commit -m \"version.1.4.58\" && git push origin "
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"/dist"
|