Container Step Component
This component is mainly designed for for/while/foreach
loops. It could be used as a context container too.
Example
Check the Fullscreen Example.
Properties
Property | Type | Description |
---|---|---|
componentType | string | The type of the component. To use the icon step component you must set it to container . |
id | string | The unique identifier of the step. We recommend to use the next() function from the Uid class to generate it. |
name | string | The name of the switch. |
type | string | Your custom type of the step. |
properties | object | The properties of the step. |
sequence | object | Children steps of the container. |
Example
const step = {
componentType: 'container',
id: '2a11d8498af26cdb67e2f27171e82f8e',
type: 'foreach',
name: 'Foreach of users',
properties: {
itemsSource: 'select * from users',
},
sequence: [
// steps...
]
};
Customization
Pro Only
This part of the article is available only for subscribers of the pro package. Buy the pro package to get an access to this part.
If you have already subscription please log in.