@ones-editor/editor 3.0.12-beta.1 → 3.0.12-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/@ones-editor/core/src/core/doc/doc.d.ts +1 -1
- package/@ones-editor/core/src/core/editor-doc/editor-doc.d.ts +1 -1
- package/@ones-editor/core/src/core/types.d.ts +2 -0
- package/@ones-editor/core/src/local-doc/index.d.ts +1 -1
- package/@ones-editor/drawio-embed/types/index.d.ts +1 -0
- package/@ones-editor/main-toolbar/src/items/text-color.d.ts +1 -0
- package/@ones-editor/sharedb-doc/src/doc/auth-connection.d.ts +5 -0
- package/@ones-editor/sharedb-doc/src/doc/sharedb-doc.d.ts +2 -2
- package/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/@ones-editor/versions/src/history-doc/history-doc.d.ts +1 -1
- package/dist/error-handler/index.d.ts +2 -1
- package/dist/index.js +89 -24
- package/package.json +1 -1
|
@@ -257,7 +257,7 @@ export interface OnesEditorDoc extends OnesEditorDocServer {
|
|
|
257
257
|
endBatchUpdate: () => number;
|
|
258
258
|
triggerReAuth?: (auto?: boolean) => void;
|
|
259
259
|
rawData?: () => DocObject;
|
|
260
|
-
|
|
260
|
+
applyingRemoteOps?: () => boolean;
|
|
261
261
|
}
|
|
262
262
|
export interface OnesEditorDocHistoryData {
|
|
263
263
|
user: {
|
|
@@ -8,7 +8,7 @@ export default class EditorDoc extends EventCallbacks<OnesEditorDocCallbacks> im
|
|
|
8
8
|
constructor(editor: OnesEditor, externalDoc: OnesEditorDoc, localEvents: EditorDocLocalActionCallbacks);
|
|
9
9
|
beginBatchUpdate(): number;
|
|
10
10
|
endBatchUpdate(): number;
|
|
11
|
-
|
|
11
|
+
applyingRemoteOps(): boolean;
|
|
12
12
|
registerLocalEvents(events: EditorDocLocalActionCallbacks): void;
|
|
13
13
|
toJSON(): DocObject;
|
|
14
14
|
getVersionHelper(): import("../doc").OnesEditorDocVersionHelper | undefined;
|
|
@@ -133,6 +133,7 @@ export interface CommandItem {
|
|
|
133
133
|
order?: number;
|
|
134
134
|
type?: CommandItemType;
|
|
135
135
|
element?: HTMLElement | ((item: CommandItem) => HTMLElement);
|
|
136
|
+
useDefaultClickHandler?: boolean;
|
|
136
137
|
icon?: string;
|
|
137
138
|
childrenType?: 'menu' | 'toolbar' | 'mobile-bottom-menu';
|
|
138
139
|
children?: CommandItem[];
|
|
@@ -628,6 +629,7 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
|
628
629
|
}
|
|
629
630
|
export interface ChangeSelectionOptions {
|
|
630
631
|
noScroll?: boolean;
|
|
632
|
+
local?: boolean;
|
|
631
633
|
}
|
|
632
634
|
export interface OnesEditorSelection {
|
|
633
635
|
readonly range: SelectionRange;
|
|
@@ -11,7 +11,7 @@ export declare class LocalDoc extends EventCallbacks<OnesEditorDocCallbacks> imp
|
|
|
11
11
|
endBatchUpdate(): number;
|
|
12
12
|
toJSON(): DocObject;
|
|
13
13
|
rawData(): DocObject;
|
|
14
|
-
|
|
14
|
+
applyingRemoteOps(): boolean;
|
|
15
15
|
getContainerBlocks(containerId: string): DocBlock[];
|
|
16
16
|
findContainerBlocks(containerId: string): DocBlock[];
|
|
17
17
|
getBlockData(containerId: string, blockIndex: number): DocBlock;
|
|
@@ -24,6 +24,7 @@ export type GraphDataType = XmlData | XmlSvgData | SrcData;
|
|
|
24
24
|
export type LANG = Record<string, string | Record<string, string>>;
|
|
25
25
|
export type OnesEditorLang = 'zh-CN' | 'zh-HK' | 'ja-JP' | 'en-US';
|
|
26
26
|
export interface DrawIoOptions {
|
|
27
|
+
visible?: boolean;
|
|
27
28
|
lang?: OnesEditorLang;
|
|
28
29
|
cdn?: {
|
|
29
30
|
drawioBaseUrl?: string;
|
|
@@ -16,6 +16,7 @@ export declare class ColorItem extends TextColorItem implements ToolbarItem {
|
|
|
16
16
|
order?: number | undefined;
|
|
17
17
|
type?: import("@ones-editor/core").CommandItemType | undefined;
|
|
18
18
|
element?: HTMLElement | ((item: import("@ones-editor/core").CommandItem) => HTMLElement) | undefined;
|
|
19
|
+
useDefaultClickHandler?: boolean | undefined;
|
|
19
20
|
icon?: string | undefined;
|
|
20
21
|
childrenType?: "menu" | "toolbar" | "mobile-bottom-menu" | undefined;
|
|
21
22
|
children?: import("@ones-editor/core").CommandItem[] | undefined;
|
|
@@ -24,6 +24,8 @@ export declare class AuthConnection extends TypedEmitter<AutoConnectionEvents> {
|
|
|
24
24
|
private closed;
|
|
25
25
|
private connection?;
|
|
26
26
|
private ws?;
|
|
27
|
+
private visibilityListenerRegistered;
|
|
28
|
+
private connectionDisconnected;
|
|
27
29
|
private token;
|
|
28
30
|
private resourceToken;
|
|
29
31
|
private authMessage;
|
|
@@ -58,4 +60,7 @@ export declare class AuthConnection extends TypedEmitter<AutoConnectionEvents> {
|
|
|
58
60
|
private handleMessage;
|
|
59
61
|
get(collectionName: string, documentID: string): Doc;
|
|
60
62
|
end(logout: boolean): void;
|
|
63
|
+
private registerVisibilityListener;
|
|
64
|
+
private unregisterVisibilityListener;
|
|
65
|
+
private handleVisibilityChange;
|
|
61
66
|
}
|
|
@@ -16,11 +16,11 @@ export default class ShareDBDoc extends EventCallbacks<ShareDBDocCallbacks> impl
|
|
|
16
16
|
disableLogout: boolean;
|
|
17
17
|
destroyed: boolean;
|
|
18
18
|
editStatus: EditStatus;
|
|
19
|
-
|
|
19
|
+
_applyingRemoteOps: boolean;
|
|
20
20
|
constructor(options: ShareDBDocOptions, client: ShareDBClient, doc: Doc, disableLogout?: boolean);
|
|
21
21
|
beginBatchUpdate(): number;
|
|
22
22
|
endBatchUpdate(): number;
|
|
23
|
-
|
|
23
|
+
applyingRemoteOps(): boolean;
|
|
24
24
|
static load(options: ShareDBDocOptions): Promise<ShareDBDoc>;
|
|
25
25
|
private handleNothingPending;
|
|
26
26
|
private handleCreate;
|