survey-creator-react 2.2.4 → 2.2.6
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/fesm/survey-creator-react.mjs +8 -4
- package/fesm/survey-creator-react.mjs.map +1 -1
- package/package.json +4 -4
- package/survey-creator-react.js +8 -6
- package/survey-creator-react.js.map +1 -1
- package/survey-creator-react.min.js +1 -1
- package/survey-creator-react.min.js.LICENSE.txt +1 -1
- package/typings/toolbox/AdaptiveToolbox.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-react",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.6",
|
|
4
4
|
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Survey",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"ace-builds": "^1.4.12",
|
|
38
38
|
"react": "^16.5.0 || ^17.0.1 || ^18.1.0 || ^19.0.0",
|
|
39
39
|
"react-dom": "^16.5.0 || ^17.0.1 || ^18.1.0 || ^19.0.0",
|
|
40
|
-
"survey-core": "2.2.
|
|
41
|
-
"survey-react-ui": "2.2.
|
|
42
|
-
"survey-creator-core": "2.2.
|
|
40
|
+
"survey-core": "2.2.6",
|
|
41
|
+
"survey-react-ui": "2.2.6",
|
|
42
|
+
"survey-creator-core": "2.2.6"
|
|
43
43
|
},
|
|
44
44
|
"peerDependenciesMeta": {
|
|
45
45
|
"ace-builds": {
|
package/survey-creator-react.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator React v2.2.
|
|
2
|
+
* SurveyJS Creator React v2.2.6
|
|
3
3
|
* (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* Github: https://github.com/surveyjs/survey-creator
|
|
5
5
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
@@ -3361,7 +3361,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3361
3361
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
3362
3362
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_63__);
|
|
3363
3363
|
var Version;
|
|
3364
|
-
Version = "".concat("2.2.
|
|
3364
|
+
Version = "".concat("2.2.6");
|
|
3365
3365
|
// import "@survey/creator/survey-creator-core.css";
|
|
3366
3366
|
|
|
3367
3367
|
|
|
@@ -3433,7 +3433,7 @@ Version = "".concat("2.2.4");
|
|
|
3433
3433
|
|
|
3434
3434
|
|
|
3435
3435
|
|
|
3436
|
-
(0,survey_core__WEBPACK_IMPORTED_MODULE_63__.checkLibraryVersion)("".concat("2.2.
|
|
3436
|
+
(0,survey_core__WEBPACK_IMPORTED_MODULE_63__.checkLibraryVersion)("".concat("2.2.6"), "survey-creator-react");
|
|
3437
3437
|
|
|
3438
3438
|
|
|
3439
3439
|
/***/ }),
|
|
@@ -4946,8 +4946,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4946
4946
|
/* harmony import */ var survey_react_ui__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_react_ui__WEBPACK_IMPORTED_MODULE_2__);
|
|
4947
4947
|
/* harmony import */ var _ToolboxItem__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ToolboxItem */ "./src/toolbox/ToolboxItem.tsx");
|
|
4948
4948
|
/* harmony import */ var _components_Search__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../components/Search */ "./src/components/Search.tsx");
|
|
4949
|
-
/* harmony import */ var _ToolboxCategory__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ToolboxCategory */ "./src/toolbox/ToolboxCategory.tsx");
|
|
4950
|
-
|
|
4951
4949
|
|
|
4952
4950
|
|
|
4953
4951
|
|
|
@@ -5005,7 +5003,11 @@ var AdaptiveToolbox = /** @class */ (function (_super) {
|
|
|
5005
5003
|
AdaptiveToolbox.prototype.renderCategories = function () {
|
|
5006
5004
|
var _this = this;
|
|
5007
5005
|
return this.toolbox.categories.map(function (category, index) {
|
|
5008
|
-
return
|
|
5006
|
+
return survey_react_ui__WEBPACK_IMPORTED_MODULE_2__.ReactElementFactory.Instance.createElement("svc-toolbox-category", {
|
|
5007
|
+
category: category,
|
|
5008
|
+
toolbox: _this.toolbox,
|
|
5009
|
+
key: "category" + index
|
|
5010
|
+
});
|
|
5009
5011
|
});
|
|
5010
5012
|
};
|
|
5011
5013
|
AdaptiveToolbox.prototype.renderSearch = function () {
|