Releases: gebruederheitz/clicktrigger2
Releases · gebruederheitz/clicktrigger2
2.6.1: Node 18+
2.6.0: SCSS customizable class names
2.5.0: "Relative" selectors for data-attribute factory
Feature
- [feat] "self" and relative (parent) virtual selectors for Data-Attribute Factory (9b3bae1)
Usedata-triggertarget="self"anddata-triggertarget="relative::parent::parent::[data-attribute=\"value\"}"to select target elements relative to the trigger being configured.
Caveats
The global that jQuery is read from has changed from window.$ to window.jQuery. This might cause compatibility problems in some rare setups.
Maintenance
2.4.1: Bugfix release
2.4.0: Add option to only scroll on LocationTriggers
2.3.1: Bugfix release
- [fix] Reverse breakpoint order to allow for covering all sizes. (0eaa65c)
2.3.0: Breakpoints for Scroller module
- [feat] Add breakpoint configuration for scroller (6916a3d):
This configuration will
scroll: { doScroll: true, breakpoints: { 0: { doScroll: true, buffer: 50, }, 756: { doScroll: false, }, 1200: { doScroll: true, buffer: '100vh', }, }, }
- 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)