Skip to content

Releases: refinedev/refine

@pankod/[email protected]

20 Oct 08:09
5a2f523
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@pankod/[email protected]

20 Oct 08:09
5a2f523
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@pankod/[email protected]

20 Oct 08:09
5a2f523
Compare
Choose a tag to compare

Minor Changes

  • #2839 5388a338ab Thanks @aliemir! - Deprecation

    ignoreAccessControlProvider prop on buttons is deprecated. Use accessContro.enabled instead.

    Features

    accessControl.enabled prop is added to buttons to enable/disable access control for buttons.
    accessControl.hideIfUnauthorized prop is added to buttons to hide the button if access is denied.

  • #2836 e43e9a17ae Thanks @alicanerdurmaz! - added locales prop to date fields

Patch Changes

@pankod/[email protected]

20 Oct 08:09
5a2f523
Compare
Choose a tag to compare

Minor Changes

  • #2839 5388a338ab Thanks @aliemir! - Deprecation

    ignoreAccessControlProvider prop on buttons is deprecated. Use accessContro.enabled instead.

    Features

    accessControl.enabled prop is added to buttons to enable/disable access control for buttons.
    accessControl.hideIfUnauthorized prop is added to buttons to hide the button if access is denied.

  • #2836 e43e9a17ae Thanks @alicanerdurmaz! - added locales prop to date fields

Patch Changes

@pankod/[email protected]

20 Oct 08:09
5a2f523
Compare
Choose a tag to compare

Patch Changes

  • #2839 5388a338ab Thanks @aliemir! - useCan hook was returning the stale value if same call is made with skipped access control.

@pankod/[email protected]

20 Oct 08:09
5a2f523
Compare
Choose a tag to compare

Minor Changes

  • #2839 5388a338ab Thanks @aliemir! - Deprecation

    ignoreAccessControlProvider prop on buttons is deprecated. Use accessContro.enabled instead.

    Features

    accessControl.enabled prop is added to buttons to enable/disable access control for buttons.
    accessControl.hideIfUnauthorized prop is added to buttons to hide the button if access is denied.

  • #2836 e43e9a17ae Thanks @alicanerdurmaz! - added locales prop to date fields

Patch Changes

@pankod/[email protected]

19 Oct 07:34
ca88736
Compare
Choose a tag to compare

Patch Changes

  • Fixed adding /store suffix to the end of Medusa API URL

@pankod/[email protected]

18 Oct 10:49
a9b4d3c
Compare
Choose a tag to compare

Patch Changes

    • Updated the default false icon for the BooleanField component to be a cross instead of a minus.
    • Updated the TextField export name to be "TextField" instead of "TextFieldComponent".
    • Fixed the tsdoc links for the field components.

@pankod/[email protected]

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

Patch Changes

@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,
            },
          ],
        },
      ],
    }