Releases: nocode-js/sequential-workflow-designer
0.9.1
0.9.0
Breaking Changes
This version changes the main configuration. The "isHidden" properties are prohibited. To hide the control bar or other UI component you need to set false
in the corresponding configuration property.
const configuration = {
toolbox: false,
editors: false,
controlBar: false,
// ...
};
To display components you need to set a proper value.
const configuration = {
toolbox: {
groups: [ /* ... */ ]
},
editors: {
globalEditorProvider: () => { /* ... */ },
stepEditorProvider: () => { /* ... */ },
},
controlBar: true,
// ...
};
0.8.1
0.8.0
- This release introduces a better support for TypeScript.
- The model of the workflow definition is moved from the
sequential-workflow-designer
package to thesequential-workflow-model
package. By this it's possible to create a common package with your workflow model and use it for the front-end and back-end applications at the same time. Thesequential-workflow-designer
package exports definition types as before, but these types come from thesequential-workflow-model
package. You don't have to include thesequential-workflow-model
package to your project if you don't need it. You can read more about this approach here.
Breaking Changes
TaskStep
, SwitchStep
, ContainerStep
interfaces are depreciated now. Those types will be removed in the future.
🤩 We launched a new project: Sequential Workflow Machine. It's a JavaScript workflow engine for the frontend and the backend. The engine uses exactly the same data model as the Sequential Workflow Designer. It means you can use the same workflow definition for the designer and the engine. The new package is powered by the xstate
library.
0.7.0
- The step validator has two parameters from now:
step
andparentSequence
. - Added new editing restrictions:
isDraggable
andisDeletable
.
Breaking Changes
- Refactored step components by introducing the
StepContext
interface. - Renamed
.sqd-step-start-stop*
CSS selectors to.sqd-root-start-stop*
.
0.6.0
0.5.4
This version introduces the first release of the Sequential Workflow Designer for Angular package.
0.5.3
0.5.2
This version introduces the first release of the Sequential Workflow Designer for React package.