@playfast/reform-forms 0.0.11 → 0.1.0
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
# `@playfast/forms`
|
|
3
|
+
# `@playfast/reform-forms`
|
|
4
4
|
|
|
5
5
|
**Headless form state for [reform](https://www.npmjs.com/package/@playfast/reform).**
|
|
6
6
|
Values, validation, field metadata, list operations, submit flow, and correlations with the rest of your app state — rendering nothing.
|
|
7
7
|
|
|
8
|
-
[](https://www.npmjs.com/package/@playfast/forms)
|
|
9
|
-
[](#license)
|
|
8
|
+
[](https://www.npmjs.com/package/@playfast/reform-forms)
|
|
9
|
+
[](#license)
|
|
10
10
|
[](https://effect.website)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
14
|
---
|
|
15
15
|
|
|
16
|
-
`@playfast/forms` owns everything a form needs *except* its widgets. It has no DOM and no React API — it produces a typed, platform-neutral view that any renderer can map. Pair it with [`@playfast/forms-react`](https://www.npmjs.com/package/@playfast/forms-react) for typed JSX, or consume the view directly from a custom host.
|
|
16
|
+
`@playfast/reform-forms` owns everything a form needs *except* its widgets. It has no DOM and no React API — it produces a typed, platform-neutral view that any renderer can map. Pair it with [`@playfast/reform-forms-react`](https://www.npmjs.com/package/@playfast/reform-forms-react) for typed JSX, or consume the view directly from a custom host.
|
|
17
17
|
|
|
18
18
|
## Install
|
|
19
19
|
|
|
20
20
|
```sh
|
|
21
|
-
bun add @playfast/forms @playfast/reform effect
|
|
21
|
+
bun add @playfast/reform-forms @playfast/reform effect
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
Peers: `effect` and `@playfast/reform`.
|
|
@@ -121,7 +121,7 @@ Each item is `{ key, index, value, remove, move }`, so UI layers can map rows wi
|
|
|
121
121
|
|
|
122
122
|
## The reform family
|
|
123
123
|
|
|
124
|
-
Core [`@playfast/reform`](https://www.npmjs.com/package/@playfast/reform) · typed JSX [`@playfast/forms-react`](https://www.npmjs.com/package/@playfast/forms-react) · hosts [`@playfast/react`](https://www.npmjs.com/package/@playfast/react) / [`@playfast/react-native`](https://www.npmjs.com/package/@playfast/react-native) · testing [`@playfast/proof`](https://www.npmjs.com/package/@playfast/proof)
|
|
124
|
+
Core [`@playfast/reform`](https://www.npmjs.com/package/@playfast/reform) · typed JSX [`@playfast/reform-forms-react`](https://www.npmjs.com/package/@playfast/reform-forms-react) · hosts [`@playfast/reform-react`](https://www.npmjs.com/package/@playfast/reform-react) / [`@playfast/reform-react-native`](https://www.npmjs.com/package/@playfast/reform-react-native) · testing [`@playfast/reform-proof`](https://www.npmjs.com/package/@playfast/reform-proof)
|
|
125
125
|
|
|
126
126
|
## License
|
|
127
127
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@playfast/reform-forms",
|
|
3
3
|
"playbook": "./playbook",
|
|
4
|
-
"version": "0.0
|
|
4
|
+
"version": "0.1.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Headless, schema-driven form state for reform — values, validation, field limitations, list operations, and submit flow, rendering nothing.",
|
|
7
7
|
"keywords": [
|