react-diagrams icon indicating copy to clipboard operation
react-diagrams copied to clipboard

a super simple, no-nonsense diagramming library written in react that just works

Results 145 react-diagrams issues
Sort by recently updated
recently updated
newest added

Hi, For my React application i'm using a Content-Security-Policy as the following: ``` add_header Content-Security-Policy " default-src 'self'; frame-src 'self' data:; script-src 'self' style-src 'self'; img-src 'self' data:; font-src 'self';...

We recently started using this library and we are building a wrapper library around it that gives to the user something similar to figjam where the user can drag and...

Hi, I am using the latest beta. But I get TypeScript issues when running tsc. Even with a simple example: ``` src/components/Graph.tsx:39:16 - error TS2345: Argument of type 'DefaultNodeModel' is...

Will you support react 18, and do you have any idea what changes need to be made to support this? 👍 Happy to help if I got some pointers on...

When I am using DefaultLinkModel labels appear at correct positions as in the demo but when I am using RightAnglelinkModel labels are getting positioned to top corner probably (0,0) of...

bug

I was trying out one of the demos. This error appears whenever I use a link label. Nodes and links get rendered with no issues, if I don't use any...

Hello. Our team has been using this product for our internal tools. It's been amazing so far. I was just wondering if there is any plans to add search functionality...

# Checklist Closes #929 - [x] The code has been run through pretty `yarn run pretty` - [x] The tests pass on CircleCI - [x] You have referenced the issue(s)...

I have a huge graph with hundreds of nodes and links, which trigger a LOT of repainting. since I only need one repainting no matter which node triggers it, I...

This is my diagram component ``` / create an instance of the engine with all the defaults const engine = createEngine(); engine.getNodeFactories().registerFactory(new NodeFactory()); // --- node source const node1 =...