survey-js-ui 1.11.10 → 1.11.12

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 (200) hide show
  1. package/README.md +9 -9
  2. package/package.json +5 -3
  3. package/survey-js-ui.d.ts +1 -1
  4. package/survey-js-ui.js +6542 -8548
  5. package/survey-js-ui.js.map +1 -1
  6. package/survey-js-ui.min.js +2 -2
  7. package/typings/entries/core-export.d.ts +3 -3
  8. package/typings/entries/js-ui.d.ts +7 -7
  9. package/typings/entries/react-ui-model.d.ts +84 -84
  10. package/typings/packages/survey-react-ui/entries/react-ui-model.d.ts +85 -0
  11. package/typings/packages/survey-react-ui/src/boolean-checkbox.d.ts +6 -0
  12. package/typings/packages/survey-react-ui/src/boolean-radio.d.ts +8 -0
  13. package/typings/packages/survey-react-ui/src/boolean.d.ts +17 -0
  14. package/typings/packages/survey-react-ui/src/components/action-bar/action-bar-item-dropdown.d.ts +8 -0
  15. package/typings/packages/survey-react-ui/src/components/action-bar/action-bar-item.d.ts +20 -0
  16. package/typings/packages/survey-react-ui/src/components/action-bar/action-bar-separator.d.ts +5 -0
  17. package/typings/packages/survey-react-ui/src/components/action-bar/action-bar.d.ts +21 -0
  18. package/typings/packages/survey-react-ui/src/components/brand-info.d.ts +4 -0
  19. package/typings/packages/survey-react-ui/src/components/character-counter.d.ts +11 -0
  20. package/typings/packages/survey-react-ui/src/components/components-container.d.ts +4 -0
  21. package/typings/packages/survey-react-ui/src/components/file/file-choose-button.d.ts +8 -0
  22. package/typings/packages/survey-react-ui/src/components/file/file-preview.d.ts +11 -0
  23. package/typings/packages/survey-react-ui/src/components/header.d.ts +22 -0
  24. package/typings/packages/survey-react-ui/src/components/list/list-item-content.d.ts +14 -0
  25. package/typings/packages/survey-react-ui/src/components/list/list-item-group.d.ts +14 -0
  26. package/typings/packages/survey-react-ui/src/components/list/list-item.d.ts +16 -0
  27. package/typings/packages/survey-react-ui/src/components/list/list.d.ts +23 -0
  28. package/typings/packages/survey-react-ui/src/components/loading-indicator.d.ts +4 -0
  29. package/typings/packages/survey-react-ui/src/components/matrix/row.d.ts +20 -0
  30. package/typings/packages/survey-react-ui/src/components/matrix-actions/detail-button/detail-button.d.ts +12 -0
  31. package/typings/packages/survey-react-ui/src/components/matrix-actions/drag-drop-icon/drag-drop-icon.d.ts +6 -0
  32. package/typings/packages/survey-react-ui/src/components/matrix-actions/remove-button/remove-button.d.ts +9 -0
  33. package/typings/packages/survey-react-ui/src/components/notifier.d.ts +11 -0
  34. package/typings/packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn.d.ts +12 -0
  35. package/typings/packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-next-btn.d.ts +6 -0
  36. package/typings/packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-prev-btn.d.ts +6 -0
  37. package/typings/packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-progress-text.d.ts +5 -0
  38. package/typings/packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-remove-btn.d.ts +6 -0
  39. package/typings/packages/survey-react-ui/src/components/popup/popup.d.ts +42 -0
  40. package/typings/packages/survey-react-ui/src/components/question-error.d.ts +10 -0
  41. package/typings/packages/survey-react-ui/src/components/rating/rating-dropdown-item.d.ts +12 -0
  42. package/typings/packages/survey-react-ui/src/components/rating/rating-item-smiley.d.ts +5 -0
  43. package/typings/packages/survey-react-ui/src/components/rating/rating-item-star.d.ts +5 -0
  44. package/typings/packages/survey-react-ui/src/components/rating/rating-item.d.ts +22 -0
  45. package/typings/packages/survey-react-ui/src/components/skeleton.d.ts +4 -0
  46. package/typings/packages/survey-react-ui/src/components/survey-actions/survey-nav-button.d.ts +8 -0
  47. package/typings/packages/survey-react-ui/src/components/survey-header/logo-image.d.ts +11 -0
  48. package/typings/packages/survey-react-ui/src/components/survey-header/survey-header.d.ts +17 -0
  49. package/typings/packages/survey-react-ui/src/components/svg-icon/svg-icon.d.ts +9 -0
  50. package/typings/packages/survey-react-ui/src/components/title/title-actions.d.ts +7 -0
  51. package/typings/packages/survey-react-ui/src/components/title/title-content.d.ts +10 -0
  52. package/typings/packages/survey-react-ui/src/components/title/title-element.d.ts +6 -0
  53. package/typings/packages/survey-react-ui/src/custom-widget.d.ts +12 -0
  54. package/typings/packages/survey-react-ui/src/dropdown-base.d.ts +25 -0
  55. package/typings/packages/survey-react-ui/src/dropdown-item.d.ts +13 -0
  56. package/typings/packages/survey-react-ui/src/dropdown-select.d.ts +6 -0
  57. package/typings/packages/survey-react-ui/src/element-factory.d.ts +9 -0
  58. package/typings/packages/survey-react-ui/src/element-header.d.ts +5 -0
  59. package/typings/packages/survey-react-ui/src/element.d.ts +19 -0
  60. package/typings/packages/survey-react-ui/src/flow-panel.d.ts +22 -0
  61. package/typings/packages/survey-react-ui/src/image.d.ts +10 -0
  62. package/typings/packages/survey-react-ui/src/imagepicker.d.ts +25 -0
  63. package/typings/packages/survey-react-ui/src/page.d.ts +11 -0
  64. package/typings/packages/survey-react-ui/src/panel-base.d.ts +25 -0
  65. package/typings/packages/survey-react-ui/src/panel.d.ts +16 -0
  66. package/typings/packages/survey-react-ui/src/progress.d.ts +9 -0
  67. package/typings/packages/survey-react-ui/src/progressButtons.d.ts +19 -0
  68. package/typings/packages/survey-react-ui/src/progressToc.d.ts +5 -0
  69. package/typings/packages/survey-react-ui/src/rating-dropdown.d.ts +8 -0
  70. package/typings/packages/survey-react-ui/src/react-popup-survey.d.ts +24 -0
  71. package/typings/packages/survey-react-ui/src/reactSurvey.d.ts +41 -0
  72. package/typings/packages/survey-react-ui/src/reactSurveyNavigationBase.d.ts +10 -0
  73. package/typings/packages/survey-react-ui/src/reactquestion.d.ts +81 -0
  74. package/typings/packages/survey-react-ui/src/reactquestion_buttongroup.d.ts +23 -0
  75. package/typings/packages/survey-react-ui/src/reactquestion_checkbox.d.ts +33 -0
  76. package/typings/packages/survey-react-ui/src/reactquestion_comment.d.ts +31 -0
  77. package/typings/packages/survey-react-ui/src/reactquestion_custom.d.ts +13 -0
  78. package/typings/packages/survey-react-ui/src/reactquestion_dropdown.d.ts +7 -0
  79. package/typings/packages/survey-react-ui/src/reactquestion_element.d.ts +65 -0
  80. package/typings/packages/survey-react-ui/src/reactquestion_empty.d.ts +8 -0
  81. package/typings/packages/survey-react-ui/src/reactquestion_expression.d.ts +8 -0
  82. package/typings/packages/survey-react-ui/src/reactquestion_factory.d.ts +8 -0
  83. package/typings/packages/survey-react-ui/src/reactquestion_file.d.ts +14 -0
  84. package/typings/packages/survey-react-ui/src/reactquestion_html.d.ts +13 -0
  85. package/typings/packages/survey-react-ui/src/reactquestion_matrix.d.ts +33 -0
  86. package/typings/packages/survey-react-ui/src/reactquestion_matrixdropdown.d.ts +4 -0
  87. package/typings/packages/survey-react-ui/src/reactquestion_matrixdropdownbase.d.ts +29 -0
  88. package/typings/packages/survey-react-ui/src/reactquestion_matrixdynamic.d.ts +20 -0
  89. package/typings/packages/survey-react-ui/src/reactquestion_multipletext.d.ts +22 -0
  90. package/typings/packages/survey-react-ui/src/reactquestion_paneldynamic.d.ts +28 -0
  91. package/typings/packages/survey-react-ui/src/reactquestion_radiogroup.d.ts +32 -0
  92. package/typings/packages/survey-react-ui/src/reactquestion_ranking.d.ts +30 -0
  93. package/typings/packages/survey-react-ui/src/reactquestion_rating.d.ts +10 -0
  94. package/typings/packages/survey-react-ui/src/reactquestion_tagbox.d.ts +10 -0
  95. package/typings/packages/survey-react-ui/src/reactquestion_text.d.ts +11 -0
  96. package/typings/packages/survey-react-ui/src/reactsurveymodel.d.ts +9 -0
  97. package/typings/packages/survey-react-ui/src/reacttimerpanel.d.ts +11 -0
  98. package/typings/packages/survey-react-ui/src/row.d.ts +21 -0
  99. package/typings/packages/survey-react-ui/src/signaturepad.d.ts +11 -0
  100. package/typings/packages/survey-react-ui/src/string-editor.d.ts +11 -0
  101. package/typings/packages/survey-react-ui/src/string-viewer.d.ts +15 -0
  102. package/typings/packages/survey-react-ui/src/svgbundle.d.ts +7 -0
  103. package/typings/packages/survey-react-ui/src/tagbox-filter.d.ts +23 -0
  104. package/typings/packages/survey-react-ui/src/tagbox-item.d.ts +10 -0
  105. package/typings/react/boolean-checkbox.d.ts +6 -6
  106. package/typings/react/boolean-radio.d.ts +8 -8
  107. package/typings/react/boolean.d.ts +17 -17
  108. package/typings/react/components/action-bar/action-bar-item-dropdown.d.ts +8 -8
  109. package/typings/react/components/action-bar/action-bar-item.d.ts +20 -20
  110. package/typings/react/components/action-bar/action-bar-separator.d.ts +5 -5
  111. package/typings/react/components/action-bar/action-bar.d.ts +21 -21
  112. package/typings/react/components/brand-info.d.ts +4 -4
  113. package/typings/react/components/character-counter.d.ts +11 -11
  114. package/typings/react/components/components-container.d.ts +4 -4
  115. package/typings/react/components/file/file-choose-button.d.ts +8 -8
  116. package/typings/react/components/file/file-preview.d.ts +11 -11
  117. package/typings/react/components/header.d.ts +22 -22
  118. package/typings/react/components/list/list-item-content.d.ts +14 -14
  119. package/typings/react/components/list/list-item-group.d.ts +14 -14
  120. package/typings/react/components/list/list-item.d.ts +16 -16
  121. package/typings/react/components/list/list.d.ts +23 -23
  122. package/typings/react/components/loading-indicator.d.ts +4 -4
  123. package/typings/react/components/matrix/row.d.ts +20 -20
  124. package/typings/react/components/matrix-actions/detail-button/detail-button.d.ts +12 -12
  125. package/typings/react/components/matrix-actions/drag-drop-icon/drag-drop-icon.d.ts +6 -6
  126. package/typings/react/components/matrix-actions/remove-button/remove-button.d.ts +9 -9
  127. package/typings/react/components/notifier.d.ts +11 -11
  128. package/typings/react/components/paneldynamic-actions/paneldynamic-add-btn.d.ts +12 -12
  129. package/typings/react/components/paneldynamic-actions/paneldynamic-next-btn.d.ts +6 -6
  130. package/typings/react/components/paneldynamic-actions/paneldynamic-prev-btn.d.ts +6 -6
  131. package/typings/react/components/paneldynamic-actions/paneldynamic-progress-text.d.ts +5 -5
  132. package/typings/react/components/paneldynamic-actions/paneldynamic-remove-btn.d.ts +6 -6
  133. package/typings/react/components/popup/popup.d.ts +42 -42
  134. package/typings/react/components/question-error.d.ts +10 -10
  135. package/typings/react/components/rating/rating-dropdown-item.d.ts +12 -12
  136. package/typings/react/components/rating/rating-item-smiley.d.ts +5 -5
  137. package/typings/react/components/rating/rating-item-star.d.ts +5 -5
  138. package/typings/react/components/rating/rating-item.d.ts +22 -22
  139. package/typings/react/components/skeleton.d.ts +4 -4
  140. package/typings/react/components/survey-actions/survey-nav-button.d.ts +8 -8
  141. package/typings/react/components/survey-header/logo-image.d.ts +11 -11
  142. package/typings/react/components/survey-header/survey-header.d.ts +17 -17
  143. package/typings/react/components/svg-icon/svg-icon.d.ts +9 -9
  144. package/typings/react/components/title/title-actions.d.ts +7 -7
  145. package/typings/react/components/title/title-content.d.ts +10 -10
  146. package/typings/react/components/title/title-element.d.ts +6 -6
  147. package/typings/react/custom-widget.d.ts +12 -12
  148. package/typings/react/dropdown-base.d.ts +25 -25
  149. package/typings/react/dropdown-item.d.ts +13 -13
  150. package/typings/react/dropdown-select.d.ts +6 -6
  151. package/typings/react/element-factory.d.ts +9 -9
  152. package/typings/react/element-header.d.ts +5 -5
  153. package/typings/react/element.d.ts +19 -19
  154. package/typings/react/flow-panel.d.ts +22 -22
  155. package/typings/react/image.d.ts +10 -10
  156. package/typings/react/imagepicker.d.ts +25 -25
  157. package/typings/react/page.d.ts +11 -11
  158. package/typings/react/panel-base.d.ts +25 -25
  159. package/typings/react/panel.d.ts +16 -16
  160. package/typings/react/progress.d.ts +9 -9
  161. package/typings/react/progressButtons.d.ts +19 -19
  162. package/typings/react/progressToc.d.ts +5 -5
  163. package/typings/react/rating-dropdown.d.ts +8 -8
  164. package/typings/react/react-popup-survey.d.ts +24 -24
  165. package/typings/react/reactSurvey.d.ts +41 -41
  166. package/typings/react/reactSurveyNavigationBase.d.ts +10 -10
  167. package/typings/react/reactquestion.d.ts +81 -81
  168. package/typings/react/reactquestion_buttongroup.d.ts +23 -23
  169. package/typings/react/reactquestion_checkbox.d.ts +33 -33
  170. package/typings/react/reactquestion_comment.d.ts +31 -31
  171. package/typings/react/reactquestion_custom.d.ts +13 -13
  172. package/typings/react/reactquestion_dropdown.d.ts +7 -7
  173. package/typings/react/reactquestion_element.d.ts +65 -65
  174. package/typings/react/reactquestion_empty.d.ts +8 -8
  175. package/typings/react/reactquestion_expression.d.ts +8 -8
  176. package/typings/react/reactquestion_factory.d.ts +8 -8
  177. package/typings/react/reactquestion_file.d.ts +14 -14
  178. package/typings/react/reactquestion_html.d.ts +13 -13
  179. package/typings/react/reactquestion_matrix.d.ts +33 -33
  180. package/typings/react/reactquestion_matrixdropdown.d.ts +4 -4
  181. package/typings/react/reactquestion_matrixdropdownbase.d.ts +29 -29
  182. package/typings/react/reactquestion_matrixdynamic.d.ts +20 -20
  183. package/typings/react/reactquestion_multipletext.d.ts +22 -22
  184. package/typings/react/reactquestion_paneldynamic.d.ts +28 -28
  185. package/typings/react/reactquestion_radiogroup.d.ts +32 -32
  186. package/typings/react/reactquestion_ranking.d.ts +30 -30
  187. package/typings/react/reactquestion_rating.d.ts +10 -10
  188. package/typings/react/reactquestion_tagbox.d.ts +10 -10
  189. package/typings/react/reactquestion_text.d.ts +11 -11
  190. package/typings/react/reactsurveymodel.d.ts +9 -9
  191. package/typings/react/reacttimerpanel.d.ts +11 -11
  192. package/typings/react/row.d.ts +21 -21
  193. package/typings/react/signaturepad.d.ts +11 -11
  194. package/typings/react/string-editor.d.ts +11 -11
  195. package/typings/react/string-viewer.d.ts +15 -15
  196. package/typings/react/svgbundle.d.ts +7 -7
  197. package/typings/react/tagbox-filter.d.ts +23 -23
  198. package/typings/react/tagbox-item.d.ts +10 -10
  199. package/typings/src/entries/core-export.d.ts +3 -0
  200. package/typings/src/entries/js-ui.d.ts +8 -0
package/README.md CHANGED
@@ -1,9 +1,7 @@
1
- # SurveyJS UI (React+pReact internally) Form Library
2
-
1
+ # SurveyJS Form Library UI for HTML/CSS/JavaScript Applications
3
2
 
4
3
  <video src="https://github.com/surveyjs/survey-library/assets/22315929/b24a68bf-d703-4096-835b-752f5f610aa6"></video>
5
4
 
6
-
7
5
  [![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)
8
6
  [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE)
9
7
  <a href="https://github.com/DevExpress/testcafe">
@@ -16,12 +14,14 @@
16
14
  <img alt="Closed issues" title="Closed Issues" src="https://img.shields.io/github/issues-closed/surveyjs/survey-library.svg">
17
15
  </a>
18
16
 
19
- 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 vanilla JS applications.
17
+ 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 vanilla JS applications or integrate them with any frontend framework.
20
18
 
21
19
  ## Features
22
20
 
23
21
  - Dynamic forms, surveys, polls, and quizzes for your JavaScript application
24
- - Integration with React, Angular, Vue, jQuery, and Knockout
22
+ - Integration with [React](https://www.npmjs.com/package/survey-react-ui), [Angular](https://www.npmjs.com/package/survey-angular-ui), and [Vue](https://www.npmjs.com/package/survey-vue3-ui)
23
+ - Possibility of integration with any other frontend framework
24
+ - Tiny and fast [Preact](https://preactjs.com/) library at the core
25
25
  - 20+ built-in question types and support for custom question types
26
26
  - Built-in themes and CSS customization
27
27
  - Answer validation
@@ -33,16 +33,16 @@ A free and open-source MIT-licensed JavaScript form builder library that allows
33
33
 
34
34
  ## Get Started
35
35
 
36
- To get started with SurveyJS UI Form Library, refer to the following tutorial: [Add a Survey to a jQuery Application](https://surveyjs.io/Documentation/Library?id=get-started-jquery).
36
+ To get started with SurveyJS Form Library UI for HTML/CSS/JavaScript applications, refer to the following tutorial: [Add a Survey to a JavaScript Application](https://surveyjs.io/form-library/documentation/get-started-html-css-javascript).
37
37
 
38
38
  ## Resources
39
39
 
40
40
  - [Website](https://surveyjs.io/)
41
- - [Documentation](https://surveyjs.io/Documentation/Library)
42
- - [Live Examples](https://surveyjs.io/form-library/examples/nps-question/jquery)
41
+ - [Documentation](https://surveyjs.io/form-library/documentation/overview)
42
+ - [Live Examples](https://surveyjs.io/form-library/examples/nps-question/)
43
43
  - [What's New](https://surveyjs.io/WhatsNew)
44
44
 
45
- ## Build SurveyJS UI Form Library from Sources
45
+ ## Build SurveyJS Form Library UI from Sources
46
46
 
47
47
  Refer to instructions in the root README file: [Build the SurveyJS Form Library from Sources](https://github.com/surveyjs/survey-library#build-the-surveyjs-form-library-from-sources).
48
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-js-ui",
3
- "version": "1.11.10",
3
+ "version": "1.11.12",
4
4
  "description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -20,9 +20,11 @@
20
20
  "type": "git",
21
21
  "url": "https://github.com/surveyjs/surveyjs.git"
22
22
  },
23
- "typings": "survey-js-ui.d.ts",
23
+ "typings": "./typings/src/entries/js-ui.d.ts",
24
24
  "dependencies": {},
25
25
  "peerDependencies": {
26
- "survey-core": "1.11.10"
26
+ "survey-core": "1.11.12",
27
+ "@types/react-dom": "*",
28
+ "@types/react": "*"
27
29
  }
28
30
  }
package/survey-js-ui.d.ts CHANGED
@@ -1,2 +1,2 @@
1
-
1
+
2
2
  export * from "./typings/entries/js-ui";