survey-pdf 1.9.2 → 1.9.6

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": "survey-pdf",
3
- "version": "1.9.2",
3
+ "version": "1.9.6",
4
4
  "description": "survey.pdf.js is a SurveyJS PDF Library. It is a easy way to export SurveyJS surveys to PDF. It uses JSON for survey metadata.",
5
5
  "keywords": [
6
6
  "Survey",
package/survey.pdf.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- /*Type definitions for SurveyJS PDF library v1.9.2
2
- Copyright (c) 2015-2021 Devsoft Baltic OÜ - http://surveyjs.io/
1
+ /*Type definitions for SurveyJS PDF library v1.9.6
2
+ Copyright (c) 2015-2022 Devsoft Baltic OÜ - http://surveyjs.io/
3
3
  Definitions by: Devsoft Baltic OÜ <https://github.com/surveyjs/>
4
4
  */
5
5
  // Dependencies for this module:
@@ -703,6 +703,11 @@ export declare class CompositeBrick implements IPdfBrick {
703
703
  unfold(): IPdfBrick[];
704
704
  }
705
705
 
706
+ export declare class CustomBrick extends PdfBrick {
707
+ constructor(question: IQuestion, controller: DocController, renderFunc: (doc: any, question: any, xLeft: number, yTop: number) => IRect);
708
+ renderInteractive(): Promise<void>;
709
+ }
710
+
706
711
  export declare class DropdownBrick extends PdfBrick {
707
712
  protected controller: DocController;
708
713
  protected question: QuestionDropdownModel;