elrumordelaluz/reactour

Disable actions in custom Navigation

khidirbekov opened this issue · 0 comments

Hello, I add custom Navigation component
image

Could I put disable status when I recieve some step?

For example, when I set Steps

{
    selector: '#someId',
    content: 'some content next',
    action: () => {
        tour.setMeta?.(NavigationMeta.DisableNextStep)
    },
    actionAfter: () => {
        tour.setMeta?.('');
    }
}

I would like get meta data inside Navigation component

Is it possible or there is exists other way?