Skip to content

2.3.0: Breakpoints for Scroller module

Choose a tag to compare

@CVE42-chicken CVE42-chicken released this 02 Feb 16:59
· 25 commits to main since this release
c87ab15
  • [feat] Add breakpoint configuration for scroller (6916a3d):
    scroll: {
      doScroll: true,
      breakpoints: {
        0: {
          doScroll: true,
          buffer: 50,
        },
        756: {
          doScroll: false,
        },
        1200: {
          doScroll: true,
          buffer: '100vh',
        },
      },
    }
    This configuration will
    • scroll 100vh on screens wider than 1200px,
    • not scroll on screens between 756px and 1200px,
    • and scroll 50px for any screen narrower than that.
  • [chore] Add release-it and document node dependency (cc8a87e)
  • [fix] Update uuid package to not use node:crypto (273e20a)