@cenk1cenk2/md-printer 2.8.0 → 2.9.0
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/commands/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OUTPUT_FILE_ACCEPTED_TYPES } from "../constants/file.constants.js";
|
|
2
1
|
import { RequiredTemplateFiles, TEMPLATE_DIRECTORY, TemplateFiles } from "../constants/template.constants.js";
|
|
2
|
+
import { OUTPUT_FILE_ACCEPTED_TYPES } from "../constants/file.constants.js";
|
|
3
3
|
import "../constants/index.js";
|
|
4
4
|
import tailwind from "@tailwindcss/postcss";
|
|
5
5
|
import { watch } from "chokidar";
|
package/dist/constants/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OUTPUT_FILE_ACCEPTED_TYPES } from "./file.constants.js";
|
|
2
1
|
import { RequiredTemplateFiles, TEMPLATE_DIRECTORY, TemplateFiles } from "./template.constants.js";
|
|
2
|
+
import { OUTPUT_FILE_ACCEPTED_TYPES } from "./file.constants.js";
|
|
3
3
|
|
|
4
4
|
export { OUTPUT_FILE_ACCEPTED_TYPES, RequiredTemplateFiles, TEMPLATE_DIRECTORY, TemplateFiles };
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
</div>
|
|
28
28
|
</div>
|
|
29
29
|
<div class="col-span-6 bg-gray-900 rounded-bl-4xl flex flex-col justify-center text-center">
|
|
30
|
-
<p class="p-4 font-bold text-white text-6xl">
|
|
30
|
+
<p class="p-4 font-bold text-white text-6xl">INVOICE</p>
|
|
31
31
|
</div>
|
|
32
32
|
</section>
|
|
33
33
|
<section id="client" class="grid grid-cols-12">
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
</div>
|
|
42
42
|
<div class="col-span-6 flex justify-center text-xs text-center p-4">
|
|
43
43
|
<div class="grid grid-rows-2 gap-4 w-full px-12">
|
|
44
|
-
<div class="p-2 flex flex-row bg-gray-50 justify-between rounded-xl border border-gray-
|
|
45
|
-
<p class="font-bold">Invoice#</p>
|
|
46
|
-
<p class="font-semibold">{{ id }}</p>
|
|
47
|
-
</div>
|
|
48
|
-
<div class="p-2 flex flex-row bg-gray-50 justify-between rounded-xl border border-gray-300">
|
|
44
|
+
<div class="p-2 flex flex-row bg-gray-50 justify-between rounded-xl border border-gray-100!">
|
|
49
45
|
<p class="font-bold">Date</p>
|
|
50
46
|
<p class="font-semibold">{{ date }}</p>
|
|
51
47
|
</div>
|
|
48
|
+
<div class="p-2 flex flex-row bg-gray-50 justify-between rounded-xl border border-gray-100!">
|
|
49
|
+
<p class="font-bold">Invoice#</p>
|
|
50
|
+
<p class="font-semibold">{{ id }}</p>
|
|
51
|
+
</div>
|
|
52
52
|
</div>
|
|
53
53
|
</div>
|
|
54
54
|
</section>
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
</div>
|
|
119
119
|
<div class="col-span-1"></div>
|
|
120
120
|
<div
|
|
121
|
-
class="col-span-
|
|
121
|
+
class="col-span-5 flex flex-col justify-between border-2 rounded-xl border-primary-500! m-8 mr-16 p-4 shadow-md shadow-gray-400">
|
|
122
122
|
<div class="flex flex-row justify-between font-semibold">
|
|
123
123
|
<p>
|
|
124
124
|
Subtotal
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
{{ calculated_tax }}{{currency}}
|
|
136
136
|
</p>
|
|
137
137
|
</div>
|
|
138
|
-
<div class="flex flex-row justify-between font-bold text-xl text-primary-500 pt-
|
|
138
|
+
<div class="flex flex-row justify-between font-bold text-xl text-primary-500 pt-2 border-t-2">
|
|
139
139
|
<p>
|
|
140
140
|
TOTAL
|
|
141
141
|
</p>
|
|
@@ -150,11 +150,12 @@
|
|
|
150
150
|
<div class="col-span-1 flex flex-col justify-center text-lg font-extrabold text-gray-100">
|
|
151
151
|
<p class="text-vertical">NOTES</p>
|
|
152
152
|
</div>
|
|
153
|
-
<div class="col-span-
|
|
153
|
+
<div class="col-span-5 flex flex-col p-4 text-sm">
|
|
154
154
|
<span>{{ content }}</span>
|
|
155
155
|
</div>
|
|
156
|
+
<div class="col-span-1"></div>
|
|
156
157
|
<div
|
|
157
|
-
class="col-span-
|
|
158
|
+
class="col-span-5 flex flex-col justify-end text-center m-8 mr-16 p-4 pb-0 border-2 border-gray-50! rounded-xl text-xs text-gray-100">
|
|
158
159
|
<p>SIGNATURE</p>
|
|
159
160
|
</div>
|
|
160
161
|
</section>
|