UNPKG

carbon-components-svelte

Version:
71 lines (57 loc) 1.31 kB
import type { SvelteComponentTyped } from "svelte"; import type { SvelteHTMLElements } from "svelte/elements"; type $RestProps = SvelteHTMLElements["div"]; type $Props = { /** * Set the size of the list box * @default undefined */ size?: "sm" | "xl"; /** * Set the type of the list box * @default "default" */ type?: "default" | "inline"; /** * Set to `true` to open the list box * @default false */ open?: boolean; /** * Set to `true` to enable the light variant * @default false */ light?: boolean; /** * Set to `true` to disable the list box * @default false */ disabled?: boolean; /** * Set to `true` to indicate an invalid state * @default false */ invalid?: boolean; /** * Specify the invalid state text * @default "" */ invalidText?: string; /** * Set to `true` to indicate an warning state * @default false */ warn?: boolean; /** * Specify the warning state text * @default "" */ warnText?: string; [key: `data-${string}`]: any; }; export type ListBoxProps = Omit<$RestProps, keyof $Props> & $Props; export default class ListBox extends SvelteComponentTyped< ListBoxProps, { keydown: WindowEventMap["keydown"]; click: WindowEventMap["click"] }, { default: {} } > {}