Within my component, I have a property that serves as the tooltip text:
@property()
copyText = 'Click to copy';
I've managed to create a function using the @click expression to update the text, and also figured out how to revert it back to its default using @mouseout. However, I'm struggling to make the text change only after the tooltip fadeout animation completes when the mouse moves out. The tooltip library I'm using is shoelace tooltip.
Your assistance is greatly appreciated!