survey-creator-react 1.9.3-beta.1 → 1.9.7-beta.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 +3 -3
- package/package.json +1 -1
- package/survey-creator-react.css +638 -359
- package/survey-creator-react.d.ts +4493 -443
- package/survey-creator-react.js +2363 -744
- package/survey-creator-react.min.css +636 -357
- package/survey-creator-react.min.js +63 -51
package/README.md
CHANGED
|
@@ -9,12 +9,12 @@ Survey Creator V2 for React is a visual survey designer / form builder for the R
|
|
|
9
9
|
- [Documentation](https://surveyjs.io/Documentation/Survey-Creator)
|
|
10
10
|
- [Create your Survey or Form now](https://surveyjs.io/create-survey-v2)
|
|
11
11
|
|
|
12
|
-
**NOTE**: This package contains Survey Creator V2. If you are looking for information on V1, refer to the [survey-creator](
|
|
12
|
+
**NOTE**: This package contains Survey Creator V2. If you are looking for information on V1, refer to the [survey-creator](/packages/survey-creator) directory. Differences between these two versions are described in the following help topic: [SurveyJS Creator V2: What's new](https://surveyjs.io/Documentation/Survey-Creator?id=Creator-V2-Whats-New). For information on how to migrate to V2, refer to the [Migration Guide for SurveyJS Creator - from V1 to V2](https://surveyjs.io/Documentation/Survey-Creator?id=Migrate-from-V1-to-V2) article.
|
|
13
13
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
npm install survey-creator-react --
|
|
17
|
+
npm install survey-creator-react --save
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## Add Survey Creator V2 to Your Project
|
|
@@ -24,7 +24,7 @@ Create a new component and use it in your React application:
|
|
|
24
24
|
```js
|
|
25
25
|
import { Component, Fragment } from "react";
|
|
26
26
|
import { SurveyCreatorComponent, SurveyCreator } from "survey-creator-react";
|
|
27
|
-
// Import CSS
|
|
27
|
+
// Import CSS files for SurveyJS (survey-core) and Survey Creator
|
|
28
28
|
import "survey-core/defaultV2.min.css";
|
|
29
29
|
import "survey-creator-react/survey-creator-react.min.css";
|
|
30
30
|
|