Skip to content

build(deps): bump @lottiefiles/dotlottie-web from 0.18.0 to 0.25.0#67

Closed
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/npm_and_yarn/develop/lottiefiles/dotlottie-web-0.25.0
Closed

build(deps): bump @lottiefiles/dotlottie-web from 0.18.0 to 0.25.0#67
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/npm_and_yarn/develop/lottiefiles/dotlottie-web-0.25.0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Jun 21, 2024

Bumps @lottiefiles/dotlottie-web from 0.18.0 to 0.25.0.

Release notes

Sourced from @​lottiefiles/dotlottie-web's releases.

@​lottiefiles/dotlottie-web@​0.25.0

Minor Changes

  • 5b942aa: # feat(web): 🎸 dotLottie State Machines Integration #254

    We are excited to introduce the dotLottie state machine support in dotlottie-web, bringing a new level of interactivity and control to your animations!

    What's New

    • Upgraded dotlottie-rs to v0.1.23: WASM bindings.

    New Features

    1. State Machine Integration🎸
      • DotLottie loadStateMachine Method: Load a state machine directly from a .lottie file.
      • DotLottie startStateMachine Method: Start the loaded state machine.
      • DotLottie stopStateMachine. Method: Cleanly end the started state machine.
      • DotLottie postStateMachineEvent Method: Send events to the state machine to drive animation behavior.
    Available Events
    const dotLottie = new DotLottie(...);
    const smLoaded = dotLottie.loadStateMachine("some_state_machine_id"); // Load a state machine from the .lottie file
    const smStarted = dotLottie.startStateMachine();                // Start the loaded state machine
    dotLottie.postStateMachineEvent("Bool: true");         // Post a boolean event
    dotLottie.postStateMachineEvent("Bool: false");        // Post a boolean event
    dotLottie.postStateMachineEvent("String: ...");        // Post a string event
    dotLottie.postStateMachineEvent("Numeric: 0.0");       // Post a numeric event
    dotLottie.postStateMachineEvent("OnPointerDown: 0.0 0.0"); // Post a pointer down event
    dotLottie.postStateMachineEvent("OnPointerUp: 0.0 0.0");   // Post a pointer up event
    dotLottie.postStateMachineEvent("OnPointerMove: 0.0 0.0"); // Post a pointer move event
    dotLottie.postStateMachineEvent("OnPointerEnter: 0.0 0.0"); // Post a pointer enter event
    dotLottie.postStateMachineEvent("OnPointerExit: 0.0 0.0");  // Post a pointer exit event
    dotLottie.postStateMachineEvent("OnComplete");             // Post a complete event
    const smStopped = dotLottie.stopStateMachine(); // End the started state machine

    DotLottie will automatically set up and clean up the pointer events on the provided canvas and other animation playback events for you when you call startStateMachine and stopStateMachine.

    More details can be found in the LottieFiles developers postal

@​lottiefiles/dotlottie-web@​0.24.0

Minor Changes

... (truncated)

Changelog

Sourced from @​lottiefiles/dotlottie-web's changelog.

0.25.0

Minor Changes

  • 5b942aa: # feat(web): 🎸 dotLottie State Machines Integration #254

    We are excited to introduce the dotLottie state machine support in dotlottie-web, bringing a new level of interactivity and control to your animations!

    What's New

    • Upgraded dotlottie-rs to v0.1.23: WASM bindings.

    New Features

    1. State Machine Integration🎸
      • DotLottie loadStateMachine Method: Load a state machine directly from a .lottie file.
      • DotLottie startStateMachine Method: Start the loaded state machine.
      • DotLottie stopStateMachine. Method: Cleanly end the started state machine.
      • DotLottie postStateMachineEvent Method: Send events to the state machine to drive animation behavior.
    Available Events
    const dotLottie = new DotLottie(...);
    const smLoaded = dotLottie.loadStateMachine("some_state_machine_id"); // Load a state machine from the .lottie file
    const smStarted = dotLottie.startStateMachine();                // Start the loaded state machine
    dotLottie.postStateMachineEvent("Bool: true");         // Post a boolean event
    dotLottie.postStateMachineEvent("Bool: false");        // Post a boolean event
    dotLottie.postStateMachineEvent("String: ...");        // Post a string event
    dotLottie.postStateMachineEvent("Numeric: 0.0");       // Post a numeric event
    dotLottie.postStateMachineEvent("OnPointerDown: 0.0 0.0"); // Post a pointer down event
    dotLottie.postStateMachineEvent("OnPointerUp: 0.0 0.0");   // Post a pointer up event
    dotLottie.postStateMachineEvent("OnPointerMove: 0.0 0.0"); // Post a pointer move event
    dotLottie.postStateMachineEvent("OnPointerEnter: 0.0 0.0"); // Post a pointer enter event
    dotLottie.postStateMachineEvent("OnPointerExit: 0.0 0.0");  // Post a pointer exit event
    dotLottie.postStateMachineEvent("OnComplete");             // Post a complete event
    const smStopped = dotLottie.stopStateMachine(); // End the started state machine

    DotLottie will automatically set up and clean up the pointer events on the provided canvas and other animation playback events for you when you call startStateMachine and stopStateMachine.

    More details can be found in the LottieFiles developers postal

0.24.0

... (truncated)

Commits
  • 0a4fb75 chore: 🤖 update versions
  • 5b942aa feat(web): 🎸 dotLottie state machines integration (#254)
  • db314d7 chore: 🤖 update versions (#237)
  • b72a4d7 chore: 🤖 upgrade dotlottie-rs v0.1.21 wasm bindings (#244)
  • 663fab2 chore(web): 🤖 log error of loading the initial WASM URL (#236)
  • 59013cb chore(eslint): 🤖 disable LottieFiles copyright header rule (#235)
  • bb5954b chore: 🤖 update versions (#231)
  • 6bb8561 fix(web): 🐛 ability to resize in non-browser environment (#229)
  • 5983c84 chore: 🤖 update versions (#228)
  • 91be7a1 fix(web): 🐛 theme updates not triggered for paused/stopped animation (#227)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@lottiefiles/dotlottie-web](https://github.com/LottieFiles/dotlottie-web/tree/HEAD/packages/web) from 0.18.0 to 0.25.0.
- [Release notes](https://github.com/LottieFiles/dotlottie-web/releases)
- [Changelog](https://github.com/LottieFiles/dotlottie-web/blob/main/packages/web/CHANGELOG.md)
- [Commits](https://github.com/LottieFiles/dotlottie-web/commits/@lottiefiles/dotlottie-web@0.25.0/packages/web)

---
updated-dependencies:
- dependency-name: "@lottiefiles/dotlottie-web"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 21, 2024
@dependabot @github
Copy link
Copy Markdown
Author

dependabot bot commented on behalf of github Jul 1, 2024

Superseded by #77.

@dependabot dependabot bot closed this Jul 1, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/develop/lottiefiles/dotlottie-web-0.25.0 branch July 1, 2024 03:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants