@kookyleo/graphviz-anywhere-rn 0.1.1 → 0.1.3
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.
- package/README.md +18 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @kookyleo/graphviz-anywhere-react-native
|
|
2
|
+
|
|
3
|
+
<!-- TODO (follow-up PR): migrate to the shared C++ CGraphviz wrapper
|
|
4
|
+
introduced in `packages/web/src-cpp/main.cpp`. Plan: expose the same
|
|
5
|
+
typed `layout(dot, format, engine)` method through JSI / TurboModule
|
|
6
|
+
instead of the current C-ABI bridge, so RN and Web share one Graphviz
|
|
7
|
+
core. Tracked alongside the rearch introduced in the
|
|
8
|
+
`rearch/hpcc-js-aligned` branch. -->
|
|
9
|
+
|
|
10
|
+
React Native bindings for Graphviz. Not yet published to npm.
|
|
11
|
+
|
|
12
|
+
## Status
|
|
13
|
+
|
|
14
|
+
This package currently builds against the legacy C-ABI wrapper
|
|
15
|
+
(`capi/graphviz_api.{h,c}`) and is **not affected** by the web Wasm
|
|
16
|
+
rearch landed in `rearch/hpcc-js-aligned`. A follow-up PR will port the
|
|
17
|
+
native side to consume the same `CGraphviz` C++ class as the web package
|
|
18
|
+
so all platforms share one implementation.
|
package/package.json
CHANGED