I have recently developed an angular project that utilizes the fuse-sidebar component. Additionally, I am incorporating introjs into the project. While introjs is functioning properly, it does not highlight elements contained within the fuse-sidebar.
The issue becomes evident when comparing how elements inside and outside of the fuse-sidebar are highlighted:
https://i.sstatic.net/MMsSp.png
In the above screenshot, elements inside the fuse-sidebar are not being highlighted as intended, unlike elements outside of it:
https://i.sstatic.net/uBVfL.png
While there is a highlighter for the fuse elements, the actual element is not displayed in the highlighted area, similar to what can be observed in the second image depicting an element outside the fuse-sidebar.
I've reviewed the HTML code, which looks like this:
<fuse-sidebar></fuse-sidebar>
<div>other elements</div>
Initially, I tried setting the z-index
of the fuse-sidebar to 1001 to match that of the div. However, this adjustment did not resolve the issue. What do you think could be causing this problem?