@refinedev/antd 5.9.0 → 5.11.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @pankod/refine-antd
2
2
 
3
+ ## 5.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#4194](https://github.com/refinedev/refine/pull/4194) [`8df15fe0e4e`](https://github.com/refinedev/refine/commit/8df15fe0e4e0fb2bb81102ed1e3a12a0a9532b80) Thanks [@alicanerdurmaz](https://github.com/alicanerdurmaz)! - feat: `sorters.mode` prop added to `useTable` and `useDataGrid` hooks. This prop handles the sorting mode of the table. It can be either `server` or `off`.
8
+
9
+ - **"off"**: `sorters` are not sent to the server. You can use the `sorters` value to sort the records on the client side.
10
+ - **"server"**: Sorting is done on the server side. Records will be fetched by using the `sorters` value.
11
+
12
+ feat:`filters.mode` prop added to `useTable` and `useDataGrid` hooks. This prop handles the filtering mode of the table. It can be either `server` or `off`.
13
+
14
+ - **"off"**: `filters` are not sent to the server. You can use the `filters` value to filter the records on the client side.
15
+ - **"server"**: Filtering is done on the server side. Records will be fetched by using the `filters` value.
16
+
17
+ ## 5.10.0
18
+
19
+ ### Minor Changes
20
+
21
+ - [#4194](https://github.com/refinedev/refine/pull/4194) [`8df15fe0e4e`](https://github.com/refinedev/refine/commit/8df15fe0e4e0fb2bb81102ed1e3a12a0a9532b80) Thanks [@alicanerdurmaz](https://github.com/alicanerdurmaz)! - feat: `sorters.mode` prop added to `useTable` and `useDataGrid` hooks. This prop handles the sorting mode of the table. It can be either `server` or `off`.
22
+
23
+ - **"off"**: `sorters` are not sent to the server. You can use the `sorters` value to sort the records on the client side.
24
+ - **"server"**: Sorting is done on the server side. Records will be fetched by using the `sorters` value.
25
+
26
+ feat:`filters.mode` prop added to `useTable` and `useDataGrid` hooks. This prop handles the filtering mode of the table. It can be either `server` or `off`.
27
+
28
+ - **"off"**: `filters` are not sent to the server. You can use the `filters` value to filter the records on the client side.
29
+ - **"server"**: Filtering is done on the server side. Records will be fetched by using the `filters` value.
30
+
3
31
  ## 5.9.0
4
32
 
5
33
  ### Minor Changes