I’m adding a new panel to a Gutenberg block through the editor.BlockEdit
wp.block filter.
<InspectorControls>
<PanelBody title={ __( 'New Settings' ) } initialOpen={ false } >
...
</PanelBody>
</InspectorControls>
The new panel appears on top of the default panels. Is there any way to change the order? To make it show below other panels? I did not find any documentation about this..