@opengeoweb/form-fields 19.1.0 → 19.1.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.
- package/dist/README.md +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +1177 -0
- package/dist/src/index.d.ts +5 -0
- package/dist/src/lib/components/DegreesMinutesField.d.ts +15 -0
- package/dist/src/lib/components/Providers.d.ts +19 -0
- package/dist/src/lib/components/ReactHookFormDateTime.d.ts +24 -0
- package/dist/src/lib/components/ReactHookFormFormControl.d.ts +12 -0
- package/dist/src/lib/components/ReactHookFormHiddenInput.d.ts +7 -0
- package/dist/src/lib/components/ReactHookFormNumberField.d.ts +12 -0
- package/dist/src/lib/components/ReactHookFormProvider.d.ts +9 -0
- package/dist/src/lib/components/ReactHookFormRadioGroup.d.ts +9 -0
- package/dist/src/lib/components/ReactHookFormSelect.d.ts +8 -0
- package/dist/src/lib/components/ReactHookFormTextField.d.ts +10 -0
- package/dist/src/lib/components/formUtils.d.ts +3 -0
- package/dist/src/lib/components/index.d.ts +13 -0
- package/dist/src/lib/components/types.d.ts +8 -0
- package/dist/src/lib/components/utils.d.ts +37 -0
- package/dist/src/lib/hooks/useDraftFormHelpers/useDraftFormHelpers.d.ts +8 -0
- package/dist/src/lib/utils/i18n.d.ts +7 -0
- package/package.json +2 -1
package/dist/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+

|
|
2
|
+

|
|
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).
|
|
12
|
+
|
|
13
|
+
### TypeScript Documentation
|
|
14
|
+
|
|
15
|
+
- [TypeScript Docs](https://opengeoweb.gitlab.io/opengeoweb/typescript-docs/form-fields/)
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./src/index";
|