Releases: nocode-js/sequential-workflow-editor
Releases · nocode-js/sequential-workflow-editor
0.4.0
- Added new value model:
generatedString(generatedStringValueEditor({ ... })). The new value model allows you to generate a string value for some property, depending on the values of other properties. Mainly this feature is designed to generate a step name automatically. - The
StepModelinterface has one new property:label. The label is used to display a step name in the editor and the toolbox.
Breaking changes:
- The
ValueModelFactorytype is changed to the interface. - The
ValueModelContextclass is renamed toValueContext. - The
VariablesProviderclass skips variables from own step.
0.3.2
- The
StepModelinterface has two new properties:categoryanddescription. The category is used to group steps in the toolbox. The description is used to display an additional information about a step in the editor. - The
PropertyModelinterface has one new property:hint. The hint is used to display an additional information about a property in the editor.
0.3.1
0.3.0
- Added new value model: nullable any variable (
nullableAnyVariableValueModel({ ... })). This value model allows you to select any variable. Additionally, you can specify a variable type that can be selected by a user. - Added new optional property:
valueTypestoVariableDefinitionsValueModelConfigurationinterface. Now it's possible to force the types of variables during creation of variables by a user.
Breaking changes:
- Renamed the
variableTypeproperty tovalueTypein theNullableVariableValueModelConfigurationinterface. - Renamed the
variableTypeproperty tovalueTypein theNullableVariableDefinitionValueModelConfigurationinterface.