Closed danilopolani closed 2 years ago
The PR implements a setMeta() method for Nodes to chain it in the component builder:
setMeta()
class MyComponent extends Rete.Component { constructor () { super('Component name'); } builder (node) { return node .setMeta({ foo: 'bar' }) .addControl(...) .addInput(...) .addOutput(...); } }
Any idea when will it be merged?
The PR implements a
setMeta()
method for Nodes to chain it in the component builder: