jspdf-dynamo 1.0.4 → 1.0.5

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.
Files changed (33) hide show
  1. package/dist/index.cjs +74 -19
  2. package/dist/index.d.cts +4 -3
  3. package/dist/index.d.ts +4 -3
  4. package/dist/index.js +74 -19
  5. package/documentation/3. Variables/SystemMaintained.txt +5 -0
  6. package/documentation/4. Commands/AddBookmark.txt +1 -1
  7. package/documentation/4. Commands/AddPage.txt +5 -3
  8. package/documentation/4. Commands/CheckPage.txt +1 -1
  9. package/documentation/4. Commands/CopyVar.txt +2 -2
  10. package/documentation/4. Commands/DivVar.txt +67 -0
  11. package/documentation/4. Commands/Do.txt +1 -1
  12. package/documentation/4. Commands/DoRepeat.txt +1 -1
  13. package/documentation/4. Commands/DrawBox.txt +1 -1
  14. package/documentation/4. Commands/DrawDebugGrid.txt +1 -1
  15. package/documentation/4. Commands/DrawImage.txt +2 -2
  16. package/documentation/4. Commands/DrawLine.txt +1 -1
  17. package/documentation/4. Commands/ForEachPage.txt +1 -1
  18. package/documentation/4. Commands/IfEq.txt +53 -0
  19. package/documentation/4. Commands/IfGt.txt +1 -1
  20. package/documentation/4. Commands/IncCurrentX.txt +1 -1
  21. package/documentation/4. Commands/IncCurrentY.txt +1 -1
  22. package/documentation/4. Commands/IncVar.txt +1 -1
  23. package/documentation/4. Commands/{AddImageFromFile.txt → LoadImageFromFile.txt } +4 -4
  24. package/documentation/4. Commands/{AddImageFromUrl.txt → LoadImageFromUrl.txt } +4 -4
  25. package/documentation/4. Commands/MultVar.txt +4 -7
  26. package/documentation/4. Commands/SetCurrentX.txt +1 -1
  27. package/documentation/4. Commands/SetCurrentY.txt +1 -1
  28. package/documentation/4. Commands/SetLineWidth.txt +6 -6
  29. package/documentation/4. Commands/SetMargin.txt +10 -13
  30. package/documentation/4. Commands/SetVar.txt +2 -3
  31. package/documentation/Documentation.pdf +2506 -2038
  32. package/documentation/documentation.txt +4 -2
  33. package/package.json +1 -1
@@ -218,11 +218,10 @@
218
218
 
219
219
  .Include ./Documentation/4. Commands/Commands.txt
220
220
  .Include ./Documentation/4. Commands/AddBookmark.txt
221
- .Include ./Documentation/4. Commands/AddImageFromFile.txt
222
- .Include ./Documentation/4. Commands/AddImageFromUrl.txt
223
221
  .Include ./Documentation/4. Commands/AddPage.txt
224
222
  .Include ./Documentation/4. Commands/CheckPage.txt
225
223
  .Include ./Documentation/4. Commands/CopyVar.txt
224
+ .Include ./Documentation/4. Commands/DivVar.txt
226
225
  .Include ./Documentation/4. Commands/Do.txt
227
226
  .Include ./Documentation/4. Commands/DoRepeat.txt
228
227
  .Include ./Documentation/4. Commands/DrawBox.txt
@@ -234,6 +233,7 @@
234
233
  .Include ./Documentation/4. Commands/DrawTextWrapped.txt
235
234
  .Include ./Documentation/4. Commands/ForEachPage.txt
236
235
  .Include ./Documentation/4. Commands/IfBlank.txt
236
+ .Include ./Documentation/4. Commands/IfEq.txt
237
237
  .Include ./Documentation/4. Commands/IfGt.txt
238
238
  .Include ./Documentation/4. Commands/IfNotBlank.txt
239
239
  .Include ./Documentation/4. Commands/incCurrentX.txt
@@ -241,6 +241,8 @@
241
241
  .Include ./Documentation/4. Commands/Include.txt
242
242
  .Include ./Documentation/4. Commands/IncludeUrl.txt
243
243
  .Include ./Documentation/4. Commands/IncVar.txt
244
+ .Include ./Documentation/4. Commands/LoadImageFromFile.txt
245
+ .Include ./Documentation/4. Commands/LoadImageFromUrl.txt
244
246
  .Include ./Documentation/4. Commands/MultVar.txt
245
247
  .Include ./Documentation/4. Commands/SavePdf.txt
246
248
  .Include ./Documentation/4. Commands/SelectPage.txt
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jspdf-dynamo",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Generate data driven PDFs from dynamic templates",
5
5
  "main": "dist/index.js",
6
6
  "repository": {