A group of Blockly blocks that add and remove connections dynamically.
npm install @blockly/block-dynamic-connection --save
import * as Blockly from 'blockly';
import * as BlockDynamicConnection from '@blockly/block-dynamic-connection';
overrideOldBlockDefinitions
: Replaces the Blockly default blocks with the dynamic connection blocks. This enables projects to use the dynamic block plugin without changing existing XML. Note that if you enable this, you will never be able to switch back to non-dynamic connections, because this changes the way mutations are serialized.
<block type="dynamic_text_join"></block>
<block type="dynamic_list_create"></block>
<block type="dynamic_if"></block>
Apache 2.0