@univerjs/sheets-formula 0.2.15 → 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.
Files changed (28) hide show
  1. package/lib/cjs/index.js +3 -3
  2. package/lib/es/index.js +574 -313
  3. package/lib/locale/en-US.json +468 -320
  4. package/lib/locale/ru-RU.json +468 -320
  5. package/lib/locale/vi-VN.json +712 -204
  6. package/lib/locale/zh-CN.json +470 -322
  7. package/lib/locale/zh-TW.json +471 -323
  8. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +1 -1
  9. package/lib/types/controllers/prompt.controller.d.ts +2 -1
  10. package/lib/types/controllers/update-formula.controller.d.ts +1 -1
  11. package/lib/types/index.d.ts +1 -1
  12. package/lib/types/locale/en-US.d.ts +257 -109
  13. package/lib/types/locale/function-list/compatibility/en-US.d.ts +96 -40
  14. package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +96 -40
  15. package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +96 -40
  16. package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +96 -40
  17. package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +96 -40
  18. package/lib/types/locale/function-list/statistical/en-US.d.ts +161 -69
  19. package/lib/types/locale/function-list/statistical/ja-JP.d.ts +161 -69
  20. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +442 -26
  21. package/lib/types/locale/function-list/statistical/zh-CN.d.ts +161 -69
  22. package/lib/types/locale/function-list/statistical/zh-TW.d.ts +161 -69
  23. package/lib/types/locale/ru-RU.d.ts +257 -109
  24. package/lib/types/locale/vi-VN.d.ts +538 -66
  25. package/lib/types/locale/zh-CN.d.ts +257 -109
  26. package/lib/types/locale/zh-TW.d.ts +257 -109
  27. package/lib/umd/index.js +3 -3
  28. package/package.json +26 -29
@@ -1,4 +1,4 @@
1
- import { Dependency, IWorkbookData, Univer } from '@univerjs/core';
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,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, IEditorService, ILayoutService } from '@univerjs/ui';
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
  *
@@ -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, UniverSheetsFormulaPlugin, UniverSheetsFormulaMobilePlugin } from './formula-ui-plugin';
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';