pycodestyle icon indicating copy to clipboard operation
pycodestyle copied to clipboard

🎛 A Svelte library for building dynamic, infinitely customizable node-based user interfaces and flowcharts

Results 210 pycodestyle issues
Sort by recently updated
recently updated
newest added

I'm using Svelvet component to build a graph dynamically, adding nodes and edges. I need to have two type of nodes, regular ones, and node that represent sub-graphs. I open...

So I would like to only be able to connected anchors of the same "kind" with each other. This could either be achieved through a making something like an anchor...

Hey there 👋🏼 I was searching to have the ability to pan & zoom on a certain node or a group, however from reading the [https://svelvet.mintlify.app/components/svelvet](Svelvet) component description I see...

Is there a way to customize the focus state of the Graph wrapper? From the code [here](https://github.com/open-source-labs/Svelvet/blob/5f835b641887547d4ab6b4cdf491edb21d62a968/src/lib/containers/Graph/Graph.svelte#L544-L547) I'm not sure if this is currently possible. I'd like to ideally remove...

I want to run some code whenever a node gets selected or deselected. I know that `Node` provides a `selected` prop through a `let:` directive, but due to how Svelte's...

The `Anchor` component has a `locked` property that prevents outgoing edges from being created. However, the option does not disable edges from other nodes from being connected to it. This...

Thank you for creating and sharing this great tool. ❤️ I just wanted to report that the `LICENSE` file is missing from the repository and the license link at the...

Love the fact that now we can use `connect` & `disconnect` to programmatically connect nodes! Two doubts 1. I guess it'd be great if we can also expose these methods...

I've been trying to set the selection box color using the global theming structure as described [here](https://svelvet.mintlify.app/styling). However, it looks like the selection box color is always overridden by `Svelvet`:...

Currently the `onEdgeDrop` event only provides the following details: ```typescript { cursor: { x: number, y: number }; source: { anchor: string; node: string; } } ``` In contrast to...