@opengeoweb/form-fields 8.3.0 → 8.3.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/index.esm.js +7 -0
- package/package.json +3 -3
package/index.esm.js
CHANGED
|
@@ -24801,6 +24801,13 @@ function setRef(ref, value) {
|
|
|
24801
24801
|
}
|
|
24802
24802
|
}
|
|
24803
24803
|
|
|
24804
|
+
/**
|
|
24805
|
+
* A version of `React.useLayoutEffect` that does not show a warning when server-side rendering.
|
|
24806
|
+
* This is useful for effects that are only needed for client-side rendering but not for SSR.
|
|
24807
|
+
*
|
|
24808
|
+
* Before you use this hook, make sure to read https://gist.github.com/gaearon/e7d97cdf38a2907924ea12e4ebdf3c85
|
|
24809
|
+
* and confirm it doesn't apply to your use-case.
|
|
24810
|
+
*/
|
|
24804
24811
|
const useEnhancedEffect = typeof window !== 'undefined' ? React.useLayoutEffect : React.useEffect;
|
|
24805
24812
|
var useEnhancedEffect$1 = useEnhancedEffect;
|
|
24806
24813
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/form-fields",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.1",
|
|
4
4
|
"description": "GeoWeb form-fields library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"@mui/material": "5.12.0",
|
|
16
16
|
"@mui/x-date-pickers": "6.2.1",
|
|
17
|
-
"@opengeoweb/theme": "8.3.
|
|
17
|
+
"@opengeoweb/theme": "8.3.1",
|
|
18
18
|
"lodash": "4.17.21",
|
|
19
19
|
"moment": "2.29.4",
|
|
20
20
|
"moment-timezone": "0.5.43",
|
|
21
21
|
"react": "18.2.0",
|
|
22
|
-
"react-hook-form": "7.
|
|
22
|
+
"react-hook-form": "7.47.0"
|
|
23
23
|
}
|
|
24
24
|
}
|