@netless/appliance-plugin 1.1.17-beta.9 → 1.1.18-beta.0
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 +192 -54
- package/cdn/cdn.js +1 -1
- package/cdn/fullWorker-BXw0UY.js +500 -0
- package/cdn/subWorker-CQwRsl.js +500 -0
- package/dist/appliance-plugin.js +1 -1
- package/dist/appliance-plugin.mjs +1 -1
- package/dist/collector/collector.d.ts +1 -0
- package/dist/component/textEditor/manager.d.ts +8 -0
- package/dist/component/textEditor/view.d.ts +27 -47
- package/dist/core/mainEngine.d.ts +3 -1
- package/dist/core/tools/selector.d.ts +29 -0
- package/dist/core/types.d.ts +1 -0
- package/dist/core/worker/base.d.ts +5 -0
- package/dist/core/worker/fullWorkerLocal.d.ts +0 -1
- 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 +120 -122
- package/dist/index-BCsxqk2v.js +1 -0
- package/dist/{index-BianYC4r.mjs → index-C5FDT_Kb.mjs} +10 -3
- package/dist/{index-CZ7SSEYU.mjs → index-CR2nlCh1.mjs} +7392 -7063
- package/dist/index-DNughIC2.js +1 -0
- package/dist/plugin/baseApplianceManager.d.ts +8 -5
- package/dist/plugin/baseViewContainerManager.d.ts +6 -2
- package/dist/plugin/const.d.ts +5 -0
- package/dist/plugin/displayerView.d.ts +9 -2
- package/dist/plugin/types.d.ts +39 -6
- package/dist/style.css +1 -1
- package/dist/subWorker.js +120 -122
- package/package.json +5 -4
- package/cdn/fullWorker-p8Ghqw.js +0 -502
- package/cdn/subWorker-C1Gs0N.js +0 -502
- package/dist/collector/eventCollector.d.ts +0 -31
- package/dist/collector/magixEventCollector.d.ts +0 -31
- package/dist/index-BSGcWUci.js +0 -1
- package/dist/index-DDtbIS6S.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netless/appliance-plugin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.18-beta.0",
|
|
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,16 +36,17 @@
|
|
|
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
|
-
"clipper-lib": "^6.4.2",
|
|
42
42
|
"lodash": "^4.17.21",
|
|
43
43
|
"lz-string": "^1.5.0",
|
|
44
44
|
"re-resizable": "^6.9.11",
|
|
45
45
|
"react": "^16.8.0",
|
|
46
46
|
"react-dom": "^16.8.0",
|
|
47
47
|
"react-draggable": "^4.4.6",
|
|
48
|
-
"spritejs": "^3.8.3"
|
|
48
|
+
"spritejs": "^3.8.3",
|
|
49
|
+
"xss": "^1.0.15"
|
|
49
50
|
},
|
|
50
51
|
"directories": {
|
|
51
52
|
"example": "example"
|