Hello Ryan, I saw that by default indentation only works on list and I wou

Hello Ryan,

I saw that by default indentation only works on list and I would like enable Block indentation on all paragraphs. Could you say me how can I do this?

I tried to add the plugin Indent and configure indentBlock parameters (like this [link]
(Block indentation | CKEditor 5 Documentation)) but it seem like it doesn’t work. Here has a example with ckeditorvaadin:

		Toolbar[] toolbar = new Toolbar[]
 {Toolbar.indent, Toolbar.outdent };
		Config config = new Config();
		config.setEditorToolBar(toolbar);
		config.addExtraPlugin( Plugins.Indent );
		config.setPluginStatus( Plugins.Indent, true );
		config.setIndentBlock( 1, "em" );
		
		VaadinCKEditor richTexteditor = new VaadinCKEditorBuilder().with(builder -> {
			builder.config = config;
		}).createVaadinCKEditor();
		

It’s a bug, I will fix it in the next release early next year.
Cheers,Ryan

New version has been released.