chore(version): bump

This commit is contained in:
moklick
2022-05-21 14:23:27 +02:00
parent 94321613f2
commit a36bef84a0
3 changed files with 6 additions and 3 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "react-flow-renderer",
"version": "10.2.4-next.0",
"version": "10.2.4-next.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "react-flow-renderer",
"version": "10.2.4-next.0",
"version": "10.2.4-next.1",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.17.9",

View File

@@ -1,6 +1,6 @@
{
"name": "react-flow-renderer",
"version": "10.2.4-next.0",
"version": "10.2.4-next.1",
"engines": {
"node": ">=14"
},

View File

@@ -4,11 +4,14 @@ import Handle from '../../components/Handle';
import { NodeProps, Position } from '../../types';
const DefaultNode = ({
id,
data,
isConnectable,
targetPosition = Position.Top,
sourcePosition = Position.Bottom,
}: NodeProps) => {
console.log('render', id);
return (
<>
<Handle type="target" position={targetPosition} isConnectable={isConnectable} />