@refinedev/antd 5.20.0 → 5.22.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 (73) hide show
  1. package/CHANGELOG.md +74 -0
  2. package/dist/components/buttons/clone/index.d.ts +2 -2
  3. package/dist/components/buttons/create/index.d.ts +2 -2
  4. package/dist/components/buttons/delete/index.d.ts +1 -1
  5. package/dist/components/buttons/edit/index.d.ts +2 -2
  6. package/dist/components/buttons/export/index.d.ts +1 -1
  7. package/dist/components/buttons/import/index.d.ts +2 -2
  8. package/dist/components/buttons/list/index.d.ts +2 -2
  9. package/dist/components/buttons/refresh/index.d.ts +2 -2
  10. package/dist/components/buttons/save/index.d.ts +1 -1
  11. package/dist/components/buttons/show/index.d.ts +2 -2
  12. package/dist/components/fields/boolean/index.d.ts +1 -1
  13. package/dist/components/fields/date/index.d.ts +1 -1
  14. package/dist/components/fields/email/index.d.ts +1 -1
  15. package/dist/components/fields/file/index.d.ts +1 -1
  16. package/dist/components/fields/image/index.d.ts +1 -1
  17. package/dist/components/fields/markdown/index.d.ts +1 -1
  18. package/dist/components/fields/number/index.d.ts +1 -1
  19. package/dist/components/fields/tag/index.d.ts +1 -1
  20. package/dist/components/fields/text/index.d.ts +1 -1
  21. package/dist/components/fields/url/index.d.ts +1 -1
  22. package/dist/components/pages/auth/index.d.ts +1 -1
  23. package/dist/components/pages/error/index.d.ts +1 -1
  24. package/dist/components/pages/login/index.d.ts +1 -1
  25. package/dist/components/pages/ready/index.d.ts +0 -1
  26. package/dist/components/pages/ready/index.d.ts.map +1 -1
  27. package/dist/esm/index.js +1 -1
  28. package/dist/esm/index.js.map +1 -1
  29. package/dist/hooks/form/useDrawerForm/useDrawerForm.d.ts +3 -3
  30. package/dist/hooks/form/useForm.d.ts +4 -4
  31. package/dist/hooks/form/useForm.d.ts.map +1 -1
  32. package/dist/hooks/form/useModalForm/useModalForm.d.ts +3 -3
  33. package/dist/hooks/form/useStepsForm/useStepsForm.d.ts +3 -3
  34. package/dist/hooks/form/useStepsForm/useStepsForm.d.ts.map +1 -1
  35. package/dist/hooks/import/index.d.ts +3 -3
  36. package/dist/hooks/list/useSimpleList/useSimpleList.d.ts +1 -1
  37. package/dist/hooks/modal/useModal/index.d.ts +1 -1
  38. package/dist/iife/index.js +6 -6
  39. package/dist/iife/index.js.map +1 -1
  40. package/dist/index.js +1 -1
  41. package/dist/index.js.map +1 -1
  42. package/package.json +2 -2
  43. package/src/components/buttons/clone/index.tsx +2 -2
  44. package/src/components/buttons/create/index.tsx +2 -2
  45. package/src/components/buttons/delete/index.tsx +1 -1
  46. package/src/components/buttons/edit/index.tsx +2 -2
  47. package/src/components/buttons/export/index.tsx +1 -1
  48. package/src/components/buttons/import/index.tsx +2 -2
  49. package/src/components/buttons/list/index.tsx +2 -2
  50. package/src/components/buttons/refresh/index.tsx +2 -2
  51. package/src/components/buttons/save/index.tsx +1 -1
  52. package/src/components/buttons/show/index.tsx +2 -2
  53. package/src/components/fields/boolean/index.tsx +1 -1
  54. package/src/components/fields/date/index.tsx +1 -1
  55. package/src/components/fields/email/index.tsx +1 -1
  56. package/src/components/fields/file/index.tsx +1 -1
  57. package/src/components/fields/image/index.tsx +1 -1
  58. package/src/components/fields/markdown/index.tsx +1 -1
  59. package/src/components/fields/number/index.tsx +1 -1
  60. package/src/components/fields/tag/index.tsx +1 -1
  61. package/src/components/fields/text/index.tsx +1 -1
  62. package/src/components/fields/url/index.tsx +1 -1
  63. package/src/components/pages/auth/index.tsx +1 -1
  64. package/src/components/pages/error/index.tsx +1 -1
  65. package/src/components/pages/login/index.tsx +1 -1
  66. package/src/components/pages/ready/index.tsx +0 -1
  67. package/src/hooks/form/useDrawerForm/useDrawerForm.ts +3 -3
  68. package/src/hooks/form/useForm.ts +7 -3
  69. package/src/hooks/form/useModalForm/useModalForm.ts +3 -3
  70. package/src/hooks/form/useStepsForm/useStepsForm.ts +4 -3
  71. package/src/hooks/import/index.tsx +3 -3
  72. package/src/hooks/list/useSimpleList/useSimpleList.ts +1 -1
  73. package/src/hooks/modal/useModal/index.tsx +1 -1
@@ -25,10 +25,10 @@ export declare type UseDrawerFormReturnType<TQueryFnData extends BaseRecord = Ba
25
25
  /**
26
26
  * `useDrawerForm` hook allows you to manage a form within a drawer. It returns Ant Design {@link https://ant.design/components/form/ Form} and {@link https://ant.design/components/drawer/ Drawer} components props.
27
27
  *
28
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/hooks/form/useDrawerForm} for more details.
28
+ * @see {@link https://refine.dev/docs/api-reference/antd/hooks/form/useDrawerForm} for more details.
29
29
  *
30
- * @typeParam TData - Result data of the query extends {@link https://refine.dev/docs/api-references/interfaceReferences#baserecord `BaseRecord`}
31
- * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-references/interfaceReferences#httperror `HttpError`}
30
+ * @typeParam TData - Result data of the query extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences#baserecord `BaseRecord`}
31
+ * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences/#httperror `HttpError`}
32
32
  * @typeParam TVariables - Values for params. default `{}`
33
33
  *
34
34
  *
@@ -19,10 +19,10 @@ export declare type UseFormReturnType<TQueryFnData extends BaseRecord = BaseReco
19
19
  /**
20
20
  * `useForm` is used to manage forms. It uses Ant Design {@link https://ant.design/components/form/ Form} data scope management under the hood and returns the required props for managing the form actions.
21
21
  *
22
- * @see {@link https://refine.dev/docs/api-references/hooks/form/useForm} for more details.
22
+ * @see {@link https://refine.dev/docs/api-reference/core/hooks/useForm} for more details.
23
23
  *
24
- * @typeParam TData - Result data of the query extends {@link https://refine.dev/docs/api-references/interfaceReferences#baserecord `BaseRecord`}
25
- * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-references/interfaceReferences#httperror `HttpError`}
24
+ * @typeParam TData - Result data of the query extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences#baserecord `BaseRecord`}
25
+ * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences/#httperror `HttpError`}
26
26
  * @typeParam TVariables - Values for params. default `{}`
27
27
  * @typeParam TData - Result data returned by the `select` function. Extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences#baserecord `BaseRecord`}. Defaults to `TQueryFnData`
28
28
  * @typeParam TResponse - Result data returned by the mutation function. Extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences#baserecord `BaseRecord`}. Defaults to `TData`
@@ -30,5 +30,5 @@ export declare type UseFormReturnType<TQueryFnData extends BaseRecord = BaseReco
30
30
  *
31
31
  *
32
32
  */
33
- export declare const useForm: <TQueryFnData extends BaseRecord = BaseRecord, TError extends HttpError = HttpError, TVariables = {}, TData extends BaseRecord = TQueryFnData, TResponse extends BaseRecord = TData, TResponseError extends HttpError = TError>({ action, resource, onMutationSuccess: onMutationSuccessProp, onMutationError, submitOnEnter, warnWhenUnsavedChanges: warnWhenUnsavedChangesProp, redirect, successNotification, errorNotification, meta, metaData, liveMode, liveParams, mutationMode, dataProviderName, onLiveEvent, invalidates, undoableTimeout, queryOptions, createMutationOptions, updateMutationOptions, id: idFromProps, }?: UseFormProps<TQueryFnData, TError, TVariables, TData, TResponse, TResponseError>) => UseFormReturnType<TQueryFnData, TError, TVariables, TData, TResponse, TResponseError>;
33
+ export declare const useForm: <TQueryFnData extends BaseRecord = BaseRecord, TError extends HttpError = HttpError, TVariables = {}, TData extends BaseRecord = TQueryFnData, TResponse extends BaseRecord = TData, TResponseError extends HttpError = TError>({ action, resource, onMutationSuccess: onMutationSuccessProp, onMutationError, submitOnEnter, warnWhenUnsavedChanges: warnWhenUnsavedChangesProp, redirect, successNotification, errorNotification, meta, metaData, queryMeta, mutationMeta, liveMode, liveParams, mutationMode, dataProviderName, onLiveEvent, invalidates, undoableTimeout, queryOptions, createMutationOptions, updateMutationOptions, id: idFromProps, }?: UseFormProps<TQueryFnData, TError, TVariables, TData, TResponse, TResponseError>) => UseFormReturnType<TQueryFnData, TError, TVariables, TData, TResponse, TResponseError>;
34
34
  //# sourceMappingURL=useForm.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useForm.d.ts","sourceRoot":"","sources":["../../../src/hooks/form/useForm.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,SAAS,EAAQ,MAAM,MAAM,CAAC;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAEnC,OAAO,EACH,SAAS,EACT,UAAU,EAEV,iBAAiB,IAAI,qBAAqB,EAE1C,YAAY,IAAI,gBAAgB,EAChC,cAAc,EACd,cAAc,EAEjB,MAAM,iBAAiB,CAAC;AAEzB,oBAAY,YAAY,CACpB,YAAY,SAAS,UAAU,GAAG,UAAU,EAC5C,MAAM,SAAS,SAAS,GAAG,SAAS,EACpC,UAAU,GAAG,EAAE,EACf,KAAK,SAAS,UAAU,GAAG,YAAY,EACvC,SAAS,SAAS,UAAU,GAAG,KAAK,EACpC,cAAc,SAAS,SAAS,GAAG,MAAM,IACzC,gBAAgB,CAChB,YAAY,EACZ,MAAM,EACN,UAAU,EACV,KAAK,EACL,SAAS,EACT,cAAc,CACjB,GAAG;IACA,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;CACpC,CAAC;AAEF,oBAAY,iBAAiB,CACzB,YAAY,SAAS,UAAU,GAAG,UAAU,EAC5C,MAAM,SAAS,SAAS,GAAG,SAAS,EACpC,UAAU,GAAG,EAAE,EACf,KAAK,SAAS,UAAU,GAAG,YAAY,EACvC,SAAS,SAAS,UAAU,GAAG,KAAK,EACpC,cAAc,SAAS,SAAS,GAAG,MAAM,IACzC,qBAAqB,CACrB,YAAY,EACZ,MAAM,EACN,UAAU,EACV,KAAK,EACL,SAAS,EACT,cAAc,CACjB,GAAG;IACA,IAAI,EAAE,YAAY,CAAC,UAAU,CAAC,CAAC;IAC/B,SAAS,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;IACjC,eAAe,EAAE,WAAW,GAAG;QAC3B,OAAO,EAAE,MAAM,IAAI,CAAC;KACvB,CAAC;IACF,QAAQ,EAAE,CACN,MAAM,CAAC,EAAE,UAAU,KAClB,OAAO,CAAC,cAAc,CAAC,SAAS,CAAC,GAAG,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC;CAC9E,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,OAAO,kxBAoInB,CAAC"}
1
+ {"version":3,"file":"useForm.d.ts","sourceRoot":"","sources":["../../../src/hooks/form/useForm.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,SAAS,EAAQ,MAAM,MAAM,CAAC;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAEnC,OAAO,EACH,SAAS,EACT,UAAU,EAEV,iBAAiB,IAAI,qBAAqB,EAE1C,YAAY,IAAI,gBAAgB,EAChC,cAAc,EACd,cAAc,EAEjB,MAAM,iBAAiB,CAAC;AAEzB,oBAAY,YAAY,CACpB,YAAY,SAAS,UAAU,GAAG,UAAU,EAC5C,MAAM,SAAS,SAAS,GAAG,SAAS,EACpC,UAAU,GAAG,EAAE,EACf,KAAK,SAAS,UAAU,GAAG,YAAY,EACvC,SAAS,SAAS,UAAU,GAAG,KAAK,EACpC,cAAc,SAAS,SAAS,GAAG,MAAM,IACzC,gBAAgB,CAChB,YAAY,EACZ,MAAM,EACN,UAAU,EACV,KAAK,EACL,SAAS,EACT,cAAc,CACjB,GAAG;IACA,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;CACpC,CAAC;AAEF,oBAAY,iBAAiB,CACzB,YAAY,SAAS,UAAU,GAAG,UAAU,EAC5C,MAAM,SAAS,SAAS,GAAG,SAAS,EACpC,UAAU,GAAG,EAAE,EACf,KAAK,SAAS,UAAU,GAAG,YAAY,EACvC,SAAS,SAAS,UAAU,GAAG,KAAK,EACpC,cAAc,SAAS,SAAS,GAAG,MAAM,IACzC,qBAAqB,CACrB,YAAY,EACZ,MAAM,EACN,UAAU,EACV,KAAK,EACL,SAAS,EACT,cAAc,CACjB,GAAG;IACA,IAAI,EAAE,YAAY,CAAC,UAAU,CAAC,CAAC;IAC/B,SAAS,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;IACjC,eAAe,EAAE,WAAW,GAAG;QAC3B,OAAO,EAAE,MAAM,IAAI,CAAC;KACvB,CAAC;IACF,QAAQ,EAAE,CACN,MAAM,CAAC,EAAE,UAAU,KAClB,OAAO,CAAC,cAAc,CAAC,SAAS,CAAC,GAAG,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC;CAC9E,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,OAAO,2yBAwInB,CAAC"}
@@ -29,10 +29,10 @@ export declare type UseModalFormProps<TQueryFnData extends BaseRecord = BaseReco
29
29
  /**
30
30
  * `useModalForm` hook allows you to manage a form within a modal. It returns Ant Design {@link https://ant.design/components/form/ Form} and {@link https://ant.design/components/modal/ Modal} components props.
31
31
  *
32
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/hooks/form/useModalForm} for more details.
32
+ * @see {@link https://refine.dev/docs/api-reference/antd/hooks/form/useModalForm} for more details.
33
33
  *
34
- * @typeParam TData - Result data of the query extends {@link https://refine.dev/docs/api-references/interfaceReferences#baserecord `BaseRecord`}
35
- * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-references/interfaceReferences#httperror `HttpError`}
34
+ * @typeParam TData - Result data of the query extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences#baserecord `BaseRecord`}
35
+ * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences/#httperror `HttpError`}
36
36
  * @typeParam TVariables - Values for params. default `{}`
37
37
  *
38
38
  *
@@ -23,10 +23,10 @@ export declare type UseStepsFormProps<TQueryFnData extends BaseRecord = BaseReco
23
23
  /**
24
24
  * `useStepsForm` hook allows you to split your form under an Ant Design based {@link https://ant.design/components/steps/ Steps} component and provides you with a few useful functionalities that will help you manage your form.
25
25
  *
26
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/hooks/form/useStepsForm} for more details.
26
+ * @see {@link https://refine.dev/docs/api-reference/antd/hooks/form/useStepsForm} for more details.
27
27
  *
28
- * @typeParam TData - Result data of the query extends {@link https://refine.dev/docs/api-references/interfaceReferences#baserecord `BaseRecord`}
29
- * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-references/interfaceReferences#httperror `HttpError`}
28
+ * @typeParam TData - Result data of the query extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences#baserecord `BaseRecord`}
29
+ * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences/#httperror `HttpError`}
30
30
  * @typeParam TVariables - Values for params. default `{}`
31
31
  *
32
32
  *
@@ -1 +1 @@
1
- {"version":3,"file":"useStepsForm.d.ts","sourceRoot":"","sources":["../../../../src/hooks/form/useStepsForm/useStepsForm.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,kBAAkB,EACrB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AAE/C,OAAO,EACH,SAAS,EACT,YAAY,IAAI,gBAAgB,EAChC,UAAU,EACb,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAW,YAAY,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAEtE,oBAAY,4BAA4B,CAAC,SAAS,EAAE,UAAU,IAAI;IAC9D,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACjC,UAAU,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,QAAQ,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;KAC3C,CAAC;IACF,SAAS,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;IACjC,WAAW,EAAE,OAAO,CAAC;IACrB,wBAAwB,EAAE,OAAO,CAAC;IAClC,UAAU,EAAE,EAAE,CAAC;IACf,aAAa,EAAE,EAAE,CAAC;IAClB,UAAU,EAAE,SAAS,CAAC;IACtB,IAAI,EAAE,YAAY,CAAC,UAAU,CAAC,CAAC;IAC/B,MAAM,EAAE,CAAC,MAAM,CAAC,EAAE,UAAU,KAAK,OAAO,CAAC,SAAS,CAAC,CAAC;CACvD,CAAC;AAEF,oBAAY,sBAAsB,CAC9B,YAAY,SAAS,UAAU,GAAG,UAAU,EAC5C,MAAM,SAAS,SAAS,GAAG,SAAS,EACpC,UAAU,GAAG,EAAE,EACf,KAAK,SAAS,UAAU,GAAG,YAAY,EACvC,SAAS,SAAS,UAAU,GAAG,KAAK,EACpC,cAAc,SAAS,SAAS,GAAG,MAAM,IACzC,iBAAiB,CACjB,YAAY,EACZ,MAAM,EACN,UAAU,EACV,KAAK,EACL,SAAS,EACT,cAAc,CACjB,GACG,4BAA4B,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;AAExD,oBAAY,iBAAiB,CACzB,YAAY,SAAS,UAAU,GAAG,UAAU,EAC5C,MAAM,SAAS,SAAS,GAAG,SAAS,EACpC,UAAU,GAAG,EAAE,EACf,KAAK,SAAS,UAAU,GAAG,YAAY,EACvC,SAAS,SAAS,UAAU,GAAG,KAAK,EACpC,cAAc,SAAS,SAAS,GAAG,MAAM,IACzC,gBAAgB,CAChB,YAAY,EACZ,MAAM,EACN,UAAU,EACV,KAAK,EACL,SAAS,EACT,cAAc,CACjB,GACG,YAAY,CACR,YAAY,EACZ,MAAM,EACN,UAAU,EACV,KAAK,EACL,SAAS,EACT,cAAc,CACjB,GACD,kBAAkB,CAAC;AAEvB;;;;;;;;;;GAUG;AACH,eAAO,MAAM,YAAY,8ZA2DxB,CAAC"}
1
+ {"version":3,"file":"useStepsForm.d.ts","sourceRoot":"","sources":["../../../../src/hooks/form/useStepsForm/useStepsForm.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,kBAAkB,EACrB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AAE/C,OAAO,EACH,SAAS,EACT,YAAY,IAAI,gBAAgB,EAChC,UAAU,EACb,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAW,YAAY,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAEtE,oBAAY,4BAA4B,CAAC,SAAS,EAAE,UAAU,IAAI;IAC9D,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACjC,UAAU,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,QAAQ,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;KAC3C,CAAC;IACF,SAAS,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;IACjC,WAAW,EAAE,OAAO,CAAC;IACrB,wBAAwB,EAAE,OAAO,CAAC;IAClC,UAAU,EAAE,EAAE,CAAC;IACf,aAAa,EAAE,EAAE,CAAC;IAClB,UAAU,EAAE,SAAS,CAAC;IACtB,IAAI,EAAE,YAAY,CAAC,UAAU,CAAC,CAAC;IAC/B,MAAM,EAAE,CAAC,MAAM,CAAC,EAAE,UAAU,KAAK,OAAO,CAAC,SAAS,CAAC,CAAC;CACvD,CAAC;AAEF,oBAAY,sBAAsB,CAC9B,YAAY,SAAS,UAAU,GAAG,UAAU,EAC5C,MAAM,SAAS,SAAS,GAAG,SAAS,EACpC,UAAU,GAAG,EAAE,EACf,KAAK,SAAS,UAAU,GAAG,YAAY,EACvC,SAAS,SAAS,UAAU,GAAG,KAAK,EACpC,cAAc,SAAS,SAAS,GAAG,MAAM,IACzC,iBAAiB,CACjB,YAAY,EACZ,MAAM,EACN,UAAU,EACV,KAAK,EACL,SAAS,EACT,cAAc,CACjB,GACG,4BAA4B,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;AAExD,oBAAY,iBAAiB,CACzB,YAAY,SAAS,UAAU,GAAG,UAAU,EAC5C,MAAM,SAAS,SAAS,GAAG,SAAS,EACpC,UAAU,GAAG,EAAE,EACf,KAAK,SAAS,UAAU,GAAG,YAAY,EACvC,SAAS,SAAS,UAAU,GAAG,KAAK,EACpC,cAAc,SAAS,SAAS,GAAG,MAAM,IACzC,gBAAgB,CAChB,YAAY,EACZ,MAAM,EACN,UAAU,EACV,KAAK,EACL,SAAS,EACT,cAAc,CACjB,GACG,YAAY,CACR,YAAY,EACZ,MAAM,EACN,UAAU,EACV,KAAK,EACL,SAAS,EACT,cAAc,CACjB,GACD,kBAAkB,CAAC;AAEvB;;;;;;;;;;GAUG;AACH,eAAO,MAAM,YAAY,8ZA4DxB,CAAC"}
@@ -3,11 +3,11 @@ import { BaseRecord, HttpError, UseImportReturnType, ImportOptions } from "@refi
3
3
  /**
4
4
  * `useImport` hook allows you to handle your csv import logic easily.
5
5
  *
6
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/hooks/import/useImport} for more details.
6
+ * @see {@link https://refine.dev/docs/api-reference/antd/hooks/import/useImport} for more details.
7
7
  *
8
8
  * @typeParam TItem - Interface of parsed csv data
9
- * @typeParam TData - Result data of the query extends {@link https://refine.dev/docs/api-references/interfaceReferences#baserecord `BaseRecord`}
10
- * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-references/interfaceReferences#httperror `HttpError`}
9
+ * @typeParam TData - Result data of the query extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences#baserecord `BaseRecord`}
10
+ * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences/#httperror `HttpError`}
11
11
  * @typeParam TVariables - Values for mutation function
12
12
  *
13
13
  */
@@ -12,7 +12,7 @@ export declare type useSimpleListReturnType<TQueryFnData extends BaseRecord = Ba
12
12
  * By using `useSimpleList` you get props for your records from API in accordance with Ant Design {@link https://ant.design/components/list/ `<List>`} component.
13
13
  * All features such as pagination, sorting come out of the box.
14
14
  *
15
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/hooks/list/useSimpleList} for more details.
15
+ * @see {@link https://refine.dev/docs/api-reference/antd/hooks/list/useSimpleList} for more details.
16
16
  *
17
17
  * @typeParam TQueryFnData - Result data returned by the query function. Extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences#baserecord `BaseRecord`}
18
18
  * @typeParam TError - Custom error object that extends {@link https://refine.dev/docs/api-reference/core/interfaceReferences#httperror `HttpError`}
@@ -12,7 +12,7 @@ export declare type useModalProps = {
12
12
  /**
13
13
  * By using `useModal` you get props for your records from API in accordance with Ant Design {@link https://ant.design/components/modal/ `<Modal>`} component.
14
14
  *
15
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/hooks/ui/useModal} for more details.
15
+ * @see {@link https://refine.dev/docs/api-reference/antd/hooks/ui/useModal} for more details.
16
16
  */
17
17
  export declare const useModal: ({ modalProps, }?: useModalProps) => useModalReturnType;
18
18
  //# sourceMappingURL=index.d.ts.map