survey-pdf 1.9.58 → 1.9.60
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 +2 -2
- package/survey.pdf.d.ts +3 -3
- package/survey.pdf.fonts.js +1 -1
- package/survey.pdf.fonts.min.js +1 -1
- package/survey.pdf.js +3 -3
- package/survey.pdf.min.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-pdf",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.60",
|
|
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",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"typings": "survey.pdf.d.ts",
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"jspdf": "^2.3.0",
|
|
29
|
-
"survey-core": "1.9.
|
|
29
|
+
"survey-core": "1.9.60"
|
|
30
30
|
}
|
|
31
31
|
}
|
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.60
|
|
2
2
|
Copyright (c) 2015-2022 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
3
3
|
Definitions by: Devsoft Baltic OÜ <https://github.com/surveyjs/>
|
|
4
4
|
*/
|
|
@@ -406,7 +406,7 @@ export declare class DocController extends DocOptions {
|
|
|
406
406
|
setPage(index: number): void;
|
|
407
407
|
}
|
|
408
408
|
|
|
409
|
-
export
|
|
409
|
+
export type FlatConstructor = new (survey: SurveyPDF, question: IQuestion, controller: DocController) => IFlatQuestion;
|
|
410
410
|
export declare class FlatRepository {
|
|
411
411
|
static getInstance(): FlatRepository;
|
|
412
412
|
register(modelType: string, rendererConstructor: FlatConstructor): void;
|
|
@@ -493,7 +493,7 @@ export declare class FlatFile extends FlatQuestion {
|
|
|
493
493
|
generateFlatsContent(point: IPoint): Promise<IPdfBrick[]>;
|
|
494
494
|
}
|
|
495
495
|
|
|
496
|
-
export
|
|
496
|
+
export type IHTMLRenderType = 'auto' | 'standard' | 'image';
|
|
497
497
|
export declare class FlatHTML extends FlatQuestion {
|
|
498
498
|
protected survey: SurveyPDF;
|
|
499
499
|
protected question: QuestionHtmlModel;
|
package/survey.pdf.fonts.js
CHANGED
package/survey.pdf.fonts.min.js
CHANGED