@odoo/o-spreadsheet 18.5.0-alpha.5 → 18.5.0-alpha.7
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 +11827 -10578
- package/dist/o-spreadsheet.d.ts +419 -264
- package/dist/o-spreadsheet.esm.js +11827 -10578
- package/dist/o-spreadsheet.iife.js +11933 -10684
- package/dist/o-spreadsheet.iife.min.js +485 -484
- package/dist/o_spreadsheet.xml +207 -50
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -31,6 +31,17 @@ interface ExcelFigureSize {
|
|
|
31
31
|
cy: number;
|
|
32
32
|
}
|
|
33
33
|
type ResizeDirection = -1 | 0 | 1;
|
|
34
|
+
interface Carousel {
|
|
35
|
+
items: CarouselItem[];
|
|
36
|
+
}
|
|
37
|
+
type CarouselItem = {
|
|
38
|
+
type: "chart";
|
|
39
|
+
chartId: UID;
|
|
40
|
+
title?: string;
|
|
41
|
+
} | {
|
|
42
|
+
type: "carouselDataView";
|
|
43
|
+
title?: string;
|
|
44
|
+
};
|
|
34
45
|
|
|
35
46
|
type ImageSVG = {
|
|
36
47
|
name: string;
|
|
@@ -958,6 +969,9 @@ interface PivotCoreDimension {
|
|
|
958
969
|
fieldName: string;
|
|
959
970
|
order?: SortDirection;
|
|
960
971
|
granularity?: Granularity | string;
|
|
972
|
+
isCustomField?: boolean;
|
|
973
|
+
parentField?: string;
|
|
974
|
+
customGroups?: PivotCustomGroup[];
|
|
961
975
|
}
|
|
962
976
|
interface PivotCoreMeasure {
|
|
963
977
|
/**
|
|
@@ -984,6 +998,7 @@ interface CommonPivotCoreDefinition {
|
|
|
984
998
|
deferUpdates?: boolean;
|
|
985
999
|
sortedColumn?: PivotSortedColumn;
|
|
986
1000
|
collapsedDomains?: PivotCollapsedDomains;
|
|
1001
|
+
customFields?: Record<string, PivotCustomGroupedField>;
|
|
987
1002
|
}
|
|
988
1003
|
interface PivotSortedColumn {
|
|
989
1004
|
order: SortDirection;
|
|
@@ -994,6 +1009,16 @@ interface PivotCollapsedDomains {
|
|
|
994
1009
|
COL: PivotDomain[];
|
|
995
1010
|
ROW: PivotDomain[];
|
|
996
1011
|
}
|
|
1012
|
+
interface PivotCustomGroupedField {
|
|
1013
|
+
parentField: string;
|
|
1014
|
+
name: string;
|
|
1015
|
+
groups: PivotCustomGroup[];
|
|
1016
|
+
}
|
|
1017
|
+
interface PivotCustomGroup {
|
|
1018
|
+
name: string;
|
|
1019
|
+
values: CellValue[];
|
|
1020
|
+
isOtherGroup?: boolean;
|
|
1021
|
+
}
|
|
997
1022
|
interface SpreadsheetPivotCoreDefinition extends CommonPivotCoreDefinition {
|
|
998
1023
|
type: "SPREADSHEET";
|
|
999
1024
|
dataSet?: {
|
|
@@ -1012,6 +1037,9 @@ interface PivotField {
|
|
|
1012
1037
|
string: string;
|
|
1013
1038
|
aggregator?: string;
|
|
1014
1039
|
help?: string;
|
|
1040
|
+
isCustomField?: boolean;
|
|
1041
|
+
parentField?: string;
|
|
1042
|
+
customGroups?: PivotCustomGroup[];
|
|
1015
1043
|
}
|
|
1016
1044
|
type PivotFields = Record<TechnicalName, PivotField | undefined>;
|
|
1017
1045
|
interface PivotMeasure extends PivotCoreMeasure {
|
|
@@ -2703,13 +2731,13 @@ interface ZoneDependentCommand {
|
|
|
2703
2731
|
zone: Zone;
|
|
2704
2732
|
}
|
|
2705
2733
|
declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
|
|
2706
|
-
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" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "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">;
|
|
2707
|
-
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" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "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">;
|
|
2708
|
-
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" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "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">;
|
|
2709
|
-
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" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "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">;
|
|
2710
|
-
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" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "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">;
|
|
2711
|
-
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" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "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">;
|
|
2712
|
-
declare const coreTypes: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT">;
|
|
2734
|
+
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">;
|
|
2735
|
+
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">;
|
|
2736
|
+
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">;
|
|
2737
|
+
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">;
|
|
2738
|
+
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">;
|
|
2739
|
+
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">;
|
|
2740
|
+
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">;
|
|
2713
2741
|
declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
|
|
2714
2742
|
declare function canExecuteInReadonly(cmd: Command): boolean;
|
|
2715
2743
|
interface UpdateCellCommand extends PositionDependentCommand {
|
|
@@ -2871,15 +2899,50 @@ interface BaseFigureCommand extends PositionDependentCommand {
|
|
|
2871
2899
|
offset: PixelPosition;
|
|
2872
2900
|
size: FigureSize;
|
|
2873
2901
|
}
|
|
2874
|
-
interface CreateChartCommand
|
|
2902
|
+
interface CreateChartCommand {
|
|
2875
2903
|
type: "CREATE_CHART";
|
|
2904
|
+
chartId: UID;
|
|
2876
2905
|
definition: ChartDefinition;
|
|
2906
|
+
sheetId: UID;
|
|
2907
|
+
figureId: UID;
|
|
2908
|
+
offset?: PixelPosition;
|
|
2909
|
+
size?: FigureSize;
|
|
2910
|
+
col?: number;
|
|
2911
|
+
row?: number;
|
|
2877
2912
|
}
|
|
2878
2913
|
interface UpdateChartCommand extends SheetDependentCommand {
|
|
2879
2914
|
type: "UPDATE_CHART";
|
|
2880
2915
|
figureId: UID;
|
|
2916
|
+
chartId: UID;
|
|
2881
2917
|
definition: ChartDefinition;
|
|
2882
2918
|
}
|
|
2919
|
+
interface DeleteChartCommand extends SheetDependentCommand {
|
|
2920
|
+
type: "DELETE_CHART";
|
|
2921
|
+
chartId: UID;
|
|
2922
|
+
}
|
|
2923
|
+
interface CreateCarouselCommand extends BaseFigureCommand {
|
|
2924
|
+
type: "CREATE_CAROUSEL";
|
|
2925
|
+
definition: Carousel;
|
|
2926
|
+
}
|
|
2927
|
+
interface UpdateCarouselCommand extends SheetDependentCommand {
|
|
2928
|
+
type: "UPDATE_CAROUSEL";
|
|
2929
|
+
figureId: UID;
|
|
2930
|
+
definition: Carousel;
|
|
2931
|
+
}
|
|
2932
|
+
interface AddNewChartToCarouselCommand extends SheetDependentCommand {
|
|
2933
|
+
type: "ADD_NEW_CHART_TO_CAROUSEL";
|
|
2934
|
+
figureId: UID;
|
|
2935
|
+
}
|
|
2936
|
+
interface AddFigureChartToCarouselCommand extends SheetDependentCommand {
|
|
2937
|
+
type: "ADD_FIGURE_CHART_TO_CAROUSEL";
|
|
2938
|
+
carouselFigureId: UID;
|
|
2939
|
+
chartFigureId: UID;
|
|
2940
|
+
}
|
|
2941
|
+
interface UpdateCarouselActiveItemCommand extends SheetDependentCommand {
|
|
2942
|
+
type: "UPDATE_CAROUSEL_ACTIVE_ITEM";
|
|
2943
|
+
figureId: UID;
|
|
2944
|
+
item: CarouselItem;
|
|
2945
|
+
}
|
|
2883
2946
|
interface CreateImageOverCommand extends BaseFigureCommand {
|
|
2884
2947
|
type: "CREATE_IMAGE";
|
|
2885
2948
|
definition: Image$1;
|
|
@@ -3291,11 +3354,11 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
|
|
|
3291
3354
|
/** CONDITIONAL FORMAT */
|
|
3292
3355
|
| AddConditionalFormatCommand | RemoveConditionalFormatCommand | MoveConditionalFormatCommand
|
|
3293
3356
|
/** FIGURES */
|
|
3294
|
-
| CreateFigureCommand | DeleteFigureCommand | UpdateFigureCommand
|
|
3357
|
+
| CreateFigureCommand | DeleteFigureCommand | UpdateFigureCommand | CreateCarouselCommand | UpdateCarouselCommand
|
|
3295
3358
|
/** FORMATTING */
|
|
3296
3359
|
| SetFormattingCommand | ClearFormattingCommand | SetZoneBordersCommand | SetBorderCommand | SetBorderTargetCommand
|
|
3297
3360
|
/** CHART */
|
|
3298
|
-
| CreateChartCommand | UpdateChartCommand
|
|
3361
|
+
| CreateChartCommand | UpdateChartCommand | DeleteChartCommand
|
|
3299
3362
|
/** IMAGE */
|
|
3300
3363
|
| CreateImageOverCommand
|
|
3301
3364
|
/** FILTERS */
|
|
@@ -3308,7 +3371,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
|
|
|
3308
3371
|
| UpdateLocaleCommand
|
|
3309
3372
|
/** PIVOT */
|
|
3310
3373
|
| AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
|
|
3311
|
-
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;
|
|
3374
|
+
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;
|
|
3312
3375
|
type Command = CoreCommand | LocalCommand;
|
|
3313
3376
|
/**
|
|
3314
3377
|
* Holds the result of a command dispatch.
|
|
@@ -3453,7 +3516,9 @@ declare const enum CommandResult {
|
|
|
3453
3516
|
ValueCellIsInvalidFormula = "ValueCellIsInvalidFormula",
|
|
3454
3517
|
InvalidDefinition = "InvalidDefinition",
|
|
3455
3518
|
InvalidColor = "InvalidColor",
|
|
3456
|
-
InvalidPivotDataSet = "InvalidPivotDataSet"
|
|
3519
|
+
InvalidPivotDataSet = "InvalidPivotDataSet",
|
|
3520
|
+
InvalidPivotCustomField = "InvalidPivotCustomField",
|
|
3521
|
+
MissingFigureArguments = "MissingFigureArguments"
|
|
3457
3522
|
}
|
|
3458
3523
|
interface CommandHandler<T> {
|
|
3459
3524
|
allowDispatch(command: T): CommandResult | CommandResult[];
|
|
@@ -3878,6 +3943,10 @@ interface GridClickModifiers {
|
|
|
3878
3943
|
type ComposerFocusType = "inactive" | "cellFocus" | "contentFocus";
|
|
3879
3944
|
type EditionMode = "editing" | "selecting" | "inactive";
|
|
3880
3945
|
type SortDirection = "asc" | "desc";
|
|
3946
|
+
interface ValueAndLabel<T = string> {
|
|
3947
|
+
value: T;
|
|
3948
|
+
label: string;
|
|
3949
|
+
}
|
|
3881
3950
|
|
|
3882
3951
|
type LocaleCode = string & Alias;
|
|
3883
3952
|
interface Locale {
|
|
@@ -4553,6 +4622,21 @@ declare class BordersPlugin extends CorePlugin<BordersPluginState> implements Bo
|
|
|
4553
4622
|
exportForExcel(data: ExcelWorkbookData): void;
|
|
4554
4623
|
}
|
|
4555
4624
|
|
|
4625
|
+
interface CarouselState {
|
|
4626
|
+
readonly carousels: Record<UID, Record<UID, Carousel | undefined> | undefined>;
|
|
4627
|
+
}
|
|
4628
|
+
declare class CarouselPlugin extends CorePlugin<CarouselState> implements CarouselState {
|
|
4629
|
+
static getters: readonly ["getCarousel", "doesCarouselExist"];
|
|
4630
|
+
readonly carousels: Record<UID, Record<UID, Carousel | undefined> | undefined>;
|
|
4631
|
+
allowDispatch(cmd: CoreCommand): CommandResult.Success | CommandResult.InvalidFigureId | CommandResult.DuplicatedFigureId;
|
|
4632
|
+
handle(cmd: CoreCommand): void;
|
|
4633
|
+
doesCarouselExist(figureId: UID): boolean;
|
|
4634
|
+
getCarousel(figureId: UID): Carousel;
|
|
4635
|
+
private removeDeletedCharts;
|
|
4636
|
+
import(data: WorkbookData): void;
|
|
4637
|
+
export(data: WorkbookData): void;
|
|
4638
|
+
}
|
|
4639
|
+
|
|
4556
4640
|
interface CoreState$1 {
|
|
4557
4641
|
cells: Record<UID, Record<UID, Cell | undefined> | undefined>;
|
|
4558
4642
|
nextId: number;
|
|
@@ -4709,28 +4793,28 @@ declare abstract class AbstractChart {
|
|
|
4709
4793
|
};
|
|
4710
4794
|
}
|
|
4711
4795
|
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
* */
|
|
4796
|
+
interface FigureChart {
|
|
4797
|
+
figureId: UID;
|
|
4798
|
+
chart: AbstractChart;
|
|
4799
|
+
}
|
|
4717
4800
|
interface ChartState {
|
|
4718
|
-
readonly charts: Record<UID,
|
|
4801
|
+
readonly charts: Record<UID, FigureChart | undefined>;
|
|
4719
4802
|
}
|
|
4720
4803
|
declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
|
|
4721
|
-
static getters: readonly ["isChartDefined", "getChartDefinition", "getChartType", "getChartIds", "getChart", "getContextCreationChart"];
|
|
4722
|
-
readonly charts: Record<UID,
|
|
4804
|
+
static getters: readonly ["isChartDefined", "getChartDefinition", "getChartType", "getChartIds", "getChart", "getFigureIdFromChartId", "getContextCreationChart"];
|
|
4805
|
+
readonly charts: Record<UID, FigureChart | undefined>;
|
|
4723
4806
|
private createChart;
|
|
4724
4807
|
private validateChartDefinition;
|
|
4725
4808
|
adaptRanges(applyChange: ApplyRangeChange): void;
|
|
4726
4809
|
allowDispatch(cmd: Command): CommandResult | CommandResult[];
|
|
4727
4810
|
handle(cmd: CoreCommand): void;
|
|
4728
|
-
getContextCreationChart(
|
|
4729
|
-
getChart(
|
|
4730
|
-
|
|
4731
|
-
|
|
4811
|
+
getContextCreationChart(chartId: UID): ChartCreationContext | undefined;
|
|
4812
|
+
getChart(chartId: UID): AbstractChart | undefined;
|
|
4813
|
+
getFigureIdFromChartId(chartId: UID): UID;
|
|
4814
|
+
getChartType(chartId: UID): ChartType;
|
|
4815
|
+
isChartDefined(chartId: UID): boolean;
|
|
4732
4816
|
getChartIds(sheetId: UID): string[];
|
|
4733
|
-
getChartDefinition(
|
|
4817
|
+
getChartDefinition(chartId: UID): ChartDefinition;
|
|
4734
4818
|
import(data: WorkbookData): void;
|
|
4735
4819
|
export(data: WorkbookData): void;
|
|
4736
4820
|
/**
|
|
@@ -4745,6 +4829,8 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
|
|
|
4745
4829
|
private checkChartDuplicate;
|
|
4746
4830
|
private checkChartExists;
|
|
4747
4831
|
private checkChartChanged;
|
|
4832
|
+
/** If the command would create a new figure, there need to be a position & offset defined in the command */
|
|
4833
|
+
private checkFigureArguments;
|
|
4748
4834
|
}
|
|
4749
4835
|
|
|
4750
4836
|
interface ConditionalFormatState {
|
|
@@ -5141,6 +5227,7 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
|
|
|
5141
5227
|
private replaceMeasureFormula;
|
|
5142
5228
|
private checkSortedColumnInMeasures;
|
|
5143
5229
|
private checkDuplicatedMeasureIds;
|
|
5230
|
+
private checkCustomFieldsAreValid;
|
|
5144
5231
|
/**
|
|
5145
5232
|
* Import the pivots
|
|
5146
5233
|
*/
|
|
@@ -5501,7 +5588,7 @@ declare class EvaluationChartPlugin extends CoreViewPlugin<EvaluationChartState>
|
|
|
5501
5588
|
charts: Record<UID, ChartRuntime | undefined>;
|
|
5502
5589
|
private createRuntimeChart;
|
|
5503
5590
|
handle(cmd: CoreViewCommand): void;
|
|
5504
|
-
getChartRuntime(
|
|
5591
|
+
getChartRuntime(chartId: UID): ChartRuntime;
|
|
5505
5592
|
/**
|
|
5506
5593
|
* Get the background and textColor of a chart based on the color of the first cell of the main range of the chart.
|
|
5507
5594
|
*/
|
|
@@ -5734,9 +5821,13 @@ declare class PivotRuntimeDefinition {
|
|
|
5734
5821
|
readonly rows: PivotDimension$1[];
|
|
5735
5822
|
readonly sortedColumn?: PivotSortedColumn;
|
|
5736
5823
|
readonly collapsedDomains?: PivotCollapsedDomains;
|
|
5824
|
+
readonly customFields?: Record<string, PivotCustomGroupedField>;
|
|
5737
5825
|
constructor(definition: CommonPivotCoreDefinition, fields: PivotFields);
|
|
5738
5826
|
getDimension(nameWithGranularity: string): PivotDimension$1;
|
|
5739
5827
|
getMeasure(id: string): PivotMeasure;
|
|
5828
|
+
get invalidAggregatorsForCustomField(): string[];
|
|
5829
|
+
private createMeasure;
|
|
5830
|
+
private createPivotDimension;
|
|
5740
5831
|
}
|
|
5741
5832
|
|
|
5742
5833
|
interface CollapsiblePivotTableColumn extends PivotTableColumn {
|
|
@@ -6304,6 +6395,19 @@ declare class TableComputedStylePlugin extends UIPlugin {
|
|
|
6304
6395
|
private getTableMapping;
|
|
6305
6396
|
}
|
|
6306
6397
|
|
|
6398
|
+
declare class CarouselUIPlugin extends UIPlugin {
|
|
6399
|
+
static getters: readonly ["getSelectedCarouselItem", "getChartFromFigureId", "getChartIdFromFigureId"];
|
|
6400
|
+
private uuidGenerator;
|
|
6401
|
+
carouselStates: Record<UID, CarouselItem | undefined>;
|
|
6402
|
+
handle(cmd: Command): void;
|
|
6403
|
+
getSelectedCarouselItem(figureId: UID): CarouselItem | undefined;
|
|
6404
|
+
getChartFromFigureId(figureId: UID): AbstractChart | undefined;
|
|
6405
|
+
getChartIdFromFigureId(figureId: UID): UID | undefined;
|
|
6406
|
+
private fixWrongCarouselState;
|
|
6407
|
+
private addNewChartToCarousel;
|
|
6408
|
+
private addFigureChartToCarousel;
|
|
6409
|
+
}
|
|
6410
|
+
|
|
6307
6411
|
declare class HeaderPositionsUIPlugin extends UIPlugin {
|
|
6308
6412
|
static getters: readonly ["getColDimensions", "getRowDimensions", "getColRowOffset"];
|
|
6309
6413
|
private headerPositions;
|
|
@@ -6384,11 +6488,11 @@ type PluginGetters<Plugin extends {
|
|
|
6384
6488
|
getters: readonly string[];
|
|
6385
6489
|
}> = Pick<InstanceType<Plugin>, GetterNames<Plugin>>;
|
|
6386
6490
|
type RangeAdapterGetters = Pick<RangeAdapter, GetterNames<typeof RangeAdapter>>;
|
|
6387
|
-
type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof HeaderSizePlugin> & PluginGetters<typeof HeaderVisibilityPlugin> & PluginGetters<typeof CellPlugin> & PluginGetters<typeof MergePlugin> & PluginGetters<typeof BordersPlugin> & PluginGetters<typeof ChartPlugin> & PluginGetters<typeof ImagePlugin> & PluginGetters<typeof FigurePlugin> & RangeAdapterGetters & PluginGetters<typeof ConditionalFormatPlugin> & PluginGetters<typeof TablePlugin> & PluginGetters<typeof SettingsPlugin> & PluginGetters<typeof HeaderGroupingPlugin> & PluginGetters<typeof DataValidationPlugin> & PluginGetters<typeof PivotCorePlugin>;
|
|
6491
|
+
type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof HeaderSizePlugin> & PluginGetters<typeof HeaderVisibilityPlugin> & PluginGetters<typeof CellPlugin> & PluginGetters<typeof MergePlugin> & PluginGetters<typeof BordersPlugin> & PluginGetters<typeof ChartPlugin> & PluginGetters<typeof ImagePlugin> & PluginGetters<typeof CarouselPlugin> & PluginGetters<typeof FigurePlugin> & RangeAdapterGetters & PluginGetters<typeof ConditionalFormatPlugin> & PluginGetters<typeof TablePlugin> & PluginGetters<typeof SettingsPlugin> & PluginGetters<typeof HeaderGroupingPlugin> & PluginGetters<typeof DataValidationPlugin> & PluginGetters<typeof PivotCorePlugin>;
|
|
6388
6492
|
type Getters = {
|
|
6389
6493
|
isReadonly: () => boolean;
|
|
6390
6494
|
isDashboard: () => boolean;
|
|
6391
|
-
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof CheckboxTogglePlugin> & PluginGetters<typeof CellIconPlugin>;
|
|
6495
|
+
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof CheckboxTogglePlugin> & PluginGetters<typeof CellIconPlugin> & PluginGetters<typeof CarouselUIPlugin>;
|
|
6392
6496
|
|
|
6393
6497
|
type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
|
|
6394
6498
|
interface ArgDefinition {
|
|
@@ -6771,6 +6875,7 @@ interface PivotRegistryItem {
|
|
|
6771
6875
|
datetimeGranularities: string[];
|
|
6772
6876
|
isMeasureCandidate: (field: PivotField) => boolean;
|
|
6773
6877
|
isGroupable: (field: PivotField) => boolean;
|
|
6878
|
+
canHaveCustomGroup: (field: PivotField) => boolean;
|
|
6774
6879
|
}
|
|
6775
6880
|
|
|
6776
6881
|
declare class ClipboardHandler<T> {
|
|
@@ -7018,7 +7123,7 @@ interface ChartSubtypeProperties {
|
|
|
7018
7123
|
preview: string;
|
|
7019
7124
|
}
|
|
7020
7125
|
|
|
7021
|
-
interface Props$
|
|
7126
|
+
interface Props$1o {
|
|
7022
7127
|
label?: string;
|
|
7023
7128
|
value: boolean;
|
|
7024
7129
|
className?: string;
|
|
@@ -7027,7 +7132,7 @@ interface Props$1n {
|
|
|
7027
7132
|
disabled?: boolean;
|
|
7028
7133
|
onChange: (value: boolean) => void;
|
|
7029
7134
|
}
|
|
7030
|
-
declare class Checkbox extends Component<Props$
|
|
7135
|
+
declare class Checkbox extends Component<Props$1o, SpreadsheetChildEnv> {
|
|
7031
7136
|
static template: string;
|
|
7032
7137
|
static props: {
|
|
7033
7138
|
label: {
|
|
@@ -7062,10 +7167,10 @@ declare class Checkbox extends Component<Props$1n, SpreadsheetChildEnv> {
|
|
|
7062
7167
|
onChange(ev: InputEvent): void;
|
|
7063
7168
|
}
|
|
7064
7169
|
|
|
7065
|
-
interface Props$
|
|
7170
|
+
interface Props$1n {
|
|
7066
7171
|
class?: string;
|
|
7067
7172
|
}
|
|
7068
|
-
declare class Section extends Component<Props$
|
|
7173
|
+
declare class Section extends Component<Props$1n, SpreadsheetChildEnv> {
|
|
7069
7174
|
static template: string;
|
|
7070
7175
|
static props: {
|
|
7071
7176
|
class: {
|
|
@@ -7230,7 +7335,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
7230
7335
|
getIndex(rangeId: number | null): number | null;
|
|
7231
7336
|
}
|
|
7232
7337
|
|
|
7233
|
-
interface Props$
|
|
7338
|
+
interface Props$1m {
|
|
7234
7339
|
ranges: string[];
|
|
7235
7340
|
hasSingleRange?: boolean;
|
|
7236
7341
|
required?: boolean;
|
|
@@ -7258,7 +7363,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
7258
7363
|
* onSelectionChanged is called every time the input value
|
|
7259
7364
|
* changes.
|
|
7260
7365
|
*/
|
|
7261
|
-
declare class SelectionInput extends Component<Props$
|
|
7366
|
+
declare class SelectionInput extends Component<Props$1m, SpreadsheetChildEnv> {
|
|
7262
7367
|
static template: string;
|
|
7263
7368
|
static props: {
|
|
7264
7369
|
ranges: ArrayConstructor;
|
|
@@ -7335,7 +7440,7 @@ declare class SelectionInput extends Component<Props$1l, SpreadsheetChildEnv> {
|
|
|
7335
7440
|
confirm(): void;
|
|
7336
7441
|
}
|
|
7337
7442
|
|
|
7338
|
-
interface Props$
|
|
7443
|
+
interface Props$1l {
|
|
7339
7444
|
ranges: CustomizedDataSet[];
|
|
7340
7445
|
hasSingleRange?: boolean;
|
|
7341
7446
|
onSelectionChanged: (ranges: string[]) => void;
|
|
@@ -7348,7 +7453,7 @@ interface Props$1k {
|
|
|
7348
7453
|
canChangeDatasetOrientation?: boolean;
|
|
7349
7454
|
onFlipAxis?: (structure: string) => void;
|
|
7350
7455
|
}
|
|
7351
|
-
declare class ChartDataSeries extends Component<Props$
|
|
7456
|
+
declare class ChartDataSeries extends Component<Props$1l, SpreadsheetChildEnv> {
|
|
7352
7457
|
static template: string;
|
|
7353
7458
|
static components: {
|
|
7354
7459
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7397,12 +7502,12 @@ declare class ChartDataSeries extends Component<Props$1k, SpreadsheetChildEnv> {
|
|
|
7397
7502
|
get title(): string;
|
|
7398
7503
|
}
|
|
7399
7504
|
|
|
7400
|
-
interface Props$
|
|
7505
|
+
interface Props$1k {
|
|
7401
7506
|
messages: string[];
|
|
7402
7507
|
msgType: "warning" | "error" | "info";
|
|
7403
7508
|
singleBox?: boolean;
|
|
7404
7509
|
}
|
|
7405
|
-
declare class ValidationMessages extends Component<Props$
|
|
7510
|
+
declare class ValidationMessages extends Component<Props$1k, SpreadsheetChildEnv> {
|
|
7406
7511
|
static template: string;
|
|
7407
7512
|
static props: {
|
|
7408
7513
|
messages: ArrayConstructor;
|
|
@@ -7416,10 +7521,10 @@ declare class ValidationMessages extends Component<Props$1j, SpreadsheetChildEnv
|
|
|
7416
7521
|
get alertBoxes(): string[][];
|
|
7417
7522
|
}
|
|
7418
7523
|
|
|
7419
|
-
interface Props$
|
|
7524
|
+
interface Props$1j {
|
|
7420
7525
|
messages: string[];
|
|
7421
7526
|
}
|
|
7422
|
-
declare class ChartErrorSection extends Component<Props$
|
|
7527
|
+
declare class ChartErrorSection extends Component<Props$1j, SpreadsheetChildEnv> {
|
|
7423
7528
|
static template: string;
|
|
7424
7529
|
static components: {
|
|
7425
7530
|
Section: typeof Section;
|
|
@@ -7433,7 +7538,7 @@ declare class ChartErrorSection extends Component<Props$1i, SpreadsheetChildEnv>
|
|
|
7433
7538
|
};
|
|
7434
7539
|
}
|
|
7435
7540
|
|
|
7436
|
-
interface Props$
|
|
7541
|
+
interface Props$1i {
|
|
7437
7542
|
title?: string;
|
|
7438
7543
|
range: string;
|
|
7439
7544
|
isInvalid: boolean;
|
|
@@ -7446,7 +7551,7 @@ interface Props$1h {
|
|
|
7446
7551
|
onChange: (value: boolean) => void;
|
|
7447
7552
|
}>;
|
|
7448
7553
|
}
|
|
7449
|
-
declare class ChartLabelRange extends Component<Props$
|
|
7554
|
+
declare class ChartLabelRange extends Component<Props$1i, SpreadsheetChildEnv> {
|
|
7450
7555
|
static template: string;
|
|
7451
7556
|
static components: {
|
|
7452
7557
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7467,20 +7572,20 @@ declare class ChartLabelRange extends Component<Props$1h, SpreadsheetChildEnv> {
|
|
|
7467
7572
|
optional: boolean;
|
|
7468
7573
|
};
|
|
7469
7574
|
};
|
|
7470
|
-
static defaultProps: Partial<Props$
|
|
7575
|
+
static defaultProps: Partial<Props$1i>;
|
|
7471
7576
|
}
|
|
7472
7577
|
|
|
7473
|
-
interface Props$
|
|
7474
|
-
|
|
7578
|
+
interface Props$1h {
|
|
7579
|
+
chartId: UID;
|
|
7475
7580
|
definition: ChartWithDataSetDefinition;
|
|
7476
|
-
canUpdateChart: (
|
|
7477
|
-
updateChart: (
|
|
7581
|
+
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7582
|
+
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
7478
7583
|
}
|
|
7479
7584
|
interface ChartPanelState {
|
|
7480
7585
|
datasetDispatchResult?: DispatchResult;
|
|
7481
7586
|
labelsDispatchResult?: DispatchResult;
|
|
7482
7587
|
}
|
|
7483
|
-
declare class GenericChartConfigPanel extends Component<Props$
|
|
7588
|
+
declare class GenericChartConfigPanel extends Component<Props$1h, SpreadsheetChildEnv> {
|
|
7484
7589
|
static template: string;
|
|
7485
7590
|
static components: {
|
|
7486
7591
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -7490,7 +7595,7 @@ declare class GenericChartConfigPanel extends Component<Props$1g, SpreadsheetChi
|
|
|
7490
7595
|
ChartErrorSection: typeof ChartErrorSection;
|
|
7491
7596
|
};
|
|
7492
7597
|
static props: {
|
|
7493
|
-
|
|
7598
|
+
chartId: StringConstructor;
|
|
7494
7599
|
definition: ObjectConstructor;
|
|
7495
7600
|
updateChart: FunctionConstructor;
|
|
7496
7601
|
canUpdateChart: FunctionConstructor;
|
|
@@ -7549,11 +7654,11 @@ declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
|
7549
7654
|
onUpdateStacked(stacked: boolean): void;
|
|
7550
7655
|
}
|
|
7551
7656
|
|
|
7552
|
-
interface Props$
|
|
7657
|
+
interface Props$1g {
|
|
7553
7658
|
isCollapsed: boolean;
|
|
7554
7659
|
slots: any;
|
|
7555
7660
|
}
|
|
7556
|
-
declare class Collapse extends Component<Props$
|
|
7661
|
+
declare class Collapse extends Component<Props$1g, SpreadsheetChildEnv> {
|
|
7557
7662
|
static template: string;
|
|
7558
7663
|
static props: {
|
|
7559
7664
|
isCollapsed: BooleanConstructor;
|
|
@@ -7592,12 +7697,12 @@ interface Choice$1 {
|
|
|
7592
7697
|
value: string;
|
|
7593
7698
|
label: string;
|
|
7594
7699
|
}
|
|
7595
|
-
interface Props$
|
|
7700
|
+
interface Props$1f {
|
|
7596
7701
|
choices: Choice$1[];
|
|
7597
7702
|
onChange: (value: string) => void;
|
|
7598
7703
|
selectedValue: string;
|
|
7599
7704
|
}
|
|
7600
|
-
declare class BadgeSelection extends Component<Props$
|
|
7705
|
+
declare class BadgeSelection extends Component<Props$1f, SpreadsheetChildEnv> {
|
|
7601
7706
|
static template: string;
|
|
7602
7707
|
static props: {
|
|
7603
7708
|
choices: ArrayConstructor;
|
|
@@ -7606,14 +7711,14 @@ declare class BadgeSelection extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
|
7606
7711
|
};
|
|
7607
7712
|
}
|
|
7608
7713
|
|
|
7609
|
-
interface Props$
|
|
7714
|
+
interface Props$1e {
|
|
7610
7715
|
action: ActionSpec;
|
|
7611
7716
|
hasTriangleDownIcon?: boolean;
|
|
7612
7717
|
selectedColor?: string;
|
|
7613
7718
|
class?: string;
|
|
7614
7719
|
onClick?: (ev: MouseEvent) => void;
|
|
7615
7720
|
}
|
|
7616
|
-
declare class ActionButton extends Component<Props$
|
|
7721
|
+
declare class ActionButton extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
7617
7722
|
static template: string;
|
|
7618
7723
|
static props: {
|
|
7619
7724
|
action: ObjectConstructor;
|
|
@@ -7800,7 +7905,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7800
7905
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
7801
7906
|
}
|
|
7802
7907
|
|
|
7803
|
-
interface Props$
|
|
7908
|
+
interface Props$1d {
|
|
7804
7909
|
currentColor: string | undefined;
|
|
7805
7910
|
toggleColorPicker: () => void;
|
|
7806
7911
|
showColorPicker: boolean;
|
|
@@ -7811,7 +7916,7 @@ interface Props$1c {
|
|
|
7811
7916
|
dropdownMaxHeight?: Pixel;
|
|
7812
7917
|
class?: string;
|
|
7813
7918
|
}
|
|
7814
|
-
declare class ColorPickerWidget extends Component<Props$
|
|
7919
|
+
declare class ColorPickerWidget extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
7815
7920
|
static template: string;
|
|
7816
7921
|
static props: {
|
|
7817
7922
|
currentColor: {
|
|
@@ -7872,14 +7977,14 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7872
7977
|
interface State$5 {
|
|
7873
7978
|
isOpen: boolean;
|
|
7874
7979
|
}
|
|
7875
|
-
interface Props$
|
|
7980
|
+
interface Props$1c {
|
|
7876
7981
|
currentFontSize: number;
|
|
7877
7982
|
class: string;
|
|
7878
7983
|
onFontSizeChanged: (fontSize: number) => void;
|
|
7879
7984
|
onToggle?: () => void;
|
|
7880
7985
|
onFocusInput?: () => void;
|
|
7881
7986
|
}
|
|
7882
|
-
declare class FontSizeEditor extends Component<Props$
|
|
7987
|
+
declare class FontSizeEditor extends Component<Props$1c, SpreadsheetChildEnv> {
|
|
7883
7988
|
static template: string;
|
|
7884
7989
|
static props: {
|
|
7885
7990
|
currentFontSize: NumberConstructor;
|
|
@@ -7917,7 +8022,7 @@ declare class FontSizeEditor extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
|
7917
8022
|
onInputKeydown(ev: KeyboardEvent): void;
|
|
7918
8023
|
}
|
|
7919
8024
|
|
|
7920
|
-
interface Props$
|
|
8025
|
+
interface Props$1b {
|
|
7921
8026
|
class?: string;
|
|
7922
8027
|
style: ChartStyle;
|
|
7923
8028
|
updateStyle: (style: ChartStyle) => void;
|
|
@@ -7926,7 +8031,7 @@ interface Props$1a {
|
|
|
7926
8031
|
hasHorizontalAlign?: boolean;
|
|
7927
8032
|
hasBackgroundColor?: boolean;
|
|
7928
8033
|
}
|
|
7929
|
-
declare class TextStyler extends Component<Props$
|
|
8034
|
+
declare class TextStyler extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
7930
8035
|
static template: string;
|
|
7931
8036
|
static components: {
|
|
7932
8037
|
ColorPickerWidget: typeof ColorPickerWidget;
|
|
@@ -7994,7 +8099,7 @@ declare class TextStyler extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
|
7994
8099
|
get verticalAlignActions(): ActionSpec[];
|
|
7995
8100
|
}
|
|
7996
8101
|
|
|
7997
|
-
interface Props$
|
|
8102
|
+
interface Props$1a {
|
|
7998
8103
|
title?: string;
|
|
7999
8104
|
placeholder?: string;
|
|
8000
8105
|
updateTitle: (title: string) => void;
|
|
@@ -8003,7 +8108,7 @@ interface Props$19 {
|
|
|
8003
8108
|
defaultStyle?: Partial<TitleDesign>;
|
|
8004
8109
|
updateStyle: (style: TitleDesign) => void;
|
|
8005
8110
|
}
|
|
8006
|
-
declare class ChartTitle extends Component<Props$
|
|
8111
|
+
declare class ChartTitle extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
8007
8112
|
static template: string;
|
|
8008
8113
|
static components: {
|
|
8009
8114
|
Section: typeof Section;
|
|
@@ -8040,13 +8145,13 @@ interface AxisDefinition {
|
|
|
8040
8145
|
id: string;
|
|
8041
8146
|
name: string;
|
|
8042
8147
|
}
|
|
8043
|
-
interface Props$
|
|
8044
|
-
|
|
8148
|
+
interface Props$19 {
|
|
8149
|
+
chartId: UID;
|
|
8045
8150
|
definition: ChartWithAxisDefinition;
|
|
8046
|
-
updateChart: (
|
|
8151
|
+
updateChart: (chartId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
8047
8152
|
axesList: AxisDefinition[];
|
|
8048
8153
|
}
|
|
8049
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
8154
|
+
declare class AxisDesignEditor extends Component<Props$19, SpreadsheetChildEnv> {
|
|
8050
8155
|
static template: string;
|
|
8051
8156
|
static components: {
|
|
8052
8157
|
Section: typeof Section;
|
|
@@ -8054,7 +8159,7 @@ declare class AxisDesignEditor extends Component<Props$18, SpreadsheetChildEnv>
|
|
|
8054
8159
|
BadgeSelection: typeof BadgeSelection;
|
|
8055
8160
|
};
|
|
8056
8161
|
static props: {
|
|
8057
|
-
|
|
8162
|
+
chartId: StringConstructor;
|
|
8058
8163
|
definition: ObjectConstructor;
|
|
8059
8164
|
updateChart: FunctionConstructor;
|
|
8060
8165
|
axesList: ArrayConstructor;
|
|
@@ -8078,14 +8183,14 @@ interface Choice {
|
|
|
8078
8183
|
value: unknown;
|
|
8079
8184
|
label: string;
|
|
8080
8185
|
}
|
|
8081
|
-
interface Props$
|
|
8186
|
+
interface Props$18 {
|
|
8082
8187
|
choices: Choice[];
|
|
8083
8188
|
onChange: (value: unknown) => void;
|
|
8084
8189
|
selectedValue: string;
|
|
8085
8190
|
name: string;
|
|
8086
8191
|
direction: "horizontal" | "vertical";
|
|
8087
8192
|
}
|
|
8088
|
-
declare class RadioSelection extends Component<Props$
|
|
8193
|
+
declare class RadioSelection extends Component<Props$18, SpreadsheetChildEnv> {
|
|
8089
8194
|
static template: string;
|
|
8090
8195
|
static props: {
|
|
8091
8196
|
choices: ArrayConstructor;
|
|
@@ -8104,13 +8209,13 @@ declare class RadioSelection extends Component<Props$17, SpreadsheetChildEnv> {
|
|
|
8104
8209
|
};
|
|
8105
8210
|
}
|
|
8106
8211
|
|
|
8107
|
-
interface Props$
|
|
8212
|
+
interface Props$17 {
|
|
8108
8213
|
currentColor?: string;
|
|
8109
8214
|
onColorPicked: (color: string) => void;
|
|
8110
8215
|
title?: string;
|
|
8111
8216
|
disableNoColor?: boolean;
|
|
8112
8217
|
}
|
|
8113
|
-
declare class RoundColorPicker extends Component<Props$
|
|
8218
|
+
declare class RoundColorPicker extends Component<Props$17, SpreadsheetChildEnv> {
|
|
8114
8219
|
static template: string;
|
|
8115
8220
|
static components: {
|
|
8116
8221
|
Section: typeof Section;
|
|
@@ -8143,14 +8248,14 @@ declare class RoundColorPicker extends Component<Props$16, SpreadsheetChildEnv>
|
|
|
8143
8248
|
get buttonStyle(): string;
|
|
8144
8249
|
}
|
|
8145
8250
|
|
|
8146
|
-
interface Props$
|
|
8147
|
-
|
|
8251
|
+
interface Props$16 {
|
|
8252
|
+
chartId: UID;
|
|
8148
8253
|
definition: ChartDefinition;
|
|
8149
|
-
updateChart: (
|
|
8150
|
-
canUpdateChart: (
|
|
8254
|
+
updateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
8255
|
+
canUpdateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
8151
8256
|
defaultChartTitleFontSize?: number;
|
|
8152
8257
|
}
|
|
8153
|
-
declare class GeneralDesignEditor extends Component<Props$
|
|
8258
|
+
declare class GeneralDesignEditor extends Component<Props$16, SpreadsheetChildEnv> {
|
|
8154
8259
|
static template: string;
|
|
8155
8260
|
static components: {
|
|
8156
8261
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -8160,7 +8265,7 @@ declare class GeneralDesignEditor extends Component<Props$15, SpreadsheetChildEn
|
|
|
8160
8265
|
RadioSelection: typeof RadioSelection;
|
|
8161
8266
|
};
|
|
8162
8267
|
static props: {
|
|
8163
|
-
|
|
8268
|
+
chartId: StringConstructor;
|
|
8164
8269
|
definition: ObjectConstructor;
|
|
8165
8270
|
updateChart: FunctionConstructor;
|
|
8166
8271
|
canUpdateChart: FunctionConstructor;
|
|
@@ -8185,19 +8290,19 @@ declare class GeneralDesignEditor extends Component<Props$15, SpreadsheetChildEn
|
|
|
8185
8290
|
updateChartTitleStyle(style: TitleDesign): void;
|
|
8186
8291
|
}
|
|
8187
8292
|
|
|
8188
|
-
interface Props$
|
|
8189
|
-
|
|
8293
|
+
interface Props$15 {
|
|
8294
|
+
chartId: UID;
|
|
8190
8295
|
definition: ChartWithDataSetDefinition;
|
|
8191
|
-
updateChart: (
|
|
8192
|
-
canUpdateChart: (
|
|
8296
|
+
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8297
|
+
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8193
8298
|
}
|
|
8194
|
-
declare class ChartLegend extends Component<Props$
|
|
8299
|
+
declare class ChartLegend extends Component<Props$15, SpreadsheetChildEnv> {
|
|
8195
8300
|
static template: string;
|
|
8196
8301
|
static components: {
|
|
8197
8302
|
Section: typeof Section;
|
|
8198
8303
|
};
|
|
8199
8304
|
static props: {
|
|
8200
|
-
|
|
8305
|
+
chartId: StringConstructor;
|
|
8201
8306
|
definition: ObjectConstructor;
|
|
8202
8307
|
updateChart: FunctionConstructor;
|
|
8203
8308
|
canUpdateChart: FunctionConstructor;
|
|
@@ -8205,13 +8310,13 @@ declare class ChartLegend extends Component<Props$14, SpreadsheetChildEnv> {
|
|
|
8205
8310
|
updateLegendPosition(ev: any): void;
|
|
8206
8311
|
}
|
|
8207
8312
|
|
|
8208
|
-
interface Props$
|
|
8209
|
-
|
|
8313
|
+
interface Props$14 {
|
|
8314
|
+
chartId: UID;
|
|
8210
8315
|
definition: ChartWithDataSetDefinition;
|
|
8211
|
-
canUpdateChart: (
|
|
8212
|
-
updateChart: (
|
|
8316
|
+
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8317
|
+
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8213
8318
|
}
|
|
8214
|
-
declare class SeriesDesignEditor extends Component<Props$
|
|
8319
|
+
declare class SeriesDesignEditor extends Component<Props$14, SpreadsheetChildEnv> {
|
|
8215
8320
|
static template: string;
|
|
8216
8321
|
static components: {
|
|
8217
8322
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -8219,7 +8324,7 @@ declare class SeriesDesignEditor extends Component<Props$13, SpreadsheetChildEnv
|
|
|
8219
8324
|
RoundColorPicker: typeof RoundColorPicker;
|
|
8220
8325
|
};
|
|
8221
8326
|
static props: {
|
|
8222
|
-
|
|
8327
|
+
chartId: StringConstructor;
|
|
8223
8328
|
definition: ObjectConstructor;
|
|
8224
8329
|
updateChart: FunctionConstructor;
|
|
8225
8330
|
canUpdateChart: FunctionConstructor;
|
|
@@ -8239,13 +8344,13 @@ declare class SeriesDesignEditor extends Component<Props$13, SpreadsheetChildEnv
|
|
|
8239
8344
|
getDataSeriesLabel(): string | undefined;
|
|
8240
8345
|
}
|
|
8241
8346
|
|
|
8242
|
-
interface Props$
|
|
8243
|
-
|
|
8347
|
+
interface Props$13 {
|
|
8348
|
+
chartId: UID;
|
|
8244
8349
|
definition: ChartWithDataSetDefinition;
|
|
8245
|
-
canUpdateChart: (
|
|
8246
|
-
updateChart: (
|
|
8350
|
+
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8351
|
+
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8247
8352
|
}
|
|
8248
|
-
declare class SeriesWithAxisDesignEditor extends Component<Props$
|
|
8353
|
+
declare class SeriesWithAxisDesignEditor extends Component<Props$13, SpreadsheetChildEnv> {
|
|
8249
8354
|
static template: string;
|
|
8250
8355
|
static components: {
|
|
8251
8356
|
SeriesDesignEditor: typeof SeriesDesignEditor;
|
|
@@ -8255,7 +8360,7 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$12, Spreadsheet
|
|
|
8255
8360
|
RoundColorPicker: typeof RoundColorPicker;
|
|
8256
8361
|
};
|
|
8257
8362
|
static props: {
|
|
8258
|
-
|
|
8363
|
+
chartId: StringConstructor;
|
|
8259
8364
|
definition: ObjectConstructor;
|
|
8260
8365
|
canUpdateChart: FunctionConstructor;
|
|
8261
8366
|
updateChart: FunctionConstructor;
|
|
@@ -8286,20 +8391,20 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$12, Spreadsheet
|
|
|
8286
8391
|
updateTrendLineValue(index: number, config: any): void;
|
|
8287
8392
|
}
|
|
8288
8393
|
|
|
8289
|
-
interface Props$
|
|
8290
|
-
|
|
8394
|
+
interface Props$12 {
|
|
8395
|
+
chartId: UID;
|
|
8291
8396
|
definition: ChartWithDataSetDefinition;
|
|
8292
|
-
updateChart: (
|
|
8293
|
-
canUpdateChart: (
|
|
8397
|
+
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8398
|
+
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8294
8399
|
defaultValue?: boolean;
|
|
8295
8400
|
}
|
|
8296
|
-
declare class ChartShowValues extends Component<Props$
|
|
8401
|
+
declare class ChartShowValues extends Component<Props$12, SpreadsheetChildEnv> {
|
|
8297
8402
|
static template: string;
|
|
8298
8403
|
static components: {
|
|
8299
8404
|
Checkbox: typeof Checkbox;
|
|
8300
8405
|
};
|
|
8301
8406
|
static props: {
|
|
8302
|
-
|
|
8407
|
+
chartId: StringConstructor;
|
|
8303
8408
|
definition: ObjectConstructor;
|
|
8304
8409
|
updateChart: FunctionConstructor;
|
|
8305
8410
|
canUpdateChart: FunctionConstructor;
|
|
@@ -8310,13 +8415,13 @@ declare class ChartShowValues extends Component<Props$11, SpreadsheetChildEnv> {
|
|
|
8310
8415
|
};
|
|
8311
8416
|
}
|
|
8312
8417
|
|
|
8313
|
-
interface Props$
|
|
8314
|
-
|
|
8418
|
+
interface Props$11 {
|
|
8419
|
+
chartId: UID;
|
|
8315
8420
|
definition: ChartWithDataSetDefinition;
|
|
8316
|
-
canUpdateChart: (
|
|
8317
|
-
updateChart: (
|
|
8421
|
+
canUpdateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8422
|
+
updateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8318
8423
|
}
|
|
8319
|
-
declare class ChartWithAxisDesignPanel<P extends Props$
|
|
8424
|
+
declare class ChartWithAxisDesignPanel<P extends Props$11 = Props$11> extends Component<P, SpreadsheetChildEnv> {
|
|
8320
8425
|
static template: string;
|
|
8321
8426
|
static components: {
|
|
8322
8427
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -8328,7 +8433,7 @@ declare class ChartWithAxisDesignPanel<P extends Props$10 = Props$10> extends Co
|
|
|
8328
8433
|
ChartShowValues: typeof ChartShowValues;
|
|
8329
8434
|
};
|
|
8330
8435
|
static props: {
|
|
8331
|
-
|
|
8436
|
+
chartId: StringConstructor;
|
|
8332
8437
|
definition: ObjectConstructor;
|
|
8333
8438
|
canUpdateChart: FunctionConstructor;
|
|
8334
8439
|
updateChart: FunctionConstructor;
|
|
@@ -8336,20 +8441,20 @@ declare class ChartWithAxisDesignPanel<P extends Props$10 = Props$10> extends Co
|
|
|
8336
8441
|
get axesList(): AxisDefinition[];
|
|
8337
8442
|
}
|
|
8338
8443
|
|
|
8339
|
-
interface Props
|
|
8340
|
-
|
|
8444
|
+
interface Props$10 {
|
|
8445
|
+
chartId: UID;
|
|
8341
8446
|
definition: GaugeChartDefinition;
|
|
8342
|
-
canUpdateChart: (
|
|
8343
|
-
updateChart: (
|
|
8447
|
+
canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8448
|
+
updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8344
8449
|
}
|
|
8345
|
-
declare class GaugeChartConfigPanel extends Component<Props
|
|
8450
|
+
declare class GaugeChartConfigPanel extends Component<Props$10, SpreadsheetChildEnv> {
|
|
8346
8451
|
static template: string;
|
|
8347
8452
|
static components: {
|
|
8348
8453
|
ChartErrorSection: typeof ChartErrorSection;
|
|
8349
8454
|
ChartDataSeries: typeof ChartDataSeries;
|
|
8350
8455
|
};
|
|
8351
8456
|
static props: {
|
|
8352
|
-
|
|
8457
|
+
chartId: StringConstructor;
|
|
8353
8458
|
definition: ObjectConstructor;
|
|
8354
8459
|
updateChart: FunctionConstructor;
|
|
8355
8460
|
canUpdateChart: FunctionConstructor;
|
|
@@ -8407,13 +8512,13 @@ interface EnrichedToken extends Token {
|
|
|
8407
8512
|
isInHoverContext?: boolean;
|
|
8408
8513
|
}
|
|
8409
8514
|
|
|
8410
|
-
interface Props
|
|
8515
|
+
interface Props$$ {
|
|
8411
8516
|
proposals: AutoCompleteProposal[];
|
|
8412
8517
|
selectedIndex: number | undefined;
|
|
8413
8518
|
onValueSelected: (value: string) => void;
|
|
8414
8519
|
onValueHovered: (index: string) => void;
|
|
8415
8520
|
}
|
|
8416
|
-
declare class TextValueProvider extends Component<Props
|
|
8521
|
+
declare class TextValueProvider extends Component<Props$$> {
|
|
8417
8522
|
static template: string;
|
|
8418
8523
|
static props: {
|
|
8419
8524
|
proposals: ArrayConstructor;
|
|
@@ -8470,11 +8575,11 @@ declare class ContentEditableHelper {
|
|
|
8470
8575
|
getText(): string;
|
|
8471
8576
|
}
|
|
8472
8577
|
|
|
8473
|
-
interface Props$
|
|
8578
|
+
interface Props$_ {
|
|
8474
8579
|
functionDescription: FunctionDescription;
|
|
8475
8580
|
argsToFocus: number[];
|
|
8476
8581
|
}
|
|
8477
|
-
declare class FunctionDescriptionProvider extends Component<Props$
|
|
8582
|
+
declare class FunctionDescriptionProvider extends Component<Props$_, SpreadsheetChildEnv> {
|
|
8478
8583
|
static template: string;
|
|
8479
8584
|
static props: {
|
|
8480
8585
|
functionDescription: ObjectConstructor;
|
|
@@ -8485,15 +8590,15 @@ declare class FunctionDescriptionProvider extends Component<Props$Z, Spreadsheet
|
|
|
8485
8590
|
};
|
|
8486
8591
|
private state;
|
|
8487
8592
|
toggle(): void;
|
|
8488
|
-
getContext(): Props$
|
|
8593
|
+
getContext(): Props$_;
|
|
8489
8594
|
get formulaArgSeparator(): string;
|
|
8490
8595
|
}
|
|
8491
8596
|
|
|
8492
|
-
interface Props$
|
|
8597
|
+
interface Props$Z {
|
|
8493
8598
|
anchorRect: Rect;
|
|
8494
8599
|
content: string;
|
|
8495
8600
|
}
|
|
8496
|
-
declare class SpeechBubble extends Component<Props$
|
|
8601
|
+
declare class SpeechBubble extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
8497
8602
|
static template: string;
|
|
8498
8603
|
static props: {
|
|
8499
8604
|
content: StringConstructor;
|
|
@@ -8906,7 +9011,7 @@ interface AutoCompleteProviderDefinition {
|
|
|
8906
9011
|
}, tokenAtCursor: EnrichedToken, text: string): void;
|
|
8907
9012
|
}
|
|
8908
9013
|
|
|
8909
|
-
interface Props$
|
|
9014
|
+
interface Props$Y {
|
|
8910
9015
|
onConfirm: (content: string) => void;
|
|
8911
9016
|
composerContent: string;
|
|
8912
9017
|
defaultRangeSheetId: UID;
|
|
@@ -8918,7 +9023,7 @@ interface Props$X {
|
|
|
8918
9023
|
invalid?: boolean;
|
|
8919
9024
|
getContextualColoredSymbolToken?: (token: Token) => Color;
|
|
8920
9025
|
}
|
|
8921
|
-
declare class StandaloneComposer extends Component<Props$
|
|
9026
|
+
declare class StandaloneComposer extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
8922
9027
|
static template: string;
|
|
8923
9028
|
static props: {
|
|
8924
9029
|
composerContent: {
|
|
@@ -8981,13 +9086,13 @@ interface PanelState {
|
|
|
8981
9086
|
sectionRuleCancelledReasons?: CommandResult[];
|
|
8982
9087
|
sectionRule: SectionRule;
|
|
8983
9088
|
}
|
|
8984
|
-
interface Props$
|
|
8985
|
-
|
|
9089
|
+
interface Props$X {
|
|
9090
|
+
chartId: UID;
|
|
8986
9091
|
definition: GaugeChartDefinition;
|
|
8987
|
-
canUpdateChart: (
|
|
8988
|
-
updateChart: (
|
|
9092
|
+
canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
9093
|
+
updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8989
9094
|
}
|
|
8990
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
9095
|
+
declare class GaugeChartDesignPanel extends Component<Props$X, SpreadsheetChildEnv> {
|
|
8991
9096
|
static template: string;
|
|
8992
9097
|
static components: {
|
|
8993
9098
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -8998,7 +9103,7 @@ declare class GaugeChartDesignPanel extends Component<Props$W, SpreadsheetChildE
|
|
|
8998
9103
|
StandaloneComposer: typeof StandaloneComposer;
|
|
8999
9104
|
};
|
|
9000
9105
|
static props: {
|
|
9001
|
-
|
|
9106
|
+
chartId: StringConstructor;
|
|
9002
9107
|
definition: ObjectConstructor;
|
|
9003
9108
|
updateChart: FunctionConstructor;
|
|
9004
9109
|
canUpdateChart: {
|
|
@@ -9037,13 +9142,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
9037
9142
|
onUpdateCumulative(cumulative: boolean): void;
|
|
9038
9143
|
}
|
|
9039
9144
|
|
|
9040
|
-
interface Props$
|
|
9041
|
-
|
|
9145
|
+
interface Props$W {
|
|
9146
|
+
chartId: UID;
|
|
9042
9147
|
definition: ScorecardChartDefinition;
|
|
9043
|
-
canUpdateChart: (
|
|
9044
|
-
updateChart: (
|
|
9148
|
+
canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9149
|
+
updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9045
9150
|
}
|
|
9046
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
9151
|
+
declare class ScorecardChartConfigPanel extends Component<Props$W, SpreadsheetChildEnv> {
|
|
9047
9152
|
static template: string;
|
|
9048
9153
|
static components: {
|
|
9049
9154
|
SelectionInput: typeof SelectionInput;
|
|
@@ -9051,7 +9156,7 @@ declare class ScorecardChartConfigPanel extends Component<Props$V, SpreadsheetCh
|
|
|
9051
9156
|
Section: typeof Section;
|
|
9052
9157
|
};
|
|
9053
9158
|
static props: {
|
|
9054
|
-
|
|
9159
|
+
chartId: StringConstructor;
|
|
9055
9160
|
definition: ObjectConstructor;
|
|
9056
9161
|
updateChart: FunctionConstructor;
|
|
9057
9162
|
canUpdateChart: FunctionConstructor;
|
|
@@ -9072,13 +9177,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$V, SpreadsheetCh
|
|
|
9072
9177
|
}
|
|
9073
9178
|
|
|
9074
9179
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
9075
|
-
interface Props$
|
|
9076
|
-
|
|
9180
|
+
interface Props$V {
|
|
9181
|
+
chartId: UID;
|
|
9077
9182
|
definition: ScorecardChartDefinition;
|
|
9078
|
-
canUpdateChart: (
|
|
9079
|
-
updateChart: (
|
|
9183
|
+
canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9184
|
+
updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9080
9185
|
}
|
|
9081
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
9186
|
+
declare class ScorecardChartDesignPanel extends Component<Props$V, SpreadsheetChildEnv> {
|
|
9082
9187
|
static template: string;
|
|
9083
9188
|
static components: {
|
|
9084
9189
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -9089,7 +9194,7 @@ declare class ScorecardChartDesignPanel extends Component<Props$U, SpreadsheetCh
|
|
|
9089
9194
|
ChartTitle: typeof ChartTitle;
|
|
9090
9195
|
};
|
|
9091
9196
|
static props: {
|
|
9092
|
-
|
|
9197
|
+
chartId: StringConstructor;
|
|
9093
9198
|
definition: ObjectConstructor;
|
|
9094
9199
|
updateChart: FunctionConstructor;
|
|
9095
9200
|
canUpdateChart: {
|
|
@@ -9256,14 +9361,14 @@ declare class ComposerFocusStore extends SpreadsheetStore {
|
|
|
9256
9361
|
private setComposerContent;
|
|
9257
9362
|
}
|
|
9258
9363
|
|
|
9259
|
-
interface Props$
|
|
9260
|
-
|
|
9364
|
+
interface Props$U {
|
|
9365
|
+
chartId: UID;
|
|
9261
9366
|
isFullScreen?: boolean;
|
|
9262
9367
|
}
|
|
9263
|
-
declare class ChartJsComponent extends Component<Props$
|
|
9368
|
+
declare class ChartJsComponent extends Component<Props$U, SpreadsheetChildEnv> {
|
|
9264
9369
|
static template: string;
|
|
9265
9370
|
static props: {
|
|
9266
|
-
|
|
9371
|
+
chartId: StringConstructor;
|
|
9267
9372
|
isFullScreen: {
|
|
9268
9373
|
type: BooleanConstructor;
|
|
9269
9374
|
optional: boolean;
|
|
@@ -9285,13 +9390,13 @@ declare class ChartJsComponent extends Component<Props$T, SpreadsheetChildEnv> {
|
|
|
9285
9390
|
get animationFigureId(): string;
|
|
9286
9391
|
}
|
|
9287
9392
|
|
|
9288
|
-
interface Props$
|
|
9289
|
-
|
|
9393
|
+
interface Props$T {
|
|
9394
|
+
chartId: UID;
|
|
9290
9395
|
}
|
|
9291
|
-
declare class ScorecardChart$1 extends Component<Props$
|
|
9396
|
+
declare class ScorecardChart$1 extends Component<Props$T, SpreadsheetChildEnv> {
|
|
9292
9397
|
static template: string;
|
|
9293
9398
|
static props: {
|
|
9294
|
-
|
|
9399
|
+
chartId: StringConstructor;
|
|
9295
9400
|
};
|
|
9296
9401
|
private canvas;
|
|
9297
9402
|
get runtime(): ScorecardChartRuntime;
|
|
@@ -9364,7 +9469,7 @@ declare class Menu extends Component<MenuProps, SpreadsheetChildEnv> {
|
|
|
9364
9469
|
onClickMenu(menu: Action, ev: CustomEvent): void;
|
|
9365
9470
|
}
|
|
9366
9471
|
|
|
9367
|
-
interface Props$
|
|
9472
|
+
interface Props$S {
|
|
9368
9473
|
anchorRect: Rect;
|
|
9369
9474
|
popoverPositioning: PopoverPropsPosition;
|
|
9370
9475
|
menuItems: Action[];
|
|
@@ -9384,7 +9489,7 @@ interface MenuState {
|
|
|
9384
9489
|
menuItems: Action[];
|
|
9385
9490
|
isHoveringChild?: boolean;
|
|
9386
9491
|
}
|
|
9387
|
-
declare class MenuPopover extends Component<Props$
|
|
9492
|
+
declare class MenuPopover extends Component<Props$S, SpreadsheetChildEnv> {
|
|
9388
9493
|
static template: string;
|
|
9389
9494
|
static props: {
|
|
9390
9495
|
anchorRect: ObjectConstructor;
|
|
@@ -9464,14 +9569,15 @@ declare class MenuPopover extends Component<Props$R, SpreadsheetChildEnv> {
|
|
|
9464
9569
|
}
|
|
9465
9570
|
|
|
9466
9571
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
9467
|
-
interface Props$
|
|
9572
|
+
interface Props$R {
|
|
9468
9573
|
figureUI: FigureUI;
|
|
9469
9574
|
style: string;
|
|
9575
|
+
class: string;
|
|
9470
9576
|
onFigureDeleted: () => void;
|
|
9471
9577
|
onMouseDown: (ev: MouseEvent) => void;
|
|
9472
9578
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
9473
9579
|
}
|
|
9474
|
-
declare class FigureComponent extends Component<Props$
|
|
9580
|
+
declare class FigureComponent extends Component<Props$R, SpreadsheetChildEnv> {
|
|
9475
9581
|
static template: string;
|
|
9476
9582
|
static props: {
|
|
9477
9583
|
figureUI: ObjectConstructor;
|
|
@@ -9479,6 +9585,10 @@ declare class FigureComponent extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
|
9479
9585
|
type: StringConstructor;
|
|
9480
9586
|
optional: boolean;
|
|
9481
9587
|
};
|
|
9588
|
+
class: {
|
|
9589
|
+
type: StringConstructor;
|
|
9590
|
+
optional: boolean;
|
|
9591
|
+
};
|
|
9482
9592
|
onFigureDeleted: {
|
|
9483
9593
|
type: FunctionConstructor;
|
|
9484
9594
|
optional: boolean;
|
|
@@ -9502,6 +9612,7 @@ declare class FigureComponent extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
|
9502
9612
|
};
|
|
9503
9613
|
private menuState;
|
|
9504
9614
|
private figureRef;
|
|
9615
|
+
private figureWrapperRef;
|
|
9505
9616
|
private menuButtonRef;
|
|
9506
9617
|
private borderWidth;
|
|
9507
9618
|
get isSelected(): boolean;
|
|
@@ -9519,10 +9630,11 @@ declare class FigureComponent extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
|
9519
9630
|
onContextMenu(ev: MouseEvent): void;
|
|
9520
9631
|
showMenu(): void;
|
|
9521
9632
|
private openContextMenu;
|
|
9633
|
+
editWrapperStyle(properties: CSSProperties): void;
|
|
9522
9634
|
}
|
|
9523
9635
|
|
|
9524
|
-
interface Props$
|
|
9525
|
-
|
|
9636
|
+
interface Props$Q {
|
|
9637
|
+
chartId: UID;
|
|
9526
9638
|
}
|
|
9527
9639
|
interface MenuItem {
|
|
9528
9640
|
id: string;
|
|
@@ -9531,13 +9643,13 @@ interface MenuItem {
|
|
|
9531
9643
|
onClick: () => void;
|
|
9532
9644
|
isSelected?: boolean;
|
|
9533
9645
|
}
|
|
9534
|
-
declare class ChartDashboardMenu extends Component<Props$
|
|
9646
|
+
declare class ChartDashboardMenu extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
9535
9647
|
static template: string;
|
|
9536
9648
|
static components: {
|
|
9537
9649
|
MenuPopover: typeof MenuPopover;
|
|
9538
9650
|
};
|
|
9539
9651
|
static props: {
|
|
9540
|
-
|
|
9652
|
+
chartId: StringConstructor;
|
|
9541
9653
|
};
|
|
9542
9654
|
private fullScreenFigureStore;
|
|
9543
9655
|
private store;
|
|
@@ -9549,21 +9661,27 @@ declare class ChartDashboardMenu extends Component<Props$P, SpreadsheetChildEnv>
|
|
|
9549
9661
|
get fullScreenMenuItem(): MenuItem | undefined;
|
|
9550
9662
|
}
|
|
9551
9663
|
|
|
9552
|
-
interface Props$
|
|
9664
|
+
interface Props$P {
|
|
9553
9665
|
figureUI: FigureUI;
|
|
9554
9666
|
onFigureDeleted: () => void;
|
|
9667
|
+
editFigureStyle?: (properties: CSSProperties) => void;
|
|
9555
9668
|
}
|
|
9556
|
-
declare class ChartFigure extends Component<Props$
|
|
9669
|
+
declare class ChartFigure extends Component<Props$P, SpreadsheetChildEnv> {
|
|
9557
9670
|
static template: string;
|
|
9558
9671
|
static props: {
|
|
9559
9672
|
figureUI: ObjectConstructor;
|
|
9560
9673
|
onFigureDeleted: FunctionConstructor;
|
|
9674
|
+
editFigureStyle: {
|
|
9675
|
+
type: FunctionConstructor;
|
|
9676
|
+
optional: boolean;
|
|
9677
|
+
};
|
|
9561
9678
|
};
|
|
9562
9679
|
static components: {
|
|
9563
9680
|
ChartDashboardMenu: typeof ChartDashboardMenu;
|
|
9564
9681
|
};
|
|
9565
9682
|
onDoubleClick(): void;
|
|
9566
9683
|
get chartType(): ChartType;
|
|
9684
|
+
get chartId(): UID;
|
|
9567
9685
|
get chartComponent(): new (...args: any) => Component;
|
|
9568
9686
|
}
|
|
9569
9687
|
|
|
@@ -9578,7 +9696,7 @@ declare class DelayedHoveredCellStore extends SpreadsheetStore {
|
|
|
9578
9696
|
|
|
9579
9697
|
type DnDDirection = "all" | "vertical" | "horizontal";
|
|
9580
9698
|
|
|
9581
|
-
interface Props$
|
|
9699
|
+
interface Props$O {
|
|
9582
9700
|
isVisible: boolean;
|
|
9583
9701
|
position: Position;
|
|
9584
9702
|
}
|
|
@@ -9590,7 +9708,7 @@ interface State$4 {
|
|
|
9590
9708
|
position: Position;
|
|
9591
9709
|
handler: boolean;
|
|
9592
9710
|
}
|
|
9593
|
-
declare class Autofill extends Component<Props$
|
|
9711
|
+
declare class Autofill extends Component<Props$O, SpreadsheetChildEnv> {
|
|
9594
9712
|
static template: string;
|
|
9595
9713
|
static props: {
|
|
9596
9714
|
position: ObjectConstructor;
|
|
@@ -9630,7 +9748,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
9630
9748
|
get tagStyle(): string;
|
|
9631
9749
|
}
|
|
9632
9750
|
|
|
9633
|
-
interface Props$
|
|
9751
|
+
interface Props$N {
|
|
9634
9752
|
gridDims: DOMDimension;
|
|
9635
9753
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
9636
9754
|
}
|
|
@@ -9638,7 +9756,7 @@ interface Props$M {
|
|
|
9638
9756
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
9639
9757
|
* It also applies the style of the cell to the composer input.
|
|
9640
9758
|
*/
|
|
9641
|
-
declare class GridComposer extends Component<Props$
|
|
9759
|
+
declare class GridComposer extends Component<Props$N, SpreadsheetChildEnv> {
|
|
9642
9760
|
static template: string;
|
|
9643
9761
|
static props: {
|
|
9644
9762
|
gridDims: ObjectConstructor;
|
|
@@ -9682,7 +9800,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
9682
9800
|
}
|
|
9683
9801
|
|
|
9684
9802
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
9685
|
-
interface Props$
|
|
9803
|
+
interface Props$M {
|
|
9686
9804
|
onFigureDeleted: () => void;
|
|
9687
9805
|
}
|
|
9688
9806
|
interface Container {
|
|
@@ -9701,6 +9819,7 @@ interface DndState {
|
|
|
9701
9819
|
horizontalSnap?: Snap<HFigureAxisType>;
|
|
9702
9820
|
verticalSnap?: Snap<VFigureAxisType>;
|
|
9703
9821
|
cancelDnd: (() => void) | undefined;
|
|
9822
|
+
overlappingCarousel?: FigureUI;
|
|
9704
9823
|
}
|
|
9705
9824
|
/**
|
|
9706
9825
|
* Each figure ⭐ is positioned inside a container `div` placed and sized
|
|
@@ -9762,7 +9881,7 @@ interface DndState {
|
|
|
9762
9881
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
9763
9882
|
*
|
|
9764
9883
|
*/
|
|
9765
|
-
declare class FiguresContainer extends Component<Props$
|
|
9884
|
+
declare class FiguresContainer extends Component<Props$M, SpreadsheetChildEnv> {
|
|
9766
9885
|
static template: string;
|
|
9767
9886
|
static props: {
|
|
9768
9887
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -9794,14 +9913,16 @@ declare class FiguresContainer extends Component<Props$L, SpreadsheetChildEnv> {
|
|
|
9794
9913
|
private getOtherFigures;
|
|
9795
9914
|
private getDndFigure;
|
|
9796
9915
|
getFigureStyle(figureUI: FigureUI): string;
|
|
9916
|
+
getFigureClass(figureUI: FigureUI): string;
|
|
9797
9917
|
private getSnap;
|
|
9798
9918
|
private getSnapLineStyle;
|
|
9919
|
+
private getCarouselOverlappingChart;
|
|
9799
9920
|
}
|
|
9800
9921
|
|
|
9801
|
-
interface Props$
|
|
9922
|
+
interface Props$L {
|
|
9802
9923
|
focusGrid: () => void;
|
|
9803
9924
|
}
|
|
9804
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
9925
|
+
declare class GridAddRowsFooter extends Component<Props$L, SpreadsheetChildEnv> {
|
|
9805
9926
|
static template: string;
|
|
9806
9927
|
static props: {
|
|
9807
9928
|
focusGrid: FunctionConstructor;
|
|
@@ -9825,7 +9946,7 @@ declare class GridAddRowsFooter extends Component<Props$K, SpreadsheetChildEnv>
|
|
|
9825
9946
|
private onExternalClick;
|
|
9826
9947
|
}
|
|
9827
9948
|
|
|
9828
|
-
interface Props$
|
|
9949
|
+
interface Props$K {
|
|
9829
9950
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
9830
9951
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, ev: PointerEvent | MouseEvent) => void;
|
|
9831
9952
|
onCellRightClicked: (col: HeaderIndex, row: HeaderIndex, coordinates: DOMCoordinates) => void;
|
|
@@ -9838,7 +9959,7 @@ interface Props$J {
|
|
|
9838
9959
|
height: number;
|
|
9839
9960
|
};
|
|
9840
9961
|
}
|
|
9841
|
-
declare class GridOverlay extends Component<Props$
|
|
9962
|
+
declare class GridOverlay extends Component<Props$K, SpreadsheetChildEnv> {
|
|
9842
9963
|
static template: string;
|
|
9843
9964
|
static props: {
|
|
9844
9965
|
onCellDoubleClicked: {
|
|
@@ -9898,12 +10019,12 @@ declare class GridOverlay extends Component<Props$J, SpreadsheetChildEnv> {
|
|
|
9898
10019
|
private getInteractiveIconAtEvent;
|
|
9899
10020
|
}
|
|
9900
10021
|
|
|
9901
|
-
interface Props$
|
|
10022
|
+
interface Props$J {
|
|
9902
10023
|
gridRect: Rect;
|
|
9903
10024
|
onClosePopover: () => void;
|
|
9904
10025
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
9905
10026
|
}
|
|
9906
|
-
declare class GridPopover extends Component<Props$
|
|
10027
|
+
declare class GridPopover extends Component<Props$J, SpreadsheetChildEnv> {
|
|
9907
10028
|
static template: string;
|
|
9908
10029
|
static props: {
|
|
9909
10030
|
onClosePopover: FunctionConstructor;
|
|
@@ -9919,7 +10040,7 @@ declare class GridPopover extends Component<Props$I, SpreadsheetChildEnv> {
|
|
|
9919
10040
|
get cellPopover(): PositionedCellPopoverComponent | ClosedCellPopover;
|
|
9920
10041
|
}
|
|
9921
10042
|
|
|
9922
|
-
interface Props$
|
|
10043
|
+
interface Props$I {
|
|
9923
10044
|
headersGroups: ConsecutiveIndexes[];
|
|
9924
10045
|
offset: number;
|
|
9925
10046
|
headerRange: {
|
|
@@ -9927,7 +10048,7 @@ interface Props$H {
|
|
|
9927
10048
|
end: HeaderIndex;
|
|
9928
10049
|
};
|
|
9929
10050
|
}
|
|
9930
|
-
declare class UnhideRowHeaders extends Component<Props$
|
|
10051
|
+
declare class UnhideRowHeaders extends Component<Props$I, SpreadsheetChildEnv> {
|
|
9931
10052
|
static template: string;
|
|
9932
10053
|
static props: {
|
|
9933
10054
|
headersGroups: ArrayConstructor;
|
|
@@ -9946,7 +10067,7 @@ declare class UnhideRowHeaders extends Component<Props$H, SpreadsheetChildEnv> {
|
|
|
9946
10067
|
unhide(hiddenElements: HeaderIndex[]): void;
|
|
9947
10068
|
isVisible(header: HeaderIndex): boolean;
|
|
9948
10069
|
}
|
|
9949
|
-
declare class UnhideColumnHeaders extends Component<Props$
|
|
10070
|
+
declare class UnhideColumnHeaders extends Component<Props$I, SpreadsheetChildEnv> {
|
|
9950
10071
|
static template: string;
|
|
9951
10072
|
static props: {
|
|
9952
10073
|
headersGroups: ArrayConstructor;
|
|
@@ -10139,13 +10260,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
10139
10260
|
}
|
|
10140
10261
|
|
|
10141
10262
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
10142
|
-
interface Props$
|
|
10263
|
+
interface Props$H {
|
|
10143
10264
|
zone: Zone;
|
|
10144
10265
|
orientation: Orientation$1;
|
|
10145
10266
|
isMoving: boolean;
|
|
10146
10267
|
onMoveHighlight: (ev: PointerEvent) => void;
|
|
10147
10268
|
}
|
|
10148
|
-
declare class Border extends Component<Props$
|
|
10269
|
+
declare class Border extends Component<Props$H, SpreadsheetChildEnv> {
|
|
10149
10270
|
static template: string;
|
|
10150
10271
|
static props: {
|
|
10151
10272
|
zone: ObjectConstructor;
|
|
@@ -10158,14 +10279,14 @@ declare class Border extends Component<Props$G, SpreadsheetChildEnv> {
|
|
|
10158
10279
|
}
|
|
10159
10280
|
|
|
10160
10281
|
type Orientation = "nw" | "ne" | "sw" | "se" | "n" | "s" | "e" | "w";
|
|
10161
|
-
interface Props$
|
|
10282
|
+
interface Props$G {
|
|
10162
10283
|
zone: Zone;
|
|
10163
10284
|
color: Color;
|
|
10164
10285
|
orientation: Orientation;
|
|
10165
10286
|
isResizing: boolean;
|
|
10166
10287
|
onResizeHighlight: (ev: PointerEvent, dirX: ResizeDirection, dirY: ResizeDirection) => void;
|
|
10167
10288
|
}
|
|
10168
|
-
declare class Corner extends Component<Props$
|
|
10289
|
+
declare class Corner extends Component<Props$G, SpreadsheetChildEnv> {
|
|
10169
10290
|
static template: string;
|
|
10170
10291
|
static props: {
|
|
10171
10292
|
zone: ObjectConstructor;
|
|
@@ -10214,7 +10335,7 @@ declare class Highlight extends Component<HighlightProps, SpreadsheetChildEnv> {
|
|
|
10214
10335
|
|
|
10215
10336
|
type ScrollDirection = "horizontal" | "vertical";
|
|
10216
10337
|
|
|
10217
|
-
interface Props$
|
|
10338
|
+
interface Props$F {
|
|
10218
10339
|
width: Pixel;
|
|
10219
10340
|
height: Pixel;
|
|
10220
10341
|
direction: ScrollDirection;
|
|
@@ -10222,7 +10343,7 @@ interface Props$E {
|
|
|
10222
10343
|
offset: Pixel;
|
|
10223
10344
|
onScroll: (offset: Pixel) => void;
|
|
10224
10345
|
}
|
|
10225
|
-
declare class ScrollBar extends Component<Props$
|
|
10346
|
+
declare class ScrollBar extends Component<Props$F> {
|
|
10226
10347
|
static props: {
|
|
10227
10348
|
width: {
|
|
10228
10349
|
type: NumberConstructor;
|
|
@@ -10250,10 +10371,10 @@ declare class ScrollBar extends Component<Props$E> {
|
|
|
10250
10371
|
onScroll(ev: any): void;
|
|
10251
10372
|
}
|
|
10252
10373
|
|
|
10253
|
-
interface Props$
|
|
10374
|
+
interface Props$E {
|
|
10254
10375
|
leftOffset: number;
|
|
10255
10376
|
}
|
|
10256
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
10377
|
+
declare class HorizontalScrollBar extends Component<Props$E, SpreadsheetChildEnv> {
|
|
10257
10378
|
static props: {
|
|
10258
10379
|
leftOffset: {
|
|
10259
10380
|
type: NumberConstructor;
|
|
@@ -10279,10 +10400,10 @@ declare class HorizontalScrollBar extends Component<Props$D, SpreadsheetChildEnv
|
|
|
10279
10400
|
onScroll(offset: any): void;
|
|
10280
10401
|
}
|
|
10281
10402
|
|
|
10282
|
-
interface Props$
|
|
10403
|
+
interface Props$D {
|
|
10283
10404
|
topOffset: number;
|
|
10284
10405
|
}
|
|
10285
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
10406
|
+
declare class VerticalScrollBar extends Component<Props$D, SpreadsheetChildEnv> {
|
|
10286
10407
|
static props: {
|
|
10287
10408
|
topOffset: {
|
|
10288
10409
|
type: NumberConstructor;
|
|
@@ -10317,13 +10438,13 @@ declare class Selection extends Component<{}, SpreadsheetChildEnv> {
|
|
|
10317
10438
|
get highlightProps(): HighlightProps;
|
|
10318
10439
|
}
|
|
10319
10440
|
|
|
10320
|
-
interface Props$
|
|
10441
|
+
interface Props$C {
|
|
10321
10442
|
table: Table;
|
|
10322
10443
|
}
|
|
10323
10444
|
interface State$3 {
|
|
10324
10445
|
highlightZone: Zone | undefined;
|
|
10325
10446
|
}
|
|
10326
|
-
declare class TableResizer extends Component<Props$
|
|
10447
|
+
declare class TableResizer extends Component<Props$C, SpreadsheetChildEnv> {
|
|
10327
10448
|
static template: string;
|
|
10328
10449
|
static props: {
|
|
10329
10450
|
table: ObjectConstructor;
|
|
@@ -10352,11 +10473,11 @@ declare class TableResizer extends Component<Props$B, SpreadsheetChildEnv> {
|
|
|
10352
10473
|
* - a vertical resizer (same, for rows)
|
|
10353
10474
|
*/
|
|
10354
10475
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
10355
|
-
interface Props$
|
|
10476
|
+
interface Props$B {
|
|
10356
10477
|
exposeFocus: (focus: () => void) => void;
|
|
10357
10478
|
getGridSize: () => DOMDimension;
|
|
10358
10479
|
}
|
|
10359
|
-
declare class Grid extends Component<Props$
|
|
10480
|
+
declare class Grid extends Component<Props$B, SpreadsheetChildEnv> {
|
|
10360
10481
|
static template: string;
|
|
10361
10482
|
static props: {
|
|
10362
10483
|
exposeFocus: FunctionConstructor;
|
|
@@ -10468,26 +10589,26 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
10468
10589
|
panel: "configuration" | "design";
|
|
10469
10590
|
private creationContexts;
|
|
10470
10591
|
activatePanel(panel: "configuration" | "design"): void;
|
|
10471
|
-
changeChartType(
|
|
10592
|
+
changeChartType(chartId: UID, newDisplayType: string): void;
|
|
10472
10593
|
private getChartDefinitionFromContextCreation;
|
|
10473
10594
|
}
|
|
10474
10595
|
|
|
10475
|
-
interface Props$
|
|
10476
|
-
|
|
10596
|
+
interface Props$A {
|
|
10597
|
+
chartId: UID;
|
|
10477
10598
|
chartPanelStore: MainChartPanelStore;
|
|
10478
10599
|
}
|
|
10479
10600
|
interface ChartTypePickerState {
|
|
10480
10601
|
popoverProps: PopoverProps | undefined;
|
|
10481
10602
|
popoverStyle: string;
|
|
10482
10603
|
}
|
|
10483
|
-
declare class ChartTypePicker extends Component<Props$
|
|
10604
|
+
declare class ChartTypePicker extends Component<Props$A, SpreadsheetChildEnv> {
|
|
10484
10605
|
static template: string;
|
|
10485
10606
|
static components: {
|
|
10486
10607
|
Section: typeof Section;
|
|
10487
10608
|
Popover: typeof Popover;
|
|
10488
10609
|
};
|
|
10489
10610
|
static props: {
|
|
10490
|
-
|
|
10611
|
+
chartId: StringConstructor;
|
|
10491
10612
|
chartPanelStore: ObjectConstructor;
|
|
10492
10613
|
};
|
|
10493
10614
|
categories: {
|
|
@@ -10516,11 +10637,11 @@ declare class ChartTypePicker extends Component<Props$z, SpreadsheetChildEnv> {
|
|
|
10516
10637
|
private closePopover;
|
|
10517
10638
|
}
|
|
10518
10639
|
|
|
10519
|
-
interface Props$
|
|
10640
|
+
interface Props$z {
|
|
10520
10641
|
onCloseSidePanel: () => void;
|
|
10521
|
-
|
|
10642
|
+
chartId: UID;
|
|
10522
10643
|
}
|
|
10523
|
-
declare class ChartPanel extends Component<Props$
|
|
10644
|
+
declare class ChartPanel extends Component<Props$z, SpreadsheetChildEnv> {
|
|
10524
10645
|
static template: string;
|
|
10525
10646
|
static components: {
|
|
10526
10647
|
Section: typeof Section;
|
|
@@ -10528,26 +10649,26 @@ declare class ChartPanel extends Component<Props$y, SpreadsheetChildEnv> {
|
|
|
10528
10649
|
};
|
|
10529
10650
|
static props: {
|
|
10530
10651
|
onCloseSidePanel: FunctionConstructor;
|
|
10531
|
-
|
|
10652
|
+
chartId: StringConstructor;
|
|
10532
10653
|
};
|
|
10533
10654
|
private panelContentRef;
|
|
10534
10655
|
private scrollPositions;
|
|
10535
10656
|
store: Store<MainChartPanelStore>;
|
|
10536
|
-
get
|
|
10657
|
+
get chartId(): UID;
|
|
10537
10658
|
setup(): void;
|
|
10538
10659
|
switchPanel(panel: "configuration" | "design"): void;
|
|
10539
|
-
updateChart<T extends ChartDefinition>(
|
|
10540
|
-
canUpdateChart<T extends ChartDefinition>(
|
|
10660
|
+
updateChart<T extends ChartDefinition>(chartId: UID, updateDefinition: Partial<T>): DispatchResult | undefined;
|
|
10661
|
+
canUpdateChart<T extends ChartDefinition>(chartId: UID, updateDefinition: Partial<T>): DispatchResult | undefined;
|
|
10541
10662
|
onTypeChange(type: ChartType): void;
|
|
10542
10663
|
get chartPanel(): ChartSidePanel;
|
|
10543
10664
|
private getChartDefinition;
|
|
10544
10665
|
}
|
|
10545
10666
|
|
|
10546
|
-
interface Props$
|
|
10667
|
+
interface Props$y {
|
|
10547
10668
|
onValueChange: (value: number) => void;
|
|
10548
10669
|
value: number;
|
|
10549
10670
|
}
|
|
10550
|
-
declare class PieHoleSize extends Component<Props$
|
|
10671
|
+
declare class PieHoleSize extends Component<Props$y, SpreadsheetChildEnv> {
|
|
10551
10672
|
static template: string;
|
|
10552
10673
|
static components: {
|
|
10553
10674
|
Section: typeof Section;
|
|
@@ -10560,13 +10681,13 @@ declare class PieHoleSize extends Component<Props$x, SpreadsheetChildEnv> {
|
|
|
10560
10681
|
onChange(value: string): void;
|
|
10561
10682
|
}
|
|
10562
10683
|
|
|
10563
|
-
interface Props$
|
|
10564
|
-
|
|
10684
|
+
interface Props$x {
|
|
10685
|
+
chartId: UID;
|
|
10565
10686
|
definition: PieChartDefinition;
|
|
10566
|
-
canUpdateChart: (
|
|
10567
|
-
updateChart: (
|
|
10687
|
+
canUpdateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10688
|
+
updateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10568
10689
|
}
|
|
10569
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
10690
|
+
declare class PieChartDesignPanel extends Component<Props$x, SpreadsheetChildEnv> {
|
|
10570
10691
|
static template: string;
|
|
10571
10692
|
static components: {
|
|
10572
10693
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -10576,7 +10697,7 @@ declare class PieChartDesignPanel extends Component<Props$w, SpreadsheetChildEnv
|
|
|
10576
10697
|
PieHoleSize: typeof PieHoleSize;
|
|
10577
10698
|
};
|
|
10578
10699
|
static props: {
|
|
10579
|
-
|
|
10700
|
+
chartId: StringConstructor;
|
|
10580
10701
|
definition: ObjectConstructor;
|
|
10581
10702
|
updateChart: FunctionConstructor;
|
|
10582
10703
|
canUpdateChart: {
|
|
@@ -10588,10 +10709,10 @@ declare class PieChartDesignPanel extends Component<Props$w, SpreadsheetChildEnv
|
|
|
10588
10709
|
get defaultHoleSize(): number;
|
|
10589
10710
|
}
|
|
10590
10711
|
|
|
10591
|
-
interface Props$
|
|
10712
|
+
interface Props$w {
|
|
10592
10713
|
items: ActionSpec[];
|
|
10593
10714
|
}
|
|
10594
|
-
declare class CogWheelMenu extends Component<Props$
|
|
10715
|
+
declare class CogWheelMenu extends Component<Props$w, SpreadsheetChildEnv> {
|
|
10595
10716
|
static template: string;
|
|
10596
10717
|
static components: {
|
|
10597
10718
|
MenuPopover: typeof MenuPopover;
|
|
@@ -10674,14 +10795,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
10674
10795
|
get highlights(): Highlight$1[];
|
|
10675
10796
|
}
|
|
10676
10797
|
|
|
10677
|
-
interface Props$
|
|
10798
|
+
interface Props$v {
|
|
10678
10799
|
deferUpdate: boolean;
|
|
10679
10800
|
isDirty: boolean;
|
|
10680
10801
|
toggleDeferUpdate: (value: boolean) => void;
|
|
10681
10802
|
discard: () => void;
|
|
10682
10803
|
apply: () => void;
|
|
10683
10804
|
}
|
|
10684
|
-
declare class PivotDeferUpdate extends Component<Props$
|
|
10805
|
+
declare class PivotDeferUpdate extends Component<Props$v, SpreadsheetChildEnv> {
|
|
10685
10806
|
static template: string;
|
|
10686
10807
|
static props: {
|
|
10687
10808
|
deferUpdate: BooleanConstructor;
|
|
@@ -10698,11 +10819,11 @@ declare class PivotDeferUpdate extends Component<Props$u, SpreadsheetChildEnv> {
|
|
|
10698
10819
|
get deferUpdatesTooltip(): string;
|
|
10699
10820
|
}
|
|
10700
10821
|
|
|
10701
|
-
interface Props$
|
|
10822
|
+
interface Props$u {
|
|
10702
10823
|
onFieldPicked: (field: string) => void;
|
|
10703
10824
|
fields: PivotField[];
|
|
10704
10825
|
}
|
|
10705
|
-
declare class AddDimensionButton extends Component<Props$
|
|
10826
|
+
declare class AddDimensionButton extends Component<Props$u, SpreadsheetChildEnv> {
|
|
10706
10827
|
static template: string;
|
|
10707
10828
|
static components: {
|
|
10708
10829
|
Popover: typeof Popover;
|
|
@@ -10738,7 +10859,7 @@ declare class AddDimensionButton extends Component<Props$t, SpreadsheetChildEnv>
|
|
|
10738
10859
|
onKeyDown(ev: KeyboardEvent): void;
|
|
10739
10860
|
}
|
|
10740
10861
|
|
|
10741
|
-
interface Props$
|
|
10862
|
+
interface Props$t {
|
|
10742
10863
|
value: string;
|
|
10743
10864
|
onChange: (value: string) => void;
|
|
10744
10865
|
class?: string;
|
|
@@ -10746,7 +10867,7 @@ interface Props$s {
|
|
|
10746
10867
|
placeholder?: string;
|
|
10747
10868
|
autofocus?: boolean;
|
|
10748
10869
|
}
|
|
10749
|
-
declare class TextInput extends Component<Props$
|
|
10870
|
+
declare class TextInput extends Component<Props$t, SpreadsheetChildEnv> {
|
|
10750
10871
|
static template: string;
|
|
10751
10872
|
static props: {
|
|
10752
10873
|
value: StringConstructor;
|
|
@@ -10776,13 +10897,13 @@ declare class TextInput extends Component<Props$s, SpreadsheetChildEnv> {
|
|
|
10776
10897
|
onMouseUp(ev: MouseEvent): void;
|
|
10777
10898
|
}
|
|
10778
10899
|
|
|
10779
|
-
interface Props$
|
|
10900
|
+
interface Props$s {
|
|
10780
10901
|
dimension: PivotCoreDimension | PivotCoreMeasure;
|
|
10781
10902
|
onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
|
|
10782
10903
|
onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
|
|
10783
10904
|
type: "row" | "col" | "measure";
|
|
10784
10905
|
}
|
|
10785
|
-
declare class PivotDimension extends Component<Props$
|
|
10906
|
+
declare class PivotDimension extends Component<Props$s, SpreadsheetChildEnv> {
|
|
10786
10907
|
static template: string;
|
|
10787
10908
|
static props: {
|
|
10788
10909
|
dimension: ObjectConstructor;
|
|
@@ -10806,13 +10927,13 @@ declare class PivotDimension extends Component<Props$r, SpreadsheetChildEnv> {
|
|
|
10806
10927
|
updateName(name: string): void;
|
|
10807
10928
|
}
|
|
10808
10929
|
|
|
10809
|
-
interface Props$
|
|
10930
|
+
interface Props$r {
|
|
10810
10931
|
dimension: PivotDimension$1;
|
|
10811
10932
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10812
10933
|
availableGranularities: Set<string>;
|
|
10813
10934
|
allGranularities: string[];
|
|
10814
10935
|
}
|
|
10815
|
-
declare class PivotDimensionGranularity extends Component<Props$
|
|
10936
|
+
declare class PivotDimensionGranularity extends Component<Props$r, SpreadsheetChildEnv> {
|
|
10816
10937
|
static template: string;
|
|
10817
10938
|
static props: {
|
|
10818
10939
|
dimension: ObjectConstructor;
|
|
@@ -10837,11 +10958,11 @@ declare class PivotDimensionGranularity extends Component<Props$q, SpreadsheetCh
|
|
|
10837
10958
|
};
|
|
10838
10959
|
}
|
|
10839
10960
|
|
|
10840
|
-
interface Props$
|
|
10961
|
+
interface Props$q {
|
|
10841
10962
|
dimension: PivotDimension$1;
|
|
10842
10963
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10843
10964
|
}
|
|
10844
|
-
declare class PivotDimensionOrder extends Component<Props$
|
|
10965
|
+
declare class PivotDimensionOrder extends Component<Props$q, SpreadsheetChildEnv> {
|
|
10845
10966
|
static template: string;
|
|
10846
10967
|
static props: {
|
|
10847
10968
|
dimension: ObjectConstructor;
|
|
@@ -10876,6 +10997,32 @@ declare function createPivotFormula(formulaId: string, cell: PivotTableCell): st
|
|
|
10876
10997
|
*/
|
|
10877
10998
|
declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type" | "displayName" | "granularity">, groupValue: Maybe<CellValue | FunctionResultObject>): CellValue;
|
|
10878
10999
|
declare function toFunctionPivotValue(value: CellValue, dimension: Pick<PivotDimension$1, "type" | "granularity">): string;
|
|
11000
|
+
declare function createCustomFields(definition: PivotCoreDefinition, fields: PivotFields): PivotFields;
|
|
11001
|
+
|
|
11002
|
+
interface Props$p {
|
|
11003
|
+
pivotId: UID;
|
|
11004
|
+
customField: PivotCustomGroupedField;
|
|
11005
|
+
onCustomFieldUpdated: (definition: Partial<PivotCoreDefinition>) => void;
|
|
11006
|
+
}
|
|
11007
|
+
declare class PivotCustomGroupsCollapsible extends Component<Props$p, SpreadsheetChildEnv> {
|
|
11008
|
+
static template: string;
|
|
11009
|
+
static props: {
|
|
11010
|
+
pivotId: StringConstructor;
|
|
11011
|
+
customField: ObjectConstructor;
|
|
11012
|
+
onCustomFieldUpdated: FunctionConstructor;
|
|
11013
|
+
};
|
|
11014
|
+
static components: {
|
|
11015
|
+
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
11016
|
+
TextInput: typeof TextInput;
|
|
11017
|
+
Checkbox: typeof Checkbox;
|
|
11018
|
+
};
|
|
11019
|
+
get groups(): PivotCustomGroup[];
|
|
11020
|
+
get hasOthersGroup(): boolean;
|
|
11021
|
+
addOthersGroup(): void;
|
|
11022
|
+
onDeleteGroup(groupIndex: number): void;
|
|
11023
|
+
onRenameGroup(groupIndex: number, newName: string): void;
|
|
11024
|
+
private updateCustomField;
|
|
11025
|
+
}
|
|
10879
11026
|
|
|
10880
11027
|
interface Props$o {
|
|
10881
11028
|
pivotId: string;
|
|
@@ -10951,6 +11098,7 @@ declare class PivotLayoutConfigurator extends Component<Props$m, SpreadsheetChil
|
|
|
10951
11098
|
PivotDimensionGranularity: typeof PivotDimensionGranularity;
|
|
10952
11099
|
PivotMeasureEditor: typeof PivotMeasureEditor;
|
|
10953
11100
|
PivotSortSection: typeof PivotSortSection;
|
|
11101
|
+
PivotCustomGroupsCollapsible: typeof PivotCustomGroupsCollapsible;
|
|
10954
11102
|
};
|
|
10955
11103
|
static props: {
|
|
10956
11104
|
definition: ObjectConstructor;
|
|
@@ -10990,6 +11138,7 @@ declare class PivotLayoutConfigurator extends Component<Props$m, SpreadsheetChil
|
|
|
10990
11138
|
private getMeasureId;
|
|
10991
11139
|
private getDefaultMeasureAggregator;
|
|
10992
11140
|
addCalculatedMeasure(): void;
|
|
11141
|
+
getCustomField(dimension: PivotDimension$1): PivotCustomGroupedField | undefined;
|
|
10993
11142
|
updateOrder(updateDimension: PivotDimension$1, order?: SortDirection): void;
|
|
10994
11143
|
updateGranularity(dimension: PivotDimension$1, granularity: Granularity): void;
|
|
10995
11144
|
getMeasureDescription(measure: PivotMeasure): string;
|
|
@@ -11163,6 +11312,7 @@ declare class FullScreenChart extends Component<{}, SpreadsheetChildEnv> {
|
|
|
11163
11312
|
figureRegistry: Registry<FigureContent>;
|
|
11164
11313
|
setup(): void;
|
|
11165
11314
|
get figureUI(): FigureUI | undefined;
|
|
11315
|
+
get chartId(): UID | undefined;
|
|
11166
11316
|
exitFullScreen(): void;
|
|
11167
11317
|
onKeyDown(ev: KeyboardEvent): void;
|
|
11168
11318
|
get chartComponent(): (new (...args: any) => Component) | undefined;
|
|
@@ -11253,10 +11403,10 @@ declare class PivotHTMLRenderer extends Component<Props$k, SpreadsheetChildEnv>
|
|
|
11253
11403
|
}
|
|
11254
11404
|
|
|
11255
11405
|
interface Props$j {
|
|
11256
|
-
|
|
11406
|
+
chartId: UID;
|
|
11257
11407
|
definition: ChartWithDataSetDefinition;
|
|
11258
|
-
updateChart: (
|
|
11259
|
-
canUpdateChart: (
|
|
11408
|
+
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
11409
|
+
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
11260
11410
|
}
|
|
11261
11411
|
declare class ChartShowDataMarkers extends Component<Props$j, SpreadsheetChildEnv> {
|
|
11262
11412
|
static template: string;
|
|
@@ -11264,7 +11414,7 @@ declare class ChartShowDataMarkers extends Component<Props$j, SpreadsheetChildEn
|
|
|
11264
11414
|
Checkbox: typeof Checkbox;
|
|
11265
11415
|
};
|
|
11266
11416
|
static props: {
|
|
11267
|
-
|
|
11417
|
+
chartId: StringConstructor;
|
|
11268
11418
|
definition: ObjectConstructor;
|
|
11269
11419
|
updateChart: FunctionConstructor;
|
|
11270
11420
|
canUpdateChart: FunctionConstructor;
|
|
@@ -11272,10 +11422,10 @@ declare class ChartShowDataMarkers extends Component<Props$j, SpreadsheetChildEn
|
|
|
11272
11422
|
}
|
|
11273
11423
|
|
|
11274
11424
|
interface Props$i {
|
|
11275
|
-
|
|
11425
|
+
chartId: UID;
|
|
11276
11426
|
definition: ComboChartDefinition;
|
|
11277
|
-
canUpdateChart: (
|
|
11278
|
-
updateChart: (
|
|
11427
|
+
canUpdateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
|
|
11428
|
+
updateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
|
|
11279
11429
|
}
|
|
11280
11430
|
declare class ComboChartDesignPanel extends ChartWithAxisDesignPanel<Props$i> {
|
|
11281
11431
|
static template: string;
|
|
@@ -11299,10 +11449,10 @@ declare class ComboChartDesignPanel extends ChartWithAxisDesignPanel<Props$i> {
|
|
|
11299
11449
|
}
|
|
11300
11450
|
|
|
11301
11451
|
interface Props$h {
|
|
11302
|
-
|
|
11452
|
+
chartId: UID;
|
|
11303
11453
|
definition: FunnelChartDefinition;
|
|
11304
|
-
canUpdateChart: (
|
|
11305
|
-
updateChart: (
|
|
11454
|
+
canUpdateChart: (chartId: UID, definition: Partial<FunnelChartDefinition>) => DispatchResult;
|
|
11455
|
+
updateChart: (chartId: UID, definition: Partial<FunnelChartDefinition>) => DispatchResult;
|
|
11306
11456
|
}
|
|
11307
11457
|
declare class FunnelChartDesignPanel extends Component<Props$h, SpreadsheetChildEnv> {
|
|
11308
11458
|
static template: string;
|
|
@@ -11314,7 +11464,7 @@ declare class FunnelChartDesignPanel extends Component<Props$h, SpreadsheetChild
|
|
|
11314
11464
|
Section: typeof Section;
|
|
11315
11465
|
};
|
|
11316
11466
|
static props: {
|
|
11317
|
-
|
|
11467
|
+
chartId: StringConstructor;
|
|
11318
11468
|
definition: ObjectConstructor;
|
|
11319
11469
|
updateChart: FunctionConstructor;
|
|
11320
11470
|
canUpdateChart: FunctionConstructor;
|
|
@@ -11327,10 +11477,10 @@ declare class FunnelChartDesignPanel extends Component<Props$h, SpreadsheetChild
|
|
|
11327
11477
|
}
|
|
11328
11478
|
|
|
11329
11479
|
interface Props$g {
|
|
11330
|
-
|
|
11480
|
+
chartId: UID;
|
|
11331
11481
|
definition: GeoChartDefinition;
|
|
11332
|
-
canUpdateChart: (
|
|
11333
|
-
updateChart: (
|
|
11482
|
+
canUpdateChart: (chartId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
|
|
11483
|
+
updateChart: (chartId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
|
|
11334
11484
|
}
|
|
11335
11485
|
declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<Props$g> {
|
|
11336
11486
|
static template: string;
|
|
@@ -11357,9 +11507,9 @@ declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<Props$g> {
|
|
|
11357
11507
|
}
|
|
11358
11508
|
|
|
11359
11509
|
interface Props$f {
|
|
11360
|
-
|
|
11510
|
+
chartId: UID;
|
|
11361
11511
|
definition: GeoChartDefinition;
|
|
11362
|
-
updateChart: (
|
|
11512
|
+
updateChart: (chartId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
|
|
11363
11513
|
}
|
|
11364
11514
|
declare class GeoChartRegionSelectSection extends Component<Props$f, SpreadsheetChildEnv> {
|
|
11365
11515
|
static template: string;
|
|
@@ -11367,7 +11517,7 @@ declare class GeoChartRegionSelectSection extends Component<Props$f, Spreadsheet
|
|
|
11367
11517
|
Section: typeof Section;
|
|
11368
11518
|
};
|
|
11369
11519
|
static props: {
|
|
11370
|
-
|
|
11520
|
+
chartId: StringConstructor;
|
|
11371
11521
|
definition: ObjectConstructor;
|
|
11372
11522
|
updateChart: FunctionConstructor;
|
|
11373
11523
|
};
|
|
@@ -11377,10 +11527,10 @@ declare class GeoChartRegionSelectSection extends Component<Props$f, Spreadsheet
|
|
|
11377
11527
|
}
|
|
11378
11528
|
|
|
11379
11529
|
interface Props$e {
|
|
11380
|
-
|
|
11530
|
+
chartId: UID;
|
|
11381
11531
|
definition: ComboChartDefinition;
|
|
11382
|
-
canUpdateChart: (
|
|
11383
|
-
updateChart: (
|
|
11532
|
+
canUpdateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
|
|
11533
|
+
updateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
|
|
11384
11534
|
}
|
|
11385
11535
|
declare class LineChartDesignPanel extends ChartWithAxisDesignPanel<Props$e> {
|
|
11386
11536
|
static template: string;
|
|
@@ -11397,10 +11547,10 @@ declare class LineChartDesignPanel extends ChartWithAxisDesignPanel<Props$e> {
|
|
|
11397
11547
|
}
|
|
11398
11548
|
|
|
11399
11549
|
interface Props$d {
|
|
11400
|
-
|
|
11550
|
+
chartId: UID;
|
|
11401
11551
|
definition: RadarChartDefinition;
|
|
11402
|
-
canUpdateChart: (
|
|
11403
|
-
updateChart: (
|
|
11552
|
+
canUpdateChart: (chartId: UID, definition: GenericDefinition<RadarChartDefinition>) => DispatchResult;
|
|
11553
|
+
updateChart: (chartId: UID, definition: GenericDefinition<RadarChartDefinition>) => DispatchResult;
|
|
11404
11554
|
}
|
|
11405
11555
|
declare class RadarChartDesignPanel extends Component<Props$d, SpreadsheetChildEnv> {
|
|
11406
11556
|
static template: string;
|
|
@@ -11413,7 +11563,7 @@ declare class RadarChartDesignPanel extends Component<Props$d, SpreadsheetChildE
|
|
|
11413
11563
|
ChartShowDataMarkers: typeof ChartShowDataMarkers;
|
|
11414
11564
|
};
|
|
11415
11565
|
static props: {
|
|
11416
|
-
|
|
11566
|
+
chartId: StringConstructor;
|
|
11417
11567
|
definition: ObjectConstructor;
|
|
11418
11568
|
canUpdateChart: FunctionConstructor;
|
|
11419
11569
|
updateChart: FunctionConstructor;
|
|
@@ -11421,10 +11571,10 @@ declare class RadarChartDesignPanel extends Component<Props$d, SpreadsheetChildE
|
|
|
11421
11571
|
}
|
|
11422
11572
|
|
|
11423
11573
|
interface Props$c {
|
|
11424
|
-
|
|
11574
|
+
chartId: UID;
|
|
11425
11575
|
definition: SunburstChartDefinition;
|
|
11426
|
-
canUpdateChart: (
|
|
11427
|
-
updateChart: (
|
|
11576
|
+
canUpdateChart: (chartId: UID, definition: Partial<SunburstChartDefinition>) => DispatchResult;
|
|
11577
|
+
updateChart: (chartId: UID, definition: Partial<SunburstChartDefinition>) => DispatchResult;
|
|
11428
11578
|
}
|
|
11429
11579
|
declare class SunburstChartDesignPanel extends Component<Props$c, SpreadsheetChildEnv> {
|
|
11430
11580
|
static template: string;
|
|
@@ -11440,7 +11590,7 @@ declare class SunburstChartDesignPanel extends Component<Props$c, SpreadsheetChi
|
|
|
11440
11590
|
PieHoleSize: typeof PieHoleSize;
|
|
11441
11591
|
};
|
|
11442
11592
|
static props: {
|
|
11443
|
-
|
|
11593
|
+
chartId: StringConstructor;
|
|
11444
11594
|
definition: ObjectConstructor;
|
|
11445
11595
|
updateChart: FunctionConstructor;
|
|
11446
11596
|
canUpdateChart: {
|
|
@@ -11464,7 +11614,7 @@ declare class SunburstChartDesignPanel extends Component<Props$c, SpreadsheetChi
|
|
|
11464
11614
|
}
|
|
11465
11615
|
|
|
11466
11616
|
interface Props$b {
|
|
11467
|
-
|
|
11617
|
+
chartId: UID;
|
|
11468
11618
|
definition: TreeMapChartDefinition;
|
|
11469
11619
|
onColorChanged: (colors: TreeMapCategoryColorOptions) => DispatchResult;
|
|
11470
11620
|
}
|
|
@@ -11475,7 +11625,7 @@ declare class TreeMapCategoryColors extends Component<Props$b, SpreadsheetChildE
|
|
|
11475
11625
|
RoundColorPicker: typeof RoundColorPicker;
|
|
11476
11626
|
};
|
|
11477
11627
|
static props: {
|
|
11478
|
-
|
|
11628
|
+
chartId: StringConstructor;
|
|
11479
11629
|
definition: ObjectConstructor;
|
|
11480
11630
|
onColorChanged: FunctionConstructor;
|
|
11481
11631
|
};
|
|
@@ -11486,7 +11636,7 @@ declare class TreeMapCategoryColors extends Component<Props$b, SpreadsheetChildE
|
|
|
11486
11636
|
}
|
|
11487
11637
|
|
|
11488
11638
|
interface Props$a {
|
|
11489
|
-
|
|
11639
|
+
chartId: UID;
|
|
11490
11640
|
definition: TreeMapChartDefinition;
|
|
11491
11641
|
onColorChanged: (colors: TreeMapColorScaleOptions) => DispatchResult;
|
|
11492
11642
|
}
|
|
@@ -11496,7 +11646,7 @@ declare class TreeMapColorScale extends Component<Props$a, SpreadsheetChildEnv>
|
|
|
11496
11646
|
RoundColorPicker: typeof RoundColorPicker;
|
|
11497
11647
|
};
|
|
11498
11648
|
static props: {
|
|
11499
|
-
|
|
11649
|
+
chartId: StringConstructor;
|
|
11500
11650
|
definition: ObjectConstructor;
|
|
11501
11651
|
onColorChanged: FunctionConstructor;
|
|
11502
11652
|
};
|
|
@@ -11505,10 +11655,10 @@ declare class TreeMapColorScale extends Component<Props$a, SpreadsheetChildEnv>
|
|
|
11505
11655
|
}
|
|
11506
11656
|
|
|
11507
11657
|
interface Props$9 {
|
|
11508
|
-
|
|
11658
|
+
chartId: UID;
|
|
11509
11659
|
definition: TreeMapChartDefinition;
|
|
11510
|
-
canUpdateChart: (
|
|
11511
|
-
updateChart: (
|
|
11660
|
+
canUpdateChart: (chartId: UID, definition: Partial<TreeMapChartDefinition>) => DispatchResult;
|
|
11661
|
+
updateChart: (chartId: UID, definition: Partial<TreeMapChartDefinition>) => DispatchResult;
|
|
11512
11662
|
}
|
|
11513
11663
|
declare class TreeMapChartDesignPanel extends Component<Props$9, SpreadsheetChildEnv> {
|
|
11514
11664
|
static template: string;
|
|
@@ -11525,7 +11675,7 @@ declare class TreeMapChartDesignPanel extends Component<Props$9, SpreadsheetChil
|
|
|
11525
11675
|
TreeMapColorScale: typeof TreeMapColorScale;
|
|
11526
11676
|
};
|
|
11527
11677
|
static props: {
|
|
11528
|
-
|
|
11678
|
+
chartId: StringConstructor;
|
|
11529
11679
|
definition: ObjectConstructor;
|
|
11530
11680
|
updateChart: FunctionConstructor;
|
|
11531
11681
|
canUpdateChart: {
|
|
@@ -11556,10 +11706,10 @@ declare class TreeMapChartDesignPanel extends Component<Props$9, SpreadsheetChil
|
|
|
11556
11706
|
}
|
|
11557
11707
|
|
|
11558
11708
|
interface Props$8 {
|
|
11559
|
-
|
|
11709
|
+
chartId: UID;
|
|
11560
11710
|
definition: WaterfallChartDefinition;
|
|
11561
|
-
canUpdateChart: (
|
|
11562
|
-
updateChart: (
|
|
11711
|
+
canUpdateChart: (chartId: UID, definition: GenericDefinition<WaterfallChartDefinition>) => DispatchResult;
|
|
11712
|
+
updateChart: (chartId: UID, definition: GenericDefinition<WaterfallChartDefinition>) => DispatchResult;
|
|
11563
11713
|
}
|
|
11564
11714
|
declare class WaterfallChartDesignPanel extends Component<Props$8, SpreadsheetChildEnv> {
|
|
11565
11715
|
static template: string;
|
|
@@ -11575,7 +11725,7 @@ declare class WaterfallChartDesignPanel extends Component<Props$8, SpreadsheetCh
|
|
|
11575
11725
|
ChartLegend: typeof ChartLegend;
|
|
11576
11726
|
};
|
|
11577
11727
|
static props: {
|
|
11578
|
-
|
|
11728
|
+
chartId: StringConstructor;
|
|
11579
11729
|
definition: ObjectConstructor;
|
|
11580
11730
|
updateChart: FunctionConstructor;
|
|
11581
11731
|
canUpdateChart: {
|
|
@@ -11619,6 +11769,9 @@ declare class PivotMeasureDisplayPanelStore extends SpreadsheetStore {
|
|
|
11619
11769
|
fieldName: string;
|
|
11620
11770
|
order?: SortDirection;
|
|
11621
11771
|
granularity?: Granularity | string;
|
|
11772
|
+
isCustomField?: boolean;
|
|
11773
|
+
parentField?: string;
|
|
11774
|
+
customGroups?: PivotCustomGroup[];
|
|
11622
11775
|
}[];
|
|
11623
11776
|
get doesDisplayNeedsValue(): boolean;
|
|
11624
11777
|
private isDisplayValueDependant;
|
|
@@ -12704,6 +12857,7 @@ declare const helpers: {
|
|
|
12704
12857
|
getUniqueText: typeof getUniqueText;
|
|
12705
12858
|
isNumber: typeof isNumber;
|
|
12706
12859
|
isDateTime: typeof isDateTime;
|
|
12860
|
+
createCustomFields: typeof createCustomFields;
|
|
12707
12861
|
};
|
|
12708
12862
|
declare const links: {
|
|
12709
12863
|
isMarkdownLink: typeof isMarkdownLink;
|
|
@@ -12818,6 +12972,7 @@ declare const constants: {
|
|
|
12818
12972
|
ColorScales: Record<Extract<GeoChartColorScale, string>, string>;
|
|
12819
12973
|
};
|
|
12820
12974
|
};
|
|
12975
|
+
FIGURE_ID_SPLITTER: string;
|
|
12821
12976
|
};
|
|
12822
12977
|
declare const chartHelpers: {
|
|
12823
12978
|
getBarChartData(definition: GenericDefinition<BarChartDefinition>, dataSets: DataSet[], labelRange: Range | undefined, getters: Getters): ChartRuntimeGenerationArgs;
|
|
@@ -13337,7 +13492,7 @@ declare const chartHelpers: {
|
|
|
13337
13492
|
value: string;
|
|
13338
13493
|
label: string;
|
|
13339
13494
|
}[];
|
|
13340
|
-
chartFactory(getters: CoreGetters): (
|
|
13495
|
+
chartFactory(getters: CoreGetters): (figureId: UID, definition: ChartDefinition, sheetId: UID) => AbstractChart;
|
|
13341
13496
|
chartRuntimeFactory(getters: Getters): (chart: AbstractChart) => ChartRuntime;
|
|
13342
13497
|
validateChartDefinition(validator: Validator, definition: ChartDefinition): CommandResult | CommandResult[];
|
|
13343
13498
|
transformDefinition(chartSheetId: UID, definition: ChartDefinition, applyrange: RangeAdapter$1): ChartDefinition;
|
|
@@ -13371,4 +13526,4 @@ declare const chartHelpers: {
|
|
|
13371
13526
|
WaterfallChart: typeof WaterfallChart;
|
|
13372
13527
|
};
|
|
13373
13528
|
|
|
13374
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, 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, 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, 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, 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, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __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, 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 };
|
|
13529
|
+
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, __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, 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 };
|