survey-pdf 1.9.78 → 1.9.80
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 +29 -20
- 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.80",
|
|
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.80"
|
|
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.80
|
|
2
2
|
Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
3
3
|
Definitions by: Devsoft Baltic OÜ <https://github.com/surveyjs/>
|
|
4
4
|
*/
|
|
@@ -479,7 +479,6 @@ export declare class DocOptions implements IDocOptions {
|
|
|
479
479
|
protected _htmlRenderAs: IHTMLRenderType;
|
|
480
480
|
protected _matrixRenderAs: 'auto' | 'list';
|
|
481
481
|
protected _readonlyRenderAs: 'auto' | 'text' | 'acroform';
|
|
482
|
-
protected _textFieldRenderAs: 'singleLine' | 'multiLine';
|
|
483
482
|
protected _compress: boolean;
|
|
484
483
|
protected _applyImageFit: boolean;
|
|
485
484
|
protected _useLegacyBooleanRendering: boolean;
|
|
@@ -496,7 +495,6 @@ export declare class DocOptions implements IDocOptions {
|
|
|
496
495
|
get htmlRenderAs(): IHTMLRenderType;
|
|
497
496
|
get matrixRenderAs(): 'auto' | 'list';
|
|
498
497
|
get readonlyRenderAs(): 'auto' | 'text' | 'acroform';
|
|
499
|
-
get textFieldRenderAs(): 'singleLine' | 'multiLine';
|
|
500
498
|
get compress(): boolean;
|
|
501
499
|
get applyImageFit(): boolean;
|
|
502
500
|
get useLegacyBooleanRendering(): boolean;
|
|
@@ -618,6 +616,7 @@ export declare class FlatDropdown extends FlatQuestion {
|
|
|
618
616
|
protected controller: DocController;
|
|
619
617
|
protected question: QuestionDropdownModel;
|
|
620
618
|
constructor(survey: SurveyPDF, question: IQuestion, controller: DocController);
|
|
619
|
+
protected get shouldRenderAsComment(): boolean;
|
|
621
620
|
generateFlatsContent(point: IPoint): Promise<IPdfBrick[]>;
|
|
622
621
|
}
|
|
623
622
|
|
|
@@ -725,6 +724,7 @@ export declare class FlatTextbox extends FlatQuestion {
|
|
|
725
724
|
static readonly MULTILINE_TEXT_ROWS_COUNT: number;
|
|
726
725
|
protected question: QuestionTextModel;
|
|
727
726
|
constructor(survey: SurveyPDF, question: IQuestion, controller: DocController);
|
|
727
|
+
protected get shouldRenderAsComment(): boolean;
|
|
728
728
|
generateFlatsContent(point: IPoint): Promise<IPdfBrick[]>;
|
|
729
729
|
}
|
|
730
730
|
|
package/survey.pdf.fonts.js
CHANGED
package/survey.pdf.fonts.min.js
CHANGED