@relation-graph/vue3 3.0.8 → 3.0.9
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 +13 -1
- package/relation-graph.js +4 -4
- package/relation-graph.mjs +38 -38
- package/relation-graph.umd.js +9 -9
- package/style.css +1 -0
- package/types/packages/platforms/svelte/src/core4svelte/web-components/WebComponentStyleVariables.d.ts +4 -0
- package/types/packages/platforms/svelte/src/core4svelte/web-components/WebComponentUtils.d.ts +3 -2
- package/types/packages/platforms/svelte/src/index.d.ts +2 -229
- package/types/packages/platforms/svelte/src/index.shared.d.ts +229 -0
- package/types/packages/platforms/svelte/src/index.wc.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@relation-graph/vue3",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.9",
|
|
4
4
|
"description": "Vue relationship graph component for visualizing and editing knowledge graphs, org charts, and equity structures. Supports Vue 2 & Vue 3, force-directed layouts, tree layouts, and interactive graph editing.",
|
|
5
5
|
"main": "./relation-graph.umd.js",
|
|
6
6
|
"module": "./relation-graph.mjs",
|
|
7
7
|
"unpkg": "./relation-graph.umd.js",
|
|
8
8
|
"types": "./types/packages/platforms/vue3/src/index.d.ts",
|
|
9
|
+
"style": "./style.css",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./types/packages/platforms/vue3/src/index.d.ts",
|
|
13
|
+
"import": "./relation-graph.mjs",
|
|
14
|
+
"require": "./relation-graph.umd.js"
|
|
15
|
+
},
|
|
16
|
+
"./style.css": "./style.css"
|
|
17
|
+
},
|
|
9
18
|
"author": "WanLian <seeksdream@qq.com>",
|
|
10
19
|
"license": "MIT",
|
|
11
20
|
"private": false,
|
|
@@ -37,6 +46,9 @@
|
|
|
37
46
|
"bugs": {
|
|
38
47
|
"url": "https://github.com/seeksdream/relation-graph/issues"
|
|
39
48
|
},
|
|
49
|
+
"sideEffects": [
|
|
50
|
+
"*.css"
|
|
51
|
+
],
|
|
40
52
|
"dependencies": {},
|
|
41
53
|
"devDependencies": {
|
|
42
54
|
"@types/node": "*",
|