UNPKG

svelte-ux

Version:

- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`

48 lines (47 loc) 1.26 kB
import { SvelteComponentTyped } from "svelte"; import type { ComponentProps } from '../types'; import Menu from './Menu.svelte'; declare const __propDef: { props: { [x: string]: any; options?: { label: string; value: any; icon?: string; }[]; value?: any; menuProps?: ComponentProps<Menu>; menuIcon?: string; explicitClose?: any; }; events: { [evt: string]: CustomEvent<any>; }; slots: { selection: {}; prepend: { slot: string; }; append: {}; default: { options: { label: string; value: any; icon?: string; }[]; selected: { label: string; value: any; icon?: string; }; close: () => boolean; setValue: (val: any) => any; }; }; }; export type MenuFieldProps = typeof __propDef.props; export type MenuFieldEvents = typeof __propDef.events; export type MenuFieldSlots = typeof __propDef.slots; export default class MenuField extends SvelteComponentTyped<MenuFieldProps, MenuFieldEvents, MenuFieldSlots> { } export {};