survey-creator-react 1.12.11 → 1.12.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.
package/index.html CHANGED
@@ -35,7 +35,7 @@
35
35
 
36
36
  <body>
37
37
  <noscript>You need to enable JavaScript to run this app.</noscript>
38
- <div id="root" style="position: fixed; top: 0; left: 0; right: 0; bottom: 0;"></div>
38
+ <div id="root" style="position: fixed; top: 0px; left: 0; right: 0; bottom: 0;"></div>
39
39
  <script defer src="survey-creator-react.js"></script></body>
40
40
  <script src="index.js" type="text/babel"></script>
41
41
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-creator-react",
3
- "version": "1.12.11",
3
+ "version": "1.12.12",
4
4
  "description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -29,9 +29,9 @@
29
29
  "ace-builds": "^1.4.12",
30
30
  "react": "^16.5.0 || ^17.0.1 || ^18.1.0",
31
31
  "react-dom": "^16.5.0 || ^17.0.1 || ^18.1.0",
32
- "survey-core": "1.12.11",
33
- "survey-react-ui": "1.12.11",
34
- "survey-creator-core": "1.12.11"
32
+ "survey-core": "1.12.12",
33
+ "survey-react-ui": "1.12.12",
34
+ "survey-creator-core": "1.12.12"
35
35
  },
36
36
  "peerDependenciesMeta": {
37
37
  "ace-builds": {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator React v1.12.11
2
+ * SurveyJS Creator React v1.12.12
3
3
  * (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * Github: https://github.com/surveyjs/survey-creator
5
5
  * License: https://surveyjs.io/Licenses#SurveyCreator
@@ -2648,6 +2648,63 @@ survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.ReactElementFactory.Instance.regist
2648
2648
  });
2649
2649
 
2650
2650
 
2651
+ /***/ }),
2652
+
2653
+ /***/ "./src/components/Scroll.tsx":
2654
+ /*!***********************************!*\
2655
+ !*** ./src/components/Scroll.tsx ***!
2656
+ \***********************************/
2657
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
2658
+
2659
+ __webpack_require__.r(__webpack_exports__);
2660
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
2661
+ /* harmony export */ ScrollComponent: () => (/* binding */ ScrollComponent)
2662
+ /* harmony export */ });
2663
+ /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./src/entries/helpers.ts");
2664
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
2665
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
2666
+ /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
2667
+ /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_2__);
2668
+ /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! survey-react-ui */ "survey-react-ui");
2669
+ /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__);
2670
+
2671
+
2672
+
2673
+
2674
+ var ScrollComponent = /** @class */ (function (_super) {
2675
+ (0,tslib__WEBPACK_IMPORTED_MODULE_0__.__extends)(ScrollComponent, _super);
2676
+ function ScrollComponent(props) {
2677
+ var _this = _super.call(this, props) || this;
2678
+ _this.rootRef = react__WEBPACK_IMPORTED_MODULE_1__.createRef();
2679
+ _this.model = new survey_creator_core__WEBPACK_IMPORTED_MODULE_2__.ScrollViewModel();
2680
+ return _this;
2681
+ }
2682
+ ScrollComponent.prototype.componentDidMount = function () {
2683
+ var container = this.rootRef.current;
2684
+ if (!container)
2685
+ return;
2686
+ this.model.setRootElement(container);
2687
+ };
2688
+ ScrollComponent.prototype.componentWillUnmount = function () {
2689
+ this.model.unsubscribeRootElement();
2690
+ this.model.setRootElement(undefined);
2691
+ };
2692
+ ScrollComponent.prototype.render = function () {
2693
+ var _this = this;
2694
+ return react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { ref: this.rootRef, className: "svc-scroll__wrapper" },
2695
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-scroll__scroller sv-drag-target-skipped", onScroll: function () { return _this.model.onScrollContainer(); } },
2696
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-scroll__container" }, this.props.children)),
2697
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-scroll__scrollbar", onScroll: function () { return _this.model.onScrollScrollbar(); } },
2698
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-scroll__scrollbar-sizer" })));
2699
+ };
2700
+ return ScrollComponent;
2701
+ }(react__WEBPACK_IMPORTED_MODULE_1__.Component));
2702
+
2703
+ survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.ReactElementFactory.Instance.registerElement("svc-scroll", function (props) {
2704
+ return react__WEBPACK_IMPORTED_MODULE_1__.createElement(ScrollComponent, props);
2705
+ });
2706
+
2707
+
2651
2708
  /***/ }),
2652
2709
 
2653
2710
  /***/ "./src/components/Search.tsx":
@@ -3333,6 +3390,8 @@ __webpack_require__.r(__webpack_exports__);
3333
3390
  /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! survey-react-ui */ "survey-react-ui");
3334
3391
  /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__);
3335
3392
  /* harmony import */ var _components_Search__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../components/Search */ "./src/components/Search.tsx");
3393
+ /* harmony import */ var _components_Scroll__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../components/Scroll */ "./src/components/Scroll.tsx");
3394
+
3336
3395
 
3337
3396
 
3338
3397
 
@@ -3360,7 +3419,8 @@ var PropertyGridComponent = /** @class */ (function (_super) {
3360
3419
  PropertyGridComponent.prototype.renderElement = function () {
3361
3420
  return (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: this.model.rootCss },
3362
3421
  react__WEBPACK_IMPORTED_MODULE_1__.createElement(_components_Search__WEBPACK_IMPORTED_MODULE_3__.SearchComponent, { model: this.model.searchManager }),
3363
- react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.Survey, { model: this.model.survey })));
3422
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement(_components_Scroll__WEBPACK_IMPORTED_MODULE_4__.ScrollComponent, null,
3423
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.Survey, { model: this.model.survey }))));
3364
3424
  };
3365
3425
  return PropertyGridComponent;
3366
3426
  }(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.SurveyElementBase));
@@ -3879,7 +3939,7 @@ var TabDesignerComponent = /** @class */ (function (_super) {
3879
3939
  var _this = this;
3880
3940
  var designerTabClassName = "svc-tab-designer " + this.model.getRootCss();
3881
3941
  return (react__WEBPACK_IMPORTED_MODULE_1__.createElement(react__WEBPACK_IMPORTED_MODULE_1__.Fragment, null,
3882
- react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-flex-column" }, this.model.isToolboxVisible ? survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.ReactElementFactory.Instance.createElement("svc-adaptive-toolbox", { model: this.creator }) : null),
3942
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-flex-column" }, this.model.isToolboxVisible ? survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.ReactElementFactory.Instance.createElement("svc-toolbox", { model: this.creator }) : null),
3883
3943
  react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: designerTabClassName, onClick: function () { return _this.model.clickDesigner(); } },
3884
3944
  react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-tab-designer_content" }, this.model.showPlaceholder ? this.renderPlaceHolder() : this.renderTabContent()))));
3885
3945
  };
@@ -4669,9 +4729,11 @@ __webpack_require__.r(__webpack_exports__);
4669
4729
  /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_2__);
4670
4730
  /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! survey-react-ui */ "survey-react-ui");
4671
4731
  /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__);
4672
- /* harmony import */ var _Toolbox__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Toolbox */ "./src/toolbox/Toolbox.tsx");
4673
- /* harmony import */ var _ToolboxItem__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ToolboxItem */ "./src/toolbox/ToolboxItem.tsx");
4674
- /* harmony import */ var _components_Search__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../components/Search */ "./src/components/Search.tsx");
4732
+ /* harmony import */ var _ToolboxItem__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ToolboxItem */ "./src/toolbox/ToolboxItem.tsx");
4733
+ /* harmony import */ var _components_Search__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../components/Search */ "./src/components/Search.tsx");
4734
+ /* harmony import */ var _components_Scroll__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../components/Scroll */ "./src/components/Scroll.tsx");
4735
+ /* harmony import */ var _ToolboxCategory__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ToolboxCategory */ "./src/toolbox/ToolboxCategory.tsx");
4736
+
4675
4737
 
4676
4738
 
4677
4739
 
@@ -4696,121 +4758,71 @@ var AdaptiveToolbox = /** @class */ (function (_super) {
4696
4758
  };
4697
4759
  AdaptiveToolbox.prototype.componentWillUnmount = function () {
4698
4760
  this.manager && (this.manager.dispose());
4699
- this.toolbox.unsubscribeRootElement();
4700
4761
  this.toolbox.setRootElement(undefined);
4701
4762
  _super.prototype.componentWillUnmount.call(this);
4702
4763
  };
4703
- AdaptiveToolbox.prototype.renderSearch = function () {
4704
- var searchButton = this.toolbox.isCompactRendered ?
4705
- react__WEBPACK_IMPORTED_MODULE_1__.createElement(react__WEBPACK_IMPORTED_MODULE_1__.Fragment, null,
4706
- react__WEBPACK_IMPORTED_MODULE_1__.createElement(_ToolboxItem__WEBPACK_IMPORTED_MODULE_5__.SurveyCreatorToolboxTool, { item: this.toolbox.searchItem, creator: this.creator, parentModel: this.toolbox, isCompact: this.toolbox.isCompactRendered, key: "searchitem" })) :
4707
- null;
4708
- return (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__search-container" },
4709
- searchButton,
4710
- react__WEBPACK_IMPORTED_MODULE_1__.createElement(_components_Search__WEBPACK_IMPORTED_MODULE_6__.SearchComponent, { model: this.toolbox.searchManager }),
4711
- react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__category-separator svc-toolbox__category-separator--search" })));
4712
- };
4713
- AdaptiveToolbox.prototype.render = function () {
4714
- var _this = this;
4715
- if (!this.toolbox.hasActions)
4716
- return null;
4717
- var search = this.toolbox.showSearch ? this.renderSearch() : null;
4718
- var placeholder = this.toolbox.showPlaceholder ? react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__placeholder" }, this.toolbox.toolboxNoResultsFound) : null;
4719
- return (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { ref: this.rootRef, className: this.toolbox.classNames },
4720
- react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { onBlur: function (e) { return _this.toolbox.focusOut(e); }, className: "svc-toolbox__panel" },
4721
- search,
4722
- react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { onBlur: function (e) { return _this.toolbox.focusOut(e); }, className: "svc-toolbox__scroll-wrapper" },
4723
- react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__scroller sv-drag-target-skipped", onScroll: function (event) { return _this.toolbox.onScroll(_this.toolbox, event); } },
4724
- placeholder,
4725
- react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__container" }, (this.toolbox.showInSingleCategory) ?
4726
- (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__category" }, this.renderItems(this.toolbox.renderedActions, this.toolbox.isCompactRendered)))
4727
- : this.renderCategories())),
4728
- react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__scrollbar", onScroll: function (event) { return _this.toolbox.onScrollbarScroll(event.nativeEvent); } },
4729
- react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__scrollbar-sizer" }))))));
4730
- };
4731
- return AdaptiveToolbox;
4732
- }(_Toolbox__WEBPACK_IMPORTED_MODULE_4__.Toolbox));
4733
-
4734
- survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.ReactElementFactory.Instance.registerElement("svc-adaptive-toolbox", function (props) {
4735
- return react__WEBPACK_IMPORTED_MODULE_1__.createElement(AdaptiveToolbox, props);
4736
- });
4737
-
4738
-
4739
- /***/ }),
4740
-
4741
- /***/ "./src/toolbox/Toolbox.tsx":
4742
- /*!*********************************!*\
4743
- !*** ./src/toolbox/Toolbox.tsx ***!
4744
- \*********************************/
4745
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4746
-
4747
- __webpack_require__.r(__webpack_exports__);
4748
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
4749
- /* harmony export */ Toolbox: () => (/* binding */ Toolbox)
4750
- /* harmony export */ });
4751
- /* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./src/entries/helpers.ts");
4752
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
4753
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
4754
- /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! survey-react-ui */ "survey-react-ui");
4755
- /* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__);
4756
- /* harmony import */ var _ToolboxItem__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ToolboxItem */ "./src/toolbox/ToolboxItem.tsx");
4757
- /* harmony import */ var _ToolboxCategory__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ToolboxCategory */ "./src/toolbox/ToolboxCategory.tsx");
4758
-
4759
-
4760
-
4761
-
4762
-
4763
- var Toolbox = /** @class */ (function (_super) {
4764
- (0,tslib__WEBPACK_IMPORTED_MODULE_0__.__extends)(Toolbox, _super);
4765
- function Toolbox() {
4766
- return _super !== null && _super.apply(this, arguments) || this;
4767
- }
4768
- Object.defineProperty(Toolbox.prototype, "creator", {
4764
+ Object.defineProperty(AdaptiveToolbox.prototype, "creator", {
4769
4765
  get: function () {
4770
4766
  return this.props.model;
4771
4767
  },
4772
4768
  enumerable: false,
4773
4769
  configurable: true
4774
4770
  });
4775
- Object.defineProperty(Toolbox.prototype, "toolbox", {
4771
+ Object.defineProperty(AdaptiveToolbox.prototype, "toolbox", {
4776
4772
  get: function () {
4777
4773
  return this.creator.toolbox;
4778
4774
  },
4779
4775
  enumerable: false,
4780
4776
  configurable: true
4781
4777
  });
4782
- Toolbox.prototype.getStateElement = function () {
4778
+ AdaptiveToolbox.prototype.getStateElement = function () {
4783
4779
  return this.toolbox;
4784
4780
  };
4785
- Toolbox.prototype.render = function () {
4786
- if (!this.toolbox.hasActions)
4787
- return null;
4788
- return (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox" },
4789
- react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__container" }, (this.toolbox.categories.length == 1 || !this.toolbox.showCategoryTitles) ?
4790
- (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__category" }, this.renderItems(this.toolbox.visibleActions)))
4791
- : this.renderCategories())));
4792
- };
4793
- Toolbox.prototype.renderItems = function (items, isCompact) {
4781
+ AdaptiveToolbox.prototype.renderItems = function (items, isCompact) {
4794
4782
  var _this = this;
4795
4783
  if (isCompact === void 0) { isCompact = false; }
4796
4784
  var result = [];
4797
4785
  items.forEach(function (item, itemIndex) {
4798
- var tool = react__WEBPACK_IMPORTED_MODULE_1__.createElement(_ToolboxItem__WEBPACK_IMPORTED_MODULE_3__.SurveyCreatorToolboxTool, { item: item, creator: _this.creator, parentModel: _this.toolbox, isCompact: isCompact, key: "item" + itemIndex });
4786
+ var tool = react__WEBPACK_IMPORTED_MODULE_1__.createElement(_ToolboxItem__WEBPACK_IMPORTED_MODULE_4__.SurveyCreatorToolboxTool, { item: item, creator: _this.creator, parentModel: _this.toolbox, isCompact: isCompact, key: "item" + itemIndex });
4799
4787
  result.push(tool);
4800
4788
  });
4801
4789
  return result;
4802
4790
  };
4803
- Toolbox.prototype.renderCategories = function () {
4791
+ AdaptiveToolbox.prototype.renderCategories = function () {
4804
4792
  var _this = this;
4805
4793
  return this.toolbox.categories.map(function (category, index) {
4806
- return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_ToolboxCategory__WEBPACK_IMPORTED_MODULE_4__.SurveyCreatorToolboxCategory, { category: category, toolbox: _this.toolbox, key: "category" + index });
4794
+ return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_ToolboxCategory__WEBPACK_IMPORTED_MODULE_7__.SurveyCreatorToolboxCategory, { category: category, toolbox: _this.toolbox, key: "category" + index });
4807
4795
  });
4808
4796
  };
4809
- return Toolbox;
4810
- }(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.SurveyElementBase));
4797
+ AdaptiveToolbox.prototype.renderSearch = function () {
4798
+ var searchButton = this.toolbox.isCompactRendered ?
4799
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement(react__WEBPACK_IMPORTED_MODULE_1__.Fragment, null,
4800
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement(_ToolboxItem__WEBPACK_IMPORTED_MODULE_4__.SurveyCreatorToolboxTool, { item: this.toolbox.searchItem, creator: this.creator, parentModel: this.toolbox, isCompact: this.toolbox.isCompactRendered, key: "searchitem" })) :
4801
+ null;
4802
+ return (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__search-container" },
4803
+ searchButton,
4804
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement(_components_Search__WEBPACK_IMPORTED_MODULE_5__.SearchComponent, { model: this.toolbox.searchManager }),
4805
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__category-separator svc-toolbox__category-separator--search" })));
4806
+ };
4807
+ AdaptiveToolbox.prototype.render = function () {
4808
+ var _this = this;
4809
+ if (!this.toolbox.hasActions)
4810
+ return null;
4811
+ var search = this.toolbox.showSearch ? this.renderSearch() : null;
4812
+ var placeholder = this.toolbox.showPlaceholder ? react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__placeholder" }, this.toolbox.toolboxNoResultsFound) : null;
4813
+ return (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { ref: this.rootRef, className: this.toolbox.classNames },
4814
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { onBlur: function (e) { return _this.toolbox.focusOut(e); }, className: "svc-toolbox__panel" },
4815
+ search,
4816
+ placeholder,
4817
+ react__WEBPACK_IMPORTED_MODULE_1__.createElement(_components_Scroll__WEBPACK_IMPORTED_MODULE_6__.ScrollComponent, null, (this.toolbox.showInSingleCategory) ?
4818
+ (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: "svc-toolbox__category" }, this.renderItems(this.toolbox.renderedActions, this.toolbox.isCompactRendered)))
4819
+ : this.renderCategories()))));
4820
+ };
4821
+ return AdaptiveToolbox;
4822
+ }(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.SurveyElementBase));
4811
4823
 
4812
- survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.ReactElementFactory.Instance.registerElement("svc-toolbox", function (props) {
4813
- return react__WEBPACK_IMPORTED_MODULE_1__.createElement(Toolbox, props);
4824
+ survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.ReactElementFactory.Instance.registerElement("svc-toolbox", function (props) {
4825
+ return react__WEBPACK_IMPORTED_MODULE_1__.createElement(AdaptiveToolbox, props);
4814
4826
  });
4815
4827
 
4816
4828
 
@@ -5336,8 +5348,8 @@ var __webpack_exports__ = {};
5336
5348
  \******************************/
5337
5349
  __webpack_require__.r(__webpack_exports__);
5338
5350
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
5339
- /* harmony export */ ActionButton: () => (/* reexport safe */ _ActionButton__WEBPACK_IMPORTED_MODULE_38__.ActionButton),
5340
- /* harmony export */ AdaptiveToolbox: () => (/* reexport safe */ _toolbox_AdaptiveToolbox__WEBPACK_IMPORTED_MODULE_27__.AdaptiveToolbox),
5351
+ /* harmony export */ ActionButton: () => (/* reexport safe */ _ActionButton__WEBPACK_IMPORTED_MODULE_37__.ActionButton),
5352
+ /* harmony export */ AdaptiveToolbox: () => (/* reexport safe */ _toolbox_AdaptiveToolbox__WEBPACK_IMPORTED_MODULE_26__.AdaptiveToolbox),
5341
5353
  /* harmony export */ CellQuestionAdornerComponent: () => (/* reexport safe */ _adorners_CellQuestion__WEBPACK_IMPORTED_MODULE_10__.CellQuestionAdornerComponent),
5342
5354
  /* harmony export */ CellQuestionDropdownAdornerComponent: () => (/* reexport safe */ _adorners_CellQuestionDropdown__WEBPACK_IMPORTED_MODULE_11__.CellQuestionDropdownAdornerComponent),
5343
5355
  /* harmony export */ CreatorSurveyPageComponent: () => (/* reexport safe */ _adorners_Page__WEBPACK_IMPORTED_MODULE_12__.CreatorSurveyPageComponent),
@@ -5346,26 +5358,26 @@ __webpack_require__.r(__webpack_exports__);
5346
5358
  /* harmony export */ LogoImageComponent: () => (/* reexport safe */ _LogoImage__WEBPACK_IMPORTED_MODULE_14__.LogoImageComponent),
5347
5359
  /* harmony export */ MatrixCellAdornerComponent: () => (/* reexport safe */ _MatrixCellWrapper__WEBPACK_IMPORTED_MODULE_20__.MatrixCellAdornerComponent),
5348
5360
  /* harmony export */ PanelAdornerComponent: () => (/* reexport safe */ _adorners_Panel__WEBPACK_IMPORTED_MODULE_13__.PanelAdornerComponent),
5349
- /* harmony export */ PropertyGridComponent: () => (/* reexport safe */ _side_bar_PropertyGrid__WEBPACK_IMPORTED_MODULE_53__.PropertyGridComponent),
5350
- /* harmony export */ PropertyGridEditorCollection: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_63__.PropertyGridEditorCollection),
5351
- /* harmony export */ PropertyGridPlaceholderComponent: () => (/* reexport safe */ _side_bar_PropertyGridPlaceholder__WEBPACK_IMPORTED_MODULE_47__.PropertyGridPlaceholderComponent),
5361
+ /* harmony export */ PropertyGridComponent: () => (/* reexport safe */ _side_bar_PropertyGrid__WEBPACK_IMPORTED_MODULE_52__.PropertyGridComponent),
5362
+ /* harmony export */ PropertyGridEditorCollection: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.PropertyGridEditorCollection),
5363
+ /* harmony export */ PropertyGridPlaceholderComponent: () => (/* reexport safe */ _side_bar_PropertyGridPlaceholder__WEBPACK_IMPORTED_MODULE_46__.PropertyGridPlaceholderComponent),
5352
5364
  /* harmony export */ QuestionAdornerComponent: () => (/* reexport safe */ _adorners_Question__WEBPACK_IMPORTED_MODULE_2__.QuestionAdornerComponent),
5353
5365
  /* harmony export */ QuestionBanner: () => (/* reexport safe */ _adorners_QuestionBanner__WEBPACK_IMPORTED_MODULE_5__.QuestionBanner),
5354
5366
  /* harmony export */ QuestionDropdownAdornerComponent: () => (/* reexport safe */ _adorners_QuestionDropdown__WEBPACK_IMPORTED_MODULE_6__.QuestionDropdownAdornerComponent),
5355
5367
  /* harmony export */ QuestionEditorContentComponent: () => (/* reexport safe */ _QuestionEditorContent__WEBPACK_IMPORTED_MODULE_17__.QuestionEditorContentComponent),
5356
- /* harmony export */ QuestionErrorComponent: () => (/* reexport safe */ _QuestionError__WEBPACK_IMPORTED_MODULE_40__.QuestionErrorComponent),
5368
+ /* harmony export */ QuestionErrorComponent: () => (/* reexport safe */ _QuestionError__WEBPACK_IMPORTED_MODULE_39__.QuestionErrorComponent),
5357
5369
  /* harmony export */ QuestionImageAdornerComponent: () => (/* reexport safe */ _adorners_QuestionImage__WEBPACK_IMPORTED_MODULE_7__.QuestionImageAdornerComponent),
5358
5370
  /* harmony export */ QuestionRatingAdornerComponent: () => (/* reexport safe */ _adorners_QuestionRating__WEBPACK_IMPORTED_MODULE_8__.QuestionRatingAdornerComponent),
5359
5371
  /* harmony export */ QuestionWidgetAdornerComponent: () => (/* reexport safe */ _adorners_QuestionWidget__WEBPACK_IMPORTED_MODULE_9__.QuestionWidgetAdornerComponent),
5360
5372
  /* harmony export */ QuestionWrapperFooter: () => (/* reexport safe */ _adorners_QuestionFooter__WEBPACK_IMPORTED_MODULE_4__.QuestionWrapperFooter),
5361
5373
  /* harmony export */ QuestionWrapperHeader: () => (/* reexport safe */ _adorners_QuestionHeader__WEBPACK_IMPORTED_MODULE_3__.QuestionWrapperHeader),
5362
- /* harmony export */ ReactDragEvent: () => (/* reexport safe */ _events__WEBPACK_IMPORTED_MODULE_51__.ReactDragEvent),
5363
- /* harmony export */ ReactMouseEvent: () => (/* reexport safe */ _events__WEBPACK_IMPORTED_MODULE_51__.ReactMouseEvent),
5374
+ /* harmony export */ ReactDragEvent: () => (/* reexport safe */ _events__WEBPACK_IMPORTED_MODULE_50__.ReactDragEvent),
5375
+ /* harmony export */ ReactMouseEvent: () => (/* reexport safe */ _events__WEBPACK_IMPORTED_MODULE_50__.ReactMouseEvent),
5364
5376
  /* harmony export */ RowWrapper: () => (/* reexport safe */ _adorners_Row__WEBPACK_IMPORTED_MODULE_1__.RowWrapper),
5365
- /* harmony export */ SearchComponent: () => (/* reexport safe */ _components_Search__WEBPACK_IMPORTED_MODULE_54__.SearchComponent),
5366
- /* harmony export */ SideBarDefaultHeader: () => (/* reexport safe */ _side_bar_SideBarDefaultHeader__WEBPACK_IMPORTED_MODULE_32__.SideBarDefaultHeader),
5367
- /* harmony export */ SidebarComponent: () => (/* reexport safe */ _side_bar_SideBar__WEBPACK_IMPORTED_MODULE_35__.SidebarComponent),
5368
- /* harmony export */ StylesManager: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_63__.StylesManager),
5377
+ /* harmony export */ SearchComponent: () => (/* reexport safe */ _components_Search__WEBPACK_IMPORTED_MODULE_53__.SearchComponent),
5378
+ /* harmony export */ SideBarDefaultHeader: () => (/* reexport safe */ _side_bar_SideBarDefaultHeader__WEBPACK_IMPORTED_MODULE_31__.SideBarDefaultHeader),
5379
+ /* harmony export */ SidebarComponent: () => (/* reexport safe */ _side_bar_SideBar__WEBPACK_IMPORTED_MODULE_34__.SidebarComponent),
5380
+ /* harmony export */ StylesManager: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.StylesManager),
5369
5381
  /* harmony export */ SurveyCreator: () => (/* reexport safe */ _SurveyCreator__WEBPACK_IMPORTED_MODULE_0__.SurveyCreator),
5370
5382
  /* harmony export */ SurveyCreatorComponent: () => (/* reexport safe */ _SurveyCreator__WEBPACK_IMPORTED_MODULE_0__.SurveyCreatorComponent),
5371
5383
  /* harmony export */ SurveyCreatorToolboxCategory: () => (/* reexport safe */ _toolbox_ToolboxCategory__WEBPACK_IMPORTED_MODULE_24__.SurveyCreatorToolboxCategory),
@@ -5373,45 +5385,44 @@ __webpack_require__.r(__webpack_exports__);
5373
5385
  /* harmony export */ SurveyCreatorToolboxItemGroup: () => (/* reexport safe */ _toolbox_ToolboxItemGroup__WEBPACK_IMPORTED_MODULE_23__.SurveyCreatorToolboxItemGroup),
5374
5386
  /* harmony export */ SurveyCreatorToolboxTool: () => (/* reexport safe */ _toolbox_ToolboxItem__WEBPACK_IMPORTED_MODULE_22__.SurveyCreatorToolboxTool),
5375
5387
  /* harmony export */ SurveyElementEmbeddedSurvey: () => (/* reexport safe */ _QuestionEmbeddedSurvey__WEBPACK_IMPORTED_MODULE_16__.SurveyElementEmbeddedSurvey),
5376
- /* harmony export */ SurveyLocStringEditor: () => (/* reexport safe */ _StringEditor__WEBPACK_IMPORTED_MODULE_39__.SurveyLocStringEditor),
5377
- /* harmony export */ SurveyLogic: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_63__.SurveyLogic),
5378
- /* harmony export */ SurveyLogicOpertor: () => (/* reexport safe */ _tabs_logic_operator__WEBPACK_IMPORTED_MODULE_41__.SurveyLogicOpertor),
5379
- /* harmony export */ SurveyLogicUI: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_63__.SurveyLogicUI),
5380
- /* harmony export */ SurveyNavigation: () => (/* reexport safe */ _Navigation__WEBPACK_IMPORTED_MODULE_29__.SurveyNavigation),
5381
- /* harmony export */ SurveyQuestionBooleanSwitch: () => (/* reexport safe */ _custom_questions_BooleanSwitch__WEBPACK_IMPORTED_MODULE_62__.SurveyQuestionBooleanSwitch),
5382
- /* harmony export */ SurveyQuestionColor: () => (/* reexport safe */ _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_59__.SurveyQuestionColor),
5383
- /* harmony export */ SurveyQuestionEditorDefinition: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_63__.SurveyQuestionEditorDefinition),
5384
- /* harmony export */ SurveyQuestionFileEditor: () => (/* reexport safe */ _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_60__.SurveyQuestionFileEditor),
5388
+ /* harmony export */ SurveyLocStringEditor: () => (/* reexport safe */ _StringEditor__WEBPACK_IMPORTED_MODULE_38__.SurveyLocStringEditor),
5389
+ /* harmony export */ SurveyLogic: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.SurveyLogic),
5390
+ /* harmony export */ SurveyLogicOpertor: () => (/* reexport safe */ _tabs_logic_operator__WEBPACK_IMPORTED_MODULE_40__.SurveyLogicOpertor),
5391
+ /* harmony export */ SurveyLogicUI: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.SurveyLogicUI),
5392
+ /* harmony export */ SurveyNavigation: () => (/* reexport safe */ _Navigation__WEBPACK_IMPORTED_MODULE_28__.SurveyNavigation),
5393
+ /* harmony export */ SurveyQuestionBooleanSwitch: () => (/* reexport safe */ _custom_questions_BooleanSwitch__WEBPACK_IMPORTED_MODULE_61__.SurveyQuestionBooleanSwitch),
5394
+ /* harmony export */ SurveyQuestionColor: () => (/* reexport safe */ _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_58__.SurveyQuestionColor),
5395
+ /* harmony export */ SurveyQuestionEditorDefinition: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.SurveyQuestionEditorDefinition),
5396
+ /* harmony export */ SurveyQuestionFileEditor: () => (/* reexport safe */ _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_59__.SurveyQuestionFileEditor),
5385
5397
  /* harmony export */ SurveyQuestionLinkValue: () => (/* reexport safe */ _QuestionLinkValue__WEBPACK_IMPORTED_MODULE_15__.SurveyQuestionLinkValue),
5386
- /* harmony export */ SurveyQuestionSpinEditor: () => (/* reexport safe */ _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_57__.SurveyQuestionSpinEditor),
5387
- /* harmony export */ SurveyQuestionTextWithReset: () => (/* reexport safe */ _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_61__.SurveyQuestionTextWithReset),
5398
+ /* harmony export */ SurveyQuestionSpinEditor: () => (/* reexport safe */ _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_56__.SurveyQuestionSpinEditor),
5399
+ /* harmony export */ SurveyQuestionTextWithReset: () => (/* reexport safe */ _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_60__.SurveyQuestionTextWithReset),
5388
5400
  /* harmony export */ SurveyResults: () => (/* reexport safe */ _Results__WEBPACK_IMPORTED_MODULE_21__.SurveyResults),
5389
5401
  /* harmony export */ SurveyResultsByRow: () => (/* reexport safe */ _Results__WEBPACK_IMPORTED_MODULE_21__.SurveyResultsByRow),
5390
- /* harmony export */ SurveySimulator: () => (/* reexport safe */ _tabs_SurveySimulator__WEBPACK_IMPORTED_MODULE_50__.SurveySimulator),
5391
- /* harmony export */ SwitcherComponent: () => (/* reexport safe */ _Switcher__WEBPACK_IMPORTED_MODULE_55__.SwitcherComponent),
5392
- /* harmony export */ TabButtonComponent: () => (/* reexport safe */ _side_bar_TabButton__WEBPACK_IMPORTED_MODULE_31__.TabButtonComponent),
5393
- /* harmony export */ TabDesignerComponent: () => (/* reexport safe */ _tabs_Designer__WEBPACK_IMPORTED_MODULE_42__.TabDesignerComponent),
5394
- /* harmony export */ TabJsonEditorAceComponent: () => (/* reexport safe */ _tabs_JsonEditorAce__WEBPACK_IMPORTED_MODULE_43__.TabJsonEditorAceComponent),
5395
- /* harmony export */ TabJsonEditorErrorsComponent: () => (/* reexport safe */ _tabs_JsonEditorTextarea__WEBPACK_IMPORTED_MODULE_44__.TabJsonEditorErrorsComponent),
5396
- /* harmony export */ TabJsonEditorTextareaComponent: () => (/* reexport safe */ _tabs_JsonEditorTextarea__WEBPACK_IMPORTED_MODULE_44__.TabJsonEditorTextareaComponent),
5397
- /* harmony export */ TabLogicAddButtonComponent: () => (/* reexport safe */ _tabs_Logic__WEBPACK_IMPORTED_MODULE_45__.TabLogicAddButtonComponent),
5398
- /* harmony export */ TabLogicComponent: () => (/* reexport safe */ _tabs_Logic__WEBPACK_IMPORTED_MODULE_45__.TabLogicComponent),
5399
- /* harmony export */ TabPreviewSurveyComponent: () => (/* reexport safe */ _tabs_Preview__WEBPACK_IMPORTED_MODULE_46__.TabPreviewSurveyComponent),
5400
- /* harmony export */ TabPreviewTestSurveyAgainComponent: () => (/* reexport safe */ _tabs_Preview__WEBPACK_IMPORTED_MODULE_46__.TabPreviewTestSurveyAgainComponent),
5401
- /* harmony export */ TabThemeSurveyComponent: () => (/* reexport safe */ _tabs_Theme__WEBPACK_IMPORTED_MODULE_48__.TabThemeSurveyComponent),
5402
- /* harmony export */ TabTranslationComponent: () => (/* reexport safe */ _tabs_translation_Translation__WEBPACK_IMPORTED_MODULE_49__.TabTranslationComponent),
5403
- /* harmony export */ TabbedMenuComponent: () => (/* reexport safe */ _TabbedMenu__WEBPACK_IMPORTED_MODULE_28__.TabbedMenuComponent),
5404
- /* harmony export */ TabbedMenuItemComponent: () => (/* reexport safe */ _TabbedMenu__WEBPACK_IMPORTED_MODULE_28__.TabbedMenuItemComponent),
5405
- /* harmony export */ Toolbox: () => (/* reexport safe */ _toolbox_Toolbox__WEBPACK_IMPORTED_MODULE_25__.Toolbox),
5406
- /* harmony export */ ToolboxList: () => (/* reexport safe */ _toolbox_ToolboxList__WEBPACK_IMPORTED_MODULE_26__.ToolboxList),
5407
- /* harmony export */ ToolboxToolViewModel: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_63__.ToolboxToolViewModel),
5408
- /* harmony export */ TranslateFromAction: () => (/* reexport safe */ _tabs_translation_TranslateFromAction__WEBPACK_IMPORTED_MODULE_37__.TranslateFromAction),
5409
- /* harmony export */ TranslationLineSkeleton: () => (/* reexport safe */ _tabs_translation_TranslationLineSkeleton__WEBPACK_IMPORTED_MODULE_36__.TranslationLineSkeleton),
5402
+ /* harmony export */ SurveySimulator: () => (/* reexport safe */ _tabs_SurveySimulator__WEBPACK_IMPORTED_MODULE_49__.SurveySimulator),
5403
+ /* harmony export */ SwitcherComponent: () => (/* reexport safe */ _Switcher__WEBPACK_IMPORTED_MODULE_54__.SwitcherComponent),
5404
+ /* harmony export */ TabButtonComponent: () => (/* reexport safe */ _side_bar_TabButton__WEBPACK_IMPORTED_MODULE_30__.TabButtonComponent),
5405
+ /* harmony export */ TabDesignerComponent: () => (/* reexport safe */ _tabs_Designer__WEBPACK_IMPORTED_MODULE_41__.TabDesignerComponent),
5406
+ /* harmony export */ TabJsonEditorAceComponent: () => (/* reexport safe */ _tabs_JsonEditorAce__WEBPACK_IMPORTED_MODULE_42__.TabJsonEditorAceComponent),
5407
+ /* harmony export */ TabJsonEditorErrorsComponent: () => (/* reexport safe */ _tabs_JsonEditorTextarea__WEBPACK_IMPORTED_MODULE_43__.TabJsonEditorErrorsComponent),
5408
+ /* harmony export */ TabJsonEditorTextareaComponent: () => (/* reexport safe */ _tabs_JsonEditorTextarea__WEBPACK_IMPORTED_MODULE_43__.TabJsonEditorTextareaComponent),
5409
+ /* harmony export */ TabLogicAddButtonComponent: () => (/* reexport safe */ _tabs_Logic__WEBPACK_IMPORTED_MODULE_44__.TabLogicAddButtonComponent),
5410
+ /* harmony export */ TabLogicComponent: () => (/* reexport safe */ _tabs_Logic__WEBPACK_IMPORTED_MODULE_44__.TabLogicComponent),
5411
+ /* harmony export */ TabPreviewSurveyComponent: () => (/* reexport safe */ _tabs_Preview__WEBPACK_IMPORTED_MODULE_45__.TabPreviewSurveyComponent),
5412
+ /* harmony export */ TabPreviewTestSurveyAgainComponent: () => (/* reexport safe */ _tabs_Preview__WEBPACK_IMPORTED_MODULE_45__.TabPreviewTestSurveyAgainComponent),
5413
+ /* harmony export */ TabThemeSurveyComponent: () => (/* reexport safe */ _tabs_Theme__WEBPACK_IMPORTED_MODULE_47__.TabThemeSurveyComponent),
5414
+ /* harmony export */ TabTranslationComponent: () => (/* reexport safe */ _tabs_translation_Translation__WEBPACK_IMPORTED_MODULE_48__.TabTranslationComponent),
5415
+ /* harmony export */ TabbedMenuComponent: () => (/* reexport safe */ _TabbedMenu__WEBPACK_IMPORTED_MODULE_27__.TabbedMenuComponent),
5416
+ /* harmony export */ TabbedMenuItemComponent: () => (/* reexport safe */ _TabbedMenu__WEBPACK_IMPORTED_MODULE_27__.TabbedMenuItemComponent),
5417
+ /* harmony export */ ToolboxList: () => (/* reexport safe */ _toolbox_ToolboxList__WEBPACK_IMPORTED_MODULE_25__.ToolboxList),
5418
+ /* harmony export */ ToolboxToolViewModel: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.ToolboxToolViewModel),
5419
+ /* harmony export */ TranslateFromAction: () => (/* reexport safe */ _tabs_translation_TranslateFromAction__WEBPACK_IMPORTED_MODULE_36__.TranslateFromAction),
5420
+ /* harmony export */ TranslationLineSkeleton: () => (/* reexport safe */ _tabs_translation_TranslationLineSkeleton__WEBPACK_IMPORTED_MODULE_35__.TranslationLineSkeleton),
5410
5421
  /* harmony export */ Version: () => (/* binding */ Version),
5411
- /* harmony export */ editorLocalization: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_63__.editorLocalization),
5412
- /* harmony export */ localization: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_63__.localization),
5413
- /* harmony export */ settings: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_63__.settings),
5414
- /* harmony export */ svgBundle: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_63__.svgBundle)
5422
+ /* harmony export */ editorLocalization: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.editorLocalization),
5423
+ /* harmony export */ localization: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.localization),
5424
+ /* harmony export */ settings: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.settings),
5425
+ /* harmony export */ svgBundle: () => (/* reexport safe */ survey_creator_core__WEBPACK_IMPORTED_MODULE_62__.svgBundle)
5415
5426
  /* harmony export */ });
5416
5427
  /* harmony import */ var _SurveyCreator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../SurveyCreator */ "./src/SurveyCreator.tsx");
5417
5428
  /* harmony import */ var _adorners_Row__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../adorners/Row */ "./src/adorners/Row.tsx");
@@ -5438,50 +5449,49 @@ __webpack_require__.r(__webpack_exports__);
5438
5449
  /* harmony import */ var _toolbox_ToolboxItem__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../toolbox/ToolboxItem */ "./src/toolbox/ToolboxItem.tsx");
5439
5450
  /* harmony import */ var _toolbox_ToolboxItemGroup__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../toolbox/ToolboxItemGroup */ "./src/toolbox/ToolboxItemGroup.tsx");
5440
5451
  /* harmony import */ var _toolbox_ToolboxCategory__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../toolbox/ToolboxCategory */ "./src/toolbox/ToolboxCategory.tsx");
5441
- /* harmony import */ var _toolbox_Toolbox__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../toolbox/Toolbox */ "./src/toolbox/Toolbox.tsx");
5442
- /* harmony import */ var _toolbox_ToolboxList__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../toolbox/ToolboxList */ "./src/toolbox/ToolboxList.tsx");
5443
- /* harmony import */ var _toolbox_AdaptiveToolbox__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../toolbox/AdaptiveToolbox */ "./src/toolbox/AdaptiveToolbox.tsx");
5444
- /* harmony import */ var _TabbedMenu__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../TabbedMenu */ "./src/TabbedMenu.tsx");
5445
- /* harmony import */ var _Navigation__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../Navigation */ "./src/Navigation.tsx");
5446
- /* harmony import */ var _side_bar_TabControl__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../side-bar/TabControl */ "./src/side-bar/TabControl.tsx");
5447
- /* harmony import */ var _side_bar_TabButton__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../side-bar/TabButton */ "./src/side-bar/TabButton.tsx");
5448
- /* harmony import */ var _side_bar_SideBarDefaultHeader__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../side-bar/SideBarDefaultHeader */ "./src/side-bar/SideBarDefaultHeader.tsx");
5449
- /* harmony import */ var _side_bar_SideBarPropertyGridHeader__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../side-bar/SideBarPropertyGridHeader */ "./src/side-bar/SideBarPropertyGridHeader.tsx");
5450
- /* harmony import */ var _side_bar_SideBarHeader__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../side-bar/SideBarHeader */ "./src/side-bar/SideBarHeader.tsx");
5451
- /* harmony import */ var _side_bar_SideBar__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../side-bar/SideBar */ "./src/side-bar/SideBar.tsx");
5452
- /* harmony import */ var _tabs_translation_TranslationLineSkeleton__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../tabs/translation/TranslationLineSkeleton */ "./src/tabs/translation/TranslationLineSkeleton.tsx");
5453
- /* harmony import */ var _tabs_translation_TranslateFromAction__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../tabs/translation/TranslateFromAction */ "./src/tabs/translation/TranslateFromAction.tsx");
5454
- /* harmony import */ var _ActionButton__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../ActionButton */ "./src/ActionButton.tsx");
5455
- /* harmony import */ var _StringEditor__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../StringEditor */ "./src/StringEditor.tsx");
5456
- /* harmony import */ var _QuestionError__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../QuestionError */ "./src/QuestionError.tsx");
5457
- /* harmony import */ var _tabs_logic_operator__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../tabs/logic-operator */ "./src/tabs/logic-operator.tsx");
5458
- /* harmony import */ var _tabs_Designer__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../tabs/Designer */ "./src/tabs/Designer.tsx");
5459
- /* harmony import */ var _tabs_JsonEditorAce__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../tabs/JsonEditorAce */ "./src/tabs/JsonEditorAce.tsx");
5460
- /* harmony import */ var _tabs_JsonEditorTextarea__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../tabs/JsonEditorTextarea */ "./src/tabs/JsonEditorTextarea.tsx");
5461
- /* harmony import */ var _tabs_Logic__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../tabs/Logic */ "./src/tabs/Logic.tsx");
5462
- /* harmony import */ var _tabs_Preview__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../tabs/Preview */ "./src/tabs/Preview.tsx");
5463
- /* harmony import */ var _side_bar_PropertyGridPlaceholder__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../side-bar/PropertyGridPlaceholder */ "./src/side-bar/PropertyGridPlaceholder.tsx");
5464
- /* harmony import */ var _tabs_Theme__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../tabs/Theme */ "./src/tabs/Theme.tsx");
5465
- /* harmony import */ var _tabs_translation_Translation__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../tabs/translation/Translation */ "./src/tabs/translation/Translation.tsx");
5466
- /* harmony import */ var _tabs_SurveySimulator__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../tabs/SurveySimulator */ "./src/tabs/SurveySimulator.tsx");
5467
- /* harmony import */ var _events__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../events */ "./src/events.ts");
5468
- /* harmony import */ var _side_bar_ObjectSelector__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../side-bar/ObjectSelector */ "./src/side-bar/ObjectSelector.tsx");
5469
- /* harmony import */ var _side_bar_PropertyGrid__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../side-bar/PropertyGrid */ "./src/side-bar/PropertyGrid.tsx");
5470
- /* harmony import */ var _components_Search__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../components/Search */ "./src/components/Search.tsx");
5471
- /* harmony import */ var _Switcher__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../Switcher */ "./src/Switcher.tsx");
5472
- /* harmony import */ var _tabs_JsonErrorItem__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../tabs/JsonErrorItem */ "./src/tabs/JsonErrorItem.tsx");
5473
- /* harmony import */ var _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../custom-questions/SpinEditor */ "./src/custom-questions/SpinEditor.tsx");
5474
- /* harmony import */ var _custom_questions_ColorItem__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../custom-questions/ColorItem */ "./src/custom-questions/ColorItem.tsx");
5475
- /* harmony import */ var _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ../custom-questions/ColorQuestion */ "./src/custom-questions/ColorQuestion.tsx");
5476
- /* harmony import */ var _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../custom-questions/FileEditQuestion */ "./src/custom-questions/FileEditQuestion.tsx");
5477
- /* harmony import */ var _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../custom-questions/TextWithResetQuestion */ "./src/custom-questions/TextWithResetQuestion.tsx");
5478
- /* harmony import */ var _custom_questions_BooleanSwitch__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ../custom-questions/BooleanSwitch */ "./src/custom-questions/BooleanSwitch.tsx");
5479
- /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
5480
- /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_63___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_63__);
5481
- /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! survey-core */ "survey-core");
5482
- /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_64___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_64__);
5452
+ /* harmony import */ var _toolbox_ToolboxList__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../toolbox/ToolboxList */ "./src/toolbox/ToolboxList.tsx");
5453
+ /* harmony import */ var _toolbox_AdaptiveToolbox__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../toolbox/AdaptiveToolbox */ "./src/toolbox/AdaptiveToolbox.tsx");
5454
+ /* harmony import */ var _TabbedMenu__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../TabbedMenu */ "./src/TabbedMenu.tsx");
5455
+ /* harmony import */ var _Navigation__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../Navigation */ "./src/Navigation.tsx");
5456
+ /* harmony import */ var _side_bar_TabControl__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../side-bar/TabControl */ "./src/side-bar/TabControl.tsx");
5457
+ /* harmony import */ var _side_bar_TabButton__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../side-bar/TabButton */ "./src/side-bar/TabButton.tsx");
5458
+ /* harmony import */ var _side_bar_SideBarDefaultHeader__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../side-bar/SideBarDefaultHeader */ "./src/side-bar/SideBarDefaultHeader.tsx");
5459
+ /* harmony import */ var _side_bar_SideBarPropertyGridHeader__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../side-bar/SideBarPropertyGridHeader */ "./src/side-bar/SideBarPropertyGridHeader.tsx");
5460
+ /* harmony import */ var _side_bar_SideBarHeader__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../side-bar/SideBarHeader */ "./src/side-bar/SideBarHeader.tsx");
5461
+ /* harmony import */ var _side_bar_SideBar__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../side-bar/SideBar */ "./src/side-bar/SideBar.tsx");
5462
+ /* harmony import */ var _tabs_translation_TranslationLineSkeleton__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../tabs/translation/TranslationLineSkeleton */ "./src/tabs/translation/TranslationLineSkeleton.tsx");
5463
+ /* harmony import */ var _tabs_translation_TranslateFromAction__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../tabs/translation/TranslateFromAction */ "./src/tabs/translation/TranslateFromAction.tsx");
5464
+ /* harmony import */ var _ActionButton__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../ActionButton */ "./src/ActionButton.tsx");
5465
+ /* harmony import */ var _StringEditor__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../StringEditor */ "./src/StringEditor.tsx");
5466
+ /* harmony import */ var _QuestionError__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../QuestionError */ "./src/QuestionError.tsx");
5467
+ /* harmony import */ var _tabs_logic_operator__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../tabs/logic-operator */ "./src/tabs/logic-operator.tsx");
5468
+ /* harmony import */ var _tabs_Designer__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../tabs/Designer */ "./src/tabs/Designer.tsx");
5469
+ /* harmony import */ var _tabs_JsonEditorAce__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../tabs/JsonEditorAce */ "./src/tabs/JsonEditorAce.tsx");
5470
+ /* harmony import */ var _tabs_JsonEditorTextarea__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../tabs/JsonEditorTextarea */ "./src/tabs/JsonEditorTextarea.tsx");
5471
+ /* harmony import */ var _tabs_Logic__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../tabs/Logic */ "./src/tabs/Logic.tsx");
5472
+ /* harmony import */ var _tabs_Preview__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../tabs/Preview */ "./src/tabs/Preview.tsx");
5473
+ /* harmony import */ var _side_bar_PropertyGridPlaceholder__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../side-bar/PropertyGridPlaceholder */ "./src/side-bar/PropertyGridPlaceholder.tsx");
5474
+ /* harmony import */ var _tabs_Theme__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../tabs/Theme */ "./src/tabs/Theme.tsx");
5475
+ /* harmony import */ var _tabs_translation_Translation__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../tabs/translation/Translation */ "./src/tabs/translation/Translation.tsx");
5476
+ /* harmony import */ var _tabs_SurveySimulator__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../tabs/SurveySimulator */ "./src/tabs/SurveySimulator.tsx");
5477
+ /* harmony import */ var _events__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../events */ "./src/events.ts");
5478
+ /* harmony import */ var _side_bar_ObjectSelector__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../side-bar/ObjectSelector */ "./src/side-bar/ObjectSelector.tsx");
5479
+ /* harmony import */ var _side_bar_PropertyGrid__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../side-bar/PropertyGrid */ "./src/side-bar/PropertyGrid.tsx");
5480
+ /* harmony import */ var _components_Search__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../components/Search */ "./src/components/Search.tsx");
5481
+ /* harmony import */ var _Switcher__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../Switcher */ "./src/Switcher.tsx");
5482
+ /* harmony import */ var _tabs_JsonErrorItem__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../tabs/JsonErrorItem */ "./src/tabs/JsonErrorItem.tsx");
5483
+ /* harmony import */ var _custom_questions_SpinEditor__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../custom-questions/SpinEditor */ "./src/custom-questions/SpinEditor.tsx");
5484
+ /* harmony import */ var _custom_questions_ColorItem__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../custom-questions/ColorItem */ "./src/custom-questions/ColorItem.tsx");
5485
+ /* harmony import */ var _custom_questions_ColorQuestion__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../custom-questions/ColorQuestion */ "./src/custom-questions/ColorQuestion.tsx");
5486
+ /* harmony import */ var _custom_questions_FileEditQuestion__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ../custom-questions/FileEditQuestion */ "./src/custom-questions/FileEditQuestion.tsx");
5487
+ /* harmony import */ var _custom_questions_TextWithResetQuestion__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../custom-questions/TextWithResetQuestion */ "./src/custom-questions/TextWithResetQuestion.tsx");
5488
+ /* harmony import */ var _custom_questions_BooleanSwitch__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../custom-questions/BooleanSwitch */ "./src/custom-questions/BooleanSwitch.tsx");
5489
+ /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! survey-creator-core */ "survey-creator-core");
5490
+ /* harmony import */ var survey_creator_core__WEBPACK_IMPORTED_MODULE_62___default = /*#__PURE__*/__webpack_require__.n(survey_creator_core__WEBPACK_IMPORTED_MODULE_62__);
5491
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! survey-core */ "survey-core");
5492
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_63__);
5483
5493
  var Version;
5484
- Version = "".concat("1.12.11");
5494
+ Version = "".concat("1.12.12");
5485
5495
  // import "@survey/creator/survey-creator-core.css";
5486
5496
 
5487
5497
 
@@ -5537,7 +5547,6 @@ Version = "".concat("1.12.11");
5537
5547
 
5538
5548
 
5539
5549
 
5540
-
5541
5550
 
5542
5551
 
5543
5552
  //custom questions
@@ -5555,7 +5564,7 @@ Version = "".concat("1.12.11");
5555
5564
 
5556
5565
 
5557
5566
 
5558
- (0,survey_core__WEBPACK_IMPORTED_MODULE_64__.checkLibraryVersion)("".concat("1.12.11"), "survey-creator-react");
5567
+ (0,survey_core__WEBPACK_IMPORTED_MODULE_63__.checkLibraryVersion)("".concat("1.12.12"), "survey-creator-react");
5559
5568
 
5560
5569
  })();
5561
5570