@univerjs/ui 0.2.5 → 0.2.6

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.
@@ -10,5 +10,5 @@ export declare class UniverMobileUIPlugin extends Plugin {
10
10
  protected readonly _injector: Injector;
11
11
  static pluginName: string;
12
12
  constructor(_config: IUniverUIConfig, _injector: Injector);
13
- onStarting(injector: Injector): void;
13
+ onStarting(): void;
14
14
  }
@@ -164,7 +164,7 @@ export declare class EditorService extends Disposable implements IEditorService,
164
164
  singleSelection(state: boolean): void;
165
165
  selectionChangingState(): boolean;
166
166
  blur(): void;
167
- focus(editorUnitId?: string): void;
167
+ focus(editorUnitId?: string | undefined): void;
168
168
  setFormula(formulaString: string, editorUnitId?: string): void;
169
169
  setValue(val: string, editorUnitId?: string): void;
170
170
  setValueNoRefresh(val: string, editorUnitId: string): void;
@@ -12,5 +12,5 @@ export declare class UniverUIPlugin extends Plugin {
12
12
  protected readonly _injector: Injector;
13
13
  static pluginName: string;
14
14
  constructor(_config: Partial<IUniverUIConfig>, _contextService: IContextService, _injector: Injector);
15
- onStarting(injector: Injector): void;
15
+ onStarting(): void;
16
16
  }