@univerjs/sheets-formula 0.1.12 → 0.1.13
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 +4 -36
- package/lib/es/index.js +3452 -19247
- package/lib/index.css +1 -1
- package/lib/locale/en-US.json +10281 -0
- package/lib/locale/ru-RU.json +10280 -0
- package/lib/locale/zh-CN.json +10281 -0
- package/lib/types/controllers/trigger-calculation.controller.d.ts +7 -1
- package/lib/types/index.d.ts +0 -1
- package/lib/types/locale/en-US.d.ts +1 -0
- package/lib/types/locale/zh-CN.d.ts +1 -0
- package/lib/umd/index.js +4 -36
- package/package.json +22 -21
- package/lib/types/locale/index.d.ts +0 -18
|
@@ -14,6 +14,7 @@ export declare class TriggerCalculationController extends Disposable {
|
|
|
14
14
|
private _setTimeoutKey;
|
|
15
15
|
private _startExecutionTime;
|
|
16
16
|
private _formulaCalculationDoneCount;
|
|
17
|
+
private _arrayFormulaCalculationDoneCount;
|
|
17
18
|
constructor(_commandService: ICommandService, _activeDirtyManagerService: IActiveDirtyManagerService, _numfmtService: INumfmtService, _formulaDataModel: FormulaDataModel, _progressService: IProgressService);
|
|
18
19
|
private _initialize;
|
|
19
20
|
private _commandExecutedListener;
|
|
@@ -26,5 +27,10 @@ export declare class TriggerCalculationController extends Disposable {
|
|
|
26
27
|
* Update progress by completed count
|
|
27
28
|
* @param completedCount
|
|
28
29
|
*/
|
|
29
|
-
private
|
|
30
|
+
private _pushFormulaTask;
|
|
31
|
+
/**
|
|
32
|
+
* Update progress by completed count
|
|
33
|
+
* @param completedCount
|
|
34
|
+
*/
|
|
35
|
+
private _pushArrayFormulaTask;
|
|
30
36
|
}
|
package/lib/types/index.d.ts
CHANGED
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
export { UniverSheetsFormulaPlugin } from './formula-ui-plugin';
|
|
17
|
-
export { enUS, zhCN, ruRU } from './locale';
|
|
18
17
|
export { IDescriptionService } from './services/description.service';
|
|
19
18
|
export { DescriptionService } from './services/description.service';
|
|
20
19
|
export { FormulaCustomFunctionService, IFormulaCustomFunctionService, } from './services/formula-custom-function.service';
|