Releases: refinedev/refine
@pankod/[email protected]
Minor Changes
-
#2839
5388a338ab
Thanks @aliemir! - AddaccessControl
prop to buttons and deprecateignoreAccessControlProvider
prop. -
#2836
e43e9a17ae
Thanks @alicanerdurmaz! - added locales prop to date fields
Patch Changes
-
#2834
476285e342
Thanks @alicanerdurmaz! - updated ui-types JSDoc -
Updated dependencies [
5388a338ab
]:- @pankod/[email protected]
@pankod/[email protected]
Minor Changes
- #2836
e43e9a17ae
Thanks @alicanerdurmaz! - added locales prop to date fields
Patch Changes
- Updated dependencies [
476285e342
,5388a338ab
,5388a338ab
,e43e9a17ae
]:- @pankod/[email protected]
- @pankod/[email protected]
@pankod/[email protected]
Minor Changes
-
#2839
5388a338ab
Thanks @aliemir! - DeprecationignoreAccessControlProvider
prop on buttons is deprecated. UseaccessContro.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
-
#2838
f7968fa16f
Thanks @aliemir! - Fixed #2828 - Buttons were not respecting access control when navigating to a new page. Now, if button is disabled, it will not also block the navigation not just the onClick event. -
Updated dependencies [
476285e342
,5388a338ab
,e43e9a17ae
]:- @pankod/[email protected]
@pankod/[email protected]
Minor Changes
-
#2839
5388a338ab
Thanks @aliemir! - DeprecationignoreAccessControlProvider
prop on buttons is deprecated. UseaccessContro.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
-
#2838
f7968fa16f
Thanks @aliemir! - Fixed #2828 - Buttons were not respecting access control when navigating to a new page. Now, if button is disabled, it will not also block the navigation not just the onClick event. -
#2818
295fc2f773
Thanks @salihozdemir! - Added missingTitle
component export. -
Updated dependencies [
476285e342
,5388a338ab
,e43e9a17ae
]:- @pankod/[email protected]
@pankod/[email protected]
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]
Minor Changes
-
#2839
5388a338ab
Thanks @aliemir! - DeprecationignoreAccessControlProvider
prop on buttons is deprecated. UseaccessContro.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
-
#2838
f7968fa16f
Thanks @aliemir! - Fixed #2828 - Buttons were not respecting access control when navigating to a new page. Now, if button is disabled, it will not also block the navigation not just the onClick event. -
Updated dependencies [
476285e342
,5388a338ab
,e43e9a17ae
]:- @pankod/[email protected]
@pankod/[email protected]
Patch Changes
- Fixed adding
/store
suffix to the end of Medusa API URL
@pankod/[email protected]
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]
Patch Changes
-
Added descriptions to ui-types
-
Updated dependencies []:
- @pankod/[email protected]
@pankod/[email protected]
Minor Changes
-
Only
or
was supported as a conditional filter. Nowand
andor
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, }, ], }, ], }