survey-creator-react 1.9.83 → 1.9.84

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 (55) hide show
  1. package/package.json +4 -4
  2. package/survey-creator-react.d.ts +1 -824
  3. package/survey-creator-react.js +88 -20
  4. package/survey-creator-react.js.map +1 -1
  5. package/survey-creator-react.min.js +2 -2
  6. package/typings/ActionButton.d.ts +5 -0
  7. package/typings/ImageItemValueWrapper.d.ts +24 -0
  8. package/typings/ItemValueWrapper.d.ts +19 -0
  9. package/typings/LogoImage.d.ts +18 -0
  10. package/typings/MatrixCellWrapper.d.ts +19 -0
  11. package/typings/ModelElement.d.ts +8 -0
  12. package/typings/Navigation.d.ts +15 -0
  13. package/typings/ObjectSelector.d.ts +1 -0
  14. package/typings/PageNavigator.d.ts +25 -0
  15. package/typings/PropertyGrid.d.ts +14 -0
  16. package/typings/QuestionEditorContent.d.ts +17 -0
  17. package/typings/QuestionEmbeddedSurvey.d.ts +8 -0
  18. package/typings/QuestionLinkValue.d.ts +8 -0
  19. package/typings/Results.d.ts +23 -0
  20. package/typings/SideBar.d.ts +18 -0
  21. package/typings/StringEditor.d.ts +34 -0
  22. package/typings/SurveyCreator.d.ts +30 -0
  23. package/typings/SvgBundle.d.ts +7 -0
  24. package/typings/TabbedMenu.d.ts +26 -0
  25. package/typings/adorners/CellQuestion.d.ts +12 -0
  26. package/typings/adorners/CellQuestionDropdown.d.ts +12 -0
  27. package/typings/adorners/Page.d.ts +25 -0
  28. package/typings/adorners/Panel.d.ts +6 -0
  29. package/typings/adorners/Question.d.ts +25 -0
  30. package/typings/adorners/QuestionDropdown.d.ts +11 -0
  31. package/typings/adorners/QuestionFooter.d.ts +9 -0
  32. package/typings/adorners/QuestionHeader.d.ts +9 -0
  33. package/typings/adorners/QuestionImage.d.ts +11 -0
  34. package/typings/adorners/QuestionRating.d.ts +15 -0
  35. package/typings/adorners/QuestionWidget.d.ts +8 -0
  36. package/typings/adorners/Row.d.ts +18 -0
  37. package/typings/custom-questions/ColorQuestion.d.ts +12 -0
  38. package/typings/custom-questions/FileEditQuestion.d.ts +12 -0
  39. package/typings/custom-questions/SpinEditor.d.ts +11 -0
  40. package/typings/entries/index.d.ts +55 -0
  41. package/typings/events.d.ts +21 -0
  42. package/typings/tabs/Designer.d.ts +29 -0
  43. package/typings/tabs/Embed.d.ts +13 -0
  44. package/typings/tabs/JsonEditorAce.d.ts +16 -0
  45. package/typings/tabs/JsonEditorTextarea.d.ts +14 -0
  46. package/typings/tabs/Logic.d.ts +14 -0
  47. package/typings/tabs/Preview.d.ts +14 -0
  48. package/typings/tabs/SurveySimulator.d.ts +8 -0
  49. package/typings/tabs/Translation.d.ts +9 -0
  50. package/typings/tabs/TranslationLineSkeleton.d.ts +4 -0
  51. package/typings/tabs/logic-operator.d.ts +6 -0
  52. package/typings/toolbox/AdaptiveToolbox.d.ts +10 -0
  53. package/typings/toolbox/Toolbox.d.ts +15 -0
  54. package/typings/toolbox/ToolboxCategory.d.ts +19 -0
  55. package/typings/toolbox/ToolboxItem.d.ts +31 -0
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator React v1.9.83
2
+ * SurveyJS Creator React v1.9.84
3
3
  * (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * Github: https://github.com/surveyjs/survey-creator
5
5
  * License: https://surveyjs.io/Licenses#SurveyCreator
@@ -454,7 +454,7 @@ var MatrixCellAdornerComponent = /** @class */ (function (_super) {
454
454
  MatrixCellAdornerComponent.prototype.render = function () {
455
455
  var _this = this;
456
456
  var controls = null;
457
- if (!!this.model.question) {
457
+ if (!!this.model.isSupportCellEditor) {
458
458
  controls = react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-matrix-cell__question-controls" }, Object(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["attachKey2click"])(react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("span", { className: "svc-matrix-cell__question-controls-button", onClick: function () { return _this.model.editQuestion(_this.model); } },
459
459
  react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["SvgIcon"], { size: 24, iconName: "icon-edit" }))));
460
460
  }
@@ -1010,7 +1010,7 @@ var SurveyQuestionLinkValue = /** @class */ (function (_super) {
1010
1010
  SurveyQuestionLinkValue.prototype.renderElement = function () {
1011
1011
  var _this = this;
1012
1012
  return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(react__WEBPACK_IMPORTED_MODULE_1___default.a.Fragment, null,
1013
- react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(_ActionButton__WEBPACK_IMPORTED_MODULE_4__["ActionButton"], { classes: this.question.linkSetButtonCssClasses, click: function () { return _this.question.doLinkClick(); }, selected: this.question.isSelected, disabled: this.question.isReadOnly, text: this.question.linkValueText, title: this.question.tooltip }),
1013
+ react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(_ActionButton__WEBPACK_IMPORTED_MODULE_4__["ActionButton"], { classes: this.question.linkSetButtonCssClasses, click: function () { return _this.question.doLinkClick(); }, selected: this.question.isSelected, disabled: !this.question.isClickable, text: this.question.linkValueText, title: this.question.tooltip }),
1014
1014
  this.renderClear()));
1015
1015
  };
1016
1016
  return SurveyQuestionLinkValue;
@@ -2660,6 +2660,70 @@ survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["ReactQuestionFactory"].Instance.re
2660
2660
  });
2661
2661
 
2662
2662
 
2663
+ /***/ }),
2664
+
2665
+ /***/ "./src/custom-questions/FileEditQuestion.tsx":
2666
+ /*!***************************************************!*\
2667
+ !*** ./src/custom-questions/FileEditQuestion.tsx ***!
2668
+ \***************************************************/
2669
+ /*! exports provided: SurveyQuestionFileEditor */
2670
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
2671
+
2672
+ "use strict";
2673
+ __webpack_require__.r(__webpack_exports__);
2674
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFileEditor", function() { return SurveyQuestionFileEditor; });
2675
+ /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./src/entries/helpers.ts");
2676
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
2677
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
2678
+ /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! survey-react-ui */ "survey-react-ui");
2679
+ /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__);
2680
+
2681
+
2682
+
2683
+ var SurveyQuestionFileEditor = /** @class */ (function (_super) {
2684
+ Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"])(SurveyQuestionFileEditor, _super);
2685
+ function SurveyQuestionFileEditor(props) {
2686
+ return _super.call(this, props) || this;
2687
+ }
2688
+ Object.defineProperty(SurveyQuestionFileEditor.prototype, "questionFile", {
2689
+ get: function () {
2690
+ return this.questionBase;
2691
+ },
2692
+ enumerable: false,
2693
+ configurable: true
2694
+ });
2695
+ SurveyQuestionFileEditor.prototype.renderInput = function () {
2696
+ var _this = this;
2697
+ return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"](react__WEBPACK_IMPORTED_MODULE_1__["Fragment"], null,
2698
+ react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("input", { disabled: this.isDisplayMode, className: this.questionFile.cssClasses.control, ref: function (input) { return (_this.setControl(input)); }, autoComplete: "off", onBlur: function (event) { return _this.questionFile.onInputBlur(event.nativeEvent); }, onChange: function (event) { return _this.questionFile.onInputChange(event.nativeEvent); } })));
2699
+ };
2700
+ SurveyQuestionFileEditor.prototype.renderButtons = function () {
2701
+ return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("div", { className: this.questionFile.cssClasses.buttonsContainer },
2702
+ this.renderClearButton(),
2703
+ this.renderChooseButton()));
2704
+ };
2705
+ SurveyQuestionFileEditor.prototype.renderClearButton = function () {
2706
+ return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("button", { type: "button", className: this.questionFile.cssClasses.clearButton, disabled: this.questionFile.getIsClearButtonDisabled(), onClick: this.questionFile.doClean },
2707
+ react__WEBPACK_IMPORTED_MODULE_1__["createElement"](survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { iconName: this.questionFile.cssClasses.clearButtonIcon, size: "auto", title: this.questionFile.clearButtonCaption })));
2708
+ };
2709
+ SurveyQuestionFileEditor.prototype.renderChooseButton = function () {
2710
+ return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("label", { tabIndex: 0, role: "button", className: this.questionFile.cssClasses.chooseButton, htmlFor: this.questionFile.inputId, "aria-label": this.questionFile.chooseButtonCaption },
2711
+ react__WEBPACK_IMPORTED_MODULE_1__["createElement"](survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { iconName: this.questionFile.cssClasses.chooseButtonIcon, size: "auto", title: this.questionFile.chooseButtonCaption }),
2712
+ react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("input", { type: "file", tabIndex: -1, className: this.questionFile.cssClasses.fileInput, id: this.questionFile.inputId, "aria-required": this.questionFile.ariaRequired, "aria-label": this.questionFile.ariaLabel, "aria-invalid": this.questionFile.ariaInvalid, "aria-describedby": this.questionFile.ariaDescribedBy, multiple: false, title: this.questionFile.inputTitle, accept: this.questionFile.acceptedTypes, onChange: this.questionFile.doChange })));
2713
+ };
2714
+ SurveyQuestionFileEditor.prototype.renderElement = function () {
2715
+ return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("div", { className: this.questionFile.cssClasses.root, onDragEnter: this.questionFile.onDragEnter, onDragOver: this.questionFile.onDragOver, onDrop: this.questionFile.onDrop, onDragLeave: this.questionFile.onDragLeave },
2716
+ this.renderInput(),
2717
+ this.renderButtons()));
2718
+ };
2719
+ return SurveyQuestionFileEditor;
2720
+ }(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SurveyQuestionText"]));
2721
+
2722
+ survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["ReactQuestionFactory"].Instance.registerQuestion("fileedit", function (props) {
2723
+ return react__WEBPACK_IMPORTED_MODULE_1__["createElement"](SurveyQuestionFileEditor, props);
2724
+ });
2725
+
2726
+
2663
2727
  /***/ }),
2664
2728
 
2665
2729
  /***/ "./src/custom-questions/SpinEditor.tsx":
@@ -2789,7 +2853,7 @@ var __spreadArrays = function () {
2789
2853
  /*!******************************!*\
2790
2854
  !*** ./src/entries/index.ts ***!
2791
2855
  \******************************/
2792
- /*! exports provided: Version, SurveyCreatorComponent, SurveyCreator, RowWrapper, QuestionAdornerComponent, QuestionWrapperHeader, QuestionWrapperFooter, QuestionDropdownAdornerComponent, QuestionImageAdornerComponent, QuestionRatingAdornerComponent, QuestionWidgetAdornerComponent, CellQuestionAdornerComponent, CellQuestionDropdownAdornerComponent, CreatorSurveyPageComponent, PanelAdornerComponent, LogoImageComponent, SurveyQuestionLinkValue, SurveyElementEmbeddedSurvey, QuestionEditorContentComponent, ItemValueAdornerComponent, ImageItemValueAdornerComponent, MatrixCellAdornerComponent, SurveyResults, SurveyResultsByRow, SurveyCreatorToolboxTool, SurveyCreatorToolboxItem, SurveyCreatorToolboxCategory, Toolbox, AdaptiveToolbox, TabbedMenuComponent, TabbedMenuItemComponent, SurveyNavigation, SidebarComponent, TranslationLineSkeleton, ActionButton, SurveyLocStringEditor, SurveyLogicOpertor, TabDesignerComponent, TabEmbedComponent, TabJsonEditorAceComponent, TabJsonEditorTextareaComponent, TabLogicAddButtonComponent, TabLogicComponent, TabPreviewTestSurveyAgainComponent, TabPreviewSurveyComponent, TabTranslationComponent, SurveySimulator, ReactMouseEvent, ReactDragEvent, PropertyGridComponent, SurveyQuestionSpinEditor, SurveyQuestionColor, editorLocalization, localization, settings, svgBundle, SurveyLogic, SurveyLogicUI, SurveyQuestionEditorDefinition, ToolboxToolViewModel, PropertyGridEditorCollection, StylesManager */
2856
+ /*! exports provided: Version, SurveyCreatorComponent, SurveyCreator, RowWrapper, QuestionAdornerComponent, QuestionWrapperHeader, QuestionWrapperFooter, QuestionDropdownAdornerComponent, QuestionImageAdornerComponent, QuestionRatingAdornerComponent, QuestionWidgetAdornerComponent, CellQuestionAdornerComponent, CellQuestionDropdownAdornerComponent, CreatorSurveyPageComponent, PanelAdornerComponent, LogoImageComponent, SurveyQuestionLinkValue, SurveyElementEmbeddedSurvey, QuestionEditorContentComponent, ItemValueAdornerComponent, ImageItemValueAdornerComponent, MatrixCellAdornerComponent, SurveyResults, SurveyResultsByRow, SurveyCreatorToolboxTool, SurveyCreatorToolboxItem, SurveyCreatorToolboxCategory, Toolbox, AdaptiveToolbox, TabbedMenuComponent, TabbedMenuItemComponent, SurveyNavigation, SidebarComponent, TranslationLineSkeleton, ActionButton, SurveyLocStringEditor, SurveyLogicOpertor, TabDesignerComponent, TabEmbedComponent, TabJsonEditorAceComponent, TabJsonEditorTextareaComponent, TabLogicAddButtonComponent, TabLogicComponent, TabPreviewTestSurveyAgainComponent, TabPreviewSurveyComponent, TabTranslationComponent, SurveySimulator, ReactMouseEvent, ReactDragEvent, PropertyGridComponent, SurveyQuestionSpinEditor, SurveyQuestionColor, SurveyQuestionFileEditor, editorLocalization, localization, settings, svgBundle, SurveyLogic, SurveyLogicUI, SurveyQuestionEditorDefinition, ToolboxToolViewModel, PropertyGridEditorCollection, StylesManager */
2793
2857
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
2794
2858
 
2795
2859
  "use strict";
@@ -2942,32 +3006,35 @@ __webpack_require__.r(__webpack_exports__);
2942
3006
  /* harmony import */ var _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../custom-questions/ColorQuestion */ "./src/custom-questions/ColorQuestion.tsx");
2943
3007
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionColor", function() { return _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_44__["SurveyQuestionColor"]; });
2944
3008
 
2945
- /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
2946
- /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_45___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_45__);
2947
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "editorLocalization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["editorLocalization"]; });
3009
+ /* harmony import */ var _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../custom-questions/FileEditQuestion */ "./src/custom-questions/FileEditQuestion.tsx");
3010
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFileEditor", function() { return _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_45__["SurveyQuestionFileEditor"]; });
2948
3011
 
2949
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "localization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["localization"]; });
3012
+ /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
3013
+ /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_46___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_46__);
3014
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "editorLocalization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["editorLocalization"]; });
2950
3015
 
2951
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["settings"]; });
3016
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "localization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["localization"]; });
2952
3017
 
2953
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "svgBundle", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["svgBundle"]; });
3018
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["settings"]; });
2954
3019
 
2955
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogic", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["SurveyLogic"]; });
3020
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "svgBundle", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["svgBundle"]; });
2956
3021
 
2957
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogicUI", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["SurveyLogicUI"]; });
3022
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogic", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["SurveyLogic"]; });
2958
3023
 
2959
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEditorDefinition", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["SurveyQuestionEditorDefinition"]; });
3024
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogicUI", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["SurveyLogicUI"]; });
2960
3025
 
2961
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ToolboxToolViewModel", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["ToolboxToolViewModel"]; });
3026
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEditorDefinition", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["SurveyQuestionEditorDefinition"]; });
2962
3027
 
2963
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorCollection", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["PropertyGridEditorCollection"]; });
3028
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ToolboxToolViewModel", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["ToolboxToolViewModel"]; });
2964
3029
 
2965
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StylesManager", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["StylesManager"]; });
3030
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorCollection", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorCollection"]; });
2966
3031
 
2967
- /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! survey-core */ "survey-core");
2968
- /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_46___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_46__);
3032
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StylesManager", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["StylesManager"]; });
3033
+
3034
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! survey-core */ "survey-core");
3035
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_47___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_47__);
2969
3036
  var Version;
2970
- Version = "".concat("1.9.83");
3037
+ Version = "".concat("1.9.84");
2971
3038
  // import "@survey/creator/survey-creator-core.css";
2972
3039
 
2973
3040
 
@@ -3023,7 +3090,8 @@ Version = "".concat("1.9.83");
3023
3090
 
3024
3091
 
3025
3092
 
3026
- Object(survey_core__WEBPACK_IMPORTED_MODULE_46__["checkLibraryVersion"])("".concat("1.9.83"), "survey-creator-react");
3093
+
3094
+ Object(survey_core__WEBPACK_IMPORTED_MODULE_47__["checkLibraryVersion"])("".concat("1.9.84"), "survey-creator-react");
3027
3095
 
3028
3096
 
3029
3097
  /***/ }),