@conform-to/yup 1.0.0-rc.0 → 1.0.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 +3 -3
- package/package.json +2 -2
package/README
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
╚══════╝ ╚═════╝ ╚═╝ ╚══╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
Version 1.0.0-rc.
|
|
11
|
+
Version 1.0.0-rc.1 / License MIT / Copyright (c) 2024 Edmund Hung
|
|
12
12
|
|
|
13
|
-
A type-safe form validation library utilizing web fundamentals to progressively enhance HTML Forms with full support for server frameworks like Remix
|
|
13
|
+
A type-safe form validation library utilizing web fundamentals to progressively enhance HTML Forms with full support for server frameworks like Remix and Next.js.
|
|
14
14
|
|
|
15
15
|
> Getting Started
|
|
16
16
|
|
|
@@ -21,7 +21,7 @@ Check out the overview and tutorial at our website https://conform.guide
|
|
|
21
21
|
The documentation is divided into several sections:
|
|
22
22
|
|
|
23
23
|
* Overview: https://conform.guide/overview
|
|
24
|
-
*
|
|
24
|
+
* Examples: https://conform.guide/examples
|
|
25
25
|
* Complex structures: https://conform.guide/complex-structures
|
|
26
26
|
* UI Integrations: https://conform.guide/integrations
|
|
27
27
|
* Accessibility Guide: https://conform.guide/accessibility
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Conform helpers for integrating with yup",
|
|
4
4
|
"homepage": "https://conform.guide",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "1.0.0
|
|
6
|
+
"version": "1.0.0",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"module": "index.mjs",
|
|
9
9
|
"types": "index.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"url": "https://github.com/edmundhung/conform/issues"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@conform-to/dom": "1.0.0
|
|
28
|
+
"@conform-to/dom": "1.0.0",
|
|
29
29
|
"yup": ">=0.32.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|