Skip to content

Releases: nocode-js/sequential-workflow-editor

0.4.0

21 Jun 22:37
60a0c7f
Compare
Choose a tag to compare
  • 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 StepModel interface has one new property: label. The label is used to display a step name in the editor and the toolbox.

Breaking changes:

  • The ValueModelFactory type is changed to the interface.
  • The ValueModelContext class is renamed to ValueContext.
  • The VariablesProvider class skips variables from own step.

0.3.2

14 Jun 18:08
0d9c597
Compare
Choose a tag to compare
  • The StepModel interface has two new properties: category and description. 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 PropertyModel interface has one new property: hint. The hint is used to display an additional information about a property in the editor.

0.3.1

12 Jun 19:06
dfef511
Compare
Choose a tag to compare

Added new value model: boolean (booleanValueModel({ ... })).

0.3.0

11 Jun 13:48
a0697d6
Compare
Choose a tag to compare
  • 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: valueTypes to VariableDefinitionsValueModelConfiguration interface. Now it's possible to force the types of variables during creation of variables by a user.

Breaking changes:

  • Renamed the variableType property to valueType in the NullableVariableValueModelConfiguration interface.
  • Renamed the variableType property to valueType in the NullableVariableDefinitionValueModelConfiguration interface.

0.2.1

04 Jun 11:12
53c8656
Compare
Choose a tag to compare

Fixed bug with removing a message about an empty list.

0.2.0

30 May 20:12
91e6608
Compare
Choose a tag to compare

Breaking changes:

  • The editor displays variables with dollar prefix ($).
  • The choices property is renamed to models in the DynamicValueModelConfiguration interface.

0.1.0

28 May 07:14
3b4cd0c
Compare
Choose a tag to compare

First release! 🚀