Minor Changes
-
#5989
b86648f42cd849a506e4c32d740de26b72681f72
Thanks @lnikitadobrenkol! - feat: editable feature for MUI Data Grid #5656It is now possible to make MUI Data Grid editable by
setting editable property on specific column.Resolves #5656
-
#6071
853bef97ed7baf59e74c98fc54c0ed11624fb491
Thanks @Dominic-Preap! - feat: addselectedOptionsOrder
inuseSelect
Now with
selectedOptionsOrder
, you can sortselectedOptions
at the top of list when useuseSelect
withdefaultValue
.Resolves #6061
Patch Changes
-
#6021
55cd0662b1e3ff8f8410eba812e80130afe75d14
Thanks @JayBhensdadia! - fix: ensure Sider component handles various resource name formats correctlyUpdated Sider component to correctly handle lowercase and camelcased resource names, enhancing usability and functionality.
Fixes #6004
-
#6064
b516c18b828ba8823561d0fefc4afe02b45ce332
Thanks @aliemir! - fix(auto-save-indicator): replace reservedkey
prop withtranslationKey
in components<AutoSaveIndicator />
components from UI libraries have been using a<Message />
component internally that uses akey
prop. Sincekey
is a reserved prop in React, it was causing a warning in the console. This change replaces thekey
prop withtranslationKey
to avoid the warning.Resolves #6067