sequential-workflow-designer
Advanced tools
Changelog
0.9.0
This version changes the main configuration. The "isHidden" properties are prohibited. Also we added a possibility to hide the control bar. 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,
// ...
};
The controlBar
property is required from now. This change applies for the sequential-workflow-designer-angular
and sequential-workflow-designer-react
packages as well.
Changelog
0.8.1
Changed format of bundles:
sequential-workflow-designer
to UMD, ESM and CommonJS,sequential-workflow-designer-react
to ESM and CommonJS.Changelog
0.8.0
sequential-workflow-designer
package to the sequential-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. The sequential-workflow-designer
package exports definition types as before, but these types come from the sequential-workflow-model
package. You don't have to include the sequential-workflow-model
package to your project if you don't need it. You can read more about this approach here.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.
Changelog
0.7.0
step
and parentSequence
.isDraggable
and isDeletable
.StepContext
interface..sqd-step-start-stop*
CSS selectors to .sqd-root-start-stop*
.Changelog
0.6.0
Fixed support for touchpad.
DesignerExtension
interface. This change increases the extensibility of the designer.Changelog
0.5.4
This version introduces the first release of the Sequential Workflow Designer for Angular package.
Changelog
0.5.3
Icons
class for StartStopComponentView
.Changelog
0.5.2
This version introduces the first release of the Sequential Workflow Designer for React package.
Changelog
0.5.1
Changelog
0.5.0
sqd-editor
.