survey-angular-ui 1.9.72 → 1.9.75
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/README.md +23 -192
- package/angular-ui.d.ts +2 -0
- package/angular-ui.module.d.ts +82 -80
- package/bundles/survey-angular-ui.umd.js +4338 -0
- package/bundles/survey-angular-ui.umd.js.map +1 -0
- package/component-factory.d.ts +2 -2
- package/components/character-counter/character-counter.component.d.ts +10 -0
- package/components/rating/rating-item.component.d.ts +13 -0
- package/esm2015/angular-ui.js +105 -0
- package/esm2015/angular-ui.module.js +188 -0
- package/esm2015/base-angular.js +128 -0
- package/esm2015/comment-other.component.js +35 -0
- package/esm2015/comment.component.js +24 -0
- package/esm2015/component-factory.js +26 -0
- package/esm2015/components/action-bar/action-bar-item-dropdown.component.js +36 -0
- package/esm2015/components/action-bar/action-bar-item.component.js +26 -0
- package/esm2015/components/action-bar/action-bar.component.js +47 -0
- package/esm2015/components/action-bar/action.component.js +31 -0
- package/esm2015/components/brand-info/brand-info.component.js +16 -0
- package/esm2015/components/character-counter/character-counter.component.js +25 -0
- package/esm2015/components/dropdown/dropdown.component.js +76 -0
- package/esm2015/components/element-header/element-header.component.js +35 -0
- package/esm2015/components/element-title/dynamic-head.component.js +24 -0
- package/esm2015/components/element-title/element-title.component.js +21 -0
- package/esm2015/components/element-title/title-actions.component.js +21 -0
- package/esm2015/components/list/list-item.component.js +52 -0
- package/esm2015/components/list/list.component.js +55 -0
- package/esm2015/components/matrix-actions/detail-button/detail-button.component.js +28 -0
- package/esm2015/components/matrix-actions/drag-drop-icon/drag-drop-icon.js +24 -0
- package/esm2015/components/matrix-actions/remove-button/remove-button.component.js +28 -0
- package/esm2015/components/notifier/notifier.component.js +26 -0
- package/esm2015/components/paneldynamic-actions/paneldynamic-add-btn.component.js +38 -0
- package/esm2015/components/paneldynamic-actions/paneldynamic-next-btn.component.js +21 -0
- package/esm2015/components/paneldynamic-actions/paneldynamic-prev-btn.component.js +21 -0
- package/esm2015/components/paneldynamic-actions/paneldynamic-progress-text.component.js +17 -0
- package/esm2015/components/paneldynamic-actions/paneldynamic-remove-btn.component.js +20 -0
- package/esm2015/components/popup/modal-container.component.js +46 -0
- package/esm2015/components/popup/popup-container.component.js +59 -0
- package/esm2015/components/popup/popup-pointer.component.js +25 -0
- package/esm2015/components/popup/popup.component.js +45 -0
- package/esm2015/components/popup/popup.service.js +26 -0
- package/esm2015/components/progress/buttons/progress.component.js +71 -0
- package/esm2015/components/progress/default/progress.component.js +30 -0
- package/esm2015/components/rating/rating-item.component.js +34 -0
- package/esm2015/components/renderAs/boolean-checkbox/boolean-checkbox.component.js +24 -0
- package/esm2015/components/renderAs/boolean-radio/boolean-radio-item.component.js +25 -0
- package/esm2015/components/renderAs/boolean-radio/boolean-radio.component.js +21 -0
- package/esm2015/components/renderAs/dropdown-select/dropdown-option-item.component.js +23 -0
- package/esm2015/components/renderAs/dropdown-select/dropdown-select.component.js +41 -0
- package/esm2015/components/renderAs/rating-dropdown/rating-dropdown.component.js +21 -0
- package/esm2015/components/skeleton/skeleton.component.js +20 -0
- package/esm2015/components/skeleton.component.js +19 -0
- package/esm2015/components/survey-actions/survey-nav-btn.component.js +26 -0
- package/esm2015/components/survey-header/logo-image.component.js +24 -0
- package/esm2015/components/survey-header/survey-header.component.js +33 -0
- package/esm2015/components/svg-icon/svg-icon.component.js +68 -0
- package/esm2015/components/tagbox/tagbox-filter.component.js +26 -0
- package/esm2015/components/tagbox/tagbox-item.component.js +30 -0
- package/esm2015/components/tagbox/tagbox.component.js +52 -0
- package/esm2015/components/timer-panel/timer-panel.component.js +35 -0
- package/esm2015/element.component.js +59 -0
- package/esm2015/embedded-view-content.component.js +25 -0
- package/esm2015/errors.component.js +61 -0
- package/esm2015/page.component.js +40 -0
- package/esm2015/panel.component.js +42 -0
- package/esm2015/popup.survey.component.js +49 -0
- package/esm2015/question.component.js +58 -0
- package/esm2015/question.js +35 -0
- package/esm2015/questions/boolean.component.js +23 -0
- package/esm2015/questions/button-group/button-group-item.component.js +33 -0
- package/esm2015/questions/button-group/button-group.component.js +17 -0
- package/esm2015/questions/checkbox-item.component.js +28 -0
- package/esm2015/questions/checkbox.component.js +20 -0
- package/esm2015/questions/comment.component.js +22 -0
- package/esm2015/questions/composite.component.js +21 -0
- package/esm2015/questions/custom.component.js +27 -0
- package/esm2015/questions/customwidget.component.js +54 -0
- package/esm2015/questions/dropdown.component.js +20 -0
- package/esm2015/questions/expression.component.js +17 -0
- package/esm2015/questions/file.component.js +29 -0
- package/esm2015/questions/html.component.js +29 -0
- package/esm2015/questions/image.component.js +29 -0
- package/esm2015/questions/imagepicker-item.component.js +52 -0
- package/esm2015/questions/imagepicker.component.js +32 -0
- package/esm2015/questions/matrix-row.component.js +31 -0
- package/esm2015/questions/matrix.component.js +40 -0
- package/esm2015/questions/matrixcell.component.js +94 -0
- package/esm2015/questions/matrixdropdown.component.js +19 -0
- package/esm2015/questions/matrixdynamic.component.js +20 -0
- package/esm2015/questions/matrixrequiredheader.component.js +24 -0
- package/esm2015/questions/matrixtable.component.js +34 -0
- package/esm2015/questions/multipletext.component.js +28 -0
- package/esm2015/questions/multipletextitem.component.js +26 -0
- package/esm2015/questions/paneldynamic.component.js +82 -0
- package/esm2015/questions/radiogroup-item.component.js +22 -0
- package/esm2015/questions/radiogroup.component.js +25 -0
- package/esm2015/questions/ranking-item.component.js +27 -0
- package/esm2015/questions/ranking.component.js +34 -0
- package/esm2015/questions/rating.component.js +27 -0
- package/esm2015/questions/selectbase-item.js +37 -0
- package/esm2015/questions/selectbase.component.js +53 -0
- package/esm2015/questions/signature.component.js +20 -0
- package/esm2015/questions/tagbox.component.js +20 -0
- package/esm2015/questions/text.component.js +21 -0
- package/esm2015/row.component.js +63 -0
- package/esm2015/string-editor.component.js +29 -0
- package/esm2015/string-viewer.component.js +41 -0
- package/esm2015/survey-angular-ui.js +5 -0
- package/esm2015/survey-content.component.js +72 -0
- package/esm2015/survey-string.component.js +17 -0
- package/esm2015/survey.component.js +32 -0
- package/esm2015/template-renderer.component.js +27 -0
- package/esm2015/utils/dynamic.directive.js +54 -0
- package/esm2015/utils/ng-key2click.directive.js +69 -0
- package/esm2015/utils/ng-show.directive.js +27 -0
- package/esm2015/utils/safe-html.pipe.js +18 -0
- package/esm2015/utils/safe-url.pipe.js +33 -0
- package/esm2020/angular-ui.mjs +103 -103
- package/esm2020/angular-ui.module.mjs +184 -184
- package/esm2020/base-angular.mjs +128 -128
- package/esm2020/comment-other.component.mjs +32 -32
- package/esm2020/comment.component.mjs +21 -21
- package/esm2020/component-factory.mjs +26 -26
- package/esm2020/components/action-bar/action-bar-item-dropdown.component.mjs +32 -32
- package/esm2020/components/action-bar/action-bar-item.component.mjs +22 -22
- package/esm2020/components/action-bar/action-bar.component.mjs +43 -43
- package/esm2020/components/action-bar/action.component.mjs +27 -27
- package/esm2020/components/brand-info/brand-info.component.mjs +13 -13
- package/esm2020/components/dropdown/dropdown.component.mjs +66 -66
- package/esm2020/components/element-header/element-header.component.mjs +32 -32
- package/esm2020/components/element-title/dynamic-head.component.mjs +20 -20
- package/esm2020/components/element-title/element-title.component.mjs +17 -17
- package/esm2020/components/element-title/title-actions.component.mjs +17 -17
- package/esm2020/components/list/list-item.component.mjs +48 -48
- package/esm2020/components/list/list.component.mjs +50 -50
- package/esm2020/components/matrix-actions/detail-button/detail-button.component.mjs +25 -25
- package/esm2020/components/matrix-actions/drag-drop-icon/drag-drop-icon.mjs +20 -20
- package/esm2020/components/matrix-actions/remove-button/remove-button.component.mjs +25 -25
- package/esm2020/components/notifier/notifier.component.mjs +22 -22
- package/esm2020/components/paneldynamic-actions/paneldynamic-add-btn.component.mjs +35 -35
- package/esm2020/components/paneldynamic-actions/paneldynamic-next-btn.component.mjs +18 -18
- package/esm2020/components/paneldynamic-actions/paneldynamic-prev-btn.component.mjs +18 -18
- package/esm2020/components/paneldynamic-actions/paneldynamic-progress-text.component.mjs +14 -14
- package/esm2020/components/paneldynamic-actions/paneldynamic-remove-btn.component.mjs +17 -17
- package/esm2020/components/popup/modal-container.component.mjs +42 -42
- package/esm2020/components/popup/popup-container.component.mjs +56 -56
- package/esm2020/components/popup/popup-pointer.component.mjs +22 -22
- package/esm2020/components/popup/popup.component.mjs +43 -43
- package/esm2020/components/popup/popup.service.mjs +26 -26
- package/esm2020/components/progress/buttons/progress.component.mjs +67 -67
- package/esm2020/components/progress/default/progress.component.mjs +27 -27
- package/esm2020/components/renderAs/boolean-checkbox/boolean-checkbox.component.mjs +21 -21
- package/esm2020/components/renderAs/boolean-radio/boolean-radio-item.component.mjs +22 -22
- package/esm2020/components/renderAs/boolean-radio/boolean-radio.component.mjs +18 -18
- package/esm2020/components/renderAs/dropdown-select/dropdown-option-item.component.mjs +23 -23
- package/esm2020/components/renderAs/dropdown-select/dropdown-select.component.mjs +38 -38
- package/esm2020/components/renderAs/rating-dropdown/rating-dropdown.component.mjs +18 -18
- package/esm2020/components/skeleton/skeleton.component.mjs +16 -16
- package/esm2020/components/skeleton.component.mjs +15 -15
- package/esm2020/components/survey-actions/survey-nav-btn.component.mjs +22 -22
- package/esm2020/components/survey-header/logo-image.component.mjs +20 -20
- package/esm2020/components/survey-header/survey-header.component.mjs +30 -30
- package/esm2020/components/svg-icon/svg-icon.component.mjs +68 -68
- package/esm2020/components/tagbox/tagbox-filter.component.mjs +22 -22
- package/esm2020/components/tagbox/tagbox-item.component.mjs +27 -27
- package/esm2020/components/tagbox/tagbox.component.mjs +44 -44
- package/esm2020/components/timer-panel/timer-panel.component.mjs +32 -32
- package/esm2020/element.component.mjs +55 -55
- package/esm2020/embedded-view-content.component.mjs +24 -24
- package/esm2020/errors.component.mjs +58 -58
- package/esm2020/page.component.mjs +35 -35
- package/esm2020/panel.component.mjs +38 -38
- package/esm2020/popup.survey.component.mjs +44 -44
- package/esm2020/question.component.mjs +54 -54
- package/esm2020/question.mjs +33 -33
- package/esm2020/questions/boolean.component.mjs +20 -20
- package/esm2020/questions/button-group/button-group-item.component.mjs +29 -29
- package/esm2020/questions/button-group/button-group.component.mjs +14 -14
- package/esm2020/questions/checkbox-item.component.mjs +24 -36
- package/esm2020/questions/checkbox.component.mjs +17 -17
- package/esm2020/questions/comment.component.mjs +18 -18
- package/esm2020/questions/composite.component.mjs +21 -21
- package/esm2020/questions/custom.component.mjs +27 -27
- package/esm2020/questions/customwidget.component.mjs +51 -51
- package/esm2020/questions/dropdown.component.mjs +17 -17
- package/esm2020/questions/expression.component.mjs +17 -17
- package/esm2020/questions/file.component.mjs +25 -25
- package/esm2020/questions/html.component.mjs +25 -25
- package/esm2020/questions/image.component.mjs +26 -26
- package/esm2020/questions/imagepicker-item.component.mjs +48 -48
- package/esm2020/questions/imagepicker.component.mjs +29 -29
- package/esm2020/questions/matrix-row.component.mjs +27 -27
- package/esm2020/questions/matrix.component.mjs +36 -36
- package/esm2020/questions/matrixcell.component.mjs +90 -90
- package/esm2020/questions/matrixdropdown.component.mjs +16 -16
- package/esm2020/questions/matrixdynamic.component.mjs +17 -17
- package/esm2020/questions/matrixrequiredheader.component.mjs +24 -24
- package/esm2020/questions/matrixtable.component.mjs +31 -31
- package/esm2020/questions/multipletext.component.mjs +25 -25
- package/esm2020/questions/multipletextitem.component.mjs +23 -23
- package/esm2020/questions/paneldynamic.component.mjs +79 -79
- package/esm2020/questions/radiogroup-item.component.mjs +18 -18
- package/esm2020/questions/radiogroup.component.mjs +22 -22
- package/esm2020/questions/ranking-item.component.mjs +24 -24
- package/esm2020/questions/ranking.component.mjs +31 -31
- package/esm2020/questions/rating.component.mjs +23 -23
- package/esm2020/questions/selectbase-item.mjs +33 -33
- package/esm2020/questions/selectbase.component.mjs +50 -47
- package/esm2020/questions/signature.component.mjs +17 -17
- package/esm2020/questions/tagbox.component.mjs +17 -17
- package/esm2020/questions/text.component.mjs +16 -16
- package/esm2020/row.component.mjs +58 -58
- package/esm2020/string-editor.component.mjs +26 -26
- package/esm2020/string-viewer.component.mjs +37 -37
- package/esm2020/survey-angular-ui.mjs +5 -5
- package/esm2020/survey-content.component.mjs +69 -69
- package/esm2020/survey-string.component.mjs +17 -17
- package/esm2020/survey.component.mjs +32 -32
- package/esm2020/template-renderer.component.mjs +23 -23
- package/esm2020/utils/dynamic.directive.mjs +52 -52
- package/esm2020/utils/ng-key2click.directive.mjs +69 -69
- package/esm2020/utils/ng-show.directive.mjs +27 -27
- package/esm2020/utils/safe-html.pipe.mjs +18 -18
- package/esm2020/utils/safe-url.pipe.mjs +33 -33
- package/fesm2015/survey-angular-ui.js +3206 -0
- package/fesm2015/survey-angular-ui.js.map +1 -0
- package/fesm2015/survey-angular-ui.mjs +2864 -2873
- package/fesm2015/survey-angular-ui.mjs.map +1 -1
- package/fesm2020/survey-angular-ui.mjs +2839 -2848
- package/fesm2020/survey-angular-ui.mjs.map +1 -1
- package/package.json +6 -19
- package/utils/dynamic.directive.d.ts +3 -2
package/README.md
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
**SurveyJS** is a modern way to add surveys and forms to your website. It has versions for Angular, jQuery, knockout, react and vue.
|
|
1
|
+
# SurveyJS Angular Form Library
|
|
4
2
|
|
|
5
3
|
[](https://dev.azure.com/SurveyJS/SurveyJS%20Integration%20Tests/_build/latest?definitionId=7&branchName=master)
|
|
6
4
|
[](LICENSE)
|
|
@@ -14,201 +12,34 @@
|
|
|
14
12
|
<img alt="Closed issues" title="Closed Issues" src="https://img.shields.io/github/issues-closed/surveyjs/survey-library.svg">
|
|
15
13
|
</a>
|
|
16
14
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
[SurveyJS Library Documentation](https://surveyjs.io/Documentation/Library)
|
|
20
|
-
|
|
21
|
-
## Live Examples
|
|
22
|
-
|
|
23
|
-
[SurveyJS Library Live Examples](https://surveyjs.io/Examples/Library)
|
|
24
|
-
|
|
25
|
-
## Survey Creator / Form Builder
|
|
26
|
-
|
|
27
|
-
[Create your Survey or Form now](https://surveyjs.io/create-survey)
|
|
28
|
-
|
|
29
|
-
Survey Creator sources are [here](https://github.com/surveyjs/survey-creator)
|
|
30
|
-
|
|
31
|
-
## Export Survey to PDF
|
|
32
|
-
|
|
33
|
-
[Export to PDF overview](https://surveyjs.io/Overview/Survey-Pdf-Export)
|
|
34
|
-
|
|
35
|
-
Export to PDF sources are [here](https://github.com/surveyjs/survey-pdf)
|
|
36
|
-
|
|
37
|
-
## More info about SurveyJS
|
|
38
|
-
|
|
39
|
-
**SurveyJS** is the most feature-rich Survey / Form Library available at the current moment. It can be easily customized and extended to suit your needs.
|
|
40
|
-
|
|
41
|
-

|
|
42
|
-
|
|
43
|
-
## Main Features
|
|
44
|
-
|
|
45
|
-
### A lot of question types with a lot of built-in functionalities.
|
|
46
|
-
|
|
47
|
-
* [Text Question](https://surveyjs.io/Examples/Library/?id=questiontype-text)
|
|
48
|
-
* [Radigroup Question](https://surveyjs.io/Examples/Library/?id=questiontype-radiogroup)
|
|
49
|
-
* [Dropdown Question](https://surveyjs.io/Examples/Library/?id=questiontype-dropdown)
|
|
50
|
-
* [Checkboxes Question](https://surveyjs.io/Examples/Library/?id=questiontype-checkbox)
|
|
51
|
-
* [Boolean Question](https://surveyjs.io/Examples/Library/?id=questiontype-boolean)
|
|
52
|
-
* [Matrix Question](https://surveyjs.io/Examples/Library/?id=questiontype-matrix)
|
|
53
|
-
* [Matrix Rubric Question](https://surveyjs.io/Examples/Library/?id=questiontype-matrix-rubric)
|
|
54
|
-
* [Matrix Dropdown Question](https://surveyjs.io/Examples/Library/?id=questiontype-matrixdropdown)
|
|
55
|
-
* [Matrix Dynamic Question](https://surveyjs.io/Examples/Library/?id=questiontype-matrixdynamic)
|
|
56
|
-
* [Multiple Text Question](https://surveyjs.io/Examples/Library/?id=questiontype-multipletext)
|
|
57
|
-
* [Rating Question](https://surveyjs.io/Examples/Library/?id=questiontype-rating)
|
|
58
|
-
* [Ranking Question](https://surveyjs.io/Examples/Library?id=questiontype-ranking)
|
|
59
|
-
* [Comment Question](https://surveyjs.io/Examples/Library/?id=questiontype-comment)
|
|
60
|
-
* [Html Question](https://surveyjs.io/Examples/Library/?id=questiontype-html)
|
|
61
|
-
* [Files uploading Question](https://surveyjs.io/Examples/Library/?id=questiontype-file)
|
|
62
|
-
* [Panel Container](https://surveyjs.io/Examples/Library/?id=questiontype-panel)
|
|
63
|
-
* [Panel Dynamic Question](https://surveyjs.io/Examples/Library/?id=questiontype-paneldynamic)
|
|
64
|
-
* [Expression Question](https://surveyjs.io/Examples/Library/?id=questiontype-expression)
|
|
65
|
-
* [Image Picker Question](https://surveyjs.io/Examples/Library/?id=questiontype-imagepicker)
|
|
66
|
-
* [Support for third-party popular UI widgets](https://surveyjs.io/Examples/Library/?id=custom-widget-select2). The custom widgets [GitHub repo](https://github.com/surveyjs/widgets)
|
|
67
|
-
|
|
68
|
-
### Multiple Pages Support
|
|
69
|
-
|
|
70
|
-
You may create a very complex forms with a lot of pages, like [this one](https://surveyjs.io/Examples/Library/?id=real-patient-history).
|
|
71
|
-
|
|
72
|
-
### Dynamically change survey logic and questions content
|
|
73
|
-
|
|
74
|
-
* [Change questions visibility using logical expressions](https://surveyjs.io/Examples/Library/?id=condition-kids)
|
|
75
|
-
* [Create custom functions to use it in expression](https://surveyjs.io/Examples/Library/?id=condition-customfunctions)
|
|
76
|
-
* [Filter choices in checkbox, radiogroup and dropdown questions](https://surveyjs.io/Examples/Library/?id=condition-choicesVisibleIf)
|
|
77
|
-
* [Filter rows and columns in matrix question](https://surveyjs.io/Examples/Library/?id=condition-matrixVisibleIf)
|
|
78
|
-
* [Disabled/enabled questions based on logical expressions](https://surveyjs.io/Examples/Library/?id=condition-enable-kids)
|
|
79
|
-
* [Questions value validation](https://surveyjs.io/Examples/Library/?id=validators-standard)
|
|
80
|
-
|
|
81
|
-
### Localization and Multiple language support
|
|
82
|
-
|
|
83
|
-
* [Localization for over 20 languages](https://surveyjs.io/Examples/Library/?id=survey-localization&platform)
|
|
84
|
-
* [Multiple language support in one survey](https://surveyjs.io/Examples/Library/?id=survey-multilanguages)
|
|
85
|
-
|
|
86
|
-
### Appearance and custom Rendering
|
|
87
|
-
|
|
88
|
-
* [Seven built-in Themes](https://surveyjs.io/Examples/Library/?id=darkblue-theme)
|
|
89
|
-
* [Bootstrap support](https://surveyjs.io/Examples/Library/?id=bootstrap-theme)
|
|
90
|
-
* [CSS styles customization](https://surveyjs.io/Examples/Library/?id=survey-cssclasses)
|
|
91
|
-
* [API for adding new or changing existing HTML elements](https://surveyjs.io/Examples/Library/?id=survey-afterrender)
|
|
92
|
-
* [Render Questions in one line](https://surveyjs.io/Examples/Library/?id=survey-startwithnewline)
|
|
93
|
-
* [Markdown support](https://surveyjs.io/Examples/Library/?id=survey-markdown-radiogroup)
|
|
94
|
-
|
|
95
|
-
### Frequently used functionalities
|
|
96
|
-
|
|
97
|
-
* [Quiz creation](https://surveyjs.io/Examples/Library/?id=survey-quiz)
|
|
98
|
-
* [Show survey or form in the popup window](https://surveyjs.io/Examples/Library/?id=survey-window)
|
|
99
|
-
* [Display mode](https://surveyjs.io/Examples/Library/?id=survey-displaymode)
|
|
100
|
-
* [Custom navigation](https://surveyjs.io/Examples/Library/?id=survey-customnavigation)
|
|
101
|
-
* [Sharing same data between questions](https://surveyjs.io/Examples/Library/?id=survey-shareddata)
|
|
102
|
-
|
|
103
|
-
### To find out more about the library
|
|
104
|
-
|
|
105
|
-
* go to the [SurveyJS Library Site](https://surveyjs.io/Library)
|
|
106
|
-
* explore the live [Examples](https://www.surveyjs.io/Examples/Library)
|
|
107
|
-
* and create a survey or form using [Survey Creator](https://surveyjs.io/survey/Builder/)
|
|
108
|
-
|
|
109
|
-
#### You can use our quickstart repos:
|
|
110
|
-
|
|
111
|
-
* [Angular CLI](https://github.com/surveyjs/surveyjs_angular_cli)
|
|
112
|
-
* [React](https://github.com/surveyjs/surveyjs_react_quickstart)
|
|
113
|
-
* [Vue](https://github.com/surveyjs/surveyjs_vue_quickstart)
|
|
114
|
-
|
|
115
|
-
## Getting started
|
|
116
|
-
|
|
117
|
-
Install the library using npm.
|
|
118
|
-
|
|
119
|
-
Angular version:
|
|
120
|
-
|
|
121
|
-
```
|
|
122
|
-
npm install survey-angular
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
jQuery version:
|
|
126
|
-
|
|
127
|
-
```
|
|
128
|
-
npm install survey-jquery
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
Knockout version:
|
|
132
|
-
|
|
133
|
-
```
|
|
134
|
-
npm install survey-knockout
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
React version:
|
|
138
|
-
|
|
139
|
-
```
|
|
140
|
-
npm install survey-react
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
Vue version:
|
|
144
|
-
|
|
145
|
-
```
|
|
146
|
-
npm install survey-vue
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
Or use unpkg CDN:
|
|
150
|
-
|
|
151
|
-
* https://unpkg.com/survey-angular@{version-number}/survey.angular.min.js
|
|
152
|
-
* https://unpkg.com/survey-knockout@{version-number}/survey.ko.min.js
|
|
153
|
-
* https://unpkg.com/survey-react@{version-number}/survey.react.min.js
|
|
154
|
-
* https://unpkg.com/survey-jquery@{version-number}/survey.jquery.min.js
|
|
155
|
-
* https://unpkg.com/survey-vue@{version-number}/survey.vue.min.js
|
|
156
|
-
|
|
157
|
-
You find all versions/builds in the [surveyjs/build repo](https://github.com/surveyjs/builds).
|
|
158
|
-
|
|
159
|
-
Or dowload a version as zip file from [Releases](https://github.com/surveyjs/survey-library/releases)
|
|
160
|
-
|
|
161
|
-
If you want to import it in another script:
|
|
162
|
-
|
|
163
|
-
```javascript
|
|
164
|
-
import * as Survey from "survey-jquery";
|
|
165
|
-
```
|
|
166
|
-
|
|
167
|
-
## Building survey.js from sources
|
|
168
|
-
|
|
169
|
-
To build library yourself:
|
|
170
|
-
|
|
171
|
-
1. **Clone the repo from GitHub**
|
|
172
|
-
|
|
173
|
-
```
|
|
174
|
-
git clone https://github.com/surveyjs/survey-library.git
|
|
175
|
-
cd survey-library
|
|
176
|
-
```
|
|
177
|
-
|
|
178
|
-
2. **Acquire build dependencies.** Make sure you have [Node.js](http://nodejs.org/) installed on your workstation. You need a version of Node.js greater than 6.0.0 and npm greater than 2.7.0. This is only needed to _build_ surveyjs from sources.
|
|
179
|
-
|
|
180
|
-
```
|
|
181
|
-
npm install -g karma-cli
|
|
182
|
-
npm install
|
|
183
|
-
```
|
|
184
|
-
|
|
185
|
-
3. **Build the library**
|
|
186
|
-
|
|
187
|
-
```
|
|
188
|
-
npm run build_prod
|
|
189
|
-
```
|
|
15
|
+
A free and open-source MIT-licensed JavaScript form builder library that allows you to design dynamic, data-driven, multi-language survey forms and run them in your Angular applications.
|
|
190
16
|
|
|
191
|
-
|
|
17
|
+
> **NOTE**: This package requires Angular v13.0.0 or newer. With earlier Angular versions, you can use an [obsolete Knockout-dependent SurveyJS Angular Form Library version](https://www.npmjs.com/package/survey-angular).
|
|
192
18
|
|
|
193
|
-
|
|
19
|
+
## Features
|
|
194
20
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
21
|
+
- Dynamic forms, surveys, polls, and quizzes for your JavaScript application
|
|
22
|
+
- Integration with React, Angular, Vue, jQuery, and Knockout
|
|
23
|
+
- 20+ built-in question types and support for custom question types
|
|
24
|
+
- Built-in themes and CSS customization
|
|
25
|
+
- Answer validation
|
|
26
|
+
- TypeScript support
|
|
27
|
+
- Community-supported UI localization to 50+ languages
|
|
28
|
+
- Integration with any backend framework (examples for PHP, NodeJS, and ASP.NET included)
|
|
29
|
+
- Compatibility with any server + database combination
|
|
30
|
+
- Third-party component integration
|
|
198
31
|
|
|
199
|
-
|
|
200
|
-
You can open http://localhost:7777/examples/knockout to view KnockoutJS samples, http://localhost:7777/examples/react to view ReactJS samples and so on
|
|
32
|
+
## Get Started
|
|
201
33
|
|
|
202
|
-
|
|
203
|
-
```
|
|
204
|
-
karma start
|
|
205
|
-
```
|
|
206
|
-
This command will run unit tests using [Karma](https://karma-runner.github.io/0.13/index.html)
|
|
34
|
+
To get started with SurveyJS Angular Form Library, refer to the following tutorial: [Add a Survey to an Angular Application](https://surveyjs.io/Documentation/Library?id=get-started-angular).
|
|
207
35
|
|
|
208
|
-
|
|
36
|
+
## Resources
|
|
209
37
|
|
|
210
|
-
[
|
|
38
|
+
- [Website](https://surveyjs.io/)
|
|
39
|
+
- [Documentation](https://surveyjs.io/Documentation/Library)
|
|
40
|
+
- [Live Examples](https://surveyjs.io/form-library/examples/nps-question/angular)
|
|
41
|
+
- [What's New](https://surveyjs.io/WhatsNew)
|
|
211
42
|
|
|
212
|
-
##
|
|
43
|
+
## Licensing
|
|
213
44
|
|
|
214
|
-
[MIT license](https://github.com/surveyjs/survey-library/blob/master/LICENSE)
|
|
45
|
+
SurveyJS Form Library is distributed under the [MIT license](https://github.com/surveyjs/survey-library/blob/master/LICENSE).
|
package/angular-ui.d.ts
CHANGED
|
@@ -41,11 +41,13 @@ export * from "./components/element-header/element-header.component";
|
|
|
41
41
|
export * from "./components/element-title/element-title.component";
|
|
42
42
|
export * from "./components/survey-header/survey-header.component";
|
|
43
43
|
export * from "./components/skeleton/skeleton.component";
|
|
44
|
+
export * from "./components/character-counter/character-counter.component";
|
|
44
45
|
export * from "./components/timer-panel/timer-panel.component";
|
|
45
46
|
export * from "./components/notifier/notifier.component";
|
|
46
47
|
export * from "./components/element-title/dynamic-head.component";
|
|
47
48
|
export * from "./components/list/list.component";
|
|
48
49
|
export * from "./components/list/list-item.component";
|
|
50
|
+
export * from "./components/rating/rating-item.component";
|
|
49
51
|
export * from "./row.component";
|
|
50
52
|
export * from "./components/renderAs/rating-dropdown/rating-dropdown.component";
|
|
51
53
|
export * from "./components/renderAs/boolean-checkbox/boolean-checkbox.component";
|
package/angular-ui.module.d.ts
CHANGED
|
@@ -22,87 +22,89 @@ import * as i20 from "./questions/radiogroup.component";
|
|
|
22
22
|
import * as i21 from "./questions/radiogroup-item.component";
|
|
23
23
|
import * as i22 from "./questions/checkbox.component";
|
|
24
24
|
import * as i23 from "./questions/checkbox-item.component";
|
|
25
|
-
import * as i24 from "./components/
|
|
26
|
-
import * as i25 from "./
|
|
27
|
-
import * as i26 from "./
|
|
28
|
-
import * as i27 from "./components/renderAs/dropdown-select/dropdown-
|
|
29
|
-
import * as i28 from "./components/
|
|
30
|
-
import * as i29 from "./components/popup/popup
|
|
31
|
-
import * as i30 from "./components/popup/popup-
|
|
32
|
-
import * as i31 from "./components/
|
|
33
|
-
import * as i32 from "./components/list/list
|
|
34
|
-
import * as i33 from "./components/
|
|
35
|
-
import * as i34 from "./components/
|
|
36
|
-
import * as i35 from "./
|
|
37
|
-
import * as i36 from "./components/tagbox/tagbox
|
|
38
|
-
import * as i37 from "./
|
|
39
|
-
import * as i38 from "./components/
|
|
40
|
-
import * as i39 from "./components/action-bar/action-bar
|
|
41
|
-
import * as i40 from "./components/action-bar/action
|
|
42
|
-
import * as i41 from "./
|
|
43
|
-
import * as i42 from "./
|
|
44
|
-
import * as i43 from "./questions/
|
|
45
|
-
import * as i44 from "./
|
|
46
|
-
import * as i45 from "./
|
|
47
|
-
import * as i46 from "./
|
|
48
|
-
import * as i47 from "./
|
|
49
|
-
import * as i48 from "./components/element-
|
|
50
|
-
import * as i49 from "./components/element-title/
|
|
51
|
-
import * as i50 from "./
|
|
52
|
-
import * as i51 from "./
|
|
53
|
-
import * as i52 from "./
|
|
54
|
-
import * as i53 from "./questions/
|
|
55
|
-
import * as i54 from "./components/renderAs/
|
|
56
|
-
import * as i55 from "./
|
|
57
|
-
import * as i56 from "./components/renderAs/boolean-
|
|
58
|
-
import * as i57 from "./
|
|
59
|
-
import * as i58 from "./
|
|
60
|
-
import * as i59 from "./questions/
|
|
61
|
-
import * as i60 from "./
|
|
62
|
-
import * as i61 from "./
|
|
63
|
-
import * as i62 from "./components/
|
|
64
|
-
import * as i63 from "./components/
|
|
65
|
-
import * as i64 from "./
|
|
66
|
-
import * as i65 from "./components/
|
|
67
|
-
import * as i66 from "./questions/
|
|
68
|
-
import * as i67 from "./
|
|
69
|
-
import * as i68 from "./
|
|
70
|
-
import * as i69 from "./
|
|
71
|
-
import * as i70 from "./
|
|
72
|
-
import * as i71 from "./
|
|
73
|
-
import * as i72 from "./questions/
|
|
74
|
-
import * as i73 from "./
|
|
75
|
-
import * as i74 from "./
|
|
76
|
-
import * as i75 from "./questions/
|
|
77
|
-
import * as i76 from "./
|
|
78
|
-
import * as i77 from "./questions/
|
|
79
|
-
import * as i78 from "./
|
|
80
|
-
import * as i79 from "./questions/
|
|
81
|
-
import * as i80 from "./
|
|
82
|
-
import * as i81 from "./questions/
|
|
83
|
-
import * as i82 from "./questions/
|
|
84
|
-
import * as i83 from "./questions/
|
|
85
|
-
import * as i84 from "./
|
|
86
|
-
import * as i85 from "./
|
|
87
|
-
import * as i86 from "./components/matrix-actions/
|
|
88
|
-
import * as i87 from "./
|
|
89
|
-
import * as i88 from "./
|
|
90
|
-
import * as i89 from "./
|
|
91
|
-
import * as i90 from "./questions/
|
|
92
|
-
import * as i91 from "./
|
|
93
|
-
import * as i92 from "./questions/
|
|
94
|
-
import * as i93 from "./questions/
|
|
95
|
-
import * as i94 from "./questions/
|
|
96
|
-
import * as i95 from "./
|
|
97
|
-
import * as i96 from "./
|
|
98
|
-
import * as i97 from "./components/
|
|
99
|
-
import * as i98 from "./components/
|
|
100
|
-
import * as i99 from "./components/
|
|
101
|
-
import * as i100 from "./components/
|
|
102
|
-
import * as i101 from "
|
|
103
|
-
import * as i102 from "
|
|
25
|
+
import * as i24 from "./components/character-counter/character-counter.component";
|
|
26
|
+
import * as i25 from "./components/dropdown/dropdown.component";
|
|
27
|
+
import * as i26 from "./questions/dropdown.component";
|
|
28
|
+
import * as i27 from "./components/renderAs/dropdown-select/dropdown-select.component";
|
|
29
|
+
import * as i28 from "./components/renderAs/dropdown-select/dropdown-option-item.component";
|
|
30
|
+
import * as i29 from "./components/popup/popup.component";
|
|
31
|
+
import * as i30 from "./components/popup/popup-container.component";
|
|
32
|
+
import * as i31 from "./components/popup/popup-pointer.component";
|
|
33
|
+
import * as i32 from "./components/list/list.component";
|
|
34
|
+
import * as i33 from "./components/list/list-item.component";
|
|
35
|
+
import * as i34 from "./components/rating/rating-item.component";
|
|
36
|
+
import * as i35 from "./components/tagbox/tagbox-filter.component";
|
|
37
|
+
import * as i36 from "./components/tagbox/tagbox.component";
|
|
38
|
+
import * as i37 from "./questions/tagbox.component";
|
|
39
|
+
import * as i38 from "./components/tagbox/tagbox-item.component";
|
|
40
|
+
import * as i39 from "./components/action-bar/action-bar.component";
|
|
41
|
+
import * as i40 from "./components/action-bar/action.component";
|
|
42
|
+
import * as i41 from "./components/action-bar/action-bar-item.component";
|
|
43
|
+
import * as i42 from "./components/action-bar/action-bar-item-dropdown.component";
|
|
44
|
+
import * as i43 from "./questions/html.component";
|
|
45
|
+
import * as i44 from "./questions/selectbase-item";
|
|
46
|
+
import * as i45 from "./questions/selectbase.component";
|
|
47
|
+
import * as i46 from "./comment.component";
|
|
48
|
+
import * as i47 from "./comment-other.component";
|
|
49
|
+
import * as i48 from "./components/element-header/element-header.component";
|
|
50
|
+
import * as i49 from "./components/element-title/title-actions.component";
|
|
51
|
+
import * as i50 from "./components/element-title/element-title.component";
|
|
52
|
+
import * as i51 from "./components/element-title/dynamic-head.component";
|
|
53
|
+
import * as i52 from "./row.component";
|
|
54
|
+
import * as i53 from "./questions/rating.component";
|
|
55
|
+
import * as i54 from "./components/renderAs/rating-dropdown/rating-dropdown.component";
|
|
56
|
+
import * as i55 from "./questions/boolean.component";
|
|
57
|
+
import * as i56 from "./components/renderAs/boolean-checkbox/boolean-checkbox.component";
|
|
58
|
+
import * as i57 from "./components/renderAs/boolean-radio/boolean-radio.component";
|
|
59
|
+
import * as i58 from "./components/renderAs/boolean-radio/boolean-radio-item.component";
|
|
60
|
+
import * as i59 from "./questions/imagepicker-item.component";
|
|
61
|
+
import * as i60 from "./questions/imagepicker.component";
|
|
62
|
+
import * as i61 from "./questions/image.component";
|
|
63
|
+
import * as i62 from "./components/survey-header/survey-header.component";
|
|
64
|
+
import * as i63 from "./components/progress/default/progress.component";
|
|
65
|
+
import * as i64 from "./components/progress/buttons/progress.component";
|
|
66
|
+
import * as i65 from "./components/survey-actions/survey-nav-btn.component";
|
|
67
|
+
import * as i66 from "./questions/matrix.component";
|
|
68
|
+
import * as i67 from "./components/svg-icon/svg-icon.component";
|
|
69
|
+
import * as i68 from "./questions/file.component";
|
|
70
|
+
import * as i69 from "./utils/safe-url.pipe";
|
|
71
|
+
import * as i70 from "./utils/safe-html.pipe";
|
|
72
|
+
import * as i71 from "./questions/comment.component";
|
|
73
|
+
import * as i72 from "./questions/signature.component";
|
|
74
|
+
import * as i73 from "./errors.component";
|
|
75
|
+
import * as i74 from "./questions/multipletext.component";
|
|
76
|
+
import * as i75 from "./questions/multipletextitem.component";
|
|
77
|
+
import * as i76 from "./utils/dynamic.directive";
|
|
78
|
+
import * as i77 from "./questions/ranking.component";
|
|
79
|
+
import * as i78 from "./questions/ranking-item.component";
|
|
80
|
+
import * as i79 from "./questions/paneldynamic.component";
|
|
81
|
+
import * as i80 from "./embedded-view-content.component";
|
|
82
|
+
import * as i81 from "./questions/customwidget.component";
|
|
83
|
+
import * as i82 from "./questions/matrixcell.component";
|
|
84
|
+
import * as i83 from "./questions/matrixtable.component";
|
|
85
|
+
import * as i84 from "./questions/matrixdropdown.component";
|
|
86
|
+
import * as i85 from "./questions/matrixdynamic.component";
|
|
87
|
+
import * as i86 from "./components/matrix-actions/detail-button/detail-button.component";
|
|
88
|
+
import * as i87 from "./components/matrix-actions/remove-button/remove-button.component";
|
|
89
|
+
import * as i88 from "./components/matrix-actions/drag-drop-icon/drag-drop-icon";
|
|
90
|
+
import * as i89 from "./questions/matrixrequiredheader.component";
|
|
91
|
+
import * as i90 from "./questions/expression.component";
|
|
92
|
+
import * as i91 from "./components/brand-info/brand-info.component";
|
|
93
|
+
import * as i92 from "./questions/custom.component";
|
|
94
|
+
import * as i93 from "./questions/composite.component";
|
|
95
|
+
import * as i94 from "./questions/button-group/button-group-item.component";
|
|
96
|
+
import * as i95 from "./questions/button-group/button-group.component";
|
|
97
|
+
import * as i96 from "./questions/matrix-row.component";
|
|
98
|
+
import * as i97 from "./components/popup/modal-container.component";
|
|
99
|
+
import * as i98 from "./components/survey-header/logo-image.component";
|
|
100
|
+
import * as i99 from "./components/skeleton/skeleton.component";
|
|
101
|
+
import * as i100 from "./components/timer-panel/timer-panel.component";
|
|
102
|
+
import * as i101 from "./components/paneldynamic-actions/paneldynamic-remove-btn.component";
|
|
103
|
+
import * as i102 from "./components/notifier/notifier.component";
|
|
104
|
+
import * as i103 from "@angular/common";
|
|
105
|
+
import * as i104 from "@angular/forms";
|
|
104
106
|
export declare class SurveyModule {
|
|
105
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyModule, never>;
|
|
106
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SurveyModule, [typeof i1.VisibleDirective, typeof i2.Key2ClickDirective, typeof i3.PanelDynamicAddBtn, typeof i4.PanelDynamicNextBtn, typeof i5.PanelDynamicPrevBtn, typeof i6.PanelDynamicProgressText, typeof i7.ElementComponent, typeof i8.TemplateRendererComponent, typeof i9.SurveyComponent, typeof i10.SurveyContentComponent, typeof i11.PopupSurveyComponent, typeof i12.PageComponent, typeof i13.PanelComponent, typeof i14.QuestionComponent, typeof i15.StringViewerComponent, typeof i16.SurveyStringComponent, typeof i17.StringEditorComponent, typeof i18.QuestionSkeletonComponent, typeof i19.TextQuestionComponent, typeof i20.RadiogroupComponent, typeof i21.RadiogroupItemComponent, typeof i22.CheckboxComponent, typeof i23.CheckboxItemComponent, typeof i24.
|
|
108
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SurveyModule, [typeof i1.VisibleDirective, typeof i2.Key2ClickDirective, typeof i3.PanelDynamicAddBtn, typeof i4.PanelDynamicNextBtn, typeof i5.PanelDynamicPrevBtn, typeof i6.PanelDynamicProgressText, typeof i7.ElementComponent, typeof i8.TemplateRendererComponent, typeof i9.SurveyComponent, typeof i10.SurveyContentComponent, typeof i11.PopupSurveyComponent, typeof i12.PageComponent, typeof i13.PanelComponent, typeof i14.QuestionComponent, typeof i15.StringViewerComponent, typeof i16.SurveyStringComponent, typeof i17.StringEditorComponent, typeof i18.QuestionSkeletonComponent, typeof i19.TextQuestionComponent, typeof i20.RadiogroupComponent, typeof i21.RadiogroupItemComponent, typeof i22.CheckboxComponent, typeof i23.CheckboxItemComponent, typeof i24.CharacterCounterComponent, typeof i25.DropdownComponent, typeof i26.DropdownQuestionComponent, typeof i27.DropdownSelectComponent, typeof i28.DropdownOptionItemComponent, typeof i29.PopupComponent, typeof i30.PopupBaseContainerComponent, typeof i31.PopupPointerComponent, typeof i32.ListComponent, typeof i33.ListItemComponent, typeof i34.RatingItemComponent, typeof i35.TagboxFilterComponent, typeof i36.TagboxComponent, typeof i37.TagboxQuestionComponent, typeof i38.TagboxItemComponent, typeof i39.ActionBarComponent, typeof i40.ActionComponent, typeof i41.ActionBarItemComponent, typeof i42.ActionBarItemDropdownComponent, typeof i43.HtmlQuestionComponent, typeof i44.SelectBaseItemComponent, typeof i45.SelectBaseComponent, typeof i46.SurveyCommentComponent, typeof i47.SurveyCommentOtherComponent, typeof i48.ElementHeaderComponent, typeof i49.ElementTitleActionsComponent, typeof i50.ElementTitleComponent, typeof i51.DynamicHeadComponent, typeof i52.RowComponent, typeof i53.RatingQuestionComponent, typeof i54.RatingDropdownComponent, typeof i55.BooleanQuestionComponent, typeof i56.BooleanCheckboxComponent, typeof i57.BooleanRadioComponent, typeof i58.BooleanRadioItemComponent, typeof i59.ImagePickerItemComponent, typeof i60.ImagePickerQuestionComponent, typeof i61.ImageQuestionComponent, typeof i62.SurveyHeaderComponent, typeof i63.ProgressDefaultComponent, typeof i64.ProgressButtonsComponent, typeof i65.SurveyNavigationButton, typeof i66.MatrixQuestionComponent, typeof i67.SvgIconComponent, typeof i68.FileQuestionComponent, typeof i69.SafeUrlPipe, typeof i70.SafeHtmlPipe, typeof i71.CommentQuestionComponent, typeof i72.SignaturePadQuestionComponent, typeof i73.ErrorsComponent, typeof i74.MultipleTextComponent, typeof i75.MultipleTextItemComponent, typeof i76.DynamicComponentDirective, typeof i77.RankingQuestionComponent, typeof i78.RankingItemComponent, typeof i79.PanelDynamicQuestionComponent, typeof i80.EmbeddedViewContentComponent, typeof i81.CustomWidgetComponent, typeof i82.MatrixCellComponent, typeof i83.MatrixTableComponent, typeof i84.MatrixDropdownComponent, typeof i85.MatrixDynamicComponent, typeof i86.MatrixDetailButtonComponent, typeof i87.MatrixDynamicRemoveButtonComponent, typeof i88.MatrixDynamicDragDropIconComponent, typeof i89.MatrixRequiredHeader, typeof i90.ExpressionComponent, typeof i69.SafeResourceUrlPipe, typeof i91.BrandInfoComponent, typeof i92.CustomQuestionComponent, typeof i93.CompositeQuestionComponent, typeof i94.ButtonGroupItemComponent, typeof i95.ButtonGroupQuestionComponent, typeof i96.MatrixRowComponent, typeof i97.ModalComponent, typeof i98.LogoImageComponent, typeof i99.SkeletonComponent, typeof i100.TimerPanelComponent, typeof i101.PaneldynamicRemoveButtonComponent, typeof i102.NotifierComponent], [typeof i103.CommonModule, typeof i104.FormsModule], [typeof i1.VisibleDirective, typeof i2.Key2ClickDirective, typeof i3.PanelDynamicAddBtn, typeof i4.PanelDynamicNextBtn, typeof i5.PanelDynamicPrevBtn, typeof i6.PanelDynamicProgressText, typeof i7.ElementComponent, typeof i8.TemplateRendererComponent, typeof i9.SurveyComponent, typeof i10.SurveyContentComponent, typeof i11.PopupSurveyComponent, typeof i12.PageComponent, typeof i13.PanelComponent, typeof i14.QuestionComponent, typeof i15.StringViewerComponent, typeof i16.SurveyStringComponent, typeof i17.StringEditorComponent, typeof i18.QuestionSkeletonComponent, typeof i19.TextQuestionComponent, typeof i20.RadiogroupComponent, typeof i21.RadiogroupItemComponent, typeof i22.CheckboxComponent, typeof i23.CheckboxItemComponent, typeof i25.DropdownComponent, typeof i26.DropdownQuestionComponent, typeof i27.DropdownSelectComponent, typeof i28.DropdownOptionItemComponent, typeof i29.PopupComponent, typeof i30.PopupBaseContainerComponent, typeof i31.PopupPointerComponent, typeof i32.ListComponent, typeof i33.ListItemComponent, typeof i34.RatingItemComponent, typeof i35.TagboxFilterComponent, typeof i36.TagboxComponent, typeof i37.TagboxQuestionComponent, typeof i38.TagboxItemComponent, typeof i39.ActionBarComponent, typeof i40.ActionComponent, typeof i41.ActionBarItemComponent, typeof i42.ActionBarItemDropdownComponent, typeof i43.HtmlQuestionComponent, typeof i44.SelectBaseItemComponent, typeof i45.SelectBaseComponent, typeof i46.SurveyCommentComponent, typeof i47.SurveyCommentOtherComponent, typeof i48.ElementHeaderComponent, typeof i50.ElementTitleComponent, typeof i51.DynamicHeadComponent, typeof i52.RowComponent, typeof i53.RatingQuestionComponent, typeof i54.RatingDropdownComponent, typeof i55.BooleanQuestionComponent, typeof i56.BooleanCheckboxComponent, typeof i57.BooleanRadioComponent, typeof i58.BooleanRadioItemComponent, typeof i59.ImagePickerItemComponent, typeof i60.ImagePickerQuestionComponent, typeof i61.ImageQuestionComponent, typeof i62.SurveyHeaderComponent, typeof i63.ProgressDefaultComponent, typeof i64.ProgressButtonsComponent, typeof i65.SurveyNavigationButton, typeof i66.MatrixQuestionComponent, typeof i67.SvgIconComponent, typeof i68.FileQuestionComponent, typeof i69.SafeUrlPipe, typeof i70.SafeHtmlPipe, typeof i71.CommentQuestionComponent, typeof i72.SignaturePadQuestionComponent, typeof i73.ErrorsComponent, typeof i74.MultipleTextComponent, typeof i75.MultipleTextItemComponent, typeof i76.DynamicComponentDirective, typeof i77.RankingQuestionComponent, typeof i78.RankingItemComponent, typeof i79.PanelDynamicQuestionComponent, typeof i80.EmbeddedViewContentComponent, typeof i81.CustomWidgetComponent, typeof i82.MatrixCellComponent, typeof i83.MatrixTableComponent, typeof i84.MatrixDropdownComponent, typeof i85.MatrixDynamicComponent, typeof i86.MatrixDetailButtonComponent, typeof i87.MatrixDynamicRemoveButtonComponent, typeof i88.MatrixDynamicDragDropIconComponent, typeof i89.MatrixRequiredHeader, typeof i90.ExpressionComponent, typeof i69.SafeResourceUrlPipe, typeof i92.CustomQuestionComponent, typeof i93.CompositeQuestionComponent, typeof i95.ButtonGroupQuestionComponent, typeof i97.ModalComponent, typeof i98.LogoImageComponent, typeof i99.SkeletonComponent, typeof i100.TimerPanelComponent, typeof i101.PaneldynamicRemoveButtonComponent, typeof i102.NotifierComponent]>;
|
|
107
109
|
static ɵinj: i0.ɵɵInjectorDeclaration<SurveyModule>;
|
|
108
110
|
}
|