@univerjs/sheets-ui 0.6.0-nightly.202502061605 → 0.6.0-nightly.202502071606

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.
@@ -21,7 +21,7 @@ export declare class AutoFillController extends Disposable {
21
21
  private _initDefaultHook;
22
22
  private _initQuitListener;
23
23
  private _quit;
24
- private _onSelectionControlFillChanged;
24
+ private _initSelectionControlFillChanged;
25
25
  private _handleDbClickFill;
26
26
  private _detectFillRange;
27
27
  private _getApplyData;
@@ -12,7 +12,6 @@ export declare class FormatPainterController extends Disposable {
12
12
  private readonly _injector;
13
13
  constructor(_commandService: ICommandService, _formatPainterService: IFormatPainterService, _univerInstanceService: IUniverInstanceService, _renderManagerService: IRenderManagerService, _selectionManagerService: SheetsSelectionsService, _sheetInterceptorService: SheetInterceptorService, _injector: Injector);
14
14
  private _initialize;
15
- private _commandExecutedListener;
16
15
  private _addDefaultHook;
17
16
  private _collectSelectionRangeFormat;
18
17
  private _getUndoRedoMutationInfo;
@@ -1,10 +1,14 @@
1
- import { Workbook, Disposable } from '@univerjs/core';
1
+ import { Workbook, Disposable, ICommandService } from '@univerjs/core';
2
2
  import { IRenderContext, IRenderModule } from '@univerjs/engine-render';
3
3
  import { IFormatPainterService } from '../../services/format-painter/format-painter.service';
4
+ import { ISheetSelectionRenderService } from '../../services/selection/base-selection-render.service';
4
5
  export declare class FormatPainterRenderController extends Disposable implements IRenderModule {
5
6
  private readonly _context;
6
7
  private readonly _formatPainterService;
7
- constructor(_context: IRenderContext<Workbook>, _formatPainterService: IFormatPainterService);
8
+ private readonly _selectionRenderService;
9
+ private readonly _commandService;
10
+ constructor(_context: IRenderContext<Workbook>, _formatPainterService: IFormatPainterService, _selectionRenderService: ISheetSelectionRenderService, _commandService: ICommandService);
8
11
  private _initialize;
12
+ private _commandExecutedListener;
9
13
  private _bindFormatPainterStatus;
10
14
  }
@@ -55,6 +55,10 @@ export declare class SheetSkeletonManagerService extends Disposable implements I
55
55
  */
56
56
  getWorksheetSkeleton(sheetId: string): Nullable<ISheetSkeletonManagerParam>;
57
57
  getUnitSkeleton(unitId: string, sheetId: string): Nullable<ISheetSkeletonManagerParam>;
58
+ /**
59
+ * Command in COMMAND_LISTENER_SKELETON_CHANGE would cause setCurrent, see @packages/sheets-ui/src/controllers/render-controllers/sheet.render-controller.ts
60
+ * @param searchParam
61
+ */
58
62
  setCurrent(searchParam: ISheetSkeletonManagerSearch): Nullable<ISheetSkeletonManagerParam>;
59
63
  setSkeletonParam(sheetId: string, skp: ISheetSkeletonManagerParam): void;
60
64
  private _setCurrent;