@odoo/o-spreadsheet
Version:
A spreadsheet component
30 lines (29 loc) • 1.45 kB
TypeScript
import { Dimension } from "../types/misc";
import { SpreadsheetChildEnv } from "../types/spreadsheet_env";
import { ActionSpec } from "./action";
export declare const hideCols: ActionSpec;
export declare const unhideCols: ActionSpec;
export declare const unhideAllCols: ActionSpec;
export declare const hideRows: ActionSpec;
export declare const unhideRows: ActionSpec;
export declare const unhideAllRows: ActionSpec;
export declare const unFreezePane: ActionSpec;
export declare const freezePane: ActionSpec;
export declare const unFreezeRows: ActionSpec;
export declare const freezeFirstRow: ActionSpec;
export declare const freezeSecondRow: ActionSpec;
export declare const freezeCurrentRow: ActionSpec;
export declare const unFreezeCols: ActionSpec;
export declare const freezeFirstCol: ActionSpec;
export declare const freezeSecondCol: ActionSpec;
export declare const freezeCurrentCol: ActionSpec;
export declare const viewGridlines: ActionSpec;
export declare const irregularityMap: ActionSpec;
export declare function zoomAction(zoom: number): ActionSpec;
export declare const viewFormulas: ActionSpec;
export declare const groupColumns: ActionSpec;
export declare const groupRows: ActionSpec;
export declare const ungroupColumns: ActionSpec;
export declare const ungroupRows: ActionSpec;
export declare function canUngroupHeaders(env: SpreadsheetChildEnv, dimension: Dimension): boolean;
export declare const togglePinPanel: ActionSpec;