survey-creator-react 1.12.32 → 1.12.34
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 +25 -27
- package/fesm/survey-creator-react.mjs.map +1 -1
- package/package.json +4 -4
- package/survey-creator-react.js +7 -9
- 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/entries/index-wc.d.ts +70 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-react",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.34",
|
|
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 || ^19.0.0",
|
|
31
31
|
"react-dom": "^16.5.0 || ^17.0.1 || ^18.1.0 || ^19.0.0",
|
|
32
|
-
"survey-core": "1.12.
|
|
33
|
-
"survey-react-ui": "1.12.
|
|
34
|
-
"survey-creator-core": "1.12.
|
|
32
|
+
"survey-core": "1.12.34",
|
|
33
|
+
"survey-react-ui": "1.12.34",
|
|
34
|
+
"survey-creator-core": "1.12.34"
|
|
35
35
|
},
|
|
36
36
|
"peerDependenciesMeta": {
|
|
37
37
|
"ace-builds": {
|
package/survey-creator-react.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator React v1.12.
|
|
2
|
+
* SurveyJS Creator React v1.12.34
|
|
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
|
|
@@ -4539,14 +4539,12 @@ var SurveyLogicOpertor = /** @class */ (function (_super) {
|
|
|
4539
4539
|
SurveyLogicOpertor.prototype.renderInput = function () {
|
|
4540
4540
|
var q = this.question;
|
|
4541
4541
|
(0,survey_creator_core__WEBPACK_IMPORTED_MODULE_3__.initLogicOperator)(q);
|
|
4542
|
-
var text = (q.
|
|
4542
|
+
var text = (q.locReadOnlyText) ? this.renderLocString(q.locReadOnlyText) : "";
|
|
4543
4543
|
return (react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { id: this.question.inputId, className: q.getControlClass(), tabIndex: this.question.isInputReadOnly ? undefined : 0,
|
|
4544
4544
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
4545
4545
|
// @ts-ignore
|
|
4546
4546
|
disabled: this.question.isInputReadOnly, required: this.question.isRequired, onChange: this.updateValueOnEvent, onInput: this.updateValueOnEvent, onKeyUp: this.keyhandler, role: this.question.ariaRole, "aria-required": this.question.ariaRequired, "aria-label": this.question.ariaLabel, "aria-invalid": this.question.ariaInvalid, "aria-describedby": this.question.ariaDescribedBy },
|
|
4547
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: this.question.cssClasses.controlValue },
|
|
4548
|
-
text,
|
|
4549
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", null, q.readOnlyText)),
|
|
4547
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement("div", { className: this.question.cssClasses.controlValue }, text),
|
|
4550
4548
|
this.createClearButton()));
|
|
4551
4549
|
};
|
|
4552
4550
|
return SurveyLogicOpertor;
|
|
@@ -5045,7 +5043,7 @@ var SurveyCreatorToolboxItem = /** @class */ (function (_super) {
|
|
|
5045
5043
|
event.persist();
|
|
5046
5044
|
_this.model.click(event);
|
|
5047
5045
|
} },
|
|
5048
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.SvgIcon, { size: "auto", iconName: this.item.iconName, className: "svc-toolbox__item-icon"
|
|
5046
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.SvgIcon, { title: this.item.tooltip || this.item.title, size: "auto", iconName: this.item.iconName, className: "svc-toolbox__item-icon" }),
|
|
5049
5047
|
react__WEBPACK_IMPORTED_MODULE_1__.createElement("span", null, this.item.title))
|
|
5050
5048
|
:
|
|
5051
5049
|
null);
|
|
@@ -5053,7 +5051,7 @@ var SurveyCreatorToolboxItem = /** @class */ (function (_super) {
|
|
|
5053
5051
|
event.persist();
|
|
5054
5052
|
_this.model.click(event);
|
|
5055
5053
|
} },
|
|
5056
|
-
react__WEBPACK_IMPORTED_MODULE_1__.createElement("span", { className: "svc-toolbox__item-container" }, !!this.item.iconName ? react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.SvgIcon, { size: "auto", iconName: this.item.iconName, className: "svc-toolbox__item-icon" }) : null),
|
|
5054
|
+
react__WEBPACK_IMPORTED_MODULE_1__.createElement("span", { className: "svc-toolbox__item-container" }, !!this.item.iconName ? react__WEBPACK_IMPORTED_MODULE_1__.createElement(survey_react_ui__WEBPACK_IMPORTED_MODULE_3__.SvgIcon, { title: this.item.tooltip || this.item.title, size: "auto", iconName: this.item.iconName, className: "svc-toolbox__item-icon" }) : null),
|
|
5057
5055
|
(this.props.isCompact ?
|
|
5058
5056
|
null
|
|
5059
5057
|
:
|
|
@@ -5492,7 +5490,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5492
5490
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
5493
5491
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_63__);
|
|
5494
5492
|
var Version;
|
|
5495
|
-
Version = "".concat("1.12.
|
|
5493
|
+
Version = "".concat("1.12.34");
|
|
5496
5494
|
// import "@survey/creator/survey-creator-core.css";
|
|
5497
5495
|
|
|
5498
5496
|
|
|
@@ -5565,7 +5563,7 @@ Version = "".concat("1.12.32");
|
|
|
5565
5563
|
|
|
5566
5564
|
|
|
5567
5565
|
|
|
5568
|
-
(0,survey_core__WEBPACK_IMPORTED_MODULE_63__.checkLibraryVersion)("".concat("1.12.
|
|
5566
|
+
(0,survey_core__WEBPACK_IMPORTED_MODULE_63__.checkLibraryVersion)("".concat("1.12.34"), "survey-creator-react");
|
|
5569
5567
|
|
|
5570
5568
|
})();
|
|
5571
5569
|
|