@driveflux/pdf 1.7.0 → 1.7.1

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 (38) hide show
  1. package/dist/__mocks__/quotation.js +11 -10
  2. package/dist/__mocks__/subscription.js +122 -380
  3. package/dist/components/FluxLogo.js +3 -62
  4. package/dist/components/StandardPage.js +8 -97
  5. package/dist/debug.js +26 -203
  6. package/dist/index.js +1 -0
  7. package/dist/templates/QuotationPdf/CustomerSubscriptionSection.js +27 -145
  8. package/dist/templates/QuotationPdf/GFV.js +12 -49
  9. package/dist/templates/QuotationPdf/Header.js +5 -63
  10. package/dist/templates/QuotationPdf/Pricing.js +204 -574
  11. package/dist/templates/QuotationPdf/QuotationPdfPage.js +3 -23
  12. package/dist/templates/QuotationPdf/SectionBoxNew.js +4 -34
  13. package/dist/templates/QuotationPdf/TermsSection.js +5 -42
  14. package/dist/templates/QuotationPdf/VehiclePhotos.js +24 -54
  15. package/dist/templates/QuotationPdf/index.js +10 -189
  16. package/dist/templates/QuotationPdf/translations.js +23 -38
  17. package/dist/templates/QuotationPdf/utils.js +29 -59
  18. package/dist/templates/SubscriptionAgreement/Confirmation.js +11 -66
  19. package/dist/templates/SubscriptionAgreement/CoverPage.js +10 -77
  20. package/dist/templates/SubscriptionAgreement/CoverPageSection.js +5 -16
  21. package/dist/templates/SubscriptionAgreement/Details.js +43 -69
  22. package/dist/templates/SubscriptionAgreement/Footer.js +6 -48
  23. package/dist/templates/SubscriptionAgreement/Header.js +5 -35
  24. package/dist/templates/SubscriptionAgreement/LabelValue.js +3 -25
  25. package/dist/templates/SubscriptionAgreement/SubscriptionAgreementPage.js +3 -26
  26. package/dist/templates/SubscriptionAgreement/TermsOfUse.js +3 -52
  27. package/dist/templates/SubscriptionAgreement/TermsOfUseSubSection.js +9 -97
  28. package/dist/templates/SubscriptionAgreement/index.js +14 -240
  29. package/dist/templates/SubscriptionAgreement/translations.js +193 -194
  30. package/dist/templates/SubscriptionAgreement/types.js +2 -1
  31. package/dist/templates/SubscriptionAgreement/utils.js +5 -3
  32. package/dist/templates/index.js +1 -0
  33. package/dist/theme/colors.js +63 -44
  34. package/dist/theme/index.js +1 -0
  35. package/dist/types.js +2 -1
  36. package/dist/utils.js +16 -159
  37. package/dist/watch.js +4 -3
  38. package/package.json +2 -2
@@ -1,4 +1,4 @@
1
- export var quotation = {
1
+ export const quotation = {
2
2
  id: 'QU9HLAPJ9',
3
3
  vehicleId: 'V8AR2D4ZC',
4
4
  plan: 'plan36',
@@ -16,7 +16,7 @@ export var quotation = {
16
16
  type: 'user',
17
17
  name: 'dddd',
18
18
  email: null,
19
- address: null
19
+ address: null,
20
20
  },
21
21
  fees: {
22
22
  subscriptionFee: 1610,
@@ -40,8 +40,8 @@ export var quotation = {
40
40
  extraCharges: [],
41
41
  amountBeforeTax: 2322,
42
42
  taxAmount: 185.76,
43
- amountAfterTax: 2507.76
44
- }
43
+ amountAfterTax: 2507.76,
44
+ },
45
45
  },
46
46
  images: [
47
47
  {
@@ -54,7 +54,7 @@ export var quotation = {
54
54
  small: null,
55
55
  medium: null,
56
56
  large: null,
57
- description: null
57
+ description: null,
58
58
  },
59
59
  {
60
60
  default: 'https://flux-site-files.s3.ap-southeast-1.amazonaws.com/vehicles-v8-ar2-d4-zc-images-whats-app-image-2024-09-19-at-12-47-23-pm.jpeg',
@@ -66,7 +66,7 @@ export var quotation = {
66
66
  small: null,
67
67
  medium: null,
68
68
  large: null,
69
- description: null
69
+ description: null,
70
70
  },
71
71
  {
72
72
  default: 'https://flux-site-files.s3.ap-southeast-1.amazonaws.com/vehicles-v8-ar2-d4-zc-images-whats-app-image-2024-09-19-at-12-48-30-pm-1.jpeg',
@@ -78,7 +78,7 @@ export var quotation = {
78
78
  small: null,
79
79
  medium: null,
80
80
  large: null,
81
- description: null
81
+ description: null,
82
82
  },
83
83
  {
84
84
  default: 'https://flux-site-files.s3.ap-southeast-1.amazonaws.com/vehicles-v8-ar2-d4-zc-images-whats-app-image-2024-09-19-at-12-48-31-pm.jpeg',
@@ -90,8 +90,9 @@ export var quotation = {
90
90
  small: null,
91
91
  medium: null,
92
92
  large: null,
93
- description: null
94
- }
93
+ description: null,
94
+ },
95
95
  ],
96
- quotationPdf: 'https://dev-flux-admin.s3.ap-southeast-1.amazonaws.com/quotations/QU9HLAPJ9.pdf'
96
+ quotationPdf: 'https://dev-flux-admin.s3.ap-southeast-1.amazonaws.com/quotations/QU9HLAPJ9.pdf',
97
97
  };
98
+ //# sourceMappingURL=quotation.js.map