Can’t get Gutenberg InspectorControls to work

I got it… I just was missing to enqueue ‘wp-editor’…

Here my example code:

wp_register_script(
                'mir-shortcodes-plugin-msc-rotating-icon-circle',
                plugins_url($index_js, __FILE__),
                array(
                    'wp-blocks',
                    'wp-i18n',
                    'wp-element',
                    'wp-components',
                    'wp-editor'
                ),
                filemtime("$dir/$index_js")
            );