This repository contains the user onboarding tutorials for OpenMRS3.
yarn # to install dependencies
yarn start # to run the dev server
To automatically transition to the next step when an element appears on the screen, you can add the autoTransition property to the step configuration. This property should be an object with the following properties:
-
autoNextOn
: The selector of the element that should trigger the transition.
Example usage:
{
target: '',
title: 'Title',
data: {
autoNextOn: '[data-extension-id="clinical-appointments-dashboard"]',
}
}