survey-react-ui 1.12.21 → 1.12.23
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/index.html +22 -0
- package/package.json +2 -2
- package/survey-react-ui.js +6 -4
- package/survey-react-ui.js.map +1 -1
- package/survey-react-ui.min.js +4 -4
- package/survey-react-ui.min.js.LICENSE.txt +493 -0
- package/typings/entries/index.d.ts +2 -0
- package/typings/entries/react-ui-model.d.ts +86 -84
- package/typings/src/boolean-checkbox.d.ts +6 -0
- package/typings/src/boolean-radio.d.ts +8 -0
- package/typings/src/boolean.d.ts +17 -0
- package/typings/src/components/action-bar/action-bar-item-dropdown.d.ts +9 -0
- package/typings/src/components/action-bar/action-bar-item.d.ts +25 -0
- package/typings/src/components/action-bar/action-bar-separator.d.ts +5 -0
- package/typings/src/components/action-bar/action-bar.d.ts +21 -0
- package/typings/src/components/brand-info.d.ts +4 -0
- package/typings/src/components/character-counter.d.ts +11 -0
- package/typings/src/components/components-container.d.ts +4 -0
- package/typings/src/components/file/file-choose-button.d.ts +8 -0
- package/typings/src/components/file/file-item.d.ts +13 -0
- package/typings/src/components/file/file-page.d.ts +11 -0
- package/typings/src/components/file/file-preview.d.ts +11 -0
- package/typings/src/components/header.d.ts +22 -0
- package/typings/src/components/list/list-item-content.d.ts +14 -0
- package/typings/src/components/list/list-item-group.d.ts +14 -0
- package/typings/src/components/list/list-item.d.ts +16 -0
- package/typings/src/components/list/list.d.ts +23 -0
- package/typings/src/components/loading-indicator.d.ts +4 -0
- package/typings/src/components/matrix/row.d.ts +20 -0
- package/typings/src/components/matrix-actions/detail-button/detail-button.d.ts +12 -0
- package/typings/src/components/matrix-actions/drag-drop-icon/drag-drop-icon.d.ts +7 -0
- package/typings/src/components/matrix-actions/remove-button/remove-button.d.ts +9 -0
- package/typings/src/components/notifier.d.ts +11 -0
- package/typings/src/components/paneldynamic-actions/paneldynamic-add-btn.d.ts +12 -0
- package/typings/src/components/paneldynamic-actions/paneldynamic-next-btn.d.ts +6 -0
- package/typings/src/components/paneldynamic-actions/paneldynamic-prev-btn.d.ts +6 -0
- package/typings/src/components/paneldynamic-actions/paneldynamic-progress-text.d.ts +5 -0
- package/typings/src/components/paneldynamic-actions/paneldynamic-remove-btn.d.ts +6 -0
- package/typings/src/components/popup/popup-modal.d.ts +23 -0
- package/typings/src/components/popup/popup.d.ts +39 -0
- package/typings/src/components/question-error.d.ts +10 -0
- package/typings/src/components/rating/rating-dropdown-item.d.ts +12 -0
- package/typings/src/components/rating/rating-item-smiley.d.ts +5 -0
- package/typings/src/components/rating/rating-item-star.d.ts +5 -0
- package/typings/src/components/rating/rating-item.d.ts +22 -0
- package/typings/src/components/skeleton.d.ts +4 -0
- package/typings/src/components/survey-actions/survey-nav-button.d.ts +8 -0
- package/typings/src/components/survey-header/logo-image.d.ts +11 -0
- package/typings/src/components/survey-header/survey-header.d.ts +17 -0
- package/typings/src/components/svg-icon/svg-icon.d.ts +9 -0
- package/typings/src/components/text-area.d.ts +17 -0
- package/typings/src/components/title/title-actions.d.ts +7 -0
- package/typings/src/components/title/title-content.d.ts +10 -0
- package/typings/src/components/title/title-element.d.ts +7 -0
- package/typings/src/custom-widget.d.ts +12 -0
- package/typings/src/dropdown-base.d.ts +26 -0
- package/typings/src/dropdown-item.d.ts +14 -0
- package/typings/src/dropdown-select.d.ts +6 -0
- package/typings/src/element-factory.d.ts +9 -0
- package/typings/src/element-header.d.ts +5 -0
- package/typings/src/element.d.ts +19 -0
- package/typings/src/flow-panel.d.ts +22 -0
- package/typings/src/image.d.ts +10 -0
- package/typings/src/imagepicker.d.ts +25 -0
- package/typings/src/page.d.ts +11 -0
- package/typings/src/panel-base.d.ts +25 -0
- package/typings/src/panel.d.ts +16 -0
- package/typings/src/progress.d.ts +9 -0
- package/typings/src/progressButtons.d.ts +19 -0
- package/typings/src/progressToc.d.ts +5 -0
- package/typings/src/rating-dropdown.d.ts +8 -0
- package/typings/src/react-popup-survey.d.ts +24 -0
- package/typings/src/reactSurvey.d.ts +39 -0
- package/typings/src/reactSurveyNavigationBase.d.ts +10 -0
- package/typings/src/reactquestion.d.ts +82 -0
- package/typings/src/reactquestion_buttongroup.d.ts +23 -0
- package/typings/src/reactquestion_checkbox.d.ts +37 -0
- package/typings/src/reactquestion_comment.d.ts +18 -0
- package/typings/src/reactquestion_custom.d.ts +13 -0
- package/typings/src/reactquestion_dropdown.d.ts +7 -0
- package/typings/src/reactquestion_element.d.ts +67 -0
- package/typings/src/reactquestion_empty.d.ts +8 -0
- package/typings/src/reactquestion_expression.d.ts +8 -0
- package/typings/src/reactquestion_factory.d.ts +8 -0
- package/typings/src/reactquestion_file.d.ts +14 -0
- package/typings/src/reactquestion_html.d.ts +13 -0
- package/typings/src/reactquestion_matrix.d.ts +33 -0
- package/typings/src/reactquestion_matrixdropdown.d.ts +4 -0
- package/typings/src/reactquestion_matrixdropdownbase.d.ts +30 -0
- package/typings/src/reactquestion_matrixdynamic.d.ts +20 -0
- package/typings/src/reactquestion_multipletext.d.ts +22 -0
- package/typings/src/reactquestion_paneldynamic.d.ts +28 -0
- package/typings/src/reactquestion_radiogroup.d.ts +36 -0
- package/typings/src/reactquestion_ranking.d.ts +30 -0
- package/typings/src/reactquestion_rating.d.ts +10 -0
- package/typings/src/reactquestion_tagbox.d.ts +10 -0
- package/typings/src/reactquestion_text.d.ts +11 -0
- package/typings/src/reactsurveymodel.d.ts +9 -0
- package/typings/src/reacttimerpanel.d.ts +11 -0
- package/typings/src/row.d.ts +21 -0
- package/typings/src/signaturepad.d.ts +11 -0
- package/typings/src/string-editor.d.ts +11 -0
- package/typings/src/string-viewer.d.ts +15 -0
- package/typings/src/svgbundle.d.ts +9 -0
- package/typings/src/tagbox-filter.d.ts +23 -0
- package/typings/src/tagbox-item.d.ts +10 -0
package/index.html
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<title>Welcome to React</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
|
|
8
|
+
|
|
9
|
+
<script src="https://unpkg.com/react@16.5.0/umd/react.development.js"></script>
|
|
10
|
+
<script src="https://unpkg.com/react-dom@16.5.0/umd/react-dom.development.js"></script>
|
|
11
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.js"></script>
|
|
12
|
+
<script src="./node_modules/survey-core/survey.core.js"></script>
|
|
13
|
+
<link rel="stylesheet" href="./node_modules/survey-core/default.css" />
|
|
14
|
+
</head>
|
|
15
|
+
|
|
16
|
+
<body spellcheck="false">
|
|
17
|
+
<div id="surveyElement" style="position: fixed; top: 0; left: 0; bottom: 0; right: 0;"></div>
|
|
18
|
+
<div id="surveyResultElement"></div>
|
|
19
|
+
<script type="text/babel" src="./index.js"></script>
|
|
20
|
+
<script defer src="survey-react-ui.js"></script></body>
|
|
21
|
+
|
|
22
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-react-ui",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.23",
|
|
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",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"typings": "./typings/src/entries/react-ui.d.ts",
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"survey-core": "1.12.
|
|
24
|
+
"survey-core": "1.12.23",
|
|
25
25
|
"react": "^16.5.0 || ^17.0.1 || ^18.2.0 || ^19.0.0",
|
|
26
26
|
"react-dom": "^16.5.0 || ^17.0.1 || ^18.2.0 || ^19.0.0"
|
|
27
27
|
}
|
package/survey-react-ui.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - Survey JavaScript library v1.12.
|
|
2
|
+
* surveyjs - Survey JavaScript library v1.12.23
|
|
3
3
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
5
5
|
*/
|
|
@@ -110,7 +110,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
110
110
|
/***/ (function(module, exports, __webpack_require__) {
|
|
111
111
|
|
|
112
112
|
/*!
|
|
113
|
-
* surveyjs - Survey JavaScript library v1.12.
|
|
113
|
+
* surveyjs - Survey JavaScript library v1.12.23
|
|
114
114
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
115
115
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
116
116
|
*/
|
|
@@ -1043,7 +1043,7 @@ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\
|
|
|
1043
1043
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1044
1044
|
|
|
1045
1045
|
/*!
|
|
1046
|
-
* surveyjs - Survey JavaScript library v1.12.
|
|
1046
|
+
* surveyjs - Survey JavaScript library v1.12.23
|
|
1047
1047
|
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
1048
1048
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
1049
1049
|
*/
|
|
@@ -9110,6 +9110,8 @@ var reactquestion_paneldynamic_SurveyQuestionPanelDynamic = /** @class */ (funct
|
|
|
9110
9110
|
var navV2 = this.renderNavigatorV2();
|
|
9111
9111
|
var noEntriesPlaceholder = this.renderPlaceholder();
|
|
9112
9112
|
return (external_root_React_commonjs2_react_commonjs_react_amd_react_["createElement"]("div", { className: this.question.cssClasses.root },
|
|
9113
|
+
this.question.hasTabbedMenu ? external_root_React_commonjs2_react_commonjs_react_amd_react_["createElement"]("div", { className: this.question.getTabsContainerCss() },
|
|
9114
|
+
external_root_React_commonjs2_react_commonjs_react_amd_react_["createElement"](action_bar_SurveyActionBar, { model: this.question.tabbedMenu })) : null,
|
|
9113
9115
|
noEntriesPlaceholder,
|
|
9114
9116
|
navTop,
|
|
9115
9117
|
external_root_React_commonjs2_react_commonjs_react_amd_react_["createElement"]("div", { className: this.question.cssClasses.panelsContainer }, panels),
|
|
@@ -11314,7 +11316,7 @@ ReactElementFactory.Instance.registerElement(external_root_Survey_commonjs2_surv
|
|
|
11314
11316
|
|
|
11315
11317
|
|
|
11316
11318
|
|
|
11317
|
-
Object(external_root_Survey_commonjs2_survey_core_commonjs_survey_core_amd_survey_core_["checkLibraryVersion"])("" + "1.12.
|
|
11319
|
+
Object(external_root_Survey_commonjs2_survey_core_commonjs_survey_core_amd_survey_core_["checkLibraryVersion"])("" + "1.12.23", "survey-react-ui");
|
|
11318
11320
|
|
|
11319
11321
|
|
|
11320
11322
|
/***/ }),
|