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 CHANGED
@@ -3,11 +3,38 @@
3
3
  [![Build Status](https://dev.azure.com/SurveyJS/SurveyJS%20Integration%20Tests/_apis/build/status/SurveyJS%20Creator?branchName=master)](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
- This package implements a platform-independent survey model for Survey Creator. It should be used with one of the following platform-specific packages:
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](../survey-creator-react) for React
9
- - [survey-creator-knockout](../survey-creator-knockout) for Knockout, jQuery, Angular, and Vue
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
- ## License
12
+ ## Build the Survey Creator Model from Sources
12
13
 
13
- The Survey Creator (Form Builder) is **not available for free commercial usage**. You can find more information about licensing this product on the following page: [Licenses](http://surveyjs.io/Licenses).
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.73",
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.73"
40
+ "survey-core": "1.9.75"
41
41
  },
42
42
  "devDependencies": {}
43
43
  }