react-formio-engine 1.0.5 → 1.0.7
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 +4 -0
- package/package.json +20 -1
package/README.md
CHANGED
|
@@ -114,6 +114,10 @@ import { FormEngineProvider, Form } from 'react-formio-engine';
|
|
|
114
114
|
- `ReactComponent` and `baseEditForm` re-exported for existing custom components
|
|
115
115
|
- Drop-in API compatible with `@formio/react`
|
|
116
116
|
|
|
117
|
+
## Keywords
|
|
118
|
+
|
|
119
|
+
`react` `formio` `form-builder` `form-renderer` `json-schema-form` `drag-and-drop` `form-engine` `formiojs` `functional-components`
|
|
120
|
+
|
|
117
121
|
## License
|
|
118
122
|
|
|
119
123
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-formio-engine",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "Form engine with builder and renderer - formiojs-powered with React functional components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/form-engine.umd.js",
|
|
@@ -33,6 +33,25 @@
|
|
|
33
33
|
"react-dom": "^18.3.1",
|
|
34
34
|
"vite": "^7.3.1"
|
|
35
35
|
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"react",
|
|
38
|
+
"formio",
|
|
39
|
+
"form-builder",
|
|
40
|
+
"form-renderer",
|
|
41
|
+
"json-schema-form",
|
|
42
|
+
"drag-and-drop",
|
|
43
|
+
"form-engine",
|
|
44
|
+
"formiojs",
|
|
45
|
+
"functional-components"
|
|
46
|
+
],
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "https://github.com/preshin/react-formio-engine.git"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/preshin/react-formio-engine#readme",
|
|
52
|
+
"bugs": {
|
|
53
|
+
"url": "https://github.com/preshin/react-formio-engine/issues"
|
|
54
|
+
},
|
|
36
55
|
"license": "MIT",
|
|
37
56
|
"dependencies": {
|
|
38
57
|
"formiojs": "^4.21.7"
|