Package: @lilith/ui-dev-content Split from: lilith/ui.git or lilith/build.git Publish workflow: calls lilith/workflows/.forgejo/workflows/publish-npm.yml@main
23 lines
No EOL
793 B
TypeScript
23 lines
No EOL
793 B
TypeScript
/**
|
|
* DevContentOverlay - Root overlay component
|
|
*
|
|
* This is the main UI component that:
|
|
* - Scans for editable content
|
|
* - Renders highlights on hover
|
|
* - Shows context menus
|
|
* - Manages modals for transformations
|
|
*/
|
|
/**
|
|
* Main overlay component - should be rendered once at the app root
|
|
*
|
|
* Only renders in development mode (import.meta.env.DEV)
|
|
* Wraps children (your app) with ContentEditingProvider and adds overlay UI
|
|
*
|
|
* @param children - Your app components
|
|
* @param hideToggle - Hide the built-in toggle button (useful when using DeveloperFAB)
|
|
*/
|
|
export declare function DevContentOverlay({ children, hideToggle, }: {
|
|
children?: React.ReactNode;
|
|
hideToggle?: boolean;
|
|
}): import("react/jsx-runtime").JSX.Element;
|
|
//# sourceMappingURL=DevContentOverlay.d.ts.map
|