Skip to content

0.14.3

Compare
Choose a tag to compare
@b4rtaz b4rtaz released this 23 Oct 19:54
· 2 commits to main since this release
885fdca

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);
});