0.14.3
This version provides the ability to sort the steps in the toolbox in a custom way. By default, the steps are sorted alphabetically.
EditorProvider.create(definitionModel, {
// ...
toolboxSorter(groups: ToolboxGroup[]) {
// ...
}
});
You can also hide certain steps from the toolbox by using the hidden method in the step builder.
createStepModel<MyStep>('myStep', 'task', step => {
step.toolbox(false);
});