@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
25 lines (24 loc) • 842 B
text/typescript
import { PopoverProps } from "./type.mjs";
import "react";
import { Popover } from "@base-ui/react/popover";
//#region src/Popover/groupContext.d.ts
type PopoverGroupSharedProps = Omit<PopoverProps, 'children' | 'content' | 'defaultOpen' | 'open' | 'ref'> & {
/**
* @description Whether to enable content layout animation when switching triggers
* @default false
*/
contentLayoutAnimation?: boolean;
/**
* Disable the "destroy on invalid trigger (display:none / disconnected)" guard for performance.
* @default false
*/
disableDestroyOnInvalidTrigger?: boolean;
/**
* Disable the "hide when positioner falls back to (0,0)" visual guard for performance.
* @default false
*/
disableZeroOriginGuard?: boolean;
};
//#endregion
export { PopoverGroupSharedProps };
//# sourceMappingURL=groupContext.d.mts.map