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.
Files changed (31) hide show
  1. package/README.md +4 -3
  2. package/dist/cjs/gform-react.development.js +280 -238
  3. package/dist/cjs/gform-react.development.js.map +1 -1
  4. package/dist/cjs/gform-react.production.js +1 -1
  5. package/dist/cjs/gform-react.production.js.map +1 -1
  6. package/dist/esm/GForm.production.js +1 -1
  7. package/dist/esm/GForm.production.js.map +1 -1
  8. package/dist/esm/GInput.production.js +1 -1
  9. package/dist/esm/GInput.production.js.map +1 -1
  10. package/dist/esm/GValidator.production.js +1 -1
  11. package/dist/esm/GValidator.production.js.map +1 -1
  12. package/dist/esm/index.development.js +286 -243
  13. package/dist/esm/index.development.js.map +1 -1
  14. package/dist/esm/index.js +2 -1
  15. package/dist/esm/shared.production.js +1 -1
  16. package/dist/esm/shared.production.js.map +1 -1
  17. package/dist/index.d.ts +25 -12
  18. package/native/dist/cjs/gform-react-native.development.js +222 -284
  19. package/native/dist/cjs/gform-react-native.development.js.map +1 -1
  20. package/native/dist/cjs/gform-react-native.production.js +1 -1
  21. package/native/dist/cjs/gform-react-native.production.js.map +1 -1
  22. package/native/dist/esm/RNGForm.production.js +1 -1
  23. package/native/dist/esm/RNGForm.production.js.map +1 -1
  24. package/native/dist/esm/RNGInput.production.js +1 -1
  25. package/native/dist/esm/RNGInput.production.js.map +1 -1
  26. package/native/dist/esm/index.development.js +228 -288
  27. package/native/dist/esm/index.development.js.map +1 -1
  28. package/native/dist/esm/shared.production.js +1 -1
  29. package/native/dist/esm/shared.production.js.map +1 -1
  30. package/native/dist/index.d.ts +4 -8
  31. 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, no dependencies
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
- * Accessiblity semi-automatic (required inputs and invalid inputs automatically sets aria-required and aria-invalid)
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 dependecies
42
+ react >=16.8.0, react-dom >=16.8.0 are peer dependencies