@univerjs/sheets-conditional-formatting-ui 0.1.13 → 0.1.14

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.
@@ -1,15 +1,13 @@
1
1
  import { Disposable, IUniverInstanceService } from '@univerjs/core';
2
- import { SheetSkeletonManagerService } from '@univerjs/sheets-ui';
3
2
  import { RefRangeService } from '@univerjs/sheets';
4
3
  import { Injector } from '@wendellhu/redi';
5
4
  import { ConditionalFormattingRuleModel } from '@univerjs/sheets-conditional-formatting';
6
5
 
7
- export declare class RefRangeController extends Disposable {
6
+ export declare class SheetsCfRefRangeController extends Disposable {
8
7
  private _conditionalFormattingRuleModel;
9
8
  private _univerInstanceService;
10
9
  private _injector;
11
- private _sheetSkeletonManagerService;
12
10
  private _refRangeService;
13
- constructor(_conditionalFormattingRuleModel: ConditionalFormattingRuleModel, _univerInstanceService: IUniverInstanceService, _injector: Injector, _sheetSkeletonManagerService: SheetSkeletonManagerService, _refRangeService: RefRangeService);
11
+ constructor(_conditionalFormattingRuleModel: ConditionalFormattingRuleModel, _univerInstanceService: IUniverInstanceService, _injector: Injector, _refRangeService: RefRangeService);
14
12
  private _initRefRange;
15
13
  }
@@ -1,27 +1,16 @@
1
- import { Disposable, IPermissionService, IUniverInstanceService } from '@univerjs/core';
2
- import { RangeProtectionRenderModel, RangeProtectionRuleModel, SheetInterceptorService, WorksheetProtectionRuleModel } from '@univerjs/sheets';
3
- import { SheetSkeletonManagerService } from '@univerjs/sheets-ui';
1
+ import { Disposable, IUniverInstanceService } from '@univerjs/core';
2
+ import { SheetInterceptorService } from '@univerjs/sheets';
4
3
  import { IRenderManagerService } from '@univerjs/engine-render';
5
4
  import { ConditionalFormattingRuleModel, ConditionalFormattingService, ConditionalFormattingViewModel } from '@univerjs/sheets-conditional-formatting';
6
5
 
7
- /**
8
- * @todo RenderUnit
9
- */
10
- export declare class RenderController extends Disposable {
6
+ export declare class SheetsCfRenderController extends Disposable {
11
7
  private _sheetInterceptorService;
12
8
  private _conditionalFormattingService;
13
9
  private _univerInstanceService;
14
10
  private _renderManagerService;
15
11
  private _conditionalFormattingViewModel;
16
12
  private _conditionalFormattingRuleModel;
17
- private _sheetSkeletonManagerService;
18
- private _selectionProtectionRenderModel;
19
- private _rangeProtectionRuleModel;
20
- private _worksheetProtectionRuleModel;
21
- private _permissionService;
22
- constructor(_sheetInterceptorService: SheetInterceptorService, _conditionalFormattingService: ConditionalFormattingService, _univerInstanceService: IUniverInstanceService, _renderManagerService: IRenderManagerService, _conditionalFormattingViewModel: ConditionalFormattingViewModel, _conditionalFormattingRuleModel: ConditionalFormattingRuleModel, _sheetSkeletonManagerService: SheetSkeletonManagerService, _selectionProtectionRenderModel: RangeProtectionRenderModel, _rangeProtectionRuleModel: RangeProtectionRuleModel, _worksheetProtectionRuleModel: WorksheetProtectionRuleModel, _permissionService: IPermissionService);
23
- _initSkeleton(): void;
24
- _initViewModelInterceptor(): void;
25
- private _initViewModelByRangeInterceptor;
26
- private _initViewModelBySheetInterceptor;
13
+ constructor(_sheetInterceptorService: SheetInterceptorService, _conditionalFormattingService: ConditionalFormattingService, _univerInstanceService: IUniverInstanceService, _renderManagerService: IRenderManagerService, _conditionalFormattingViewModel: ConditionalFormattingViewModel, _conditionalFormattingRuleModel: ConditionalFormattingRuleModel);
14
+ private _initSkeleton;
15
+ private _initViewModelInterceptor;
27
16
  }