Releases: nocode-js/sequential-workflow-editor
Releases · nocode-js/sequential-workflow-editor
0.14.4
This version exposes the ToolboxGroup
interface in the sequential-workflow-editor
package #46.
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);
});
0.14.2
This version adds the formatPropertyValue
method to the PropertyValidatorContext
class.
0.14.1
This version adds the formatPropertyValue
method to: PropertyContext
, DefaultValueContext
, ScopedPropertyContext
and ValueContext
classes.
0.14.0
From now, the nullable any variable editor and the nullable variable editor display the expected variable types to select. This version also allows changes to the labels in the dropdown menu of the dynamic value editor.
0.13.2
This version adds missing translations for the variableDefinitions
value editor.
0.13.1
This version adds missing translations for the variableNameValidator
function #37.
0.13.0
This version introduces several internal changes that allowed for the creation of a new type of editor in the pro version: the hidden dependent value editor.
0.12.1
This version normalizes translations.
0.12.0
This version introduces the localization feature. Now you can localize the editor to any language you want.