@uportal/form-builder 1.3.2 → 2.0.0
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 +10 -0
- package/dist/form-builder.js +699 -0
- package/dist/form-builder.js.map +1 -0
- package/dist/form-builder.min.js +317 -0
- package/dist/form-builder.min.js.map +1 -0
- package/package.json +35 -53
- package/src/form-builder.js +673 -0
- package/CHANGELOG.md +0 -219
- package/build/asset-manifest.json +0 -7
- package/build/favicon.ico +0 -0
- package/build/index.html +0 -1
- package/build/manifest.json +0 -15
- package/build/precache-manifest.e7546ad26defe0da5fad7a6ae0d03bdb.js +0 -10
- package/build/sample/communication-preferences/form.json +0 -0
- package/build/service-worker.js +0 -34
- package/build/static/js/form-builder.js +0 -2
- package/build/static/js/form-builder.js.map +0 -1
- package/src/App.js +0 -301
- package/src/App.test.js +0 -9
- package/src/setupProxy.js +0 -8
package/README.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
12
|
npm install @uportal/form-builder
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Publish to local Maven cache (~/.m2/repository)
|
|
17
|
+
|
|
18
|
+
To create a Jar of the built web component and publish to cache, run:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
./gradlew jar
|
|
22
|
+
./gradlew publishToMavenLocal
|
|
13
23
|
```
|
|
14
24
|
|
|
15
25
|
## Usage
|