Hi,
I am having issues using interactions on instances of components with their own interactions. Two concrete cases:
Case 1:
- I have a button component with on-hover interaction.
- I create an instance of this button into a form step and make this form step a component.
- I add an on click interaction (or mouse up) that is going to set a variable, when the button is clicked
- I add an instance of the form. I can still see the on-clik interction for setting the variable. I add a second on-clik (or mouse up) interaction to change to a new frame, as I want it to smart animate between the two frames. The on-hover from the button component works as intended tough.
Expected outcome is that clicking on the button now will both set the variable and change frame. However, it dosen’t work. Depending on what combo of on-click and mouse up interaction I use, the instance interaction overwrites the component, and it only do the frame change or nothing works.
Case 2:
- I have a toggle component with on-hover and on-click (to toggle it on and off)
- I add an insance of the toggle and now I also want something else to happen on click. Either I want a set variable interaction or a change to interaction.
Expected outcome is that I am able to check and uncheck the buton while also being able to add specifick click interactions for each instance. To keep everything nice and clean. However, the same issue as in case 1 happens.