@refinedev/antd 5.34.0 → 5.34.2
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/CHANGELOG.md +13 -1
- package/README.md +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/hooks/form/useModalForm/useModalForm.d.ts.map +1 -1
- package/dist/iife/index.js +6 -6
- package/dist/iife/index.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/hooks/form/useModalForm/useModalForm.ts +1 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@refinedev/antd",
|
3
|
-
"version": "5.34.
|
3
|
+
"version": "5.34.2",
|
4
4
|
"description": "refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
|
5
5
|
"private": false,
|
6
6
|
"sideEffects": [
|
@@ -28,7 +28,7 @@
|
|
28
28
|
"devDependencies": {
|
29
29
|
"@refinedev/cli": "^2.7.6",
|
30
30
|
"@refinedev/ui-tests": "^1.13.0",
|
31
|
-
"@refinedev/core": "^4.
|
31
|
+
"@refinedev/core": "^4.38.2",
|
32
32
|
"@esbuild-plugins/node-resolve": "^0.1.4",
|
33
33
|
"@testing-library/jest-dom": "^5.16.4",
|
34
34
|
"@testing-library/react": "^13.1.1",
|
@@ -206,6 +206,7 @@ export const useModalForm = <
|
|
206
206
|
React.useEffect(() => {
|
207
207
|
if (initiallySynced === false && syncWithLocationKey) {
|
208
208
|
const openStatus = parsed?.params?.[syncWithLocationKey]?.open;
|
209
|
+
|
209
210
|
if (typeof openStatus === "boolean") {
|
210
211
|
if (openStatus) {
|
211
212
|
show();
|