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.

36 lines (35 loc) 1.39 kB
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; columns?: number | undefined; gap?: number | undefined; columnGap?: number | undefined; rowGap?: number | undefined; autoFlow?: "row" | "column" | undefined; autoColumns?: string | null | undefined; template?: string | null | undefined; templateColumns?: string | null | undefined; templateRows?: string | null | undefined; stack?: boolean | undefined; inline?: boolean | undefined; items?: "start" | "end" | "center" | "baseline" | "stretch" | "initial" | undefined; justify?: "start" | "end" | "center" | "between" | "around" | "evenly" | "initial" | undefined; justifyItems?: "start" | "end" | "center" | "baseline" | "stretch" | "initial" | undefined; content?: "start" | "end" | "center" | "between" | "around" | "evenly" | "initial" | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type GridProps = typeof __propDef.props; export type GridEvents = typeof __propDef.events; export type GridSlots = typeof __propDef.slots; export default class Grid extends SvelteComponentTyped<GridProps, GridEvents, GridSlots> { } export {};