survey-creator-react 1.9.115 → 1.9.117

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-creator-react",
3
- "version": "1.9.115",
3
+ "version": "1.9.117",
4
4
  "description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -34,9 +34,9 @@
34
34
  }
35
35
  },
36
36
  "dependencies": {
37
- "survey-core": "1.9.115",
38
- "survey-react-ui": "1.9.115",
39
- "survey-creator-core": "1.9.115",
37
+ "survey-core": "1.9.117",
38
+ "survey-react-ui": "1.9.117",
39
+ "survey-creator-core": "1.9.117",
40
40
  "react": "^16.5.0 || ^17.0.1 || ^18.1.0",
41
41
  "react-dom": "^16.5.0 || ^17.0.1 || ^18.1.0"
42
42
  },
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator React v1.9.115
2
+ * SurveyJS Creator React v1.9.117
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
@@ -322,12 +322,13 @@ var ItemValueAdornerComponent = /** @class */ (function (_super) {
322
322
  react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["SvgIcon"], { className: "svc-item-value-controls__drag-icon", size: 24, iconName: "icon-drag-area-indicator", title: this.model.dragTooltip }))) : null,
323
323
  this.model.allowRemove ? Object(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["attachKey2click"])(react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("span", { className: "svc-item-value-controls__button svc-item-value-controls__remove", "aria-label": this.model.tooltip, onClick: function () { return _this.model.remove(_this.model); } },
324
324
  react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["SvgIcon"], { size: 16, iconName: "icon-remove_16x16", title: this.model.tooltip }))) : null));
325
+ var itemkey = this.props.element.key + (this.model.allowAdd ? "_new" : "");
325
326
  return (react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("div", { className: "svc-item-value-wrapper" +
326
327
  (this.model.allowAdd ? " svc-item-value--new" : "") +
327
328
  (this.model.isDragging ? " svc-item-value--dragging" : "") +
328
329
  (this.model.isDragDropGhost ? " svc-item-value--ghost" : "") +
329
330
  (this.model.isDragDropMoveDown ? " svc-item-value--movedown" : "") +
330
- (this.model.isDragDropMoveUp ? " svc-item-value--moveup" : ""), key: this.props.element.key, "data-sv-drop-target-item-value": this.model.isDraggable ? this.model.item.value : undefined, onPointerDown: function (event) { return _this.model.onPointerDown(event); } },
331
+ (this.model.isDragDropMoveUp ? " svc-item-value--moveup" : ""), key: itemkey, "data-sv-drop-target-item-value": this.model.isDraggable ? this.model.item.value : undefined, onPointerDown: function (event) { return _this.model.onPointerDown(event); } },
331
332
  react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("div", { className: "svc-item-value__ghost" }),
332
333
  react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("div", { className: "svc-item-value-controls", onBlur: this.onBlur }, button),
333
334
  react__WEBPACK_IMPORTED_MODULE_2___default.a.createElement("div", { className: "svc-item-value__item", onClick: function (event) { return _this.model.select(_this.model, event.nativeEvent); } }, this.props.element)));
@@ -847,6 +848,8 @@ __webpack_require__.r(__webpack_exports__);
847
848
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
848
849
  /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! survey-react-ui */ "survey-react-ui");
849
850
  /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__);
851
+ /* harmony import */ var _Search__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Search */ "./src/Search.tsx");
852
+
850
853
 
851
854
 
852
855
 
@@ -871,7 +874,10 @@ var PropertyGridComponent = /** @class */ (function (_super) {
871
874
  return _super.prototype.canRender.call(this);
872
875
  };
873
876
  PropertyGridComponent.prototype.renderElement = function () {
874
- return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["Survey"], { model: this.model.survey }));
877
+ var rootClassName = this.model.searchEnabled ? "spg-container spg-container_search" : "spg-container";
878
+ return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: rootClassName },
879
+ react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(_Search__WEBPACK_IMPORTED_MODULE_3__["SearchComponent"], { model: this.model.searchManager }),
880
+ react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["Survey"], { model: this.model.survey })));
875
881
  };
876
882
  return PropertyGridComponent;
877
883
  }(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SurveyElementBase"]));
@@ -1182,6 +1188,74 @@ var SurveyResultsByRow = /** @class */ (function (_super) {
1182
1188
 
1183
1189
 
1184
1190
 
1191
+ /***/ }),
1192
+
1193
+ /***/ "./src/Search.tsx":
1194
+ /*!************************!*\
1195
+ !*** ./src/Search.tsx ***!
1196
+ \************************/
1197
+ /*! exports provided: SearchComponent */
1198
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
1199
+
1200
+ "use strict";
1201
+ __webpack_require__.r(__webpack_exports__);
1202
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SearchComponent", function() { return SearchComponent; });
1203
+ /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./src/entries/helpers.ts");
1204
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
1205
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
1206
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! survey-core */ "survey-core");
1207
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_2__);
1208
+ /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! survey-react-ui */ "survey-react-ui");
1209
+ /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__);
1210
+
1211
+
1212
+
1213
+
1214
+ var SearchComponent = /** @class */ (function (_super) {
1215
+ Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"])(SearchComponent, _super);
1216
+ function SearchComponent(props) {
1217
+ var _this = _super.call(this, props) || this;
1218
+ _this.state = {
1219
+ filterString: _this.model.filterString || ""
1220
+ };
1221
+ return _this;
1222
+ }
1223
+ Object.defineProperty(SearchComponent.prototype, "model", {
1224
+ get: function () {
1225
+ return this.props.model;
1226
+ },
1227
+ enumerable: false,
1228
+ configurable: true
1229
+ });
1230
+ SearchComponent.prototype.getStateElement = function () {
1231
+ return this.model;
1232
+ };
1233
+ SearchComponent.prototype.renderElement = function () {
1234
+ var _this = this;
1235
+ if (!this.model.isVisible)
1236
+ return null;
1237
+ var onChange = function (e) {
1238
+ var root = survey_core__WEBPACK_IMPORTED_MODULE_2__["settings"].environment.root;
1239
+ if (e.target === root.activeElement) {
1240
+ _this.model.filterString = e.target.value;
1241
+ }
1242
+ };
1243
+ return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "spg-search-editor_container" },
1244
+ react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "spg-search-editor_search-icon" },
1245
+ react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["SvgIcon"], { iconName: "icon-search", size: "auto" })),
1246
+ react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("input", { type: "text", className: "spg-search-editor_input", "aria-label": this.model.filterStringPlaceholder, placeholder: this.model.filterStringPlaceholder, value: this.state.filterString, onChange: onChange }),
1247
+ react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "spg-search-editor_toolbar" },
1248
+ react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "spg-search-editor_toolbar-counter" }, this.model.matchCounterText),
1249
+ react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["SurveyActionBar"], { model: this.model.searchActionBar }))));
1250
+ };
1251
+ return SearchComponent;
1252
+ }(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["SurveyElementBase"]));
1253
+
1254
+ survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["ReactElementFactory"].Instance.registerElement("svc-search", function (props) {
1255
+ return react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(SearchComponent, props);
1256
+ });
1257
+
1258
+
1185
1259
  /***/ }),
1186
1260
 
1187
1261
  /***/ "./src/SideBar.tsx":
@@ -2366,6 +2440,7 @@ var QuestionDropdownAdornerComponent = /** @class */ (function (_super) {
2366
2440
  var textStyle = this.question.textStyle;
2367
2441
  return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-question__dropdown-choices--wrapper" },
2368
2442
  react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: "svc-question__dropdown-choices" }, (this.dropdownModel.getRenderedItems() || []).map(function (item, index) { return (react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", { className: _this.dropdownModel.getChoiceCss(), key: "editable_choice_".concat(index) }, survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["ReactSurveyElementsWrapper"].wrapItemValue(_this.question.survey, survey_react_ui__WEBPACK_IMPORTED_MODULE_3__["ReactElementFactory"].Instance.createElement(_this.dropdownModel.itemComponent, {
2443
+ key: item.value,
2369
2444
  question: _this.question,
2370
2445
  cssClasses: _this.question.cssClasses,
2371
2446
  isDisplayMode: true,
@@ -2828,7 +2903,7 @@ var SurveyQuestionColor = /** @class */ (function (_super) {
2828
2903
  var _this = this;
2829
2904
  return react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("label", { className: this.question.getSwatchCss(), style: this.question.getSwatchStyle() },
2830
2905
  react__WEBPACK_IMPORTED_MODULE_1__["createElement"](survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { iconName: this.question.cssClasses.swatchIcon, size: "auto" }),
2831
- react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("input", { type: "color", disabled: this.isDisplayMode, value: this.question.renderedColorValue, className: this.question.cssClasses.colorInput, onChange: function (event) { return _this.question.onColorInputChange(event.nativeEvent); } }));
2906
+ react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("input", { type: "color", disabled: this.isDisplayMode, value: this.question.renderedColorValue, className: this.question.cssClasses.colorInput, onChange: function (event) { return _this.question.onColorInputChange(event.nativeEvent); }, tabIndex: -1 }));
2832
2907
  };
2833
2908
  SurveyQuestionColor.prototype.renderDropdownAction = function () {
2834
2909
  return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"](react__WEBPACK_IMPORTED_MODULE_1__["Fragment"], null,
@@ -2888,7 +2963,7 @@ var SurveyQuestionFileEditor = /** @class */ (function (_super) {
2888
2963
  };
2889
2964
  SurveyQuestionFileEditor.prototype.renderFileInput = function () {
2890
2965
  var _this = this;
2891
- return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("input", { type: "file", disabled: this.isDisplayMode, 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: function (event) { return _this.questionFile.onFileInputChange(event.nativeEvent); } }));
2966
+ return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("input", { type: "file", disabled: this.isDisplayMode, 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, tabIndex: -1, onChange: function (event) { return _this.questionFile.onFileInputChange(event.nativeEvent); } }));
2892
2967
  };
2893
2968
  SurveyQuestionFileEditor.prototype.renderButtons = function () {
2894
2969
  return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("div", { className: this.questionFile.cssClasses.buttonsContainer },
@@ -2896,8 +2971,8 @@ var SurveyQuestionFileEditor = /** @class */ (function (_super) {
2896
2971
  this.renderChooseButton()));
2897
2972
  };
2898
2973
  SurveyQuestionFileEditor.prototype.renderClearButton = function () {
2899
- return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("button", { type: "button", className: this.questionFile.cssClasses.clearButton, disabled: this.questionFile.getIsClearButtonDisabled(), onClick: this.questionFile.doClean },
2900
- 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 })));
2974
+ return Object(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["attachKey2click"])((react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("button", { type: "button", className: this.questionFile.cssClasses.clearButton, disabled: this.questionFile.getIsClearButtonDisabled(), onClick: this.questionFile.doClean },
2975
+ 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 }))));
2901
2976
  };
2902
2977
  SurveyQuestionFileEditor.prototype.renderChooseButton = function () {
2903
2978
  var _this = this;
@@ -2968,9 +3043,9 @@ var SurveyQuestionSpinEditor = /** @class */ (function (_super) {
2968
3043
  SurveyQuestionSpinEditor.prototype.renderButtons = function () {
2969
3044
  var _this = this;
2970
3045
  return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("span", { className: this.question.cssClasses.buttonsContainer },
2971
- react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("button", { className: this.question.cssClasses.arrowButton, disabled: this.isDisplayMode, onMouseDown: this.question.onDownButtonMouseDown, onMouseUp: this.question.onButtonMouseUp, onMouseLeave: this.question.onButtonMouseLeave, onBlur: function (event) { return _this.question.onBlur(event.nativeEvent); }, onFocus: function (event) { return _this.question.onFocus(event.nativeEvent); } },
3046
+ react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("button", { tabIndex: -1, className: this.question.cssClasses.arrowButton, disabled: this.isDisplayMode, onMouseDown: this.question.onDownButtonMouseDown, onMouseUp: this.question.onButtonMouseUp, onMouseLeave: this.question.onButtonMouseLeave, onBlur: function (event) { return _this.question.onBlur(event.nativeEvent); }, onFocus: function (event) { return _this.question.onFocus(event.nativeEvent); } },
2972
3047
  react__WEBPACK_IMPORTED_MODULE_1__["createElement"](survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { iconName: this.question.cssClasses.decreaseButtonIcon, size: "auto" })),
2973
- react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("button", { className: this.question.cssClasses.arrowButton, disabled: this.isDisplayMode, onMouseDown: this.question.onUpButtonMouseDown, onMouseUp: this.question.onButtonMouseUp, onMouseLeave: this.question.onButtonMouseLeave, onBlur: function (event) { return _this.question.onBlur(event.nativeEvent); }, onFocus: function (event) { return _this.question.onFocus(event.nativeEvent); } },
3048
+ react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("button", { tabIndex: -1, className: this.question.cssClasses.arrowButton, disabled: this.isDisplayMode, onMouseDown: this.question.onUpButtonMouseDown, onMouseUp: this.question.onButtonMouseUp, onMouseLeave: this.question.onButtonMouseLeave, onBlur: function (event) { return _this.question.onBlur(event.nativeEvent); }, onFocus: function (event) { return _this.question.onFocus(event.nativeEvent); } },
2974
3049
  react__WEBPACK_IMPORTED_MODULE_1__["createElement"](survey_react_ui__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { iconName: this.question.cssClasses.increaseButtonIcon, size: "auto" }))));
2975
3050
  };
2976
3051
  return SurveyQuestionSpinEditor;
@@ -3110,7 +3185,7 @@ var __spreadArrays = function () {
3110
3185
  /*!******************************!*\
3111
3186
  !*** ./src/entries/index.ts ***!
3112
3187
  \******************************/
3113
- /*! exports provided: Version, SurveyCreatorComponent, SurveyCreator, RowWrapper, QuestionAdornerComponent, QuestionWrapperHeader, QuestionWrapperFooter, QuestionCarrayForwardBanner, 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, TabJsonEditorAceComponent, TabJsonEditorErrorsComponent, TabJsonEditorTextareaComponent, TabLogicAddButtonComponent, TabLogicComponent, TabPreviewTestSurveyAgainComponent, TabPreviewSurveyComponent, TabThemeSurveyComponent, TabTranslationComponent, SurveySimulator, ReactMouseEvent, ReactDragEvent, PropertyGridComponent, SurveyQuestionSpinEditor, SurveyQuestionColor, SurveyQuestionFileEditor, SurveyQuestionTextWithReset, editorLocalization, localization, settings, svgBundle, SurveyLogic, SurveyLogicUI, SurveyQuestionEditorDefinition, ToolboxToolViewModel, PropertyGridEditorCollection, StylesManager */
3188
+ /*! exports provided: Version, SurveyCreatorComponent, SurveyCreator, RowWrapper, QuestionAdornerComponent, QuestionWrapperHeader, QuestionWrapperFooter, QuestionCarrayForwardBanner, 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, TabJsonEditorAceComponent, TabJsonEditorErrorsComponent, TabJsonEditorTextareaComponent, TabLogicAddButtonComponent, TabLogicComponent, TabPreviewTestSurveyAgainComponent, TabPreviewSurveyComponent, TabThemeSurveyComponent, TabTranslationComponent, SurveySimulator, ReactMouseEvent, ReactDragEvent, PropertyGridComponent, SearchComponent, SurveyQuestionSpinEditor, SurveyQuestionColor, SurveyQuestionFileEditor, SurveyQuestionTextWithReset, editorLocalization, localization, settings, svgBundle, SurveyLogic, SurveyLogicUI, SurveyQuestionEditorDefinition, ToolboxToolViewModel, PropertyGridEditorCollection, StylesManager */
3114
3189
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3115
3190
 
3116
3191
  "use strict";
@@ -3262,46 +3337,49 @@ __webpack_require__.r(__webpack_exports__);
3262
3337
  /* empty/unused harmony star reexport *//* harmony import */ var _PropertyGrid__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../PropertyGrid */ "./src/PropertyGrid.tsx");
3263
3338
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridComponent", function() { return _PropertyGrid__WEBPACK_IMPORTED_MODULE_43__["PropertyGridComponent"]; });
3264
3339
 
3265
- /* harmony import */ var _tabs_JsonErrorItem__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../tabs/JsonErrorItem */ "./src/tabs/JsonErrorItem.tsx");
3266
- /* empty/unused harmony star reexport *//* harmony import */ var _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../custom-questions/SpinEditor */ "./src/custom-questions/SpinEditor.tsx");
3267
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionSpinEditor", function() { return _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_45__["SurveyQuestionSpinEditor"]; });
3340
+ /* harmony import */ var _Search__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../Search */ "./src/Search.tsx");
3341
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SearchComponent", function() { return _Search__WEBPACK_IMPORTED_MODULE_44__["SearchComponent"]; });
3268
3342
 
3269
- /* harmony import */ var _custom_questions_ColorItem__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../custom-questions/ColorItem */ "./src/custom-questions/ColorItem.tsx");
3270
- /* empty/unused harmony star reexport *//* harmony import */ var _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../custom-questions/ColorQuestion */ "./src/custom-questions/ColorQuestion.tsx");
3271
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionColor", function() { return _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_47__["SurveyQuestionColor"]; });
3343
+ /* harmony import */ var _tabs_JsonErrorItem__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../tabs/JsonErrorItem */ "./src/tabs/JsonErrorItem.tsx");
3344
+ /* empty/unused harmony star reexport *//* harmony import */ var _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../custom-questions/SpinEditor */ "./src/custom-questions/SpinEditor.tsx");
3345
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionSpinEditor", function() { return _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_46__["SurveyQuestionSpinEditor"]; });
3272
3346
 
3273
- /* harmony import */ var _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../custom-questions/FileEditQuestion */ "./src/custom-questions/FileEditQuestion.tsx");
3274
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFileEditor", function() { return _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_48__["SurveyQuestionFileEditor"]; });
3347
+ /* harmony import */ var _custom_questions_ColorItem__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../custom-questions/ColorItem */ "./src/custom-questions/ColorItem.tsx");
3348
+ /* empty/unused harmony star reexport *//* harmony import */ var _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../custom-questions/ColorQuestion */ "./src/custom-questions/ColorQuestion.tsx");
3349
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionColor", function() { return _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_48__["SurveyQuestionColor"]; });
3275
3350
 
3276
- /* harmony import */ var _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../custom-questions/TextWithResetQuestion */ "./src/custom-questions/TextWithResetQuestion.tsx");
3277
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTextWithReset", function() { return _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_49__["SurveyQuestionTextWithReset"]; });
3351
+ /* harmony import */ var _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../custom-questions/FileEditQuestion */ "./src/custom-questions/FileEditQuestion.tsx");
3352
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFileEditor", function() { return _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_49__["SurveyQuestionFileEditor"]; });
3278
3353
 
3279
- /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
3280
- /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_50___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_50__);
3281
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "editorLocalization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_50__["editorLocalization"]; });
3354
+ /* harmony import */ var _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../custom-questions/TextWithResetQuestion */ "./src/custom-questions/TextWithResetQuestion.tsx");
3355
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTextWithReset", function() { return _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_50__["SurveyQuestionTextWithReset"]; });
3282
3356
 
3283
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "localization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_50__["localization"]; });
3357
+ /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
3358
+ /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_51___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_51__);
3359
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "editorLocalization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["editorLocalization"]; });
3284
3360
 
3285
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_50__["settings"]; });
3361
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "localization", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["localization"]; });
3286
3362
 
3287
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "svgBundle", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_50__["svgBundle"]; });
3363
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["settings"]; });
3288
3364
 
3289
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogic", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_50__["SurveyLogic"]; });
3365
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "svgBundle", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["svgBundle"]; });
3290
3366
 
3291
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogicUI", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_50__["SurveyLogicUI"]; });
3367
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogic", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["SurveyLogic"]; });
3292
3368
 
3293
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEditorDefinition", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_50__["SurveyQuestionEditorDefinition"]; });
3369
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLogicUI", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["SurveyLogicUI"]; });
3294
3370
 
3295
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ToolboxToolViewModel", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_50__["ToolboxToolViewModel"]; });
3371
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEditorDefinition", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["SurveyQuestionEditorDefinition"]; });
3296
3372
 
3297
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorCollection", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_50__["PropertyGridEditorCollection"]; });
3373
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ToolboxToolViewModel", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["ToolboxToolViewModel"]; });
3298
3374
 
3299
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StylesManager", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_50__["StylesManager"]; });
3375
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PropertyGridEditorCollection", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["PropertyGridEditorCollection"]; });
3300
3376
 
3301
- /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! survey-core */ "survey-core");
3302
- /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_51___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_51__);
3377
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "StylesManager", function() { return survey_creator_core__WEBPACK_IMPORTED_MODULE_51__["StylesManager"]; });
3378
+
3379
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! survey-core */ "survey-core");
3380
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_52___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_52__);
3303
3381
  var Version;
3304
- Version = "".concat("1.9.115");
3382
+ Version = "".concat("1.9.117");
3305
3383
  // import "@survey/creator/survey-creator-core.css";
3306
3384
 
3307
3385
 
@@ -3346,6 +3424,7 @@ Version = "".concat("1.9.115");
3346
3424
 
3347
3425
 
3348
3426
 
3427
+
3349
3428
 
3350
3429
 
3351
3430
  //custom questions
@@ -3362,7 +3441,7 @@ Version = "".concat("1.9.115");
3362
3441
 
3363
3442
 
3364
3443
 
3365
- Object(survey_core__WEBPACK_IMPORTED_MODULE_51__["checkLibraryVersion"])("".concat("1.9.115"), "survey-creator-react");
3444
+ Object(survey_core__WEBPACK_IMPORTED_MODULE_52__["checkLibraryVersion"])("".concat("1.9.117"), "survey-creator-react");
3366
3445
 
3367
3446
 
3368
3447
  /***/ }),