@univerjs/sheets-ui 0.8.1-nightly.202506141606 → 0.8.1-nightly.202506161607
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 +7 -14
- package/lib/es/index.js +972 -971
- package/lib/index.css +1 -1
- package/lib/index.js +972 -971
- package/lib/types/services/editor/cell-editor-resize.service.d.ts +3 -2
- package/lib/umd/index.js +8 -15
- package/package.json +12 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Disposable, IUniverInstanceService } from '@univerjs/core';
|
|
1
|
+
import { IConfigService, Disposable, IUniverInstanceService } from '@univerjs/core';
|
|
2
2
|
import { IRenderManagerService } from '@univerjs/engine-render';
|
|
3
3
|
import { ILayoutService } from '@univerjs/ui';
|
|
4
4
|
import { IEditorBridgeService } from '../editor-bridge.service';
|
|
@@ -9,7 +9,8 @@ export declare class SheetCellEditorResizeService extends Disposable {
|
|
|
9
9
|
private readonly _editorBridgeService;
|
|
10
10
|
private readonly _renderManagerService;
|
|
11
11
|
private readonly _univerInstanceService;
|
|
12
|
-
|
|
12
|
+
private readonly _configService;
|
|
13
|
+
constructor(_layoutService: ILayoutService, _cellEditorManagerService: ICellEditorManagerService, _editorBridgeService: IEditorBridgeService, _renderManagerService: IRenderManagerService, _univerInstanceService: IUniverInstanceService, _configService: IConfigService);
|
|
13
14
|
private get _currentRenderer();
|
|
14
15
|
private get _editingUnitId();
|
|
15
16
|
private get _editingRenderer();
|