UNPKG

bits-ui

Version:

The headless components for Svelte.

7 lines (6 loc) 2.41 kB
import type { CreateMenubarProps } from "@melt-ui/svelte"; import type { DOMElement, Expand, HTMLDivAttributes, OmitIds } from "../../internal/index.js"; export type { MenuArrowProps as MenubarArrowProps, MenuCheckboxIndicatorProps as MenubarCheckboxIndicatorProps, MenuCheckboxItemEvents as MenubarCheckboxItemEvents, MenuCheckboxItemProps as MenubarCheckboxItemProps, MenuContentEvents as MenubarContentEvents, MenuContentProps as MenubarContentProps, MenuGroupProps as MenubarGroupProps, MenuItemEvents as MenubarItemEvents, MenuItemProps as MenubarItemProps, MenuLabelProps as MenubarLabelProps, MenuProps as MenubarMenuProps, MenuRadioGroupProps as MenubarRadioGroupProps, MenuRadioIndicatorProps as MenubarRadioIndicatorProps, MenuRadioItemEvents as MenubarRadioItemEvents, MenuRadioItemProps as MenubarRadioItemProps, MenuSeparatorProps as MenubarSeparatorProps, MenuSubContentEvents as MenubarSubContentEvents, MenuSubContentProps as MenubarSubContentProps, MenuSubProps as MenubarSubProps, MenuSubTriggerEvents as MenubarSubTriggerEvents, MenuSubTriggerProps as MenubarSubTriggerProps, MenubarTriggerEvents, MenubarTriggerProps, } from "../menu/types.js"; export type { MenuTriggerPropsWithoutHTML as MenubarTriggerPropsWithoutHTML, MenuArrowPropsWithoutHTML as MenubarArrowPropsWithoutHTML, MenuCheckboxIndicatorPropsWithoutHTML as MenubarCheckboxIndicatorPropsWithoutHTML, MenuCheckboxItemPropsWithoutHTML as MenubarCheckboxItemPropsWithoutHTML, MenuContentPropsWithoutHTML as MenubarContentPropsWithoutHTML, MenuGroupPropsWithoutHTML as MenubarGroupPropsWithoutHTML, MenuItemPropsWithoutHTML as MenubarItemPropsWithoutHTML, MenuLabelPropsWithoutHTML as MenubarLabelPropsWithoutHTML, MenuPropsWithoutHTML as MenubarMenuPropsWithoutHTML, MenuRadioGroupPropsWithoutHTML as MenubarRadioGroupPropsWithoutHTML, MenuRadioIndicatorPropsWithoutHTML as MenubarRadioIndicatorPropsWithoutHTML, MenuRadioItemPropsWithoutHTML as MenubarRadioItemPropsWithoutHTML, MenuSeparatorPropsWithoutHTML as MenubarSeparatorPropsWithoutHTML, MenuSubContentPropsWithoutHTML as MenubarSubContentPropsWithoutHTML, MenuSubPropsWithoutHTML as MenubarSubPropsWithoutHTML, MenuSubTriggerPropsWithoutHTML as MenubarSubTriggerPropsWithoutHTML, } from "../menu/types.js"; export type MenubarPropsWithoutHTML = Expand<OmitIds<CreateMenubarProps> & DOMElement>; export type MenubarProps = MenubarPropsWithoutHTML & HTMLDivAttributes;