@driveflux/pdf 4.0.26 → 4.0.27

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 (39) hide show
  1. package/dist/__mocks__/quotation.js +11 -10
  2. package/dist/__mocks__/subscription.js +121 -379
  3. package/dist/__mocks__/tou.js +10 -9
  4. package/dist/components/FluxLogo.js +3 -62
  5. package/dist/components/StandardPage.js +10 -99
  6. package/dist/debug.js +26 -205
  7. package/dist/index.js +1 -0
  8. package/dist/templates/QuotationPdf/CustomerSubscriptionSection.js +27 -145
  9. package/dist/templates/QuotationPdf/GFV.js +12 -49
  10. package/dist/templates/QuotationPdf/Header.js +5 -63
  11. package/dist/templates/QuotationPdf/Pricing.js +201 -573
  12. package/dist/templates/QuotationPdf/QuotationPdfPage.js +3 -23
  13. package/dist/templates/QuotationPdf/SectionBoxNew.js +4 -34
  14. package/dist/templates/QuotationPdf/TermsSection.js +5 -42
  15. package/dist/templates/QuotationPdf/VehiclePhotos.js +24 -54
  16. package/dist/templates/QuotationPdf/index.js +10 -189
  17. package/dist/templates/QuotationPdf/translations.js +22 -34
  18. package/dist/templates/QuotationPdf/utils.js +29 -58
  19. package/dist/templates/SubscriptionAgreement/Confirmation.js +10 -65
  20. package/dist/templates/SubscriptionAgreement/CoverPage.js +10 -93
  21. package/dist/templates/SubscriptionAgreement/CoverPageSection.js +5 -16
  22. package/dist/templates/SubscriptionAgreement/Details.js +51 -129
  23. package/dist/templates/SubscriptionAgreement/Footer.js +6 -48
  24. package/dist/templates/SubscriptionAgreement/Header.js +5 -35
  25. package/dist/templates/SubscriptionAgreement/LabelValue.js +3 -25
  26. package/dist/templates/SubscriptionAgreement/SubscriptionAgreementPage.js +3 -26
  27. package/dist/templates/SubscriptionAgreement/TermsOfUse.js +8 -94
  28. package/dist/templates/SubscriptionAgreement/TermsOfUseSubSection.js +11 -97
  29. package/dist/templates/SubscriptionAgreement/index.js +15 -245
  30. package/dist/templates/SubscriptionAgreement/translations.js +194 -195
  31. package/dist/templates/SubscriptionAgreement/types.js +2 -1
  32. package/dist/templates/SubscriptionAgreement/utils.js +11 -16
  33. package/dist/templates/index.js +1 -0
  34. package/dist/theme/colors.js +63 -44
  35. package/dist/theme/index.js +1 -0
  36. package/dist/types.js +2 -1
  37. package/dist/utils.js +16 -159
  38. package/dist/watch.js +4 -3
  39. 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