chore: version packages - #439
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
8 times, most recently
from
August 31, 2026 05:22
1945d12 to
2446760
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 31, 2026 07:56
2446760 to
a6bf28a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
react-simplikit@0.2.0
Minor Changes
#446
0b66d40Thanks @hyesungoh! -useDebouncedCallbackanduseThrottledCallbacknow accept any value type:onChangeis typed(newValue: T) => voidinstead of(newValue: boolean) => void, so a debounced search query or a throttled scroll position no longer needs a cast. Existing boolean callers are unaffected.useDebouncedCallbackno longer drops a first call offalse. It compared incoming values against a seed offalse, so the very firstfalselooked redundant and was never forwarded; the comparison now starts from a sentinel, asuseThrottledCallbackalready did. Afalsethat arrives while an initialtrueis still pending now replaces it instead of being ignored.useImpressionRefno longer emitsonImpressionEndfor an element that was never impressed.Patch Changes
#450
a4251a3Thanks @hyesungoh! -useDebouncedCallbackanduseThrottledCallbackno longer forward a stale value when the caller returns to the last forwarded one. Calling with'seo'and then'seoul'right after'seoul'had already been forwarded used to skip the second call as a duplicate without cancelling the pending'seo', soonChange('seo')fired anyway. The pending call is now cancelled first. ForuseThrottledCallbackthis only showed withedges: ['trailing']; the default leading edge forwards the intermediate value immediately and masked it.#452
fd312f5Thanks @hyesungoh! - JSDoc corrections that show up in editor hover.useIntersectionObserver'soptions.rootis typedElement | Document | nullinstead ofboolean.useListanduseSetnow declare their generic parameter, their optional initial state and every member they return.mergePropsandmergeRefsmark their rest parameter as one, so the documented signature matches the implementation.#456
65ce435Thanks @mnxmnz! - Re-export theSafeAreaInsettype from the package root.@react-simplikit/mobileexported it, but it was dropped when that package was absorbed into the root entry, leavingimport type { SafeAreaInset }with no replacement.#435
9e05182Thanks @hyesungoh! -useDoubleClick,useGeolocation,useImpressionRef,useIntersectionObserver,useLongPress,useOutsideClickEffect,useStorageStateanduseVisibilityEventare no longer marked@deprecated. They are maintained hooks again: editors stop rendering them struck-through, and no removal is planned.