@univerjs/sheets-ui 0.10.10 → 0.10.11-nightly.202510220308
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/facade.js +1 -1
- package/lib/cjs/index.js +4 -4
- package/lib/es/facade.js +3 -3
- package/lib/es/index.js +2101 -2061
- package/lib/facade.js +3 -3
- package/lib/index.css +1 -1
- package/lib/index.js +2101 -2061
- package/lib/types/commands/commands/set-scroll.command.d.ts +4 -0
- package/lib/types/controllers/editor/editing.render-controller.d.ts +1 -0
- package/lib/types/controllers/move-range.controller.d.ts +2 -0
- package/lib/types/controllers/render-controllers/scroll.render-controller.d.ts +8 -2
- package/lib/types/facade/f-event.d.ts +11 -8
- package/lib/types/facade/f-worksheet.d.ts +3 -2
- package/lib/types/services/scroll-manager.service.d.ts +4 -0
- package/lib/types/services/selection/selection-render.service.d.ts +1 -0
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +4 -4
- package/package.json +15 -15
- package/LICENSE +0 -176
package/lib/es/facade.js
CHANGED
|
@@ -832,9 +832,9 @@ class De extends te {
|
|
|
832
832
|
ge.indexOf(l) !== -1 && (i.startColumn = Math.min(i.startColumn, h.startColumn), i.startRow = Math.min(i.startRow, h.startRow), i.endColumn = Math.max(i.endColumn, h.endColumn), i.endRow = Math.max(i.endRow, h.endRow));
|
|
833
833
|
return i;
|
|
834
834
|
}
|
|
835
|
-
scrollToCell(e, r) {
|
|
836
|
-
const
|
|
837
|
-
return
|
|
835
|
+
scrollToCell(e, r, t) {
|
|
836
|
+
const i = this._workbook.getUnitId(), s = this._injector.get(v).getRenderById(i);
|
|
837
|
+
return s && (s == null ? void 0 : s.with(Ee)).scrollToCell(e, r, t), this;
|
|
838
838
|
}
|
|
839
839
|
getScrollState() {
|
|
840
840
|
const e = {
|