survey-pdf 2.0.0-rc.2 → 2.0.0-rc.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/LICENSE +1 -1
- package/fesm/survey.pdf.fonts.js +55 -0
- package/fesm/survey.pdf.fonts.js.map +1 -0
- package/fesm/survey.pdf.js +9943 -0
- package/fesm/survey.pdf.js.map +1 -0
- package/package.json +16 -11
- package/survey.pdf.d.ts +1309 -1309
- package/survey.pdf.fonts.js +92 -78
- package/survey.pdf.fonts.js.map +1 -0
- package/survey.pdf.fonts.min.js +2 -6
- package/survey.pdf.fonts.min.js.LICENSE.txt +5 -0
- package/survey.pdf.js +7698 -7281
- package/survey.pdf.js.map +1 -0
- package/survey.pdf.min.js +2 -26
- package/survey.pdf.min.js.LICENSE.txt +5 -0
- package/typings/doc_controller.d.ts +298 -0
- package/typings/entries/helpers.d.ts +7 -0
- package/typings/entries/pdf.d.ts +51 -0
- package/typings/event_handler/adorners.d.ts +24 -0
- package/typings/event_handler/draw_canvas.d.ts +133 -0
- package/typings/event_handler/event_handler.d.ts +11 -0
- package/typings/flat_layout/flat_boolean.d.ts +22 -0
- package/typings/flat_layout/flat_checkbox.d.ts +19 -0
- package/typings/flat_layout/flat_comment.d.ts +12 -0
- package/typings/flat_layout/flat_custom_model.d.ts +11 -0
- package/typings/flat_layout/flat_default.d.ts +6 -0
- package/typings/flat_layout/flat_dropdown.d.ts +12 -0
- package/typings/flat_layout/flat_expression.d.ts +11 -0
- package/typings/flat_layout/flat_file.d.ts +17 -0
- package/typings/flat_layout/flat_html.d.ts +15 -0
- package/typings/flat_layout/flat_image.d.ts +12 -0
- package/typings/flat_layout/flat_imagepicker.d.ts +14 -0
- package/typings/flat_layout/flat_matrix.d.ts +38 -0
- package/typings/flat_layout/flat_matrixdynamic.d.ts +8 -0
- package/typings/flat_layout/flat_matrixmultiple.d.ts +29 -0
- package/typings/flat_layout/flat_multipletext.d.ts +15 -0
- package/typings/flat_layout/flat_paneldynamic.d.ts +13 -0
- package/typings/flat_layout/flat_question.d.ts +27 -0
- package/typings/flat_layout/flat_radiogroup.d.ts +14 -0
- package/typings/flat_layout/flat_ranking.d.ts +16 -0
- package/typings/flat_layout/flat_rating.d.ts +16 -0
- package/typings/flat_layout/flat_repository.d.ts +16 -0
- package/typings/flat_layout/flat_selectbase.d.ts +18 -0
- package/typings/flat_layout/flat_signaturepad.d.ts +15 -0
- package/typings/flat_layout/flat_survey.d.ts +15 -0
- package/typings/flat_layout/flat_textbox.d.ts +12 -0
- package/typings/fonts.d.ts +4 -0
- package/typings/helper_survey.d.ts +155 -0
- package/typings/helper_test.d.ts +21 -0
- package/typings/jspdf_plugins/acroform.d.ts +1 -0
- package/typings/page_layout/page_packer.d.ts +7 -0
- package/typings/pdf_render/pdf_booleanitem.d.ts +6 -0
- package/typings/pdf_render/pdf_brick.d.ts +86 -0
- package/typings/pdf_render/pdf_checkboxitem.d.ts +6 -0
- package/typings/pdf_render/pdf_checkitem.d.ts +23 -0
- package/typings/pdf_render/pdf_coloredbrick.d.ts +9 -0
- package/typings/pdf_render/pdf_comment.d.ts +8 -0
- package/typings/pdf_render/pdf_composite.d.ts +26 -0
- package/typings/pdf_render/pdf_custom.d.ts +8 -0
- package/typings/pdf_render/pdf_description.d.ts +6 -0
- package/typings/pdf_render/pdf_dropdown.d.ts +11 -0
- package/typings/pdf_render/pdf_empty.d.ts +9 -0
- package/typings/pdf_render/pdf_html.d.ts +9 -0
- package/typings/pdf_render/pdf_image.d.ts +11 -0
- package/typings/pdf_render/pdf_link.d.ts +9 -0
- package/typings/pdf_render/pdf_radioitem.d.ts +34 -0
- package/typings/pdf_render/pdf_rankingitem.d.ts +9 -0
- package/typings/pdf_render/pdf_rowline.d.ts +17 -0
- package/typings/pdf_render/pdf_text.d.ts +11 -0
- package/typings/pdf_render/pdf_textbold.d.ts +7 -0
- package/typings/pdf_render/pdf_textbox.d.ts +8 -0
- package/typings/pdf_render/pdf_textfield.d.ts +28 -0
- package/typings/pdf_render/pdf_titlepanel.d.ts +8 -0
- package/typings/survey.d.ts +152 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-pdf",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.4",
|
|
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",
|
|
@@ -11,23 +11,28 @@
|
|
|
11
11
|
],
|
|
12
12
|
"homepage": "https://surveyjs.io/",
|
|
13
13
|
"license": "SEE LICENSE IN LICENSE",
|
|
14
|
-
"
|
|
15
|
-
"survey.pdf.d.ts",
|
|
16
|
-
"survey.pdf.js",
|
|
17
|
-
"survey.pdf.min.js",
|
|
18
|
-
"survey.pdf.fonts.js",
|
|
19
|
-
"survey.pdf.fonts.min.js"
|
|
20
|
-
],
|
|
14
|
+
"module": "fesm/survey.pdf.js",
|
|
21
15
|
"main": "survey.pdf.js",
|
|
22
16
|
"repository": {
|
|
23
17
|
"type": "git",
|
|
24
18
|
"url": "https://github.com/surveyjs/survey-pdf.git"
|
|
25
19
|
},
|
|
26
|
-
"typings": "
|
|
20
|
+
"typings": "./typings/entries/pdf.d.ts",
|
|
21
|
+
"peerDependencies": {
|
|
22
|
+
"survey-core": "2.0.0-rc.4"
|
|
23
|
+
},
|
|
27
24
|
"dependencies": {
|
|
28
25
|
"jspdf": "^2.3.0"
|
|
29
26
|
},
|
|
30
|
-
"
|
|
31
|
-
"
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./typings/entries/pdf.d.ts",
|
|
30
|
+
"import": "./fesm/survey.pdf.js",
|
|
31
|
+
"require": "./survey.pdf.js"
|
|
32
|
+
},
|
|
33
|
+
"./survey.pdf.fonts": {
|
|
34
|
+
"import": "./fesm/survey.pdf.fonts.js",
|
|
35
|
+
"require": "./survey.pdf.fonts.js"
|
|
36
|
+
}
|
|
32
37
|
}
|
|
33
38
|
}
|