8000 Release 0.14.3 · nocode-js/sequential-workflow-editor · GitHub
[go: up one dir, main page]

Skip to content
8000

0.14.3

Compare
Choose a tag to compare 6C93
@b4rtaz b4rtaz released this 23 Oct 19:54
· 7 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);
});
0