@dmitryvim/form-builder 0.1.22 → 0.1.24
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 +13 -6
- package/dist/demo.js +488 -473
- package/dist/form-builder.js +1433 -1291
- package/dist/index.html +270 -142
- package/docs/13_form_builder.html +1217 -543
- package/docs/REQUIREMENTS.md +46 -14
- package/docs/integration.md +241 -206
- package/docs/schema.md +37 -31
- package/package.json +14 -2
package/README.md
CHANGED
|
@@ -14,12 +14,19 @@ Try it now: **[https://picazru.github.io/form-builder/dist/index.html](https://p
|
|
|
14
14
|
|
|
15
15
|
```html
|
|
16
16
|
<!-- Embed via iframe -->
|
|
17
|
-
<iframe
|
|
18
|
-
|
|
17
|
+
<iframe
|
|
18
|
+
src="https://picazru.github.io/form-builder/dist/index.html"
|
|
19
|
+
width="100%"
|
|
20
|
+
height="600px"
|
|
21
|
+
frameborder="0"
|
|
22
|
+
></iframe>
|
|
19
23
|
|
|
20
24
|
<!-- With custom schema -->
|
|
21
|
-
<iframe
|
|
22
|
-
|
|
25
|
+
<iframe
|
|
26
|
+
src="https://picazru.github.io/form-builder/dist/index.html?schema=BASE64_SCHEMA"
|
|
27
|
+
width="100%"
|
|
28
|
+
height="600px"
|
|
29
|
+
></iframe>
|
|
23
30
|
```
|
|
24
31
|
|
|
25
32
|
### NPM Installation
|
|
@@ -75,10 +82,10 @@ See [Integration Guide](docs/integration.md) for complete setup instructions.
|
|
|
75
82
|
## Documentation
|
|
76
83
|
|
|
77
84
|
- [Integration Guide](docs/integration.md) - How to use and integrate
|
|
78
|
-
- [Schema Reference](docs/schema.md) - Complete schema documentation
|
|
85
|
+
- [Schema Reference](docs/schema.md) - Complete schema documentation
|
|
79
86
|
- [Requirements](docs/requirements.md) - Product and business requirements
|
|
80
87
|
- [Development Guide](development.md) - Development and testing
|
|
81
88
|
|
|
82
89
|
## License
|
|
83
90
|
|
|
84
|
-
MIT - see [LICENSE](LICENSE) file.
|
|
91
|
+
MIT - see [LICENSE](LICENSE) file.
|