You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With v3, it appears it is no longer possible to show a border around the spotlight to emphasize it. Previously, we'd just pass spotlight: { border: '...' } to the styles.
Would it be possible to accept a stroke + strokeWidth, which can then apply to the spotlight (would need to switch to using fill: transparent instead of opacity: 0):
Ideally, would love to be able to apply a shadow to it as well via filter. This is my current workaround, which demonstrates this should work, I believe:
I was working with this already, so I finished it and released it in 3.0.1
You can see it in action on the Scroll demo.
I also added some properties to the Overlay section in the config panel so they can be applied to any demo.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
With v3, it appears it is no longer possible to show a border around the spotlight to emphasize it. Previously, we'd just pass
spotlight: { border: '...' }to the styles.Would it be possible to accept a
stroke+strokeWidth, which can then apply to the spotlight (would need to switch to usingfill: transparentinstead ofopacity: 0):react-joyride/src/components/Overlay.tsx
Lines 167 to 175 in 9a0deb5
Ideally, would love to be able to apply a shadow to it as well via
filter. This is my current workaround, which demonstrates this should work, I believe:All reactions