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.
Files changed (232) hide show
  1. package/README.md +23 -192
  2. package/angular-ui.d.ts +2 -0
  3. package/angular-ui.module.d.ts +82 -80
  4. package/bundles/survey-angular-ui.umd.js +4338 -0
  5. package/bundles/survey-angular-ui.umd.js.map +1 -0
  6. package/component-factory.d.ts +2 -2
  7. package/components/character-counter/character-counter.component.d.ts +10 -0
  8. package/components/rating/rating-item.component.d.ts +13 -0
  9. package/esm2015/angular-ui.js +105 -0
  10. package/esm2015/angular-ui.module.js +188 -0
  11. package/esm2015/base-angular.js +128 -0
  12. package/esm2015/comment-other.component.js +35 -0
  13. package/esm2015/comment.component.js +24 -0
  14. package/esm2015/component-factory.js +26 -0
  15. package/esm2015/components/action-bar/action-bar-item-dropdown.component.js +36 -0
  16. package/esm2015/components/action-bar/action-bar-item.component.js +26 -0
  17. package/esm2015/components/action-bar/action-bar.component.js +47 -0
  18. package/esm2015/components/action-bar/action.component.js +31 -0
  19. package/esm2015/components/brand-info/brand-info.component.js +16 -0
  20. package/esm2015/components/character-counter/character-counter.component.js +25 -0
  21. package/esm2015/components/dropdown/dropdown.component.js +76 -0
  22. package/esm2015/components/element-header/element-header.component.js +35 -0
  23. package/esm2015/components/element-title/dynamic-head.component.js +24 -0
  24. package/esm2015/components/element-title/element-title.component.js +21 -0
  25. package/esm2015/components/element-title/title-actions.component.js +21 -0
  26. package/esm2015/components/list/list-item.component.js +52 -0
  27. package/esm2015/components/list/list.component.js +55 -0
  28. package/esm2015/components/matrix-actions/detail-button/detail-button.component.js +28 -0
  29. package/esm2015/components/matrix-actions/drag-drop-icon/drag-drop-icon.js +24 -0
  30. package/esm2015/components/matrix-actions/remove-button/remove-button.component.js +28 -0
  31. package/esm2015/components/notifier/notifier.component.js +26 -0
  32. package/esm2015/components/paneldynamic-actions/paneldynamic-add-btn.component.js +38 -0
  33. package/esm2015/components/paneldynamic-actions/paneldynamic-next-btn.component.js +21 -0
  34. package/esm2015/components/paneldynamic-actions/paneldynamic-prev-btn.component.js +21 -0
  35. package/esm2015/components/paneldynamic-actions/paneldynamic-progress-text.component.js +17 -0
  36. package/esm2015/components/paneldynamic-actions/paneldynamic-remove-btn.component.js +20 -0
  37. package/esm2015/components/popup/modal-container.component.js +46 -0
  38. package/esm2015/components/popup/popup-container.component.js +59 -0
  39. package/esm2015/components/popup/popup-pointer.component.js +25 -0
  40. package/esm2015/components/popup/popup.component.js +45 -0
  41. package/esm2015/components/popup/popup.service.js +26 -0
  42. package/esm2015/components/progress/buttons/progress.component.js +71 -0
  43. package/esm2015/components/progress/default/progress.component.js +30 -0
  44. package/esm2015/components/rating/rating-item.component.js +34 -0
  45. package/esm2015/components/renderAs/boolean-checkbox/boolean-checkbox.component.js +24 -0
  46. package/esm2015/components/renderAs/boolean-radio/boolean-radio-item.component.js +25 -0
  47. package/esm2015/components/renderAs/boolean-radio/boolean-radio.component.js +21 -0
  48. package/esm2015/components/renderAs/dropdown-select/dropdown-option-item.component.js +23 -0
  49. package/esm2015/components/renderAs/dropdown-select/dropdown-select.component.js +41 -0
  50. package/esm2015/components/renderAs/rating-dropdown/rating-dropdown.component.js +21 -0
  51. package/esm2015/components/skeleton/skeleton.component.js +20 -0
  52. package/esm2015/components/skeleton.component.js +19 -0
  53. package/esm2015/components/survey-actions/survey-nav-btn.component.js +26 -0
  54. package/esm2015/components/survey-header/logo-image.component.js +24 -0
  55. package/esm2015/components/survey-header/survey-header.component.js +33 -0
  56. package/esm2015/components/svg-icon/svg-icon.component.js +68 -0
  57. package/esm2015/components/tagbox/tagbox-filter.component.js +26 -0
  58. package/esm2015/components/tagbox/tagbox-item.component.js +30 -0
  59. package/esm2015/components/tagbox/tagbox.component.js +52 -0
  60. package/esm2015/components/timer-panel/timer-panel.component.js +35 -0
  61. package/esm2015/element.component.js +59 -0
  62. package/esm2015/embedded-view-content.component.js +25 -0
  63. package/esm2015/errors.component.js +61 -0
  64. package/esm2015/page.component.js +40 -0
  65. package/esm2015/panel.component.js +42 -0
  66. package/esm2015/popup.survey.component.js +49 -0
  67. package/esm2015/question.component.js +58 -0
  68. package/esm2015/question.js +35 -0
  69. package/esm2015/questions/boolean.component.js +23 -0
  70. package/esm2015/questions/button-group/button-group-item.component.js +33 -0
  71. package/esm2015/questions/button-group/button-group.component.js +17 -0
  72. package/esm2015/questions/checkbox-item.component.js +28 -0
  73. package/esm2015/questions/checkbox.component.js +20 -0
  74. package/esm2015/questions/comment.component.js +22 -0
  75. package/esm2015/questions/composite.component.js +21 -0
  76. package/esm2015/questions/custom.component.js +27 -0
  77. package/esm2015/questions/customwidget.component.js +54 -0
  78. package/esm2015/questions/dropdown.component.js +20 -0
  79. package/esm2015/questions/expression.component.js +17 -0
  80. package/esm2015/questions/file.component.js +29 -0
  81. package/esm2015/questions/html.component.js +29 -0
  82. package/esm2015/questions/image.component.js +29 -0
  83. package/esm2015/questions/imagepicker-item.component.js +52 -0
  84. package/esm2015/questions/imagepicker.component.js +32 -0
  85. package/esm2015/questions/matrix-row.component.js +31 -0
  86. package/esm2015/questions/matrix.component.js +40 -0
  87. package/esm2015/questions/matrixcell.component.js +94 -0
  88. package/esm2015/questions/matrixdropdown.component.js +19 -0
  89. package/esm2015/questions/matrixdynamic.component.js +20 -0
  90. package/esm2015/questions/matrixrequiredheader.component.js +24 -0
  91. package/esm2015/questions/matrixtable.component.js +34 -0
  92. package/esm2015/questions/multipletext.component.js +28 -0
  93. package/esm2015/questions/multipletextitem.component.js +26 -0
  94. package/esm2015/questions/paneldynamic.component.js +82 -0
  95. package/esm2015/questions/radiogroup-item.component.js +22 -0
  96. package/esm2015/questions/radiogroup.component.js +25 -0
  97. package/esm2015/questions/ranking-item.component.js +27 -0
  98. package/esm2015/questions/ranking.component.js +34 -0
  99. package/esm2015/questions/rating.component.js +27 -0
  100. package/esm2015/questions/selectbase-item.js +37 -0
  101. package/esm2015/questions/selectbase.component.js +53 -0
  102. package/esm2015/questions/signature.component.js +20 -0
  103. package/esm2015/questions/tagbox.component.js +20 -0
  104. package/esm2015/questions/text.component.js +21 -0
  105. package/esm2015/row.component.js +63 -0
  106. package/esm2015/string-editor.component.js +29 -0
  107. package/esm2015/string-viewer.component.js +41 -0
  108. package/esm2015/survey-angular-ui.js +5 -0
  109. package/esm2015/survey-content.component.js +72 -0
  110. package/esm2015/survey-string.component.js +17 -0
  111. package/esm2015/survey.component.js +32 -0
  112. package/esm2015/template-renderer.component.js +27 -0
  113. package/esm2015/utils/dynamic.directive.js +54 -0
  114. package/esm2015/utils/ng-key2click.directive.js +69 -0
  115. package/esm2015/utils/ng-show.directive.js +27 -0
  116. package/esm2015/utils/safe-html.pipe.js +18 -0
  117. package/esm2015/utils/safe-url.pipe.js +33 -0
  118. package/esm2020/angular-ui.mjs +103 -103
  119. package/esm2020/angular-ui.module.mjs +184 -184
  120. package/esm2020/base-angular.mjs +128 -128
  121. package/esm2020/comment-other.component.mjs +32 -32
  122. package/esm2020/comment.component.mjs +21 -21
  123. package/esm2020/component-factory.mjs +26 -26
  124. package/esm2020/components/action-bar/action-bar-item-dropdown.component.mjs +32 -32
  125. package/esm2020/components/action-bar/action-bar-item.component.mjs +22 -22
  126. package/esm2020/components/action-bar/action-bar.component.mjs +43 -43
  127. package/esm2020/components/action-bar/action.component.mjs +27 -27
  128. package/esm2020/components/brand-info/brand-info.component.mjs +13 -13
  129. package/esm2020/components/dropdown/dropdown.component.mjs +66 -66
  130. package/esm2020/components/element-header/element-header.component.mjs +32 -32
  131. package/esm2020/components/element-title/dynamic-head.component.mjs +20 -20
  132. package/esm2020/components/element-title/element-title.component.mjs +17 -17
  133. package/esm2020/components/element-title/title-actions.component.mjs +17 -17
  134. package/esm2020/components/list/list-item.component.mjs +48 -48
  135. package/esm2020/components/list/list.component.mjs +50 -50
  136. package/esm2020/components/matrix-actions/detail-button/detail-button.component.mjs +25 -25
  137. package/esm2020/components/matrix-actions/drag-drop-icon/drag-drop-icon.mjs +20 -20
  138. package/esm2020/components/matrix-actions/remove-button/remove-button.component.mjs +25 -25
  139. package/esm2020/components/notifier/notifier.component.mjs +22 -22
  140. package/esm2020/components/paneldynamic-actions/paneldynamic-add-btn.component.mjs +35 -35
  141. package/esm2020/components/paneldynamic-actions/paneldynamic-next-btn.component.mjs +18 -18
  142. package/esm2020/components/paneldynamic-actions/paneldynamic-prev-btn.component.mjs +18 -18
  143. package/esm2020/components/paneldynamic-actions/paneldynamic-progress-text.component.mjs +14 -14
  144. package/esm2020/components/paneldynamic-actions/paneldynamic-remove-btn.component.mjs +17 -17
  145. package/esm2020/components/popup/modal-container.component.mjs +42 -42
  146. package/esm2020/components/popup/popup-container.component.mjs +56 -56
  147. package/esm2020/components/popup/popup-pointer.component.mjs +22 -22
  148. package/esm2020/components/popup/popup.component.mjs +43 -43
  149. package/esm2020/components/popup/popup.service.mjs +26 -26
  150. package/esm2020/components/progress/buttons/progress.component.mjs +67 -67
  151. package/esm2020/components/progress/default/progress.component.mjs +27 -27
  152. package/esm2020/components/renderAs/boolean-checkbox/boolean-checkbox.component.mjs +21 -21
  153. package/esm2020/components/renderAs/boolean-radio/boolean-radio-item.component.mjs +22 -22
  154. package/esm2020/components/renderAs/boolean-radio/boolean-radio.component.mjs +18 -18
  155. package/esm2020/components/renderAs/dropdown-select/dropdown-option-item.component.mjs +23 -23
  156. package/esm2020/components/renderAs/dropdown-select/dropdown-select.component.mjs +38 -38
  157. package/esm2020/components/renderAs/rating-dropdown/rating-dropdown.component.mjs +18 -18
  158. package/esm2020/components/skeleton/skeleton.component.mjs +16 -16
  159. package/esm2020/components/skeleton.component.mjs +15 -15
  160. package/esm2020/components/survey-actions/survey-nav-btn.component.mjs +22 -22
  161. package/esm2020/components/survey-header/logo-image.component.mjs +20 -20
  162. package/esm2020/components/survey-header/survey-header.component.mjs +30 -30
  163. package/esm2020/components/svg-icon/svg-icon.component.mjs +68 -68
  164. package/esm2020/components/tagbox/tagbox-filter.component.mjs +22 -22
  165. package/esm2020/components/tagbox/tagbox-item.component.mjs +27 -27
  166. package/esm2020/components/tagbox/tagbox.component.mjs +44 -44
  167. package/esm2020/components/timer-panel/timer-panel.component.mjs +32 -32
  168. package/esm2020/element.component.mjs +55 -55
  169. package/esm2020/embedded-view-content.component.mjs +24 -24
  170. package/esm2020/errors.component.mjs +58 -58
  171. package/esm2020/page.component.mjs +35 -35
  172. package/esm2020/panel.component.mjs +38 -38
  173. package/esm2020/popup.survey.component.mjs +44 -44
  174. package/esm2020/question.component.mjs +54 -54
  175. package/esm2020/question.mjs +33 -33
  176. package/esm2020/questions/boolean.component.mjs +20 -20
  177. package/esm2020/questions/button-group/button-group-item.component.mjs +29 -29
  178. package/esm2020/questions/button-group/button-group.component.mjs +14 -14
  179. package/esm2020/questions/checkbox-item.component.mjs +24 -36
  180. package/esm2020/questions/checkbox.component.mjs +17 -17
  181. package/esm2020/questions/comment.component.mjs +18 -18
  182. package/esm2020/questions/composite.component.mjs +21 -21
  183. package/esm2020/questions/custom.component.mjs +27 -27
  184. package/esm2020/questions/customwidget.component.mjs +51 -51
  185. package/esm2020/questions/dropdown.component.mjs +17 -17
  186. package/esm2020/questions/expression.component.mjs +17 -17
  187. package/esm2020/questions/file.component.mjs +25 -25
  188. package/esm2020/questions/html.component.mjs +25 -25
  189. package/esm2020/questions/image.component.mjs +26 -26
  190. package/esm2020/questions/imagepicker-item.component.mjs +48 -48
  191. package/esm2020/questions/imagepicker.component.mjs +29 -29
  192. package/esm2020/questions/matrix-row.component.mjs +27 -27
  193. package/esm2020/questions/matrix.component.mjs +36 -36
  194. package/esm2020/questions/matrixcell.component.mjs +90 -90
  195. package/esm2020/questions/matrixdropdown.component.mjs +16 -16
  196. package/esm2020/questions/matrixdynamic.component.mjs +17 -17
  197. package/esm2020/questions/matrixrequiredheader.component.mjs +24 -24
  198. package/esm2020/questions/matrixtable.component.mjs +31 -31
  199. package/esm2020/questions/multipletext.component.mjs +25 -25
  200. package/esm2020/questions/multipletextitem.component.mjs +23 -23
  201. package/esm2020/questions/paneldynamic.component.mjs +79 -79
  202. package/esm2020/questions/radiogroup-item.component.mjs +18 -18
  203. package/esm2020/questions/radiogroup.component.mjs +22 -22
  204. package/esm2020/questions/ranking-item.component.mjs +24 -24
  205. package/esm2020/questions/ranking.component.mjs +31 -31
  206. package/esm2020/questions/rating.component.mjs +23 -23
  207. package/esm2020/questions/selectbase-item.mjs +33 -33
  208. package/esm2020/questions/selectbase.component.mjs +50 -47
  209. package/esm2020/questions/signature.component.mjs +17 -17
  210. package/esm2020/questions/tagbox.component.mjs +17 -17
  211. package/esm2020/questions/text.component.mjs +16 -16
  212. package/esm2020/row.component.mjs +58 -58
  213. package/esm2020/string-editor.component.mjs +26 -26
  214. package/esm2020/string-viewer.component.mjs +37 -37
  215. package/esm2020/survey-angular-ui.mjs +5 -5
  216. package/esm2020/survey-content.component.mjs +69 -69
  217. package/esm2020/survey-string.component.mjs +17 -17
  218. package/esm2020/survey.component.mjs +32 -32
  219. package/esm2020/template-renderer.component.mjs +23 -23
  220. package/esm2020/utils/dynamic.directive.mjs +52 -52
  221. package/esm2020/utils/ng-key2click.directive.mjs +69 -69
  222. package/esm2020/utils/ng-show.directive.mjs +27 -27
  223. package/esm2020/utils/safe-html.pipe.mjs +18 -18
  224. package/esm2020/utils/safe-url.pipe.mjs +33 -33
  225. package/fesm2015/survey-angular-ui.js +3206 -0
  226. package/fesm2015/survey-angular-ui.js.map +1 -0
  227. package/fesm2015/survey-angular-ui.mjs +2864 -2873
  228. package/fesm2015/survey-angular-ui.mjs.map +1 -1
  229. package/fesm2020/survey-angular-ui.mjs +2839 -2848
  230. package/fesm2020/survey-angular-ui.mjs.map +1 -1
  231. package/package.json +6 -19
  232. package/utils/dynamic.directive.d.ts +3 -2
package/README.md CHANGED
@@ -1,6 +1,4 @@
1
- ## **SurveyJS** is a JavaScript Survey and Form Library.
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
  [![Build Status](https://dev.azure.com/SurveyJS/SurveyJS%20Integration%20Tests/_apis/build/status/SurveyJS%20Library?branchName=master)](https://dev.azure.com/SurveyJS/SurveyJS%20Integration%20Tests/_build/latest?definitionId=7&branchName=master)
6
4
  [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](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
- ## Documentation
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
- ![alt tag](https://cloud.githubusercontent.com/assets/22315929/22462339/ed33f60a-e7bd-11e6-942b-72882e6bf1db.gif)
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
- After that you should have the libraries (angular, jquery, knockout, react and vue) at 'packages' directory.
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
- 4. **Run samples**
19
+ ## Features
194
20
 
195
- ```
196
- npm start
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
- This command will run local http server at the http://localhost:7777
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
- 5. **Run unit tests**
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
- ### WordPress integration
36
+ ## Resources
209
37
 
210
- [SurveyJS WordPress plugin](https://wordpress.org/plugins/surveyjs/)
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
- ## License
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";
@@ -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/dropdown/dropdown.component";
26
- import * as i25 from "./questions/dropdown.component";
27
- import * as i26 from "./components/renderAs/dropdown-select/dropdown-select.component";
28
- import * as i27 from "./components/renderAs/dropdown-select/dropdown-option-item.component";
29
- import * as i28 from "./components/popup/popup.component";
30
- import * as i29 from "./components/popup/popup-container.component";
31
- import * as i30 from "./components/popup/popup-pointer.component";
32
- import * as i31 from "./components/list/list.component";
33
- import * as i32 from "./components/list/list-item.component";
34
- import * as i33 from "./components/tagbox/tagbox-filter.component";
35
- import * as i34 from "./components/tagbox/tagbox.component";
36
- import * as i35 from "./questions/tagbox.component";
37
- import * as i36 from "./components/tagbox/tagbox-item.component";
38
- import * as i37 from "./components/action-bar/action-bar.component";
39
- import * as i38 from "./components/action-bar/action.component";
40
- import * as i39 from "./components/action-bar/action-bar-item.component";
41
- import * as i40 from "./components/action-bar/action-bar-item-dropdown.component";
42
- import * as i41 from "./questions/html.component";
43
- import * as i42 from "./questions/selectbase-item";
44
- import * as i43 from "./questions/selectbase.component";
45
- import * as i44 from "./comment.component";
46
- import * as i45 from "./comment-other.component";
47
- import * as i46 from "./components/element-header/element-header.component";
48
- import * as i47 from "./components/element-title/title-actions.component";
49
- import * as i48 from "./components/element-title/element-title.component";
50
- import * as i49 from "./components/element-title/dynamic-head.component";
51
- import * as i50 from "./row.component";
52
- import * as i51 from "./questions/rating.component";
53
- import * as i52 from "./components/renderAs/rating-dropdown/rating-dropdown.component";
54
- import * as i53 from "./questions/boolean.component";
55
- import * as i54 from "./components/renderAs/boolean-checkbox/boolean-checkbox.component";
56
- import * as i55 from "./components/renderAs/boolean-radio/boolean-radio.component";
57
- import * as i56 from "./components/renderAs/boolean-radio/boolean-radio-item.component";
58
- import * as i57 from "./questions/imagepicker-item.component";
59
- import * as i58 from "./questions/imagepicker.component";
60
- import * as i59 from "./questions/image.component";
61
- import * as i60 from "./components/survey-header/survey-header.component";
62
- import * as i61 from "./components/progress/default/progress.component";
63
- import * as i62 from "./components/progress/buttons/progress.component";
64
- import * as i63 from "./components/survey-actions/survey-nav-btn.component";
65
- import * as i64 from "./questions/matrix.component";
66
- import * as i65 from "./components/svg-icon/svg-icon.component";
67
- import * as i66 from "./questions/file.component";
68
- import * as i67 from "./utils/safe-url.pipe";
69
- import * as i68 from "./utils/safe-html.pipe";
70
- import * as i69 from "./questions/comment.component";
71
- import * as i70 from "./questions/signature.component";
72
- import * as i71 from "./errors.component";
73
- import * as i72 from "./questions/multipletext.component";
74
- import * as i73 from "./questions/multipletextitem.component";
75
- import * as i74 from "./utils/dynamic.directive";
76
- import * as i75 from "./questions/ranking.component";
77
- import * as i76 from "./questions/ranking-item.component";
78
- import * as i77 from "./questions/paneldynamic.component";
79
- import * as i78 from "./embedded-view-content.component";
80
- import * as i79 from "./questions/customwidget.component";
81
- import * as i80 from "./questions/matrixcell.component";
82
- import * as i81 from "./questions/matrixtable.component";
83
- import * as i82 from "./questions/matrixdropdown.component";
84
- import * as i83 from "./questions/matrixdynamic.component";
85
- import * as i84 from "./components/matrix-actions/detail-button/detail-button.component";
86
- import * as i85 from "./components/matrix-actions/remove-button/remove-button.component";
87
- import * as i86 from "./components/matrix-actions/drag-drop-icon/drag-drop-icon";
88
- import * as i87 from "./questions/matrixrequiredheader.component";
89
- import * as i88 from "./questions/expression.component";
90
- import * as i89 from "./components/brand-info/brand-info.component";
91
- import * as i90 from "./questions/custom.component";
92
- import * as i91 from "./questions/composite.component";
93
- import * as i92 from "./questions/button-group/button-group-item.component";
94
- import * as i93 from "./questions/button-group/button-group.component";
95
- import * as i94 from "./questions/matrix-row.component";
96
- import * as i95 from "./components/popup/modal-container.component";
97
- import * as i96 from "./components/survey-header/logo-image.component";
98
- import * as i97 from "./components/skeleton/skeleton.component";
99
- import * as i98 from "./components/timer-panel/timer-panel.component";
100
- import * as i99 from "./components/paneldynamic-actions/paneldynamic-remove-btn.component";
101
- import * as i100 from "./components/notifier/notifier.component";
102
- import * as i101 from "@angular/common";
103
- import * as i102 from "@angular/forms";
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.DropdownComponent, typeof i25.DropdownQuestionComponent, typeof i26.DropdownSelectComponent, typeof i27.DropdownOptionItemComponent, typeof i28.PopupComponent, typeof i29.PopupBaseContainerComponent, typeof i30.PopupPointerComponent, typeof i31.ListComponent, typeof i32.ListItemComponent, typeof i33.TagboxFilterComponent, typeof i34.TagboxComponent, typeof i35.TagboxQuestionComponent, typeof i36.TagboxItemComponent, typeof i37.ActionBarComponent, typeof i38.ActionComponent, typeof i39.ActionBarItemComponent, typeof i40.ActionBarItemDropdownComponent, typeof i41.HtmlQuestionComponent, typeof i42.SelectBaseItemComponent, typeof i43.SelectBaseComponent, typeof i44.SurveyCommentComponent, typeof i45.SurveyCommentOtherComponent, typeof i46.ElementHeaderComponent, typeof i47.ElementTitleActionsComponent, typeof i48.ElementTitleComponent, typeof i49.DynamicHeadComponent, typeof i50.RowComponent, typeof i51.RatingQuestionComponent, typeof i52.RatingDropdownComponent, typeof i53.BooleanQuestionComponent, typeof i54.BooleanCheckboxComponent, typeof i55.BooleanRadioComponent, typeof i56.BooleanRadioItemComponent, typeof i57.ImagePickerItemComponent, typeof i58.ImagePickerQuestionComponent, typeof i59.ImageQuestionComponent, typeof i60.SurveyHeaderComponent, typeof i61.ProgressDefaultComponent, typeof i62.ProgressButtonsComponent, typeof i63.SurveyNavigationButton, typeof i64.MatrixQuestionComponent, typeof i65.SvgIconComponent, typeof i66.FileQuestionComponent, typeof i67.SafeUrlPipe, typeof i68.SafeHtmlPipe, typeof i69.CommentQuestionComponent, typeof i70.SignaturePadQuestionComponent, typeof i71.ErrorsComponent, typeof i72.MultipleTextComponent, typeof i73.MultipleTextItemComponent, typeof i74.DynamicComponentDirective, typeof i75.RankingQuestionComponent, typeof i76.RankingItemComponent, typeof i77.PanelDynamicQuestionComponent, typeof i78.EmbeddedViewContentComponent, typeof i79.CustomWidgetComponent, typeof i80.MatrixCellComponent, typeof i81.MatrixTableComponent, typeof i82.MatrixDropdownComponent, typeof i83.MatrixDynamicComponent, typeof i84.MatrixDetailButtonComponent, typeof i85.MatrixDynamicRemoveButtonComponent, typeof i86.MatrixDynamicDragDropIconComponent, typeof i87.MatrixRequiredHeader, typeof i88.ExpressionComponent, typeof i67.SafeResourceUrlPipe, typeof i89.BrandInfoComponent, typeof i90.CustomQuestionComponent, typeof i91.CompositeQuestionComponent, typeof i92.ButtonGroupItemComponent, typeof i93.ButtonGroupQuestionComponent, typeof i94.MatrixRowComponent, typeof i95.ModalComponent, typeof i96.LogoImageComponent, typeof i97.SkeletonComponent, typeof i98.TimerPanelComponent, typeof i99.PaneldynamicRemoveButtonComponent, typeof i100.NotifierComponent], [typeof i101.CommonModule, typeof i102.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 i24.DropdownComponent, typeof i25.DropdownQuestionComponent, typeof i26.DropdownSelectComponent, typeof i27.DropdownOptionItemComponent, typeof i28.PopupComponent, typeof i29.PopupBaseContainerComponent, typeof i30.PopupPointerComponent, typeof i31.ListComponent, typeof i32.ListItemComponent, typeof i33.TagboxFilterComponent, typeof i34.TagboxComponent, typeof i35.TagboxQuestionComponent, typeof i36.TagboxItemComponent, typeof i37.ActionBarComponent, typeof i38.ActionComponent, typeof i39.ActionBarItemComponent, typeof i40.ActionBarItemDropdownComponent, typeof i41.HtmlQuestionComponent, typeof i42.SelectBaseItemComponent, typeof i43.SelectBaseComponent, typeof i44.SurveyCommentComponent, typeof i45.SurveyCommentOtherComponent, typeof i46.ElementHeaderComponent, typeof i48.ElementTitleComponent, typeof i49.DynamicHeadComponent, typeof i50.RowComponent, typeof i51.RatingQuestionComponent, typeof i52.RatingDropdownComponent, typeof i53.BooleanQuestionComponent, typeof i54.BooleanCheckboxComponent, typeof i55.BooleanRadioComponent, typeof i56.BooleanRadioItemComponent, typeof i57.ImagePickerItemComponent, typeof i58.ImagePickerQuestionComponent, typeof i59.ImageQuestionComponent, typeof i60.SurveyHeaderComponent, typeof i61.ProgressDefaultComponent, typeof i62.ProgressButtonsComponent, typeof i63.SurveyNavigationButton, typeof i64.MatrixQuestionComponent, typeof i65.SvgIconComponent, typeof i66.FileQuestionComponent, typeof i67.SafeUrlPipe, typeof i68.SafeHtmlPipe, typeof i69.CommentQuestionComponent, typeof i70.SignaturePadQuestionComponent, typeof i71.ErrorsComponent, typeof i72.MultipleTextComponent, typeof i73.MultipleTextItemComponent, typeof i74.DynamicComponentDirective, typeof i75.RankingQuestionComponent, typeof i76.RankingItemComponent, typeof i77.PanelDynamicQuestionComponent, typeof i78.EmbeddedViewContentComponent, typeof i79.CustomWidgetComponent, typeof i80.MatrixCellComponent, typeof i81.MatrixTableComponent, typeof i82.MatrixDropdownComponent, typeof i83.MatrixDynamicComponent, typeof i84.MatrixDetailButtonComponent, typeof i85.MatrixDynamicRemoveButtonComponent, typeof i86.MatrixDynamicDragDropIconComponent, typeof i87.MatrixRequiredHeader, typeof i88.ExpressionComponent, typeof i67.SafeResourceUrlPipe, typeof i90.CustomQuestionComponent, typeof i91.CompositeQuestionComponent, typeof i93.ButtonGroupQuestionComponent, typeof i95.ModalComponent, typeof i96.LogoImageComponent, typeof i97.SkeletonComponent, typeof i98.TimerPanelComponent, typeof i99.PaneldynamicRemoveButtonComponent, typeof i100.NotifierComponent]>;
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
  }