refactor(general): fit view in store to prevent flickering, rename onLoad => onPaneReady

This commit is contained in:
moklick
2021-12-09 07:24:45 +01:00
parent 3a52efbb1f
commit 88582a86cc
17 changed files with 96 additions and 100 deletions
+1 -1
View File
@@ -8,8 +8,8 @@ import { HandleElement } from './handles';
export interface Node<T = any> {
id: string;
position: XYPosition;
data: T;
type?: string;
data?: T;
style?: CSSProperties;
className?: string;
targetPosition?: Position;