@netless/appliance-plugin 1.0.0-beta.0 → 1.0.0-beta.3
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 +54 -15
- package/cdn/cdn.js +1 -0
- package/cdn/fullWorker-O4uzWn.js +566 -0
- package/cdn/subWorker-CvBoLi.js +566 -0
- package/dist/appliance-plugin.js +1 -1
- package/dist/appliance-plugin.mjs +5845 -5884
- package/dist/cdn.d.ts +3 -0
- package/dist/core/mainEngine.d.ts +3 -0
- package/dist/fullWorker.js +566 -0
- package/dist/plugin/applianceMultiPlugin.d.ts +1 -1
- package/dist/plugin/applianceSinglePlugin.d.ts +1 -1
- package/dist/plugin/baseApplianceManager.d.ts +2 -2
- package/dist/plugin/const.d.ts +13 -0
- package/dist/plugin/index.d.ts +2 -3
- package/dist/plugin/types.d.ts +8 -1
- package/dist/subWorker.js +566 -0
- package/package.json +12 -17
- package/cdn/appliance-plugin.js +0 -1
- package/cdn/appliance-plugin.mjs +0 -8639
- package/cdn/style.css +0 -1
package/dist/cdn.d.ts
ADDED
|
@@ -83,6 +83,8 @@ export declare class MasterControlForWorker extends MasterController {
|
|
|
83
83
|
taskBatchData: Set<IWorkerMessage>;
|
|
84
84
|
protected fullWorker: Worker;
|
|
85
85
|
protected subWorker: Worker;
|
|
86
|
+
private fullWorkerUrl;
|
|
87
|
+
private subWorkerUrl;
|
|
86
88
|
methodBuilder?: MethodBuilderMain;
|
|
87
89
|
private zIndexNodeMethod?;
|
|
88
90
|
/** master\fullwoker\subworker 三者高频绘制时队列化参数 */
|
|
@@ -108,6 +110,7 @@ export declare class MasterControlForWorker extends MasterController {
|
|
|
108
110
|
private delayWorkStateToDoneResolve?;
|
|
109
111
|
private undoTickerId?;
|
|
110
112
|
private animationId;
|
|
113
|
+
private tmpImageConfigMap;
|
|
111
114
|
constructor(props: BaseSubWorkModuleProps);
|
|
112
115
|
private get viewContainerManager();
|
|
113
116
|
private get collector();
|