@dmitryvim/form-builder 0.1.29 → 0.1.33
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 +30 -7
- package/dist/demo.js +140 -6
- package/dist/elements.html +702 -0
- package/dist/elements.js +450 -0
- package/dist/form-builder.js +1253 -110
- package/dist/index.html +3 -0
- package/package.json +2 -2
- package/dist/images/final_video.mp4 +0 -0
- package/dist/images/infographic_draft.jpg +0 -0
package/dist/index.html
CHANGED
|
@@ -112,6 +112,9 @@
|
|
|
112
112
|
<p class="text-xs text-gray-500">JSON Schema → Dynamic Forms</p>
|
|
113
113
|
</div>
|
|
114
114
|
</div>
|
|
115
|
+
<div class="flex items-center space-x-4">
|
|
116
|
+
<a href="./elements.html" class="text-sm text-blue-600 hover:text-blue-800">Element Types Documentation →</a>
|
|
117
|
+
</div>
|
|
115
118
|
</div>
|
|
116
119
|
</div>
|
|
117
120
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.33",
|
|
7
7
|
"description": "A reusable JSON schema form builder library",
|
|
8
8
|
"main": "dist/form-builder.js",
|
|
9
9
|
"module": "dist/form-builder.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"docs"
|
|
22
22
|
],
|
|
23
23
|
"scripts": {
|
|
24
|
-
"build": "mkdir -p dist && cp public/index.html dist/index.html && cp src/form-builder.js dist/form-builder.js && cp public/demo.js dist/demo.js && cp
|
|
24
|
+
"build": "mkdir -p dist && cp public/index.html dist/index.html && cp src/form-builder.js dist/form-builder.js && cp public/demo.js dist/demo.js && cp public/elements.html dist/elements.html && cp public/elements.js dist/elements.js",
|
|
25
25
|
"dev": "npm run build && serve dist --single",
|
|
26
26
|
"test": "jest",
|
|
27
27
|
"format": "prettier --write .",
|
|
Binary file
|
|
Binary file
|