bits-ui
Version:
The headless components for Svelte.
14 lines (13 loc) • 1.35 kB
TypeScript
export { default as Root } from "./components/command.svelte";
export { default as Empty } from "./components/command-empty.svelte";
export { default as Group } from "./components/command-group.svelte";
export { default as GroupHeading } from "./components/command-group-heading.svelte";
export { default as GroupItems } from "./components/command-group-items.svelte";
export { default as Input } from "./components/command-input.svelte";
export { default as Item } from "./components/command-item.svelte";
export { default as LinkItem } from "./components/command-link-item.svelte";
export { default as List } from "./components/command-list.svelte";
export { default as Viewport } from "./components/command-viewport.svelte";
export { default as Loading } from "./components/command-loading.svelte";
export { default as Separator } from "./components/command-separator.svelte";
export type { CommandRootProps as RootProps, CommandEmptyProps as EmptyProps, CommandGroupProps as GroupProps, CommandGroupHeadingProps as GroupHeadingProps, CommandGroupItemsProps as GroupItemsProps, CommandItemProps as ItemProps, CommandLinkItemProps as LinkItemProps, CommandInputProps as InputProps, CommandSeparatorProps as SeparatorProps, CommandListProps as ListProps, CommandLoadingProps as LoadingProps, CommandViewportProps as ViewportProps, } from "./types.js";