@odoo/o-spreadsheet 17.2.3 → 17.2.5
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/dist/o-spreadsheet.cjs.js +439 -68
- package/dist/o-spreadsheet.d.ts +3 -9
- package/dist/o-spreadsheet.esm.js +439 -68
- package/dist/o-spreadsheet.iife.js +439 -68
- package/dist/o-spreadsheet.iife.min.js +268 -264
- package/dist/o_spreadsheet.xml +4 -4
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -4151,7 +4151,7 @@ declare class ClipboardPlugin extends UIPlugin {
|
|
|
4151
4151
|
declare class FilterEvaluationPlugin extends UIPlugin {
|
|
4152
4152
|
static getters: readonly ["getFilterHiddenValues", "getFirstTableInSelection", "isRowFiltered", "isFilterActive"];
|
|
4153
4153
|
private filterValues;
|
|
4154
|
-
hiddenRows: Set<number>;
|
|
4154
|
+
hiddenRows: Record<UID, Set<number> | undefined>;
|
|
4155
4155
|
isEvaluationDirty: boolean;
|
|
4156
4156
|
allowDispatch(cmd: LocalCommand): CommandResult;
|
|
4157
4157
|
handle(cmd: Command): void;
|
|
@@ -4288,8 +4288,8 @@ declare class InternalViewport {
|
|
|
4288
4288
|
canScrollHorizontally: boolean;
|
|
4289
4289
|
viewportWidth: Pixel;
|
|
4290
4290
|
viewportHeight: Pixel;
|
|
4291
|
-
|
|
4292
|
-
|
|
4291
|
+
offsetCorrectionX: Pixel;
|
|
4292
|
+
offsetCorrectionY: Pixel;
|
|
4293
4293
|
constructor(getters: Getters, sheetId: UID, boundaries: Zone, sizeInGrid: DOMDimension, options: {
|
|
4294
4294
|
canScrollVertically: boolean;
|
|
4295
4295
|
canScrollHorizontally: boolean;
|
|
@@ -4494,11 +4494,6 @@ declare class SheetViewPlugin extends UIPlugin {
|
|
|
4494
4494
|
private resizeSheetView;
|
|
4495
4495
|
private recomputeViewports;
|
|
4496
4496
|
private setSheetViewOffset;
|
|
4497
|
-
/**
|
|
4498
|
-
* Clip the vertical offset within the allowed range.
|
|
4499
|
-
* Not above the sheet, nor below the sheet.
|
|
4500
|
-
*/
|
|
4501
|
-
private clipOffsetY;
|
|
4502
4497
|
private getViewportOffset;
|
|
4503
4498
|
private resetViewports;
|
|
4504
4499
|
/**
|
|
@@ -8316,7 +8311,6 @@ interface ClickableCell {
|
|
|
8316
8311
|
coordinates: Rect;
|
|
8317
8312
|
position: Position$1;
|
|
8318
8313
|
action: (position: CellPosition, env: SpreadsheetChildEnv) => void;
|
|
8319
|
-
tKey: string;
|
|
8320
8314
|
}
|
|
8321
8315
|
declare class SpreadsheetDashboard extends Component<Props$8, SpreadsheetChildEnv> {
|
|
8322
8316
|
static template: string;
|