@univerjs/sheets-formula 0.12.2 → 0.12.3-experimental.20251205-e439e48

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/es/index.js CHANGED
@@ -1782,7 +1782,7 @@ let at = class extends z {
1782
1782
  this._commandService.beforeCommandExecuted((n, e) => {
1783
1783
  if (n.id === Q.id) {
1784
1784
  const a = n.params;
1785
- if (e && e.onlyLocal === !0 || a.trigger === Kt.id || a.trigger === ba.id || a.trigger === Oa.id)
1785
+ if (e && e.onlyLocal === !0 || e && e.syncOnly === !0 || a.trigger === Kt.id || a.trigger === ba.id || a.trigger === Oa.id)
1786
1786
  return;
1787
1787
  this._handleSetRangeValuesMutation(a);
1788
1788
  }
package/lib/index.js CHANGED
@@ -1782,7 +1782,7 @@ let at = class extends z {
1782
1782
  this._commandService.beforeCommandExecuted((n, e) => {
1783
1783
  if (n.id === Q.id) {
1784
1784
  const a = n.params;
1785
- if (e && e.onlyLocal === !0 || a.trigger === Kt.id || a.trigger === ba.id || a.trigger === Oa.id)
1785
+ if (e && e.onlyLocal === !0 || e && e.syncOnly === !0 || a.trigger === Kt.id || a.trigger === ba.id || a.trigger === Oa.id)
1786
1786
  return;
1787
1787
  this._handleSetRangeValuesMutation(a);
1788
1788
  }
@@ -1,8 +1,4 @@
1
1
  import { LocaleService } from '@univerjs/core';
2
2
  import { IFunctionInfo, IFunctionParam } from '@univerjs/engine-formula';
3
- export declare function getFunctionTypeValues(enumObj: any, localeService: LocaleService): Array<{
4
- label: string;
5
- value: string;
6
- }>;
7
3
  export declare function getFunctionName(item: IFunctionInfo, localeService: LocaleService): string;
8
4
  export declare function generateParam(param: IFunctionParam): string | undefined;