fix(deps): update dependency headroom.js to ^0.12.0 - abandoned
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| headroom.js (source) | ^0.9.4 -> ^0.12.0 |
Release Notes
WickyNilliams/headroom.js
v0.12.0
v0.11.0: Support for multiple classes
This release adds support for multiple classes. This can be of particular use when using atomic CSS classes.
To use, pass a string with a space-separated list of classes in your options:
const hr = new Headroom(element, {
classes: {
pinned: "first-class second-class",
unpinned: "third-class fourth-class"
}
});
hr.init();
v0.10.4
This release fixes a bug where classes such as top were not added when Headroom is initialised, only after the user first scrolls.
v0.10.3
This release contains a breaking change for IE11, with the introduction of Object.assign.
Please be aware this needs to be polyfilled if you wish to support IE11. Alternatively, you can wrap your initialisation code in a condition to avoid instantiation on unsupported browsers:
if(Headroom.cutsTheMustard) {
// initialise headroom
}
v0.10.2
v0.10.0
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
â™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
Edited/Blocked Notification
Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.
You can manually request rebase by checking the rebase/retry box above.
âš Warning: custom changes will be lost.