·
2 commits
to main
since this release
Minor Changes
- #437
fe2226dThanks @mnxmnz! - Absorb@react-simplikit/mobileinto the root export ofreact-simplikit. Update imports from@react-simplikit/mobiletoreact-simplikit; the exported APIs are unchanged. The@react-simplikit/mobilenpm package will be deprecated with a pointer toreact-simplikitafter this release.
Patch Changes
-
#423
36e3e4cThanks @Antoliny0919! - The returned handler was typed asChangeEventHandler<HTMLInputElement>, so passing it to a<textarea>raised a type error even though the runtime behavior was identical. The handler is now typed asChangeEventHandler<HTMLInputElement | HTMLTextAreaElement>, so it can be attached to both<input>and<textarea>elements. -
#424
1ac0166Thanks @hyesungoh! - fix(core): opt the remaining React Compiler-incompatible hooks out with'use no memo'