@univerjs/docs-ui 0.15.0-insiders.20260108-47c73e3 → 0.15.0-insiders.20260110-48b77c8
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/lib/cjs/index.js +2 -2
- package/lib/es/index.js +244 -237
- package/lib/index.js +244 -237
- package/lib/types/controllers/render-controllers/zoom.render-controller.d.ts +3 -0
- package/lib/types/services/editor/editor.d.ts +1 -1
- package/lib/umd/index.js +16 -16
- package/package.json +8 -8
|
@@ -14,7 +14,10 @@ export declare class DocZoomRenderController extends Disposable implements IRend
|
|
|
14
14
|
private readonly _docPageLayoutService;
|
|
15
15
|
private readonly _renderManagerService;
|
|
16
16
|
private _isSheetEditor;
|
|
17
|
+
private _initTimer;
|
|
18
|
+
private _updateTimer;
|
|
17
19
|
constructor(_context: IRenderContext<DocumentDataModel>, _contextService: IContextService, _docSkeletonManagerService: DocSkeletonManagerService, _univerInstanceService: IUniverInstanceService, _commandService: ICommandService, _textSelectionManagerService: DocSelectionManagerService, _editorService: IEditorService, _docPageLayoutService: DocPageLayoutService, _renderManagerService: IRenderManagerService);
|
|
20
|
+
dispose(): void;
|
|
18
21
|
private _initRenderRefresher;
|
|
19
22
|
private _initSkeletonListener;
|
|
20
23
|
private _initCommandExecutedListener;
|
|
@@ -86,7 +86,7 @@ export declare class Editor extends Disposable implements IEditor {
|
|
|
86
86
|
getCursorPosition(): number;
|
|
87
87
|
getEditorId(): string;
|
|
88
88
|
getDocumentData(): IDocumentData;
|
|
89
|
-
getDocumentDataModel(): DocumentDataModel
|
|
89
|
+
getDocumentDataModel(): Nullable<DocumentDataModel>;
|
|
90
90
|
setDocumentData(data: IDocumentData, textRanges: Nullable<ITextRangeWithStyle[]>): void;
|
|
91
91
|
replaceText(text: string, resetCursor?: boolean | ITextRangeWithStyle[]): void;
|
|
92
92
|
clearUndoRedoHistory(): void;
|