@odoo/o-spreadsheet 18.3.1 → 18.3.3
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 +695 -137
- package/dist/o-spreadsheet.d.ts +278 -164
- package/dist/o-spreadsheet.esm.js +695 -137
- package/dist/o-spreadsheet.iife.js +695 -137
- package/dist/o-spreadsheet.iife.min.js +419 -383
- package/dist/o_spreadsheet.xml +64 -16
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import * as _odoo_owl from '@odoo/owl';
|
|
|
6
6
|
import { ComponentConstructor, Component } from '@odoo/owl';
|
|
7
7
|
import * as chart_js_dist_types_utils from 'chart.js/dist/types/utils';
|
|
8
8
|
import * as chart_js_dist_types_geometric from 'chart.js/dist/types/geometric';
|
|
9
|
-
import * as chart_js_dist_types_basic from 'chart.js/dist/types/basic';
|
|
10
9
|
|
|
11
10
|
interface FigureInfo {
|
|
12
11
|
id: UID;
|
|
@@ -1191,7 +1190,7 @@ interface SheetData {
|
|
|
1191
1190
|
};
|
|
1192
1191
|
conditionalFormats: ConditionalFormat[];
|
|
1193
1192
|
dataValidationRules: DataValidationRuleData[];
|
|
1194
|
-
tables: TableData[];
|
|
1193
|
+
tables: TableData$1[];
|
|
1195
1194
|
areGridLinesVisible?: boolean;
|
|
1196
1195
|
isVisible: boolean;
|
|
1197
1196
|
panes?: PaneDivision;
|
|
@@ -1251,7 +1250,7 @@ interface ExcelHeaderData extends HeaderData {
|
|
|
1251
1250
|
outlineLevel?: number;
|
|
1252
1251
|
collapsed?: boolean;
|
|
1253
1252
|
}
|
|
1254
|
-
interface TableData {
|
|
1253
|
+
interface TableData$1 {
|
|
1255
1254
|
range: string;
|
|
1256
1255
|
config?: TableConfig;
|
|
1257
1256
|
type?: CoreTableType;
|
|
@@ -2638,12 +2637,12 @@ interface ZoneDependentCommand {
|
|
|
2638
2637
|
zone: Zone;
|
|
2639
2638
|
}
|
|
2640
2639
|
declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
|
|
2641
|
-
declare const invalidateEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
|
|
2642
|
-
declare const invalidateChartEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
|
|
2643
|
-
declare const invalidateDependenciesCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
|
|
2644
|
-
declare const invalidateCFEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
|
|
2645
|
-
declare const invalidateBordersCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
|
|
2646
|
-
declare const readonlyAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
|
|
2640
|
+
declare const invalidateEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2641
|
+
declare const invalidateChartEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2642
|
+
declare const invalidateDependenciesCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2643
|
+
declare const invalidateCFEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2644
|
+
declare const invalidateBordersCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2645
|
+
declare const readonlyAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
|
|
2647
2646
|
declare const coreTypes: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT">;
|
|
2648
2647
|
declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
|
|
2649
2648
|
declare function canExecuteInReadonly(cmd: Command): boolean;
|
|
@@ -2742,6 +2741,7 @@ interface DeleteSheetCommand extends SheetDependentCommand, SheetEditingCommand
|
|
|
2742
2741
|
interface DuplicateSheetCommand extends SheetDependentCommand {
|
|
2743
2742
|
type: "DUPLICATE_SHEET";
|
|
2744
2743
|
sheetIdTo: UID;
|
|
2744
|
+
sheetNameTo: string;
|
|
2745
2745
|
}
|
|
2746
2746
|
interface MoveSheetCommand extends SheetDependentCommand {
|
|
2747
2747
|
type: "MOVE_SHEET";
|
|
@@ -3201,6 +3201,13 @@ interface PaintFormat extends TargetDependentCommand {
|
|
|
3201
3201
|
interface DeleteUnfilteredContentCommand extends TargetDependentCommand {
|
|
3202
3202
|
type: "DELETE_UNFILTERED_CONTENT";
|
|
3203
3203
|
}
|
|
3204
|
+
interface PivotStartPresenceTracking {
|
|
3205
|
+
type: "PIVOT_START_PRESENCE_TRACKING";
|
|
3206
|
+
pivotId: UID;
|
|
3207
|
+
}
|
|
3208
|
+
interface PivotStopPresenceTracking {
|
|
3209
|
+
type: "PIVOT_STOP_PRESENCE_TRACKING";
|
|
3210
|
+
}
|
|
3204
3211
|
type CoreCommand =
|
|
3205
3212
|
/** CELLS */
|
|
3206
3213
|
UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCommand | DeleteContentCommand
|
|
@@ -3232,7 +3239,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
|
|
|
3232
3239
|
| UpdateLocaleCommand
|
|
3233
3240
|
/** PIVOT */
|
|
3234
3241
|
| AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
|
|
3235
|
-
type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | EvaluateChartsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | SetContextualFormatCommand | ResizeViewportCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat | DeleteUnfilteredContentCommand;
|
|
3242
|
+
type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | EvaluateChartsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | SetContextualFormatCommand | ResizeViewportCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat | DeleteUnfilteredContentCommand | PivotStartPresenceTracking | PivotStopPresenceTracking;
|
|
3236
3243
|
type Command = CoreCommand | LocalCommand;
|
|
3237
3244
|
/**
|
|
3238
3245
|
* Holds the result of a command dispatch.
|
|
@@ -4660,6 +4667,7 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
|
|
|
4660
4667
|
private addChart;
|
|
4661
4668
|
private checkChartDuplicate;
|
|
4662
4669
|
private checkChartExists;
|
|
4670
|
+
private checkChartChanged;
|
|
4663
4671
|
}
|
|
4664
4672
|
|
|
4665
4673
|
interface ConditionalFormatState {
|
|
@@ -5084,7 +5092,7 @@ interface SheetState {
|
|
|
5084
5092
|
readonly cellPosition: Record<UID, CellPosition | undefined>;
|
|
5085
5093
|
}
|
|
5086
5094
|
declare class SheetPlugin extends CorePlugin<SheetState> implements SheetState {
|
|
5087
|
-
static getters: readonly ["getSheetName", "tryGetSheetName", "getSheet", "tryGetSheet", "getSheetIdByName", "getSheetIds", "getVisibleSheetIds", "isSheetVisible", "doesHeaderExist", "doesHeadersExist", "getCell", "getCellPosition", "getColsZone", "getRowCells", "getRowsZone", "getNumberCols", "getNumberRows", "getNumberHeaders", "getGridLinesVisibility", "getNextSheetName", "getSheetSize", "getSheetZone", "getPaneDivisions", "checkZonesExistInSheet", "getCommandZones", "getUnboundedZone", "checkElementsIncludeAllNonFrozenHeaders"];
|
|
5095
|
+
static getters: readonly ["getSheetName", "tryGetSheetName", "getSheet", "tryGetSheet", "getSheetIdByName", "getSheetIds", "getVisibleSheetIds", "isSheetVisible", "doesHeaderExist", "doesHeadersExist", "getCell", "getCellPosition", "getColsZone", "getRowCells", "getRowsZone", "getNumberCols", "getNumberRows", "getNumberHeaders", "getGridLinesVisibility", "getNextSheetName", "getSheetSize", "getSheetZone", "getPaneDivisions", "checkZonesExistInSheet", "getCommandZones", "getUnboundedZone", "checkElementsIncludeAllNonFrozenHeaders", "getDuplicateSheetName"];
|
|
5088
5096
|
readonly sheetIdsMapName: Record<string, UID | undefined>;
|
|
5089
5097
|
readonly orderedSheetIds: UID[];
|
|
5090
5098
|
readonly sheets: Record<UID, Sheet | undefined>;
|
|
@@ -5161,7 +5169,7 @@ declare class SheetPlugin extends CorePlugin<SheetState> implements SheetState {
|
|
|
5161
5169
|
private hideSheet;
|
|
5162
5170
|
private showSheet;
|
|
5163
5171
|
private duplicateSheet;
|
|
5164
|
-
|
|
5172
|
+
getDuplicateSheetName(sheetName: string): string;
|
|
5165
5173
|
private deleteSheet;
|
|
5166
5174
|
/**
|
|
5167
5175
|
* Delete column. This requires a lot of handling:
|
|
@@ -6060,6 +6068,23 @@ declare class HistoryPlugin extends UIPlugin {
|
|
|
6060
6068
|
private getPossibleRevisionToRepeat;
|
|
6061
6069
|
}
|
|
6062
6070
|
|
|
6071
|
+
declare class PivotPresenceTracker {
|
|
6072
|
+
private trackedValues;
|
|
6073
|
+
private domainToArray;
|
|
6074
|
+
isValuePresent(measure: string, domain: PivotDomain): boolean;
|
|
6075
|
+
isHeaderPresent(domain: PivotDomain): boolean;
|
|
6076
|
+
trackValue(measure: string, domain: PivotDomain): void;
|
|
6077
|
+
trackHeader(domain: PivotDomain): void;
|
|
6078
|
+
}
|
|
6079
|
+
|
|
6080
|
+
declare class PivotPresencePlugin extends UIPlugin {
|
|
6081
|
+
static getters: readonly ["getPivotPresenceTracker"];
|
|
6082
|
+
private trackPresencePivotId?;
|
|
6083
|
+
private tracker?;
|
|
6084
|
+
handle(cmd: Command): void;
|
|
6085
|
+
getPivotPresenceTracker(pivotId: UID): PivotPresenceTracker | undefined;
|
|
6086
|
+
}
|
|
6087
|
+
|
|
6063
6088
|
declare class SplitToColumnsPlugin extends UIPlugin {
|
|
6064
6089
|
static getters: readonly ["getAutomaticSeparator"];
|
|
6065
6090
|
allowDispatch(cmd: Command): CommandResult | CommandResult[];
|
|
@@ -6184,7 +6209,7 @@ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof Head
|
|
|
6184
6209
|
type Getters = {
|
|
6185
6210
|
isReadonly: () => boolean;
|
|
6186
6211
|
isDashboard: () => boolean;
|
|
6187
|
-
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin>;
|
|
6212
|
+
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin>;
|
|
6188
6213
|
|
|
6189
6214
|
type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
|
|
6190
6215
|
interface ArgDefinition {
|
|
@@ -6506,7 +6531,7 @@ interface ChartShowValuesPluginOptions {
|
|
|
6506
6531
|
showValues: boolean;
|
|
6507
6532
|
background?: Color;
|
|
6508
6533
|
horizontal?: boolean;
|
|
6509
|
-
callback: (value: number | string, axisId
|
|
6534
|
+
callback: (value: number | string, axisId: string) => string;
|
|
6510
6535
|
}
|
|
6511
6536
|
declare module "chart.js" {
|
|
6512
6537
|
interface PluginOptionsByType<TType extends ChartType$1> {
|
|
@@ -6828,7 +6853,7 @@ interface ChartSubtypeProperties {
|
|
|
6828
6853
|
preview: string;
|
|
6829
6854
|
}
|
|
6830
6855
|
|
|
6831
|
-
interface Props$
|
|
6856
|
+
interface Props$1h {
|
|
6832
6857
|
label?: string;
|
|
6833
6858
|
value: boolean;
|
|
6834
6859
|
className?: string;
|
|
@@ -6837,7 +6862,7 @@ interface Props$1g {
|
|
|
6837
6862
|
disabled?: boolean;
|
|
6838
6863
|
onChange: (value: boolean) => void;
|
|
6839
6864
|
}
|
|
6840
|
-
declare class Checkbox extends Component<Props$
|
|
6865
|
+
declare class Checkbox extends Component<Props$1h, SpreadsheetChildEnv> {
|
|
6841
6866
|
static template: string;
|
|
6842
6867
|
static props: {
|
|
6843
6868
|
label: {
|
|
@@ -6872,10 +6897,10 @@ declare class Checkbox extends Component<Props$1g, SpreadsheetChildEnv> {
|
|
|
6872
6897
|
onChange(ev: InputEvent): void;
|
|
6873
6898
|
}
|
|
6874
6899
|
|
|
6875
|
-
interface Props$
|
|
6900
|
+
interface Props$1g {
|
|
6876
6901
|
class?: string;
|
|
6877
6902
|
}
|
|
6878
|
-
declare class Section extends Component<Props$
|
|
6903
|
+
declare class Section extends Component<Props$1g, SpreadsheetChildEnv> {
|
|
6879
6904
|
static template: string;
|
|
6880
6905
|
static props: {
|
|
6881
6906
|
class: {
|
|
@@ -7009,7 +7034,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
7009
7034
|
getIndex(rangeId: number | null): number | null;
|
|
7010
7035
|
}
|
|
7011
7036
|
|
|
7012
|
-
interface Props$
|
|
7037
|
+
interface Props$1f {
|
|
7013
7038
|
ranges: string[];
|
|
7014
7039
|
hasSingleRange?: boolean;
|
|
7015
7040
|
required?: boolean;
|
|
@@ -7034,7 +7059,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
7034
7059
|
* onSelectionChanged is called every time the input value
|
|
7035
7060
|
* changes.
|
|
7036
7061
|
*/
|
|
7037
|
-
declare class SelectionInput extends Component<Props$
|
|
7062
|
+
declare class SelectionInput extends Component<Props$1f, SpreadsheetChildEnv> {
|
|
7038
7063
|
static template: string;
|
|
7039
7064
|
static props: {
|
|
7040
7065
|
ranges: ArrayConstructor;
|
|
@@ -7101,7 +7126,7 @@ declare class SelectionInput extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
|
7101
7126
|
confirm(): void;
|
|
7102
7127
|
}
|
|
7103
7128
|
|
|
7104
|
-
interface Props$
|
|
7129
|
+
interface Props$1e {
|
|
7105
7130
|
ranges: CustomizedDataSet[];
|
|
7106
7131
|
hasSingleRange?: boolean;
|
|
7107
7132
|
onSelectionChanged: (ranges: string[]) => void;
|
|
@@ -7110,7 +7135,7 @@ interface Props$1d {
|
|
|
7110
7135
|
onSelectionConfirmed: () => void;
|
|
7111
7136
|
title?: string;
|
|
7112
7137
|
}
|
|
7113
|
-
declare class ChartDataSeries extends Component<Props$
|
|
7138
|
+
declare class ChartDataSeries extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
7114
7139
|
static template: string;
|
|
7115
7140
|
static components: {
|
|
7116
7141
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7142,12 +7167,12 @@ declare class ChartDataSeries extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
|
7142
7167
|
get title(): string;
|
|
7143
7168
|
}
|
|
7144
7169
|
|
|
7145
|
-
interface Props$
|
|
7170
|
+
interface Props$1d {
|
|
7146
7171
|
messages: string[];
|
|
7147
7172
|
msgType: "warning" | "error" | "info";
|
|
7148
7173
|
singleBox?: boolean;
|
|
7149
7174
|
}
|
|
7150
|
-
declare class ValidationMessages extends Component<Props$
|
|
7175
|
+
declare class ValidationMessages extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
7151
7176
|
static template: string;
|
|
7152
7177
|
static props: {
|
|
7153
7178
|
messages: ArrayConstructor;
|
|
@@ -7161,10 +7186,10 @@ declare class ValidationMessages extends Component<Props$1c, SpreadsheetChildEnv
|
|
|
7161
7186
|
get alertBoxes(): string[][];
|
|
7162
7187
|
}
|
|
7163
7188
|
|
|
7164
|
-
interface Props$
|
|
7189
|
+
interface Props$1c {
|
|
7165
7190
|
messages: string[];
|
|
7166
7191
|
}
|
|
7167
|
-
declare class ChartErrorSection extends Component<Props$
|
|
7192
|
+
declare class ChartErrorSection extends Component<Props$1c, SpreadsheetChildEnv> {
|
|
7168
7193
|
static template: string;
|
|
7169
7194
|
static components: {
|
|
7170
7195
|
Section: typeof Section;
|
|
@@ -7178,7 +7203,7 @@ declare class ChartErrorSection extends Component<Props$1b, SpreadsheetChildEnv>
|
|
|
7178
7203
|
};
|
|
7179
7204
|
}
|
|
7180
7205
|
|
|
7181
|
-
interface Props$
|
|
7206
|
+
interface Props$1b {
|
|
7182
7207
|
title?: string;
|
|
7183
7208
|
range: string;
|
|
7184
7209
|
isInvalid: boolean;
|
|
@@ -7191,7 +7216,7 @@ interface Props$1a {
|
|
|
7191
7216
|
onChange: (value: boolean) => void;
|
|
7192
7217
|
}>;
|
|
7193
7218
|
}
|
|
7194
|
-
declare class ChartLabelRange extends Component<Props$
|
|
7219
|
+
declare class ChartLabelRange extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
7195
7220
|
static template: string;
|
|
7196
7221
|
static components: {
|
|
7197
7222
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7212,10 +7237,10 @@ declare class ChartLabelRange extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
|
7212
7237
|
optional: boolean;
|
|
7213
7238
|
};
|
|
7214
7239
|
};
|
|
7215
|
-
static defaultProps: Partial<Props$
|
|
7240
|
+
static defaultProps: Partial<Props$1b>;
|
|
7216
7241
|
}
|
|
7217
7242
|
|
|
7218
|
-
interface Props$
|
|
7243
|
+
interface Props$1a {
|
|
7219
7244
|
figureId: UID;
|
|
7220
7245
|
definition: ChartWithDataSetDefinition;
|
|
7221
7246
|
canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
@@ -7225,7 +7250,7 @@ interface ChartPanelState {
|
|
|
7225
7250
|
datasetDispatchResult?: DispatchResult;
|
|
7226
7251
|
labelsDispatchResult?: DispatchResult;
|
|
7227
7252
|
}
|
|
7228
|
-
declare class GenericChartConfigPanel extends Component<Props$
|
|
7253
|
+
declare class GenericChartConfigPanel extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
7229
7254
|
static template: string;
|
|
7230
7255
|
static components: {
|
|
7231
7256
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -7287,11 +7312,11 @@ declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
|
7287
7312
|
onUpdateStacked(stacked: boolean): void;
|
|
7288
7313
|
}
|
|
7289
7314
|
|
|
7290
|
-
interface Props$
|
|
7315
|
+
interface Props$19 {
|
|
7291
7316
|
isCollapsed: boolean;
|
|
7292
7317
|
slots: any;
|
|
7293
7318
|
}
|
|
7294
|
-
declare class Collapse extends Component<Props$
|
|
7319
|
+
declare class Collapse extends Component<Props$19, SpreadsheetChildEnv> {
|
|
7295
7320
|
static template: string;
|
|
7296
7321
|
static props: {
|
|
7297
7322
|
isCollapsed: BooleanConstructor;
|
|
@@ -7330,12 +7355,12 @@ interface Choice$1 {
|
|
|
7330
7355
|
value: string;
|
|
7331
7356
|
label: string;
|
|
7332
7357
|
}
|
|
7333
|
-
interface Props$
|
|
7358
|
+
interface Props$18 {
|
|
7334
7359
|
choices: Choice$1[];
|
|
7335
7360
|
onChange: (value: string) => void;
|
|
7336
7361
|
selectedValue: string;
|
|
7337
7362
|
}
|
|
7338
|
-
declare class BadgeSelection extends Component<Props$
|
|
7363
|
+
declare class BadgeSelection extends Component<Props$18, SpreadsheetChildEnv> {
|
|
7339
7364
|
static template: string;
|
|
7340
7365
|
static props: {
|
|
7341
7366
|
choices: ArrayConstructor;
|
|
@@ -7344,14 +7369,14 @@ declare class BadgeSelection extends Component<Props$17, SpreadsheetChildEnv> {
|
|
|
7344
7369
|
};
|
|
7345
7370
|
}
|
|
7346
7371
|
|
|
7347
|
-
interface Props$
|
|
7372
|
+
interface Props$17 {
|
|
7348
7373
|
action: ActionSpec;
|
|
7349
7374
|
hasTriangleDownIcon?: boolean;
|
|
7350
7375
|
selectedColor?: string;
|
|
7351
7376
|
class?: string;
|
|
7352
7377
|
onClick?: (ev: MouseEvent) => void;
|
|
7353
7378
|
}
|
|
7354
|
-
declare class ActionButton extends Component<Props$
|
|
7379
|
+
declare class ActionButton extends Component<Props$17, SpreadsheetChildEnv> {
|
|
7355
7380
|
static template: string;
|
|
7356
7381
|
static props: {
|
|
7357
7382
|
action: ObjectConstructor;
|
|
@@ -7536,7 +7561,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7536
7561
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
7537
7562
|
}
|
|
7538
7563
|
|
|
7539
|
-
interface Props$
|
|
7564
|
+
interface Props$16 {
|
|
7540
7565
|
currentColor: string | undefined;
|
|
7541
7566
|
toggleColorPicker: () => void;
|
|
7542
7567
|
showColorPicker: boolean;
|
|
@@ -7547,7 +7572,7 @@ interface Props$15 {
|
|
|
7547
7572
|
dropdownMaxHeight?: Pixel;
|
|
7548
7573
|
class?: string;
|
|
7549
7574
|
}
|
|
7550
|
-
declare class ColorPickerWidget extends Component<Props$
|
|
7575
|
+
declare class ColorPickerWidget extends Component<Props$16, SpreadsheetChildEnv> {
|
|
7551
7576
|
static template: string;
|
|
7552
7577
|
static props: {
|
|
7553
7578
|
currentColor: {
|
|
@@ -7598,7 +7623,7 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7598
7623
|
};
|
|
7599
7624
|
handle(cmd: Command): void;
|
|
7600
7625
|
open({ col, row }: Position$1, type: CellPopoverType): void;
|
|
7601
|
-
close():
|
|
7626
|
+
close(): "noStateChange" | undefined;
|
|
7602
7627
|
get persistentCellPopover(): OpenCellPopover | ClosedCellPopover;
|
|
7603
7628
|
get isOpen(): boolean;
|
|
7604
7629
|
get cellPopover(): ClosedCellPopover | PositionedCellPopoverComponent;
|
|
@@ -7608,14 +7633,14 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7608
7633
|
interface State$4 {
|
|
7609
7634
|
isOpen: boolean;
|
|
7610
7635
|
}
|
|
7611
|
-
interface Props$
|
|
7636
|
+
interface Props$15 {
|
|
7612
7637
|
currentFontSize: number;
|
|
7613
7638
|
class: string;
|
|
7614
7639
|
onFontSizeChanged: (fontSize: number) => void;
|
|
7615
7640
|
onToggle?: () => void;
|
|
7616
7641
|
onFocusInput?: () => void;
|
|
7617
7642
|
}
|
|
7618
|
-
declare class FontSizeEditor extends Component<Props$
|
|
7643
|
+
declare class FontSizeEditor extends Component<Props$15, SpreadsheetChildEnv> {
|
|
7619
7644
|
static template: string;
|
|
7620
7645
|
static props: {
|
|
7621
7646
|
currentFontSize: NumberConstructor;
|
|
@@ -7653,7 +7678,7 @@ declare class FontSizeEditor extends Component<Props$14, SpreadsheetChildEnv> {
|
|
|
7653
7678
|
onInputKeydown(ev: KeyboardEvent): void;
|
|
7654
7679
|
}
|
|
7655
7680
|
|
|
7656
|
-
interface Props$
|
|
7681
|
+
interface Props$14 {
|
|
7657
7682
|
class?: string;
|
|
7658
7683
|
style: ChartStyle;
|
|
7659
7684
|
updateStyle: (style: ChartStyle) => void;
|
|
@@ -7662,7 +7687,7 @@ interface Props$13 {
|
|
|
7662
7687
|
hasHorizontalAlign?: boolean;
|
|
7663
7688
|
hasBackgroundColor?: boolean;
|
|
7664
7689
|
}
|
|
7665
|
-
declare class TextStyler extends Component<Props$
|
|
7690
|
+
declare class TextStyler extends Component<Props$14, SpreadsheetChildEnv> {
|
|
7666
7691
|
static template: string;
|
|
7667
7692
|
static components: {
|
|
7668
7693
|
ColorPickerWidget: typeof ColorPickerWidget;
|
|
@@ -7730,7 +7755,7 @@ declare class TextStyler extends Component<Props$13, SpreadsheetChildEnv> {
|
|
|
7730
7755
|
get verticalAlignActions(): ActionSpec[];
|
|
7731
7756
|
}
|
|
7732
7757
|
|
|
7733
|
-
interface Props$
|
|
7758
|
+
interface Props$13 {
|
|
7734
7759
|
title?: string;
|
|
7735
7760
|
updateTitle: (title: string) => void;
|
|
7736
7761
|
name?: string;
|
|
@@ -7738,7 +7763,7 @@ interface Props$12 {
|
|
|
7738
7763
|
defaultStyle?: Partial<TitleDesign>;
|
|
7739
7764
|
updateStyle: (style: TitleDesign) => void;
|
|
7740
7765
|
}
|
|
7741
|
-
declare class ChartTitle extends Component<Props$
|
|
7766
|
+
declare class ChartTitle extends Component<Props$13, SpreadsheetChildEnv> {
|
|
7742
7767
|
static template: string;
|
|
7743
7768
|
static components: {
|
|
7744
7769
|
Section: typeof Section;
|
|
@@ -7771,13 +7796,13 @@ interface AxisDefinition {
|
|
|
7771
7796
|
id: string;
|
|
7772
7797
|
name: string;
|
|
7773
7798
|
}
|
|
7774
|
-
interface Props$
|
|
7799
|
+
interface Props$12 {
|
|
7775
7800
|
figureId: UID;
|
|
7776
7801
|
definition: ChartWithAxisDefinition;
|
|
7777
7802
|
updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
7778
7803
|
axesList: AxisDefinition[];
|
|
7779
7804
|
}
|
|
7780
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
7805
|
+
declare class AxisDesignEditor extends Component<Props$12, SpreadsheetChildEnv> {
|
|
7781
7806
|
static template: string;
|
|
7782
7807
|
static components: {
|
|
7783
7808
|
Section: typeof Section;
|
|
@@ -7809,14 +7834,14 @@ interface Choice {
|
|
|
7809
7834
|
value: unknown;
|
|
7810
7835
|
label: string;
|
|
7811
7836
|
}
|
|
7812
|
-
interface Props$
|
|
7837
|
+
interface Props$11 {
|
|
7813
7838
|
choices: Choice[];
|
|
7814
7839
|
onChange: (value: unknown) => void;
|
|
7815
7840
|
selectedValue: string;
|
|
7816
7841
|
name: string;
|
|
7817
7842
|
direction: "horizontal" | "vertical";
|
|
7818
7843
|
}
|
|
7819
|
-
declare class RadioSelection extends Component<Props$
|
|
7844
|
+
declare class RadioSelection extends Component<Props$11, SpreadsheetChildEnv> {
|
|
7820
7845
|
static template: string;
|
|
7821
7846
|
static props: {
|
|
7822
7847
|
choices: ArrayConstructor;
|
|
@@ -7835,13 +7860,13 @@ declare class RadioSelection extends Component<Props$10, SpreadsheetChildEnv> {
|
|
|
7835
7860
|
};
|
|
7836
7861
|
}
|
|
7837
7862
|
|
|
7838
|
-
interface Props
|
|
7863
|
+
interface Props$10 {
|
|
7839
7864
|
currentColor?: string;
|
|
7840
7865
|
onColorPicked: (color: string) => void;
|
|
7841
7866
|
title?: string;
|
|
7842
7867
|
disableNoColor?: boolean;
|
|
7843
7868
|
}
|
|
7844
|
-
declare class RoundColorPicker extends Component<Props
|
|
7869
|
+
declare class RoundColorPicker extends Component<Props$10, SpreadsheetChildEnv> {
|
|
7845
7870
|
static template: string;
|
|
7846
7871
|
static components: {
|
|
7847
7872
|
Section: typeof Section;
|
|
@@ -7874,13 +7899,13 @@ declare class RoundColorPicker extends Component<Props$$, SpreadsheetChildEnv> {
|
|
|
7874
7899
|
get buttonStyle(): string;
|
|
7875
7900
|
}
|
|
7876
7901
|
|
|
7877
|
-
interface Props
|
|
7902
|
+
interface Props$$ {
|
|
7878
7903
|
figureId: UID;
|
|
7879
7904
|
definition: ChartDefinition;
|
|
7880
7905
|
updateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
7881
7906
|
defaultChartTitleFontSize?: number;
|
|
7882
7907
|
}
|
|
7883
|
-
declare class GeneralDesignEditor extends Component<Props
|
|
7908
|
+
declare class GeneralDesignEditor extends Component<Props$$, SpreadsheetChildEnv> {
|
|
7884
7909
|
static template: string;
|
|
7885
7910
|
static components: {
|
|
7886
7911
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -7914,12 +7939,12 @@ declare class GeneralDesignEditor extends Component<Props$_, SpreadsheetChildEnv
|
|
|
7914
7939
|
updateChartTitleStyle(style: TitleDesign): void;
|
|
7915
7940
|
}
|
|
7916
7941
|
|
|
7917
|
-
interface Props$
|
|
7942
|
+
interface Props$_ {
|
|
7918
7943
|
figureId: UID;
|
|
7919
7944
|
definition: ChartWithDataSetDefinition;
|
|
7920
7945
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7921
7946
|
}
|
|
7922
|
-
declare class ChartLegend extends Component<Props$
|
|
7947
|
+
declare class ChartLegend extends Component<Props$_, SpreadsheetChildEnv> {
|
|
7923
7948
|
static template: string;
|
|
7924
7949
|
static components: {
|
|
7925
7950
|
Section: typeof Section;
|
|
@@ -7932,13 +7957,13 @@ declare class ChartLegend extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
|
7932
7957
|
updateLegendPosition(ev: any): void;
|
|
7933
7958
|
}
|
|
7934
7959
|
|
|
7935
|
-
interface Props$
|
|
7960
|
+
interface Props$Z {
|
|
7936
7961
|
figureId: UID;
|
|
7937
7962
|
definition: ChartWithDataSetDefinition;
|
|
7938
7963
|
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7939
7964
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7940
7965
|
}
|
|
7941
|
-
declare class SeriesDesignEditor extends Component<Props$
|
|
7966
|
+
declare class SeriesDesignEditor extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
7942
7967
|
static template: string;
|
|
7943
7968
|
static components: {
|
|
7944
7969
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -7966,13 +7991,13 @@ declare class SeriesDesignEditor extends Component<Props$Y, SpreadsheetChildEnv>
|
|
|
7966
7991
|
getDataSeriesLabel(): string | undefined;
|
|
7967
7992
|
}
|
|
7968
7993
|
|
|
7969
|
-
interface Props$
|
|
7994
|
+
interface Props$Y {
|
|
7970
7995
|
figureId: UID;
|
|
7971
7996
|
definition: ChartWithDataSetDefinition;
|
|
7972
7997
|
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7973
7998
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7974
7999
|
}
|
|
7975
|
-
declare class SeriesWithAxisDesignEditor extends Component<Props$
|
|
8000
|
+
declare class SeriesWithAxisDesignEditor extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
7976
8001
|
static template: string;
|
|
7977
8002
|
static components: {
|
|
7978
8003
|
SeriesDesignEditor: typeof SeriesDesignEditor;
|
|
@@ -8013,13 +8038,13 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$X, SpreadsheetC
|
|
|
8013
8038
|
updateTrendLineValue(index: number, config: any): void;
|
|
8014
8039
|
}
|
|
8015
8040
|
|
|
8016
|
-
interface Props$
|
|
8041
|
+
interface Props$X {
|
|
8017
8042
|
figureId: UID;
|
|
8018
8043
|
definition: ChartWithDataSetDefinition;
|
|
8019
8044
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8020
8045
|
updateChart: (figureId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8021
8046
|
}
|
|
8022
|
-
declare class ChartWithAxisDesignPanel<P extends Props$
|
|
8047
|
+
declare class ChartWithAxisDesignPanel<P extends Props$X = Props$X> extends Component<P, SpreadsheetChildEnv> {
|
|
8023
8048
|
static template: string;
|
|
8024
8049
|
static components: {
|
|
8025
8050
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -8039,13 +8064,13 @@ declare class ChartWithAxisDesignPanel<P extends Props$W = Props$W> extends Comp
|
|
|
8039
8064
|
get axesList(): AxisDefinition[];
|
|
8040
8065
|
}
|
|
8041
8066
|
|
|
8042
|
-
interface Props$
|
|
8067
|
+
interface Props$W {
|
|
8043
8068
|
figureId: UID;
|
|
8044
8069
|
definition: GaugeChartDefinition;
|
|
8045
8070
|
canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8046
8071
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8047
8072
|
}
|
|
8048
|
-
declare class GaugeChartConfigPanel extends Component<Props$
|
|
8073
|
+
declare class GaugeChartConfigPanel extends Component<Props$W, SpreadsheetChildEnv> {
|
|
8049
8074
|
static template: string;
|
|
8050
8075
|
static components: {
|
|
8051
8076
|
ChartErrorSection: typeof ChartErrorSection;
|
|
@@ -8110,13 +8135,13 @@ interface EnrichedToken extends Token {
|
|
|
8110
8135
|
isInHoverContext?: boolean;
|
|
8111
8136
|
}
|
|
8112
8137
|
|
|
8113
|
-
interface Props$
|
|
8138
|
+
interface Props$V {
|
|
8114
8139
|
proposals: AutoCompleteProposal[];
|
|
8115
8140
|
selectedIndex: number | undefined;
|
|
8116
8141
|
onValueSelected: (value: string) => void;
|
|
8117
8142
|
onValueHovered: (index: string) => void;
|
|
8118
8143
|
}
|
|
8119
|
-
declare class TextValueProvider extends Component<Props$
|
|
8144
|
+
declare class TextValueProvider extends Component<Props$V> {
|
|
8120
8145
|
static template: string;
|
|
8121
8146
|
static props: {
|
|
8122
8147
|
proposals: ArrayConstructor;
|
|
@@ -8183,11 +8208,11 @@ declare class ContentEditableHelper {
|
|
|
8183
8208
|
getText(): string;
|
|
8184
8209
|
}
|
|
8185
8210
|
|
|
8186
|
-
interface Props$
|
|
8211
|
+
interface Props$U {
|
|
8187
8212
|
functionDescription: FunctionDescription;
|
|
8188
8213
|
argsToFocus: number[];
|
|
8189
8214
|
}
|
|
8190
|
-
declare class FunctionDescriptionProvider extends Component<Props$
|
|
8215
|
+
declare class FunctionDescriptionProvider extends Component<Props$U, SpreadsheetChildEnv> {
|
|
8191
8216
|
static template: string;
|
|
8192
8217
|
static props: {
|
|
8193
8218
|
functionDescription: ObjectConstructor;
|
|
@@ -8198,15 +8223,15 @@ declare class FunctionDescriptionProvider extends Component<Props$T, Spreadsheet
|
|
|
8198
8223
|
};
|
|
8199
8224
|
private state;
|
|
8200
8225
|
toggle(): void;
|
|
8201
|
-
getContext(): Props$
|
|
8226
|
+
getContext(): Props$U;
|
|
8202
8227
|
get formulaArgSeparator(): string;
|
|
8203
8228
|
}
|
|
8204
8229
|
|
|
8205
|
-
interface Props$
|
|
8230
|
+
interface Props$T {
|
|
8206
8231
|
anchorRect: Rect;
|
|
8207
8232
|
content: string;
|
|
8208
8233
|
}
|
|
8209
|
-
declare class SpeechBubble extends Component<Props$
|
|
8234
|
+
declare class SpeechBubble extends Component<Props$T, SpreadsheetChildEnv> {
|
|
8210
8235
|
static template: string;
|
|
8211
8236
|
static props: {
|
|
8212
8237
|
content: StringConstructor;
|
|
@@ -8513,6 +8538,7 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8513
8538
|
onContextMenu(ev: MouseEvent): void;
|
|
8514
8539
|
closeAssistant(): void;
|
|
8515
8540
|
openAssistant(): void;
|
|
8541
|
+
onWheel(event: WheelEvent): void;
|
|
8516
8542
|
private processContent;
|
|
8517
8543
|
/**
|
|
8518
8544
|
* Get the HTML content corresponding to the current composer token, divided by lines.
|
|
@@ -8643,7 +8669,7 @@ declare class MenuItemRegistry extends Registry<ActionSpec> {
|
|
|
8643
8669
|
getMenuItems(): Action[];
|
|
8644
8670
|
}
|
|
8645
8671
|
|
|
8646
|
-
interface Props$
|
|
8672
|
+
interface Props$S {
|
|
8647
8673
|
onConfirm: (content: string) => void;
|
|
8648
8674
|
composerContent: string;
|
|
8649
8675
|
defaultRangeSheetId: UID;
|
|
@@ -8655,7 +8681,7 @@ interface Props$R {
|
|
|
8655
8681
|
invalid?: boolean;
|
|
8656
8682
|
getContextualColoredSymbolToken?: (token: Token) => Color;
|
|
8657
8683
|
}
|
|
8658
|
-
declare class StandaloneComposer extends Component<Props$
|
|
8684
|
+
declare class StandaloneComposer extends Component<Props$S, SpreadsheetChildEnv> {
|
|
8659
8685
|
static template: string;
|
|
8660
8686
|
static props: {
|
|
8661
8687
|
composerContent: {
|
|
@@ -8718,13 +8744,13 @@ interface PanelState {
|
|
|
8718
8744
|
sectionRuleCancelledReasons?: CommandResult[];
|
|
8719
8745
|
sectionRule: SectionRule;
|
|
8720
8746
|
}
|
|
8721
|
-
interface Props$
|
|
8747
|
+
interface Props$R {
|
|
8722
8748
|
figureId: UID;
|
|
8723
8749
|
definition: GaugeChartDefinition;
|
|
8724
8750
|
canUpdateChart: (figureID: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8725
8751
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8726
8752
|
}
|
|
8727
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
8753
|
+
declare class GaugeChartDesignPanel extends Component<Props$R, SpreadsheetChildEnv> {
|
|
8728
8754
|
static template: string;
|
|
8729
8755
|
static components: {
|
|
8730
8756
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -8774,13 +8800,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
8774
8800
|
onUpdateCumulative(cumulative: boolean): void;
|
|
8775
8801
|
}
|
|
8776
8802
|
|
|
8777
|
-
interface Props$
|
|
8803
|
+
interface Props$Q {
|
|
8778
8804
|
figureId: UID;
|
|
8779
8805
|
definition: ScorecardChartDefinition;
|
|
8780
8806
|
canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8781
8807
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8782
8808
|
}
|
|
8783
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
8809
|
+
declare class ScorecardChartConfigPanel extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
8784
8810
|
static template: string;
|
|
8785
8811
|
static components: {
|
|
8786
8812
|
SelectionInput: typeof SelectionInput;
|
|
@@ -8809,13 +8835,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$P, SpreadsheetCh
|
|
|
8809
8835
|
}
|
|
8810
8836
|
|
|
8811
8837
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
8812
|
-
interface Props$
|
|
8838
|
+
interface Props$P {
|
|
8813
8839
|
figureId: UID;
|
|
8814
8840
|
definition: ScorecardChartDefinition;
|
|
8815
8841
|
canUpdateChart: (figureID: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8816
8842
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8817
8843
|
}
|
|
8818
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
8844
|
+
declare class ScorecardChartDesignPanel extends Component<Props$P, SpreadsheetChildEnv> {
|
|
8819
8845
|
static template: string;
|
|
8820
8846
|
static components: {
|
|
8821
8847
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -8906,18 +8932,18 @@ declare class ComposerFocusStore extends SpreadsheetStore {
|
|
|
8906
8932
|
activeComposer: ComposerInterface;
|
|
8907
8933
|
private _focusMode;
|
|
8908
8934
|
get focusMode(): ComposerFocusType;
|
|
8909
|
-
focusComposer(listener: ComposerInterface, args: Args):
|
|
8910
|
-
focusActiveComposer(args: Args):
|
|
8935
|
+
focusComposer(listener: ComposerInterface, args: Args): "noStateChange" | undefined;
|
|
8936
|
+
focusActiveComposer(args: Args): "noStateChange" | undefined;
|
|
8911
8937
|
/**
|
|
8912
8938
|
* Start the edition or update the content if it's already started.
|
|
8913
8939
|
*/
|
|
8914
8940
|
private setComposerContent;
|
|
8915
8941
|
}
|
|
8916
8942
|
|
|
8917
|
-
interface Props$
|
|
8943
|
+
interface Props$O {
|
|
8918
8944
|
figureUI: FigureUI;
|
|
8919
8945
|
}
|
|
8920
|
-
declare class ChartJsComponent extends Component<Props$
|
|
8946
|
+
declare class ChartJsComponent extends Component<Props$O, SpreadsheetChildEnv> {
|
|
8921
8947
|
static template: string;
|
|
8922
8948
|
static props: {
|
|
8923
8949
|
figureUI: ObjectConstructor;
|
|
@@ -8934,10 +8960,10 @@ declare class ChartJsComponent extends Component<Props$N, SpreadsheetChildEnv> {
|
|
|
8934
8960
|
private updateChartJs;
|
|
8935
8961
|
}
|
|
8936
8962
|
|
|
8937
|
-
interface Props$
|
|
8963
|
+
interface Props$N {
|
|
8938
8964
|
figureUI: FigureUI;
|
|
8939
8965
|
}
|
|
8940
|
-
declare class ScorecardChart$1 extends Component<Props$
|
|
8966
|
+
declare class ScorecardChart$1 extends Component<Props$N, SpreadsheetChildEnv> {
|
|
8941
8967
|
static template: string;
|
|
8942
8968
|
static props: {
|
|
8943
8969
|
figureUI: ObjectConstructor;
|
|
@@ -8950,7 +8976,7 @@ declare class ScorecardChart$1 extends Component<Props$M, SpreadsheetChildEnv> {
|
|
|
8950
8976
|
}
|
|
8951
8977
|
|
|
8952
8978
|
type MenuItemOrSeparator = Action | "separator";
|
|
8953
|
-
interface Props$
|
|
8979
|
+
interface Props$M {
|
|
8954
8980
|
anchorRect: Rect;
|
|
8955
8981
|
popoverPositioning: PopoverPropsPosition;
|
|
8956
8982
|
menuItems: Action[];
|
|
@@ -8970,7 +8996,7 @@ interface MenuState {
|
|
|
8970
8996
|
menuItems: Action[];
|
|
8971
8997
|
isHoveringChild?: boolean;
|
|
8972
8998
|
}
|
|
8973
|
-
declare class Menu extends Component<Props$
|
|
8999
|
+
declare class Menu extends Component<Props$M, SpreadsheetChildEnv> {
|
|
8974
9000
|
static template: string;
|
|
8975
9001
|
static props: {
|
|
8976
9002
|
anchorRect: ObjectConstructor;
|
|
@@ -9051,14 +9077,14 @@ declare class Menu extends Component<Props$L, SpreadsheetChildEnv> {
|
|
|
9051
9077
|
}
|
|
9052
9078
|
|
|
9053
9079
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
9054
|
-
interface Props$
|
|
9080
|
+
interface Props$L {
|
|
9055
9081
|
figureUI: FigureUI;
|
|
9056
9082
|
style: string;
|
|
9057
9083
|
onFigureDeleted: () => void;
|
|
9058
9084
|
onMouseDown: (ev: MouseEvent) => void;
|
|
9059
9085
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
9060
9086
|
}
|
|
9061
|
-
declare class FigureComponent extends Component<Props$
|
|
9087
|
+
declare class FigureComponent extends Component<Props$L, SpreadsheetChildEnv> {
|
|
9062
9088
|
static template: string;
|
|
9063
9089
|
static props: {
|
|
9064
9090
|
figureUI: ObjectConstructor;
|
|
@@ -9108,11 +9134,11 @@ declare class FigureComponent extends Component<Props$K, SpreadsheetChildEnv> {
|
|
|
9108
9134
|
private openContextMenu;
|
|
9109
9135
|
}
|
|
9110
9136
|
|
|
9111
|
-
interface Props$
|
|
9137
|
+
interface Props$K {
|
|
9112
9138
|
figureUI: FigureUI;
|
|
9113
9139
|
onFigureDeleted: () => void;
|
|
9114
9140
|
}
|
|
9115
|
-
declare class ChartFigure extends Component<Props$
|
|
9141
|
+
declare class ChartFigure extends Component<Props$K, SpreadsheetChildEnv> {
|
|
9116
9142
|
static template: string;
|
|
9117
9143
|
static props: {
|
|
9118
9144
|
figureUI: ObjectConstructor;
|
|
@@ -9129,11 +9155,11 @@ declare class DelayedHoveredCellStore extends SpreadsheetStore {
|
|
|
9129
9155
|
col: number | undefined;
|
|
9130
9156
|
row: number | undefined;
|
|
9131
9157
|
handle(cmd: Command): void;
|
|
9132
|
-
hover(position: Partial<Position$1>):
|
|
9133
|
-
clear():
|
|
9158
|
+
hover(position: Partial<Position$1>): "noStateChange" | undefined;
|
|
9159
|
+
clear(): "noStateChange" | undefined;
|
|
9134
9160
|
}
|
|
9135
9161
|
|
|
9136
|
-
interface Props$
|
|
9162
|
+
interface Props$J {
|
|
9137
9163
|
isVisible: boolean;
|
|
9138
9164
|
position: Position;
|
|
9139
9165
|
}
|
|
@@ -9145,7 +9171,7 @@ interface State$3 {
|
|
|
9145
9171
|
position: Position;
|
|
9146
9172
|
handler: boolean;
|
|
9147
9173
|
}
|
|
9148
|
-
declare class Autofill extends Component<Props$
|
|
9174
|
+
declare class Autofill extends Component<Props$J, SpreadsheetChildEnv> {
|
|
9149
9175
|
static template: string;
|
|
9150
9176
|
static props: {
|
|
9151
9177
|
position: ObjectConstructor;
|
|
@@ -9185,7 +9211,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
9185
9211
|
get tagStyle(): string;
|
|
9186
9212
|
}
|
|
9187
9213
|
|
|
9188
|
-
interface Props$
|
|
9214
|
+
interface Props$I {
|
|
9189
9215
|
gridDims: DOMDimension;
|
|
9190
9216
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
9191
9217
|
}
|
|
@@ -9193,7 +9219,7 @@ interface Props$H {
|
|
|
9193
9219
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
9194
9220
|
* It also applies the style of the cell to the composer input.
|
|
9195
9221
|
*/
|
|
9196
|
-
declare class GridComposer extends Component<Props$
|
|
9222
|
+
declare class GridComposer extends Component<Props$I, SpreadsheetChildEnv> {
|
|
9197
9223
|
static template: string;
|
|
9198
9224
|
static props: {
|
|
9199
9225
|
gridDims: ObjectConstructor;
|
|
@@ -9251,10 +9277,10 @@ declare class GridCellIcon extends Component<GridCellIconProps, SpreadsheetChild
|
|
|
9251
9277
|
isPositionVisible(position: CellPosition): boolean;
|
|
9252
9278
|
}
|
|
9253
9279
|
|
|
9254
|
-
interface Props$
|
|
9280
|
+
interface Props$H {
|
|
9255
9281
|
cellPosition: CellPosition;
|
|
9256
9282
|
}
|
|
9257
|
-
declare class DataValidationCheckbox extends Component<Props$
|
|
9283
|
+
declare class DataValidationCheckbox extends Component<Props$H, SpreadsheetChildEnv> {
|
|
9258
9284
|
static template: string;
|
|
9259
9285
|
static components: {
|
|
9260
9286
|
Checkbox: typeof Checkbox;
|
|
@@ -9267,10 +9293,10 @@ declare class DataValidationCheckbox extends Component<Props$G, SpreadsheetChild
|
|
|
9267
9293
|
get isDisabled(): boolean;
|
|
9268
9294
|
}
|
|
9269
9295
|
|
|
9270
|
-
interface Props$
|
|
9296
|
+
interface Props$G {
|
|
9271
9297
|
cellPosition: CellPosition;
|
|
9272
9298
|
}
|
|
9273
|
-
declare class DataValidationListIcon extends Component<Props$
|
|
9299
|
+
declare class DataValidationListIcon extends Component<Props$G, SpreadsheetChildEnv> {
|
|
9274
9300
|
static template: string;
|
|
9275
9301
|
static props: {
|
|
9276
9302
|
cellPosition: ObjectConstructor;
|
|
@@ -9300,7 +9326,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
9300
9326
|
}
|
|
9301
9327
|
|
|
9302
9328
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
9303
|
-
interface Props$
|
|
9329
|
+
interface Props$F {
|
|
9304
9330
|
onFigureDeleted: () => void;
|
|
9305
9331
|
}
|
|
9306
9332
|
interface Container {
|
|
@@ -9380,7 +9406,7 @@ interface DndState {
|
|
|
9380
9406
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
9381
9407
|
*
|
|
9382
9408
|
*/
|
|
9383
|
-
declare class FiguresContainer extends Component<Props$
|
|
9409
|
+
declare class FiguresContainer extends Component<Props$F, SpreadsheetChildEnv> {
|
|
9384
9410
|
static template: string;
|
|
9385
9411
|
static props: {
|
|
9386
9412
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -9416,10 +9442,10 @@ declare class FiguresContainer extends Component<Props$E, SpreadsheetChildEnv> {
|
|
|
9416
9442
|
private getSnapLineStyle;
|
|
9417
9443
|
}
|
|
9418
9444
|
|
|
9419
|
-
interface Props$
|
|
9445
|
+
interface Props$E {
|
|
9420
9446
|
cellPosition: CellPosition;
|
|
9421
9447
|
}
|
|
9422
|
-
declare class FilterIcon extends Component<Props$
|
|
9448
|
+
declare class FilterIcon extends Component<Props$E, SpreadsheetChildEnv> {
|
|
9423
9449
|
static template: string;
|
|
9424
9450
|
static props: {
|
|
9425
9451
|
cellPosition: ObjectConstructor;
|
|
@@ -9441,10 +9467,10 @@ declare class FilterIconsOverlay extends Component<{}, SpreadsheetChildEnv> {
|
|
|
9441
9467
|
getFilterHeadersPositions(): CellPosition[];
|
|
9442
9468
|
}
|
|
9443
9469
|
|
|
9444
|
-
interface Props$
|
|
9470
|
+
interface Props$D {
|
|
9445
9471
|
focusGrid: () => void;
|
|
9446
9472
|
}
|
|
9447
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
9473
|
+
declare class GridAddRowsFooter extends Component<Props$D, SpreadsheetChildEnv> {
|
|
9448
9474
|
static template: string;
|
|
9449
9475
|
static props: {
|
|
9450
9476
|
focusGrid: FunctionConstructor;
|
|
@@ -9468,7 +9494,7 @@ declare class GridAddRowsFooter extends Component<Props$C, SpreadsheetChildEnv>
|
|
|
9468
9494
|
private onExternalClick;
|
|
9469
9495
|
}
|
|
9470
9496
|
|
|
9471
|
-
interface Props$
|
|
9497
|
+
interface Props$C {
|
|
9472
9498
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
9473
9499
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, ev: MouseEvent) => void;
|
|
9474
9500
|
onCellRightClicked: (col: HeaderIndex, row: HeaderIndex, coordinates: DOMCoordinates) => void;
|
|
@@ -9477,7 +9503,7 @@ interface Props$B {
|
|
|
9477
9503
|
gridOverlayDimensions: string;
|
|
9478
9504
|
onFigureDeleted: () => void;
|
|
9479
9505
|
}
|
|
9480
|
-
declare class GridOverlay extends Component<Props$
|
|
9506
|
+
declare class GridOverlay extends Component<Props$C, SpreadsheetChildEnv> {
|
|
9481
9507
|
static template: string;
|
|
9482
9508
|
static props: {
|
|
9483
9509
|
onCellDoubleClicked: {
|
|
@@ -9534,12 +9560,12 @@ declare class GridOverlay extends Component<Props$B, SpreadsheetChildEnv> {
|
|
|
9534
9560
|
private getCartesianCoordinates;
|
|
9535
9561
|
}
|
|
9536
9562
|
|
|
9537
|
-
interface Props$
|
|
9563
|
+
interface Props$B {
|
|
9538
9564
|
gridRect: Rect;
|
|
9539
9565
|
onClosePopover: () => void;
|
|
9540
9566
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
9541
9567
|
}
|
|
9542
|
-
declare class GridPopover extends Component<Props$
|
|
9568
|
+
declare class GridPopover extends Component<Props$B, SpreadsheetChildEnv> {
|
|
9543
9569
|
static template: string;
|
|
9544
9570
|
static props: {
|
|
9545
9571
|
onClosePopover: FunctionConstructor;
|
|
@@ -9555,7 +9581,7 @@ declare class GridPopover extends Component<Props$A, SpreadsheetChildEnv> {
|
|
|
9555
9581
|
get cellPopover(): PositionedCellPopoverComponent | ClosedCellPopover;
|
|
9556
9582
|
}
|
|
9557
9583
|
|
|
9558
|
-
interface Props$
|
|
9584
|
+
interface Props$A {
|
|
9559
9585
|
headersGroups: ConsecutiveIndexes[];
|
|
9560
9586
|
offset: number;
|
|
9561
9587
|
headerRange: {
|
|
@@ -9563,7 +9589,7 @@ interface Props$z {
|
|
|
9563
9589
|
end: HeaderIndex;
|
|
9564
9590
|
};
|
|
9565
9591
|
}
|
|
9566
|
-
declare class UnhideRowHeaders extends Component<Props$
|
|
9592
|
+
declare class UnhideRowHeaders extends Component<Props$A, SpreadsheetChildEnv> {
|
|
9567
9593
|
static template: string;
|
|
9568
9594
|
static props: {
|
|
9569
9595
|
headersGroups: ArrayConstructor;
|
|
@@ -9582,7 +9608,7 @@ declare class UnhideRowHeaders extends Component<Props$z, SpreadsheetChildEnv> {
|
|
|
9582
9608
|
unhide(hiddenElements: HeaderIndex[]): void;
|
|
9583
9609
|
isVisible(header: HeaderIndex): boolean;
|
|
9584
9610
|
}
|
|
9585
|
-
declare class UnhideColumnHeaders extends Component<Props$
|
|
9611
|
+
declare class UnhideColumnHeaders extends Component<Props$A, SpreadsheetChildEnv> {
|
|
9586
9612
|
static template: string;
|
|
9587
9613
|
static props: {
|
|
9588
9614
|
headersGroups: ArrayConstructor;
|
|
@@ -9774,13 +9800,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
9774
9800
|
}
|
|
9775
9801
|
|
|
9776
9802
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
9777
|
-
interface Props$
|
|
9803
|
+
interface Props$z {
|
|
9778
9804
|
zone: Zone;
|
|
9779
9805
|
orientation: Orientation$1;
|
|
9780
9806
|
isMoving: boolean;
|
|
9781
9807
|
onMoveHighlight: (ev: PointerEvent) => void;
|
|
9782
9808
|
}
|
|
9783
|
-
declare class Border extends Component<Props$
|
|
9809
|
+
declare class Border extends Component<Props$z, SpreadsheetChildEnv> {
|
|
9784
9810
|
static template: string;
|
|
9785
9811
|
static props: {
|
|
9786
9812
|
zone: ObjectConstructor;
|
|
@@ -9793,14 +9819,14 @@ declare class Border extends Component<Props$y, SpreadsheetChildEnv> {
|
|
|
9793
9819
|
}
|
|
9794
9820
|
|
|
9795
9821
|
type Orientation = "nw" | "ne" | "sw" | "se";
|
|
9796
|
-
interface Props$
|
|
9822
|
+
interface Props$y {
|
|
9797
9823
|
zone: Zone;
|
|
9798
9824
|
color: Color;
|
|
9799
9825
|
orientation: Orientation;
|
|
9800
9826
|
isResizing: boolean;
|
|
9801
9827
|
onResizeHighlight: (ev: PointerEvent, isLeft: boolean, isTop: boolean) => void;
|
|
9802
9828
|
}
|
|
9803
|
-
declare class Corner extends Component<Props$
|
|
9829
|
+
declare class Corner extends Component<Props$y, SpreadsheetChildEnv> {
|
|
9804
9830
|
static template: string;
|
|
9805
9831
|
static props: {
|
|
9806
9832
|
zone: ObjectConstructor;
|
|
@@ -9815,14 +9841,14 @@ declare class Corner extends Component<Props$x, SpreadsheetChildEnv> {
|
|
|
9815
9841
|
onMouseDown(ev: PointerEvent): void;
|
|
9816
9842
|
}
|
|
9817
9843
|
|
|
9818
|
-
interface Props$
|
|
9844
|
+
interface Props$x {
|
|
9819
9845
|
zone: Zone;
|
|
9820
9846
|
color: Color;
|
|
9821
9847
|
}
|
|
9822
9848
|
interface HighlightState {
|
|
9823
9849
|
shiftingMode: "isMoving" | "isResizing" | "none";
|
|
9824
9850
|
}
|
|
9825
|
-
declare class Highlight extends Component<Props$
|
|
9851
|
+
declare class Highlight extends Component<Props$x, SpreadsheetChildEnv> {
|
|
9826
9852
|
static template: string;
|
|
9827
9853
|
static props: {
|
|
9828
9854
|
zone: ObjectConstructor;
|
|
@@ -9845,7 +9871,7 @@ declare class Highlight extends Component<Props$w, SpreadsheetChildEnv> {
|
|
|
9845
9871
|
|
|
9846
9872
|
type ScrollDirection = "horizontal" | "vertical";
|
|
9847
9873
|
|
|
9848
|
-
interface Props$
|
|
9874
|
+
interface Props$w {
|
|
9849
9875
|
width: Pixel;
|
|
9850
9876
|
height: Pixel;
|
|
9851
9877
|
direction: ScrollDirection;
|
|
@@ -9853,7 +9879,7 @@ interface Props$v {
|
|
|
9853
9879
|
offset: Pixel;
|
|
9854
9880
|
onScroll: (offset: Pixel) => void;
|
|
9855
9881
|
}
|
|
9856
|
-
declare class ScrollBar extends Component<Props$
|
|
9882
|
+
declare class ScrollBar extends Component<Props$w> {
|
|
9857
9883
|
static props: {
|
|
9858
9884
|
width: {
|
|
9859
9885
|
type: NumberConstructor;
|
|
@@ -9881,10 +9907,10 @@ declare class ScrollBar extends Component<Props$v> {
|
|
|
9881
9907
|
onScroll(ev: any): void;
|
|
9882
9908
|
}
|
|
9883
9909
|
|
|
9884
|
-
interface Props$
|
|
9910
|
+
interface Props$v {
|
|
9885
9911
|
leftOffset: number;
|
|
9886
9912
|
}
|
|
9887
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
9913
|
+
declare class HorizontalScrollBar extends Component<Props$v, SpreadsheetChildEnv> {
|
|
9888
9914
|
static props: {
|
|
9889
9915
|
leftOffset: {
|
|
9890
9916
|
type: NumberConstructor;
|
|
@@ -9910,10 +9936,10 @@ declare class HorizontalScrollBar extends Component<Props$u, SpreadsheetChildEnv
|
|
|
9910
9936
|
onScroll(offset: any): void;
|
|
9911
9937
|
}
|
|
9912
9938
|
|
|
9913
|
-
interface Props$
|
|
9939
|
+
interface Props$u {
|
|
9914
9940
|
topOffset: number;
|
|
9915
9941
|
}
|
|
9916
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
9942
|
+
declare class VerticalScrollBar extends Component<Props$u, SpreadsheetChildEnv> {
|
|
9917
9943
|
static props: {
|
|
9918
9944
|
topOffset: {
|
|
9919
9945
|
type: NumberConstructor;
|
|
@@ -9939,13 +9965,13 @@ declare class VerticalScrollBar extends Component<Props$t, SpreadsheetChildEnv>
|
|
|
9939
9965
|
onScroll(offset: any): void;
|
|
9940
9966
|
}
|
|
9941
9967
|
|
|
9942
|
-
interface Props$
|
|
9968
|
+
interface Props$t {
|
|
9943
9969
|
table: Table;
|
|
9944
9970
|
}
|
|
9945
9971
|
interface State$2 {
|
|
9946
9972
|
highlightZone: Zone | undefined;
|
|
9947
9973
|
}
|
|
9948
|
-
declare class TableResizer extends Component<Props$
|
|
9974
|
+
declare class TableResizer extends Component<Props$t, SpreadsheetChildEnv> {
|
|
9949
9975
|
static template: string;
|
|
9950
9976
|
static props: {
|
|
9951
9977
|
table: ObjectConstructor;
|
|
@@ -9974,10 +10000,10 @@ declare class TableResizer extends Component<Props$s, SpreadsheetChildEnv> {
|
|
|
9974
10000
|
* - a vertical resizer (same, for rows)
|
|
9975
10001
|
*/
|
|
9976
10002
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
9977
|
-
interface Props$
|
|
10003
|
+
interface Props$s {
|
|
9978
10004
|
exposeFocus: (focus: () => void) => void;
|
|
9979
10005
|
}
|
|
9980
|
-
declare class Grid extends Component<Props$
|
|
10006
|
+
declare class Grid extends Component<Props$s, SpreadsheetChildEnv> {
|
|
9981
10007
|
static template: string;
|
|
9982
10008
|
static props: {
|
|
9983
10009
|
exposeFocus: FunctionConstructor;
|
|
@@ -10088,7 +10114,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
10088
10114
|
private getChartDefinitionFromContextCreation;
|
|
10089
10115
|
}
|
|
10090
10116
|
|
|
10091
|
-
interface Props$
|
|
10117
|
+
interface Props$r {
|
|
10092
10118
|
figureId: UID;
|
|
10093
10119
|
chartPanelStore: MainChartPanelStore;
|
|
10094
10120
|
}
|
|
@@ -10096,7 +10122,7 @@ interface ChartTypePickerState {
|
|
|
10096
10122
|
popoverProps: PopoverProps | undefined;
|
|
10097
10123
|
popoverStyle: string;
|
|
10098
10124
|
}
|
|
10099
|
-
declare class ChartTypePicker extends Component<Props$
|
|
10125
|
+
declare class ChartTypePicker extends Component<Props$r, SpreadsheetChildEnv> {
|
|
10100
10126
|
static template: string;
|
|
10101
10127
|
static components: {
|
|
10102
10128
|
Section: typeof Section;
|
|
@@ -10132,11 +10158,11 @@ declare class ChartTypePicker extends Component<Props$q, SpreadsheetChildEnv> {
|
|
|
10132
10158
|
private closePopover;
|
|
10133
10159
|
}
|
|
10134
10160
|
|
|
10135
|
-
interface Props$
|
|
10161
|
+
interface Props$q {
|
|
10136
10162
|
onCloseSidePanel: () => void;
|
|
10137
10163
|
figureId: UID;
|
|
10138
10164
|
}
|
|
10139
|
-
declare class ChartPanel extends Component<Props$
|
|
10165
|
+
declare class ChartPanel extends Component<Props$q, SpreadsheetChildEnv> {
|
|
10140
10166
|
static template: string;
|
|
10141
10167
|
static components: {
|
|
10142
10168
|
Section: typeof Section;
|
|
@@ -10156,13 +10182,13 @@ declare class ChartPanel extends Component<Props$p, SpreadsheetChildEnv> {
|
|
|
10156
10182
|
private getChartDefinition;
|
|
10157
10183
|
}
|
|
10158
10184
|
|
|
10159
|
-
interface Props$
|
|
10185
|
+
interface Props$p {
|
|
10160
10186
|
figureId: UID;
|
|
10161
10187
|
definition: PieChartDefinition;
|
|
10162
10188
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10163
10189
|
updateChart: (figureId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10164
10190
|
}
|
|
10165
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
10191
|
+
declare class PieChartDesignPanel extends Component<Props$p, SpreadsheetChildEnv> {
|
|
10166
10192
|
static template: string;
|
|
10167
10193
|
static components: {
|
|
10168
10194
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -10181,10 +10207,10 @@ declare class PieChartDesignPanel extends Component<Props$o, SpreadsheetChildEnv
|
|
|
10181
10207
|
};
|
|
10182
10208
|
}
|
|
10183
10209
|
|
|
10184
|
-
interface Props$
|
|
10210
|
+
interface Props$o {
|
|
10185
10211
|
items: ActionSpec[];
|
|
10186
10212
|
}
|
|
10187
|
-
declare class CogWheelMenu extends Component<Props$
|
|
10213
|
+
declare class CogWheelMenu extends Component<Props$o, SpreadsheetChildEnv> {
|
|
10188
10214
|
static template: string;
|
|
10189
10215
|
static components: {
|
|
10190
10216
|
Menu: typeof Menu;
|
|
@@ -10267,14 +10293,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
10267
10293
|
get highlights(): Highlight$1[];
|
|
10268
10294
|
}
|
|
10269
10295
|
|
|
10270
|
-
interface Props$
|
|
10296
|
+
interface Props$n {
|
|
10271
10297
|
deferUpdate: boolean;
|
|
10272
10298
|
isDirty: boolean;
|
|
10273
10299
|
toggleDeferUpdate: (value: boolean) => void;
|
|
10274
10300
|
discard: () => void;
|
|
10275
10301
|
apply: () => void;
|
|
10276
10302
|
}
|
|
10277
|
-
declare class PivotDeferUpdate extends Component<Props$
|
|
10303
|
+
declare class PivotDeferUpdate extends Component<Props$n, SpreadsheetChildEnv> {
|
|
10278
10304
|
static template: string;
|
|
10279
10305
|
static props: {
|
|
10280
10306
|
deferUpdate: BooleanConstructor;
|
|
@@ -10291,11 +10317,11 @@ declare class PivotDeferUpdate extends Component<Props$m, SpreadsheetChildEnv> {
|
|
|
10291
10317
|
get deferUpdatesTooltip(): string;
|
|
10292
10318
|
}
|
|
10293
10319
|
|
|
10294
|
-
interface Props$
|
|
10320
|
+
interface Props$m {
|
|
10295
10321
|
onFieldPicked: (field: string) => void;
|
|
10296
10322
|
fields: PivotField[];
|
|
10297
10323
|
}
|
|
10298
|
-
declare class AddDimensionButton extends Component<Props$
|
|
10324
|
+
declare class AddDimensionButton extends Component<Props$m, SpreadsheetChildEnv> {
|
|
10299
10325
|
static template: string;
|
|
10300
10326
|
static components: {
|
|
10301
10327
|
Popover: typeof Popover;
|
|
@@ -10331,7 +10357,7 @@ declare class AddDimensionButton extends Component<Props$l, SpreadsheetChildEnv>
|
|
|
10331
10357
|
onKeyDown(ev: KeyboardEvent): void;
|
|
10332
10358
|
}
|
|
10333
10359
|
|
|
10334
|
-
interface Props$
|
|
10360
|
+
interface Props$l {
|
|
10335
10361
|
value: string;
|
|
10336
10362
|
onChange: (value: string) => void;
|
|
10337
10363
|
class?: string;
|
|
@@ -10339,7 +10365,7 @@ interface Props$k {
|
|
|
10339
10365
|
placeholder?: string;
|
|
10340
10366
|
autofocus?: boolean;
|
|
10341
10367
|
}
|
|
10342
|
-
declare class TextInput extends Component<Props$
|
|
10368
|
+
declare class TextInput extends Component<Props$l, SpreadsheetChildEnv> {
|
|
10343
10369
|
static template: string;
|
|
10344
10370
|
static props: {
|
|
10345
10371
|
value: StringConstructor;
|
|
@@ -10369,13 +10395,13 @@ declare class TextInput extends Component<Props$k, SpreadsheetChildEnv> {
|
|
|
10369
10395
|
onMouseUp(ev: MouseEvent): void;
|
|
10370
10396
|
}
|
|
10371
10397
|
|
|
10372
|
-
interface Props$
|
|
10398
|
+
interface Props$k {
|
|
10373
10399
|
dimension: PivotCoreDimension | PivotCoreMeasure;
|
|
10374
10400
|
onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
|
|
10375
10401
|
onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
|
|
10376
10402
|
type: "row" | "col" | "measure";
|
|
10377
10403
|
}
|
|
10378
|
-
declare class PivotDimension extends Component<Props$
|
|
10404
|
+
declare class PivotDimension extends Component<Props$k, SpreadsheetChildEnv> {
|
|
10379
10405
|
static template: string;
|
|
10380
10406
|
static props: {
|
|
10381
10407
|
dimension: ObjectConstructor;
|
|
@@ -10399,13 +10425,13 @@ declare class PivotDimension extends Component<Props$j, SpreadsheetChildEnv> {
|
|
|
10399
10425
|
updateName(name: string): void;
|
|
10400
10426
|
}
|
|
10401
10427
|
|
|
10402
|
-
interface Props$
|
|
10428
|
+
interface Props$j {
|
|
10403
10429
|
dimension: PivotDimension$1;
|
|
10404
10430
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10405
10431
|
availableGranularities: Set<string>;
|
|
10406
10432
|
allGranularities: string[];
|
|
10407
10433
|
}
|
|
10408
|
-
declare class PivotDimensionGranularity extends Component<Props$
|
|
10434
|
+
declare class PivotDimensionGranularity extends Component<Props$j, SpreadsheetChildEnv> {
|
|
10409
10435
|
static template: string;
|
|
10410
10436
|
static props: {
|
|
10411
10437
|
dimension: ObjectConstructor;
|
|
@@ -10430,11 +10456,11 @@ declare class PivotDimensionGranularity extends Component<Props$i, SpreadsheetCh
|
|
|
10430
10456
|
};
|
|
10431
10457
|
}
|
|
10432
10458
|
|
|
10433
|
-
interface Props$
|
|
10459
|
+
interface Props$i {
|
|
10434
10460
|
dimension: PivotDimension$1;
|
|
10435
10461
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10436
10462
|
}
|
|
10437
|
-
declare class PivotDimensionOrder extends Component<Props$
|
|
10463
|
+
declare class PivotDimensionOrder extends Component<Props$i, SpreadsheetChildEnv> {
|
|
10438
10464
|
static template: string;
|
|
10439
10465
|
static props: {
|
|
10440
10466
|
dimension: ObjectConstructor;
|
|
@@ -10470,7 +10496,7 @@ declare function createPivotFormula(formulaId: string, cell: PivotTableCell): st
|
|
|
10470
10496
|
declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type" | "displayName" | "granularity">, groupValue: any): CellValue;
|
|
10471
10497
|
declare function toFunctionPivotValue(value: CellValue, dimension: Pick<PivotDimension$1, "type" | "granularity">): string;
|
|
10472
10498
|
|
|
10473
|
-
interface Props$
|
|
10499
|
+
interface Props$h {
|
|
10474
10500
|
pivotId: string;
|
|
10475
10501
|
definition: PivotRuntimeDefinition;
|
|
10476
10502
|
measure: PivotMeasure;
|
|
@@ -10478,7 +10504,7 @@ interface Props$g {
|
|
|
10478
10504
|
onRemoved: () => void;
|
|
10479
10505
|
generateMeasureId: (fieldName: string, aggregator?: string) => string;
|
|
10480
10506
|
}
|
|
10481
|
-
declare class PivotMeasureEditor extends Component<Props$
|
|
10507
|
+
declare class PivotMeasureEditor extends Component<Props$h> {
|
|
10482
10508
|
static template: string;
|
|
10483
10509
|
static components: {
|
|
10484
10510
|
PivotDimension: typeof PivotDimension;
|
|
@@ -10502,11 +10528,11 @@ declare class PivotMeasureEditor extends Component<Props$g> {
|
|
|
10502
10528
|
getColoredSymbolToken(token: Token): Color | undefined;
|
|
10503
10529
|
}
|
|
10504
10530
|
|
|
10505
|
-
interface Props$
|
|
10531
|
+
interface Props$g {
|
|
10506
10532
|
definition: PivotRuntimeDefinition;
|
|
10507
10533
|
pivotId: UID;
|
|
10508
10534
|
}
|
|
10509
|
-
declare class PivotSortSection extends Component<Props$
|
|
10535
|
+
declare class PivotSortSection extends Component<Props$g, SpreadsheetChildEnv> {
|
|
10510
10536
|
static template: string;
|
|
10511
10537
|
static components: {
|
|
10512
10538
|
Section: typeof Section;
|
|
@@ -10523,7 +10549,7 @@ declare class PivotSortSection extends Component<Props$f, SpreadsheetChildEnv> {
|
|
|
10523
10549
|
}[];
|
|
10524
10550
|
}
|
|
10525
10551
|
|
|
10526
|
-
interface Props$
|
|
10552
|
+
interface Props$f {
|
|
10527
10553
|
definition: PivotRuntimeDefinition;
|
|
10528
10554
|
onDimensionsUpdated: (definition: Partial<PivotCoreDefinition>) => void;
|
|
10529
10555
|
unusedGroupableFields: PivotField[];
|
|
@@ -10534,7 +10560,7 @@ interface Props$e {
|
|
|
10534
10560
|
getScrollableContainerEl?: () => HTMLElement;
|
|
10535
10561
|
pivotId: UID;
|
|
10536
10562
|
}
|
|
10537
|
-
declare class PivotLayoutConfigurator extends Component<Props$
|
|
10563
|
+
declare class PivotLayoutConfigurator extends Component<Props$f, SpreadsheetChildEnv> {
|
|
10538
10564
|
static template: string;
|
|
10539
10565
|
static components: {
|
|
10540
10566
|
AddDimensionButton: typeof AddDimensionButton;
|
|
@@ -10624,11 +10650,11 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
10624
10650
|
private shouldKeepSortedColumn;
|
|
10625
10651
|
}
|
|
10626
10652
|
|
|
10627
|
-
interface Props$
|
|
10653
|
+
interface Props$e {
|
|
10628
10654
|
pivotId: UID;
|
|
10629
10655
|
flipAxis: () => void;
|
|
10630
10656
|
}
|
|
10631
|
-
declare class PivotTitleSection extends Component<Props$
|
|
10657
|
+
declare class PivotTitleSection extends Component<Props$e, SpreadsheetChildEnv> {
|
|
10632
10658
|
static template: string;
|
|
10633
10659
|
static components: {
|
|
10634
10660
|
CogWheelMenu: typeof CogWheelMenu;
|
|
@@ -10730,6 +10756,90 @@ declare function getFirstPivotFunction(tokens: Token[]): {
|
|
|
10730
10756
|
*/
|
|
10731
10757
|
declare function getNumberOfPivotFunctions(tokens: Token[]): number;
|
|
10732
10758
|
|
|
10759
|
+
interface PivotDialogColumn {
|
|
10760
|
+
formula: string;
|
|
10761
|
+
value: string;
|
|
10762
|
+
isMissing: boolean;
|
|
10763
|
+
style?: string;
|
|
10764
|
+
span: number;
|
|
10765
|
+
}
|
|
10766
|
+
interface PivotDialogRow {
|
|
10767
|
+
formula: string;
|
|
10768
|
+
value: string;
|
|
10769
|
+
isMissing: boolean;
|
|
10770
|
+
style?: string;
|
|
10771
|
+
}
|
|
10772
|
+
interface PivotDialogValue {
|
|
10773
|
+
formula: string;
|
|
10774
|
+
value: string;
|
|
10775
|
+
isMissing: boolean;
|
|
10776
|
+
}
|
|
10777
|
+
interface Props$d {
|
|
10778
|
+
pivotId: UID;
|
|
10779
|
+
onCellClicked: (formula: string) => void;
|
|
10780
|
+
}
|
|
10781
|
+
interface TableData {
|
|
10782
|
+
columns: PivotDialogColumn[][];
|
|
10783
|
+
rows: PivotDialogRow[];
|
|
10784
|
+
values: PivotDialogValue[][];
|
|
10785
|
+
}
|
|
10786
|
+
declare class PivotHTMLRenderer extends Component<Props$d, SpreadsheetChildEnv> {
|
|
10787
|
+
static template: string;
|
|
10788
|
+
static components: {
|
|
10789
|
+
Checkbox: typeof Checkbox;
|
|
10790
|
+
};
|
|
10791
|
+
static props: {
|
|
10792
|
+
pivotId: StringConstructor;
|
|
10793
|
+
onCellClicked: FunctionConstructor;
|
|
10794
|
+
};
|
|
10795
|
+
private pivot;
|
|
10796
|
+
data: TableData;
|
|
10797
|
+
private state;
|
|
10798
|
+
setup(): void;
|
|
10799
|
+
get tracker(): PivotPresenceTracker | undefined;
|
|
10800
|
+
/**
|
|
10801
|
+
* Retrieve the data to display in the Pivot Table
|
|
10802
|
+
* In the case when showMissingValuesOnly is false, the returned value
|
|
10803
|
+
* is the complete data
|
|
10804
|
+
* In the case when showMissingValuesOnly is true, the returned value is
|
|
10805
|
+
* the data which contains only missing values in the rows and cols. In
|
|
10806
|
+
* the rows, we also return the parent rows of rows which contains missing
|
|
10807
|
+
* values, to give context to the user.
|
|
10808
|
+
*
|
|
10809
|
+
*/
|
|
10810
|
+
getTableData(): TableData;
|
|
10811
|
+
/**
|
|
10812
|
+
* Retrieve the parents of the given row
|
|
10813
|
+
* ex:
|
|
10814
|
+
* Australia
|
|
10815
|
+
* January
|
|
10816
|
+
* February
|
|
10817
|
+
* The parent of "January" is "Australia"
|
|
10818
|
+
*/
|
|
10819
|
+
private addRecursiveRow;
|
|
10820
|
+
/**
|
|
10821
|
+
* Create the columns to be used, based on the indexes of the columns in
|
|
10822
|
+
* which a missing value is present
|
|
10823
|
+
*
|
|
10824
|
+
*/
|
|
10825
|
+
private buildColumnsMissing;
|
|
10826
|
+
/**
|
|
10827
|
+
* Create the rows to be used, based on the indexes of the rows in
|
|
10828
|
+
* which a missing value is present.
|
|
10829
|
+
*/
|
|
10830
|
+
private buildRowsMissing;
|
|
10831
|
+
/**
|
|
10832
|
+
* Create the value to be used, based on the indexes of the columns and
|
|
10833
|
+
* rows in which a missing value is present.
|
|
10834
|
+
*/
|
|
10835
|
+
private buildValuesMissing;
|
|
10836
|
+
private getColumnsIndexes;
|
|
10837
|
+
private getRowsIndexes;
|
|
10838
|
+
_buildColHeaders(id: UID, table: SpreadsheetPivotTable): PivotDialogColumn[][];
|
|
10839
|
+
_buildRowHeaders(id: UID, table: SpreadsheetPivotTable): PivotDialogRow[];
|
|
10840
|
+
_buildValues(id: UID, table: SpreadsheetPivotTable): PivotDialogValue[][];
|
|
10841
|
+
}
|
|
10842
|
+
|
|
10733
10843
|
interface Props$c {
|
|
10734
10844
|
figureId: UID;
|
|
10735
10845
|
definition: ComboChartDefinition;
|
|
@@ -10950,7 +11060,7 @@ declare class HoveredTableStore extends SpreadsheetStore {
|
|
|
10950
11060
|
row: number | undefined;
|
|
10951
11061
|
overlayColors: PositionMap<Color>;
|
|
10952
11062
|
handle(cmd: Command): void;
|
|
10953
|
-
hover(position: Partial<Position$1>):
|
|
11063
|
+
hover(position: Partial<Position$1>): "noStateChange" | undefined;
|
|
10954
11064
|
clear(): void;
|
|
10955
11065
|
private computeOverlay;
|
|
10956
11066
|
}
|
|
@@ -11129,11 +11239,11 @@ interface Renderer {
|
|
|
11129
11239
|
renderingLayers: Readonly<LayerName[]>;
|
|
11130
11240
|
}
|
|
11131
11241
|
declare class RendererStore {
|
|
11132
|
-
mutators: readonly ["register", "unRegister"];
|
|
11242
|
+
mutators: readonly ["register", "unRegister", "drawLayer"];
|
|
11133
11243
|
private renderers;
|
|
11134
11244
|
register(renderer: Renderer): void;
|
|
11135
11245
|
unRegister(renderer: Renderer): void;
|
|
11136
|
-
drawLayer(context: GridRenderingContext, layer: LayerName):
|
|
11246
|
+
drawLayer(context: GridRenderingContext, layer: LayerName): string;
|
|
11137
11247
|
}
|
|
11138
11248
|
|
|
11139
11249
|
interface RippleProps {
|
|
@@ -11778,7 +11888,10 @@ declare const registries: {
|
|
|
11778
11888
|
supportedPivotPositionalFormulaRegistry: Registry<boolean>;
|
|
11779
11889
|
pivotToFunctionValueRegistry: Registry<(value: CellValue, granularity?: string) => string>;
|
|
11780
11890
|
migrationStepRegistry: Registry<MigrationStep>;
|
|
11781
|
-
chartJsExtensionRegistry: Registry<
|
|
11891
|
+
chartJsExtensionRegistry: Registry<{
|
|
11892
|
+
register: (chart: typeof window.Chart) => void;
|
|
11893
|
+
unregister: (chart: typeof window.Chart) => void;
|
|
11894
|
+
}>;
|
|
11782
11895
|
};
|
|
11783
11896
|
declare const helpers: {
|
|
11784
11897
|
arg: typeof arg;
|
|
@@ -11888,6 +12001,7 @@ declare const components: {
|
|
|
11888
12001
|
PivotDimensionOrder: typeof PivotDimensionOrder;
|
|
11889
12002
|
PivotDimension: typeof PivotDimension;
|
|
11890
12003
|
PivotLayoutConfigurator: typeof PivotLayoutConfigurator;
|
|
12004
|
+
PivotHTMLRenderer: typeof PivotHTMLRenderer;
|
|
11891
12005
|
PivotDeferUpdate: typeof PivotDeferUpdate;
|
|
11892
12006
|
PivotTitleSection: typeof PivotTitleSection;
|
|
11893
12007
|
CogWheelMenu: typeof CogWheelMenu;
|
|
@@ -12445,7 +12559,7 @@ declare const chartHelpers: {
|
|
|
12445
12559
|
useLeftAxis: boolean;
|
|
12446
12560
|
useRightAxis: boolean;
|
|
12447
12561
|
};
|
|
12448
|
-
formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string
|
|
12562
|
+
formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string) => any;
|
|
12449
12563
|
formatTickValue(localeFormat: LocaleFormat): (value: any) => any;
|
|
12450
12564
|
getPieColors(colors: ColorGenerator, dataSetsValues: DatasetValues[]): Color[];
|
|
12451
12565
|
truncateLabel(label: string | undefined): string;
|
|
@@ -12477,4 +12591,4 @@ declare const chartHelpers: {
|
|
|
12477
12591
|
WaterfallChart: typeof WaterfallChart;
|
|
12478
12592
|
};
|
|
12479
12593
|
|
|
12480
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
12594
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|