Skip to content

Releases: refinedev/refine

@refinedev/antd@5.38.1

08 May 13:17
18b13d3
Compare
Choose a tag to compare

Patch Changes

  • #5928 db9756e7908 Thanks @aliemir! - fix: type errors on typescript <5

    Due to the changes in #5881, typescript users below version 5 are facing type errors. This PR fixes the type errors by updating the file extensions required by the d.mts declaration files to provide a compatible declarations for both typescript 4 and 5 users.

  • Updated dependencies [db9756e7908]:

    • @refinedev/ui-types@1.22.7

@refinedev/airtable@4.4.9

08 May 13:17
18b13d3
Compare
Choose a tag to compare

Patch Changes

  • #5928 db9756e7908 Thanks @aliemir! - fix: type errors on typescript <5

    Due to the changes in #5881, typescript users below version 5 are facing type errors. This PR fixes the type errors by updating the file extensions required by the d.mts declaration files to provide a compatible declarations for both typescript 4 and 5 users.

@refinedev/ui-types@1.22.6

07 May 07:04
9b79484
Compare
Choose a tag to compare

Patch Changes

@refinedev/ui-tests@1.14.4

07 May 07:04
9b79484
Compare
Choose a tag to compare

Patch Changes

@refinedev/supabase@5.7.9

07 May 07:04
9b79484
Compare
Choose a tag to compare

Patch Changes

@refinedev/strapi@4.1.9

07 May 07:04
9b79484
Compare
Choose a tag to compare

Patch Changes

@refinedev/strapi-v4@6.0.5

07 May 07:04
9b79484
Compare
Choose a tag to compare

Patch Changes

  • #5850 c2ef59bf82f Thanks @aliemir! - fix: replace imports of qs with default imports

    Updated 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/simple-rest@5.0.5

07 May 07:04
9b79484
Compare
Choose a tag to compare

Patch Changes

@refinedev/remix-router@3.0.3

07 May 07:04
9b79484
Compare
Choose a tag to compare

Patch Changes

  • #5850 c2ef59bf82f Thanks @aliemir! - fix: replace imports of qs with default imports

    Updated 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/react-table@5.6.9

07 May 07:04
9b79484
Compare
Choose a tag to compare

Patch Changes

  • #5862 7c22b8eaca0 Thanks @aliemir! - fix: updated column filter transformation logic to handle conditional filters

    useTable 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 the filterKey property in the column's meta 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