@univerjs/sheets-hyper-link-ui 0.3.0-alpha.0 → 0.3.0-nightly.202410101606

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,20 +1,16 @@
1
- import { Disposable, ThemeService, Workbook } from '@univerjs/core';
2
- import { IRenderManagerService, IRenderContext, IRenderModule } from '@univerjs/engine-render';
1
+ import { Workbook, Disposable } from '@univerjs/core';
2
+ import { IRenderContext, IRenderModule } from '@univerjs/engine-render';
3
3
  import { SheetInterceptorService } from '@univerjs/sheets';
4
4
  import { HyperLinkModel } from '@univerjs/sheets-hyper-link';
5
- import { SheetSkeletonManagerService } from '@univerjs/sheets-ui';
6
5
  export declare class SheetsHyperLinkRenderController extends Disposable implements IRenderModule {
7
6
  private readonly _context;
8
7
  private readonly _hyperLinkModel;
9
- private readonly _sheetSkeletonManagerService;
10
- private readonly _renderManagerService;
11
- constructor(_context: IRenderContext<Workbook>, _hyperLinkModel: HyperLinkModel, _sheetSkeletonManagerService: SheetSkeletonManagerService, _renderManagerService: IRenderManagerService);
8
+ constructor(_context: IRenderContext<Workbook>, _hyperLinkModel: HyperLinkModel);
12
9
  private _initSkeletonChange;
13
10
  }
14
11
  export declare class SheetsHyperLinkRenderManagerController extends Disposable {
15
12
  private readonly _sheetInterceptorService;
16
13
  private readonly _hyperLinkModel;
17
- private readonly _themeService;
18
- constructor(_sheetInterceptorService: SheetInterceptorService, _hyperLinkModel: HyperLinkModel, _themeService: ThemeService);
14
+ constructor(_sheetInterceptorService: SheetInterceptorService, _hyperLinkModel: HyperLinkModel);
19
15
  private _initViewModelIntercept;
20
16
  }
@@ -1,14 +1,13 @@
1
- import { IConfigService, Injector, Plugin, UniverInstanceType } from '@univerjs/core';
2
- import { IRenderManagerService } from '@univerjs/engine-render';
3
1
  import { IUniverSheetsHyperLinkUIConfig } from './controllers/config.schema';
2
+ import { IConfigService, Injector, Plugin, UniverInstanceType } from '@univerjs/core';
4
3
  export declare class UniverSheetsHyperLinkUIPlugin extends Plugin {
5
4
  private readonly _config;
6
5
  protected _injector: Injector;
7
- private readonly _renderManagerService;
8
6
  private readonly _configService;
9
7
  static pluginName: string;
10
8
  static type: UniverInstanceType;
11
- constructor(_config: Partial<IUniverSheetsHyperLinkUIConfig> | undefined, _injector: Injector, _renderManagerService: IRenderManagerService, _configService: IConfigService);
9
+ constructor(_config: Partial<IUniverSheetsHyperLinkUIConfig> | undefined, _injector: Injector, _configService: IConfigService);
12
10
  onStarting(): void;
13
11
  onReady(): void;
12
+ onRendered(): void;
14
13
  }
@@ -1,10 +1,10 @@
1
- import { Disposable, Injector, IUniverInstanceService, ICustomRange, INeedCheckDisposable, Nullable } from '@univerjs/core';
1
+ import { ICustomRange, INeedCheckDisposable, Nullable, Disposable, Injector, IUniverInstanceService } from '@univerjs/core';
2
+ import { IBoundRectNoAngle } from '@univerjs/engine-render';
3
+ import { ISheetLocationBase } from '@univerjs/sheets';
2
4
  import { DocSelectionManagerService } from '@univerjs/docs';
3
5
  import { DocCanvasPopManagerService, IEditorService, IRangeSelectorService } from '@univerjs/docs-ui';
4
6
  import { IEditorBridgeService, SheetCanvasPopManagerService } from '@univerjs/sheets-ui';
5
7
  import { IZenZoneService } from '@univerjs/ui';
6
- import { IBoundRectNoAngle } from '@univerjs/engine-render';
7
- import { ISheetLocationBase } from '@univerjs/sheets';
8
8
  import { HyperLinkEditSourceType } from '../types/enums/edit-source';
9
9
  export interface IHyperLinkPopup {
10
10
  unitId: string;