Sameer Goyal
Sameer Goyal
Apologies for the late response. The way undo redo functionality is implemented in Diagram Maker is by only marking some actions that go into the undo redo history. Those are...
If you want to submit a PR, you can add event listeners for touch events [here](https://github.com/awslabs/diagram-maker/blob/master/src/service/ui/UIEventManager.ts#L130-L147) alongside the other DOM events we listen to. We then convert the DOM events...
That's a good suggestion. Would you be willing to submit a PR for this if you have succeeded in integrating diagram maker?
That's great! We can help in reviewing and merging the PR once its ready. It will greatly help others who might be looking to integrate diagram maker into Vue projects...
Just checking if you're able to contribute a PR for a Vue.js example or if you'd like us to come up with one?
Can you share the stack trace for the error? Also, if possible can you share a minimal repo where this bug can be reproduced?
You can attach your own reducer while initializing DiagramMaker. See details on how to do this here: https://awslabs.github.io/diagram-maker/usage/initialization.html. This reducer will be invoked post invoking diagram maker's own reducer which...
Yes, that is correct. > And would this trigger a re-render of that node, so that it can render the new data I just added in consumerData? Yes, it should...
I see 2 issues with above code: 1. There should be no need to use ActionInterceptor for this use case. The ActionInterceptor is useful for modifying, cancelling or triggering additional...
Sure, we'll keep this open until we update the documentation with an example for this.