@univerjs/sheets-formula 0.11.0 → 0.12.0

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,14 @@
1
+ const a = {
2
+ formula: {
3
+ progress: {
4
+ analyzing: "解析中",
5
+ calculating: "計算中",
6
+ "array-analysis": "配列の解析",
7
+ "array-calculation": "配列の計算",
8
+ done: "完了"
9
+ }
10
+ }
11
+ };
12
+ export {
13
+ a as default
14
+ };
@@ -1,14 +1,19 @@
1
1
  import { Disposable, ICommandService, IConfigService } from '@univerjs/core';
2
- import { FormulaDataModel } from '@univerjs/engine-formula';
2
+ import { FormulaDataModel, IDefinedNamesService, IFunctionService, LexerTreeBuilder } from '@univerjs/engine-formula';
3
3
  import { SheetInterceptorService } from '@univerjs/sheets';
4
4
  export declare class ArrayFormulaCellInterceptorController extends Disposable {
5
5
  private readonly _commandService;
6
6
  private readonly _configService;
7
7
  private _sheetInterceptorService;
8
8
  private readonly _formulaDataModel;
9
- constructor(_commandService: ICommandService, _configService: IConfigService, _sheetInterceptorService: SheetInterceptorService, _formulaDataModel: FormulaDataModel);
9
+ private readonly _lexerTreeBuilder;
10
+ private readonly _functionService;
11
+ private readonly _definedNamesService;
12
+ constructor(_commandService: ICommandService, _configService: IConfigService, _sheetInterceptorService: SheetInterceptorService, _formulaDataModel: FormulaDataModel, _lexerTreeBuilder: LexerTreeBuilder, _functionService: IFunctionService, _definedNamesService: IDefinedNamesService);
10
13
  private _initialize;
11
14
  private _commandExecutedListener;
15
+ private _addPrefixToDefinedNamesFunctionSnapshot;
16
+ private _addPrefixToFunctionSnapshot;
12
17
  private _writeArrayFormulaToSnapshot;
13
18
  private _initInterceptorCellContent;
14
19
  }
@@ -0,0 +1,25 @@
1
+ import { Disposable, ICommandService, IUniverInstanceService } from '@univerjs/core';
2
+ import { ISuperTableService } from '@univerjs/engine-formula';
3
+ import { IDescriptionService } from '../services/description.service';
4
+ /**
5
+ * header highlight
6
+ * column menu: show, hover and mousedown event
7
+ */
8
+ export declare class SuperTableController extends Disposable {
9
+ private readonly _descriptionService;
10
+ private readonly _univerInstanceService;
11
+ private readonly _commandService;
12
+ private readonly _superTableService;
13
+ private _preUnitId;
14
+ constructor(_descriptionService: IDescriptionService, _univerInstanceService: IUniverInstanceService, _commandService: ICommandService, _superTableService: ISuperTableService);
15
+ private _initialize;
16
+ private _descriptionListener;
17
+ private _changeUnitListener;
18
+ private _changeSheetListener;
19
+ private _registerDescription;
20
+ private _unregisterDescription;
21
+ private _unRegisterDescriptions;
22
+ private _getUnitIdAndSheetId;
23
+ private _registerDescriptions;
24
+ private _unregisterDescriptionsForNotInSheetId;
25
+ }
@@ -0,0 +1,3 @@
1
+ import { default as enUS } from './en-US';
2
+ declare const locale: typeof enUS;
3
+ export default locale;