survey-creator-react 1.12.13 → 1.12.14
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
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
<meta name="description" content="SurveyJS Creator Demo" />
|
|
9
9
|
<title>SurveyJS Creator React</title>
|
|
10
10
|
<!-- <script src="https://cdn.accesslint.com/accesslint-1.1.2.js"></script> -->
|
|
11
|
-
<script src="https://unpkg.com/react@
|
|
12
|
-
<script src="https://unpkg.com/react-dom@
|
|
11
|
+
<script src="https://unpkg.com/react@18.3.1/umd/react.development.js"></script>
|
|
12
|
+
<script src="https://unpkg.com/react-dom@18.3.1/umd/react-dom.development.js"></script>
|
|
13
13
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.js"></script>
|
|
14
14
|
|
|
15
15
|
<script src="./node_modules/survey-core/survey.core.js"></script>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-react",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.14",
|
|
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.
|
|
33
|
-
"survey-react-ui": "1.12.
|
|
34
|
-
"survey-creator-core": "1.12.
|
|
32
|
+
"survey-core": "1.12.14",
|
|
33
|
+
"survey-react-ui": "1.12.14",
|
|
34
|
+
"survey-creator-core": "1.12.14"
|
|
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.14
|
|
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
|
|
@@ -807,10 +807,12 @@ var SurveyPageNavigatorItem = /** @class */ (function (_super) {
|
|
|
807
807
|
item.action(item);
|
|
808
808
|
e.stopPropagation();
|
|
809
809
|
} },
|
|
810
|
-
react__WEBPACK_IMPORTED_MODULE_4__.createElement("div", { className: "svc-page-navigator-item__dot", title: item.title }
|
|
810
|
+
react__WEBPACK_IMPORTED_MODULE_4__.createElement("div", { className: "svc-page-navigator-item__dot", title: item.title },
|
|
811
|
+
react__WEBPACK_IMPORTED_MODULE_4__.createElement("div", { className: "svc-page-navigator-item__dot-content" })),
|
|
811
812
|
react__WEBPACK_IMPORTED_MODULE_4__.createElement("div", { className: "svc-page-navigator-item__banner" },
|
|
812
813
|
react__WEBPACK_IMPORTED_MODULE_4__.createElement("span", { className: "svc-page-navigator-item__text" }, item.title),
|
|
813
|
-
react__WEBPACK_IMPORTED_MODULE_4__.createElement("span", { className: "svc-page-navigator-item__dot" }
|
|
814
|
+
react__WEBPACK_IMPORTED_MODULE_4__.createElement("span", { className: "svc-page-navigator-item__dot" },
|
|
815
|
+
react__WEBPACK_IMPORTED_MODULE_4__.createElement("span", { className: "svc-page-navigator-item__dot-content" })))))));
|
|
814
816
|
};
|
|
815
817
|
return SurveyPageNavigatorItem;
|
|
816
818
|
}(_ModelElement__WEBPACK_IMPORTED_MODULE_5__.CreatorModelElement));
|
|
@@ -3965,7 +3967,7 @@ var TabDesignerComponent = /** @class */ (function (_super) {
|
|
|
3965
3967
|
TabDesignerComponent.prototype.renderTabContent = function () {
|
|
3966
3968
|
var survey = this.creator.survey;
|
|
3967
3969
|
var surveyHeader = this.renderHeader(this.creator.allowEditSurveyTitle);
|
|
3968
|
-
var style = (0,tslib__WEBPACK_IMPORTED_MODULE_0__.__assign)({}, this.
|
|
3970
|
+
var style = (0,tslib__WEBPACK_IMPORTED_MODULE_0__.__assign)({}, this.model.surveyThemeVariables);
|
|
3969
3971
|
if (!!survey.width) {
|
|
3970
3972
|
style.maxWidth = survey.renderedWidth;
|
|
3971
3973
|
}
|
|
@@ -5491,7 +5493,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5491
5493
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
5492
5494
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_63___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_63__);
|
|
5493
5495
|
var Version;
|
|
5494
|
-
Version = "".concat("1.12.
|
|
5496
|
+
Version = "".concat("1.12.14");
|
|
5495
5497
|
// import "@survey/creator/survey-creator-core.css";
|
|
5496
5498
|
|
|
5497
5499
|
|
|
@@ -5564,7 +5566,7 @@ Version = "".concat("1.12.13");
|
|
|
5564
5566
|
|
|
5565
5567
|
|
|
5566
5568
|
|
|
5567
|
-
(0,survey_core__WEBPACK_IMPORTED_MODULE_63__.checkLibraryVersion)("".concat("1.12.
|
|
5569
|
+
(0,survey_core__WEBPACK_IMPORTED_MODULE_63__.checkLibraryVersion)("".concat("1.12.14"), "survey-creator-react");
|
|
5568
5570
|
|
|
5569
5571
|
})();
|
|
5570
5572
|
|