reactour icon indicating copy to clipboard operation
reactour copied to clipboard

Disable actions in custom Navigation

Open khidirbekov opened this issue 8 months ago • 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?

khidirbekov avatar Nov 01 '23 15:11 khidirbekov