@univerjs/sheets-ui 0.6.10-nightly.202504171607 → 0.6.10-nightly.202504181606
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 +23 -23
- package/lib/es/index.js +2503 -2486
- package/lib/index.js +2503 -2486
- package/lib/types/controllers/editor/editing.render-controller.d.ts +1 -0
- package/lib/types/controllers/shortcuts/editor.shortcut.d.ts +1 -0
- package/lib/types/controllers/shortcuts/value.shortcut.d.ts +1 -0
- package/lib/types/services/editor-bridge.service.d.ts +3 -2
- package/lib/umd/index.js +24 -24
- package/package.json +12 -12
|
@@ -48,6 +48,7 @@ export declare class EditingRenderController extends Disposable {
|
|
|
48
48
|
*/
|
|
49
49
|
private _commandExecutedListener;
|
|
50
50
|
private _handleEditorVisible;
|
|
51
|
+
private _refreshCurrentSelections;
|
|
51
52
|
private _handleEditorInvisible;
|
|
52
53
|
private _getEditorObject;
|
|
53
54
|
private _isCellImageData;
|
|
@@ -9,4 +9,5 @@ export declare const EditorCursorEscShortcut: IShortcutItem;
|
|
|
9
9
|
export declare const EditorCursorCtrlEnterShortcut: IShortcutItem;
|
|
10
10
|
export declare const EditorBreakLineShortcut: IShortcutItem;
|
|
11
11
|
export declare const EditorDeleteLeftShortcut: IShortcutItem;
|
|
12
|
+
export declare const ShiftEditorDeleteLeftShortcut: IShortcutItem;
|
|
12
13
|
export declare const EditorDeleteLeftShortcutInActive: IShortcutItem;
|
|
@@ -2,7 +2,7 @@ import { IDisposable, IPosition, ISelectionCell, Nullable, Disposable, IContextS
|
|
|
2
2
|
import { Engine, IDocumentLayoutObject, Scene, DeviceInputEventType, IRenderManagerService } from '@univerjs/engine-render';
|
|
3
3
|
import { SheetsSelectionsService, SheetInterceptorService } from '@univerjs/sheets';
|
|
4
4
|
import { KeyCode } from '@univerjs/ui';
|
|
5
|
-
import { Observable } from 'rxjs';
|
|
5
|
+
import { Observable, BehaviorSubject } from 'rxjs';
|
|
6
6
|
import { IEditorService } from '@univerjs/docs-ui';
|
|
7
7
|
export interface IEditorBridgeServiceVisibleParam {
|
|
8
8
|
visible: boolean;
|
|
@@ -63,6 +63,7 @@ export interface IEditorBridgeService {
|
|
|
63
63
|
disableForceKeepVisible(): void;
|
|
64
64
|
isForceKeepVisible(): boolean;
|
|
65
65
|
getCurrentEditorId(): Nullable<string>;
|
|
66
|
+
helpFunctionVisible$: BehaviorSubject<boolean>;
|
|
66
67
|
}
|
|
67
68
|
export declare class EditorBridgeService extends Disposable implements IEditorBridgeService, IDisposable {
|
|
68
69
|
private readonly _sheetInterceptorService;
|
|
@@ -74,11 +75,11 @@ export declare class EditorBridgeService extends Disposable implements IEditorBr
|
|
|
74
75
|
private readonly _contextService;
|
|
75
76
|
private _editorUnitId;
|
|
76
77
|
private _editorIsDirty;
|
|
77
|
-
private _isDisabled;
|
|
78
78
|
private _visibleParams;
|
|
79
79
|
private _currentEditCell;
|
|
80
80
|
private _currentEditCellState;
|
|
81
81
|
private _currentEditCellLayout;
|
|
82
|
+
helpFunctionVisible$: BehaviorSubject<boolean>;
|
|
82
83
|
private readonly _currentEditCellState$;
|
|
83
84
|
readonly currentEditCellState$: Observable<Nullable<ICellEditorState>>;
|
|
84
85
|
private readonly _currentEditCellLayout$;
|