@odoo/o-spreadsheet 18.5.0-alpha.11 → 18.5.0-alpha.13
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 +4655 -3971
- package/dist/o-spreadsheet.d.ts +277 -255
- package/dist/o-spreadsheet.esm.js +4655 -3971
- package/dist/o-spreadsheet.iife.js +4653 -3969
- package/dist/o-spreadsheet.iife.min.js +418 -418
- package/dist/o_spreadsheet.xml +103 -91
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -35,17 +35,16 @@ interface ExcelFigureSize {
|
|
|
35
35
|
}
|
|
36
36
|
type ResizeDirection = -1 | 0 | 1;
|
|
37
37
|
interface Carousel {
|
|
38
|
-
items: CarouselItem[];
|
|
38
|
+
readonly items: CarouselItem[];
|
|
39
|
+
readonly title?: TitleDesign;
|
|
39
40
|
}
|
|
40
41
|
type CarouselItem = {
|
|
41
42
|
type: "chart";
|
|
42
43
|
chartId: UID;
|
|
43
44
|
title?: string;
|
|
44
|
-
carouselTitle?: TitleDesign;
|
|
45
45
|
} | {
|
|
46
46
|
type: "carouselDataView";
|
|
47
47
|
title?: string;
|
|
48
|
-
carouselTitle?: TitleDesign;
|
|
49
48
|
};
|
|
50
49
|
|
|
51
50
|
type ImageSVG = {
|
|
@@ -1734,6 +1733,59 @@ declare function createCurrencyFormat(currency: Partial<Currency>): Format;
|
|
|
1734
1733
|
*/
|
|
1735
1734
|
declare function isNumber(value: string | undefined, locale: Locale): boolean;
|
|
1736
1735
|
|
|
1736
|
+
/**
|
|
1737
|
+
* Registry
|
|
1738
|
+
*
|
|
1739
|
+
* The Registry class is basically just a mapping from a string key to an object.
|
|
1740
|
+
* It is really not much more than an object. It is however useful for the
|
|
1741
|
+
* following reasons:
|
|
1742
|
+
*
|
|
1743
|
+
* 1. it let us react and execute code when someone add something to the registry
|
|
1744
|
+
* (for example, the FunctionRegistry subclass this for this purpose)
|
|
1745
|
+
* 2. it throws an error when the get operation fails
|
|
1746
|
+
* 3. it provides a chained API to add items to the registry.
|
|
1747
|
+
*/
|
|
1748
|
+
declare class Registry<T> {
|
|
1749
|
+
content: {
|
|
1750
|
+
[key: string]: T;
|
|
1751
|
+
};
|
|
1752
|
+
/**
|
|
1753
|
+
* Add an item to the registry, you can only add if there is no item
|
|
1754
|
+
* already present in the registery with the given key
|
|
1755
|
+
*
|
|
1756
|
+
* Note that this also returns the registry, so another add method call can
|
|
1757
|
+
* be chained
|
|
1758
|
+
*/
|
|
1759
|
+
add(key: string, value: T): this;
|
|
1760
|
+
/**
|
|
1761
|
+
* Replace (or add) an item to the registry
|
|
1762
|
+
*
|
|
1763
|
+
* Note that this also returns the registry, so another add method call can
|
|
1764
|
+
* be chained
|
|
1765
|
+
*/
|
|
1766
|
+
replace(key: string, value: T): this;
|
|
1767
|
+
/**
|
|
1768
|
+
* Get an item from the registry
|
|
1769
|
+
*/
|
|
1770
|
+
get(key: string): T;
|
|
1771
|
+
/**
|
|
1772
|
+
* Check if the key is already in the registry
|
|
1773
|
+
*/
|
|
1774
|
+
contains(key: string): boolean;
|
|
1775
|
+
/**
|
|
1776
|
+
* Get a list of all elements in the registry
|
|
1777
|
+
*/
|
|
1778
|
+
getAll(): T[];
|
|
1779
|
+
/**
|
|
1780
|
+
* Get a list of all keys in the registry
|
|
1781
|
+
*/
|
|
1782
|
+
getKeys(): string[];
|
|
1783
|
+
/**
|
|
1784
|
+
* Remove an item from the registry
|
|
1785
|
+
*/
|
|
1786
|
+
remove(key: string): void;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1737
1789
|
declare function splitReference(ref: string): {
|
|
1738
1790
|
sheetName?: string;
|
|
1739
1791
|
xc: string;
|
|
@@ -2754,13 +2806,13 @@ interface ZoneDependentCommand {
|
|
|
2754
2806
|
zone: Zone;
|
|
2755
2807
|
}
|
|
2756
2808
|
declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
|
|
2757
|
-
declare const invalidateEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2758
|
-
declare const invalidateChartEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2759
|
-
declare const invalidateDependenciesCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2760
|
-
declare const invalidateCFEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2761
|
-
declare const invalidateBordersCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2762
|
-
declare const invalidSubtotalFormulasCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2763
|
-
declare const readonlyAllowedCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2809
|
+
declare const invalidateEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
2810
|
+
declare const invalidateChartEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
2811
|
+
declare const invalidateDependenciesCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
2812
|
+
declare const invalidateCFEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
2813
|
+
declare const invalidateBordersCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
2814
|
+
declare const invalidSubtotalFormulasCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
2815
|
+
declare const readonlyAllowedCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "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" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
|
|
2764
2816
|
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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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">;
|
|
2765
2817
|
declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
|
|
2766
2818
|
declare function canExecuteInReadonly(cmd: Command): boolean;
|
|
@@ -2967,6 +3019,11 @@ interface UpdateCarouselActiveItemCommand extends SheetDependentCommand {
|
|
|
2967
3019
|
figureId: UID;
|
|
2968
3020
|
item: CarouselItem;
|
|
2969
3021
|
}
|
|
3022
|
+
interface PopOutChartFromCarouselCommand extends SheetDependentCommand {
|
|
3023
|
+
type: "POPOUT_CHART_FROM_CAROUSEL";
|
|
3024
|
+
carouselId: UID;
|
|
3025
|
+
chartId: UID;
|
|
3026
|
+
}
|
|
2970
3027
|
interface CreateImageOverCommand extends BaseFigureCommand {
|
|
2971
3028
|
type: "CREATE_IMAGE";
|
|
2972
3029
|
definition: Image$1;
|
|
@@ -3396,7 +3453,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
|
|
|
3396
3453
|
| UpdateLocaleCommand
|
|
3397
3454
|
/** PIVOT */
|
|
3398
3455
|
| AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
|
|
3399
|
-
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 | ToggleCheckboxCommand | AddNewChartToCarouselCommand | AddFigureChartToCarouselCommand | UpdateCarouselActiveItemCommand;
|
|
3456
|
+
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 | ToggleCheckboxCommand | AddNewChartToCarouselCommand | AddFigureChartToCarouselCommand | UpdateCarouselActiveItemCommand | PopOutChartFromCarouselCommand;
|
|
3400
3457
|
type Command = CoreCommand | LocalCommand;
|
|
3401
3458
|
/**
|
|
3402
3459
|
* Holds the result of a command dispatch.
|
|
@@ -3881,15 +3938,19 @@ type ApplyRangeChangeResult = {
|
|
|
3881
3938
|
changeType: "NONE";
|
|
3882
3939
|
};
|
|
3883
3940
|
type ApplyRangeChange = (range: Range) => ApplyRangeChangeResult;
|
|
3941
|
+
type AdaptSheetName = {
|
|
3942
|
+
old: string;
|
|
3943
|
+
current: string;
|
|
3944
|
+
};
|
|
3884
3945
|
type RangeAdapter$1 = {
|
|
3885
3946
|
sheetId: UID;
|
|
3886
|
-
sheetName:
|
|
3947
|
+
sheetName: AdaptSheetName;
|
|
3887
3948
|
applyChange: ApplyRangeChange;
|
|
3888
3949
|
};
|
|
3889
3950
|
type Dimension = "COL" | "ROW";
|
|
3890
3951
|
type ConsecutiveIndexes = HeaderIndex[];
|
|
3891
3952
|
interface RangeProvider {
|
|
3892
|
-
adaptRanges: (applyChange: ApplyRangeChange, sheetId
|
|
3953
|
+
adaptRanges: (applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName) => void;
|
|
3893
3954
|
}
|
|
3894
3955
|
type Validation<T> = (toValidate: T) => CommandResult | CommandResult[];
|
|
3895
3956
|
type Increment = 1 | -1 | 0;
|
|
@@ -4410,9 +4471,9 @@ declare class RangeAdapter implements CommandHandler<CoreCommand> {
|
|
|
4410
4471
|
private providers;
|
|
4411
4472
|
constructor(getters: CoreGetters);
|
|
4412
4473
|
static getters: readonly ["adaptFormulaStringDependencies", "copyFormulaStringForSheet", "extendRange", "getRangeString", "getRangeFromSheetXC", "createAdaptedRanges", "getRangeData", "getRangeDataFromXc", "getRangeDataFromZone", "getRangeFromRangeData", "getRangeFromZone", "getRangesUnion", "recomputeRanges", "isRangeValid", "removeRangesSheetPrefix"];
|
|
4413
|
-
allowDispatch(cmd:
|
|
4474
|
+
allowDispatch(cmd: CoreCommand): CommandResult;
|
|
4414
4475
|
beforeHandle(command: Command): void;
|
|
4415
|
-
handle(cmd:
|
|
4476
|
+
handle(cmd: CoreCommand): void;
|
|
4416
4477
|
finalize(): void;
|
|
4417
4478
|
/**
|
|
4418
4479
|
* Return a modified adapting function that verifies that after adapting a range, the range is still valid.
|
|
@@ -4511,9 +4572,10 @@ declare class CorePlugin<State = any> extends BasePlugin<State, CoreCommand> imp
|
|
|
4511
4572
|
* the type of change that occurred.
|
|
4512
4573
|
*
|
|
4513
4574
|
* @param applyChange a function that, when called, will adapt the range according to the change on the grid
|
|
4514
|
-
* @param sheetId an
|
|
4575
|
+
* @param sheetId an sheetId to adapt either range of that sheet specifically, or ranges pointing to that sheet
|
|
4576
|
+
* @param sheetName couple of old and new sheet names to adapt ranges pointing to that sheet
|
|
4515
4577
|
*/
|
|
4516
|
-
adaptRanges(applyChange: ApplyRangeChange, sheetId
|
|
4578
|
+
adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
|
|
4517
4579
|
/**
|
|
4518
4580
|
* Implement this method to clean unused external resources, such as images
|
|
4519
4581
|
* stored on a server which have been deleted.
|
|
@@ -4679,7 +4741,7 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
|
|
|
4679
4741
|
[id: string]: Cell;
|
|
4680
4742
|
};
|
|
4681
4743
|
};
|
|
4682
|
-
adaptRanges(applyChange: ApplyRangeChange, sheetId
|
|
4744
|
+
adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
|
|
4683
4745
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
4684
4746
|
handle(cmd: CoreCommand): void;
|
|
4685
4747
|
private clearZones;
|
|
@@ -4797,7 +4859,7 @@ declare abstract class AbstractChart {
|
|
|
4797
4859
|
* This function should be used to update all the ranges of the chart after
|
|
4798
4860
|
* a grid change (add/remove col/row, rename sheet, ...)
|
|
4799
4861
|
*/
|
|
4800
|
-
abstract updateRanges(applyChange: ApplyRangeChange): AbstractChart;
|
|
4862
|
+
abstract updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): AbstractChart;
|
|
4801
4863
|
/**
|
|
4802
4864
|
* Duplicate the chart when a sheet is duplicated.
|
|
4803
4865
|
* The ranges that are in the same sheet as the chart are adapted to the new sheetId.
|
|
@@ -4830,7 +4892,7 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
|
|
|
4830
4892
|
readonly charts: Record<UID, FigureChart | undefined>;
|
|
4831
4893
|
private createChart;
|
|
4832
4894
|
private validateChartDefinition;
|
|
4833
|
-
adaptRanges(applyChange: ApplyRangeChange): void;
|
|
4895
|
+
adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): void;
|
|
4834
4896
|
allowDispatch(cmd: Command): CommandResult | CommandResult[];
|
|
4835
4897
|
handle(cmd: CoreCommand): void;
|
|
4836
4898
|
getContextCreationChart(chartId: UID): ChartCreationContext | undefined;
|
|
@@ -4870,7 +4932,7 @@ declare class ConditionalFormatPlugin extends CorePlugin<ConditionalFormatState>
|
|
|
4870
4932
|
};
|
|
4871
4933
|
adaptCFFormulas(applyChange: ApplyRangeChange): void;
|
|
4872
4934
|
adaptCFRanges(sheetId: UID, applyChange: ApplyRangeChange): void;
|
|
4873
|
-
adaptRanges(applyChange: ApplyRangeChange, sheetId
|
|
4935
|
+
adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
|
|
4874
4936
|
allowDispatch(cmd: Command): CommandResult | CommandResult[];
|
|
4875
4937
|
handle(cmd: CoreCommand): void;
|
|
4876
4938
|
import(data: WorkbookData): void;
|
|
@@ -4921,7 +4983,7 @@ declare class DataValidationPlugin extends CorePlugin<DataValidationState> imple
|
|
|
4921
4983
|
readonly rules: {
|
|
4922
4984
|
[sheet: string]: DataValidationRule[];
|
|
4923
4985
|
};
|
|
4924
|
-
adaptRanges(applyChange: ApplyRangeChange, sheetId
|
|
4986
|
+
adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
|
|
4925
4987
|
private adaptDVFormulas;
|
|
4926
4988
|
private adaptDVRanges;
|
|
4927
4989
|
allowDispatch(cmd: Command): CommandResult | CommandResult[];
|
|
@@ -4956,7 +5018,7 @@ declare class FigurePlugin extends CorePlugin<FigureState> implements FigureStat
|
|
|
4956
5018
|
[sheet: string]: Record<UID, Figure | undefined> | undefined;
|
|
4957
5019
|
};
|
|
4958
5020
|
readonly insertionOrders: UID[];
|
|
4959
|
-
adaptRanges(applyChange: ApplyRangeChange, sheetId
|
|
5021
|
+
adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
|
|
4960
5022
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
4961
5023
|
beforeHandle(cmd: CoreCommand): void;
|
|
4962
5024
|
handle(cmd: CoreCommand): void;
|
|
@@ -5136,7 +5198,7 @@ declare class MergePlugin extends CorePlugin<MergeState> implements MergeState {
|
|
|
5136
5198
|
readonly mergeCellMap: Record<UID, SheetMergeCellMap | undefined>;
|
|
5137
5199
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
5138
5200
|
handle(cmd: CoreCommand): void;
|
|
5139
|
-
adaptRanges(applyChange: ApplyRangeChange, sheetId
|
|
5201
|
+
adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
|
|
5140
5202
|
getMerges(sheetId: UID): Merge[];
|
|
5141
5203
|
getMerge({ sheetId, col, row }: CellPosition): Merge | undefined;
|
|
5142
5204
|
getMergesInZone(sheetId: UID, zone: Zone): Merge[];
|
|
@@ -5226,7 +5288,7 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
|
|
|
5226
5288
|
readonly compiledMeasureFormulas: Record<UID, Record<string, RangeCompiledFormula>>;
|
|
5227
5289
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
5228
5290
|
handle(cmd: CoreCommand): void;
|
|
5229
|
-
adaptRanges(applyChange: ApplyRangeChange
|
|
5291
|
+
adaptRanges(applyChange: ApplyRangeChange): void;
|
|
5230
5292
|
getPivotDisplayName(pivotId: UID): string;
|
|
5231
5293
|
getPivotName(pivotId: UID): string;
|
|
5232
5294
|
/**
|
|
@@ -5448,7 +5510,7 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
|
|
|
5448
5510
|
static getters: readonly ["getCoreTable", "getCoreTables", "getCoreTableMatchingTopLeft"];
|
|
5449
5511
|
readonly tables: Record<UID, Record<TableId, CoreTable | undefined>>;
|
|
5450
5512
|
readonly nextTableId: number;
|
|
5451
|
-
adaptRanges(applyChange: ApplyRangeChange, sheetId
|
|
5513
|
+
adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
|
|
5452
5514
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
5453
5515
|
handle(cmd: CoreCommand): void;
|
|
5454
5516
|
getCoreTables(sheetId: UID): CoreTable[];
|
|
@@ -5700,59 +5762,6 @@ declare class EvaluationDataValidationPlugin extends CoreViewPlugin {
|
|
|
5700
5762
|
private getEvaluatedCriterionValues;
|
|
5701
5763
|
}
|
|
5702
5764
|
|
|
5703
|
-
/**
|
|
5704
|
-
* Registry
|
|
5705
|
-
*
|
|
5706
|
-
* The Registry class is basically just a mapping from a string key to an object.
|
|
5707
|
-
* It is really not much more than an object. It is however useful for the
|
|
5708
|
-
* following reasons:
|
|
5709
|
-
*
|
|
5710
|
-
* 1. it let us react and execute code when someone add something to the registry
|
|
5711
|
-
* (for example, the FunctionRegistry subclass this for this purpose)
|
|
5712
|
-
* 2. it throws an error when the get operation fails
|
|
5713
|
-
* 3. it provides a chained API to add items to the registry.
|
|
5714
|
-
*/
|
|
5715
|
-
declare class Registry<T> {
|
|
5716
|
-
content: {
|
|
5717
|
-
[key: string]: T;
|
|
5718
|
-
};
|
|
5719
|
-
/**
|
|
5720
|
-
* Add an item to the registry, you can only add if there is no item
|
|
5721
|
-
* already present in the registery with the given key
|
|
5722
|
-
*
|
|
5723
|
-
* Note that this also returns the registry, so another add method call can
|
|
5724
|
-
* be chained
|
|
5725
|
-
*/
|
|
5726
|
-
add(key: string, value: T): this;
|
|
5727
|
-
/**
|
|
5728
|
-
* Replace (or add) an item to the registry
|
|
5729
|
-
*
|
|
5730
|
-
* Note that this also returns the registry, so another add method call can
|
|
5731
|
-
* be chained
|
|
5732
|
-
*/
|
|
5733
|
-
replace(key: string, value: T): this;
|
|
5734
|
-
/**
|
|
5735
|
-
* Get an item from the registry
|
|
5736
|
-
*/
|
|
5737
|
-
get(key: string): T;
|
|
5738
|
-
/**
|
|
5739
|
-
* Check if the key is already in the registry
|
|
5740
|
-
*/
|
|
5741
|
-
contains(key: string): boolean;
|
|
5742
|
-
/**
|
|
5743
|
-
* Get a list of all elements in the registry
|
|
5744
|
-
*/
|
|
5745
|
-
getAll(): T[];
|
|
5746
|
-
/**
|
|
5747
|
-
* Get a list of all keys in the registry
|
|
5748
|
-
*/
|
|
5749
|
-
getKeys(): string[];
|
|
5750
|
-
/**
|
|
5751
|
-
* Remove an item from the registry
|
|
5752
|
-
*/
|
|
5753
|
-
remove(key: string): void;
|
|
5754
|
-
}
|
|
5755
|
-
|
|
5756
5765
|
interface GridIcon {
|
|
5757
5766
|
type: string;
|
|
5758
5767
|
position: CellPosition;
|
|
@@ -5972,7 +5981,7 @@ interface Pivot<T = PivotRuntimeDefinition> {
|
|
|
5972
5981
|
}
|
|
5973
5982
|
|
|
5974
5983
|
declare class PivotUIPlugin extends CoreViewPlugin {
|
|
5975
|
-
static getters: readonly ["getPivot", "getFirstPivotFunction", "getPivotIdFromPosition", "getPivotCellFromPosition", "generateNewCalculatedMeasureName", "isPivotUnused", "isSpillPivotFormula"];
|
|
5984
|
+
static getters: readonly ["getPivot", "getFirstPivotFunction", "getPivotCellSortDirection", "getPivotIdFromPosition", "getPivotCellFromPosition", "generateNewCalculatedMeasureName", "isPivotUnused", "isSpillPivotFormula"];
|
|
5976
5985
|
private pivots;
|
|
5977
5986
|
private unusedPivots?;
|
|
5978
5987
|
private custom;
|
|
@@ -6006,6 +6015,7 @@ declare class PivotUIPlugin extends CoreViewPlugin {
|
|
|
6006
6015
|
generateNewCalculatedMeasureName(measures: PivotCoreMeasure[]): string;
|
|
6007
6016
|
getPivot(pivotId: UID): Pivot<PivotRuntimeDefinition>;
|
|
6008
6017
|
isPivotUnused(pivotId: UID): boolean;
|
|
6018
|
+
getPivotCellSortDirection(position: CellPosition): SortDirection | "none" | undefined;
|
|
6009
6019
|
/**
|
|
6010
6020
|
* Refresh the cache of a pivot
|
|
6011
6021
|
*/
|
|
@@ -6432,6 +6442,7 @@ declare class CarouselUIPlugin extends UIPlugin {
|
|
|
6432
6442
|
carouselStates: Record<UID, string | undefined>;
|
|
6433
6443
|
allowDispatch(cmd: LocalCommand): CommandResult | CommandResult[];
|
|
6434
6444
|
handle(cmd: Command): void;
|
|
6445
|
+
popOutChartFromCarousel(carouselId: UID, chartId: UID, sheetId: UID): void;
|
|
6435
6446
|
getSelectedCarouselItem(figureId: UID): CarouselItem | undefined;
|
|
6436
6447
|
getChartFromFigureId(figureId: UID): AbstractChart | undefined;
|
|
6437
6448
|
getChartIdFromFigureId(figureId: UID): UID | undefined;
|
|
@@ -6539,7 +6550,12 @@ interface ArgDefinition {
|
|
|
6539
6550
|
type: ArgType[];
|
|
6540
6551
|
default?: boolean;
|
|
6541
6552
|
defaultValue?: any;
|
|
6553
|
+
proposalValues?: ArgProposal[];
|
|
6542
6554
|
}
|
|
6555
|
+
type ArgProposal = {
|
|
6556
|
+
value: CellValue;
|
|
6557
|
+
label?: string;
|
|
6558
|
+
};
|
|
6543
6559
|
type ComputeFunction<R> = (this: EvalContext, ...args: Arg[]) => R;
|
|
6544
6560
|
interface AddFunctionDescription {
|
|
6545
6561
|
compute: ComputeFunction<FunctionResultObject | Matrix<FunctionResultObject> | CellValue | Matrix<CellValue>>;
|
|
@@ -7106,6 +7122,8 @@ interface CellClickableItem {
|
|
|
7106
7122
|
execute: (position: CellPosition, env: SpreadsheetChildEnv, isMiddleClick?: boolean) => void;
|
|
7107
7123
|
title?: string | ((position: CellPosition, getters: Getters) => string);
|
|
7108
7124
|
sequence: number;
|
|
7125
|
+
component?: ComponentConstructor;
|
|
7126
|
+
componentProps?: (position: CellPosition, getters: Getters) => Record<string, unknown>;
|
|
7109
7127
|
}
|
|
7110
7128
|
|
|
7111
7129
|
interface TopbarComponent {
|
|
@@ -7156,7 +7174,7 @@ interface ChartSubtypeProperties {
|
|
|
7156
7174
|
preview: string;
|
|
7157
7175
|
}
|
|
7158
7176
|
|
|
7159
|
-
interface Props$
|
|
7177
|
+
interface Props$1r {
|
|
7160
7178
|
label?: string;
|
|
7161
7179
|
value: boolean;
|
|
7162
7180
|
className?: string;
|
|
@@ -7165,7 +7183,7 @@ interface Props$1q {
|
|
|
7165
7183
|
disabled?: boolean;
|
|
7166
7184
|
onChange: (value: boolean) => void;
|
|
7167
7185
|
}
|
|
7168
|
-
declare class Checkbox extends Component<Props$
|
|
7186
|
+
declare class Checkbox extends Component<Props$1r, SpreadsheetChildEnv> {
|
|
7169
7187
|
static template: string;
|
|
7170
7188
|
static props: {
|
|
7171
7189
|
label: {
|
|
@@ -7200,10 +7218,10 @@ declare class Checkbox extends Component<Props$1q, SpreadsheetChildEnv> {
|
|
|
7200
7218
|
onChange(ev: InputEvent): void;
|
|
7201
7219
|
}
|
|
7202
7220
|
|
|
7203
|
-
interface Props$
|
|
7221
|
+
interface Props$1q {
|
|
7204
7222
|
class?: string;
|
|
7205
7223
|
}
|
|
7206
|
-
declare class Section extends Component<Props$
|
|
7224
|
+
declare class Section extends Component<Props$1q, SpreadsheetChildEnv> {
|
|
7207
7225
|
static template: string;
|
|
7208
7226
|
static props: {
|
|
7209
7227
|
class: {
|
|
@@ -7368,7 +7386,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
7368
7386
|
getIndex(rangeId: number | null): number | null;
|
|
7369
7387
|
}
|
|
7370
7388
|
|
|
7371
|
-
interface Props$
|
|
7389
|
+
interface Props$1p {
|
|
7372
7390
|
ranges: string[];
|
|
7373
7391
|
hasSingleRange?: boolean;
|
|
7374
7392
|
required?: boolean;
|
|
@@ -7396,7 +7414,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
7396
7414
|
* onSelectionChanged is called every time the input value
|
|
7397
7415
|
* changes.
|
|
7398
7416
|
*/
|
|
7399
|
-
declare class SelectionInput extends Component<Props$
|
|
7417
|
+
declare class SelectionInput extends Component<Props$1p, SpreadsheetChildEnv> {
|
|
7400
7418
|
static template: string;
|
|
7401
7419
|
static props: {
|
|
7402
7420
|
ranges: ArrayConstructor;
|
|
@@ -7473,7 +7491,7 @@ declare class SelectionInput extends Component<Props$1o, SpreadsheetChildEnv> {
|
|
|
7473
7491
|
confirm(): void;
|
|
7474
7492
|
}
|
|
7475
7493
|
|
|
7476
|
-
interface Props$
|
|
7494
|
+
interface Props$1o {
|
|
7477
7495
|
ranges: CustomizedDataSet[];
|
|
7478
7496
|
hasSingleRange?: boolean;
|
|
7479
7497
|
onSelectionChanged: (ranges: string[]) => void;
|
|
@@ -7486,7 +7504,7 @@ interface Props$1n {
|
|
|
7486
7504
|
canChangeDatasetOrientation?: boolean;
|
|
7487
7505
|
onFlipAxis?: (structure: string) => void;
|
|
7488
7506
|
}
|
|
7489
|
-
declare class ChartDataSeries extends Component<Props$
|
|
7507
|
+
declare class ChartDataSeries extends Component<Props$1o, SpreadsheetChildEnv> {
|
|
7490
7508
|
static template: string;
|
|
7491
7509
|
static components: {
|
|
7492
7510
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7535,12 +7553,12 @@ declare class ChartDataSeries extends Component<Props$1n, SpreadsheetChildEnv> {
|
|
|
7535
7553
|
get title(): string;
|
|
7536
7554
|
}
|
|
7537
7555
|
|
|
7538
|
-
interface Props$
|
|
7556
|
+
interface Props$1n {
|
|
7539
7557
|
messages: string[];
|
|
7540
7558
|
msgType: "warning" | "error" | "info";
|
|
7541
7559
|
singleBox?: boolean;
|
|
7542
7560
|
}
|
|
7543
|
-
declare class ValidationMessages extends Component<Props$
|
|
7561
|
+
declare class ValidationMessages extends Component<Props$1n, SpreadsheetChildEnv> {
|
|
7544
7562
|
static template: string;
|
|
7545
7563
|
static props: {
|
|
7546
7564
|
messages: ArrayConstructor;
|
|
@@ -7554,10 +7572,10 @@ declare class ValidationMessages extends Component<Props$1m, SpreadsheetChildEnv
|
|
|
7554
7572
|
get alertBoxes(): string[][];
|
|
7555
7573
|
}
|
|
7556
7574
|
|
|
7557
|
-
interface Props$
|
|
7575
|
+
interface Props$1m {
|
|
7558
7576
|
messages: string[];
|
|
7559
7577
|
}
|
|
7560
|
-
declare class ChartErrorSection extends Component<Props$
|
|
7578
|
+
declare class ChartErrorSection extends Component<Props$1m, SpreadsheetChildEnv> {
|
|
7561
7579
|
static template: string;
|
|
7562
7580
|
static components: {
|
|
7563
7581
|
Section: typeof Section;
|
|
@@ -7571,7 +7589,7 @@ declare class ChartErrorSection extends Component<Props$1l, SpreadsheetChildEnv>
|
|
|
7571
7589
|
};
|
|
7572
7590
|
}
|
|
7573
7591
|
|
|
7574
|
-
interface Props$
|
|
7592
|
+
interface Props$1l {
|
|
7575
7593
|
title?: string;
|
|
7576
7594
|
range: string;
|
|
7577
7595
|
isInvalid: boolean;
|
|
@@ -7584,7 +7602,7 @@ interface Props$1k {
|
|
|
7584
7602
|
onChange: (value: boolean) => void;
|
|
7585
7603
|
}>;
|
|
7586
7604
|
}
|
|
7587
|
-
declare class ChartLabelRange extends Component<Props$
|
|
7605
|
+
declare class ChartLabelRange extends Component<Props$1l, SpreadsheetChildEnv> {
|
|
7588
7606
|
static template: string;
|
|
7589
7607
|
static components: {
|
|
7590
7608
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7605,10 +7623,10 @@ declare class ChartLabelRange extends Component<Props$1k, SpreadsheetChildEnv> {
|
|
|
7605
7623
|
optional: boolean;
|
|
7606
7624
|
};
|
|
7607
7625
|
};
|
|
7608
|
-
static defaultProps: Partial<Props$
|
|
7626
|
+
static defaultProps: Partial<Props$1l>;
|
|
7609
7627
|
}
|
|
7610
7628
|
|
|
7611
|
-
interface Props$
|
|
7629
|
+
interface Props$1k {
|
|
7612
7630
|
chartId: UID;
|
|
7613
7631
|
definition: ChartWithDataSetDefinition;
|
|
7614
7632
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
@@ -7618,7 +7636,7 @@ interface ChartPanelState {
|
|
|
7618
7636
|
datasetDispatchResult?: DispatchResult;
|
|
7619
7637
|
labelsDispatchResult?: DispatchResult;
|
|
7620
7638
|
}
|
|
7621
|
-
declare class GenericChartConfigPanel extends Component<Props$
|
|
7639
|
+
declare class GenericChartConfigPanel extends Component<Props$1k, SpreadsheetChildEnv> {
|
|
7622
7640
|
static template: string;
|
|
7623
7641
|
static components: {
|
|
7624
7642
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -7687,11 +7705,11 @@ declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
|
7687
7705
|
onUpdateStacked(stacked: boolean): void;
|
|
7688
7706
|
}
|
|
7689
7707
|
|
|
7690
|
-
interface Props$
|
|
7708
|
+
interface Props$1j {
|
|
7691
7709
|
isCollapsed: boolean;
|
|
7692
7710
|
slots: any;
|
|
7693
7711
|
}
|
|
7694
|
-
declare class Collapse extends Component<Props$
|
|
7712
|
+
declare class Collapse extends Component<Props$1j, SpreadsheetChildEnv> {
|
|
7695
7713
|
static template: string;
|
|
7696
7714
|
static props: {
|
|
7697
7715
|
isCollapsed: BooleanConstructor;
|
|
@@ -7730,12 +7748,12 @@ interface Choice$1 {
|
|
|
7730
7748
|
value: string;
|
|
7731
7749
|
label: string;
|
|
7732
7750
|
}
|
|
7733
|
-
interface Props$
|
|
7751
|
+
interface Props$1i {
|
|
7734
7752
|
choices: Choice$1[];
|
|
7735
7753
|
onChange: (value: string) => void;
|
|
7736
7754
|
selectedValue: string;
|
|
7737
7755
|
}
|
|
7738
|
-
declare class BadgeSelection extends Component<Props$
|
|
7756
|
+
declare class BadgeSelection extends Component<Props$1i, SpreadsheetChildEnv> {
|
|
7739
7757
|
static template: string;
|
|
7740
7758
|
static props: {
|
|
7741
7759
|
choices: ArrayConstructor;
|
|
@@ -7744,14 +7762,14 @@ declare class BadgeSelection extends Component<Props$1h, SpreadsheetChildEnv> {
|
|
|
7744
7762
|
};
|
|
7745
7763
|
}
|
|
7746
7764
|
|
|
7747
|
-
interface Props$
|
|
7765
|
+
interface Props$1h {
|
|
7748
7766
|
action: ActionSpec;
|
|
7749
7767
|
hasTriangleDownIcon?: boolean;
|
|
7750
7768
|
selectedColor?: string;
|
|
7751
7769
|
class?: string;
|
|
7752
7770
|
onClick?: (ev: MouseEvent) => void;
|
|
7753
7771
|
}
|
|
7754
|
-
declare class ActionButton extends Component<Props$
|
|
7772
|
+
declare class ActionButton extends Component<Props$1h, SpreadsheetChildEnv> {
|
|
7755
7773
|
static template: string;
|
|
7756
7774
|
static props: {
|
|
7757
7775
|
action: ObjectConstructor;
|
|
@@ -7799,6 +7817,17 @@ declare enum ComponentsImportance {
|
|
|
7799
7817
|
FigureTooltip = 1002
|
|
7800
7818
|
}
|
|
7801
7819
|
declare function setDefaultSheetViewSize(size: number): void;
|
|
7820
|
+
declare const tokenColors: {
|
|
7821
|
+
readonly OPERATOR: "#3da4ab";
|
|
7822
|
+
readonly NUMBER: "#02c39a";
|
|
7823
|
+
readonly STRING: "#00a82d";
|
|
7824
|
+
readonly FUNCTION: Color;
|
|
7825
|
+
readonly DEBUGGER: "#3da4ab";
|
|
7826
|
+
readonly LEFT_PAREN: Color;
|
|
7827
|
+
readonly RIGHT_PAREN: Color;
|
|
7828
|
+
readonly ARG_SEPARATOR: Color;
|
|
7829
|
+
readonly ORPHAN_RIGHT_PAREN: "#ff0000";
|
|
7830
|
+
};
|
|
7802
7831
|
|
|
7803
7832
|
interface PopoverProps {
|
|
7804
7833
|
/**
|
|
@@ -7938,7 +7967,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7938
7967
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
7939
7968
|
}
|
|
7940
7969
|
|
|
7941
|
-
interface Props$
|
|
7970
|
+
interface Props$1g {
|
|
7942
7971
|
currentColor: string | undefined;
|
|
7943
7972
|
toggleColorPicker: () => void;
|
|
7944
7973
|
showColorPicker: boolean;
|
|
@@ -7949,7 +7978,7 @@ interface Props$1f {
|
|
|
7949
7978
|
dropdownMaxHeight?: Pixel;
|
|
7950
7979
|
class?: string;
|
|
7951
7980
|
}
|
|
7952
|
-
declare class ColorPickerWidget extends Component<Props$
|
|
7981
|
+
declare class ColorPickerWidget extends Component<Props$1g, SpreadsheetChildEnv> {
|
|
7953
7982
|
static template: string;
|
|
7954
7983
|
static props: {
|
|
7955
7984
|
currentColor: {
|
|
@@ -8010,14 +8039,14 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
8010
8039
|
interface State$5 {
|
|
8011
8040
|
isOpen: boolean;
|
|
8012
8041
|
}
|
|
8013
|
-
interface Props$
|
|
8042
|
+
interface Props$1f {
|
|
8014
8043
|
currentFontSize: number;
|
|
8015
8044
|
class: string;
|
|
8016
8045
|
onFontSizeChanged: (fontSize: number) => void;
|
|
8017
8046
|
onToggle?: () => void;
|
|
8018
8047
|
onFocusInput?: () => void;
|
|
8019
8048
|
}
|
|
8020
|
-
declare class FontSizeEditor extends Component<Props$
|
|
8049
|
+
declare class FontSizeEditor extends Component<Props$1f, SpreadsheetChildEnv> {
|
|
8021
8050
|
static template: string;
|
|
8022
8051
|
static props: {
|
|
8023
8052
|
currentFontSize: NumberConstructor;
|
|
@@ -8055,7 +8084,7 @@ declare class FontSizeEditor extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
|
8055
8084
|
onInputKeydown(ev: KeyboardEvent): void;
|
|
8056
8085
|
}
|
|
8057
8086
|
|
|
8058
|
-
interface Props$
|
|
8087
|
+
interface Props$1e {
|
|
8059
8088
|
class?: string;
|
|
8060
8089
|
style: ChartStyle;
|
|
8061
8090
|
updateStyle: (style: ChartStyle) => void;
|
|
@@ -8064,7 +8093,7 @@ interface Props$1d {
|
|
|
8064
8093
|
hasHorizontalAlign?: boolean;
|
|
8065
8094
|
hasBackgroundColor?: boolean;
|
|
8066
8095
|
}
|
|
8067
|
-
declare class TextStyler extends Component<Props$
|
|
8096
|
+
declare class TextStyler extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
8068
8097
|
static template: string;
|
|
8069
8098
|
static components: {
|
|
8070
8099
|
ColorPickerWidget: typeof ColorPickerWidget;
|
|
@@ -8132,7 +8161,7 @@ declare class TextStyler extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
|
8132
8161
|
get verticalAlignActions(): ActionSpec[];
|
|
8133
8162
|
}
|
|
8134
8163
|
|
|
8135
|
-
interface Props$
|
|
8164
|
+
interface Props$1d {
|
|
8136
8165
|
title?: string;
|
|
8137
8166
|
placeholder?: string;
|
|
8138
8167
|
updateTitle: (title: string) => void;
|
|
@@ -8141,7 +8170,7 @@ interface Props$1c {
|
|
|
8141
8170
|
defaultStyle?: Partial<TitleDesign>;
|
|
8142
8171
|
updateStyle: (style: TitleDesign) => void;
|
|
8143
8172
|
}
|
|
8144
|
-
declare class ChartTitle extends Component<Props$
|
|
8173
|
+
declare class ChartTitle extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
8145
8174
|
static template: string;
|
|
8146
8175
|
static components: {
|
|
8147
8176
|
Section: typeof Section;
|
|
@@ -8178,13 +8207,13 @@ interface AxisDefinition {
|
|
|
8178
8207
|
id: string;
|
|
8179
8208
|
name: string;
|
|
8180
8209
|
}
|
|
8181
|
-
interface Props$
|
|
8210
|
+
interface Props$1c {
|
|
8182
8211
|
chartId: UID;
|
|
8183
8212
|
definition: ChartWithAxisDefinition;
|
|
8184
8213
|
updateChart: (chartId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
8185
8214
|
axesList: AxisDefinition[];
|
|
8186
8215
|
}
|
|
8187
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
8216
|
+
declare class AxisDesignEditor extends Component<Props$1c, SpreadsheetChildEnv> {
|
|
8188
8217
|
static template: string;
|
|
8189
8218
|
static components: {
|
|
8190
8219
|
Section: typeof Section;
|
|
@@ -8216,14 +8245,14 @@ interface Choice {
|
|
|
8216
8245
|
value: unknown;
|
|
8217
8246
|
label: string;
|
|
8218
8247
|
}
|
|
8219
|
-
interface Props$
|
|
8248
|
+
interface Props$1b {
|
|
8220
8249
|
choices: Choice[];
|
|
8221
8250
|
onChange: (value: unknown) => void;
|
|
8222
8251
|
selectedValue: string;
|
|
8223
8252
|
name: string;
|
|
8224
8253
|
direction: "horizontal" | "vertical";
|
|
8225
8254
|
}
|
|
8226
|
-
declare class RadioSelection extends Component<Props$
|
|
8255
|
+
declare class RadioSelection extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
8227
8256
|
static template: string;
|
|
8228
8257
|
static props: {
|
|
8229
8258
|
choices: ArrayConstructor;
|
|
@@ -8242,13 +8271,13 @@ declare class RadioSelection extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
|
8242
8271
|
};
|
|
8243
8272
|
}
|
|
8244
8273
|
|
|
8245
|
-
interface Props$
|
|
8274
|
+
interface Props$1a {
|
|
8246
8275
|
currentColor?: string;
|
|
8247
8276
|
onColorPicked: (color: string) => void;
|
|
8248
8277
|
title?: string;
|
|
8249
8278
|
disableNoColor?: boolean;
|
|
8250
8279
|
}
|
|
8251
|
-
declare class RoundColorPicker extends Component<Props$
|
|
8280
|
+
declare class RoundColorPicker extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
8252
8281
|
static template: string;
|
|
8253
8282
|
static components: {
|
|
8254
8283
|
Section: typeof Section;
|
|
@@ -8281,14 +8310,14 @@ declare class RoundColorPicker extends Component<Props$19, SpreadsheetChildEnv>
|
|
|
8281
8310
|
get buttonStyle(): string;
|
|
8282
8311
|
}
|
|
8283
8312
|
|
|
8284
|
-
interface Props$
|
|
8313
|
+
interface Props$19 {
|
|
8285
8314
|
chartId: UID;
|
|
8286
8315
|
definition: ChartDefinition;
|
|
8287
8316
|
updateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
8288
8317
|
canUpdateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
8289
8318
|
defaultChartTitleFontSize?: number;
|
|
8290
8319
|
}
|
|
8291
|
-
declare class GeneralDesignEditor extends Component<Props$
|
|
8320
|
+
declare class GeneralDesignEditor extends Component<Props$19, SpreadsheetChildEnv> {
|
|
8292
8321
|
static template: string;
|
|
8293
8322
|
static components: {
|
|
8294
8323
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -8323,13 +8352,13 @@ declare class GeneralDesignEditor extends Component<Props$18, SpreadsheetChildEn
|
|
|
8323
8352
|
updateChartTitleStyle(style: TitleDesign): void;
|
|
8324
8353
|
}
|
|
8325
8354
|
|
|
8326
|
-
interface Props$
|
|
8355
|
+
interface Props$18 {
|
|
8327
8356
|
chartId: UID;
|
|
8328
8357
|
definition: ChartWithDataSetDefinition;
|
|
8329
8358
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8330
8359
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8331
8360
|
}
|
|
8332
|
-
declare class ChartHumanizeNumbers extends Component<Props$
|
|
8361
|
+
declare class ChartHumanizeNumbers extends Component<Props$18, SpreadsheetChildEnv> {
|
|
8333
8362
|
static template: string;
|
|
8334
8363
|
static components: {
|
|
8335
8364
|
Checkbox: typeof Checkbox;
|
|
@@ -8342,13 +8371,13 @@ declare class ChartHumanizeNumbers extends Component<Props$17, SpreadsheetChildE
|
|
|
8342
8371
|
};
|
|
8343
8372
|
}
|
|
8344
8373
|
|
|
8345
|
-
interface Props$
|
|
8374
|
+
interface Props$17 {
|
|
8346
8375
|
chartId: UID;
|
|
8347
8376
|
definition: ChartWithDataSetDefinition;
|
|
8348
8377
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8349
8378
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8350
8379
|
}
|
|
8351
|
-
declare class ChartLegend extends Component<Props$
|
|
8380
|
+
declare class ChartLegend extends Component<Props$17, SpreadsheetChildEnv> {
|
|
8352
8381
|
static template: string;
|
|
8353
8382
|
static components: {
|
|
8354
8383
|
Section: typeof Section;
|
|
@@ -8362,13 +8391,13 @@ declare class ChartLegend extends Component<Props$16, SpreadsheetChildEnv> {
|
|
|
8362
8391
|
updateLegendPosition(ev: any): void;
|
|
8363
8392
|
}
|
|
8364
8393
|
|
|
8365
|
-
interface Props$
|
|
8394
|
+
interface Props$16 {
|
|
8366
8395
|
chartId: UID;
|
|
8367
8396
|
definition: ChartWithDataSetDefinition;
|
|
8368
8397
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8369
8398
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8370
8399
|
}
|
|
8371
|
-
declare class SeriesDesignEditor extends Component<Props$
|
|
8400
|
+
declare class SeriesDesignEditor extends Component<Props$16, SpreadsheetChildEnv> {
|
|
8372
8401
|
static template: string;
|
|
8373
8402
|
static components: {
|
|
8374
8403
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -8396,13 +8425,13 @@ declare class SeriesDesignEditor extends Component<Props$15, SpreadsheetChildEnv
|
|
|
8396
8425
|
getDataSeriesLabel(): string | undefined;
|
|
8397
8426
|
}
|
|
8398
8427
|
|
|
8399
|
-
interface Props$
|
|
8428
|
+
interface Props$15 {
|
|
8400
8429
|
chartId: UID;
|
|
8401
8430
|
definition: ChartWithDataSetDefinition;
|
|
8402
8431
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8403
8432
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8404
8433
|
}
|
|
8405
|
-
declare class SeriesWithAxisDesignEditor extends Component<Props$
|
|
8434
|
+
declare class SeriesWithAxisDesignEditor extends Component<Props$15, SpreadsheetChildEnv> {
|
|
8406
8435
|
static template: string;
|
|
8407
8436
|
static components: {
|
|
8408
8437
|
SeriesDesignEditor: typeof SeriesDesignEditor;
|
|
@@ -8443,14 +8472,14 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$14, Spreadsheet
|
|
|
8443
8472
|
updateTrendLineValue(index: number, config: any): void;
|
|
8444
8473
|
}
|
|
8445
8474
|
|
|
8446
|
-
interface Props$
|
|
8475
|
+
interface Props$14 {
|
|
8447
8476
|
chartId: UID;
|
|
8448
8477
|
definition: ChartWithDataSetDefinition;
|
|
8449
8478
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8450
8479
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8451
8480
|
defaultValue?: boolean;
|
|
8452
8481
|
}
|
|
8453
|
-
declare class ChartShowValues extends Component<Props$
|
|
8482
|
+
declare class ChartShowValues extends Component<Props$14, SpreadsheetChildEnv> {
|
|
8454
8483
|
static template: string;
|
|
8455
8484
|
static components: {
|
|
8456
8485
|
Checkbox: typeof Checkbox;
|
|
@@ -8467,13 +8496,13 @@ declare class ChartShowValues extends Component<Props$13, SpreadsheetChildEnv> {
|
|
|
8467
8496
|
};
|
|
8468
8497
|
}
|
|
8469
8498
|
|
|
8470
|
-
interface Props$
|
|
8499
|
+
interface Props$13 {
|
|
8471
8500
|
chartId: UID;
|
|
8472
8501
|
definition: ChartWithDataSetDefinition;
|
|
8473
8502
|
canUpdateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8474
8503
|
updateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8475
8504
|
}
|
|
8476
|
-
declare class ChartWithAxisDesignPanel<P extends Props$
|
|
8505
|
+
declare class ChartWithAxisDesignPanel<P extends Props$13 = Props$13> extends Component<P, SpreadsheetChildEnv> {
|
|
8477
8506
|
static template: string;
|
|
8478
8507
|
static components: {
|
|
8479
8508
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -8494,13 +8523,13 @@ declare class ChartWithAxisDesignPanel<P extends Props$12 = Props$12> extends Co
|
|
|
8494
8523
|
get axesList(): AxisDefinition[];
|
|
8495
8524
|
}
|
|
8496
8525
|
|
|
8497
|
-
interface Props$
|
|
8526
|
+
interface Props$12 {
|
|
8498
8527
|
chartId: UID;
|
|
8499
8528
|
definition: GaugeChartDefinition;
|
|
8500
8529
|
canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8501
8530
|
updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8502
8531
|
}
|
|
8503
|
-
declare class GaugeChartConfigPanel extends Component<Props$
|
|
8532
|
+
declare class GaugeChartConfigPanel extends Component<Props$12, SpreadsheetChildEnv> {
|
|
8504
8533
|
static template: string;
|
|
8505
8534
|
static components: {
|
|
8506
8535
|
ChartErrorSection: typeof ChartErrorSection;
|
|
@@ -8565,13 +8594,13 @@ interface EnrichedToken extends Token {
|
|
|
8565
8594
|
isInHoverContext?: boolean;
|
|
8566
8595
|
}
|
|
8567
8596
|
|
|
8568
|
-
interface Props$
|
|
8597
|
+
interface Props$11 {
|
|
8569
8598
|
proposals: AutoCompleteProposal[];
|
|
8570
8599
|
selectedIndex: number | undefined;
|
|
8571
8600
|
onValueSelected: (value: string) => void;
|
|
8572
8601
|
onValueHovered: (index: string) => void;
|
|
8573
8602
|
}
|
|
8574
|
-
declare class TextValueProvider extends Component<Props$
|
|
8603
|
+
declare class TextValueProvider extends Component<Props$11> {
|
|
8575
8604
|
static template: string;
|
|
8576
8605
|
static props: {
|
|
8577
8606
|
proposals: ArrayConstructor;
|
|
@@ -8628,11 +8657,11 @@ declare class ContentEditableHelper {
|
|
|
8628
8657
|
getText(): string;
|
|
8629
8658
|
}
|
|
8630
8659
|
|
|
8631
|
-
interface Props
|
|
8660
|
+
interface Props$10 {
|
|
8632
8661
|
functionDescription: FunctionDescription;
|
|
8633
8662
|
argsToFocus: number[];
|
|
8634
8663
|
}
|
|
8635
|
-
declare class FunctionDescriptionProvider extends Component<Props
|
|
8664
|
+
declare class FunctionDescriptionProvider extends Component<Props$10, SpreadsheetChildEnv> {
|
|
8636
8665
|
static template: string;
|
|
8637
8666
|
static props: {
|
|
8638
8667
|
functionDescription: ObjectConstructor;
|
|
@@ -8643,15 +8672,15 @@ declare class FunctionDescriptionProvider extends Component<Props$$, Spreadsheet
|
|
|
8643
8672
|
};
|
|
8644
8673
|
private state;
|
|
8645
8674
|
toggle(): void;
|
|
8646
|
-
getContext(): Props
|
|
8675
|
+
getContext(): Props$10;
|
|
8647
8676
|
get formulaArgSeparator(): string;
|
|
8648
8677
|
}
|
|
8649
8678
|
|
|
8650
|
-
interface Props
|
|
8679
|
+
interface Props$$ {
|
|
8651
8680
|
anchorRect: Rect;
|
|
8652
8681
|
content: string;
|
|
8653
8682
|
}
|
|
8654
|
-
declare class SpeechBubble extends Component<Props
|
|
8683
|
+
declare class SpeechBubble extends Component<Props$$, SpreadsheetChildEnv> {
|
|
8655
8684
|
static template: string;
|
|
8656
8685
|
static props: {
|
|
8657
8686
|
content: StringConstructor;
|
|
@@ -8663,17 +8692,6 @@ declare class SpeechBubble extends Component<Props$_, SpreadsheetChildEnv> {
|
|
|
8663
8692
|
setup(): void;
|
|
8664
8693
|
}
|
|
8665
8694
|
|
|
8666
|
-
declare const tokenColors: {
|
|
8667
|
-
readonly OPERATOR: "#3da4ab";
|
|
8668
|
-
readonly NUMBER: "#02c39a";
|
|
8669
|
-
readonly STRING: "#00a82d";
|
|
8670
|
-
readonly FUNCTION: Color;
|
|
8671
|
-
readonly DEBUGGER: "#3da4ab";
|
|
8672
|
-
readonly LEFT_PAREN: Color;
|
|
8673
|
-
readonly RIGHT_PAREN: Color;
|
|
8674
|
-
readonly ARG_SEPARATOR: Color;
|
|
8675
|
-
readonly ORPHAN_RIGHT_PAREN: "#ff0000";
|
|
8676
|
-
};
|
|
8677
8695
|
interface ComposerSelection {
|
|
8678
8696
|
start: number;
|
|
8679
8697
|
end: number;
|
|
@@ -8696,8 +8714,8 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
|
8696
8714
|
private autoCompleteKeepLast;
|
|
8697
8715
|
protected notificationStore: {
|
|
8698
8716
|
readonly notifyUser: (notification: InformationNotification) => void;
|
|
8699
|
-
readonly askConfirmation: (content: string, confirm: () => void, cancel?: (() => void) | undefined) => void;
|
|
8700
8717
|
readonly raiseError: (text: string, callback?: (() => void) | undefined) => void;
|
|
8718
|
+
readonly askConfirmation: (content: string, confirm: () => void, cancel?: (() => void) | undefined) => void;
|
|
8701
8719
|
readonly updateNotificationCallbacks: (methods: Partial<NotificationStoreMethods>) => void;
|
|
8702
8720
|
readonly mutators: readonly ["notifyUser", "raiseError", "askConfirmation", "updateNotificationCallbacks"];
|
|
8703
8721
|
};
|
|
@@ -8828,6 +8846,7 @@ declare class CellComposerStore extends AbstractComposerStore {
|
|
|
8828
8846
|
private onAddElements;
|
|
8829
8847
|
protected confirmEdition(content: string): void;
|
|
8830
8848
|
protected getComposerContent(position: CellPosition): string;
|
|
8849
|
+
private getPrettifiedFormula;
|
|
8831
8850
|
private numberComposerContent;
|
|
8832
8851
|
/** Add headers at the end of the sheet so the formula in the composer has enough space to spread */
|
|
8833
8852
|
private addHeadersForSpreadingFormula;
|
|
@@ -9064,7 +9083,7 @@ interface AutoCompleteProviderDefinition {
|
|
|
9064
9083
|
}, tokenAtCursor: EnrichedToken, text: string): void;
|
|
9065
9084
|
}
|
|
9066
9085
|
|
|
9067
|
-
interface Props$
|
|
9086
|
+
interface Props$_ {
|
|
9068
9087
|
onConfirm: (content: string) => void;
|
|
9069
9088
|
composerContent: string;
|
|
9070
9089
|
defaultRangeSheetId: UID;
|
|
@@ -9076,7 +9095,7 @@ interface Props$Z {
|
|
|
9076
9095
|
invalid?: boolean;
|
|
9077
9096
|
getContextualColoredSymbolToken?: (token: Token) => Color;
|
|
9078
9097
|
}
|
|
9079
|
-
declare class StandaloneComposer extends Component<Props$
|
|
9098
|
+
declare class StandaloneComposer extends Component<Props$_, SpreadsheetChildEnv> {
|
|
9080
9099
|
static template: string;
|
|
9081
9100
|
static props: {
|
|
9082
9101
|
composerContent: {
|
|
@@ -9139,13 +9158,13 @@ interface PanelState {
|
|
|
9139
9158
|
sectionRuleCancelledReasons?: CommandResult[];
|
|
9140
9159
|
sectionRule: SectionRule;
|
|
9141
9160
|
}
|
|
9142
|
-
interface Props$
|
|
9161
|
+
interface Props$Z {
|
|
9143
9162
|
chartId: UID;
|
|
9144
9163
|
definition: GaugeChartDefinition;
|
|
9145
9164
|
canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
9146
9165
|
updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
9147
9166
|
}
|
|
9148
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
9167
|
+
declare class GaugeChartDesignPanel extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
9149
9168
|
static template: string;
|
|
9150
9169
|
static components: {
|
|
9151
9170
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -9196,13 +9215,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
9196
9215
|
onUpdateCumulative(cumulative: boolean): void;
|
|
9197
9216
|
}
|
|
9198
9217
|
|
|
9199
|
-
interface Props$
|
|
9218
|
+
interface Props$Y {
|
|
9200
9219
|
chartId: UID;
|
|
9201
9220
|
definition: ScorecardChartDefinition;
|
|
9202
9221
|
canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9203
9222
|
updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9204
9223
|
}
|
|
9205
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
9224
|
+
declare class ScorecardChartConfigPanel extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
9206
9225
|
static template: string;
|
|
9207
9226
|
static components: {
|
|
9208
9227
|
SelectionInput: typeof SelectionInput;
|
|
@@ -9231,13 +9250,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$X, SpreadsheetCh
|
|
|
9231
9250
|
}
|
|
9232
9251
|
|
|
9233
9252
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
9234
|
-
interface Props$
|
|
9253
|
+
interface Props$X {
|
|
9235
9254
|
chartId: UID;
|
|
9236
9255
|
definition: ScorecardChartDefinition;
|
|
9237
9256
|
canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9238
9257
|
updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9239
9258
|
}
|
|
9240
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
9259
|
+
declare class ScorecardChartDesignPanel extends Component<Props$X, SpreadsheetChildEnv> {
|
|
9241
9260
|
static template: string;
|
|
9242
9261
|
static components: {
|
|
9243
9262
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -9422,11 +9441,11 @@ declare class ChartAnimationStore extends SpreadsheetStore {
|
|
|
9422
9441
|
enableAnimationForChart(chartId: UID): string;
|
|
9423
9442
|
}
|
|
9424
9443
|
|
|
9425
|
-
interface Props$
|
|
9444
|
+
interface Props$W {
|
|
9426
9445
|
chartId: UID;
|
|
9427
9446
|
isFullScreen?: boolean;
|
|
9428
9447
|
}
|
|
9429
|
-
declare class ChartJsComponent extends Component<Props$
|
|
9448
|
+
declare class ChartJsComponent extends Component<Props$W, SpreadsheetChildEnv> {
|
|
9430
9449
|
static template: string;
|
|
9431
9450
|
static props: {
|
|
9432
9451
|
chartId: StringConstructor;
|
|
@@ -9461,10 +9480,10 @@ declare class ChartJsComponent extends Component<Props$V, SpreadsheetChildEnv> {
|
|
|
9461
9480
|
get animationChartId(): string;
|
|
9462
9481
|
}
|
|
9463
9482
|
|
|
9464
|
-
interface Props$
|
|
9483
|
+
interface Props$V {
|
|
9465
9484
|
chartId: UID;
|
|
9466
9485
|
}
|
|
9467
|
-
declare class ScorecardChart$1 extends Component<Props$
|
|
9486
|
+
declare class ScorecardChart$1 extends Component<Props$V, SpreadsheetChildEnv> {
|
|
9468
9487
|
static template: string;
|
|
9469
9488
|
static props: {
|
|
9470
9489
|
chartId: StringConstructor;
|
|
@@ -9540,7 +9559,7 @@ declare class Menu extends Component<MenuProps, SpreadsheetChildEnv> {
|
|
|
9540
9559
|
onClickMenu(menu: Action, ev: CustomEvent): void;
|
|
9541
9560
|
}
|
|
9542
9561
|
|
|
9543
|
-
interface Props$
|
|
9562
|
+
interface Props$U {
|
|
9544
9563
|
anchorRect: Rect;
|
|
9545
9564
|
popoverPositioning: PopoverPropsPosition;
|
|
9546
9565
|
menuItems: Action[];
|
|
@@ -9560,7 +9579,7 @@ interface MenuState {
|
|
|
9560
9579
|
menuItems: Action[];
|
|
9561
9580
|
isHoveringChild?: boolean;
|
|
9562
9581
|
}
|
|
9563
|
-
declare class MenuPopover extends Component<Props$
|
|
9582
|
+
declare class MenuPopover extends Component<Props$U, SpreadsheetChildEnv> {
|
|
9564
9583
|
static template: string;
|
|
9565
9584
|
static props: {
|
|
9566
9585
|
anchorRect: ObjectConstructor;
|
|
@@ -9640,7 +9659,7 @@ declare class MenuPopover extends Component<Props$T, SpreadsheetChildEnv> {
|
|
|
9640
9659
|
}
|
|
9641
9660
|
|
|
9642
9661
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
9643
|
-
interface Props$
|
|
9662
|
+
interface Props$T {
|
|
9644
9663
|
figureUI: FigureUI;
|
|
9645
9664
|
style: string;
|
|
9646
9665
|
class: string;
|
|
@@ -9648,7 +9667,7 @@ interface Props$S {
|
|
|
9648
9667
|
onMouseDown: (ev: MouseEvent) => void;
|
|
9649
9668
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
9650
9669
|
}
|
|
9651
|
-
declare class FigureComponent extends Component<Props$
|
|
9670
|
+
declare class FigureComponent extends Component<Props$T, SpreadsheetChildEnv> {
|
|
9652
9671
|
static template: string;
|
|
9653
9672
|
static props: {
|
|
9654
9673
|
figureUI: ObjectConstructor;
|
|
@@ -9704,7 +9723,7 @@ declare class FigureComponent extends Component<Props$S, SpreadsheetChildEnv> {
|
|
|
9704
9723
|
editWrapperStyle(properties: CSSProperties): void;
|
|
9705
9724
|
}
|
|
9706
9725
|
|
|
9707
|
-
interface Props$
|
|
9726
|
+
interface Props$S {
|
|
9708
9727
|
chartId: UID;
|
|
9709
9728
|
}
|
|
9710
9729
|
interface MenuItem {
|
|
@@ -9714,7 +9733,7 @@ interface MenuItem {
|
|
|
9714
9733
|
onClick: () => void;
|
|
9715
9734
|
preview?: string;
|
|
9716
9735
|
}
|
|
9717
|
-
declare class ChartDashboardMenu extends Component<Props$
|
|
9736
|
+
declare class ChartDashboardMenu extends Component<Props$S, SpreadsheetChildEnv> {
|
|
9718
9737
|
static template: string;
|
|
9719
9738
|
static components: {
|
|
9720
9739
|
MenuPopover: typeof MenuPopover;
|
|
@@ -9723,7 +9742,6 @@ declare class ChartDashboardMenu extends Component<Props$R, SpreadsheetChildEnv>
|
|
|
9723
9742
|
chartId: StringConstructor;
|
|
9724
9743
|
};
|
|
9725
9744
|
private fullScreenFigureStore;
|
|
9726
|
-
private store;
|
|
9727
9745
|
private menuState;
|
|
9728
9746
|
setup(): void;
|
|
9729
9747
|
getMenuItems(): MenuItem[];
|
|
@@ -9732,12 +9750,12 @@ declare class ChartDashboardMenu extends Component<Props$R, SpreadsheetChildEnv>
|
|
|
9732
9750
|
get fullScreenMenuItem(): MenuItem | undefined;
|
|
9733
9751
|
}
|
|
9734
9752
|
|
|
9735
|
-
interface Props$
|
|
9753
|
+
interface Props$R {
|
|
9736
9754
|
figureUI: FigureUI;
|
|
9737
9755
|
onFigureDeleted: () => void;
|
|
9738
9756
|
editFigureStyle?: (properties: CSSProperties) => void;
|
|
9739
9757
|
}
|
|
9740
|
-
declare class ChartFigure extends Component<Props$
|
|
9758
|
+
declare class ChartFigure extends Component<Props$R, SpreadsheetChildEnv> {
|
|
9741
9759
|
static template: string;
|
|
9742
9760
|
static props: {
|
|
9743
9761
|
figureUI: ObjectConstructor;
|
|
@@ -9767,7 +9785,7 @@ declare class DelayedHoveredCellStore extends SpreadsheetStore {
|
|
|
9767
9785
|
|
|
9768
9786
|
type DnDDirection = "all" | "vertical" | "horizontal";
|
|
9769
9787
|
|
|
9770
|
-
interface Props$
|
|
9788
|
+
interface Props$Q {
|
|
9771
9789
|
isVisible: boolean;
|
|
9772
9790
|
position: Position;
|
|
9773
9791
|
}
|
|
@@ -9779,7 +9797,7 @@ interface State$4 {
|
|
|
9779
9797
|
position: Position;
|
|
9780
9798
|
handler: boolean;
|
|
9781
9799
|
}
|
|
9782
|
-
declare class Autofill extends Component<Props$
|
|
9800
|
+
declare class Autofill extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
9783
9801
|
static template: string;
|
|
9784
9802
|
static props: {
|
|
9785
9803
|
position: ObjectConstructor;
|
|
@@ -9819,7 +9837,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
9819
9837
|
get tagStyle(): string;
|
|
9820
9838
|
}
|
|
9821
9839
|
|
|
9822
|
-
interface Props$
|
|
9840
|
+
interface Props$P {
|
|
9823
9841
|
gridDims: DOMDimension;
|
|
9824
9842
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
9825
9843
|
}
|
|
@@ -9827,7 +9845,7 @@ interface Props$O {
|
|
|
9827
9845
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
9828
9846
|
* It also applies the style of the cell to the composer input.
|
|
9829
9847
|
*/
|
|
9830
|
-
declare class GridComposer extends Component<Props$
|
|
9848
|
+
declare class GridComposer extends Component<Props$P, SpreadsheetChildEnv> {
|
|
9831
9849
|
static template: string;
|
|
9832
9850
|
static props: {
|
|
9833
9851
|
gridDims: ObjectConstructor;
|
|
@@ -9871,7 +9889,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
9871
9889
|
}
|
|
9872
9890
|
|
|
9873
9891
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
9874
|
-
interface Props$
|
|
9892
|
+
interface Props$O {
|
|
9875
9893
|
onFigureDeleted: () => void;
|
|
9876
9894
|
}
|
|
9877
9895
|
interface Container {
|
|
@@ -9952,7 +9970,7 @@ interface DndState {
|
|
|
9952
9970
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
9953
9971
|
*
|
|
9954
9972
|
*/
|
|
9955
|
-
declare class FiguresContainer extends Component<Props$
|
|
9973
|
+
declare class FiguresContainer extends Component<Props$O, SpreadsheetChildEnv> {
|
|
9956
9974
|
static template: string;
|
|
9957
9975
|
static props: {
|
|
9958
9976
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -9990,10 +10008,10 @@ declare class FiguresContainer extends Component<Props$N, SpreadsheetChildEnv> {
|
|
|
9990
10008
|
private getCarouselOverlappingChart;
|
|
9991
10009
|
}
|
|
9992
10010
|
|
|
9993
|
-
interface Props$
|
|
10011
|
+
interface Props$N {
|
|
9994
10012
|
focusGrid: () => void;
|
|
9995
10013
|
}
|
|
9996
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
10014
|
+
declare class GridAddRowsFooter extends Component<Props$N, SpreadsheetChildEnv> {
|
|
9997
10015
|
static template: string;
|
|
9998
10016
|
static props: {
|
|
9999
10017
|
focusGrid: FunctionConstructor;
|
|
@@ -10017,7 +10035,7 @@ declare class GridAddRowsFooter extends Component<Props$M, SpreadsheetChildEnv>
|
|
|
10017
10035
|
private onExternalClick;
|
|
10018
10036
|
}
|
|
10019
10037
|
|
|
10020
|
-
interface Props$
|
|
10038
|
+
interface Props$M {
|
|
10021
10039
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
10022
10040
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, ev: PointerEvent | MouseEvent) => void;
|
|
10023
10041
|
onCellRightClicked: (col: HeaderIndex, row: HeaderIndex, coordinates: DOMCoordinates) => void;
|
|
@@ -10030,7 +10048,7 @@ interface Props$L {
|
|
|
10030
10048
|
height: number;
|
|
10031
10049
|
};
|
|
10032
10050
|
}
|
|
10033
|
-
declare class GridOverlay extends Component<Props$
|
|
10051
|
+
declare class GridOverlay extends Component<Props$M, SpreadsheetChildEnv> {
|
|
10034
10052
|
static template: string;
|
|
10035
10053
|
static props: {
|
|
10036
10054
|
onCellDoubleClicked: {
|
|
@@ -10090,12 +10108,12 @@ declare class GridOverlay extends Component<Props$L, SpreadsheetChildEnv> {
|
|
|
10090
10108
|
private getInteractiveIconAtEvent;
|
|
10091
10109
|
}
|
|
10092
10110
|
|
|
10093
|
-
interface Props$
|
|
10111
|
+
interface Props$L {
|
|
10094
10112
|
gridRect: Rect;
|
|
10095
10113
|
onClosePopover: () => void;
|
|
10096
10114
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
10097
10115
|
}
|
|
10098
|
-
declare class GridPopover extends Component<Props$
|
|
10116
|
+
declare class GridPopover extends Component<Props$L, SpreadsheetChildEnv> {
|
|
10099
10117
|
static template: string;
|
|
10100
10118
|
static props: {
|
|
10101
10119
|
onClosePopover: FunctionConstructor;
|
|
@@ -10111,7 +10129,7 @@ declare class GridPopover extends Component<Props$K, SpreadsheetChildEnv> {
|
|
|
10111
10129
|
get cellPopover(): PositionedCellPopoverComponent | ClosedCellPopover;
|
|
10112
10130
|
}
|
|
10113
10131
|
|
|
10114
|
-
interface Props$
|
|
10132
|
+
interface Props$K {
|
|
10115
10133
|
headersGroups: ConsecutiveIndexes[];
|
|
10116
10134
|
offset: number;
|
|
10117
10135
|
headerRange: {
|
|
@@ -10119,7 +10137,7 @@ interface Props$J {
|
|
|
10119
10137
|
end: HeaderIndex;
|
|
10120
10138
|
};
|
|
10121
10139
|
}
|
|
10122
|
-
declare class UnhideRowHeaders extends Component<Props$
|
|
10140
|
+
declare class UnhideRowHeaders extends Component<Props$K, SpreadsheetChildEnv> {
|
|
10123
10141
|
static template: string;
|
|
10124
10142
|
static props: {
|
|
10125
10143
|
headersGroups: ArrayConstructor;
|
|
@@ -10138,7 +10156,7 @@ declare class UnhideRowHeaders extends Component<Props$J, SpreadsheetChildEnv> {
|
|
|
10138
10156
|
unhide(hiddenElements: HeaderIndex[]): void;
|
|
10139
10157
|
isVisible(header: HeaderIndex): boolean;
|
|
10140
10158
|
}
|
|
10141
|
-
declare class UnhideColumnHeaders extends Component<Props$
|
|
10159
|
+
declare class UnhideColumnHeaders extends Component<Props$K, SpreadsheetChildEnv> {
|
|
10142
10160
|
static template: string;
|
|
10143
10161
|
static props: {
|
|
10144
10162
|
headersGroups: ArrayConstructor;
|
|
@@ -10331,13 +10349,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
10331
10349
|
}
|
|
10332
10350
|
|
|
10333
10351
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
10334
|
-
interface Props$
|
|
10352
|
+
interface Props$J {
|
|
10335
10353
|
zone: Zone;
|
|
10336
10354
|
orientation: Orientation$1;
|
|
10337
10355
|
isMoving: boolean;
|
|
10338
10356
|
onMoveHighlight: (ev: PointerEvent) => void;
|
|
10339
10357
|
}
|
|
10340
|
-
declare class Border extends Component<Props$
|
|
10358
|
+
declare class Border extends Component<Props$J, SpreadsheetChildEnv> {
|
|
10341
10359
|
static template: string;
|
|
10342
10360
|
static props: {
|
|
10343
10361
|
zone: ObjectConstructor;
|
|
@@ -10350,14 +10368,14 @@ declare class Border extends Component<Props$I, SpreadsheetChildEnv> {
|
|
|
10350
10368
|
}
|
|
10351
10369
|
|
|
10352
10370
|
type Orientation = "nw" | "ne" | "sw" | "se" | "n" | "s" | "e" | "w";
|
|
10353
|
-
interface Props$
|
|
10371
|
+
interface Props$I {
|
|
10354
10372
|
zone: Zone;
|
|
10355
10373
|
color: Color;
|
|
10356
10374
|
orientation: Orientation;
|
|
10357
10375
|
isResizing: boolean;
|
|
10358
10376
|
onResizeHighlight: (ev: PointerEvent, dirX: ResizeDirection, dirY: ResizeDirection) => void;
|
|
10359
10377
|
}
|
|
10360
|
-
declare class Corner extends Component<Props$
|
|
10378
|
+
declare class Corner extends Component<Props$I, SpreadsheetChildEnv> {
|
|
10361
10379
|
static template: string;
|
|
10362
10380
|
static props: {
|
|
10363
10381
|
zone: ObjectConstructor;
|
|
@@ -10406,7 +10424,7 @@ declare class Highlight extends Component<HighlightProps, SpreadsheetChildEnv> {
|
|
|
10406
10424
|
|
|
10407
10425
|
type ScrollDirection = "horizontal" | "vertical";
|
|
10408
10426
|
|
|
10409
|
-
interface Props$
|
|
10427
|
+
interface Props$H {
|
|
10410
10428
|
width: Pixel;
|
|
10411
10429
|
height: Pixel;
|
|
10412
10430
|
direction: ScrollDirection;
|
|
@@ -10414,7 +10432,7 @@ interface Props$G {
|
|
|
10414
10432
|
offset: Pixel;
|
|
10415
10433
|
onScroll: (offset: Pixel) => void;
|
|
10416
10434
|
}
|
|
10417
|
-
declare class ScrollBar extends Component<Props$
|
|
10435
|
+
declare class ScrollBar extends Component<Props$H> {
|
|
10418
10436
|
static props: {
|
|
10419
10437
|
width: {
|
|
10420
10438
|
type: NumberConstructor;
|
|
@@ -10442,10 +10460,10 @@ declare class ScrollBar extends Component<Props$G> {
|
|
|
10442
10460
|
onScroll(ev: any): void;
|
|
10443
10461
|
}
|
|
10444
10462
|
|
|
10445
|
-
interface Props$
|
|
10463
|
+
interface Props$G {
|
|
10446
10464
|
leftOffset: number;
|
|
10447
10465
|
}
|
|
10448
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
10466
|
+
declare class HorizontalScrollBar extends Component<Props$G, SpreadsheetChildEnv> {
|
|
10449
10467
|
static props: {
|
|
10450
10468
|
leftOffset: {
|
|
10451
10469
|
type: NumberConstructor;
|
|
@@ -10471,10 +10489,10 @@ declare class HorizontalScrollBar extends Component<Props$F, SpreadsheetChildEnv
|
|
|
10471
10489
|
onScroll(offset: any): void;
|
|
10472
10490
|
}
|
|
10473
10491
|
|
|
10474
|
-
interface Props$
|
|
10492
|
+
interface Props$F {
|
|
10475
10493
|
topOffset: number;
|
|
10476
10494
|
}
|
|
10477
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
10495
|
+
declare class VerticalScrollBar extends Component<Props$F, SpreadsheetChildEnv> {
|
|
10478
10496
|
static props: {
|
|
10479
10497
|
topOffset: {
|
|
10480
10498
|
type: NumberConstructor;
|
|
@@ -10509,13 +10527,13 @@ declare class Selection extends Component<{}, SpreadsheetChildEnv> {
|
|
|
10509
10527
|
get highlightProps(): HighlightProps;
|
|
10510
10528
|
}
|
|
10511
10529
|
|
|
10512
|
-
interface Props$
|
|
10530
|
+
interface Props$E {
|
|
10513
10531
|
table: Table;
|
|
10514
10532
|
}
|
|
10515
10533
|
interface State$3 {
|
|
10516
10534
|
highlightZone: Zone | undefined;
|
|
10517
10535
|
}
|
|
10518
|
-
declare class TableResizer extends Component<Props$
|
|
10536
|
+
declare class TableResizer extends Component<Props$E, SpreadsheetChildEnv> {
|
|
10519
10537
|
static template: string;
|
|
10520
10538
|
static props: {
|
|
10521
10539
|
table: ObjectConstructor;
|
|
@@ -10544,11 +10562,11 @@ declare class TableResizer extends Component<Props$D, SpreadsheetChildEnv> {
|
|
|
10544
10562
|
* - a vertical resizer (same, for rows)
|
|
10545
10563
|
*/
|
|
10546
10564
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
10547
|
-
interface Props$
|
|
10565
|
+
interface Props$D {
|
|
10548
10566
|
exposeFocus: (focus: () => void) => void;
|
|
10549
10567
|
getGridSize: () => DOMDimension;
|
|
10550
10568
|
}
|
|
10551
|
-
declare class Grid extends Component<Props$
|
|
10569
|
+
declare class Grid extends Component<Props$D, SpreadsheetChildEnv> {
|
|
10552
10570
|
static template: string;
|
|
10553
10571
|
static props: {
|
|
10554
10572
|
exposeFocus: FunctionConstructor;
|
|
@@ -10664,7 +10682,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
10664
10682
|
private getChartDefinitionFromContextCreation;
|
|
10665
10683
|
}
|
|
10666
10684
|
|
|
10667
|
-
interface Props$
|
|
10685
|
+
interface Props$C {
|
|
10668
10686
|
chartId: UID;
|
|
10669
10687
|
chartPanelStore: MainChartPanelStore;
|
|
10670
10688
|
}
|
|
@@ -10672,7 +10690,7 @@ interface ChartTypePickerState {
|
|
|
10672
10690
|
popoverProps: PopoverProps | undefined;
|
|
10673
10691
|
popoverStyle: string;
|
|
10674
10692
|
}
|
|
10675
|
-
declare class ChartTypePicker extends Component<Props$
|
|
10693
|
+
declare class ChartTypePicker extends Component<Props$C, SpreadsheetChildEnv> {
|
|
10676
10694
|
static template: string;
|
|
10677
10695
|
static components: {
|
|
10678
10696
|
Section: typeof Section;
|
|
@@ -10708,11 +10726,11 @@ declare class ChartTypePicker extends Component<Props$B, SpreadsheetChildEnv> {
|
|
|
10708
10726
|
private closePopover;
|
|
10709
10727
|
}
|
|
10710
10728
|
|
|
10711
|
-
interface Props$
|
|
10729
|
+
interface Props$B {
|
|
10712
10730
|
onCloseSidePanel: () => void;
|
|
10713
10731
|
chartId: UID;
|
|
10714
10732
|
}
|
|
10715
|
-
declare class ChartPanel extends Component<Props$
|
|
10733
|
+
declare class ChartPanel extends Component<Props$B, SpreadsheetChildEnv> {
|
|
10716
10734
|
static template: string;
|
|
10717
10735
|
static components: {
|
|
10718
10736
|
Section: typeof Section;
|
|
@@ -10735,11 +10753,11 @@ declare class ChartPanel extends Component<Props$A, SpreadsheetChildEnv> {
|
|
|
10735
10753
|
private getChartDefinition;
|
|
10736
10754
|
}
|
|
10737
10755
|
|
|
10738
|
-
interface Props$
|
|
10756
|
+
interface Props$A {
|
|
10739
10757
|
onValueChange: (value: number) => void;
|
|
10740
10758
|
value: number;
|
|
10741
10759
|
}
|
|
10742
|
-
declare class PieHoleSize extends Component<Props$
|
|
10760
|
+
declare class PieHoleSize extends Component<Props$A, SpreadsheetChildEnv> {
|
|
10743
10761
|
static template: string;
|
|
10744
10762
|
static components: {
|
|
10745
10763
|
Section: typeof Section;
|
|
@@ -10752,13 +10770,13 @@ declare class PieHoleSize extends Component<Props$z, SpreadsheetChildEnv> {
|
|
|
10752
10770
|
onChange(value: string): void;
|
|
10753
10771
|
}
|
|
10754
10772
|
|
|
10755
|
-
interface Props$
|
|
10773
|
+
interface Props$z {
|
|
10756
10774
|
chartId: UID;
|
|
10757
10775
|
definition: PieChartDefinition;
|
|
10758
10776
|
canUpdateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10759
10777
|
updateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10760
10778
|
}
|
|
10761
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
10779
|
+
declare class PieChartDesignPanel extends Component<Props$z, SpreadsheetChildEnv> {
|
|
10762
10780
|
static template: string;
|
|
10763
10781
|
static components: {
|
|
10764
10782
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -10782,10 +10800,10 @@ declare class PieChartDesignPanel extends Component<Props$y, SpreadsheetChildEnv
|
|
|
10782
10800
|
get defaultHoleSize(): number;
|
|
10783
10801
|
}
|
|
10784
10802
|
|
|
10785
|
-
interface Props$
|
|
10803
|
+
interface Props$y {
|
|
10786
10804
|
items: ActionSpec[];
|
|
10787
10805
|
}
|
|
10788
|
-
declare class CogWheelMenu extends Component<Props$
|
|
10806
|
+
declare class CogWheelMenu extends Component<Props$y, SpreadsheetChildEnv> {
|
|
10789
10807
|
static template: string;
|
|
10790
10808
|
static components: {
|
|
10791
10809
|
MenuPopover: typeof MenuPopover;
|
|
@@ -10868,14 +10886,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
10868
10886
|
get highlights(): Highlight$1[];
|
|
10869
10887
|
}
|
|
10870
10888
|
|
|
10871
|
-
interface Props$
|
|
10889
|
+
interface Props$x {
|
|
10872
10890
|
deferUpdate: boolean;
|
|
10873
10891
|
isDirty: boolean;
|
|
10874
10892
|
toggleDeferUpdate: (value: boolean) => void;
|
|
10875
10893
|
discard: () => void;
|
|
10876
10894
|
apply: () => void;
|
|
10877
10895
|
}
|
|
10878
|
-
declare class PivotDeferUpdate extends Component<Props$
|
|
10896
|
+
declare class PivotDeferUpdate extends Component<Props$x, SpreadsheetChildEnv> {
|
|
10879
10897
|
static template: string;
|
|
10880
10898
|
static props: {
|
|
10881
10899
|
deferUpdate: BooleanConstructor;
|
|
@@ -10892,11 +10910,11 @@ declare class PivotDeferUpdate extends Component<Props$w, SpreadsheetChildEnv> {
|
|
|
10892
10910
|
get deferUpdatesTooltip(): string;
|
|
10893
10911
|
}
|
|
10894
10912
|
|
|
10895
|
-
interface Props$
|
|
10913
|
+
interface Props$w {
|
|
10896
10914
|
onFieldPicked: (field: string) => void;
|
|
10897
10915
|
fields: PivotField[];
|
|
10898
10916
|
}
|
|
10899
|
-
declare class AddDimensionButton extends Component<Props$
|
|
10917
|
+
declare class AddDimensionButton extends Component<Props$w, SpreadsheetChildEnv> {
|
|
10900
10918
|
static template: string;
|
|
10901
10919
|
static components: {
|
|
10902
10920
|
Popover: typeof Popover;
|
|
@@ -10932,7 +10950,7 @@ declare class AddDimensionButton extends Component<Props$v, SpreadsheetChildEnv>
|
|
|
10932
10950
|
onKeyDown(ev: KeyboardEvent): void;
|
|
10933
10951
|
}
|
|
10934
10952
|
|
|
10935
|
-
interface Props$
|
|
10953
|
+
interface Props$v {
|
|
10936
10954
|
value: string;
|
|
10937
10955
|
onChange: (value: string) => void;
|
|
10938
10956
|
class?: string;
|
|
@@ -10941,7 +10959,7 @@ interface Props$u {
|
|
|
10941
10959
|
autofocus?: boolean;
|
|
10942
10960
|
alwaysShowBorder?: boolean;
|
|
10943
10961
|
}
|
|
10944
|
-
declare class TextInput extends Component<Props$
|
|
10962
|
+
declare class TextInput extends Component<Props$v, SpreadsheetChildEnv> {
|
|
10945
10963
|
static template: string;
|
|
10946
10964
|
static props: {
|
|
10947
10965
|
value: StringConstructor;
|
|
@@ -10976,13 +10994,13 @@ declare class TextInput extends Component<Props$u, SpreadsheetChildEnv> {
|
|
|
10976
10994
|
get inputClass(): string;
|
|
10977
10995
|
}
|
|
10978
10996
|
|
|
10979
|
-
interface Props$
|
|
10997
|
+
interface Props$u {
|
|
10980
10998
|
dimension: PivotCoreDimension | PivotCoreMeasure;
|
|
10981
10999
|
onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
|
|
10982
11000
|
onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
|
|
10983
11001
|
type: "row" | "col" | "measure";
|
|
10984
11002
|
}
|
|
10985
|
-
declare class PivotDimension extends Component<Props$
|
|
11003
|
+
declare class PivotDimension extends Component<Props$u, SpreadsheetChildEnv> {
|
|
10986
11004
|
static template: string;
|
|
10987
11005
|
static props: {
|
|
10988
11006
|
dimension: ObjectConstructor;
|
|
@@ -11006,13 +11024,13 @@ declare class PivotDimension extends Component<Props$t, SpreadsheetChildEnv> {
|
|
|
11006
11024
|
updateName(name: string): void;
|
|
11007
11025
|
}
|
|
11008
11026
|
|
|
11009
|
-
interface Props$
|
|
11027
|
+
interface Props$t {
|
|
11010
11028
|
dimension: PivotDimension$1;
|
|
11011
11029
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
11012
11030
|
availableGranularities: Set<string>;
|
|
11013
11031
|
allGranularities: string[];
|
|
11014
11032
|
}
|
|
11015
|
-
declare class PivotDimensionGranularity extends Component<Props$
|
|
11033
|
+
declare class PivotDimensionGranularity extends Component<Props$t, SpreadsheetChildEnv> {
|
|
11016
11034
|
static template: string;
|
|
11017
11035
|
static props: {
|
|
11018
11036
|
dimension: ObjectConstructor;
|
|
@@ -11037,11 +11055,11 @@ declare class PivotDimensionGranularity extends Component<Props$s, SpreadsheetCh
|
|
|
11037
11055
|
};
|
|
11038
11056
|
}
|
|
11039
11057
|
|
|
11040
|
-
interface Props$
|
|
11058
|
+
interface Props$s {
|
|
11041
11059
|
dimension: PivotDimension$1;
|
|
11042
11060
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
11043
11061
|
}
|
|
11044
|
-
declare class PivotDimensionOrder extends Component<Props$
|
|
11062
|
+
declare class PivotDimensionOrder extends Component<Props$s, SpreadsheetChildEnv> {
|
|
11045
11063
|
static template: string;
|
|
11046
11064
|
static props: {
|
|
11047
11065
|
dimension: ObjectConstructor;
|
|
@@ -11078,12 +11096,12 @@ declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type"
|
|
|
11078
11096
|
declare function toFunctionPivotValue(value: CellValue, dimension: Pick<PivotDimension$1, "type" | "granularity">): string;
|
|
11079
11097
|
declare function createCustomFields(definition: PivotCoreDefinition, fields: PivotFields): PivotFields;
|
|
11080
11098
|
|
|
11081
|
-
interface Props$
|
|
11099
|
+
interface Props$r {
|
|
11082
11100
|
pivotId: UID;
|
|
11083
11101
|
customField: PivotCustomGroupedField;
|
|
11084
11102
|
onCustomFieldUpdated: (definition: Partial<PivotCoreDefinition>) => void;
|
|
11085
11103
|
}
|
|
11086
|
-
declare class PivotCustomGroupsCollapsible extends Component<Props$
|
|
11104
|
+
declare class PivotCustomGroupsCollapsible extends Component<Props$r, SpreadsheetChildEnv> {
|
|
11087
11105
|
static template: string;
|
|
11088
11106
|
static props: {
|
|
11089
11107
|
pivotId: StringConstructor;
|
|
@@ -11103,7 +11121,7 @@ declare class PivotCustomGroupsCollapsible extends Component<Props$q, Spreadshee
|
|
|
11103
11121
|
private updateCustomField;
|
|
11104
11122
|
}
|
|
11105
11123
|
|
|
11106
|
-
interface Props$
|
|
11124
|
+
interface Props$q {
|
|
11107
11125
|
pivotId: string;
|
|
11108
11126
|
definition: PivotRuntimeDefinition;
|
|
11109
11127
|
measure: PivotMeasure;
|
|
@@ -11111,7 +11129,7 @@ interface Props$p {
|
|
|
11111
11129
|
onRemoved: () => void;
|
|
11112
11130
|
generateMeasureId: (fieldName: string, aggregator?: string) => string;
|
|
11113
11131
|
}
|
|
11114
|
-
declare class PivotMeasureEditor extends Component<Props$
|
|
11132
|
+
declare class PivotMeasureEditor extends Component<Props$q> {
|
|
11115
11133
|
static template: string;
|
|
11116
11134
|
static components: {
|
|
11117
11135
|
PivotDimension: typeof PivotDimension;
|
|
@@ -11136,11 +11154,11 @@ declare class PivotMeasureEditor extends Component<Props$p> {
|
|
|
11136
11154
|
get isCalculatedMeasureInvalid(): boolean;
|
|
11137
11155
|
}
|
|
11138
11156
|
|
|
11139
|
-
interface Props$
|
|
11157
|
+
interface Props$p {
|
|
11140
11158
|
definition: PivotRuntimeDefinition;
|
|
11141
11159
|
pivotId: UID;
|
|
11142
11160
|
}
|
|
11143
|
-
declare class PivotSortSection extends Component<Props$
|
|
11161
|
+
declare class PivotSortSection extends Component<Props$p, SpreadsheetChildEnv> {
|
|
11144
11162
|
static template: string;
|
|
11145
11163
|
static components: {
|
|
11146
11164
|
Section: typeof Section;
|
|
@@ -11157,7 +11175,7 @@ declare class PivotSortSection extends Component<Props$o, SpreadsheetChildEnv> {
|
|
|
11157
11175
|
}[];
|
|
11158
11176
|
}
|
|
11159
11177
|
|
|
11160
|
-
interface Props$
|
|
11178
|
+
interface Props$o {
|
|
11161
11179
|
definition: PivotRuntimeDefinition;
|
|
11162
11180
|
onDimensionsUpdated: (definition: Partial<PivotCoreDefinition>) => void;
|
|
11163
11181
|
unusedGroupableFields: PivotField[];
|
|
@@ -11168,7 +11186,7 @@ interface Props$n {
|
|
|
11168
11186
|
getScrollableContainerEl?: () => HTMLElement;
|
|
11169
11187
|
pivotId: UID;
|
|
11170
11188
|
}
|
|
11171
|
-
declare class PivotLayoutConfigurator extends Component<Props$
|
|
11189
|
+
declare class PivotLayoutConfigurator extends Component<Props$o, SpreadsheetChildEnv> {
|
|
11172
11190
|
static template: string;
|
|
11173
11191
|
static components: {
|
|
11174
11192
|
AddDimensionButton: typeof AddDimensionButton;
|
|
@@ -11263,11 +11281,11 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
11263
11281
|
private areDomainFieldsValid;
|
|
11264
11282
|
}
|
|
11265
11283
|
|
|
11266
|
-
interface Props$
|
|
11284
|
+
interface Props$n {
|
|
11267
11285
|
pivotId: UID;
|
|
11268
11286
|
flipAxis: () => void;
|
|
11269
11287
|
}
|
|
11270
|
-
declare class PivotTitleSection extends Component<Props$
|
|
11288
|
+
declare class PivotTitleSection extends Component<Props$n, SpreadsheetChildEnv> {
|
|
11271
11289
|
static template: string;
|
|
11272
11290
|
static components: {
|
|
11273
11291
|
CogWheelMenu: typeof CogWheelMenu;
|
|
@@ -11310,7 +11328,7 @@ declare function toString(data: FunctionResultObject | CellValue | undefined): s
|
|
|
11310
11328
|
declare function toBoolean(data: FunctionResultObject | CellValue | undefined): boolean;
|
|
11311
11329
|
declare function toJsDate(data: FunctionResultObject | CellValue | undefined, locale: Locale): DateTime;
|
|
11312
11330
|
|
|
11313
|
-
declare function arg(definition: string, description?: string): ArgDefinition;
|
|
11331
|
+
declare function arg(definition: string, description?: string, proposals?: ArgProposal[]): ArgDefinition;
|
|
11314
11332
|
|
|
11315
11333
|
declare class FunctionRegistry extends Registry<FunctionDescription> {
|
|
11316
11334
|
mapping: {
|
|
@@ -11364,6 +11382,23 @@ declare function getFirstPivotFunction(tokens: Token[]): {
|
|
|
11364
11382
|
*/
|
|
11365
11383
|
declare function getNumberOfPivotFunctions(tokens: Token[]): number;
|
|
11366
11384
|
|
|
11385
|
+
interface Props$m {
|
|
11386
|
+
position: CellPosition;
|
|
11387
|
+
sortDirection: SortDirection | "none";
|
|
11388
|
+
}
|
|
11389
|
+
declare class ClickableCellSortIcon extends Component<Props$m, SpreadsheetChildEnv> {
|
|
11390
|
+
static template: string;
|
|
11391
|
+
static props: {
|
|
11392
|
+
position: ObjectConstructor;
|
|
11393
|
+
sortDirection: StringConstructor;
|
|
11394
|
+
};
|
|
11395
|
+
private hoveredTableStore;
|
|
11396
|
+
setup(): void;
|
|
11397
|
+
get style(): string;
|
|
11398
|
+
get icon(): "fa-sort-asc" | "fa-sort-desc" | "fa-sort";
|
|
11399
|
+
getBackgroundColor(cellStyle: Style): Color;
|
|
11400
|
+
}
|
|
11401
|
+
|
|
11367
11402
|
declare class ZoomableChartJsComponent extends ChartJsComponent {
|
|
11368
11403
|
static template: string;
|
|
11369
11404
|
private store;
|
|
@@ -11400,22 +11435,6 @@ declare class ZoomableChartJsComponent extends ChartJsComponent {
|
|
|
11400
11435
|
onDoubleClickInMasterChart(ev: PointerEvent): void;
|
|
11401
11436
|
}
|
|
11402
11437
|
|
|
11403
|
-
declare class ChartDashboardMenuStore extends SpreadsheetStore {
|
|
11404
|
-
private chartId;
|
|
11405
|
-
mutators: readonly ["reset"];
|
|
11406
|
-
private originalChartDefinition;
|
|
11407
|
-
constructor(get: Get, chartId: UID);
|
|
11408
|
-
get changeChartTypeMenuItems(): {
|
|
11409
|
-
id: "line" | "bar" | "scatter" | "pie" | "radar" | "funnel" | "treemap" | "geo" | "combo" | "waterfall" | "pyramid" | "sunburst" | "scorecard" | "gauge";
|
|
11410
|
-
label: string;
|
|
11411
|
-
onClick: () => void;
|
|
11412
|
-
class: string;
|
|
11413
|
-
preview: string;
|
|
11414
|
-
}[];
|
|
11415
|
-
reset(chartId: UID): void;
|
|
11416
|
-
private updateType;
|
|
11417
|
-
}
|
|
11418
|
-
|
|
11419
11438
|
declare class FullScreenChart extends Component<{}, SpreadsheetChildEnv> {
|
|
11420
11439
|
static template: string;
|
|
11421
11440
|
static props: {};
|
|
@@ -11997,7 +12016,7 @@ declare class GaugeChart extends AbstractChart {
|
|
|
11997
12016
|
private getDefinitionWithSpecificRanges;
|
|
11998
12017
|
getDefinitionForExcel(): undefined;
|
|
11999
12018
|
getContextCreation(): ChartCreationContext;
|
|
12000
|
-
updateRanges(applyChange: ApplyRangeChange): GaugeChart;
|
|
12019
|
+
updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): GaugeChart;
|
|
12001
12020
|
}
|
|
12002
12021
|
|
|
12003
12022
|
declare class LineChart extends AbstractChart {
|
|
@@ -12435,6 +12454,8 @@ interface ClickableCell {
|
|
|
12435
12454
|
position: CellPosition;
|
|
12436
12455
|
title: string;
|
|
12437
12456
|
action: (position: CellPosition, env: SpreadsheetChildEnv, isMiddleClick?: boolean) => void;
|
|
12457
|
+
component: ComponentConstructor | undefined;
|
|
12458
|
+
componentProps: Record<string, unknown>;
|
|
12438
12459
|
}
|
|
12439
12460
|
declare class ClickableCellsStore extends SpreadsheetStore {
|
|
12440
12461
|
private _clickableCells;
|
|
@@ -13033,6 +13054,7 @@ declare const components: {
|
|
|
13033
13054
|
ChartPanel: typeof ChartPanel;
|
|
13034
13055
|
ChartFigure: typeof ChartFigure;
|
|
13035
13056
|
ChartJsComponent: typeof ChartJsComponent;
|
|
13057
|
+
ClickableCellSortIcon: typeof ClickableCellSortIcon;
|
|
13036
13058
|
ZoomableChartJsComponent: typeof ZoomableChartJsComponent;
|
|
13037
13059
|
Grid: typeof Grid;
|
|
13038
13060
|
GridOverlay: typeof GridOverlay;
|
|
@@ -13084,7 +13106,6 @@ declare const hooks: {
|
|
|
13084
13106
|
};
|
|
13085
13107
|
declare const stores: {
|
|
13086
13108
|
useStoreProvider: typeof useStoreProvider;
|
|
13087
|
-
ChartDashboardMenuStore: typeof ChartDashboardMenuStore;
|
|
13088
13109
|
DependencyContainer: typeof DependencyContainer;
|
|
13089
13110
|
CellPopoverStore: typeof CellPopoverStore;
|
|
13090
13111
|
ComposerFocusStore: typeof ComposerFocusStore;
|
|
@@ -13131,6 +13152,8 @@ declare const constants: {
|
|
|
13131
13152
|
};
|
|
13132
13153
|
};
|
|
13133
13154
|
FIGURE_ID_SPLITTER: string;
|
|
13155
|
+
GRID_ICON_EDGE_LENGTH: number;
|
|
13156
|
+
GRID_ICON_MARGIN: number;
|
|
13134
13157
|
};
|
|
13135
13158
|
declare const chartHelpers: {
|
|
13136
13159
|
getBarChartData(definition: GenericDefinition<BarChartDefinition>, dataSets: DataSet[], labelRange: Range | undefined, getters: Getters): ChartRuntimeGenerationArgs;
|
|
@@ -13654,7 +13677,6 @@ declare const chartHelpers: {
|
|
|
13654
13677
|
chartRuntimeFactory(getters: Getters): (chart: AbstractChart) => ChartRuntime;
|
|
13655
13678
|
validateChartDefinition(validator: Validator, definition: ChartDefinition): CommandResult | CommandResult[];
|
|
13656
13679
|
transformDefinition(chartSheetId: UID, definition: ChartDefinition, applyrange: RangeAdapter$1): ChartDefinition;
|
|
13657
|
-
getSmartChartDefinition(zone: Zone, getters: Getters): ChartDefinition;
|
|
13658
13680
|
chartToImageUrl(runtime: ChartRuntime, figure: Figure, type: ChartType): string | undefined;
|
|
13659
13681
|
chartToImageFile(runtime: ChartRuntime, figure: Figure, type: ChartType): Promise<File | undefined>;
|
|
13660
13682
|
CHART_COMMON_OPTIONS: {
|
|
@@ -13684,4 +13706,4 @@ declare const chartHelpers: {
|
|
|
13684
13706
|
WaterfallChart: typeof WaterfallChart;
|
|
13685
13707
|
};
|
|
13686
13708
|
|
|
13687
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, 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, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, 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, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, 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, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, 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, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, 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, PivotVisibilityOptions, 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, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as 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, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidSubtotalFormulasCommands, 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 };
|
|
13709
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgProposal, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, 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, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, 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, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, 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, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, 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, PivotVisibilityOptions, Pixel, PixelPosition, PopOutChartFromCarouselCommand, 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, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as 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, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidSubtotalFormulasCommands, 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 };
|