survey-angular-ui 3.0.0-beta.9 → 3.0.1
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/README.md +210 -54
- package/bundles/survey-angular-ui.umd.js +3 -3
- package/bundles/survey-angular-ui.umd.js.map +1 -1
- package/esm2015/components/element-title/element-title.component.js +2 -2
- package/esm2015/panel.component.js +2 -2
- package/esm2015/question.component.js +2 -2
- package/fesm2015/survey-angular-ui.js +3 -3
- package/fesm2015/survey-angular-ui.js.map +1 -1
- package/package.json +15 -8
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-angular-ui",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"homepage": "https://surveyjs.io/",
|
|
5
5
|
"author": "DevSoft Baltic OU <info@devsoftbaltic.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"description": "
|
|
7
|
+
"description": "Angular form library for rendering dynamic, JSON-based forms and surveys. Collect user responses and store them in your own database.",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"angular",
|
|
10
10
|
"survey",
|
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
"dynamic-form",
|
|
18
18
|
"interactive-form",
|
|
19
19
|
"form-library",
|
|
20
|
-
"form-management",
|
|
21
20
|
"questionnaire",
|
|
22
21
|
"data-collection",
|
|
23
22
|
"data-validation",
|
|
@@ -27,11 +26,19 @@
|
|
|
27
26
|
"json",
|
|
28
27
|
"json-schema",
|
|
29
28
|
"angular-schema-form",
|
|
30
|
-
"survey-renderer",
|
|
31
|
-
"client-side",
|
|
32
|
-
"frontend",
|
|
33
29
|
"javascript",
|
|
34
|
-
"typescript"
|
|
30
|
+
"typescript",
|
|
31
|
+
"schema-form",
|
|
32
|
+
"conditional-logic",
|
|
33
|
+
"quiz",
|
|
34
|
+
"poll",
|
|
35
|
+
"localization",
|
|
36
|
+
"css",
|
|
37
|
+
"shadcn",
|
|
38
|
+
"mui",
|
|
39
|
+
"material-ui",
|
|
40
|
+
"bootstrap",
|
|
41
|
+
"bootswatch"
|
|
35
42
|
],
|
|
36
43
|
"repository": {
|
|
37
44
|
"type": "git",
|
|
@@ -42,7 +49,7 @@
|
|
|
42
49
|
"@angular/cdk": "*",
|
|
43
50
|
"@angular/core": "*",
|
|
44
51
|
"@angular/forms": "*",
|
|
45
|
-
"survey-core": "3.0.
|
|
52
|
+
"survey-core": "3.0.1"
|
|
46
53
|
},
|
|
47
54
|
"overrides": {
|
|
48
55
|
"stylus": "github:stylus/stylus#0.54.8"
|