@univerjs/engine-render 0.12.3 → 0.12.4-experimental.20251210-8d33c6e
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 +3 -1
- package/lib/index.js +3 -1
- package/lib/umd/index.js +1 -1
- package/package.json +5 -5
- package/LICENSE +0 -176
package/lib/es/index.js
CHANGED
|
@@ -57165,7 +57165,9 @@ let Z5 = class extends Z8 {
|
|
|
57165
57165
|
if (!n)
|
|
57166
57166
|
return;
|
|
57167
57167
|
}
|
|
57168
|
-
const c = this.worksheet.getCell(t, e) || this.worksheet.getCellRaw(t, e)
|
|
57168
|
+
const c = this.worksheet.getCell(t, e) || this.worksheet.getCellRaw(t, e);
|
|
57169
|
+
if (!c) return;
|
|
57170
|
+
const g = this.worksheet.getComposedCellStyleByCellData(t, e, c);
|
|
57169
57171
|
this._setBgStylesCache(t, e, g, a), this._setBorderStylesCache(t, e, g, a), this._setFontStylesCache(t, e, { ...c, s: g }, g);
|
|
57170
57172
|
}
|
|
57171
57173
|
/**
|
package/lib/index.js
CHANGED
|
@@ -57165,7 +57165,9 @@ let Z5 = class extends Z8 {
|
|
|
57165
57165
|
if (!n)
|
|
57166
57166
|
return;
|
|
57167
57167
|
}
|
|
57168
|
-
const c = this.worksheet.getCell(t, e) || this.worksheet.getCellRaw(t, e)
|
|
57168
|
+
const c = this.worksheet.getCell(t, e) || this.worksheet.getCellRaw(t, e);
|
|
57169
|
+
if (!c) return;
|
|
57170
|
+
const g = this.worksheet.getComposedCellStyleByCellData(t, e, c);
|
|
57169
57171
|
this._setBgStylesCache(t, e, g, a), this._setBorderStylesCache(t, e, g, a), this._setFontStylesCache(t, e, { ...c, s: g }, g);
|
|
57170
57172
|
}
|
|
57171
57173
|
/**
|