@syhr/sy-graph 1.0.9-beta.6 → 1.0.9-beta.8
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/lib/graph.css +1 -1
- package/lib/sy-graph.cjs +24 -21
- package/lib/sy-graph.mjs +9506 -8972
- package/lib/sy-graph.umd.js +25 -22
- package/package.json +29 -28
- package/readme.text +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syhr/sy-graph",
|
|
3
|
-
"version": "1.0.9-beta.
|
|
3
|
+
"version": "1.0.9-beta.8",
|
|
4
4
|
"author": "syhr <aiops.sieyuan@gmail.com>",
|
|
5
5
|
"description": "Planar graphic config tool based on @meta2d.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,14 +37,13 @@
|
|
|
37
37
|
"dev:microapp": "vite --mode microapp",
|
|
38
38
|
"build": "vite build",
|
|
39
39
|
"build:lib": "vite build --config vite.config.lib.js",
|
|
40
|
+
"build:threed": "node build-threed.cjs",
|
|
40
41
|
"build:qiankun": "vite build --mode qiankun",
|
|
41
42
|
"build:microapp": "vite build --mode microapp",
|
|
43
|
+
"publish:threed": "node publish-threed.cjs",
|
|
42
44
|
"preview": "vite preview",
|
|
43
45
|
"preview:lib": "vite preview --config vite.config.lib.js",
|
|
44
46
|
"lint": "eslint --ext .vue,.js,.jsx,.cjs,.mjs --fix src",
|
|
45
|
-
"clean": "rimraf lib dist node_modules/.vite",
|
|
46
|
-
"clean:lib": "rimraf lib",
|
|
47
|
-
"clean:dist": "rimraf dist",
|
|
48
47
|
"release:first": "standard-version -f && pnpm changelog:replace",
|
|
49
48
|
"release:major": "standard-version -r major && pnpm changelog:replace",
|
|
50
49
|
"release:minor": "standard-version -r minor && pnpm changelog:replace",
|
|
@@ -58,20 +57,20 @@
|
|
|
58
57
|
"@ffmpeg/ffmpeg": "~0.12.15",
|
|
59
58
|
"@ffmpeg/util": "~0.12.2",
|
|
60
59
|
"@meta2d/activity-diagram": "~1.0.1",
|
|
61
|
-
"@meta2d/chart-diagram": "~1.0.
|
|
60
|
+
"@meta2d/chart-diagram": "~1.0.22",
|
|
62
61
|
"@meta2d/class-diagram": "~1.0.2",
|
|
63
|
-
"@meta2d/core": "~1.1.
|
|
62
|
+
"@meta2d/core": "~1.1.20",
|
|
64
63
|
"@meta2d/flow-diagram": "~1.0.2",
|
|
65
64
|
"@meta2d/form-diagram": "~1.0.29",
|
|
66
65
|
"@meta2d/fta-diagram": "~1.0.1",
|
|
67
|
-
"@meta2d/le5le-charts": "~1.0.
|
|
66
|
+
"@meta2d/le5le-charts": "~1.0.6",
|
|
68
67
|
"@meta2d/plugin-mind-collapse": "~1.0.1",
|
|
69
68
|
"@meta2d/plugin-mind-core": "~1.0.4",
|
|
70
69
|
"@meta2d/sequence-diagram": "~1.0.1",
|
|
71
70
|
"@meta2d/svg": "~1.0.7",
|
|
72
71
|
"@meta2d/utils": "1.0.3",
|
|
73
|
-
"@micro-zoe/micro-app": "1.0.0-rc.
|
|
74
|
-
"axios": "~1.
|
|
72
|
+
"@micro-zoe/micro-app": "1.0.0-rc.30",
|
|
73
|
+
"axios": "~1.16.0",
|
|
75
74
|
"comlink": "~4.4.2",
|
|
76
75
|
"crypto-js": "~4.2.0",
|
|
77
76
|
"dayjs": "~1.11.19",
|
|
@@ -83,50 +82,52 @@
|
|
|
83
82
|
"flv.js": "~1.6.2",
|
|
84
83
|
"gm-crypto": "~0.1.12",
|
|
85
84
|
"jszip": "~3.10.1",
|
|
86
|
-
"
|
|
85
|
+
"localforage": "~1.10.0",
|
|
86
|
+
"lodash-es": "~4.18.1",
|
|
87
87
|
"mitt": "~3.0.1",
|
|
88
88
|
"monaco-editor": "~0.55.1",
|
|
89
89
|
"nprogress": "~0.2.0",
|
|
90
|
-
"photoswipe": "~5.4.4",
|
|
91
90
|
"pinia": "~3.0.4",
|
|
92
|
-
"qs": "~6.
|
|
91
|
+
"qs": "~6.15.1",
|
|
93
92
|
"sm-crypto": "~0.4.0",
|
|
94
|
-
"
|
|
93
|
+
"three": "~0.180.0",
|
|
94
|
+
"three-edit-cores": "~0.0.16",
|
|
95
|
+
"vue": "~3.5.33",
|
|
95
96
|
"vue-draggable-plus": "~0.6.1",
|
|
96
97
|
"vue-router": "~4.6.4",
|
|
97
98
|
"vue3-colorpicker": "~2.3.0"
|
|
98
99
|
},
|
|
99
100
|
"devDependencies": {
|
|
100
|
-
"@babel/core": "~7.
|
|
101
|
-
"@babel/eslint-parser": "~7.28.
|
|
102
|
-
"@eslint/js": "~9.39.
|
|
101
|
+
"@babel/core": "~7.29.0",
|
|
102
|
+
"@babel/eslint-parser": "~7.28.6",
|
|
103
|
+
"@eslint/js": "~9.39.4",
|
|
103
104
|
"@iconify-json/ant-design": "~1.2.5",
|
|
104
105
|
"@iconify-json/ep": "~1.2.4",
|
|
105
106
|
"@iconify-json/tdesign": "~1.2.12",
|
|
106
|
-
"@iconify/utils": "~3.1.
|
|
107
|
-
"@
|
|
108
|
-
"@
|
|
107
|
+
"@iconify/utils": "~3.1.1",
|
|
108
|
+
"@oxc-parser/binding-win32-x64-msvc": "~0.128.0",
|
|
109
|
+
"@unocss/preset-rem-to-px": "~66.6.8",
|
|
110
|
+
"@vitejs/plugin-basic-ssl": "~2.3.0",
|
|
109
111
|
"@vitejs/plugin-vue": "~5.2.4",
|
|
110
112
|
"@vitejs/plugin-vue-jsx": "~4.2.0",
|
|
111
113
|
"@vue/eslint-config-prettier": "~10.2.0",
|
|
112
|
-
"autoprefixer": "~10.
|
|
114
|
+
"autoprefixer": "~10.5.0",
|
|
113
115
|
"conventional-changelog-cli": "~5.0.0",
|
|
114
116
|
"dotenv": "~16.5.0",
|
|
115
|
-
"eslint": "~9.39.
|
|
117
|
+
"eslint": "~9.39.4",
|
|
116
118
|
"eslint-config-prettier": "~10.1.8",
|
|
117
119
|
"eslint-plugin-prettier": "~5.5.5",
|
|
118
|
-
"eslint-plugin-vue": "~10.
|
|
119
|
-
"glob": "~
|
|
120
|
-
"globals": "~17.
|
|
120
|
+
"eslint-plugin-vue": "~10.8.0",
|
|
121
|
+
"glob": "~13.0.6",
|
|
122
|
+
"globals": "~17.6.0",
|
|
121
123
|
"picocolors": "~1.1.1",
|
|
122
|
-
"postcss": "~8.5.
|
|
124
|
+
"postcss": "~8.5.14",
|
|
123
125
|
"postcss-px-to-viewport-8-plugin": "~1.2.5",
|
|
124
126
|
"replace": "~1.2.2",
|
|
125
|
-
"rimraf": "~5.0.5",
|
|
126
127
|
"sass": "~1.79.6",
|
|
127
128
|
"standard-version": "~9.5.0",
|
|
128
|
-
"terser": "~5.46.
|
|
129
|
-
"unocss": "~66.6.
|
|
129
|
+
"terser": "~5.46.2",
|
|
130
|
+
"unocss": "~66.6.8",
|
|
130
131
|
"unplugin-auto-import": "~19.3.0",
|
|
131
132
|
"unplugin-element-plus": "~0.11.2",
|
|
132
133
|
"unplugin-vue-components": "~28.8.0",
|
package/readme.text
ADDED