UNPKG

svelte-ux

Version:

A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.

45 lines (44 loc) 1.32 kB
import { SvelteComponentTyped } from "svelte"; import { type ComponentProps } from 'svelte'; type StepsContext = { vertical: boolean; }; export declare function setSteps(value: StepsContext | undefined): void; export declare function getSteps(): StepsContext | undefined; import Step from './Step.svelte'; import Icon from './Icon.svelte'; declare const __propDef: { props: { [x: string]: any; data?: { label: string; content?: string; icon?: ComponentProps<Icon>["data"]; completed?: boolean; }[] | undefined; vertical?: boolean | undefined; classes?: { root?: string; item?: ComponentProps<Step>["classes"]; } | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: { data: { label: string; content?: string; icon?: ComponentProps<Icon>["data"]; completed?: boolean; }[]; }; }; }; export type StepsProps = typeof __propDef.props; export type StepsEvents = typeof __propDef.events; export type StepsSlots = typeof __propDef.slots; export default class Steps extends SvelteComponentTyped<StepsProps, StepsEvents, StepsSlots> { } export {};