Skip to content

Releases: refinedev/refine

@pankod/[email protected]

17 Oct 12:22
0a81344
Compare
Choose a tag to compare

Minor Changes

  • Only or was supported as a conditional filter. Now and and or can be used together and nested. 🚀

    {
      operator: "or",
      value: [
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "John Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 30,
            },
          ],
        },
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "JR Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 1,
            },
          ],
        },
      ],
    }
    

@pankod/[email protected]

17 Oct 12:22
0a81344
Compare
Choose a tag to compare

Minor Changes

  • Only or was supported as a conditional filter. Now and and or can be used together and nested. 🚀

    {
      operator: "or",
      value: [
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "John Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 30,
            },
          ],
        },
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "JR Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 1,
            },
          ],
        },
      ],
    }
    

@pankod/[email protected]

16 Oct 12:29
3fc126c
Compare
Choose a tag to compare

Patch Changes

  • Add missing BrowserRouterComponent export to @pankod/refine-react-router-v6 package.

@pankod/[email protected]

15 Oct 07:23
a402d4f
Compare
Choose a tag to compare

Patch Changes

  • Fixed incorrectly used hooks in AuthPage component

@pankod/[email protected]

13 Oct 12:24
0decfbc
Compare
Choose a tag to compare

Patch Changes

  • Added tsdoc comments to crud component interfaces.

@pankod/[email protected]

13 Oct 12:24
0decfbc
Compare
Choose a tag to compare

Patch Changes

  • Fix @tanstack/react-table exports

  • Removed the old version of react-table dependency.

@pankod/[email protected]

13 Oct 12:24
0decfbc
Compare
Choose a tag to compare

Minor Changes

  • Added missing implementations for nnull, startswith, startswiths, nstartswith, nstartswiths, endswith, endswiths, nendswith and nendswiths filters by _similar, _nsimilar, _regex and _iregex filters from Nhost.

    Added nested property filter support for or filters.

@pankod/[email protected]

13 Oct 16:21
6c80691
Compare
Choose a tag to compare

Patch Changes

  • Fixed responsive design for mobile devices

@pankod/[email protected]

13 Oct 12:24
0decfbc
Compare
Choose a tag to compare

Patch Changes

    • Added <LoadingOverlay /> component to basic view components.
    • Update goBack prop usage, now it can be passed to <ActionButton />'s children.
    • Fixed the issue that when title prop is passed to basic views, the back button is not shown.
    • Default title size decreased from h2 to h3.
  • Updated dependencies []:

@pankod/[email protected]

13 Oct 12:24
0decfbc
Compare
Choose a tag to compare

Patch Changes

  • Added nested property filter support for or filters.