survey-creator-react 1.11.3 → 1.11.5

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.11.3",
3
+ "version": "1.11.5",
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.11.3",
33
- "survey-react-ui": "1.11.3",
34
- "survey-creator-core": "1.11.3"
32
+ "survey-core": "1.11.5",
33
+ "survey-react-ui": "1.11.5",
34
+ "survey-creator-core": "1.11.5"
35
35
  },
36
36
  "peerDependenciesMeta": {
37
37
  "ace-builds": {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator React v1.11.3
2
+ * SurveyJS Creator React v1.11.5
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
@@ -3010,7 +3010,7 @@ var SurveyQuestionFileEditor = /** @class */ (function (_super) {
3010
3010
  SurveyQuestionFileEditor.prototype.renderInput = function () {
3011
3011
  var _this = this;
3012
3012
  return (react__WEBPACK_IMPORTED_MODULE_1__["createElement"](react__WEBPACK_IMPORTED_MODULE_1__["Fragment"], null,
3013
- react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("input", { disabled: this.isDisplayMode, className: this.questionFile.cssClasses.control, placeholder: this.questionFile.placeholder, ref: function (input) { return (_this.setControl(input)); }, autoComplete: "off", type: "text", onBlur: function (event) { return _this.questionFile.onInputBlur(event.nativeEvent); }, onChange: function (event) { return _this.questionFile.onInputChange(event.nativeEvent); } })));
3013
+ react__WEBPACK_IMPORTED_MODULE_1__["createElement"]("input", { disabled: this.isDisplayMode, className: this.questionFile.cssClasses.control, placeholder: this.questionFile.renderedPlaceholder, ref: function (input) { return (_this.setControl(input)); }, autoComplete: "off", type: "text", onBlur: function (event) { return _this.questionFile.onInputBlur(event.nativeEvent); }, onChange: function (event) { return _this.questionFile.onInputChange(event.nativeEvent); } })));
3014
3014
  };
3015
3015
  SurveyQuestionFileEditor.prototype.renderFileInput = function () {
3016
3016
  var _this = this;
@@ -3436,7 +3436,7 @@ __webpack_require__.r(__webpack_exports__);
3436
3436
  /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! survey-core */ "survey-core");
3437
3437
  /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_54___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_54__);
3438
3438
  var Version;
3439
- Version = "".concat("1.11.3");
3439
+ Version = "".concat("1.11.5");
3440
3440
  // import "@survey/creator/survey-creator-core.css";
3441
3441
 
3442
3442
 
@@ -3500,7 +3500,7 @@ Version = "".concat("1.11.3");
3500
3500
 
3501
3501
 
3502
3502
 
3503
- Object(survey_core__WEBPACK_IMPORTED_MODULE_54__["checkLibraryVersion"])("".concat("1.11.3"), "survey-creator-react");
3503
+ Object(survey_core__WEBPACK_IMPORTED_MODULE_54__["checkLibraryVersion"])("".concat("1.11.5"), "survey-creator-react");
3504
3504
 
3505
3505
 
3506
3506
  /***/ }),
@@ -4669,7 +4669,9 @@ var SurveyCreatorToolboxCategory = /** @class */ (function (_super) {
4669
4669
  });
4670
4670
  Object.defineProperty(SurveyCreatorToolboxCategory.prototype, "class", {
4671
4671
  get: function () {
4672
- return "svc-toolbox__category" + (this.category.collapsed ? " svc-toolbox__category--collapsed" : "");
4672
+ return "svc-toolbox__category" +
4673
+ (this.category.collapsed ? " svc-toolbox__category--collapsed" : "") +
4674
+ (this.category.empty ? " svc-toolbox__category--empty" : "");
4673
4675
  },
4674
4676
  enumerable: false,
4675
4677
  configurable: true