@weave-framework/forms 0.2.53 → 0.2.107
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 +21 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# @weave-framework/forms
|
|
2
|
+
|
|
3
|
+
Weave forms — signal-native field/form state + validation over `bind:value`. Zero third-party deps.
|
|
4
|
+
|
|
5
|
+
Part of **[Weave](https://weave-framework.github.io/weave/)** — a fine-grained reactive, signal-native UI framework: no Virtual DOM, zero third-party runtime dependencies.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @weave-framework/forms
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Most apps get this (and the rest of Weave) in one step:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm create weave@latest my-app
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
📚 **Guides + full API reference:** [weave-framework.github.io/weave](https://weave-framework.github.io/weave/)
|
|
18
|
+
|
|
19
|
+
## License
|
|
20
|
+
|
|
21
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weave-framework/forms",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.107",
|
|
4
4
|
"description": "Weave forms — signal-native field/form state + validation over bind:value. Zero third-party deps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@weave-framework/runtime": "0.2.
|
|
35
|
+
"@weave-framework/runtime": "0.2.107"
|
|
36
36
|
},
|
|
37
37
|
"license": "MIT"
|
|
38
38
|
}
|