@univerjs/sheets-formula 0.5.0-alpha.0 → 0.5.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/sheets-formula",
3
- "version": "0.5.0-alpha.0",
3
+ "version": "0.5.0-beta.0",
4
4
  "private": false,
5
5
  "author": "DreamNum <developer@univer.ai>",
6
6
  "license": "Apache-2.0",
@@ -37,7 +37,8 @@
37
37
  "types": "./lib/types/facade/index.d.ts"
38
38
  },
39
39
  "./locale/*": {
40
- "import": "./lib/locale/*.js",
40
+ "import": "./lib/es/locale/*.js",
41
+ "require": "./lib/cjs/locale/*.js",
41
42
  "types": "./lib/types/locale/*.d.ts"
42
43
  }
43
44
  },
@@ -56,20 +57,19 @@
56
57
  "rxjs": ">=7.0.0"
57
58
  },
58
59
  "dependencies": {
59
- "@vitejs/plugin-react": "4.3.3",
60
- "@univerjs/core": "0.5.0-alpha.0",
61
- "@univerjs/docs": "0.5.0-alpha.0",
62
- "@univerjs/rpc": "0.5.0-alpha.0",
63
- "@univerjs/engine-formula": "0.5.0-alpha.0",
64
- "@univerjs/sheets": "0.5.0-alpha.0",
65
- "@univerjs/sheets-numfmt": "0.5.0-alpha.0"
60
+ "@univerjs/core": "0.5.0-beta.0",
61
+ "@univerjs/docs": "0.5.0-beta.0",
62
+ "@univerjs/engine-formula": "0.5.0-beta.0",
63
+ "@univerjs/sheets": "0.5.0-beta.0",
64
+ "@univerjs/rpc": "0.5.0-beta.0",
65
+ "@univerjs/sheets-numfmt": "0.5.0-beta.0"
66
66
  },
67
67
  "devDependencies": {
68
68
  "rxjs": "^7.8.1",
69
69
  "typescript": "^5.6.3",
70
- "vite": "^5.4.10",
71
- "vitest": "^2.1.4",
72
- "@univerjs-infra/shared": "0.5.0-alpha.0"
70
+ "vite": "^5.4.11",
71
+ "vitest": "^2.1.5",
72
+ "@univerjs-infra/shared": "0.5.0-beta.0"
73
73
  },
74
74
  "space": {
75
75
  ".": {
@@ -89,7 +89,8 @@
89
89
  "types": "./lib/types/facade/index.d.ts"
90
90
  },
91
91
  "./locale/*": {
92
- "import": "./lib/locale/*.js",
92
+ "import": "./lib/es/locale/*.js",
93
+ "require": "./lib/cjs/locale/*.js",
93
94
  "types": "./lib/types/locale/*.d.ts"
94
95
  }
95
96
  },
@@ -98,7 +99,7 @@
98
99
  "test:watch": "vitest",
99
100
  "coverage": "vitest run --coverage",
100
101
  "lint:types": "tsc --noEmit",
101
- "build": "tsx build.ts"
102
+ "build": "univer-cli build"
102
103
  },
103
104
  "module": "./lib/es/index.js"
104
105
  }
@@ -1,4 +0,0 @@
1
- import { ThemeService } from '@univerjs/core';
2
- import { ISelectionStyle } from '@univerjs/sheets';
3
- export declare const FORMULA_REF_SELECTION_PLUGIN_NAME = "formula_reference_selection_plugin_name";
4
- export declare function getFormulaRefSelectionStyle(themeService: ThemeService, refColor: string, id: string): ISelectionStyle;