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
18 lines
No EOL
713 B
TypeScript
18 lines
No EOL
713 B
TypeScript
/**
|
|
* EditableHighlight - Single editable content highlight
|
|
*
|
|
* Renders a dashed border overlay for one editable element.
|
|
* Supports both manual text editing and AI-powered transformers.
|
|
*/
|
|
import type { ContentHandle } from '../core/interfaces';
|
|
export interface EditableHighlightProps {
|
|
handle: ContentHandle;
|
|
isHovered: boolean;
|
|
}
|
|
/**
|
|
* Renders a highlight overlay for a single editable element.
|
|
* Uses pointer-events: none to allow clicks to pass through,
|
|
* with only the Edit button receiving pointer events.
|
|
*/
|
|
export declare function EditableHighlight({ handle, isHovered, }: EditableHighlightProps): import("react/jsx-runtime").JSX.Element;
|
|
//# sourceMappingURL=EditableHighlight.d.ts.map
|