svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
36 lines (35 loc) • 1.21 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
columns?: number;
gap?: number;
columnGap?: number;
rowGap?: number;
autoFlow?: 'row' | 'column';
autoColumns?: string | null;
template?: string | null;
templateColumns?: string | null;
templateRows?: string | null;
stack?: boolean;
inline?: boolean;
items?: 'start' | 'end' | 'center' | 'baseline' | 'stretch' | 'initial';
justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly' | 'initial';
justifyItems?: 'start' | 'end' | 'center' | 'baseline' | 'stretch' | 'initial';
content?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly' | 'initial';
};
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 {};