survey-creator-core 1.9.73 → 1.9.75
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 +32 -5
- package/package.json +2 -2
- package/survey-creator-core.css +6 -3
- package/survey-creator-core.d.ts +18 -2
- package/survey-creator-core.fontless.css +5 -2
- package/survey-creator-core.fontless.min.css +2 -2
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +92 -40
- package/survey-creator-core.min.css +3 -3
- package/survey-creator-core.min.js +2 -2
package/README.md
CHANGED
|
@@ -3,11 +3,38 @@
|
|
|
3
3
|
[](https://dev.azure.com/SurveyJS/SurveyJS%20Integration%20Tests/_build/latest?definitionId=8&branchName=master)
|
|
4
4
|
<a href="https://www.npmjs.com/package/survey-creator"><img alt="NPM Version" src="https://img.shields.io/npm/v/survey-creator.svg" data-canonical-src="https://img.shields.io/npm/v/survey-creator.svg" style="max-width:100%;"></a>
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
A platform-independent data model for Survey Creator / Form Builder by [SurveyJS](https://surveyjs.io/documentation). This package should be used with one of the following platform-specific UI rendering packages:
|
|
7
7
|
|
|
8
|
-
- [survey-creator-react](
|
|
9
|
-
- [survey-creator-
|
|
8
|
+
- [`survey-creator-react`](https://www.npmjs.com/package/survey-creator-react) for React
|
|
9
|
+
- [`survey-creator-angular`](https://www.npmjs.com/package/survey-creator-angular) for Angular
|
|
10
|
+
- [`survey-creator-knockout`](https://www.npmjs.com/package/survey-creator-knockout) for Knockout, jQuery, and Vue
|
|
10
11
|
|
|
11
|
-
##
|
|
12
|
+
## Build the Survey Creator Model from Sources
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
If you want to build the library yourself, do the following:
|
|
15
|
+
|
|
16
|
+
1. **Clone the repo from GitHub and install build dependencies**
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
git clone https://github.com/surveyjs/survey-creator.git
|
|
20
|
+
cd survey-creator/packages/survey-creator-core
|
|
21
|
+
npm install
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
1. **Build the library**
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
npm run build
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
You can find the built library in the "build" directory.
|
|
31
|
+
|
|
32
|
+
1. **Run unit tests**
|
|
33
|
+
```
|
|
34
|
+
npm test
|
|
35
|
+
```
|
|
36
|
+
This command runs unit tests using [Karma](https://karma-runner.github.io/0.13/index.html).
|
|
37
|
+
|
|
38
|
+
## Licensing
|
|
39
|
+
|
|
40
|
+
Survey Creator (Form Builder) is **not available for free commercial usage**. You can find more information about licensing this product on the following page: [Product Licensing](https://surveyjs.io/licensing).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-core",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.75",
|
|
4
4
|
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Library.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Survey",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"ace-builds": "^1.4.12"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"survey-core": "1.9.
|
|
40
|
+
"survey-core": "1.9.75"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {}
|
|
43
43
|
}
|