Releases: refinedev/refine
Releases · refinedev/refine
@pankod/[email protected]
Minor Changes
- Updated
dataProvider
types withRequired
utility to markgetMany
,createMany
,updateMany
anddeleteMany
as implemented.
@pankod/[email protected]
Minor Changes
-
Marked
getMany
,createMany
,updateMany
anddeleteMany
functions as optional and substituted withgetOne
,create
,update
anddeleteOne
respectively. Now users can choose to skip implementinggetMany
,createMany
,updateMany
anddeleteMany
functions and usegetOne
,create
,update
anddeleteOne
functions instead.Breaking Change
getMany
,createMany
,updateMany
anddeleteMany
functions are now optional and may cause type issues if used outside of the refine hooks.
@pankod/[email protected]
Minor Changes
- Updated
dataProvider
types withRequired
utility to markgetMany
,createMany
,updateMany
anddeleteMany
as implemented.
@pankod/[email protected]
Minor Changes
- Updated
dataProvider
types withRequired
utility to markgetMany
,createMany
,updateMany
anddeleteMany
as implemented.
@pankod/[email protected]
Minor Changes
- Updated
dataProvider
types withRequired
utility to markgetMany
,createMany
,updateMany
anddeleteMany
as implemented.
@pankod/[email protected]
Patch Changes
- Fixed
providers
property empty array state in<AuthPage />
component
@pankod/[email protected]
Patch Changes
- Add AuthProps type export
@pankod/[email protected]
Patch Changes
- Fixed
providers
property empty array state in<AuthPage />
component
@pankod/[email protected]
Minor Changes
- Updated
formProps
property on<AuthPage />
component
Patch Changes
- Added
clearable
prop touseSelect
hook that istrue
by default.
@pankod/[email protected]
Minor Changes
-
Added
useSelect()
, setState handler functions are memoizedFixed when
queryOptions.enabled = true
onuseSelect()
, fetches all data. #2691
Patch Changes
- fix:
useSelect()
's overriddenonSearch
function is not calling when value is empty.