survey-creator-react 1.9.83 → 1.9.85

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 +89 -22
  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.85
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
  }
@@ -652,8 +652,7 @@ var ObjectSelectorComponent = /** @class */ (function (_super) {
652
652
  ObjectSelectorComponent.prototype.renderElement = function () {
653
653
  if (!this.model.isVisible)
654
654
  return null;
655
- return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-object-selector" },
656
- react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["List"], { model: this.model.list })));
655
+ return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["List"], { model: this.model.list }));
657
656
  };
658
657
  return ObjectSelectorComponent;
659
658
  }(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SurveyElementBase"]));
@@ -1010,7 +1009,7 @@ var SurveyQuestionLinkValue = /** @class */ (function (_super) {
1010
1009
  SurveyQuestionLinkValue.prototype.renderElement = function () {
1011
1010
  var _this = this;
1012
1011
  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 }),
1012
+ 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
1013
  this.renderClear()));
1015
1014
  };
1016
1015
  return SurveyQuestionLinkValue;
@@ -2660,6 +2659,70 @@ survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["ReactQuestionFactory"].Instance.re
2660
2659
  });
2661
2660
 
2662
2661
 
2662
+ /***/ }),
2663
+
2664
+ /***/ "./src/custom-questions/FileEditQuestion.tsx":
2665
+ /*!***************************************************!*\
2666
+ !*** ./src/custom-questions/FileEditQuestion.tsx ***!
2667
+ \***************************************************/
2668
+ /*! exports provided: SurveyQuestionFileEditor */
2669
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
2670
+
2671
+ "use strict";
2672
+ __webpack_require__.r(__webpack_exports__);
2673
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFileEditor", function() { return SurveyQuestionFileEditor; });
2674
+ /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./src/entries/helpers.ts");
2675
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
2676
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
2677
+ /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! survey-react-ui */ "survey-react-ui");
2678
+ /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__);
2679
+
2680
+
2681
+
2682
+ var SurveyQuestionFileEditor = /** @class */ (function (_super) {
2683
+ Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"])(SurveyQuestionFileEditor, _super);
2684
+ function SurveyQuestionFileEditor(props) {
2685
+ return _super.call(this, props) || this;
2686
+ }
2687
+ Object.defineProperty(SurveyQuestionFileEditor.prototype, "questionFile", {
2688
+ get: function () {
2689
+ return this.questionBase;
2690
+ },
2691
+ enumerable: false,
2692
+ configurable: true
2693
+ });
2694
+ SurveyQuestionFileEditor.prototype.renderInput = function () {
2695
+ var _this = this;
2696
+ return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"](react__WEBPACK_IMPORTED_MODULE_1__["Fragment"], null,
2697
+ 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); } })));
2698
+ };
2699
+ SurveyQuestionFileEditor.prototype.renderButtons = function () {
2700
+ return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("div", { className: this.questionFile.cssClasses.buttonsContainer },
2701
+ this.renderClearButton(),
2702
+ this.renderChooseButton()));
2703
+ };
2704
+ SurveyQuestionFileEditor.prototype.renderClearButton = function () {
2705
+ return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("button", { type: "button", className: this.questionFile.cssClasses.clearButton, disabled: this.questionFile.getIsClearButtonDisabled(), onClick: this.questionFile.doClean },
2706
+ 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 })));
2707
+ };
2708
+ SurveyQuestionFileEditor.prototype.renderChooseButton = function () {
2709
+ 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 },
2710
+ 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 }),
2711
+ 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 })));
2712
+ };
2713
+ SurveyQuestionFileEditor.prototype.renderElement = function () {
2714
+ 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 },
2715
+ this.renderInput(),
2716
+ this.renderButtons()));
2717
+ };
2718
+ return SurveyQuestionFileEditor;
2719
+ }(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SurveyQuestionText"]));
2720
+
2721
+ survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["ReactQuestionFactory"].Instance.registerQuestion("fileedit", function (props) {
2722
+ return react__WEBPACK_IMPORTED_MODULE_1__["createElement"](SurveyQuestionFileEditor, props);
2723
+ });
2724
+
2725
+
2663
2726
  /***/ }),
2664
2727
 
2665
2728
  /***/ "./src/custom-questions/SpinEditor.tsx":
@@ -2789,7 +2852,7 @@ var __spreadArrays = function () {
2789
2852
  /*!******************************!*\
2790
2853
  !*** ./src/entries/index.ts ***!
2791
2854
  \******************************/
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 */
2855
+ /*! 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
2856
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
2794
2857
 
2795
2858
  "use strict";
@@ -2942,32 +3005,35 @@ __webpack_require__.r(__webpack_exports__);
2942
3005
  /* harmony import */ var _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../custom-questions/ColorQuestion */ "./src/custom-questions/ColorQuestion.tsx");
2943
3006
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionColor", function() { return _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_44__["SurveyQuestionColor"]; });
2944
3007
 
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"]; });
3008
+ /* harmony import */ var _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../custom-questions/FileEditQuestion */ "./src/custom-questions/FileEditQuestion.tsx");
3009
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFileEditor", function() { return _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_45__["SurveyQuestionFileEditor"]; });
2948
3010
 
2949
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "localization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["localization"]; });
3011
+ /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
3012
+ /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_46___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_46__);
3013
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "editorLocalization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["editorLocalization"]; });
2950
3014
 
2951
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["settings"]; });
3015
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "localization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["localization"]; });
2952
3016
 
2953
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "svgBundle", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["svgBundle"]; });
3017
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["settings"]; });
2954
3018
 
2955
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogic", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["SurveyLogic"]; });
3019
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "svgBundle", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["svgBundle"]; });
2956
3020
 
2957
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogicUI", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["SurveyLogicUI"]; });
3021
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogic", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["SurveyLogic"]; });
2958
3022
 
2959
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEditorDefinition", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["SurveyQuestionEditorDefinition"]; });
3023
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogicUI", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["SurveyLogicUI"]; });
2960
3024
 
2961
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ToolboxToolViewModel", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["ToolboxToolViewModel"]; });
3025
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEditorDefinition", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["SurveyQuestionEditorDefinition"]; });
2962
3026
 
2963
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorCollection", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["PropertyGridEditorCollection"]; });
3027
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ToolboxToolViewModel", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["ToolboxToolViewModel"]; });
2964
3028
 
2965
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StylesManager", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_45__["StylesManager"]; });
3029
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorCollection", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["PropertyGridEditorCollection"]; });
2966
3030
 
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__);
3031
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StylesManager", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_46__["StylesManager"]; });
3032
+
3033
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! survey-core */ "survey-core");
3034
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_47___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_47__);
2969
3035
  var Version;
2970
- Version = "".concat("1.9.83");
3036
+ Version = "".concat("1.9.85");
2971
3037
  // import "@survey/creator/survey-creator-core.css";
2972
3038
 
2973
3039
 
@@ -3023,7 +3089,8 @@ Version = "".concat("1.9.83");
3023
3089
 
3024
3090
 
3025
3091
 
3026
- Object(survey_core__WEBPACK_IMPORTED_MODULE_46__["checkLibraryVersion"])("".concat("1.9.83"), "survey-creator-react");
3092
+
3093
+ Object(survey_core__WEBPACK_IMPORTED_MODULE_47__["checkLibraryVersion"])("".concat("1.9.85"), "survey-creator-react");
3027
3094
 
3028
3095
 
3029
3096
  /***/ }),