Skip to content

react-simplikit@0.1.0

Latest

Choose a tag to compare

@github-actions github-actions released this 26 Aug 08:32
· 2 commits to main since this release
b8d9929

Minor Changes

  • #437 fe2226d Thanks @mnxmnz! - Absorb @react-simplikit/mobile into the root export of react-simplikit. Update imports from @react-simplikit/mobile to react-simplikit; the exported APIs are unchanged. The @react-simplikit/mobile npm package will be deprecated with a pointer to react-simplikit after this release.

Patch Changes

  • #423 36e3e4c Thanks @Antoliny0919! - The returned handler was typed as ChangeEventHandler<HTMLInputElement>, so passing it to a <textarea> raised a type error even though the runtime behavior was identical. The handler is now typed as ChangeEventHandler<HTMLInputElement | HTMLTextAreaElement>, so it can be attached to both <input> and <textarea> elements.

  • #424 1ac0166 Thanks @hyesungoh! - fix(core): opt the remaining React Compiler-incompatible hooks out with 'use no memo'