chore(react): bump

This commit is contained in:
moklick
2024-01-08 13:31:59 +01:00
parent 61f8e00541
commit c8a5c25b14
3 changed files with 6 additions and 4 deletions
+3 -3
View File
@@ -5,7 +5,7 @@
### Minor changes ### Minor changes
- fix applyChanges: handle empty flows + addNodes/addEdges closes - fix applyChanges: handle empty flows + addNodes/addEdges closes
- cleanup hook exports - cleanup exports
## 12.0.0-next.3 ## 12.0.0-next.3
@@ -41,7 +41,7 @@ Svelte Flow had a big impact on this release as well. While combing through each
Before you can try out the new features, you need to do some minor updates: Before you can try out the new features, you need to do some minor updates:
- **A new npm package name:** Our name changed from `reactflow` to `@xyflow/react` and the main component is no longer a default, but a named import: - **A new npm package name:** Our name changed from `reactflow` to `@xyflow/react` and the main component is no longer a default, but a named import:
- v11: `import { ReactFlow } from '@xyflow/react';` - v11: `import ReactFlow from 'reactflow';`
- v12: `import { ReactFlow } from '@xyflow/react';` - v12: `import { ReactFlow } from '@xyflow/react';`
- **Node attribute “computed”:** All computed node values are now stored in `node.computed` - **Node attribute “computed”:** All computed node values are now stored in `node.computed`
- v11: `node.width`, `node.height` ,`node.positionAbsolute` - v11: `node.width`, `node.height` ,`node.positionAbsolute`
@@ -72,7 +72,7 @@ Before you can try out the new features, you need to do some minor updates:
- affected functions: `useNodes`, `useNodesState`, `useEdgesState`, `applyNodeChange`, `onInit`, `applyEdgeChanges` , `MiniMapProps` - affected functions: `useNodes`, `useNodesState`, `useEdgesState`, `applyNodeChange`, `onInit`, `applyEdgeChanges` , `MiniMapProps`
- **Removal of deprecated functions:** - **Removal of deprecated functions:**
- `getTransformForBounds` (new name: `getViewportForBounds`), - `getTransformForBounds` (new name: `getViewportForBounds`),
- `getRectOfNodes` \*\*\*\*(new name: `getNodesBounds`) - `getRectOfNodes` (new name: `getNodesBounds`)
- `project` (new name: `screenToFlowPosition`) - `project` (new name: `screenToFlowPosition`)
- `getMarkerEndId` - `getMarkerEndId`
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@xyflow/react", "name": "@xyflow/react",
"version": "12.0.0-next.3", "version": "12.0.0-next.4",
"description": "React Flow - A highly customizable React library for building node-based editors and interactive flow charts.", "description": "React Flow - A highly customizable React library for building node-based editors and interactive flow charts.",
"keywords": [ "keywords": [
"react", "react",
@@ -70,4 +70,6 @@ function EdgeTextComponent({
); );
} }
EdgeTextComponent.displayName = 'EdgeText';
export const EdgeText = memo(EdgeTextComponent); export const EdgeText = memo(EdgeTextComponent);