@univerjs/engine-render 0.10.7 → 0.10.8
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 +1208 -1194
- package/lib/index.js +1208 -1194
- package/lib/types/components/sheets/sheet.render-skeleton.d.ts +2 -2
- package/lib/umd/index.js +1 -1
- package/package.json +3 -3
|
@@ -122,7 +122,7 @@ export declare class SpreadsheetSkeleton extends SheetSkeleton {
|
|
|
122
122
|
*/
|
|
123
123
|
getRangeByBounding(bounds?: IViewportInfo): IRange;
|
|
124
124
|
getRangeByViewport(vpInfo?: IViewportInfo): IRange;
|
|
125
|
-
getCacheRangeByViewport(vpInfo?: IViewportInfo): IRange;
|
|
125
|
+
getCacheRangeByViewport(vpInfo?: IViewportInfo, isPrinting?: boolean): IRange;
|
|
126
126
|
getRangeByViewBound(bound?: IBoundRectNoAngle): IRange;
|
|
127
127
|
appendToOverflowCache(row: number, column: number, startColumn: number, endColumn: number): void;
|
|
128
128
|
getOverflowPosition(contentSize: Required<ISize>, horizontalAlign: HorizontalAlign, row: number, column: number, columnCount: number): IColumnRange;
|
|
@@ -210,7 +210,7 @@ export declare class SpreadsheetSkeleton extends SheetSkeleton {
|
|
|
210
210
|
* @param viewBound The range of the visible area of the canvas
|
|
211
211
|
* @returns The range cell index of the canvas visible area
|
|
212
212
|
*/
|
|
213
|
-
protected _getRangeByViewBounding(rowHeightAccumulation: number[], columnWidthAccumulation: number[], viewBound?: IBoundRectNoAngle): IRange;
|
|
213
|
+
protected _getRangeByViewBounding(rowHeightAccumulation: number[], columnWidthAccumulation: number[], viewBound?: IBoundRectNoAngle, isPrinting?: boolean): IRange;
|
|
214
214
|
/**
|
|
215
215
|
* Get the current row and column segment visible merge data.
|
|
216
216
|
* @returns {IRange} The visible merge data
|