A condensed checklist component that can be used inline or in a modal
Checklist
component is one of Frigade’s most popular tools, especially for user onboarding and activation. They’re super handy for guiding users through their journey, whether it’s at the start of their experience or when they’re setting up a new product vertical or a complex feature.
When to Use Checklists:
as={Dialog}
will render the Flow in a modal Dialog. Defaults to Box
.flow.start()
or step.start()
from the parent component if you set this to false
. Most components should not need to override this behavior.Defaults to true
.false
, the step will not be automatically completed when clicked.false
, the step will not be automatically completed when clicked.type
defined on the step in the Flow YAML config should match the key in this object.
For instance, if you have a step with type: 'custom'
, you should provide a component for it like so:title: Hello, ${name}!
in the Flow configuration and pass variables={{name: 'John'}}
to customize the copy.