Skip to content

openmrs/openmrs-esm-user-onboarding

Repository files navigation

Node.js CI

OpenMRS ESM User Onboarding App

This repository contains the user onboarding tutorials for OpenMRS3.

Running this code

yarn  # to install dependencies
yarn start  # to run the dev server

Configuring steps

Auto transition steps

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"]',
  }
}