Releases: refinedev/refine
@refinedev/[email protected]
Patch Changes
-
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions -
Updated dependencies [
1c9a95f22ab
,0a76576da0f
,8d2dd4376f6
,1c9a95f22ab
,ba719f6ea26
,9a0c1c8414a
]:- @refinedev/core@4.49.1
- @refinedev/[email protected]
@refinedev/[email protected]
Patch Changes
-
#5841
7b13515b3c0
Thanks @issa012! - fix: in methods update, updateMany, create, createMany, meta.select changed to "*". Resolves #5679 -
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions
@refinedev/[email protected]
Patch Changes
- #5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions
@refinedev/[email protected]
Patch Changes
-
#5850
c2ef59bf82f
Thanks @aliemir! - fix: replace imports ofqs
with default importsUpdated
qs
imports and usage to prevent issues with ESM builds and to ensure correctly importing the module. -
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions
@refinedev/[email protected]
Patch Changes
- #5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions
@refinedev/[email protected]
Patch Changes
-
#5850
c2ef59bf82f
Thanks @aliemir! - fix: replace imports ofqs
with default importsUpdated
qs
imports and usage to prevent issues with ESM builds and to ensure correctly importing the module. -
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions
@refinedev/[email protected]
Patch Changes
-
#5862
7c22b8eaca0
Thanks @aliemir! - fix: updated column filter transformation logic to handle conditional filtersuseTable
hook was ignoring the conditional filters with"and"
and"or"
operators, causing custom filtering logic inside the table to not work as expected and omitting the filters from the query. This PR enables working with conditionenal filters and fixes the disappearing filters issue.To customize the
key
value of the conditional filter, you can use thefilterKey
property in the column'smeta
property. This property will be used as the key for the filter when setting the filter value to the table from@refinedev/core
's filter state and when setting the filter value to the filter state from the table.// An example of how to use the `filterKey` property in the column's `meta` property const columns: ColumnDef<IPost> = [ { id: "title", header: "Title", accessorKey: "title", meta: { // This is optional, if not defined column id will be used as the key filterKey: "titleFilter", // If operator is not `'eq'` or `'in'`, make sure to set the `filterOperator` property filterOperator: "and", }, }, ];
Resolves #5856
-
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions
@refinedev/[email protected]
Patch Changes
-
#5850
c2ef59bf82f
Thanks @aliemir! - fix: replace imports ofqs
with default importsUpdated
qs
imports and usage to prevent issues with ESM builds and to ensure correctly importing the module. -
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions
@refinedev/[email protected]
Patch Changes
- #5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions
@refinedev/[email protected]
Patch Changes
-
#5881
ba719f6ea26
Thanks @aliemir! - fix:/parse-table-params
export in node10 module resolutions/parse-table-params
subpath export is not correctly resolved bynode10
module resolutions. -
#5850
c2ef59bf82f
Thanks @aliemir! - fix: replace imports ofqs
with default importsUpdated
qs
imports and usage to prevent issues with ESM builds and to ensure correctly importing the module. -
#5881
ba719f6ea26
Thanks @aliemir! - fix: declaration files in node10, node16 and nodenext module resolutions -
#5849
8a8f88b2c30
Thanks @aliemir! - fix: replacenext/*
imports with extensions in ESM buildsUpdated imports from
next/*
tonext/*.js
to prevent issues with ESM builds and to ensure correctly importing the module.