Skip to content

Releases: refinedev/refine

@pankod/[email protected]

12 Oct 10:07
ba2bd3d
Compare
Choose a tag to compare

Minor Changes

  • Updated dataProvider types with Required utility to mark getMany, createMany, updateMany and deleteMany as implemented.

@pankod/[email protected]

12 Oct 10:07
ba2bd3d
Compare
Choose a tag to compare

Minor Changes

  • Marked getMany, createMany, updateMany and deleteMany functions as optional and substituted with getOne, create, update and deleteOne respectively. Now users can choose to skip implementing getMany, createMany, updateMany and deleteMany functions and use getOne, create, update and deleteOne functions instead.

    Breaking Change

    • getMany, createMany, updateMany and deleteMany functions are now optional and may cause type issues if used outside of the refine hooks.

@pankod/[email protected]

12 Oct 10:07
ba2bd3d
Compare
Choose a tag to compare

Minor Changes

  • Updated dataProvider types with Required utility to mark getMany, createMany, updateMany and deleteMany as implemented.

@pankod/[email protected]

12 Oct 10:07
ba2bd3d
Compare
Choose a tag to compare

Minor Changes

  • Updated dataProvider types with Required utility to mark getMany, createMany, updateMany and deleteMany as implemented.

@pankod/[email protected]

12 Oct 10:07
ba2bd3d
Compare
Choose a tag to compare

Minor Changes

  • Updated dataProvider types with Required utility to mark getMany, createMany, updateMany and deleteMany as implemented.

@pankod/[email protected]

11 Oct 14:12
879e5c0
Compare
Choose a tag to compare

Patch Changes

  • Fixed providers property empty array state in <AuthPage /> component

@pankod/[email protected]

11 Oct 09:35
e19b623
Compare
Choose a tag to compare

Patch Changes

  • Add AuthProps type export

@pankod/[email protected]

11 Oct 14:12
879e5c0
Compare
Choose a tag to compare

Patch Changes

  • Fixed providers property empty array state in <AuthPage /> component

@pankod/[email protected]

11 Oct 09:35
e19b623
Compare
Choose a tag to compare

Minor Changes

  • Updated formProps property on <AuthPage /> component

Patch Changes

  • Added clearable prop to useSelect hook that is true by default.

@pankod/[email protected]

11 Oct 11:24
aacc9ad
Compare
Choose a tag to compare

Minor Changes

  • Added useSelect(), setState handler functions are memoized

    Fixed when queryOptions.enabled = true on useSelect(), fetches all data. #2691

Patch Changes

  • fix: useSelect()'s overridden onSearch function is not calling when value is empty.