@netless/appliance-plugin 1.1.17-beta.8 → 1.1.17
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/cdn/cdn.js +1 -1
- package/cdn/fullWorker-CTwuMS.js +500 -0
- package/cdn/subWorker-D7gqd9.js +500 -0
- package/dist/appliance-plugin.js +1 -1
- package/dist/appliance-plugin.mjs +16 -15
- package/dist/collector/collector.d.ts +1 -0
- package/dist/component/textEditor/manager.d.ts +1 -0
- package/dist/component/textEditor/view.d.ts +27 -47
- package/dist/core/mainEngine.d.ts +7 -1
- package/dist/core/mainThread/subLocalThread.d.ts +3 -5
- package/dist/core/tools/pencil.d.ts +5 -0
- package/dist/core/tools/pencilEraser.d.ts +63 -38
- package/dist/core/tools/selector.d.ts +29 -0
- package/dist/core/types.d.ts +1 -0
- package/dist/core/utils/clipper.d.ts +8 -0
- package/dist/core/utils/polygonUtils.d.ts +8 -0
- package/dist/core/worker/base.d.ts +5 -0
- package/dist/core/worker/fullWorkerLocal.d.ts +2 -3
- package/dist/core/worker/subWorkerLocal.d.ts +1 -0
- package/dist/cursors/index.d.ts +0 -4
- package/dist/displayer/const.d.ts +1 -0
- package/dist/displayer/floatBar/dragBox/index.d.ts +7 -1
- package/dist/displayer/floatBar/index.d.ts +1 -1
- package/dist/displayer/utils.d.ts +1 -0
- package/dist/fullWorker.js +211 -152
- package/dist/index-BqLItWo1.js +1 -0
- package/dist/{index-DZmnrj_U.mjs → index-D5p9NBLd.mjs} +217 -204
- package/dist/index-DGks_HwI.mjs +17530 -0
- package/dist/index-DI0wKkQa.js +1 -0
- package/dist/plugin/baseApplianceManager.d.ts +7 -5
- package/dist/plugin/baseViewContainerManager.d.ts +14 -2
- package/dist/plugin/const.d.ts +6 -0
- package/dist/plugin/displayerView.d.ts +9 -2
- package/dist/plugin/types.d.ts +36 -7
- package/dist/style.css +1 -1
- package/dist/subWorker.js +211 -152
- package/package.json +5 -3
- package/cdn/fullWorker-Dma-pe.js +0 -441
- package/cdn/subWorker-1KsgJX.js +0 -441
- package/dist/collector/eventCollector.d.ts +0 -31
- package/dist/collector/magixEventCollector.d.ts +0 -31
- package/dist/index-BwYgPPna.mjs +0 -17069
- package/dist/index-D1nbiAD6.js +0 -1
- package/dist/index-DR0wLn0R.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netless/appliance-plugin",
|
|
3
|
-
"version": "1.1.17
|
|
3
|
+
"version": "1.1.17",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"cdn"
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@babel/core": "^7.24.7",
|
|
22
22
|
"@babel/preset-env": "^7.24.7",
|
|
23
|
+
"@netless/window-manager": "^1.0.0",
|
|
23
24
|
"@rollup/plugin-babel": "^6.0.4",
|
|
24
25
|
"@types/lodash": "^4.14.202",
|
|
25
26
|
"@types/react": "*",
|
|
@@ -28,7 +29,6 @@
|
|
|
28
29
|
"less": "^4.2.0",
|
|
29
30
|
"typescript": "^5.2.2",
|
|
30
31
|
"vite": "^5.0.0",
|
|
31
|
-
"@netless/window-manager": "^1.0.0",
|
|
32
32
|
"white-web-sdk": "^2.16.52"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"white-web-sdk": ">= 2.16.52"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
+
"clipper-lib": "^6.4.2",
|
|
39
40
|
"eventemitter2": "^6.4.9",
|
|
40
41
|
"lineclip": "^1.1.5",
|
|
41
42
|
"lodash": "^4.17.21",
|
|
@@ -44,7 +45,8 @@
|
|
|
44
45
|
"react": "^16.8.0",
|
|
45
46
|
"react-dom": "^16.8.0",
|
|
46
47
|
"react-draggable": "^4.4.6",
|
|
47
|
-
"spritejs": "^3.8.3"
|
|
48
|
+
"spritejs": "^3.8.3",
|
|
49
|
+
"xss": "^1.0.15"
|
|
48
50
|
},
|
|
49
51
|
"directories": {
|
|
50
52
|
"example": "example"
|