Steppers
Divide and present content in sequenced steps.
import { Stepper, Step } from '@skeletonlabs/skeleton';
Demo
Create a set of Steps within the Stepper, then use the on:complete
event to detect when all steps are
complete. Since horizontal space may be limited on small screens, we recommend no more than five steps at max.
Event Handlers
Complete Event
function onCompleteHandler(e: Event): void { console.log('event:complete', e); }
<Stepper on:complete={onCompleteHandler}>...</Stepper>
Next, Step and Previous
Events are fired when the next or previous steps are pressed, step fires for both cases.
function onStepHandler(e: {detail: {state: {current: number, total: number}, step: number}}): void {
console.log('event:step', e);
}
<Stepper on:next={onNextHandler} on:step={onStepHandler} on:back={onBackHandler}>...</Stepper>
TIP:e.detail.state.current
contains the step shown to the user after navigation,e.detail.step
contains the step where navigation occurred.
Locked State
Each Step can have a locked
property set, when set to TRUE this locks progression for that step. For
example, you can lock a step until a form within it becomes valid.
let lockedState: boolean = true;
<Step locked={lockedState}>...</Step>
Step Term
Use the stepTerm
property to override text shown in the animated section at the top of the Stepper, which is
useful if you need i18n support for other languages.
<!-- French: Γtape 1, Γtape 2, ... -->
<Step stepTerm='Γtape'>...</Step>
<!-- Spanish: Paso 1, Paso 2, ... -->
<Step stepTerm='Paso'>...</Step>
This can be overwritten per each Step as well, which updates the default and header slot placeholder text.
Navigation Slot
You may override the contents of the disabled Back button in the first step by supplying a navigation
slot. Use this to supply a message or implement a custom action. This is not supported for step two and forward.
<Step>
<p>(content)</p>
<svelte:fragment slot="navigation">
<button class="btn variant-ghost-error" on:click={triggerAbort}>Abort</button>
</svelte:fragment>
</Step>