gform-react 1.11.1 → 2.5.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 +4 -3
- package/dist/cjs/gform-react.development.js +280 -238
- package/dist/cjs/gform-react.development.js.map +1 -1
- package/dist/cjs/gform-react.production.js +1 -1
- package/dist/cjs/gform-react.production.js.map +1 -1
- package/dist/esm/GForm.production.js +1 -1
- package/dist/esm/GForm.production.js.map +1 -1
- package/dist/esm/GInput.production.js +1 -1
- package/dist/esm/GInput.production.js.map +1 -1
- package/dist/esm/GValidator.production.js +1 -1
- package/dist/esm/GValidator.production.js.map +1 -1
- package/dist/esm/index.development.js +286 -243
- package/dist/esm/index.development.js.map +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/shared.production.js +1 -1
- package/dist/esm/shared.production.js.map +1 -1
- package/dist/index.d.ts +25 -12
- package/native/dist/cjs/gform-react-native.development.js +222 -284
- package/native/dist/cjs/gform-react-native.development.js.map +1 -1
- package/native/dist/cjs/gform-react-native.production.js +1 -1
- package/native/dist/cjs/gform-react-native.production.js.map +1 -1
- package/native/dist/esm/RNGForm.production.js +1 -1
- package/native/dist/esm/RNGForm.production.js.map +1 -1
- package/native/dist/esm/RNGInput.production.js +1 -1
- package/native/dist/esm/RNGInput.production.js.map +1 -1
- package/native/dist/esm/index.development.js +228 -288
- package/native/dist/esm/index.development.js.map +1 -1
- package/native/dist/esm/shared.production.js +1 -1
- package/native/dist/esm/shared.production.js.map +1 -1
- package/native/dist/index.d.ts +4 -8
- package/package.json +27 -24
package/README.md
CHANGED
|
@@ -13,12 +13,13 @@ it doesn't matter which UI library you're using,
|
|
|
13
13
|
it only cares about the form and the inputs inside.
|
|
14
14
|
|
|
15
15
|
## Pros
|
|
16
|
-
* Lightweight
|
|
16
|
+
* Lightweight
|
|
17
17
|
* Based on native form and constraint validations (can also add custom and async validations)
|
|
18
18
|
* Can be used with any UI library that preserves native form controls (input, button, etc. can also be adjusted to non-native controls)
|
|
19
19
|
* Tree shakeable
|
|
20
|
-
*
|
|
20
|
+
* Accessibility semi-automatic (required inputs and invalid inputs automatically sets aria-required and aria-invalid)
|
|
21
21
|
* React Native support
|
|
22
|
+
* Supports React 19, Next.js 15
|
|
22
23
|
|
|
23
24
|
## Docs
|
|
24
25
|
https://gform-react.onrender.com
|
|
@@ -38,4 +39,4 @@ yarn add gform-react
|
|
|
38
39
|
```
|
|
39
40
|
|
|
40
41
|
#### NOTE:
|
|
41
|
-
react >=16.8.0, react-dom >=16.8.0 are peer
|
|
42
|
+
react >=16.8.0, react-dom >=16.8.0 are peer dependencies
|