mirror of https://github.com/ANL-CEEESA/RELOG.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
import type { Node } from '../../types';
|
|
import type { MiniMapProps } from './types';
|
|
declare function MiniMapComponent<NodeType extends Node = Node>({ style, className, nodeStrokeColor, nodeColor, nodeClassName, nodeBorderRadius, nodeStrokeWidth, nodeComponent, bgColor, maskColor, maskStrokeColor, maskStrokeWidth, position, onClick, onNodeClick, pannable, zoomable, ariaLabel, inversePan, zoomStep, offsetScale, }: MiniMapProps<NodeType>): import("react/jsx-runtime").JSX.Element;
|
|
declare namespace MiniMapComponent {
|
|
var displayName: string;
|
|
}
|
|
/**
|
|
* The `<MiniMap />` component can be used to render an overview of your flow. It
|
|
* renders each node as an SVG element and visualizes where the current viewport is
|
|
* in relation to the rest of the flow.
|
|
*
|
|
* @public
|
|
* @example
|
|
*
|
|
* ```jsx
|
|
*import { ReactFlow, MiniMap } from '@xyflow/react';
|
|
*
|
|
*export default function Flow() {
|
|
* return (
|
|
* <ReactFlow nodes={[...]]} edges={[...]]}>
|
|
* <MiniMap nodeStrokeWidth={3} />
|
|
* </ReactFlow>
|
|
* );
|
|
*}
|
|
*```
|
|
*/
|
|
export declare const MiniMap: typeof MiniMapComponent;
|
|
export {};
|
|
//# sourceMappingURL=MiniMap.d.ts.map
|