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.

39 lines (38 loc) 1.26 kB
import { SvelteComponentTyped } from "svelte"; export declare const groupKey: unique symbol; declare const __propDef: { props: { [x: string]: any; name?: string | undefined; value?: any; autoscroll?: boolean | undefined; variant?: "default" | "outline" | "fill" | "fill-light" | "fill-surface" | "underline" | "none" | undefined; size?: "xs" | "sm" | "md" | "lg" | undefined; rounded?: boolean | "full" | undefined; gap?: boolean | "px" | undefined; inset?: boolean | undefined; vertical?: boolean | undefined; classes?: { root?: string; options?: string; label?: string; option?: string; indicator?: string; } | undefined; }; events: { change: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; panes: {}; }; }; export type ToggleGroupProps = typeof __propDef.props; export type ToggleGroupEvents = typeof __propDef.events; export type ToggleGroupSlots = typeof __propDef.slots; export default class ToggleGroup extends SvelteComponentTyped<ToggleGroupProps, ToggleGroupEvents, ToggleGroupSlots> { } export {};