@netless/appliance-plugin 1.1.7 → 1.1.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/cdn/cdn.js +1 -1
- package/cdn/{fullWorker-BEJqjH.js → fullWorker-DzU-Co.js} +7 -7
- package/cdn/{subWorker-CTbbnN.js → subWorker-B5ZQoK.js} +7 -7
- package/dist/appliance-plugin.js +1 -1
- package/dist/appliance-plugin.mjs +1 -1
- package/dist/collector/collector.d.ts +6 -0
- package/dist/displayer/floatBar/index.d.ts +1 -0
- package/dist/fullWorker.js +7 -7
- package/dist/{index-DG4OS7jZ.js → index-B90iIvel.js} +1 -1
- package/dist/index-CpjV7Ujm.js +1 -0
- package/dist/{index-C-flLj6b.mjs → index-D8AMdzYo.mjs} +1224 -1173
- package/dist/{index-CPEJsBxo.mjs → index-rRQeW_6Z.mjs} +1 -1
- package/dist/plugin/const.d.ts +4 -0
- package/dist/plugin/types.d.ts +5 -0
- package/dist/subWorker.js +7 -7
- package/package.json +1 -1
- package/dist/index-Cj2T7zY6.js +0 -1
package/dist/appliance-plugin.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-CpjV7Ujm.js");exports.ActiveContainerType=e.ActiveContainerType;exports.ApplianceMultiPlugin=e.ApplianceMultiPlugin;exports.ApplianceNames=e.ApplianceNames;exports.ApplianceSigleWrapper=e.ApplianceSigleWrapper;exports.ApplianceSinglePlugin=e.ApplianceSinglePlugin;exports.AutoDrawPlugin=e.AutoDrawPlugin;exports.ECanvasShowType=e.ECanvasShowType;exports.EDataType=e.EDataType;exports.EImageType=e.EImageType;exports.EMatrixrRelationType=e.EMatrixrRelationType;exports.EOperationType=e.EOperationType;exports.EPostMessageType=e.EPostMessageType;exports.ERenderFilterType=e.ERenderFilterType;exports.EScaleType=e.EScaleType;exports.EStrokeType=e.EStrokeType;exports.EToolsKey=e.EToolsKey;exports.ElayerType=e.ElayerType;exports.EmitEventType=e.EmitEventType;exports.EventMessageType=e.EventMessageType;exports.EvevtWorkState=e.EvevtWorkState;exports.EvevtWorkType=e.EvevtWorkType;exports.InternalMsgEmitterType=e.InternalMsgEmitterType;exports.Plugin=e.Plugin;exports.ShapeType=e.ShapeType;exports.fullWorkerUrl=e.fullWorker;exports.subWorkerUrl=e.subWorker;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { z as s, A as p, w as r, v as l, u as t, N as i, B as n, b as y, j as E, l as T, K as o, c as g, L as u, H as v, x as c, a as A, G as S, h as P, F as k, E as m, J as M, I as W, P as h, y as w, r as x, s as I } from "./index-
|
|
1
|
+
import { z as s, A as p, w as r, v as l, u as t, N as i, B as n, b as y, j as E, l as T, K as o, c as g, L as u, H as v, x as c, a as A, G as S, h as P, F as k, E as m, J as M, I as W, P as h, y as w, r as x, s as I } from "./index-D8AMdzYo.mjs";
|
|
2
2
|
export {
|
|
3
3
|
s as ActiveContainerType,
|
|
4
4
|
p as ApplianceMultiPlugin,
|
|
@@ -12,13 +12,17 @@ export declare class Collector extends BaseCollector<ISerializableStorageViewDat
|
|
|
12
12
|
static namespace: string;
|
|
13
13
|
static authSpace: string;
|
|
14
14
|
static syncInterval: number;
|
|
15
|
+
static componentsLimits: number[];
|
|
15
16
|
serviceStorage: ISerializableStorageViewData;
|
|
16
17
|
storage: ISerializableStorageViewData;
|
|
17
18
|
authStorage: ISerializableAuthData;
|
|
18
19
|
private stateDisposer;
|
|
19
20
|
private authDisposer;
|
|
20
21
|
private asyncClockState;
|
|
22
|
+
private limitNums;
|
|
21
23
|
constructor(control: BaseApplianceManager, plugin: AppliancePluginLike, syncInterval?: number);
|
|
24
|
+
private getLimitNum;
|
|
25
|
+
private getLimitNums;
|
|
22
26
|
getViewIdBySecenPath(scenePath: string): string | undefined;
|
|
23
27
|
getScenePathData(scenePath: string): ISerializableStorageData | undefined;
|
|
24
28
|
getStorageData(viewId: string, scenePath: string): ISerializableStorageData | undefined;
|
|
@@ -82,4 +86,6 @@ export declare class Collector extends BaseCollector<ISerializableStorageViewDat
|
|
|
82
86
|
removeAuthStateListener(): void;
|
|
83
87
|
private diffAuthFun;
|
|
84
88
|
private diffAuthPageFun;
|
|
89
|
+
private limitComponents;
|
|
90
|
+
private clearLimitComponents;
|
|
85
91
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { TextEditorInfo } from "../../component/textEditor";
|
|
3
3
|
export declare const FloatBar: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
4
|
+
isHide: boolean;
|
|
4
5
|
editors?: Map<string, TextEditorInfo>;
|
|
5
6
|
activeTextId?: string;
|
|
6
7
|
} & React.RefAttributes<HTMLDivElement>>>;
|