@lincle/react-native-base 0.4.0-next.4 → 0.4.0-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,10 +12,10 @@ const Paths = () => {
|
|
|
12
12
|
const edges = (0, shared_1.useEdges)();
|
|
13
13
|
const paths = (0, react_1.useMemo)(() => {
|
|
14
14
|
const edgesMap = Object.keys(edges).map((edgeId) => {
|
|
15
|
-
const { sourceId, targetId } = edges[edgeId];
|
|
15
|
+
const { line, sourceId, targetId } = edges[edgeId];
|
|
16
16
|
if (sourceId &&
|
|
17
17
|
targetId) {
|
|
18
|
-
return ((0, jsx_runtime_1.jsx)(Path_1.default, { id: edgeId, sourceId: sourceId, targetId: targetId }, edgeId));
|
|
18
|
+
return ((0, jsx_runtime_1.jsx)(Path_1.default, { id: edgeId, line: line, sourceId: sourceId, targetId: targetId }, edgeId));
|
|
19
19
|
}
|
|
20
20
|
else {
|
|
21
21
|
return null;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@lincle/react-native-base",
|
|
3
3
|
"title": "lincle react native base",
|
|
4
4
|
"license": "LGPL-3.0-or-later",
|
|
5
|
-
"version": "0.4.0-next.
|
|
5
|
+
"version": "0.4.0-next.5",
|
|
6
6
|
"private": false,
|
|
7
7
|
"description": "A 'reactive' React node and edge generator",
|
|
8
8
|
"author": "wallzero @wallzeroblog (http://wallzero.com)",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@digest/jest-typescript": "^4.4.3",
|
|
52
52
|
"@digest/typescript": "^4.4.3",
|
|
53
53
|
"@types/jest": "^29.5.12",
|
|
54
|
-
"@types/node": "^22.
|
|
54
|
+
"@types/node": "^22.1.0",
|
|
55
55
|
"@types/react": "^18.3.3",
|
|
56
56
|
"@types/react-native": "^0.73.0",
|
|
57
57
|
"@types/react-test-renderer": "^18.3.0",
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
"ncp": "^2.0.0",
|
|
62
62
|
"npm-run-all": "^4.1.5",
|
|
63
63
|
"react": "^18.3.1",
|
|
64
|
-
"react-native": "^0.74.
|
|
64
|
+
"react-native": "^0.74.5",
|
|
65
65
|
"react-native-svg": "^15.4.0",
|
|
66
66
|
"react-test-renderer": "^18.3.1",
|
|
67
67
|
"rimraf": "^6.0.1"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@lincle/react-shared": "^0.4.0-next.
|
|
70
|
+
"@lincle/react-shared": "^0.4.0-next.5"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
"acyclical graph",
|
|
90
90
|
"cyclical graph"
|
|
91
91
|
],
|
|
92
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "594612d2d666aee12a3543d46f327106870c8814"
|
|
93
93
|
}
|