@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
package/CHANGELOG.md CHANGED
@@ -1,5 +1,79 @@
1
1
  # @pankod/refine-antd
2
2
 
3
+ ## 5.22.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#4430](https://github.com/refinedev/refine/pull/4430) [`cf07d59587f`](https://github.com/refinedev/refine/commit/cf07d59587fae2adce97a79b40fdb60b9d9a9527) Thanks [@aliemir](https://github.com/aliemir)! - Updated the `useForm`, `useModalForm`, `useDrawerForm` and `useStepsForm` to accept `queryMeta` and `mutationMeta` properties of the `useForm` hook of `@refinedev/core`. These properties are used to pass specific meta values to the query or mutation. This is useful when you have overlapping values in your data provider's `getOne` and `update` methods. For example, you may want to change the `method` of the mutation to `PATCH` but if you pass it in the `meta` property, you'll end up changing the method of the `getOne` request as well.
8
+
9
+ `queryMeta` and `mutationMeta` has precedence over `meta`. This means that if you have the same property in `queryMeta` and `meta`, the value in `queryMeta` will be used.
10
+
11
+ **Usage**
12
+
13
+ ```tsx
14
+ import { useForm } from "@refinedev/core";
15
+
16
+ export const MyEditPage = () => {
17
+ const form = useForm({
18
+ // this is passed both to the mutation and the query requests
19
+ meta: {
20
+ myValue: "myValue",
21
+ },
22
+ // this is only passed to the query request
23
+ queryMeta: {
24
+ propertyOnlyWorksForQuery: "propertyOnlyWorksForQuery",
25
+ },
26
+ // this is only passed to the mutation request
27
+ mutationMeta: {
28
+ propertyOnlyWorksForMutation: "propertyOnlyWorksForMutation",
29
+ },
30
+ });
31
+ };
32
+ ```
33
+
34
+ ### Patch Changes
35
+
36
+ - [#4429](https://github.com/refinedev/refine/pull/4429) [`63daabcb703`](https://github.com/refinedev/refine/commit/63daabcb7037860bc36dff8cc417e9426e9ec027) Thanks [@aliemir](https://github.com/aliemir)! - Fixed the issue of `formLoading` property in return values of `useStepsForm` hook which was not being toggled correctly when the form was submitted or the form data was being fetched.
37
+
38
+ - [#4431](https://github.com/refinedev/refine/pull/4431) [`c29a3618cf6`](https://github.com/refinedev/refine/commit/c29a3618cf6b577c36e90ec514f3a691c87aad8f) Thanks [@aliemir](https://github.com/aliemir)! - Updated the TSDoc comments to fix the broken links in the documentation.
39
+
40
+ ## 5.21.0
41
+
42
+ ### Minor Changes
43
+
44
+ - [#4430](https://github.com/refinedev/refine/pull/4430) [`cf07d59587f`](https://github.com/refinedev/refine/commit/cf07d59587fae2adce97a79b40fdb60b9d9a9527) Thanks [@aliemir](https://github.com/aliemir)! - Updated the `useForm`, `useModalForm`, `useDrawerForm` and `useStepsForm` to accept `queryMeta` and `mutationMeta` properties of the `useForm` hook of `@refinedev/core`. These properties are used to pass specific meta values to the query or mutation. This is useful when you have overlapping values in your data provider's `getOne` and `update` methods. For example, you may want to change the `method` of the mutation to `PATCH` but if you pass it in the `meta` property, you'll end up changing the method of the `getOne` request as well.
45
+
46
+ `queryMeta` and `mutationMeta` has precedence over `meta`. This means that if you have the same property in `queryMeta` and `meta`, the value in `queryMeta` will be used.
47
+
48
+ **Usage**
49
+
50
+ ```tsx
51
+ import { useForm } from "@refinedev/core";
52
+
53
+ export const MyEditPage = () => {
54
+ const form = useForm({
55
+ // this is passed both to the mutation and the query requests
56
+ meta: {
57
+ myValue: "myValue",
58
+ },
59
+ // this is only passed to the query request
60
+ queryMeta: {
61
+ propertyOnlyWorksForQuery: "propertyOnlyWorksForQuery",
62
+ },
63
+ // this is only passed to the mutation request
64
+ mutationMeta: {
65
+ propertyOnlyWorksForMutation: "propertyOnlyWorksForMutation",
66
+ },
67
+ });
68
+ };
69
+ ```
70
+
71
+ ### Patch Changes
72
+
73
+ - [#4429](https://github.com/refinedev/refine/pull/4429) [`63daabcb703`](https://github.com/refinedev/refine/commit/63daabcb7037860bc36dff8cc417e9426e9ec027) Thanks [@aliemir](https://github.com/aliemir)! - Fixed the issue of `formLoading` property in return values of `useStepsForm` hook which was not being toggled correctly when the form was submitted or the form data was being fetched.
74
+
75
+ - [#4431](https://github.com/refinedev/refine/pull/4431) [`c29a3618cf6`](https://github.com/refinedev/refine/commit/c29a3618cf6b577c36e90ec514f3a691c87aad8f) Thanks [@aliemir](https://github.com/aliemir)! - Updated the TSDoc comments to fix the broken links in the documentation.
76
+
3
77
  ## 5.20.0
4
78
 
5
79
  ### Minor Changes
@@ -2,10 +2,10 @@ import React from "react";
2
2
  import { CloneButtonProps } from "../types";
3
3
  /**
4
4
  * `<CloneButton>` uses Ant Design's {@link https://ant.design/components/button/ `<Button> component`}.
5
- * It uses the {@link https://refine.dev/docs/core/hooks/navigation/useNavigation#clone `clone`} method from {@link https://refine.dev/docs/core/hooks/navigation/useNavigation useNavigation} under the hood.
5
+ * It uses the {@link https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation#clone `clone`} method from {@link https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation useNavigation} under the hood.
6
6
  * It can be useful when redirecting the app to the create page with the record id route of resource.
7
7
  *
8
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/buttons/clone-button} for more details.
8
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/buttons/clone-button} for more details.
9
9
  */
10
10
  export declare const CloneButton: React.FC<CloneButtonProps>;
11
11
  //# sourceMappingURL=index.d.ts.map
@@ -2,10 +2,10 @@ import React from "react";
2
2
  import { CreateButtonProps } from "../types";
3
3
  /**
4
4
  * <CreateButton> uses Ant Design's {@link https://ant.design/components/button/ `<Button> component`}.
5
- * It uses the {@link https://refine.dev/docs/core/hooks/navigation/useNavigation#create `create`} method from {@link https://refine.dev/docs/core/hooks/navigation/useNavigation `useNavigation`} under the hood.
5
+ * It uses the {@link https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation#create `create`} method from {@link https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation `useNavigation`} under the hood.
6
6
  * It can be useful to redirect the app to the create page route of resource}.
7
7
  *
8
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/buttons/create-button} for more details.
8
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/buttons/create-button} for more details.
9
9
  */
10
10
  export declare const CreateButton: React.FC<CreateButtonProps>;
11
11
  //# sourceMappingURL=index.d.ts.map
@@ -4,7 +4,7 @@ import { DeleteButtonProps } from "../types";
4
4
  * `<DeleteButton>` uses Ant Design's {@link https://ant.design/components/button/ `<Button>`} and {@link https://ant.design/components/button/ `<Popconfirm>`} components.
5
5
  * When you try to delete something, a pop-up shows up and asks for confirmation. When confirmed it executes the `useDelete` method provided by your `dataProvider`.
6
6
  *
7
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/buttons/delete-button} for more details.
7
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/buttons/delete-button} for more details.
8
8
  */
9
9
  export declare const DeleteButton: React.FC<DeleteButtonProps>;
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -2,10 +2,10 @@ import React from "react";
2
2
  import { EditButtonProps } from "../types";
3
3
  /**
4
4
  * `<EditButton>` uses Ant Design's {@link https://ant.design/components/button/ `<Button>`} component.
5
- * It uses the {@link https://refine.dev/docs/core/hooks/navigation/useNavigation#edit `edit`} method from {@link https://refine.dev/docs/core/hooks/navigation/useNavigation `useNavigation`} under the hood.
5
+ * It uses the {@link https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation#edit `edit`} method from {@link https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation `useNavigation`} under the hood.
6
6
  * It can be useful when redirecting the app to the edit page with the record id route of resource}.
7
7
  *
8
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/buttons/edit-button} for more details.
8
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/buttons/edit-button} for more details.
9
9
  */
10
10
  export declare const EditButton: React.FC<EditButtonProps>;
11
11
  //# sourceMappingURL=index.d.ts.map
@@ -4,7 +4,7 @@ import { ExportButtonProps } from "../types";
4
4
  * `<ExportButton>` is an Ant Design {@link https://ant.design/components/button/ `<Button>`} with a default export icon and a default text with "Export".
5
5
  * It only has presentational value.
6
6
  *
7
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/buttons/export-button} for more details.
7
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/buttons/export-button} for more details.
8
8
  */
9
9
  export declare const ExportButton: React.FC<ExportButtonProps>;
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -1,11 +1,11 @@
1
1
  import React from "react";
2
2
  import { ImportButtonProps } from "../types";
3
3
  /**
4
- * `<ImportButton>` is compatible with the {@link https://refine.dev/docs/ui-frameworks/antd/hooks/import/useImport `useImport`} hook and is meant to be used as it's upload button.
4
+ * `<ImportButton>` is compatible with the {@link https://refine.dev/docs/api-reference/antd/hooks/import/useImport `useImport`} hook and is meant to be used as it's upload button.
5
5
  * It uses Ant Design's {@link https://ant.design/components/button/ `<Button>`} and {@link https://ant.design/components/upload/ `<Upload>`} components.
6
6
  * It wraps a `<Button>` component with an `<Upload>` component and accepts properties for `<Button>` and `<Upload>` components separately.
7
7
  *
8
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/buttons/import-button} for more details.
8
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/buttons/import-button} for more details.
9
9
  */
10
10
  export declare const ImportButton: React.FC<ImportButtonProps>;
11
11
  //# sourceMappingURL=index.d.ts.map
@@ -2,10 +2,10 @@ import React from "react";
2
2
  import { ListButtonProps } from "../types";
3
3
  /**
4
4
  * `<ListButton>` is using Ant Design's {@link https://ant.design/components/button/ `<Button>`} component.
5
- * It uses the {@link https://refine.dev/docs/core/hooks/navigation/useNavigation#list `list`} method from {@link https://refine.dev/docs/core/hooks/navigation/useNavigation `useNavigation`} under the hood.
5
+ * It uses the {@link https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation#list `list`} method from {@link https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation `useNavigation`} under the hood.
6
6
  * It can be useful when redirecting the app to the list page route of resource}.
7
7
  *
8
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/buttons/list-button} for more details.
8
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/buttons/list-button} for more details.
9
9
  */
10
10
  export declare const ListButton: React.FC<ListButtonProps>;
11
11
  //# sourceMappingURL=index.d.ts.map
@@ -2,9 +2,9 @@ import React from "react";
2
2
  import { RefreshButtonProps } from "../types";
3
3
  /**
4
4
  * `<RefreshButton>` uses Ant Design's {@link https://ant.design/components/button/ `<Button>`} component
5
- * to update the data shown on the page via the {@link https://refine.dev/docs/core/hooks/data/useOne `useOne`} method provided by your dataProvider.
5
+ * to update the data shown on the page via the {@link https://refine.dev/docs/api-reference/core/hooks/data/useOne `useOne`} method provided by your dataProvider.
6
6
  *
7
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/buttons/refresh-button} for more details.
7
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/buttons/refresh-button} for more details.
8
8
  */
9
9
  export declare const RefreshButton: React.FC<RefreshButtonProps>;
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -4,7 +4,7 @@ import { SaveButtonProps } from "../types";
4
4
  * `<SaveButton>` uses Ant Design's {@link https://ant.design/components/button/ `<Button>`} component.
5
5
  * It uses it for presantation purposes only. Some of the hooks that refine has adds features to this button.
6
6
  *
7
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/buttons/save-button} for more details.
7
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/buttons/save-button} for more details.
8
8
  */
9
9
  export declare const SaveButton: React.FC<SaveButtonProps>;
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -2,10 +2,10 @@ import React from "react";
2
2
  import { ShowButtonProps } from "../types";
3
3
  /**
4
4
  * `<ShowButton>` uses Ant Design's {@link https://ant.design/components/button/ `<Button>`} component.
5
- * It uses the {@link https://refine.dev/docs/core/hooks/navigation/useNavigation#show `show`} method from {@link https://refine.dev/docs/core/hooks/navigation/useNavigation `useNavigation`} under the hood.
5
+ * It uses the {@link https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation#show `show`} method from {@link https://refine.dev/docs/api-reference/core/hooks/navigation/useNavigation `useNavigation`} under the hood.
6
6
  * It can be useful when redirecting the app to the show page with the record id route of resource.
7
7
  *
8
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/buttons/show-button} for more details.
8
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/buttons/show-button} for more details.
9
9
  */
10
10
  export declare const ShowButton: React.FC<ShowButtonProps>;
11
11
  //# sourceMappingURL=index.d.ts.map
@@ -3,7 +3,7 @@ import { BooleanFieldProps } from "../types";
3
3
  /**
4
4
  * This field is used to display boolean values. It uses the {@link https://ant.design/components/tooltip/#header `<Tooltip>`} values from Ant Design.
5
5
  *
6
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/boolean} for more details.
6
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/fields/boolean} for more details.
7
7
  */
8
8
  export declare const BooleanField: React.FC<BooleanFieldProps>;
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -3,7 +3,7 @@ import { DateFieldProps } from "../types";
3
3
  /**
4
4
  * This field is used to display dates. It uses {@link https://day.js.org/docs/en/display/format `Day.js`} to display date format.
5
5
  *
6
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/date} for more details.
6
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/fields/date} for more details.
7
7
  */
8
8
  export declare const DateField: React.FC<DateFieldProps>;
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -4,7 +4,7 @@ import { EmailFieldProps } from "../types";
4
4
  * This field is used to display email values. It uses the {@link https://ant.design/components/typography/#FAQ `<Link>`} component
5
5
  * of {@link https://ant.design/components/typography `<Typography>`} from Ant Design.
6
6
  *
7
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/email} for more details.
7
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/fields/email} for more details.
8
8
  */
9
9
  export declare const EmailField: React.FC<EmailFieldProps>;
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -3,7 +3,7 @@ import { FileFieldProps } from "../types";
3
3
  /**
4
4
  * This field is used to display files and uses {@link https://ant.design/components/typography `<Typography.Link>`} from Ant Design.
5
5
  *
6
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/file} for more details.
6
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/fields/file} for more details.
7
7
  */
8
8
  export declare const FileField: React.FC<FileFieldProps>;
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -3,7 +3,7 @@ import { ImageFieldProps } from "../types";
3
3
  /**
4
4
  * This field is used to display images and uses {@link https://ant.design/components/image/#header `<Image>`} from Ant Design.
5
5
  *
6
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/image} for more details.
6
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/fields/image} for more details.
7
7
  */
8
8
  export declare const ImageField: React.FC<ImageFieldProps>;
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -3,7 +3,7 @@ import { RefineFieldMarkdownProps } from "../types";
3
3
  /**
4
4
  * This field lets you display markdown content. It supports {@link https://github.github.com/gfm/ GitHub Flavored Markdown}.
5
5
  *
6
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/markdown} for more details.
6
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/fields/markdown} for more details.
7
7
  */
8
8
  export declare const MarkdownField: React.FC<RefineFieldMarkdownProps>;
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -3,7 +3,7 @@ import { NumberFieldProps } from "../types";
3
3
  /**
4
4
  * This field is used to display a number formatted according to the browser locale, right aligned. and uses {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl `Intl`} to display date format.
5
5
  *
6
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/number} for more details.
6
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/fields/number} for more details.
7
7
  */
8
8
  export declare const NumberField: React.FC<NumberFieldProps>;
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -3,7 +3,7 @@ import { TagFieldProps } from "../types";
3
3
  /**
4
4
  * This field lets you display a value in a tag. It uses Ant Design's {@link https://ant.design/components/tag/ `<Tag>`} component.
5
5
  *
6
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/tag} for more details.
6
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/fields/tag} for more details.
7
7
  */
8
8
  export declare const TagField: React.FC<TagFieldProps>;
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -3,7 +3,7 @@ import { TextFieldProps } from "../types";
3
3
  /**
4
4
  * This field lets you show basic text. It uses Ant Design's {@link https://ant.design/components/typography/#Typography.Text `<Typography.Text>`} component.
5
5
  *
6
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/text} for more details.
6
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/fields/text} for more details.
7
7
  */
8
8
  export declare const TextField: React.FC<TextFieldProps>;
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -4,7 +4,7 @@ import { UrlFieldProps } from "../types";
4
4
  * This field lets you embed a link. It uses Ant Design's {@link https://ant.design/components/typography/ `<Typography.Link>`} component.
5
5
  * You can pass a URL in its `value` property and you can show a text in its place by passing any `children`.
6
6
  *
7
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/url} for more details.
7
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/fields/url} for more details.
8
8
  */
9
9
  export declare const UrlField: React.FC<UrlFieldProps>;
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -8,7 +8,7 @@ export declare type AuthProps = AuthPageProps<LayoutProps, CardProps, FormProps>
8
8
  /**
9
9
  * **refine** has a default auth page form served on the `/login` route when the `authProvider` configuration is provided.
10
10
  *
11
- * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/authpage/} for more details.
11
+ * @see {@link https://refine.dev/docs/api-reference/antd/components/antd-auth-page/} for more details.
12
12
  */
13
13
  export declare const AuthPage: React.FC<AuthProps>;
14
14
  //# sourceMappingURL=index.d.ts.map
@@ -4,7 +4,7 @@ import { RefineErrorPageProps } from "@refinedev/ui-types";
4
4
  * When the app is navigated to a non-existent route, refine shows a default error page.
5
5
  * A custom error component can be used for this error page.
6
6
  *
7
- * @see {@link https://refine.dev/docs/api-references/components/refine-config#catchall} for more details.
7
+ * @see {@link https://refine.dev/docs/packages/documentation/routers/} for more details.
8
8
  */
9
9
  export declare const ErrorComponent: React.FC<RefineErrorPageProps>;
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -9,7 +9,7 @@ export interface ILoginForm {
9
9
  * @deprecated LoginPage is deprecated. Use AuthPage instead. @see {@link https://refine.dev/docs/api-reference/antd/components/antd-auth-page} for more details.
10
10
  * **refine** has a default login page form which is served on `/login` route when the `authProvider` configuration is provided.
11
11
  *
12
- * @see {@link https://refine.dev/docs/api-references/components/refine-config#loginpage} for more details.
12
+ * @see {@link https://refine.dev/docs/api-reference/core/components/refine-config/#loginpage} for more details.
13
13
  */
14
14
  export declare const LoginPage: React.FC<LoginPageProps>;
15
15
  //# sourceMappingURL=index.d.ts.map
@@ -3,7 +3,6 @@ import { RefineReadyPageProps } from "@refinedev/ui-types";
3
3
  /**
4
4
  * **refine** shows a default ready page on root route when no `resources` is passed to the `<Refine>` component as a property.
5
5
  *
6
- * @see {@link https://refine.dev/docs/api-references/components/refine-config#readypage} for more details.
7
6
  * @deprecated `ReadyPage` is deprecated and will be removed in the next major release.
8
7
  */
9
8
  export declare const ReadyPage: React.FC<RefineReadyPageProps>;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/pages/ready/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAoC3D;;;;;GAKG;AACH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CAoDpD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/pages/ready/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAoC3D;;;;GAIG;AACH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CAoDpD,CAAC"}