@univerjs/sheets-formula 0.12.0 → 0.12.1

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.
@@ -0,0 +1,17 @@
1
+ import { Disposable, ICommandService } from '@univerjs/core';
2
+ import { FormulaDataModel } from '@univerjs/engine-formula';
3
+ import { SheetInterceptorService } from '@univerjs/sheets';
4
+ export declare class ImageFormulaCellInterceptorController extends Disposable {
5
+ private readonly _commandService;
6
+ private _sheetInterceptorService;
7
+ private readonly _formulaDataModel;
8
+ private _errorValueCell;
9
+ private _refreshRender;
10
+ constructor(_commandService: ICommandService, _sheetInterceptorService: SheetInterceptorService, _formulaDataModel: FormulaDataModel);
11
+ private _initialize;
12
+ private _commandExecutedListener;
13
+ private _initInterceptorCellContent;
14
+ private _getImageNatureSize;
15
+ private _getImageSize;
16
+ registerRefreshRenderFunction(refreshRender: () => void): void;
17
+ }
@@ -18,6 +18,7 @@ export { QuickSumCommand } from './commands/commands/quick-sum.command';
18
18
  export { OtherFormulaMarkDirty } from './commands/mutations/formula.mutation';
19
19
  export { CalculationMode, PLUGIN_CONFIG_KEY_BASE } from './controllers/config.schema';
20
20
  export type { IUniverSheetsFormulaBaseConfig, IUniverSheetsFormulaRemoteConfig } from './controllers/config.schema';
21
+ export { ImageFormulaCellInterceptorController } from './controllers/image-formula-cell-interceptor.controller';
21
22
  export { TriggerCalculationController } from './controllers/trigger-calculation.controller';
22
23
  export { UpdateDefinedNameController } from './controllers/update-defined-name.controller';
23
24
  export { UpdateFormulaController } from './controllers/update-formula.controller';