@simpleform/form 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 +1 -1
- package/README_CN.md +1 -1
- package/package.json +5 -8
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ The `Form.Item` component acts as an item in the `Form.List` array type and is c
|
|
|
26
26
|
|
|
27
27
|
## install
|
|
28
28
|
- [Node.js](https://nodejs.org/en/) Version >= 14.0.0
|
|
29
|
-
- [react](https://
|
|
29
|
+
- [react](https://react.docschina.org/) Version >= 16.8.0
|
|
30
30
|
```bash
|
|
31
31
|
npm install @simpleform/form --save
|
|
32
32
|
# or
|
package/README_CN.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simpleform/form",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "simple form component",
|
|
5
5
|
"author": "mezhanglei <496623925@qq.com>",
|
|
6
6
|
"homepage": "https://github.com/mezhanglei/simpleform#readme",
|
|
@@ -8,9 +8,6 @@
|
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"module": "es/index.js",
|
|
10
10
|
"types": "./lib/index.d.ts",
|
|
11
|
-
"engines": {
|
|
12
|
-
"node": ">=14.0.0"
|
|
13
|
-
},
|
|
14
11
|
"directories": {
|
|
15
12
|
"lib": "lib",
|
|
16
13
|
"src": "src",
|
|
@@ -50,9 +47,9 @@
|
|
|
50
47
|
"react-tooltip": "^5.23.0"
|
|
51
48
|
},
|
|
52
49
|
"peerDependencies": {
|
|
53
|
-
"antd": "4.0.0",
|
|
54
|
-
"react": "
|
|
55
|
-
"react-dom": "
|
|
56
|
-
"react-router-dom": "
|
|
50
|
+
"antd": ">=4.0.0",
|
|
51
|
+
"react": ">=16.8.0",
|
|
52
|
+
"react-dom": ">=16.8.0",
|
|
53
|
+
"react-router-dom": ">=5.0.0"
|
|
57
54
|
}
|
|
58
55
|
}
|