@univerjs/ui 0.1.8 → 0.1.9

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.
@@ -8,7 +8,9 @@ export declare class DesktopGlobalZoneService implements IGlobalZoneService {
8
8
  private readonly _componentManager;
9
9
  readonly visible$: Subject<boolean>;
10
10
  readonly componentKey$: Subject<string>;
11
+ private _componentKey;
11
12
  constructor(_componentManager: ComponentManager);
13
+ get componentKey(): string;
12
14
  set(key: string, component: ForwardRefExoticComponent<any>): IDisposable;
13
15
  open(): void;
14
16
  close(): void;
@@ -5,6 +5,7 @@ export declare const IGlobalZoneService: import('@wendellhu/redi').IdentifierDec
5
5
  export interface IGlobalZoneService {
6
6
  readonly visible$: Subject<boolean>;
7
7
  readonly componentKey$: Subject<string>;
8
+ get componentKey(): string;
8
9
  set(key: string, component: any): IDisposable;
9
10
  open(): void;
10
11
  close(): void;
@@ -45,6 +45,6 @@ export declare class DesktopLayoutService extends Disposable implements ILayoutS
45
45
  checkCanvasIsFocused(): boolean;
46
46
  private _initUniverFocusListener;
47
47
  private _initEditorStatus;
48
- private _editorBlurListener;
48
+ private _blurSheetEditor;
49
49
  }
50
50
  export {};