@univerjs/sheets-formula 0.2.14 → 0.3.0-alpha.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.
- package/lib/cjs/index.js +3 -3
- package/lib/es/index.js +672 -375
- package/lib/locale/en-US.json +485 -333
- package/lib/locale/ru-RU.json +484 -332
- package/lib/locale/vi-VN.json +716 -208
- package/lib/locale/zh-CN.json +487 -335
- package/lib/locale/zh-TW.json +487 -335
- package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +1 -1
- package/lib/types/controllers/formula-alert-render.controller.d.ts +5 -2
- package/lib/types/controllers/prompt.controller.d.ts +2 -1
- package/lib/types/controllers/update-formula.controller.d.ts +1 -1
- package/lib/types/index.d.ts +1 -1
- package/lib/types/locale/en-US.d.ts +265 -113
- package/lib/types/locale/function-list/compatibility/en-US.d.ts +96 -40
- package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +96 -40
- package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +96 -40
- package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +96 -40
- package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +96 -40
- package/lib/types/locale/function-list/statistical/en-US.d.ts +161 -69
- package/lib/types/locale/function-list/statistical/ja-JP.d.ts +161 -69
- package/lib/types/locale/function-list/statistical/vi-VN.d.ts +442 -26
- package/lib/types/locale/function-list/statistical/zh-CN.d.ts +161 -69
- package/lib/types/locale/function-list/statistical/zh-TW.d.ts +161 -69
- package/lib/types/locale/function-list/text/en-US.d.ts +8 -4
- package/lib/types/locale/function-list/text/ja-JP.d.ts +8 -4
- package/lib/types/locale/function-list/text/ru-RU.d.ts +8 -4
- package/lib/types/locale/function-list/text/zh-CN.d.ts +8 -4
- package/lib/types/locale/function-list/text/zh-TW.d.ts +8 -4
- package/lib/types/locale/ru-RU.d.ts +265 -113
- package/lib/types/locale/vi-VN.d.ts +538 -66
- package/lib/types/locale/zh-CN.d.ts +265 -113
- package/lib/types/locale/zh-TW.d.ts +265 -113
- package/lib/umd/index.js +3 -3
- package/package.json +26 -29
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Dependency, IWorkbookData
|
|
1
|
+
import { Univer, Dependency, IWorkbookData } from '@univerjs/core';
|
|
2
2
|
export declare function createCommandTestBed(workbookData?: IWorkbookData, dependencies?: Dependency[]): {
|
|
3
3
|
univer: Univer;
|
|
4
4
|
get: {
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Disposable, LocaleService, Workbook } from '@univerjs/core';
|
|
2
2
|
import { CellAlertManagerService, HoverManagerService } from '@univerjs/sheets-ui';
|
|
3
|
+
import { IZenZoneService } from '@univerjs/ui';
|
|
3
4
|
import { IRenderContext, IRenderModule } from '@univerjs/engine-render';
|
|
4
5
|
export declare class FormulaAlertRenderController extends Disposable implements IRenderModule {
|
|
5
6
|
private readonly _context;
|
|
6
7
|
private readonly _hoverManagerService;
|
|
7
8
|
private readonly _cellAlertManagerService;
|
|
8
9
|
private readonly _localeService;
|
|
9
|
-
|
|
10
|
+
private readonly _zenZoneService;
|
|
11
|
+
constructor(_context: IRenderContext<Workbook>, _hoverManagerService: HoverManagerService, _cellAlertManagerService: CellAlertManagerService, _localeService: LocaleService, _zenZoneService: IZenZoneService);
|
|
10
12
|
private _init;
|
|
11
13
|
private _initCellAlertPopup;
|
|
14
|
+
private _initZenService;
|
|
12
15
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { Disposable, ICommandService, IContextService, IUniverInstanceService, ThemeService } from '@univerjs/core';
|
|
2
2
|
import { DocSelectionManagerService } from '@univerjs/docs';
|
|
3
|
+
import { IEditorService } from '@univerjs/docs-ui';
|
|
3
4
|
import { LexerTreeBuilder } from '@univerjs/engine-formula';
|
|
4
5
|
import { IRenderManagerService } from '@univerjs/engine-render';
|
|
5
6
|
import { SheetsSelectionsService } from '@univerjs/sheets';
|
|
6
|
-
import { IContextMenuService,
|
|
7
|
+
import { IContextMenuService, ILayoutService } from '@univerjs/ui';
|
|
7
8
|
import { EditorBridgeService } from '@univerjs/sheets-ui';
|
|
8
9
|
import { IDescriptionService } from '../services/description.service';
|
|
9
10
|
import { IFormulaPromptService } from '../services/prompt.service';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Disposable, ICommandService, Injector, IUniverInstanceService } from '@univerjs/core';
|
|
2
|
+
import { IEditorService } from '@univerjs/docs-ui';
|
|
2
3
|
import { FormulaDataModel, LexerTreeBuilder } from '@univerjs/engine-formula';
|
|
3
4
|
import { SheetInterceptorService, SheetsSelectionsService } from '@univerjs/sheets';
|
|
4
|
-
import { IEditorService } from '@univerjs/ui';
|
|
5
5
|
/**
|
|
6
6
|
* Update formula process
|
|
7
7
|
*
|
package/lib/types/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export { UniverRemoteSheetsFormulaPlugin,
|
|
16
|
+
export { UniverRemoteSheetsFormulaPlugin, UniverSheetsFormulaMobilePlugin, UniverSheetsFormulaPlugin } from './formula-ui-plugin';
|
|
17
17
|
export { IDescriptionService } from './services/description.service';
|
|
18
18
|
export { DescriptionService } from './services/description.service';
|
|
19
19
|
export type { IRegisterFunctionParams, IUnregisterFunctionParams } from './services/register-function.service';
|