Features
- Add
x-placement
attribute to tooltip node, allowing you to style without needing to use the.tippy-popper
selector
Example
Before:
.tippy-popper[x-placement^='top'] .tippy-tooltip.my-theme .tippy-arrow {
border-top-color: pink;
}
After:
.tippy-tooltip.my-theme[x-placement^='top'] .tippy-arrow {
border-top-color: pink;
}
Fixes
- Apply correct mutations when calling
.set()
with apopperInstance
dependency update