survey-pdf 1.9.3 → 1.9.4
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 +1 -1
- package/survey.pdf.d.ts +6 -1
- package/survey.pdf.js +99 -55
- package/survey.pdf.min.js +3 -3
package/package.json
CHANGED
package/survey.pdf.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*Type definitions for SurveyJS PDF library v1.9.
|
|
1
|
+
/*Type definitions for SurveyJS PDF library v1.9.4
|
|
2
2
|
Copyright (c) 2015-2021 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
3
3
|
Definitions by: Devsoft Baltic OÜ <https://github.com/surveyjs/>
|
|
4
4
|
*/
|
|
@@ -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;
|