Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jul 15, 2025

Bumps tiny-essentials from 1.13.0 to 1.16.2.

Release notes

Sourced from tiny-essentials's releases.

1.16.2

✨ What's New

TinyAfterScrollWatcher gets smarter with onStop()! πŸ›‘βœ¨

You can now register functions to run immediately after scrolling stops, even before the doAfterScroll() queue is processed.

watcher.onStop(() => {
  console.log('Scroll just stopped!');
});

Need to remove it later? You can do that too:

watcher.offStop(myStopCallback);

βœ… Summary

  • βž• Added: onStop(fn) β€” triggers functions immediately after scroll ends.
  • βž• Added: offStop(fn) β€” unregisters a previously added stop callback.
  • πŸ” onStop runs before the doAfterScroll queue.

Enjoy the added precision! πŸŒ€

Full Changelog: Tiny-Essentials/Tiny-Essentials@1.16.1...1.16.2

1.16.1

πŸ” What's New?

πŸ“¦ TinyAfterScrollWatcher

This new utility makes it easier to respond when scrolling stops β€” perfect for optimizing animations, loading events, or interface feedback.

  • 🧠 Detects when scrolling ends on an element or the window.
  • ⏱️ Configurable inactivity timeout (default: 100ms).
  • πŸ“š Queue-based callback system for multiple triggers.
const watcher = new TinyAfterScrollWatcher(window);
watcher.onScroll(() => {
    watcher.doAfterScroll(() => {
        console.log('[customBox] Scroll stopped!');
    });
})

... (truncated)

Commits
  • cb6ca26 version
  • b8f18ba TinyAfterScrollWatcher --> onStop added. / timeout mode now.
  • 6d14c3c after scroll tester updated.
  • 5658827 TinyHtml --> new rawAttr option added into style script.
  • cab6a39 TinyHtml --> cssPropAliases updated.
  • d60caeb TinyHtml --> style stuff updated.
  • c59c4ed TinyHtml --> style() added into docs.
  • 5ea8d10 TinyHtml --> style() added.
  • 0e6b28d doc page --> tiny fix.
  • b162050 TinyHtml --> docs updated.
  • 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 [tiny-essentials](https://github.com/JasminDreasond/Tiny-Essentials) from 1.13.0 to 1.16.2.
- [Release notes](https://github.com/JasminDreasond/Tiny-Essentials/releases)
- [Commits](Tiny-Essentials/Tiny-Essentials@1.13.0...1.16.2)

---
updated-dependencies:
- dependency-name: tiny-essentials
  dependency-version: 1.16.2
  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 Jul 15, 2025
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Jul 25, 2025

Looks like tiny-essentials is up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Jul 25, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/tiny-essentials-1.16.2 branch July 25, 2025 01:00
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.

1 participant