@rebasepro/forms 0.21.0 → 0.21.1-canary.g8c5a265
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 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,10 +9,10 @@ pnpm add @rebasepro/forms
|
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
ESM-only: `"type": "module"` with no CommonJS build, so it is loaded with
|
|
12
|
-
`import`.
|
|
13
|
-
`require(esm)
|
|
12
|
+
`import`. It needs Node `>=22.22.0` (its `engines` floor), where `require()`
|
|
13
|
+
of it resolves too: Node has supported `require(esm)` since 22.12.
|
|
14
14
|
|
|
15
|
-
**Peer dependencies:** `react
|
|
15
|
+
**Peer dependencies:** `react ^19.2.7`, `react-dom ^19.2.7`
|
|
16
16
|
|
|
17
17
|
## What This Package Does
|
|
18
18
|
|
|
@@ -105,5 +105,5 @@ function SubmitButton() {
|
|
|
105
105
|
|
|
106
106
|
## Related Packages
|
|
107
107
|
|
|
108
|
-
- `@rebasepro/cms` — Uses Formex for all
|
|
108
|
+
- `@rebasepro/cms` — Uses Formex for all entity editing forms
|
|
109
109
|
- `@rebasepro/app` — Core Rebase framework
|