@univerjs/engine-formula 0.15.5 → 0.16.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 +1 -1
- package/lib/es/index.js +6 -4
- package/lib/index.js +6 -4
- package/lib/umd/index.js +1 -1
- package/package.json +4 -4
package/lib/es/index.js
CHANGED
|
@@ -33093,10 +33093,11 @@ let pa = class extends Se {
|
|
|
33093
33093
|
}
|
|
33094
33094
|
}
|
|
33095
33095
|
};
|
|
33096
|
-
this._commandService.executeCommand(cs.id, c).then(() => {
|
|
33096
|
+
this._commandService.executeCommand(cs.id, c, { onlyLocal: !0 }).then(() => {
|
|
33097
33097
|
this._commandService.executeCommand(
|
|
33098
33098
|
mn.id,
|
|
33099
|
-
{ [t]: { [r]: { [s]: !0 } } }
|
|
33099
|
+
{ [t]: { [r]: { [s]: !0 } } },
|
|
33100
|
+
{ onlyLocal: !0 }
|
|
33100
33101
|
);
|
|
33101
33102
|
});
|
|
33102
33103
|
};
|
|
@@ -33159,7 +33160,7 @@ let pa = class extends Se {
|
|
|
33159
33160
|
subUnitId: e,
|
|
33160
33161
|
formulaIdList: t
|
|
33161
33162
|
};
|
|
33162
|
-
this._commandService.executeCommand(ls.id, r);
|
|
33163
|
+
this._commandService.executeCommand(ls.id, r, { onlyLocal: !0 });
|
|
33163
33164
|
const n = this._ensureCacheMap(a, e);
|
|
33164
33165
|
t.forEach((s) => n.delete(s));
|
|
33165
33166
|
}
|
|
@@ -33178,7 +33179,8 @@ let pa = class extends Se {
|
|
|
33178
33179
|
const r = this.getFormulaValueSync(a, e, t);
|
|
33179
33180
|
r && (r.status = Er.WAIT, this._commandService.executeCommand(
|
|
33180
33181
|
mn.id,
|
|
33181
|
-
{ [a]: { [e]: { [t]: !0 } } }
|
|
33182
|
+
{ [a]: { [e]: { [t]: !0 } } },
|
|
33183
|
+
{ onlyLocal: !0 }
|
|
33182
33184
|
));
|
|
33183
33185
|
}
|
|
33184
33186
|
};
|
package/lib/index.js
CHANGED
|
@@ -33093,10 +33093,11 @@ let pa = class extends Se {
|
|
|
33093
33093
|
}
|
|
33094
33094
|
}
|
|
33095
33095
|
};
|
|
33096
|
-
this._commandService.executeCommand(cs.id, c).then(() => {
|
|
33096
|
+
this._commandService.executeCommand(cs.id, c, { onlyLocal: !0 }).then(() => {
|
|
33097
33097
|
this._commandService.executeCommand(
|
|
33098
33098
|
mn.id,
|
|
33099
|
-
{ [t]: { [r]: { [s]: !0 } } }
|
|
33099
|
+
{ [t]: { [r]: { [s]: !0 } } },
|
|
33100
|
+
{ onlyLocal: !0 }
|
|
33100
33101
|
);
|
|
33101
33102
|
});
|
|
33102
33103
|
};
|
|
@@ -33159,7 +33160,7 @@ let pa = class extends Se {
|
|
|
33159
33160
|
subUnitId: e,
|
|
33160
33161
|
formulaIdList: t
|
|
33161
33162
|
};
|
|
33162
|
-
this._commandService.executeCommand(ls.id, r);
|
|
33163
|
+
this._commandService.executeCommand(ls.id, r, { onlyLocal: !0 });
|
|
33163
33164
|
const n = this._ensureCacheMap(a, e);
|
|
33164
33165
|
t.forEach((s) => n.delete(s));
|
|
33165
33166
|
}
|
|
@@ -33178,7 +33179,8 @@ let pa = class extends Se {
|
|
|
33178
33179
|
const r = this.getFormulaValueSync(a, e, t);
|
|
33179
33180
|
r && (r.status = Er.WAIT, this._commandService.executeCommand(
|
|
33180
33181
|
mn.id,
|
|
33181
|
-
{ [a]: { [e]: { [t]: !0 } } }
|
|
33182
|
+
{ [a]: { [e]: { [t]: !0 } } },
|
|
33183
|
+
{ onlyLocal: !0 }
|
|
33182
33184
|
));
|
|
33183
33185
|
}
|
|
33184
33186
|
};
|