@univerjs/engine-formula 0.8.0-nightly.202506111607 → 0.8.1-nightly.202506121607
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 +2 -0
- package/lib/index.js +2 -0
- package/lib/umd/index.js +1 -1
- package/package.json +5 -5
package/lib/es/index.js
CHANGED
|
@@ -6404,6 +6404,8 @@ class Xn extends Yn {
|
|
|
6404
6404
|
}
|
|
6405
6405
|
}
|
|
6406
6406
|
getFirstCell() {
|
|
6407
|
+
if (this._checkIfWorksheetMiss())
|
|
6408
|
+
return g.create(m.VALUE);
|
|
6407
6409
|
const { startRow: e, startColumn: t } = this.getRangePosition(), r = this.getCellData(e, t);
|
|
6408
6410
|
if (!r)
|
|
6409
6411
|
return y.create(0);
|
package/lib/index.js
CHANGED
|
@@ -6404,6 +6404,8 @@ class Xn extends Yn {
|
|
|
6404
6404
|
}
|
|
6405
6405
|
}
|
|
6406
6406
|
getFirstCell() {
|
|
6407
|
+
if (this._checkIfWorksheetMiss())
|
|
6408
|
+
return g.create(m.VALUE);
|
|
6407
6409
|
const { startRow: e, startColumn: t } = this.getRangePosition(), r = this.getCellData(e, t);
|
|
6408
6410
|
if (!r)
|
|
6409
6411
|
return y.create(0);
|