Merge branch 'next' of github.com:xyflow/xyflow into next

This commit is contained in:
moklick
2024-01-16 18:11:20 +01:00
20 changed files with 842 additions and 7 deletions
@@ -6,6 +6,9 @@ import { useStore } from '../../hooks/useStore';
import type { ReactFlowState } from '../../types';
export type PanelProps = HTMLAttributes<HTMLDivElement> & {
/** Set position of the panel
* @example 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'
*/
position?: PanelPosition;
children: ReactNode;
};