@relation-graph/react 3.0.1 → 3.0.2
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/package.json +1 -1
- package/relation-graph.js +6 -6
- package/relation-graph.mjs +1004 -943
- package/relation-graph.umd.js +6 -6
- package/types/packages/platforms/react/src/index.d.ts +4 -1
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGCanvasContent.d.ts +1 -1
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGCanvasContent4CreatingLine.d.ts +1 -1
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGCanvasContent4FakeLines.d.ts +1 -1
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGCanvasContent4Lines.d.ts +1 -1
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGLinePath.d.ts +1 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGLineText.d.ts +3 -1
- package/types/packages/platforms/vue2/src/core4vue/RGLineContent.vue.d.ts +5 -4
- package/types/packages/platforms/vue2/src/core4vue/RGLinePath.vue.d.ts +1 -2
- package/types/packages/platforms/vue2/src/index.d.ts +1 -2
- package/types/packages/relation-graph-models/data/RGNodeDataUtils.d.ts +5 -2
- package/types/packages/relation-graph-models/models/RelationGraphWith2Data1Getter.d.ts +13 -6
- package/types/packages/relation-graph-models/models/RelationGraphWith2Data2Analysis.d.ts +6 -1
- package/types/packages/relation-graph-models/models/RelationGraphWith2Data3Update.d.ts +2 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith4Line.d.ts +5 -2
- package/types/packages/relation-graph-models/models/RelationGraphWith7Event.d.ts +2 -3
- package/types/packages/types.ts +11 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@relation-graph/react",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "React relationship graph component for visualizing and editing knowledge graphs, DAGs, and flowcharts. Features force-directed layout, tree layout, and advanced graph editing capabilities for React applications.",
|
|
5
5
|
"main": "./relation-graph.umd.js",
|
|
6
6
|
"module": "./relation-graph.mjs",
|