@univerjs/sheets-ui 0.7.0-nightly.202505041606 → 0.7.0-nightly.202505061607
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.
- package/lib/cjs/index.js +59 -54
- package/lib/es/index.js +1912 -1891
- package/lib/index.css +1 -1
- package/lib/index.js +1912 -1891
- package/lib/types/services/selection/base-selection-render.service.d.ts +3 -2
- package/lib/umd/index.js +60 -55
- package/package.json +15 -15
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { ICellInfo, ICellWithCoord, IContextService, IDisposable, IFreeze, IInterceptor, Injector, IRange, IRangeWithCoord,
|
|
1
|
+
import { ICellInfo, ICellWithCoord, IContextService, IDisposable, IFreeze, IInterceptor, Injector, IRange, IRangeWithCoord, Nullable, Disposable, InterceptorManager, RANGE_TYPE, ThemeService } from '@univerjs/core';
|
|
2
2
|
import { IMouseEvent, IPointerEvent, IRenderModule, Scene, SpreadsheetSkeleton, Viewport, ScrollTimer, ScrollTimerType } from '@univerjs/engine-render';
|
|
3
3
|
import { ISelectionStyle, ISelectionWithCoord, ISelectionWithStyle } from '@univerjs/sheets';
|
|
4
|
+
import { Theme } from '@univerjs/themes';
|
|
4
5
|
import { IShortcutService } from '@univerjs/ui';
|
|
5
6
|
import { Observable, Subscription, BehaviorSubject, Subject } from 'rxjs';
|
|
6
7
|
import { SheetSkeletonManagerService } from '../sheet-skeleton-manager.service';
|
|
@@ -136,7 +137,7 @@ export declare class BaseSelectionRenderService extends Disposable implements IS
|
|
|
136
137
|
refreshSelectionMoveStart(): void;
|
|
137
138
|
refreshSelectionMoveEnd(): void;
|
|
138
139
|
_initSelectionThemeFromThemeService(): void;
|
|
139
|
-
setSelectionTheme(
|
|
140
|
+
setSelectionTheme(theme: Theme): void;
|
|
140
141
|
protected _changeRuntime(skeleton: SpreadsheetSkeleton, scene: Scene, viewport?: Viewport): void;
|
|
141
142
|
getSkeleton(): SpreadsheetSkeleton;
|
|
142
143
|
/**
|