@redapollos/storm-form 0.2.0 → 0.2.1
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 +18 -0
- package/dist/storm-form.es.js +1535 -57409
- package/dist/storm-form.umd.cjs +6 -324
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -2,4 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
This package handles creation of a form via StormCMS's forms.
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Install the package and required peer dependencies:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @redapollos/storm-form antd axios dayjs
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Peer Dependencies
|
|
14
|
+
|
|
15
|
+
`@redapollos/storm-form` expects the host app to provide:
|
|
16
|
+
|
|
17
|
+
- `react` (>=19)
|
|
18
|
+
- `react-dom` (>=19)
|
|
19
|
+
- `antd` (>=6)
|
|
20
|
+
- `axios` (>=1)
|
|
21
|
+
- `dayjs` (>=1)
|
|
22
|
+
|
|
5
23
|
...more later
|