@netless/appliance-plugin 1.1.23 → 1.1.25-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/cdn/cdn.js +1 -1
- package/cdn/{fullWorker-ZK5NZY.js → fullWorker-pBXb8u.js} +111 -111
- package/cdn/{subWorker-BiAuBO.js → subWorker-6cS2MG.js} +111 -111
- package/dist/appliance-plugin.js +1 -1
- package/dist/appliance-plugin.mjs +1 -1
- package/dist/component/textEditor/manager.d.ts +8 -2
- package/dist/core/enum.d.ts +5 -1
- package/dist/core/mainEngine.d.ts +1 -0
- package/dist/core/types.d.ts +2 -0
- package/dist/core/worker/fullWorkerLocal.d.ts +4 -3
- package/dist/displayer/floatBar/dragBox/index.d.ts +2 -2
- package/dist/fullWorker.js +111 -111
- package/dist/index-CMjBOlnk.js +1 -0
- package/dist/index-CibznVn_.js +1 -0
- package/dist/{index-KFAuNRB0.mjs → index-DU_AJ-7Y.mjs} +3061 -2964
- package/dist/{index-ANWwhC4x.mjs → index-Dp62ElSg.mjs} +1598 -1517
- package/dist/plugin/baseViewContainerManager.d.ts +3 -1
- package/dist/plugin/displayerView.d.ts +1 -1
- package/dist/subWorker.js +111 -111
- package/dist/undo/index.d.ts +12 -8
- package/package.json +1 -1
- package/dist/index-BVb1IYUU.js +0 -1
- package/dist/index-CWK75u1P.js +0 -1
|
@@ -30,7 +30,9 @@ export declare abstract class ViewContainerManager {
|
|
|
30
30
|
constructor(props: BaseSubWorkModuleProps);
|
|
31
31
|
get worker(): import("../core/mainEngine").MasterControlForWorker;
|
|
32
32
|
abstract getViewInitData(viewId: string): ViewWorkerOptions | undefined;
|
|
33
|
-
|
|
33
|
+
getUndoTickerId(viewId: string): string | number | undefined;
|
|
34
|
+
undoTickerStart: (id: number | string, viewId: string) => void;
|
|
35
|
+
undoTickerEnd: (id: number | string, viewId: string) => void;
|
|
34
36
|
addExcludeIds: (ids: string[], viewId: string) => void;
|
|
35
37
|
undo(): number;
|
|
36
38
|
redo(): number;
|
|
@@ -29,7 +29,7 @@ export interface BaseDisplayerState {
|
|
|
29
29
|
activeMiniMapViewId?: string;
|
|
30
30
|
activeTextEditor?: boolean;
|
|
31
31
|
}
|
|
32
|
-
export declare const DisplayerContext: React.Context<Pick<BaseDisplayerState, "scale" | "
|
|
32
|
+
export declare const DisplayerContext: React.Context<Pick<BaseDisplayerState, "scale" | "floatBarData" | "dpr" | "operationType" | "angle" | "activeTextId" | "activeTextEditor"> & {
|
|
33
33
|
viewId: string;
|
|
34
34
|
isNoPointerEvents: boolean;
|
|
35
35
|
mananger?: ApplianceViewManagerLike;
|