@univerjs/sheets-conditional-formatting-ui 0.2.12 → 0.2.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.
@@ -0,0 +1,15 @@
1
+ import { Disposable, Injector, IUniverInstanceService } from '@univerjs/core';
2
+ import { SheetsSelectionsService } from '@univerjs/sheets';
3
+ import { ConditionalFormattingRuleModel, ConditionalFormattingViewModel } from '@univerjs/sheets-conditional-formatting';
4
+ import { IFormatPainterService } from '@univerjs/sheets-ui';
5
+ export declare class ConditionalFormattingPainterController extends Disposable {
6
+ private _injector;
7
+ private _univerInstanceService;
8
+ private _formatPainterService;
9
+ private _sheetsSelectionsService;
10
+ private _conditionalFormattingRuleModel;
11
+ private _conditionalFormattingViewModel;
12
+ private _painterConfig;
13
+ constructor(_injector: Injector, _univerInstanceService: IUniverInstanceService, _formatPainterService: IFormatPainterService, _sheetsSelectionsService: SheetsSelectionsService, _conditionalFormattingRuleModel: ConditionalFormattingRuleModel, _conditionalFormattingViewModel: ConditionalFormattingViewModel);
14
+ private _initFormattingPainter;
15
+ }
@@ -7,6 +7,6 @@ export declare class UniverSheetsConditionalFormattingMobileUIPlugin extends Plu
7
7
  private readonly _configService;
8
8
  static pluginName: string;
9
9
  static type: UniverInstanceType;
10
- constructor(_config: Partial<IUniverSheetsConditionalFormattingUIConfig>, _injector: Injector, _commandService: ICommandService, _configService: IConfigService);
10
+ constructor(_config: Partial<IUniverSheetsConditionalFormattingUIConfig> | undefined, _injector: Injector, _commandService: ICommandService, _configService: IConfigService);
11
11
  private _initCommand;
12
12
  }
@@ -7,6 +7,6 @@ export declare class UniverSheetsConditionalFormattingUIPlugin extends Plugin {
7
7
  private readonly _configService;
8
8
  static pluginName: string;
9
9
  static type: UniverInstanceType;
10
- constructor(_config: Partial<IUniverSheetsConditionalFormattingUIConfig>, _injector: Injector, _commandService: ICommandService, _configService: IConfigService);
10
+ constructor(_config: Partial<IUniverSheetsConditionalFormattingUIConfig> | undefined, _injector: Injector, _commandService: ICommandService, _configService: IConfigService);
11
11
  private _initCommand;
12
12
  }