@univerjs/sheets-data-validation 0.1.9 → 0.1.10
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.
|
@@ -11,4 +11,5 @@ export declare class DataValidationRejectInputController extends Disposable {
|
|
|
11
11
|
private readonly _localeService;
|
|
12
12
|
constructor(_editorBridgeService: IEditorBridgeService, _dataValidationModel: DataValidationModel, _dataValidatorRegistryService: DataValidatorRegistryService, _dialogService: IDialogService, _localeService: LocaleService);
|
|
13
13
|
private _initEditorBridgeInterceptor;
|
|
14
|
+
showReject(title: string): void;
|
|
14
15
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IBaseDataValidationWidget } from '@univerjs/data-validation';
|
|
2
2
|
import { IMouseEvent, IPointerEvent, SpreadsheetSkeleton, UniverRenderingContext2D } from '@univerjs/engine-render';
|
|
3
3
|
import { ICommandService, LocaleService, ICellRenderContext, IPaddingData } from '@univerjs/core';
|
|
4
4
|
|
|
@@ -11,11 +11,9 @@ export interface IDropdownInfo {
|
|
|
11
11
|
export declare class DropdownWidget implements IBaseDataValidationWidget {
|
|
12
12
|
private readonly _localeService;
|
|
13
13
|
private readonly _commandService;
|
|
14
|
-
private readonly _dataValidationModel;
|
|
15
|
-
private readonly _dataValidatorRegistryService;
|
|
16
14
|
static padding: IPaddingData;
|
|
17
15
|
private _dropdownInfoMap;
|
|
18
|
-
constructor(_localeService: LocaleService, _commandService: ICommandService
|
|
16
|
+
constructor(_localeService: LocaleService, _commandService: ICommandService);
|
|
19
17
|
zIndex?: number | undefined;
|
|
20
18
|
onPointerEnter?: ((info: ICellRenderContext) => void) | undefined;
|
|
21
19
|
onPointerLeave?: ((info: ICellRenderContext) => void) | undefined;
|