survey-js-ui 2.5.13 → 2.5.15
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-js-ui.mjs +403 -354
- package/fesm/survey-js-ui.mjs.map +1 -1
- package/index.html +1 -1
- package/package.json +11 -11
- package/survey-js-ui.js +7761 -12310
- package/survey-js-ui.js.map +1 -1
- package/survey-js-ui.min.js +6 -2
- package/typings/survey-react-ui/src/progressButtons.d.ts +2 -1
- package/typings/survey-react-ui/src/reactSurveyNavigationBase.d.ts +2 -2
- package/survey-js-ui.min.js.LICENSE.txt +0 -5
package/index.html
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-js-ui",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.15",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"description": "A free MIT-licensed UI component that renders dynamic, interactive JSON-based forms and surveys in apps built with HTML, CSS, and JavaScript. You can use it to collect responses from users and send them to your own database.",
|
|
6
|
-
"homepage": "https://surveyjs.io/",
|
|
7
5
|
"author": "DevSoft Baltic OU <info@devsoftbaltic.com>",
|
|
6
|
+
"homepage": "https://surveyjs.io/",
|
|
7
|
+
"description": "A free MIT-licensed UI component that renders dynamic, interactive JSON-based forms and surveys in apps built with HTML, CSS, and JavaScript. You can use it to collect responses from users and send them to your own database.",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"vanilla",
|
|
10
10
|
"vanilla-js",
|
|
@@ -37,24 +37,24 @@
|
|
|
37
37
|
"files": [
|
|
38
38
|
"**/*"
|
|
39
39
|
],
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "https://github.com/surveyjs/surveyjs.git"
|
|
43
|
+
},
|
|
40
44
|
"main": "survey-js-ui.js",
|
|
41
45
|
"module": "fesm/survey-js-ui.mjs",
|
|
42
|
-
"typings": "./typings/
|
|
46
|
+
"typings": "./typings/entries/index.d.ts",
|
|
43
47
|
"exports": {
|
|
44
48
|
".": {
|
|
45
|
-
"types": "./typings/
|
|
49
|
+
"types": "./typings/entries/index.d.ts",
|
|
46
50
|
"import": "./fesm/survey-js-ui.mjs",
|
|
47
51
|
"require": "./survey-js-ui.js"
|
|
48
52
|
}
|
|
49
53
|
},
|
|
50
|
-
"repository": {
|
|
51
|
-
"type": "git",
|
|
52
|
-
"url": "https://github.com/surveyjs/surveyjs.git"
|
|
53
|
-
},
|
|
54
54
|
"dependencies": {},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"survey-core": "2.5.
|
|
56
|
+
"survey-core": "2.5.15",
|
|
57
57
|
"@types/react-dom": "*",
|
|
58
58
|
"@types/react": "*"
|
|
59
59
|
}
|
|
60
|
-
}
|
|
60
|
+
}
|