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
Make the update event of graphviz-script-editor bubble (0aa7fdf)
Rename the custom event of graphviz-script-editor from "input" to "update" (2d6bcd6)
BREAKING CHANGES
If you were listening to the input event, change the event name to update. The event detail didn't change - it still contains the updated script. Why did I rename the event? The original input event is triggered as composed and bubbled out of the shadow DOM. The input event handler caught it. The custom input event just followed it, which made its processing more difficult - for example, by checking the class of the event to be CustomEvent. Using a different event type - update - will avoid duplicate event processing without any extra conditions.
The value of wasmFolder will be ignored. Simply stop passing this input parameter in. This shouldn't break anything, but you might want to simplify your code.