survey-creator-js 2.5.10 → 2.5.11
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-js.mjs +3 -3
- package/fesm/ui-preset-editor/index.mjs +1 -1
- package/package.json +4 -4
- package/survey-creator-js.js +228 -222
- package/survey-creator-js.js.map +1 -1
- package/survey-creator-js.min.js +1 -1
- package/survey-creator-js.min.js.LICENSE.txt +1 -1
- package/ui-preset-editor/index.js +25 -19
- package/ui-preset-editor/index.js.map +1 -1
- package/ui-preset-editor/index.min.js +1 -1
- package/ui-preset-editor/index.min.js.LICENSE.txt +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator UI v2.5.
|
|
2
|
+
* SurveyJS Creator UI v2.5.11
|
|
3
3
|
* (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* Github: https://github.com/surveyjs/survey-creator
|
|
5
5
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
@@ -2945,8 +2945,8 @@ ReactQuestionFactory.Instance.registerQuestion("sv-boolean-switch", (props) => {
|
|
|
2945
2945
|
RendererFactory.Instance.registerRenderer("boolean", "switch", "sv-boolean-switch");
|
|
2946
2946
|
|
|
2947
2947
|
let Version;
|
|
2948
|
-
Version = `${"2.5.
|
|
2949
|
-
checkLibraryVersion(`${"2.5.
|
|
2948
|
+
Version = `${"2.5.11"}`;
|
|
2949
|
+
checkLibraryVersion(`${"2.5.11"}`, "survey-creator-react");
|
|
2950
2950
|
|
|
2951
2951
|
function renderSurveyCreator(creator, element, props = {}) {
|
|
2952
2952
|
let node = element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-js",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.11",
|
|
4
4
|
"description": "A white-label drag-and-drop form builder for HTML, CSS, and JavaScript apps. It generates JSON schemas for rendering dynamic forms with SurveyJS Form Library. Design complex, interactive forms and surveys without writing code.",
|
|
5
5
|
"author": "DevSoft Baltic OU <info@devsoftbaltic.com>",
|
|
6
6
|
"homepage": "https://surveyjs.io/",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"typings": "./typings/survey-creator-js/entries/index.d.ts",
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"ace-builds": "^1.4.12",
|
|
49
|
-
"survey-core": "2.5.
|
|
50
|
-
"survey-js-ui": "2.5.
|
|
51
|
-
"survey-creator-core": "2.5.
|
|
49
|
+
"survey-core": "2.5.11",
|
|
50
|
+
"survey-js-ui": "2.5.11",
|
|
51
|
+
"survey-creator-core": "2.5.11",
|
|
52
52
|
"@types/react-dom": "*",
|
|
53
53
|
"@types/react": "*"
|
|
54
54
|
},
|