@odoo/o-spreadsheet 18.3.2 → 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 +526 -97
- package/dist/o-spreadsheet.d.ts +269 -160
- package/dist/o-spreadsheet.esm.js +526 -97
- package/dist/o-spreadsheet.iife.js +526 -97
- package/dist/o-spreadsheet.iife.min.js +414 -378
- package/dist/o_spreadsheet.xml +60 -13
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -1190,7 +1190,7 @@ interface SheetData {
|
|
|
1190
1190
|
};
|
|
1191
1191
|
conditionalFormats: ConditionalFormat[];
|
|
1192
1192
|
dataValidationRules: DataValidationRuleData[];
|
|
1193
|
-
tables: TableData[];
|
|
1193
|
+
tables: TableData$1[];
|
|
1194
1194
|
areGridLinesVisible?: boolean;
|
|
1195
1195
|
isVisible: boolean;
|
|
1196
1196
|
panes?: PaneDivision;
|
|
@@ -1250,7 +1250,7 @@ interface ExcelHeaderData extends HeaderData {
|
|
|
1250
1250
|
outlineLevel?: number;
|
|
1251
1251
|
collapsed?: boolean;
|
|
1252
1252
|
}
|
|
1253
|
-
interface TableData {
|
|
1253
|
+
interface TableData$1 {
|
|
1254
1254
|
range: string;
|
|
1255
1255
|
config?: TableConfig;
|
|
1256
1256
|
type?: CoreTableType;
|
|
@@ -2637,12 +2637,12 @@ interface ZoneDependentCommand {
|
|
|
2637
2637
|
zone: Zone;
|
|
2638
2638
|
}
|
|
2639
2639
|
declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
|
|
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">;
|
|
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">;
|
|
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">;
|
|
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">;
|
|
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">;
|
|
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">;
|
|
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">;
|
|
2646
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">;
|
|
2647
2647
|
declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
|
|
2648
2648
|
declare function canExecuteInReadonly(cmd: Command): boolean;
|
|
@@ -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.
|
|
@@ -6061,6 +6068,23 @@ declare class HistoryPlugin extends UIPlugin {
|
|
|
6061
6068
|
private getPossibleRevisionToRepeat;
|
|
6062
6069
|
}
|
|
6063
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
|
+
|
|
6064
6088
|
declare class SplitToColumnsPlugin extends UIPlugin {
|
|
6065
6089
|
static getters: readonly ["getAutomaticSeparator"];
|
|
6066
6090
|
allowDispatch(cmd: Command): CommandResult | CommandResult[];
|
|
@@ -6185,7 +6209,7 @@ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof Head
|
|
|
6185
6209
|
type Getters = {
|
|
6186
6210
|
isReadonly: () => boolean;
|
|
6187
6211
|
isDashboard: () => boolean;
|
|
6188
|
-
} & 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>;
|
|
6189
6213
|
|
|
6190
6214
|
type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
|
|
6191
6215
|
interface ArgDefinition {
|
|
@@ -6507,7 +6531,7 @@ interface ChartShowValuesPluginOptions {
|
|
|
6507
6531
|
showValues: boolean;
|
|
6508
6532
|
background?: Color;
|
|
6509
6533
|
horizontal?: boolean;
|
|
6510
|
-
callback: (value: number | string, axisId
|
|
6534
|
+
callback: (value: number | string, axisId: string) => string;
|
|
6511
6535
|
}
|
|
6512
6536
|
declare module "chart.js" {
|
|
6513
6537
|
interface PluginOptionsByType<TType extends ChartType$1> {
|
|
@@ -6829,7 +6853,7 @@ interface ChartSubtypeProperties {
|
|
|
6829
6853
|
preview: string;
|
|
6830
6854
|
}
|
|
6831
6855
|
|
|
6832
|
-
interface Props$
|
|
6856
|
+
interface Props$1h {
|
|
6833
6857
|
label?: string;
|
|
6834
6858
|
value: boolean;
|
|
6835
6859
|
className?: string;
|
|
@@ -6838,7 +6862,7 @@ interface Props$1g {
|
|
|
6838
6862
|
disabled?: boolean;
|
|
6839
6863
|
onChange: (value: boolean) => void;
|
|
6840
6864
|
}
|
|
6841
|
-
declare class Checkbox extends Component<Props$
|
|
6865
|
+
declare class Checkbox extends Component<Props$1h, SpreadsheetChildEnv> {
|
|
6842
6866
|
static template: string;
|
|
6843
6867
|
static props: {
|
|
6844
6868
|
label: {
|
|
@@ -6873,10 +6897,10 @@ declare class Checkbox extends Component<Props$1g, SpreadsheetChildEnv> {
|
|
|
6873
6897
|
onChange(ev: InputEvent): void;
|
|
6874
6898
|
}
|
|
6875
6899
|
|
|
6876
|
-
interface Props$
|
|
6900
|
+
interface Props$1g {
|
|
6877
6901
|
class?: string;
|
|
6878
6902
|
}
|
|
6879
|
-
declare class Section extends Component<Props$
|
|
6903
|
+
declare class Section extends Component<Props$1g, SpreadsheetChildEnv> {
|
|
6880
6904
|
static template: string;
|
|
6881
6905
|
static props: {
|
|
6882
6906
|
class: {
|
|
@@ -7010,7 +7034,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
7010
7034
|
getIndex(rangeId: number | null): number | null;
|
|
7011
7035
|
}
|
|
7012
7036
|
|
|
7013
|
-
interface Props$
|
|
7037
|
+
interface Props$1f {
|
|
7014
7038
|
ranges: string[];
|
|
7015
7039
|
hasSingleRange?: boolean;
|
|
7016
7040
|
required?: boolean;
|
|
@@ -7035,7 +7059,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
7035
7059
|
* onSelectionChanged is called every time the input value
|
|
7036
7060
|
* changes.
|
|
7037
7061
|
*/
|
|
7038
|
-
declare class SelectionInput extends Component<Props$
|
|
7062
|
+
declare class SelectionInput extends Component<Props$1f, SpreadsheetChildEnv> {
|
|
7039
7063
|
static template: string;
|
|
7040
7064
|
static props: {
|
|
7041
7065
|
ranges: ArrayConstructor;
|
|
@@ -7102,7 +7126,7 @@ declare class SelectionInput extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
|
7102
7126
|
confirm(): void;
|
|
7103
7127
|
}
|
|
7104
7128
|
|
|
7105
|
-
interface Props$
|
|
7129
|
+
interface Props$1e {
|
|
7106
7130
|
ranges: CustomizedDataSet[];
|
|
7107
7131
|
hasSingleRange?: boolean;
|
|
7108
7132
|
onSelectionChanged: (ranges: string[]) => void;
|
|
@@ -7111,7 +7135,7 @@ interface Props$1d {
|
|
|
7111
7135
|
onSelectionConfirmed: () => void;
|
|
7112
7136
|
title?: string;
|
|
7113
7137
|
}
|
|
7114
|
-
declare class ChartDataSeries extends Component<Props$
|
|
7138
|
+
declare class ChartDataSeries extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
7115
7139
|
static template: string;
|
|
7116
7140
|
static components: {
|
|
7117
7141
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7143,12 +7167,12 @@ declare class ChartDataSeries extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
|
7143
7167
|
get title(): string;
|
|
7144
7168
|
}
|
|
7145
7169
|
|
|
7146
|
-
interface Props$
|
|
7170
|
+
interface Props$1d {
|
|
7147
7171
|
messages: string[];
|
|
7148
7172
|
msgType: "warning" | "error" | "info";
|
|
7149
7173
|
singleBox?: boolean;
|
|
7150
7174
|
}
|
|
7151
|
-
declare class ValidationMessages extends Component<Props$
|
|
7175
|
+
declare class ValidationMessages extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
7152
7176
|
static template: string;
|
|
7153
7177
|
static props: {
|
|
7154
7178
|
messages: ArrayConstructor;
|
|
@@ -7162,10 +7186,10 @@ declare class ValidationMessages extends Component<Props$1c, SpreadsheetChildEnv
|
|
|
7162
7186
|
get alertBoxes(): string[][];
|
|
7163
7187
|
}
|
|
7164
7188
|
|
|
7165
|
-
interface Props$
|
|
7189
|
+
interface Props$1c {
|
|
7166
7190
|
messages: string[];
|
|
7167
7191
|
}
|
|
7168
|
-
declare class ChartErrorSection extends Component<Props$
|
|
7192
|
+
declare class ChartErrorSection extends Component<Props$1c, SpreadsheetChildEnv> {
|
|
7169
7193
|
static template: string;
|
|
7170
7194
|
static components: {
|
|
7171
7195
|
Section: typeof Section;
|
|
@@ -7179,7 +7203,7 @@ declare class ChartErrorSection extends Component<Props$1b, SpreadsheetChildEnv>
|
|
|
7179
7203
|
};
|
|
7180
7204
|
}
|
|
7181
7205
|
|
|
7182
|
-
interface Props$
|
|
7206
|
+
interface Props$1b {
|
|
7183
7207
|
title?: string;
|
|
7184
7208
|
range: string;
|
|
7185
7209
|
isInvalid: boolean;
|
|
@@ -7192,7 +7216,7 @@ interface Props$1a {
|
|
|
7192
7216
|
onChange: (value: boolean) => void;
|
|
7193
7217
|
}>;
|
|
7194
7218
|
}
|
|
7195
|
-
declare class ChartLabelRange extends Component<Props$
|
|
7219
|
+
declare class ChartLabelRange extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
7196
7220
|
static template: string;
|
|
7197
7221
|
static components: {
|
|
7198
7222
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7213,10 +7237,10 @@ declare class ChartLabelRange extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
|
7213
7237
|
optional: boolean;
|
|
7214
7238
|
};
|
|
7215
7239
|
};
|
|
7216
|
-
static defaultProps: Partial<Props$
|
|
7240
|
+
static defaultProps: Partial<Props$1b>;
|
|
7217
7241
|
}
|
|
7218
7242
|
|
|
7219
|
-
interface Props$
|
|
7243
|
+
interface Props$1a {
|
|
7220
7244
|
figureId: UID;
|
|
7221
7245
|
definition: ChartWithDataSetDefinition;
|
|
7222
7246
|
canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
@@ -7226,7 +7250,7 @@ interface ChartPanelState {
|
|
|
7226
7250
|
datasetDispatchResult?: DispatchResult;
|
|
7227
7251
|
labelsDispatchResult?: DispatchResult;
|
|
7228
7252
|
}
|
|
7229
|
-
declare class GenericChartConfigPanel extends Component<Props$
|
|
7253
|
+
declare class GenericChartConfigPanel extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
7230
7254
|
static template: string;
|
|
7231
7255
|
static components: {
|
|
7232
7256
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -7288,11 +7312,11 @@ declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
|
7288
7312
|
onUpdateStacked(stacked: boolean): void;
|
|
7289
7313
|
}
|
|
7290
7314
|
|
|
7291
|
-
interface Props$
|
|
7315
|
+
interface Props$19 {
|
|
7292
7316
|
isCollapsed: boolean;
|
|
7293
7317
|
slots: any;
|
|
7294
7318
|
}
|
|
7295
|
-
declare class Collapse extends Component<Props$
|
|
7319
|
+
declare class Collapse extends Component<Props$19, SpreadsheetChildEnv> {
|
|
7296
7320
|
static template: string;
|
|
7297
7321
|
static props: {
|
|
7298
7322
|
isCollapsed: BooleanConstructor;
|
|
@@ -7331,12 +7355,12 @@ interface Choice$1 {
|
|
|
7331
7355
|
value: string;
|
|
7332
7356
|
label: string;
|
|
7333
7357
|
}
|
|
7334
|
-
interface Props$
|
|
7358
|
+
interface Props$18 {
|
|
7335
7359
|
choices: Choice$1[];
|
|
7336
7360
|
onChange: (value: string) => void;
|
|
7337
7361
|
selectedValue: string;
|
|
7338
7362
|
}
|
|
7339
|
-
declare class BadgeSelection extends Component<Props$
|
|
7363
|
+
declare class BadgeSelection extends Component<Props$18, SpreadsheetChildEnv> {
|
|
7340
7364
|
static template: string;
|
|
7341
7365
|
static props: {
|
|
7342
7366
|
choices: ArrayConstructor;
|
|
@@ -7345,14 +7369,14 @@ declare class BadgeSelection extends Component<Props$17, SpreadsheetChildEnv> {
|
|
|
7345
7369
|
};
|
|
7346
7370
|
}
|
|
7347
7371
|
|
|
7348
|
-
interface Props$
|
|
7372
|
+
interface Props$17 {
|
|
7349
7373
|
action: ActionSpec;
|
|
7350
7374
|
hasTriangleDownIcon?: boolean;
|
|
7351
7375
|
selectedColor?: string;
|
|
7352
7376
|
class?: string;
|
|
7353
7377
|
onClick?: (ev: MouseEvent) => void;
|
|
7354
7378
|
}
|
|
7355
|
-
declare class ActionButton extends Component<Props$
|
|
7379
|
+
declare class ActionButton extends Component<Props$17, SpreadsheetChildEnv> {
|
|
7356
7380
|
static template: string;
|
|
7357
7381
|
static props: {
|
|
7358
7382
|
action: ObjectConstructor;
|
|
@@ -7537,7 +7561,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7537
7561
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
7538
7562
|
}
|
|
7539
7563
|
|
|
7540
|
-
interface Props$
|
|
7564
|
+
interface Props$16 {
|
|
7541
7565
|
currentColor: string | undefined;
|
|
7542
7566
|
toggleColorPicker: () => void;
|
|
7543
7567
|
showColorPicker: boolean;
|
|
@@ -7548,7 +7572,7 @@ interface Props$15 {
|
|
|
7548
7572
|
dropdownMaxHeight?: Pixel;
|
|
7549
7573
|
class?: string;
|
|
7550
7574
|
}
|
|
7551
|
-
declare class ColorPickerWidget extends Component<Props$
|
|
7575
|
+
declare class ColorPickerWidget extends Component<Props$16, SpreadsheetChildEnv> {
|
|
7552
7576
|
static template: string;
|
|
7553
7577
|
static props: {
|
|
7554
7578
|
currentColor: {
|
|
@@ -7599,7 +7623,7 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7599
7623
|
};
|
|
7600
7624
|
handle(cmd: Command): void;
|
|
7601
7625
|
open({ col, row }: Position$1, type: CellPopoverType): void;
|
|
7602
|
-
close():
|
|
7626
|
+
close(): "noStateChange" | undefined;
|
|
7603
7627
|
get persistentCellPopover(): OpenCellPopover | ClosedCellPopover;
|
|
7604
7628
|
get isOpen(): boolean;
|
|
7605
7629
|
get cellPopover(): ClosedCellPopover | PositionedCellPopoverComponent;
|
|
@@ -7609,14 +7633,14 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7609
7633
|
interface State$4 {
|
|
7610
7634
|
isOpen: boolean;
|
|
7611
7635
|
}
|
|
7612
|
-
interface Props$
|
|
7636
|
+
interface Props$15 {
|
|
7613
7637
|
currentFontSize: number;
|
|
7614
7638
|
class: string;
|
|
7615
7639
|
onFontSizeChanged: (fontSize: number) => void;
|
|
7616
7640
|
onToggle?: () => void;
|
|
7617
7641
|
onFocusInput?: () => void;
|
|
7618
7642
|
}
|
|
7619
|
-
declare class FontSizeEditor extends Component<Props$
|
|
7643
|
+
declare class FontSizeEditor extends Component<Props$15, SpreadsheetChildEnv> {
|
|
7620
7644
|
static template: string;
|
|
7621
7645
|
static props: {
|
|
7622
7646
|
currentFontSize: NumberConstructor;
|
|
@@ -7654,7 +7678,7 @@ declare class FontSizeEditor extends Component<Props$14, SpreadsheetChildEnv> {
|
|
|
7654
7678
|
onInputKeydown(ev: KeyboardEvent): void;
|
|
7655
7679
|
}
|
|
7656
7680
|
|
|
7657
|
-
interface Props$
|
|
7681
|
+
interface Props$14 {
|
|
7658
7682
|
class?: string;
|
|
7659
7683
|
style: ChartStyle;
|
|
7660
7684
|
updateStyle: (style: ChartStyle) => void;
|
|
@@ -7663,7 +7687,7 @@ interface Props$13 {
|
|
|
7663
7687
|
hasHorizontalAlign?: boolean;
|
|
7664
7688
|
hasBackgroundColor?: boolean;
|
|
7665
7689
|
}
|
|
7666
|
-
declare class TextStyler extends Component<Props$
|
|
7690
|
+
declare class TextStyler extends Component<Props$14, SpreadsheetChildEnv> {
|
|
7667
7691
|
static template: string;
|
|
7668
7692
|
static components: {
|
|
7669
7693
|
ColorPickerWidget: typeof ColorPickerWidget;
|
|
@@ -7731,7 +7755,7 @@ declare class TextStyler extends Component<Props$13, SpreadsheetChildEnv> {
|
|
|
7731
7755
|
get verticalAlignActions(): ActionSpec[];
|
|
7732
7756
|
}
|
|
7733
7757
|
|
|
7734
|
-
interface Props$
|
|
7758
|
+
interface Props$13 {
|
|
7735
7759
|
title?: string;
|
|
7736
7760
|
updateTitle: (title: string) => void;
|
|
7737
7761
|
name?: string;
|
|
@@ -7739,7 +7763,7 @@ interface Props$12 {
|
|
|
7739
7763
|
defaultStyle?: Partial<TitleDesign>;
|
|
7740
7764
|
updateStyle: (style: TitleDesign) => void;
|
|
7741
7765
|
}
|
|
7742
|
-
declare class ChartTitle extends Component<Props$
|
|
7766
|
+
declare class ChartTitle extends Component<Props$13, SpreadsheetChildEnv> {
|
|
7743
7767
|
static template: string;
|
|
7744
7768
|
static components: {
|
|
7745
7769
|
Section: typeof Section;
|
|
@@ -7772,13 +7796,13 @@ interface AxisDefinition {
|
|
|
7772
7796
|
id: string;
|
|
7773
7797
|
name: string;
|
|
7774
7798
|
}
|
|
7775
|
-
interface Props$
|
|
7799
|
+
interface Props$12 {
|
|
7776
7800
|
figureId: UID;
|
|
7777
7801
|
definition: ChartWithAxisDefinition;
|
|
7778
7802
|
updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
7779
7803
|
axesList: AxisDefinition[];
|
|
7780
7804
|
}
|
|
7781
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
7805
|
+
declare class AxisDesignEditor extends Component<Props$12, SpreadsheetChildEnv> {
|
|
7782
7806
|
static template: string;
|
|
7783
7807
|
static components: {
|
|
7784
7808
|
Section: typeof Section;
|
|
@@ -7810,14 +7834,14 @@ interface Choice {
|
|
|
7810
7834
|
value: unknown;
|
|
7811
7835
|
label: string;
|
|
7812
7836
|
}
|
|
7813
|
-
interface Props$
|
|
7837
|
+
interface Props$11 {
|
|
7814
7838
|
choices: Choice[];
|
|
7815
7839
|
onChange: (value: unknown) => void;
|
|
7816
7840
|
selectedValue: string;
|
|
7817
7841
|
name: string;
|
|
7818
7842
|
direction: "horizontal" | "vertical";
|
|
7819
7843
|
}
|
|
7820
|
-
declare class RadioSelection extends Component<Props$
|
|
7844
|
+
declare class RadioSelection extends Component<Props$11, SpreadsheetChildEnv> {
|
|
7821
7845
|
static template: string;
|
|
7822
7846
|
static props: {
|
|
7823
7847
|
choices: ArrayConstructor;
|
|
@@ -7836,13 +7860,13 @@ declare class RadioSelection extends Component<Props$10, SpreadsheetChildEnv> {
|
|
|
7836
7860
|
};
|
|
7837
7861
|
}
|
|
7838
7862
|
|
|
7839
|
-
interface Props
|
|
7863
|
+
interface Props$10 {
|
|
7840
7864
|
currentColor?: string;
|
|
7841
7865
|
onColorPicked: (color: string) => void;
|
|
7842
7866
|
title?: string;
|
|
7843
7867
|
disableNoColor?: boolean;
|
|
7844
7868
|
}
|
|
7845
|
-
declare class RoundColorPicker extends Component<Props
|
|
7869
|
+
declare class RoundColorPicker extends Component<Props$10, SpreadsheetChildEnv> {
|
|
7846
7870
|
static template: string;
|
|
7847
7871
|
static components: {
|
|
7848
7872
|
Section: typeof Section;
|
|
@@ -7875,13 +7899,13 @@ declare class RoundColorPicker extends Component<Props$$, SpreadsheetChildEnv> {
|
|
|
7875
7899
|
get buttonStyle(): string;
|
|
7876
7900
|
}
|
|
7877
7901
|
|
|
7878
|
-
interface Props
|
|
7902
|
+
interface Props$$ {
|
|
7879
7903
|
figureId: UID;
|
|
7880
7904
|
definition: ChartDefinition;
|
|
7881
7905
|
updateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
7882
7906
|
defaultChartTitleFontSize?: number;
|
|
7883
7907
|
}
|
|
7884
|
-
declare class GeneralDesignEditor extends Component<Props
|
|
7908
|
+
declare class GeneralDesignEditor extends Component<Props$$, SpreadsheetChildEnv> {
|
|
7885
7909
|
static template: string;
|
|
7886
7910
|
static components: {
|
|
7887
7911
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -7915,12 +7939,12 @@ declare class GeneralDesignEditor extends Component<Props$_, SpreadsheetChildEnv
|
|
|
7915
7939
|
updateChartTitleStyle(style: TitleDesign): void;
|
|
7916
7940
|
}
|
|
7917
7941
|
|
|
7918
|
-
interface Props$
|
|
7942
|
+
interface Props$_ {
|
|
7919
7943
|
figureId: UID;
|
|
7920
7944
|
definition: ChartWithDataSetDefinition;
|
|
7921
7945
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7922
7946
|
}
|
|
7923
|
-
declare class ChartLegend extends Component<Props$
|
|
7947
|
+
declare class ChartLegend extends Component<Props$_, SpreadsheetChildEnv> {
|
|
7924
7948
|
static template: string;
|
|
7925
7949
|
static components: {
|
|
7926
7950
|
Section: typeof Section;
|
|
@@ -7933,13 +7957,13 @@ declare class ChartLegend extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
|
7933
7957
|
updateLegendPosition(ev: any): void;
|
|
7934
7958
|
}
|
|
7935
7959
|
|
|
7936
|
-
interface Props$
|
|
7960
|
+
interface Props$Z {
|
|
7937
7961
|
figureId: UID;
|
|
7938
7962
|
definition: ChartWithDataSetDefinition;
|
|
7939
7963
|
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7940
7964
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7941
7965
|
}
|
|
7942
|
-
declare class SeriesDesignEditor extends Component<Props$
|
|
7966
|
+
declare class SeriesDesignEditor extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
7943
7967
|
static template: string;
|
|
7944
7968
|
static components: {
|
|
7945
7969
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -7967,13 +7991,13 @@ declare class SeriesDesignEditor extends Component<Props$Y, SpreadsheetChildEnv>
|
|
|
7967
7991
|
getDataSeriesLabel(): string | undefined;
|
|
7968
7992
|
}
|
|
7969
7993
|
|
|
7970
|
-
interface Props$
|
|
7994
|
+
interface Props$Y {
|
|
7971
7995
|
figureId: UID;
|
|
7972
7996
|
definition: ChartWithDataSetDefinition;
|
|
7973
7997
|
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7974
7998
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7975
7999
|
}
|
|
7976
|
-
declare class SeriesWithAxisDesignEditor extends Component<Props$
|
|
8000
|
+
declare class SeriesWithAxisDesignEditor extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
7977
8001
|
static template: string;
|
|
7978
8002
|
static components: {
|
|
7979
8003
|
SeriesDesignEditor: typeof SeriesDesignEditor;
|
|
@@ -8014,13 +8038,13 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$X, SpreadsheetC
|
|
|
8014
8038
|
updateTrendLineValue(index: number, config: any): void;
|
|
8015
8039
|
}
|
|
8016
8040
|
|
|
8017
|
-
interface Props$
|
|
8041
|
+
interface Props$X {
|
|
8018
8042
|
figureId: UID;
|
|
8019
8043
|
definition: ChartWithDataSetDefinition;
|
|
8020
8044
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8021
8045
|
updateChart: (figureId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8022
8046
|
}
|
|
8023
|
-
declare class ChartWithAxisDesignPanel<P extends Props$
|
|
8047
|
+
declare class ChartWithAxisDesignPanel<P extends Props$X = Props$X> extends Component<P, SpreadsheetChildEnv> {
|
|
8024
8048
|
static template: string;
|
|
8025
8049
|
static components: {
|
|
8026
8050
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -8040,13 +8064,13 @@ declare class ChartWithAxisDesignPanel<P extends Props$W = Props$W> extends Comp
|
|
|
8040
8064
|
get axesList(): AxisDefinition[];
|
|
8041
8065
|
}
|
|
8042
8066
|
|
|
8043
|
-
interface Props$
|
|
8067
|
+
interface Props$W {
|
|
8044
8068
|
figureId: UID;
|
|
8045
8069
|
definition: GaugeChartDefinition;
|
|
8046
8070
|
canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8047
8071
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8048
8072
|
}
|
|
8049
|
-
declare class GaugeChartConfigPanel extends Component<Props$
|
|
8073
|
+
declare class GaugeChartConfigPanel extends Component<Props$W, SpreadsheetChildEnv> {
|
|
8050
8074
|
static template: string;
|
|
8051
8075
|
static components: {
|
|
8052
8076
|
ChartErrorSection: typeof ChartErrorSection;
|
|
@@ -8111,13 +8135,13 @@ interface EnrichedToken extends Token {
|
|
|
8111
8135
|
isInHoverContext?: boolean;
|
|
8112
8136
|
}
|
|
8113
8137
|
|
|
8114
|
-
interface Props$
|
|
8138
|
+
interface Props$V {
|
|
8115
8139
|
proposals: AutoCompleteProposal[];
|
|
8116
8140
|
selectedIndex: number | undefined;
|
|
8117
8141
|
onValueSelected: (value: string) => void;
|
|
8118
8142
|
onValueHovered: (index: string) => void;
|
|
8119
8143
|
}
|
|
8120
|
-
declare class TextValueProvider extends Component<Props$
|
|
8144
|
+
declare class TextValueProvider extends Component<Props$V> {
|
|
8121
8145
|
static template: string;
|
|
8122
8146
|
static props: {
|
|
8123
8147
|
proposals: ArrayConstructor;
|
|
@@ -8184,11 +8208,11 @@ declare class ContentEditableHelper {
|
|
|
8184
8208
|
getText(): string;
|
|
8185
8209
|
}
|
|
8186
8210
|
|
|
8187
|
-
interface Props$
|
|
8211
|
+
interface Props$U {
|
|
8188
8212
|
functionDescription: FunctionDescription;
|
|
8189
8213
|
argsToFocus: number[];
|
|
8190
8214
|
}
|
|
8191
|
-
declare class FunctionDescriptionProvider extends Component<Props$
|
|
8215
|
+
declare class FunctionDescriptionProvider extends Component<Props$U, SpreadsheetChildEnv> {
|
|
8192
8216
|
static template: string;
|
|
8193
8217
|
static props: {
|
|
8194
8218
|
functionDescription: ObjectConstructor;
|
|
@@ -8199,15 +8223,15 @@ declare class FunctionDescriptionProvider extends Component<Props$T, Spreadsheet
|
|
|
8199
8223
|
};
|
|
8200
8224
|
private state;
|
|
8201
8225
|
toggle(): void;
|
|
8202
|
-
getContext(): Props$
|
|
8226
|
+
getContext(): Props$U;
|
|
8203
8227
|
get formulaArgSeparator(): string;
|
|
8204
8228
|
}
|
|
8205
8229
|
|
|
8206
|
-
interface Props$
|
|
8230
|
+
interface Props$T {
|
|
8207
8231
|
anchorRect: Rect;
|
|
8208
8232
|
content: string;
|
|
8209
8233
|
}
|
|
8210
|
-
declare class SpeechBubble extends Component<Props$
|
|
8234
|
+
declare class SpeechBubble extends Component<Props$T, SpreadsheetChildEnv> {
|
|
8211
8235
|
static template: string;
|
|
8212
8236
|
static props: {
|
|
8213
8237
|
content: StringConstructor;
|
|
@@ -8645,7 +8669,7 @@ declare class MenuItemRegistry extends Registry<ActionSpec> {
|
|
|
8645
8669
|
getMenuItems(): Action[];
|
|
8646
8670
|
}
|
|
8647
8671
|
|
|
8648
|
-
interface Props$
|
|
8672
|
+
interface Props$S {
|
|
8649
8673
|
onConfirm: (content: string) => void;
|
|
8650
8674
|
composerContent: string;
|
|
8651
8675
|
defaultRangeSheetId: UID;
|
|
@@ -8657,7 +8681,7 @@ interface Props$R {
|
|
|
8657
8681
|
invalid?: boolean;
|
|
8658
8682
|
getContextualColoredSymbolToken?: (token: Token) => Color;
|
|
8659
8683
|
}
|
|
8660
|
-
declare class StandaloneComposer extends Component<Props$
|
|
8684
|
+
declare class StandaloneComposer extends Component<Props$S, SpreadsheetChildEnv> {
|
|
8661
8685
|
static template: string;
|
|
8662
8686
|
static props: {
|
|
8663
8687
|
composerContent: {
|
|
@@ -8720,13 +8744,13 @@ interface PanelState {
|
|
|
8720
8744
|
sectionRuleCancelledReasons?: CommandResult[];
|
|
8721
8745
|
sectionRule: SectionRule;
|
|
8722
8746
|
}
|
|
8723
|
-
interface Props$
|
|
8747
|
+
interface Props$R {
|
|
8724
8748
|
figureId: UID;
|
|
8725
8749
|
definition: GaugeChartDefinition;
|
|
8726
8750
|
canUpdateChart: (figureID: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8727
8751
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8728
8752
|
}
|
|
8729
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
8753
|
+
declare class GaugeChartDesignPanel extends Component<Props$R, SpreadsheetChildEnv> {
|
|
8730
8754
|
static template: string;
|
|
8731
8755
|
static components: {
|
|
8732
8756
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -8776,13 +8800,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
8776
8800
|
onUpdateCumulative(cumulative: boolean): void;
|
|
8777
8801
|
}
|
|
8778
8802
|
|
|
8779
|
-
interface Props$
|
|
8803
|
+
interface Props$Q {
|
|
8780
8804
|
figureId: UID;
|
|
8781
8805
|
definition: ScorecardChartDefinition;
|
|
8782
8806
|
canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8783
8807
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8784
8808
|
}
|
|
8785
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
8809
|
+
declare class ScorecardChartConfigPanel extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
8786
8810
|
static template: string;
|
|
8787
8811
|
static components: {
|
|
8788
8812
|
SelectionInput: typeof SelectionInput;
|
|
@@ -8811,13 +8835,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$P, SpreadsheetCh
|
|
|
8811
8835
|
}
|
|
8812
8836
|
|
|
8813
8837
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
8814
|
-
interface Props$
|
|
8838
|
+
interface Props$P {
|
|
8815
8839
|
figureId: UID;
|
|
8816
8840
|
definition: ScorecardChartDefinition;
|
|
8817
8841
|
canUpdateChart: (figureID: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8818
8842
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
8819
8843
|
}
|
|
8820
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
8844
|
+
declare class ScorecardChartDesignPanel extends Component<Props$P, SpreadsheetChildEnv> {
|
|
8821
8845
|
static template: string;
|
|
8822
8846
|
static components: {
|
|
8823
8847
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -8908,18 +8932,18 @@ declare class ComposerFocusStore extends SpreadsheetStore {
|
|
|
8908
8932
|
activeComposer: ComposerInterface;
|
|
8909
8933
|
private _focusMode;
|
|
8910
8934
|
get focusMode(): ComposerFocusType;
|
|
8911
|
-
focusComposer(listener: ComposerInterface, args: Args):
|
|
8912
|
-
focusActiveComposer(args: Args):
|
|
8935
|
+
focusComposer(listener: ComposerInterface, args: Args): "noStateChange" | undefined;
|
|
8936
|
+
focusActiveComposer(args: Args): "noStateChange" | undefined;
|
|
8913
8937
|
/**
|
|
8914
8938
|
* Start the edition or update the content if it's already started.
|
|
8915
8939
|
*/
|
|
8916
8940
|
private setComposerContent;
|
|
8917
8941
|
}
|
|
8918
8942
|
|
|
8919
|
-
interface Props$
|
|
8943
|
+
interface Props$O {
|
|
8920
8944
|
figureUI: FigureUI;
|
|
8921
8945
|
}
|
|
8922
|
-
declare class ChartJsComponent extends Component<Props$
|
|
8946
|
+
declare class ChartJsComponent extends Component<Props$O, SpreadsheetChildEnv> {
|
|
8923
8947
|
static template: string;
|
|
8924
8948
|
static props: {
|
|
8925
8949
|
figureUI: ObjectConstructor;
|
|
@@ -8936,10 +8960,10 @@ declare class ChartJsComponent extends Component<Props$N, SpreadsheetChildEnv> {
|
|
|
8936
8960
|
private updateChartJs;
|
|
8937
8961
|
}
|
|
8938
8962
|
|
|
8939
|
-
interface Props$
|
|
8963
|
+
interface Props$N {
|
|
8940
8964
|
figureUI: FigureUI;
|
|
8941
8965
|
}
|
|
8942
|
-
declare class ScorecardChart$1 extends Component<Props$
|
|
8966
|
+
declare class ScorecardChart$1 extends Component<Props$N, SpreadsheetChildEnv> {
|
|
8943
8967
|
static template: string;
|
|
8944
8968
|
static props: {
|
|
8945
8969
|
figureUI: ObjectConstructor;
|
|
@@ -8952,7 +8976,7 @@ declare class ScorecardChart$1 extends Component<Props$M, SpreadsheetChildEnv> {
|
|
|
8952
8976
|
}
|
|
8953
8977
|
|
|
8954
8978
|
type MenuItemOrSeparator = Action | "separator";
|
|
8955
|
-
interface Props$
|
|
8979
|
+
interface Props$M {
|
|
8956
8980
|
anchorRect: Rect;
|
|
8957
8981
|
popoverPositioning: PopoverPropsPosition;
|
|
8958
8982
|
menuItems: Action[];
|
|
@@ -8972,7 +8996,7 @@ interface MenuState {
|
|
|
8972
8996
|
menuItems: Action[];
|
|
8973
8997
|
isHoveringChild?: boolean;
|
|
8974
8998
|
}
|
|
8975
|
-
declare class Menu extends Component<Props$
|
|
8999
|
+
declare class Menu extends Component<Props$M, SpreadsheetChildEnv> {
|
|
8976
9000
|
static template: string;
|
|
8977
9001
|
static props: {
|
|
8978
9002
|
anchorRect: ObjectConstructor;
|
|
@@ -9053,14 +9077,14 @@ declare class Menu extends Component<Props$L, SpreadsheetChildEnv> {
|
|
|
9053
9077
|
}
|
|
9054
9078
|
|
|
9055
9079
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
9056
|
-
interface Props$
|
|
9080
|
+
interface Props$L {
|
|
9057
9081
|
figureUI: FigureUI;
|
|
9058
9082
|
style: string;
|
|
9059
9083
|
onFigureDeleted: () => void;
|
|
9060
9084
|
onMouseDown: (ev: MouseEvent) => void;
|
|
9061
9085
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
9062
9086
|
}
|
|
9063
|
-
declare class FigureComponent extends Component<Props$
|
|
9087
|
+
declare class FigureComponent extends Component<Props$L, SpreadsheetChildEnv> {
|
|
9064
9088
|
static template: string;
|
|
9065
9089
|
static props: {
|
|
9066
9090
|
figureUI: ObjectConstructor;
|
|
@@ -9110,11 +9134,11 @@ declare class FigureComponent extends Component<Props$K, SpreadsheetChildEnv> {
|
|
|
9110
9134
|
private openContextMenu;
|
|
9111
9135
|
}
|
|
9112
9136
|
|
|
9113
|
-
interface Props$
|
|
9137
|
+
interface Props$K {
|
|
9114
9138
|
figureUI: FigureUI;
|
|
9115
9139
|
onFigureDeleted: () => void;
|
|
9116
9140
|
}
|
|
9117
|
-
declare class ChartFigure extends Component<Props$
|
|
9141
|
+
declare class ChartFigure extends Component<Props$K, SpreadsheetChildEnv> {
|
|
9118
9142
|
static template: string;
|
|
9119
9143
|
static props: {
|
|
9120
9144
|
figureUI: ObjectConstructor;
|
|
@@ -9131,11 +9155,11 @@ declare class DelayedHoveredCellStore extends SpreadsheetStore {
|
|
|
9131
9155
|
col: number | undefined;
|
|
9132
9156
|
row: number | undefined;
|
|
9133
9157
|
handle(cmd: Command): void;
|
|
9134
|
-
hover(position: Partial<Position$1>):
|
|
9135
|
-
clear():
|
|
9158
|
+
hover(position: Partial<Position$1>): "noStateChange" | undefined;
|
|
9159
|
+
clear(): "noStateChange" | undefined;
|
|
9136
9160
|
}
|
|
9137
9161
|
|
|
9138
|
-
interface Props$
|
|
9162
|
+
interface Props$J {
|
|
9139
9163
|
isVisible: boolean;
|
|
9140
9164
|
position: Position;
|
|
9141
9165
|
}
|
|
@@ -9147,7 +9171,7 @@ interface State$3 {
|
|
|
9147
9171
|
position: Position;
|
|
9148
9172
|
handler: boolean;
|
|
9149
9173
|
}
|
|
9150
|
-
declare class Autofill extends Component<Props$
|
|
9174
|
+
declare class Autofill extends Component<Props$J, SpreadsheetChildEnv> {
|
|
9151
9175
|
static template: string;
|
|
9152
9176
|
static props: {
|
|
9153
9177
|
position: ObjectConstructor;
|
|
@@ -9187,7 +9211,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
9187
9211
|
get tagStyle(): string;
|
|
9188
9212
|
}
|
|
9189
9213
|
|
|
9190
|
-
interface Props$
|
|
9214
|
+
interface Props$I {
|
|
9191
9215
|
gridDims: DOMDimension;
|
|
9192
9216
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
9193
9217
|
}
|
|
@@ -9195,7 +9219,7 @@ interface Props$H {
|
|
|
9195
9219
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
9196
9220
|
* It also applies the style of the cell to the composer input.
|
|
9197
9221
|
*/
|
|
9198
|
-
declare class GridComposer extends Component<Props$
|
|
9222
|
+
declare class GridComposer extends Component<Props$I, SpreadsheetChildEnv> {
|
|
9199
9223
|
static template: string;
|
|
9200
9224
|
static props: {
|
|
9201
9225
|
gridDims: ObjectConstructor;
|
|
@@ -9253,10 +9277,10 @@ declare class GridCellIcon extends Component<GridCellIconProps, SpreadsheetChild
|
|
|
9253
9277
|
isPositionVisible(position: CellPosition): boolean;
|
|
9254
9278
|
}
|
|
9255
9279
|
|
|
9256
|
-
interface Props$
|
|
9280
|
+
interface Props$H {
|
|
9257
9281
|
cellPosition: CellPosition;
|
|
9258
9282
|
}
|
|
9259
|
-
declare class DataValidationCheckbox extends Component<Props$
|
|
9283
|
+
declare class DataValidationCheckbox extends Component<Props$H, SpreadsheetChildEnv> {
|
|
9260
9284
|
static template: string;
|
|
9261
9285
|
static components: {
|
|
9262
9286
|
Checkbox: typeof Checkbox;
|
|
@@ -9269,10 +9293,10 @@ declare class DataValidationCheckbox extends Component<Props$G, SpreadsheetChild
|
|
|
9269
9293
|
get isDisabled(): boolean;
|
|
9270
9294
|
}
|
|
9271
9295
|
|
|
9272
|
-
interface Props$
|
|
9296
|
+
interface Props$G {
|
|
9273
9297
|
cellPosition: CellPosition;
|
|
9274
9298
|
}
|
|
9275
|
-
declare class DataValidationListIcon extends Component<Props$
|
|
9299
|
+
declare class DataValidationListIcon extends Component<Props$G, SpreadsheetChildEnv> {
|
|
9276
9300
|
static template: string;
|
|
9277
9301
|
static props: {
|
|
9278
9302
|
cellPosition: ObjectConstructor;
|
|
@@ -9302,7 +9326,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
9302
9326
|
}
|
|
9303
9327
|
|
|
9304
9328
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
9305
|
-
interface Props$
|
|
9329
|
+
interface Props$F {
|
|
9306
9330
|
onFigureDeleted: () => void;
|
|
9307
9331
|
}
|
|
9308
9332
|
interface Container {
|
|
@@ -9382,7 +9406,7 @@ interface DndState {
|
|
|
9382
9406
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
9383
9407
|
*
|
|
9384
9408
|
*/
|
|
9385
|
-
declare class FiguresContainer extends Component<Props$
|
|
9409
|
+
declare class FiguresContainer extends Component<Props$F, SpreadsheetChildEnv> {
|
|
9386
9410
|
static template: string;
|
|
9387
9411
|
static props: {
|
|
9388
9412
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -9418,10 +9442,10 @@ declare class FiguresContainer extends Component<Props$E, SpreadsheetChildEnv> {
|
|
|
9418
9442
|
private getSnapLineStyle;
|
|
9419
9443
|
}
|
|
9420
9444
|
|
|
9421
|
-
interface Props$
|
|
9445
|
+
interface Props$E {
|
|
9422
9446
|
cellPosition: CellPosition;
|
|
9423
9447
|
}
|
|
9424
|
-
declare class FilterIcon extends Component<Props$
|
|
9448
|
+
declare class FilterIcon extends Component<Props$E, SpreadsheetChildEnv> {
|
|
9425
9449
|
static template: string;
|
|
9426
9450
|
static props: {
|
|
9427
9451
|
cellPosition: ObjectConstructor;
|
|
@@ -9443,10 +9467,10 @@ declare class FilterIconsOverlay extends Component<{}, SpreadsheetChildEnv> {
|
|
|
9443
9467
|
getFilterHeadersPositions(): CellPosition[];
|
|
9444
9468
|
}
|
|
9445
9469
|
|
|
9446
|
-
interface Props$
|
|
9470
|
+
interface Props$D {
|
|
9447
9471
|
focusGrid: () => void;
|
|
9448
9472
|
}
|
|
9449
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
9473
|
+
declare class GridAddRowsFooter extends Component<Props$D, SpreadsheetChildEnv> {
|
|
9450
9474
|
static template: string;
|
|
9451
9475
|
static props: {
|
|
9452
9476
|
focusGrid: FunctionConstructor;
|
|
@@ -9470,7 +9494,7 @@ declare class GridAddRowsFooter extends Component<Props$C, SpreadsheetChildEnv>
|
|
|
9470
9494
|
private onExternalClick;
|
|
9471
9495
|
}
|
|
9472
9496
|
|
|
9473
|
-
interface Props$
|
|
9497
|
+
interface Props$C {
|
|
9474
9498
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
9475
9499
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, ev: MouseEvent) => void;
|
|
9476
9500
|
onCellRightClicked: (col: HeaderIndex, row: HeaderIndex, coordinates: DOMCoordinates) => void;
|
|
@@ -9479,7 +9503,7 @@ interface Props$B {
|
|
|
9479
9503
|
gridOverlayDimensions: string;
|
|
9480
9504
|
onFigureDeleted: () => void;
|
|
9481
9505
|
}
|
|
9482
|
-
declare class GridOverlay extends Component<Props$
|
|
9506
|
+
declare class GridOverlay extends Component<Props$C, SpreadsheetChildEnv> {
|
|
9483
9507
|
static template: string;
|
|
9484
9508
|
static props: {
|
|
9485
9509
|
onCellDoubleClicked: {
|
|
@@ -9536,12 +9560,12 @@ declare class GridOverlay extends Component<Props$B, SpreadsheetChildEnv> {
|
|
|
9536
9560
|
private getCartesianCoordinates;
|
|
9537
9561
|
}
|
|
9538
9562
|
|
|
9539
|
-
interface Props$
|
|
9563
|
+
interface Props$B {
|
|
9540
9564
|
gridRect: Rect;
|
|
9541
9565
|
onClosePopover: () => void;
|
|
9542
9566
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
9543
9567
|
}
|
|
9544
|
-
declare class GridPopover extends Component<Props$
|
|
9568
|
+
declare class GridPopover extends Component<Props$B, SpreadsheetChildEnv> {
|
|
9545
9569
|
static template: string;
|
|
9546
9570
|
static props: {
|
|
9547
9571
|
onClosePopover: FunctionConstructor;
|
|
@@ -9557,7 +9581,7 @@ declare class GridPopover extends Component<Props$A, SpreadsheetChildEnv> {
|
|
|
9557
9581
|
get cellPopover(): PositionedCellPopoverComponent | ClosedCellPopover;
|
|
9558
9582
|
}
|
|
9559
9583
|
|
|
9560
|
-
interface Props$
|
|
9584
|
+
interface Props$A {
|
|
9561
9585
|
headersGroups: ConsecutiveIndexes[];
|
|
9562
9586
|
offset: number;
|
|
9563
9587
|
headerRange: {
|
|
@@ -9565,7 +9589,7 @@ interface Props$z {
|
|
|
9565
9589
|
end: HeaderIndex;
|
|
9566
9590
|
};
|
|
9567
9591
|
}
|
|
9568
|
-
declare class UnhideRowHeaders extends Component<Props$
|
|
9592
|
+
declare class UnhideRowHeaders extends Component<Props$A, SpreadsheetChildEnv> {
|
|
9569
9593
|
static template: string;
|
|
9570
9594
|
static props: {
|
|
9571
9595
|
headersGroups: ArrayConstructor;
|
|
@@ -9584,7 +9608,7 @@ declare class UnhideRowHeaders extends Component<Props$z, SpreadsheetChildEnv> {
|
|
|
9584
9608
|
unhide(hiddenElements: HeaderIndex[]): void;
|
|
9585
9609
|
isVisible(header: HeaderIndex): boolean;
|
|
9586
9610
|
}
|
|
9587
|
-
declare class UnhideColumnHeaders extends Component<Props$
|
|
9611
|
+
declare class UnhideColumnHeaders extends Component<Props$A, SpreadsheetChildEnv> {
|
|
9588
9612
|
static template: string;
|
|
9589
9613
|
static props: {
|
|
9590
9614
|
headersGroups: ArrayConstructor;
|
|
@@ -9776,13 +9800,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
9776
9800
|
}
|
|
9777
9801
|
|
|
9778
9802
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
9779
|
-
interface Props$
|
|
9803
|
+
interface Props$z {
|
|
9780
9804
|
zone: Zone;
|
|
9781
9805
|
orientation: Orientation$1;
|
|
9782
9806
|
isMoving: boolean;
|
|
9783
9807
|
onMoveHighlight: (ev: PointerEvent) => void;
|
|
9784
9808
|
}
|
|
9785
|
-
declare class Border extends Component<Props$
|
|
9809
|
+
declare class Border extends Component<Props$z, SpreadsheetChildEnv> {
|
|
9786
9810
|
static template: string;
|
|
9787
9811
|
static props: {
|
|
9788
9812
|
zone: ObjectConstructor;
|
|
@@ -9795,14 +9819,14 @@ declare class Border extends Component<Props$y, SpreadsheetChildEnv> {
|
|
|
9795
9819
|
}
|
|
9796
9820
|
|
|
9797
9821
|
type Orientation = "nw" | "ne" | "sw" | "se";
|
|
9798
|
-
interface Props$
|
|
9822
|
+
interface Props$y {
|
|
9799
9823
|
zone: Zone;
|
|
9800
9824
|
color: Color;
|
|
9801
9825
|
orientation: Orientation;
|
|
9802
9826
|
isResizing: boolean;
|
|
9803
9827
|
onResizeHighlight: (ev: PointerEvent, isLeft: boolean, isTop: boolean) => void;
|
|
9804
9828
|
}
|
|
9805
|
-
declare class Corner extends Component<Props$
|
|
9829
|
+
declare class Corner extends Component<Props$y, SpreadsheetChildEnv> {
|
|
9806
9830
|
static template: string;
|
|
9807
9831
|
static props: {
|
|
9808
9832
|
zone: ObjectConstructor;
|
|
@@ -9817,14 +9841,14 @@ declare class Corner extends Component<Props$x, SpreadsheetChildEnv> {
|
|
|
9817
9841
|
onMouseDown(ev: PointerEvent): void;
|
|
9818
9842
|
}
|
|
9819
9843
|
|
|
9820
|
-
interface Props$
|
|
9844
|
+
interface Props$x {
|
|
9821
9845
|
zone: Zone;
|
|
9822
9846
|
color: Color;
|
|
9823
9847
|
}
|
|
9824
9848
|
interface HighlightState {
|
|
9825
9849
|
shiftingMode: "isMoving" | "isResizing" | "none";
|
|
9826
9850
|
}
|
|
9827
|
-
declare class Highlight extends Component<Props$
|
|
9851
|
+
declare class Highlight extends Component<Props$x, SpreadsheetChildEnv> {
|
|
9828
9852
|
static template: string;
|
|
9829
9853
|
static props: {
|
|
9830
9854
|
zone: ObjectConstructor;
|
|
@@ -9847,7 +9871,7 @@ declare class Highlight extends Component<Props$w, SpreadsheetChildEnv> {
|
|
|
9847
9871
|
|
|
9848
9872
|
type ScrollDirection = "horizontal" | "vertical";
|
|
9849
9873
|
|
|
9850
|
-
interface Props$
|
|
9874
|
+
interface Props$w {
|
|
9851
9875
|
width: Pixel;
|
|
9852
9876
|
height: Pixel;
|
|
9853
9877
|
direction: ScrollDirection;
|
|
@@ -9855,7 +9879,7 @@ interface Props$v {
|
|
|
9855
9879
|
offset: Pixel;
|
|
9856
9880
|
onScroll: (offset: Pixel) => void;
|
|
9857
9881
|
}
|
|
9858
|
-
declare class ScrollBar extends Component<Props$
|
|
9882
|
+
declare class ScrollBar extends Component<Props$w> {
|
|
9859
9883
|
static props: {
|
|
9860
9884
|
width: {
|
|
9861
9885
|
type: NumberConstructor;
|
|
@@ -9883,10 +9907,10 @@ declare class ScrollBar extends Component<Props$v> {
|
|
|
9883
9907
|
onScroll(ev: any): void;
|
|
9884
9908
|
}
|
|
9885
9909
|
|
|
9886
|
-
interface Props$
|
|
9910
|
+
interface Props$v {
|
|
9887
9911
|
leftOffset: number;
|
|
9888
9912
|
}
|
|
9889
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
9913
|
+
declare class HorizontalScrollBar extends Component<Props$v, SpreadsheetChildEnv> {
|
|
9890
9914
|
static props: {
|
|
9891
9915
|
leftOffset: {
|
|
9892
9916
|
type: NumberConstructor;
|
|
@@ -9912,10 +9936,10 @@ declare class HorizontalScrollBar extends Component<Props$u, SpreadsheetChildEnv
|
|
|
9912
9936
|
onScroll(offset: any): void;
|
|
9913
9937
|
}
|
|
9914
9938
|
|
|
9915
|
-
interface Props$
|
|
9939
|
+
interface Props$u {
|
|
9916
9940
|
topOffset: number;
|
|
9917
9941
|
}
|
|
9918
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
9942
|
+
declare class VerticalScrollBar extends Component<Props$u, SpreadsheetChildEnv> {
|
|
9919
9943
|
static props: {
|
|
9920
9944
|
topOffset: {
|
|
9921
9945
|
type: NumberConstructor;
|
|
@@ -9941,13 +9965,13 @@ declare class VerticalScrollBar extends Component<Props$t, SpreadsheetChildEnv>
|
|
|
9941
9965
|
onScroll(offset: any): void;
|
|
9942
9966
|
}
|
|
9943
9967
|
|
|
9944
|
-
interface Props$
|
|
9968
|
+
interface Props$t {
|
|
9945
9969
|
table: Table;
|
|
9946
9970
|
}
|
|
9947
9971
|
interface State$2 {
|
|
9948
9972
|
highlightZone: Zone | undefined;
|
|
9949
9973
|
}
|
|
9950
|
-
declare class TableResizer extends Component<Props$
|
|
9974
|
+
declare class TableResizer extends Component<Props$t, SpreadsheetChildEnv> {
|
|
9951
9975
|
static template: string;
|
|
9952
9976
|
static props: {
|
|
9953
9977
|
table: ObjectConstructor;
|
|
@@ -9976,10 +10000,10 @@ declare class TableResizer extends Component<Props$s, SpreadsheetChildEnv> {
|
|
|
9976
10000
|
* - a vertical resizer (same, for rows)
|
|
9977
10001
|
*/
|
|
9978
10002
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
9979
|
-
interface Props$
|
|
10003
|
+
interface Props$s {
|
|
9980
10004
|
exposeFocus: (focus: () => void) => void;
|
|
9981
10005
|
}
|
|
9982
|
-
declare class Grid extends Component<Props$
|
|
10006
|
+
declare class Grid extends Component<Props$s, SpreadsheetChildEnv> {
|
|
9983
10007
|
static template: string;
|
|
9984
10008
|
static props: {
|
|
9985
10009
|
exposeFocus: FunctionConstructor;
|
|
@@ -10090,7 +10114,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
10090
10114
|
private getChartDefinitionFromContextCreation;
|
|
10091
10115
|
}
|
|
10092
10116
|
|
|
10093
|
-
interface Props$
|
|
10117
|
+
interface Props$r {
|
|
10094
10118
|
figureId: UID;
|
|
10095
10119
|
chartPanelStore: MainChartPanelStore;
|
|
10096
10120
|
}
|
|
@@ -10098,7 +10122,7 @@ interface ChartTypePickerState {
|
|
|
10098
10122
|
popoverProps: PopoverProps | undefined;
|
|
10099
10123
|
popoverStyle: string;
|
|
10100
10124
|
}
|
|
10101
|
-
declare class ChartTypePicker extends Component<Props$
|
|
10125
|
+
declare class ChartTypePicker extends Component<Props$r, SpreadsheetChildEnv> {
|
|
10102
10126
|
static template: string;
|
|
10103
10127
|
static components: {
|
|
10104
10128
|
Section: typeof Section;
|
|
@@ -10134,11 +10158,11 @@ declare class ChartTypePicker extends Component<Props$q, SpreadsheetChildEnv> {
|
|
|
10134
10158
|
private closePopover;
|
|
10135
10159
|
}
|
|
10136
10160
|
|
|
10137
|
-
interface Props$
|
|
10161
|
+
interface Props$q {
|
|
10138
10162
|
onCloseSidePanel: () => void;
|
|
10139
10163
|
figureId: UID;
|
|
10140
10164
|
}
|
|
10141
|
-
declare class ChartPanel extends Component<Props$
|
|
10165
|
+
declare class ChartPanel extends Component<Props$q, SpreadsheetChildEnv> {
|
|
10142
10166
|
static template: string;
|
|
10143
10167
|
static components: {
|
|
10144
10168
|
Section: typeof Section;
|
|
@@ -10158,13 +10182,13 @@ declare class ChartPanel extends Component<Props$p, SpreadsheetChildEnv> {
|
|
|
10158
10182
|
private getChartDefinition;
|
|
10159
10183
|
}
|
|
10160
10184
|
|
|
10161
|
-
interface Props$
|
|
10185
|
+
interface Props$p {
|
|
10162
10186
|
figureId: UID;
|
|
10163
10187
|
definition: PieChartDefinition;
|
|
10164
10188
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10165
10189
|
updateChart: (figureId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10166
10190
|
}
|
|
10167
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
10191
|
+
declare class PieChartDesignPanel extends Component<Props$p, SpreadsheetChildEnv> {
|
|
10168
10192
|
static template: string;
|
|
10169
10193
|
static components: {
|
|
10170
10194
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -10183,10 +10207,10 @@ declare class PieChartDesignPanel extends Component<Props$o, SpreadsheetChildEnv
|
|
|
10183
10207
|
};
|
|
10184
10208
|
}
|
|
10185
10209
|
|
|
10186
|
-
interface Props$
|
|
10210
|
+
interface Props$o {
|
|
10187
10211
|
items: ActionSpec[];
|
|
10188
10212
|
}
|
|
10189
|
-
declare class CogWheelMenu extends Component<Props$
|
|
10213
|
+
declare class CogWheelMenu extends Component<Props$o, SpreadsheetChildEnv> {
|
|
10190
10214
|
static template: string;
|
|
10191
10215
|
static components: {
|
|
10192
10216
|
Menu: typeof Menu;
|
|
@@ -10269,14 +10293,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
10269
10293
|
get highlights(): Highlight$1[];
|
|
10270
10294
|
}
|
|
10271
10295
|
|
|
10272
|
-
interface Props$
|
|
10296
|
+
interface Props$n {
|
|
10273
10297
|
deferUpdate: boolean;
|
|
10274
10298
|
isDirty: boolean;
|
|
10275
10299
|
toggleDeferUpdate: (value: boolean) => void;
|
|
10276
10300
|
discard: () => void;
|
|
10277
10301
|
apply: () => void;
|
|
10278
10302
|
}
|
|
10279
|
-
declare class PivotDeferUpdate extends Component<Props$
|
|
10303
|
+
declare class PivotDeferUpdate extends Component<Props$n, SpreadsheetChildEnv> {
|
|
10280
10304
|
static template: string;
|
|
10281
10305
|
static props: {
|
|
10282
10306
|
deferUpdate: BooleanConstructor;
|
|
@@ -10293,11 +10317,11 @@ declare class PivotDeferUpdate extends Component<Props$m, SpreadsheetChildEnv> {
|
|
|
10293
10317
|
get deferUpdatesTooltip(): string;
|
|
10294
10318
|
}
|
|
10295
10319
|
|
|
10296
|
-
interface Props$
|
|
10320
|
+
interface Props$m {
|
|
10297
10321
|
onFieldPicked: (field: string) => void;
|
|
10298
10322
|
fields: PivotField[];
|
|
10299
10323
|
}
|
|
10300
|
-
declare class AddDimensionButton extends Component<Props$
|
|
10324
|
+
declare class AddDimensionButton extends Component<Props$m, SpreadsheetChildEnv> {
|
|
10301
10325
|
static template: string;
|
|
10302
10326
|
static components: {
|
|
10303
10327
|
Popover: typeof Popover;
|
|
@@ -10333,7 +10357,7 @@ declare class AddDimensionButton extends Component<Props$l, SpreadsheetChildEnv>
|
|
|
10333
10357
|
onKeyDown(ev: KeyboardEvent): void;
|
|
10334
10358
|
}
|
|
10335
10359
|
|
|
10336
|
-
interface Props$
|
|
10360
|
+
interface Props$l {
|
|
10337
10361
|
value: string;
|
|
10338
10362
|
onChange: (value: string) => void;
|
|
10339
10363
|
class?: string;
|
|
@@ -10341,7 +10365,7 @@ interface Props$k {
|
|
|
10341
10365
|
placeholder?: string;
|
|
10342
10366
|
autofocus?: boolean;
|
|
10343
10367
|
}
|
|
10344
|
-
declare class TextInput extends Component<Props$
|
|
10368
|
+
declare class TextInput extends Component<Props$l, SpreadsheetChildEnv> {
|
|
10345
10369
|
static template: string;
|
|
10346
10370
|
static props: {
|
|
10347
10371
|
value: StringConstructor;
|
|
@@ -10371,13 +10395,13 @@ declare class TextInput extends Component<Props$k, SpreadsheetChildEnv> {
|
|
|
10371
10395
|
onMouseUp(ev: MouseEvent): void;
|
|
10372
10396
|
}
|
|
10373
10397
|
|
|
10374
|
-
interface Props$
|
|
10398
|
+
interface Props$k {
|
|
10375
10399
|
dimension: PivotCoreDimension | PivotCoreMeasure;
|
|
10376
10400
|
onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
|
|
10377
10401
|
onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
|
|
10378
10402
|
type: "row" | "col" | "measure";
|
|
10379
10403
|
}
|
|
10380
|
-
declare class PivotDimension extends Component<Props$
|
|
10404
|
+
declare class PivotDimension extends Component<Props$k, SpreadsheetChildEnv> {
|
|
10381
10405
|
static template: string;
|
|
10382
10406
|
static props: {
|
|
10383
10407
|
dimension: ObjectConstructor;
|
|
@@ -10401,13 +10425,13 @@ declare class PivotDimension extends Component<Props$j, SpreadsheetChildEnv> {
|
|
|
10401
10425
|
updateName(name: string): void;
|
|
10402
10426
|
}
|
|
10403
10427
|
|
|
10404
|
-
interface Props$
|
|
10428
|
+
interface Props$j {
|
|
10405
10429
|
dimension: PivotDimension$1;
|
|
10406
10430
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10407
10431
|
availableGranularities: Set<string>;
|
|
10408
10432
|
allGranularities: string[];
|
|
10409
10433
|
}
|
|
10410
|
-
declare class PivotDimensionGranularity extends Component<Props$
|
|
10434
|
+
declare class PivotDimensionGranularity extends Component<Props$j, SpreadsheetChildEnv> {
|
|
10411
10435
|
static template: string;
|
|
10412
10436
|
static props: {
|
|
10413
10437
|
dimension: ObjectConstructor;
|
|
@@ -10432,11 +10456,11 @@ declare class PivotDimensionGranularity extends Component<Props$i, SpreadsheetCh
|
|
|
10432
10456
|
};
|
|
10433
10457
|
}
|
|
10434
10458
|
|
|
10435
|
-
interface Props$
|
|
10459
|
+
interface Props$i {
|
|
10436
10460
|
dimension: PivotDimension$1;
|
|
10437
10461
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10438
10462
|
}
|
|
10439
|
-
declare class PivotDimensionOrder extends Component<Props$
|
|
10463
|
+
declare class PivotDimensionOrder extends Component<Props$i, SpreadsheetChildEnv> {
|
|
10440
10464
|
static template: string;
|
|
10441
10465
|
static props: {
|
|
10442
10466
|
dimension: ObjectConstructor;
|
|
@@ -10472,7 +10496,7 @@ declare function createPivotFormula(formulaId: string, cell: PivotTableCell): st
|
|
|
10472
10496
|
declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type" | "displayName" | "granularity">, groupValue: any): CellValue;
|
|
10473
10497
|
declare function toFunctionPivotValue(value: CellValue, dimension: Pick<PivotDimension$1, "type" | "granularity">): string;
|
|
10474
10498
|
|
|
10475
|
-
interface Props$
|
|
10499
|
+
interface Props$h {
|
|
10476
10500
|
pivotId: string;
|
|
10477
10501
|
definition: PivotRuntimeDefinition;
|
|
10478
10502
|
measure: PivotMeasure;
|
|
@@ -10480,7 +10504,7 @@ interface Props$g {
|
|
|
10480
10504
|
onRemoved: () => void;
|
|
10481
10505
|
generateMeasureId: (fieldName: string, aggregator?: string) => string;
|
|
10482
10506
|
}
|
|
10483
|
-
declare class PivotMeasureEditor extends Component<Props$
|
|
10507
|
+
declare class PivotMeasureEditor extends Component<Props$h> {
|
|
10484
10508
|
static template: string;
|
|
10485
10509
|
static components: {
|
|
10486
10510
|
PivotDimension: typeof PivotDimension;
|
|
@@ -10504,11 +10528,11 @@ declare class PivotMeasureEditor extends Component<Props$g> {
|
|
|
10504
10528
|
getColoredSymbolToken(token: Token): Color | undefined;
|
|
10505
10529
|
}
|
|
10506
10530
|
|
|
10507
|
-
interface Props$
|
|
10531
|
+
interface Props$g {
|
|
10508
10532
|
definition: PivotRuntimeDefinition;
|
|
10509
10533
|
pivotId: UID;
|
|
10510
10534
|
}
|
|
10511
|
-
declare class PivotSortSection extends Component<Props$
|
|
10535
|
+
declare class PivotSortSection extends Component<Props$g, SpreadsheetChildEnv> {
|
|
10512
10536
|
static template: string;
|
|
10513
10537
|
static components: {
|
|
10514
10538
|
Section: typeof Section;
|
|
@@ -10525,7 +10549,7 @@ declare class PivotSortSection extends Component<Props$f, SpreadsheetChildEnv> {
|
|
|
10525
10549
|
}[];
|
|
10526
10550
|
}
|
|
10527
10551
|
|
|
10528
|
-
interface Props$
|
|
10552
|
+
interface Props$f {
|
|
10529
10553
|
definition: PivotRuntimeDefinition;
|
|
10530
10554
|
onDimensionsUpdated: (definition: Partial<PivotCoreDefinition>) => void;
|
|
10531
10555
|
unusedGroupableFields: PivotField[];
|
|
@@ -10536,7 +10560,7 @@ interface Props$e {
|
|
|
10536
10560
|
getScrollableContainerEl?: () => HTMLElement;
|
|
10537
10561
|
pivotId: UID;
|
|
10538
10562
|
}
|
|
10539
|
-
declare class PivotLayoutConfigurator extends Component<Props$
|
|
10563
|
+
declare class PivotLayoutConfigurator extends Component<Props$f, SpreadsheetChildEnv> {
|
|
10540
10564
|
static template: string;
|
|
10541
10565
|
static components: {
|
|
10542
10566
|
AddDimensionButton: typeof AddDimensionButton;
|
|
@@ -10626,11 +10650,11 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
10626
10650
|
private shouldKeepSortedColumn;
|
|
10627
10651
|
}
|
|
10628
10652
|
|
|
10629
|
-
interface Props$
|
|
10653
|
+
interface Props$e {
|
|
10630
10654
|
pivotId: UID;
|
|
10631
10655
|
flipAxis: () => void;
|
|
10632
10656
|
}
|
|
10633
|
-
declare class PivotTitleSection extends Component<Props$
|
|
10657
|
+
declare class PivotTitleSection extends Component<Props$e, SpreadsheetChildEnv> {
|
|
10634
10658
|
static template: string;
|
|
10635
10659
|
static components: {
|
|
10636
10660
|
CogWheelMenu: typeof CogWheelMenu;
|
|
@@ -10732,6 +10756,90 @@ declare function getFirstPivotFunction(tokens: Token[]): {
|
|
|
10732
10756
|
*/
|
|
10733
10757
|
declare function getNumberOfPivotFunctions(tokens: Token[]): number;
|
|
10734
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
|
+
|
|
10735
10843
|
interface Props$c {
|
|
10736
10844
|
figureId: UID;
|
|
10737
10845
|
definition: ComboChartDefinition;
|
|
@@ -10952,7 +11060,7 @@ declare class HoveredTableStore extends SpreadsheetStore {
|
|
|
10952
11060
|
row: number | undefined;
|
|
10953
11061
|
overlayColors: PositionMap<Color>;
|
|
10954
11062
|
handle(cmd: Command): void;
|
|
10955
|
-
hover(position: Partial<Position$1>):
|
|
11063
|
+
hover(position: Partial<Position$1>): "noStateChange" | undefined;
|
|
10956
11064
|
clear(): void;
|
|
10957
11065
|
private computeOverlay;
|
|
10958
11066
|
}
|
|
@@ -11131,11 +11239,11 @@ interface Renderer {
|
|
|
11131
11239
|
renderingLayers: Readonly<LayerName[]>;
|
|
11132
11240
|
}
|
|
11133
11241
|
declare class RendererStore {
|
|
11134
|
-
mutators: readonly ["register", "unRegister"];
|
|
11242
|
+
mutators: readonly ["register", "unRegister", "drawLayer"];
|
|
11135
11243
|
private renderers;
|
|
11136
11244
|
register(renderer: Renderer): void;
|
|
11137
11245
|
unRegister(renderer: Renderer): void;
|
|
11138
|
-
drawLayer(context: GridRenderingContext, layer: LayerName):
|
|
11246
|
+
drawLayer(context: GridRenderingContext, layer: LayerName): string;
|
|
11139
11247
|
}
|
|
11140
11248
|
|
|
11141
11249
|
interface RippleProps {
|
|
@@ -11893,6 +12001,7 @@ declare const components: {
|
|
|
11893
12001
|
PivotDimensionOrder: typeof PivotDimensionOrder;
|
|
11894
12002
|
PivotDimension: typeof PivotDimension;
|
|
11895
12003
|
PivotLayoutConfigurator: typeof PivotLayoutConfigurator;
|
|
12004
|
+
PivotHTMLRenderer: typeof PivotHTMLRenderer;
|
|
11896
12005
|
PivotDeferUpdate: typeof PivotDeferUpdate;
|
|
11897
12006
|
PivotTitleSection: typeof PivotTitleSection;
|
|
11898
12007
|
CogWheelMenu: typeof CogWheelMenu;
|
|
@@ -12450,7 +12559,7 @@ declare const chartHelpers: {
|
|
|
12450
12559
|
useLeftAxis: boolean;
|
|
12451
12560
|
useRightAxis: boolean;
|
|
12452
12561
|
};
|
|
12453
|
-
formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string
|
|
12562
|
+
formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string) => any;
|
|
12454
12563
|
formatTickValue(localeFormat: LocaleFormat): (value: any) => any;
|
|
12455
12564
|
getPieColors(colors: ColorGenerator, dataSetsValues: DatasetValues[]): Color[];
|
|
12456
12565
|
truncateLabel(label: string | undefined): string;
|
|
@@ -12482,4 +12591,4 @@ declare const chartHelpers: {
|
|
|
12482
12591
|
WaterfallChart: typeof WaterfallChart;
|
|
12483
12592
|
};
|
|
12484
12593
|
|
|
12485
|
-
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 };
|