@opengeoweb/form-fields 2.0.1

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 (34) hide show
  1. package/README.md +11 -0
  2. package/form-fields.esm.js +802 -0
  3. package/form-fields.umd.js +836 -0
  4. package/index.d.ts +1 -0
  5. package/lib/components/ReactHookFormDateTime.d.ts +13 -0
  6. package/lib/components/ReactHookFormDateTime.spec.d.ts +1 -0
  7. package/lib/components/ReactHookFormDateTime.stories.d.ts +6 -0
  8. package/lib/components/ReactHookFormFormControl.d.ts +8 -0
  9. package/lib/components/ReactHookFormFormControl.spec.d.ts +1 -0
  10. package/lib/components/ReactHookFormHiddenInput.d.ts +8 -0
  11. package/lib/components/ReactHookFormHiddenInput.spec.d.ts +1 -0
  12. package/lib/components/ReactHookFormHiddenInput.stories.d.ts +6 -0
  13. package/lib/components/ReactHookFormNumberField.d.ts +13 -0
  14. package/lib/components/ReactHookFormNumberField.spec.d.ts +1 -0
  15. package/lib/components/ReactHookFormNumberField.stories.d.ts +6 -0
  16. package/lib/components/ReactHookFormProvider.d.ts +20 -0
  17. package/lib/components/ReactHookFormProvider.spec.d.ts +1 -0
  18. package/lib/components/ReactHookFormProvider.stories.d.ts +6 -0
  19. package/lib/components/ReactHookFormRadioGroup.d.ts +10 -0
  20. package/lib/components/ReactHookFormRadioGroup.spec.d.ts +1 -0
  21. package/lib/components/ReactHookFormRadioGroup.stories.d.ts +6 -0
  22. package/lib/components/ReactHookFormSelect.d.ts +9 -0
  23. package/lib/components/ReactHookFormSelect.spec.d.ts +1 -0
  24. package/lib/components/ReactHookFormSelect.stories.d.ts +6 -0
  25. package/lib/components/ReactHookFormTextField.d.ts +10 -0
  26. package/lib/components/ReactHookFormTextField.spec.d.ts +1 -0
  27. package/lib/components/ReactHookFormTextField.stories.d.ts +6 -0
  28. package/lib/components/formUtils.d.ts +3 -0
  29. package/lib/components/formUtils.spec.d.ts +1 -0
  30. package/lib/components/index.d.ts +11 -0
  31. package/lib/components/types.d.ts +9 -0
  32. package/lib/components/utils.d.ts +42 -0
  33. package/lib/components/utils.spec.d.ts +1 -0
  34. package/package.json +27 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ ![current version](https://img.shields.io/badge/dynamic/json?color=blue&label=version&query=version&url=https://gitlab.com/opengeoweb/opengeoweb/raw/master/libs/form-fields/package.json)
2
+ ![coverage](https://gitlab.com/opengeoweb/opengeoweb/badges/master/coverage.svg?job=test-form-fields)
3
+
4
+ # form-fields
5
+
6
+ GeoWeb form-fields library for the opengeoweb project.
7
+ This library was generated with [Nx](https://nx.dev).
8
+
9
+ ## Running unit tests
10
+
11
+ Run `nx test form-fields` to execute the unit tests via [Jest](https://jestjs.io).