@univerjs/sheets-ui 0.15.2-insiders.20260119-edc718c → 0.15.2-insiders.20260122-b1556b1
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 +11 -11
- package/lib/es/index.js +6022 -5998
- package/lib/index.js +6022 -5998
- package/lib/types/controllers/editor/editing.render-controller.d.ts +3 -2
- package/lib/umd/index.js +9 -9
- package/package.json +11 -11
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DocumentDataModel, ICellData, IDocumentBody, IDocumentData, IStyleData, Nullable, Styles, Disposable, ICommandService, IContextService, IUndoRedoService, IUniverInstanceService, LocaleService } from '@univerjs/core';
|
|
1
|
+
import { DocumentDataModel, ICellData, IDocumentBody, IDocumentData, IStyleData, Nullable, Styles, Disposable, ICommandService, IConfigService, IContextService, IUndoRedoService, IUniverInstanceService, LocaleService } from '@univerjs/core';
|
|
2
2
|
import { DocSelectionManagerService } from '@univerjs/docs';
|
|
3
3
|
import { IEditorService } from '@univerjs/docs-ui';
|
|
4
4
|
import { IFunctionService, LexerTreeBuilder } from '@univerjs/engine-formula';
|
|
@@ -23,6 +23,7 @@ export declare class EditingRenderController extends Disposable {
|
|
|
23
23
|
private readonly _sheetInterceptorService;
|
|
24
24
|
private readonly _sheetCellEditorResizeService;
|
|
25
25
|
private readonly _selectionManagerService;
|
|
26
|
+
private readonly _configService;
|
|
26
27
|
/**
|
|
27
28
|
* It is used to distinguish whether the user has actively moved the cursor in the editor, mainly through mouse clicks.
|
|
28
29
|
*/
|
|
@@ -30,7 +31,7 @@ export declare class EditingRenderController extends Disposable {
|
|
|
30
31
|
/** If the corresponding unit is active and prepared for editing. */
|
|
31
32
|
private _editingUnit;
|
|
32
33
|
_cursorTimeout: NodeJS.Timeout;
|
|
33
|
-
constructor(_undoRedoService: IUndoRedoService, _contextService: IContextService, _renderManagerService: IRenderManagerService, _editorBridgeService: IEditorBridgeService, _cellEditorManagerService: ICellEditorManagerService, _lexerTreeBuilder: LexerTreeBuilder, _functionService: IFunctionService, _textSelectionManagerService: DocSelectionManagerService, _commandService: ICommandService, _localService: LocaleService, _editorService: IEditorService, _univerInstanceService: IUniverInstanceService, _sheetInterceptorService: SheetInterceptorService, _sheetCellEditorResizeService: SheetCellEditorResizeService, _selectionManagerService: SheetsSelectionsService);
|
|
34
|
+
constructor(_undoRedoService: IUndoRedoService, _contextService: IContextService, _renderManagerService: IRenderManagerService, _editorBridgeService: IEditorBridgeService, _cellEditorManagerService: ICellEditorManagerService, _lexerTreeBuilder: LexerTreeBuilder, _functionService: IFunctionService, _textSelectionManagerService: DocSelectionManagerService, _commandService: ICommandService, _localService: LocaleService, _editorService: IEditorService, _univerInstanceService: IUniverInstanceService, _sheetInterceptorService: SheetInterceptorService, _sheetCellEditorResizeService: SheetCellEditorResizeService, _selectionManagerService: SheetsSelectionsService, _configService: IConfigService);
|
|
34
35
|
dispose(): void;
|
|
35
36
|
private get _workbookSelections();
|
|
36
37
|
private _init;
|