survey-pdf 2.0.0 → 2.0.1
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/fesm/survey.pdf.fonts.js +1 -1
- package/fesm/survey.pdf.js +6 -2
- package/fesm/survey.pdf.js.map +1 -1
- package/package.json +2 -2
- package/survey.pdf.fonts.js +1 -1
- package/survey.pdf.fonts.min.js.LICENSE.txt +1 -1
- package/survey.pdf.js +7 -2
- package/survey.pdf.js.map +1 -1
- package/survey.pdf.min.js +1 -1
- package/survey.pdf.min.js.LICENSE.txt +1 -1
- package/typings/survey.d.ts +1 -0
package/fesm/survey.pdf.fonts.js
CHANGED
package/fesm/survey.pdf.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS PDF library v2.0.
|
|
2
|
+
* surveyjs - SurveyJS PDF library v2.0.1
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
5
5
|
*/
|
|
@@ -7571,8 +7571,12 @@ class SurveyPDF extends SurveyModel {
|
|
|
7571
7571
|
// eslint-disable-next-line no-console
|
|
7572
7572
|
console.error('As of v1.9.101, the haveCommercialLicense property is not supported. To activate your license, use the setLicenseKey(key) method as shown on the following page: https://surveyjs.io/remove-alert-banner');
|
|
7573
7573
|
}
|
|
7574
|
+
ensureQuestionDisplayValue(question) {
|
|
7575
|
+
question.displayValue;
|
|
7576
|
+
}
|
|
7574
7577
|
waitForQuestionIsReady(question) {
|
|
7575
7578
|
return new Promise((resolve) => {
|
|
7579
|
+
this.ensureQuestionDisplayValue(question);
|
|
7576
7580
|
if (question.isReady) {
|
|
7577
7581
|
resolve();
|
|
7578
7582
|
}
|
|
@@ -9259,7 +9263,7 @@ class CustomBrick extends PdfBrick {
|
|
|
9259
9263
|
}
|
|
9260
9264
|
}
|
|
9261
9265
|
|
|
9262
|
-
checkLibraryVersion(`${"2.0.
|
|
9266
|
+
checkLibraryVersion(`${"2.0.1"}`, 'survey-pdf');
|
|
9263
9267
|
|
|
9264
9268
|
export { BooleanItemBrick, CheckItemBrick, CheckboxItemBrick, CommentBrick, CompositeBrick, CustomBrick, DocController, DocOptions, DrawCanvas, DropdownBrick, EmptyBrick, EventHandler, FlatBooleanCheckbox as FlatBoolean, FlatCheckbox, FlatComment, FlatCustomModel, FlatDropdown, FlatExpression, FlatFile, FlatHTML, FlatImage, FlatImagePicker, FlatMatrix, FlatMatrixDynamic, FlatMatrixMultiple, FlatMultipleText, FlatPanelDynamic, FlatQuestion, FlatQuestionDefault, FlatRadiogroup, FlatRanking, FlatRating, FlatRepository, FlatSelectBase, FlatSignaturePad, FlatSurvey, FlatTextbox, HTMLBrick, HorizontalAlign, ImageBrick, LinkBrick, PagePacker, PdfBrick, RadioItemBrick, RankingItemBrick, RowlineBrick, SurveyHelper, SurveyPDF, TextBoldBrick, TextBoxBrick, TextBrick, TextFieldBrick, TitlePanelBrick, VerticalAlign };
|
|
9265
9269
|
//# sourceMappingURL=survey.pdf.js.map
|