mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-09 16:05:42 +00:00
* feat(frontend): wip * feat(frontend): skeleton done * feat(frontend): background runnables * feat(frontend): fix build * feat(frontend): finish background runnable tuto * feat(frontend): connection output * feat(frontend): add simple app tutorial * feat(frontend): add simple app trigger * feat(frontend): fix wording * feat(frontend): remove duplicate code * feat(frontend): wip tutorial rework * feat(frontend): Tutorial done * feat(frontend): Fix build
30 lines
542 B
Svelte
30 lines
542 B
Svelte
<script lang="ts">
|
|
import Tutorial from '../Tutorial.svelte'
|
|
|
|
export let name: string
|
|
export let index: number
|
|
|
|
let tutorial: Tutorial | undefined = undefined
|
|
|
|
export function runTutorial() {
|
|
tutorial?.runTutorial()
|
|
}
|
|
</script>
|
|
|
|
<Tutorial
|
|
bind:this={tutorial}
|
|
{index}
|
|
{name}
|
|
on:error
|
|
on:skipAll
|
|
getSteps={(driver) => [
|
|
{
|
|
popover: {
|
|
title: 'Welcome to the Windmil Flow editor',
|
|
description:
|
|
'Learn how to build our first branch to be executed on a condition. You can use arrow keys to navigate'
|
|
}
|
|
}
|
|
]}
|
|
/>
|