Sequential Workflow Editor Model
This package contains the model for Sequential Workflow Editor.
💡 License
Commercial license
You are creating a closed source application and you are not distributing our library in source form. You may use this project under the terms of the Commercial License. To purchase license check the pricing.
Open source license
If you are developing a freely available software program using a license that aligns with the GNU General Public License version 3, you are permitted to utilize this project while abiding by the provisions outlined in the GPLv3.
0.6.0
- This version brings small visual improvements.
- Added a new value model: string dictionary (
stringDictionaryValueModel({ ... })
). This value model allows you to specify a dictionary of string values. - The string value model now supports multiline mode.
stringValueModel({ multiline: true })
stringValueModel({ multiline: 10 })
Breaking changes:
The createStepEditorProvider() method of the EditorProvider class now returns a new type of editor provider. This method no longer accepts any arguments.
type StepEditorProvider = (step: Step, context: StepEditorContext, definition: Definition) => HTMLElement;
EditorProvider.createStepEditorProvider(): StepEditorProvider;
The ValueKnownType
enum is renamed to WellKnownValueType
.