back-testing-react 1.2.11 → 1.2.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "back-testing-react",
3
- "version": "1.2.11",
3
+ "version": "1.2.12",
4
4
  "description": "Parametric back testing application developed by NormanMax Insurance Solutions",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -519,9 +519,11 @@ async function generateTitle(pdfDoc: PDFDoc, text: string, fontSize: number, col
519
519
 
520
520
  async function generateDisclaimer(pdfDoc: PDFDoc){
521
521
  let disclaimer = "";
522
- disclaimer = disclaimer + "Disclaimer: The information contained in the graphic above is provided solely for informational purposes only. ";
523
- disclaimer = disclaimer + "The characteristics of future events may differ from past events and coverage options should be evaluated accordingly. ";
524
- disclaimer = disclaimer + "You should not rely upon the material or information presented as a basis for making any business decisions.";
522
+ disclaimer = disclaimer + "The information contained in the graphic above is provided solely for informational purposes. ";
523
+ disclaimer = disclaimer + "Past event data and results do not assure or portray outcomes from future events as variations in storm intensity, ";
524
+ disclaimer = disclaimer + "storm track, and other characteristics will affect the availability and amount of coverage. ";
525
+ disclaimer = disclaimer + "Policyholders should not rely upon information about past events as the basis for evaluating insurance needs ";
526
+ disclaimer = disclaimer + "associated with future events or making any business, financial, or operational decisions.";
525
527
  const font = await pdfDoc.document.embedFont(StandardFonts.Helvetica);
526
528
  let sheet = pdfDoc.sheets[pdfDoc.currentSheetIndex];
527
529
  let page = sheet.page;