Version Packages (next) - #1016
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
Deploying solid-primitives with
|
| Latest commit: |
49b794e
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://3b593156.solid-primitives.pages.dev |
| Branch Preview URL: | https://changeset-release-next.solid-primitives.pages.dev |
✅ Deploy Preview for solid-primitives-v2 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
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 next, this PR will be updated.
nextis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonnext.Releases
@solid-primitives/animation@1.0.0-next.1
Minor Changes
de4c1ba: New package. Provides reactive and imperative wrappers for the Web Animations API (WAAPI). All primitives follow the
make*/create*convention:make*is imperative and returns immediately,create*is a reactive wrapper that re-runs on dependency change and cancels on owner disposal.makeAnimate(el, keyframes, options?)— thin wrapper aroundelement.animate()createAnimate(target, keyframes, options?)— reactivemakeAnimate; re-runs whenever target, keyframes, or options changemakeScrollAnimation(el, keyframes, options?)— scroll-driven animation viaScrollTimelinecreateScrollAnimation(target, keyframes, options?)— reactivemakeScrollAnimationmakeViewAnimation(el, keyframes, options?)— viewport-driven animation viaViewTimeline; defaultsrangeStart/rangeEndto the entry phase so initially-visible elements animate correctlycreateViewAnimation(target, keyframes, options?)— reactivemakeViewAnimationmakeFlip(el, options?)— FLIP layout animation;snapshot()before DOM change,flip()aftermakeStagger(els, keyframes, options?)— staggered WAAPI animation across a list of elements with per-element delay offsetcreateStagger(targets, keyframes, options?)— reactivemakeStaggermakeAnimationGroup(animations)— coordinates a static list ofAnimationobjects as a unit; forwardsplay,pause,cancel,reverse, andfinishto all simultaneouslycreateAnimationGroup(animations)— reactivemakeAnimationGroup; re-derives the group whenever the accessor returns a new listmakeMotionPath(el, path, options?)— animates an element along a CSSoffset-pathusing WAAPIcreateMotionPath(target, path, options?)— reactivemakeMotionPathmakeSequence(factories)— chains animation factories into a sequential playlist; each factory is called lazily when its predecessor finishescreatePresenceAnimation(target, show, options)— manages mount/unmount lifecycle with WAAPI enter/exit animations; element stays mounted until its exit animation completes